/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Teddy Hogeborn
  • Date: 2012-06-13 22:06:57 UTC
  • mto: This revision was merged to the branch mainline in revision 596.
  • Revision ID: teddy@recompile.se-20120613220657-qvq7c7nrndl3t413
* plugins.d/mandos-client.c (get_flags): Don't clobber errno.
  (up_interface): Removed; replaced with "interface_is_up".
  (interface_is_up, interface_is_running,
   lower_privileges_permanently, take_down_interface): New.
  (bring_up_interface): Return "error_t".  Use new functions
                        "interface_is_up", "get_flags", and
                        "interface_is_running".
  (main): Save all interfaces either autodetected or specified with
          --interface in argz vector "interfaces".  Save interfaces to
          take down on exit in argz vector "interfaces_to_take_down".
          Save interface names for DEVICE variable to network hooks as
          argz_vector "interfaces_hooks".  Bug fix: Be privileged
          while stopping network hooks.
* plugins.d/mandos-client.xml (SYNOPSIS): Changed --interface synopsis.
  (DESCRIPTION): Updated to document use of all interfaces.
  (OPTIONS): Updated description of "--interface".
* network-hooks.d/bridge: Parse comma-separated DEVICE environment
                          variable.
* network-hooks.d/openvpn: - '' -
* network-hooks.d/wireless: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# This has to be exported to make some magic below work.
16
16
export DH_OPTIONS
17
17
 
 
18
# -pie was broken briefly on the mips and mipsel architectures, see
 
19
# <http://bugs.debian.org/526961>
 
20
BINUTILS_V := $(shell dpkg-query --showformat='$${Version}' \
 
21
                        --show binutils)
 
22
ifeq (yes,$(shell dpkg --compare-versions $(BINUTILS_V) lt 2.20-3 \
 
23
                && dpkg --compare-versions $(BINUTILS_V) ge 2.19.1-1 \
 
24
                && echo yes))
 
25
  ifneq (,$(strip $(findstring :$(DEB_HOST_ARCH):,:mips:mipsel:) \
 
26
                $(findstring :$(DEB_BUILD_ARCH):,:mips:mipsel:)))
 
27
    BROKEN_PIE := yes
 
28
    export BROKEN_PIE
 
29
  endif
 
30
endif
 
31
 
18
32
configure: configure-stamp
19
33
configure-stamp:
20
34
        dh_testdir
24
38
 
25
39
build-arch: build-arch-stamp
26
40
build-arch-stamp: configure-stamp
27
 
        dh_auto_build -- all doc
 
41
        LC_ALL=en_US.utf8 dh_auto_build -- all doc
28
42
        touch $@
29
43
 
30
44
build-indep: build-indep-stamp
31
45
build-indep-stamp: configure-stamp
32
 
        dh_auto_build -- doc
 
46
        LC_ALL=en_US.UTF-8 dh_auto_build -- doc
33
47
        touch $@
34
48
 
35
49
clean:
47
61
        dh_installdirs --indep
48
62
        $(MAKE) DESTDIR=$(CURDIR)/debian/mandos install-server
49
63
        dh_lintian
50
 
        dh_installinit --onlyscripts --no-start
 
64
        dh_installinit --onlyscripts \
 
65
                --update-rcd-params="defaults 25 15"
51
66
        dh_install --indep
52
67
 
53
68
install-arch:
64
79
        dh_testroot
65
80
        dh_installchangelogs
66
81
        dh_installdocs
67
 
#       dh_installdebconf
 
82
        dh_installexamples
68
83
        dh_link
69
84
        dh_strip
70
85
        dh_compress
71
86
        dh_fixperms --exclude etc/keys/mandos \
72
87
                --exclude etc/mandos/clients.conf \
73
 
                --exclude usr/lib/mandos/plugins.d
 
88
                --exclude etc/mandos/plugins.d \
 
89
                --exclude usr/lib/mandos/plugins.d \
 
90
                --exclude usr/share/doc/mandos-client/examples/network-hooks.d
74
91
        dh_installdeb
75
92
        dh_shlibdeps
76
93
        dh_gencontrol