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