/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: 2008-09-19 13:50:22 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080919135022-214t21hetv8jgv0y
* debian/mandos-client.docs: New.  Add README and TODO file.
* debian/mandos.docs: - '' -

* debian/mandos-client.links: New.  Create plugin-runner.conf(5) link.

* debian/rules (DH_VERBOSE): Commented out.
               Removed commented-out unused dh_* stuff.  Removed
               "dh_makeshlibs".

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
50
        dh_installinit --onlyscripts --no-start
62
55
        dh_testroot
63
56
        dh_prep
64
57
        dh_installdirs --same-arch
65
 
 
66
 
# Add here commands to install the arch part of the package into
67
 
# debian/tmp.
68
58
        $(MAKE) DESTDIR=$(CURDIR)/debian/mandos-client install-client-nokey
69
59
        dh_lintian
70
60
        dh_install --same-arch
71
61
 
72
 
# Must not depend on anything. This is to be called by
73
 
# binary-arch/binary-indep
74
 
# in another 'make' thread.
75
62
binary-common:
76
63
        dh_testdir
77
64
        dh_testroot
78
65
        dh_installchangelogs
79
66
        dh_installdocs
80
 
#       dh_installexamples
81
 
#       dh_installmenu
82
67
#       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 \
97
73
                --exclude usr/lib/mandos/plugins.d
98
 
#       dh_perl
99
 
        dh_makeshlibs
100
74
        dh_installdeb
101
75
        dh_shlibdeps
102
76
        dh_gencontrol
103
77
        dh_md5sums
104
78
        dh_builddeb
 
79
 
105
80
# Build architecture independant packages using the common target.
106
81
binary-indep: build-indep install-indep
107
82
        $(MAKE) -f debian/rules DH_OPTIONS=--indep binary-common