/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-21 04:22:50 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080921042250-r0qqjsbz2ulfo5le
* Makefile: Bug fix: fix syntax error.

* debian/control: Depend on "po-debconf".
  (mandos, mandos-client): Add "${misc:Depends}", used by
                           dh_installdebconf.

* debian/mandos-client.config: New; show note.
* debian/mandos-client.template: New.

* debian/mandos.README.Debian: New.

* debian/mandos.config: New; show note.
* debian/mandos.prerm: New; stop daemon.
* debian/mandos.template: New.

* debian/po/POTFILES.in: New.
* debian/po/sv.po: New.

* debian/rules (clean): Added "debconf-updatepo" as suggested by
                        po-debconf(7).
  (binary-common): Added "dh_installdebconf" to use "debian/*.config"
                   and "debian/*.template" files.

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
 
41
        debconf-updatepo
46
42
 
47
43
install: install-indep install-arch
48
44
install-indep:
50
46
        dh_testroot
51
47
        dh_prep
52
48
        dh_installdirs --indep
53
 
# Add here commands to install the indep part of the package into
54
 
# debian/<package>-doc.
55
49
        $(MAKE) DESTDIR=$(CURDIR)/debian/mandos install-server
56
50
        dh_lintian
57
51
        dh_installinit --onlyscripts --no-start
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
 
68
        dh_installdebconf
92
69
        dh_link
93
70
        dh_strip
94
71
        dh_compress
95
72
        dh_fixperms --exclude etc/keys/mandos \
96
73
                --exclude etc/mandos/clients.conf \
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