/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
924 by Teddy Hogeborn
Support some Debian package build options
2
3
ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
4
    MAKEFLAGS += OPTIMIZE=-O0
5
endif
6
7
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
8
    NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
9
    MAKEFLAGS += -j$(NUMJOBS)
10
endif
11
1289 by Teddy Hogeborn
Fix #1069689 by using pkg-config in debian/rules
12
PKG_CONFIG?=pkg-config
13
622 by Teddy Hogeborn
* debian/control (Build-Depends): Depend on debhelper 8.9.7 for using
14
%:
15
	dh $@
16
1289 by Teddy Hogeborn
Fix #1069689 by using pkg-config in debian/rules
17
override_dh_installdirs-indep:
18
	dh_installdirs
19
	dh_installdirs $(patsubst /%,%,$(shell $(PKG_CONFIG) \
20
		systemd --variable=systemdsystemunitdir))
21
622 by Teddy Hogeborn
* debian/control (Build-Depends): Depend on debhelper 8.9.7 for using
22
override_dh_auto_build-arch:
237.6.1 by gregor herrmann
* debian/changelog (1.5.3-1.1): New entry.
23
	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
24
25
override_dh_auto_build-indep:
26
	LC_ALL=en_US.utf8 dh_auto_build -- doc
27
28
override_dh_installinit-indep:
276 by Teddy Hogeborn
* debian/rules (install-indep): Removed "--no-start" from
29
	dh_installinit --onlyscripts \
200 by Teddy Hogeborn
* Makefile: Put the init script before avahi-daemon.
30
		--update-rcd-params="defaults 25 15"
622 by Teddy Hogeborn
* debian/control (Build-Depends): Depend on debhelper 8.9.7 for using
31
32
override_dh_auto_install-indep:
33
	$(MAKE) DESTDIR=$(CURDIR)/debian/mandos install-server
34
35
override_dh_auto_install-arch:
36
	$(MAKE) DESTDIR=$(CURDIR)/debian/mandos-client \
37
		install-client-nokey
38
793 by Teddy Hogeborn
* debian/rules (override_dh_fixperms): Split into
39
override_dh_fixperms-arch:
185 by Teddy Hogeborn
* .bzr-builddeb/default.conf: New.
40
	dh_fixperms --exclude etc/keys/mandos \
218 by Teddy Hogeborn
* Makefile (uninstall-client): Do not remove obsolete README file.
41
		--exclude etc/mandos/plugins.d \
860 by Teddy Hogeborn
Fix permissions of /etc/mandos/plugin-helpers.
42
		--exclude etc/mandos/plugin-helpers \
925 by Teddy Hogeborn
Eliminate unnecessary shell commands in Debian package rules
43
		--exclude usr/lib/$(DEB_HOST_MULTIARCH)/mandos/plugins.d \
44
		--exclude usr/lib/$(DEB_HOST_MULTIARCH)/mandos/plugin-helpers \
1266 by Teddy Hogeborn
Make builds reproducible
45
		--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
46
	chmod --recursive g-w -- \
47
	"$(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.
48
793 by Teddy Hogeborn
* debian/rules (override_dh_fixperms): Split into
49
override_dh_fixperms-indep:
50
	dh_fixperms --exclude etc/mandos/clients.conf
51
683 by Teddy Hogeborn
Do not run self-tests when building arch-indep Debian package.
52
override_dh_auto_test-arch: ;
980 by Teddy Hogeborn
Fix Debian package dependency when using GnuTLS < 3.6.0
53
983 by Teddy Hogeborn
Remove modification of debian/control file
54
#bpo## dpkg-shlibdeps sees the "libgnutls28-dev (>= 3.6.6) |
55
#bpo## libgnutls28-dev (<< 3.6.0)," in the build-dependencies not as two
56
#bpo## alternatives, but as an absolute dependency on libgnutls30 >= 3.6.6.
57
#bpo## So we have to do this ugly hack to hide this build dependency if we
58
#bpo## compiled with libgnutls30 << 3.6.0.
59
#bpo#override_dh_shlibdeps-arch:
60
#bpo#	-gnutls_version=$$(dpkg-query --showformat='$${Version}' \
61
#bpo#		--show libgnutls30); \
62
#bpo#	dpkg --compare-versions $$gnutls_version lt 3.6.0 \
1101 by Teddy Hogeborn
Debian package: Fix backports package dependency adjuster
63
#bpo#		&& { cp --archive debian/control debian/control.orig; sed --in-place --expression='s/libgnutls28-dev (>= 3\.6\.6) |//' debian/control; }
983 by Teddy Hogeborn
Remove modification of debian/control file
64
#bpo#	dh_shlibdeps
65
#bpo#	-gnutls_version=$$(dpkg-query --showformat='$${Version}' \
66
#bpo#		--show libgnutls30); \
67
#bpo#	dpkg --compare-versions $$gnutls_version lt 3.6.0 \
68
#bpo#		&& mv debian/control.orig debian/control