/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk
185 by Teddy Hogeborn
* .bzr-builddeb/default.conf: New.
1
#!/usr/bin/make -f
622 by Teddy Hogeborn
* debian/control (Build-Depends): Depend on debhelper 8.9.7 for using
2
%:
3
	dh $@
4
5
override_dh_auto_build-arch:
237.6.1 by gregor herrmann
* debian/changelog (1.5.3-1.1): New entry.
6
	LC_ALL=en_US.utf8 dh_auto_build -- all doc
622 by Teddy Hogeborn
* debian/control (Build-Depends): Depend on debhelper 8.9.7 for using
7
8
override_dh_auto_build-indep:
9
	LC_ALL=en_US.utf8 dh_auto_build -- doc
10
11
override_dh_installinit-indep:
276 by Teddy Hogeborn
* debian/rules (install-indep): Removed "--no-start" from
12
	dh_installinit --onlyscripts \
200 by Teddy Hogeborn
* Makefile: Put the init script before avahi-daemon.
13
		--update-rcd-params="defaults 25 15"
622 by Teddy Hogeborn
* debian/control (Build-Depends): Depend on debhelper 8.9.7 for using
14
15
override_dh_auto_install-indep:
16
	$(MAKE) DESTDIR=$(CURDIR)/debian/mandos install-server
17
18
override_dh_auto_install-arch:
19
	$(MAKE) DESTDIR=$(CURDIR)/debian/mandos-client \
20
		install-client-nokey
21
793 by Teddy Hogeborn
* debian/rules (override_dh_fixperms): Split into
22
override_dh_fixperms-arch:
185 by Teddy Hogeborn
* .bzr-builddeb/default.conf: New.
23
	dh_fixperms --exclude etc/keys/mandos \
218 by Teddy Hogeborn
* Makefile (uninstall-client): Do not remove obsolete README file.
24
		--exclude etc/mandos/plugins.d \
652 by Teddy Hogeborn
Bug fix from libdir change: make plugins get setuid bit again.
25
		--exclude usr/lib/$(shell dpkg-architecture -qDEB_HOST_MULTIARCH 2>/dev/null)/mandos/plugins.d \
836 by Teddy Hogeborn
Client: Fix permissions on plugin helper directory.
26
		--exclude usr/lib/$(shell dpkg-architecture -qDEB_HOST_MULTIARCH 2>/dev/null)/mandos/plugin-helpers \
594 by Teddy Hogeborn
* debian/copyright (Copyright): Join the two lines to one line.
27
		--exclude usr/share/doc/mandos-client/examples/network-hooks.d
622 by Teddy Hogeborn
* debian/control (Build-Depends): Depend on debhelper 8.9.7 for using
28
	chmod --recursive g-w -- \
29
	"$(CURDIR)/debian/mandos-client/usr/share/doc/mandos-client/examples/network-hooks.d"
683 by Teddy Hogeborn
Do not run self-tests when building arch-indep Debian package.
30
793 by Teddy Hogeborn
* debian/rules (override_dh_fixperms): Split into
31
override_dh_fixperms-indep:
32
	dh_fixperms --exclude etc/mandos/clients.conf
33
683 by Teddy Hogeborn
Do not run self-tests when building arch-indep Debian package.
34
override_dh_auto_test-arch: ;