/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: 2009-04-17 08:26:17 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090417082617-eltetak5lzjyz55o
* initramfs-tools-hook: Bug fix: Add "--userid" and "--groupid" to
                        start of "plugin-runner.conf" file instead of
                        appending, to allow any preexisting options to
                        override.
* plugin-runner.conf: Improved wording.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
# build-arch and build-indep targets  by Bill Allombert 2001
11
11
 
12
12
# Uncomment this to turn on verbose mode.
13
 
export DH_VERBOSE=1
 
13
#export DH_VERBOSE=1
14
14
 
15
15
# This has to be exported to make some magic below work.
16
16
export DH_OPTIONS
18
18
configure: configure-stamp
19
19
configure-stamp:
20
20
        dh_testdir
21
 
# Add here commands to configure the package.
22
21
        touch configure-stamp
23
22
 
24
 
#Architecture
25
23
build: build-arch build-indep
26
24
 
27
25
build-arch: build-arch-stamp
28
26
build-arch-stamp: configure-stamp
29
 
# Add here commands to compile the arch part of the package.
30
27
        dh_auto_build -- all doc
31
28
        touch $@
32
29
 
33
30
build-indep: build-indep-stamp
34
31
build-indep-stamp: configure-stamp
35
 
# Add here commands to compile the indep part of the package.
36
32
        dh_auto_build -- doc
37
33
        touch $@
38
34
 
40
36
        dh_testdir
41
37
        dh_testroot
42
38
        rm -f build-arch-stamp build-indep-stamp configure-stamp
43
 
# Add here commands to clean up after the build process.
44
39
        dh_auto_clean
45
40
        dh_clean
46
41
 
50
45
        dh_testroot
51
46
        dh_prep
52
47
        dh_installdirs --indep
53
 
# Add here commands to install the indep part of the package into
54
 
# debian/<package>-doc.
55
48
        $(MAKE) DESTDIR=$(CURDIR)/debian/mandos install-server
56
49
        dh_lintian
57
 
        dh_installinit --onlyscripts --no-start
 
50
        dh_installinit --onlyscripts \
 
51
                --update-rcd-params="defaults 25 15"
58
52
        dh_install --indep
59
53
 
60
54
install-arch:
62
56
        dh_testroot
63
57
        dh_prep
64
58
        dh_installdirs --same-arch
65
 
 
66
 
# Add here commands to install the arch part of the package into
67
 
# debian/tmp.
68
59
        $(MAKE) DESTDIR=$(CURDIR)/debian/mandos-client install-client-nokey
69
60
        dh_lintian
70
61
        dh_install --same-arch
71
62
 
72
 
# Must not depend on anything. This is to be called by
73
 
# binary-arch/binary-indep
74
 
# in another 'make' thread.
75
63
binary-common:
76
64
        dh_testdir
77
65
        dh_testroot
78
66
        dh_installchangelogs
79
67
        dh_installdocs
80
 
#       dh_installexamples
81
 
#       dh_installmenu
82
 
#       dh_installdebconf
83
 
#       dh_installlogrotate
84
 
#       dh_installemacsen
85
 
#       dh_installpam
86
 
#       dh_installmime
87
 
#       dh_pycentral
88
 
#       dh_installinit
89
 
#       dh_installcron
90
 
#       dh_installinfo
91
 
#       dh_installman
92
68
        dh_link
93
69
        dh_strip
94
70
        dh_compress
95
71
        dh_fixperms --exclude etc/keys/mandos \
96
72
                --exclude etc/mandos/clients.conf \
 
73
                --exclude etc/mandos/plugins.d \
97
74
                --exclude usr/lib/mandos/plugins.d
98
 
#       dh_perl
99
 
        dh_makeshlibs
100
75
        dh_installdeb
101
76
        dh_shlibdeps
102
77
        dh_gencontrol
103
78
        dh_md5sums
104
79
        dh_builddeb
 
80
 
105
81
# Build architecture independant packages using the common target.
106
82
binary-indep: build-indep install-indep
107
83
        $(MAKE) -f debian/rules DH_OPTIONS=--indep binary-common