61e92178d8b8dbe97695a2cb82c872a9588ef06f
[debian/amanda] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for amanda using debhelper. GNU copyright 1998 by Bdale Garbee.
3 # requires automake 1.2d (from experimental tree)
4
5 #       Warning - do *not* use -j on an SMP machine, or the build gets
6 #               confused... some sort of race condition in the makefiles?
7
8 # Uncomment this to turn on verbose mode.
9 #export DH_VERBOSE=1
10
11 r=$(shell pwd)/debian/amanda-common
12 s=$(shell pwd)/debian/amanda-server
13 c=$(shell pwd)/debian/amanda-client
14
15 build: build-stamp 
16 build-stamp: /sbin/dump /usr/bin/smbclient debian/po/templates.pot
17         dh_testdir
18 #       automake --foreign
19 #       autoconf -l config
20         MAILER=/usr/bin/mail \
21         ./configure --prefix=/usr --bindir=/usr/sbin --mandir=/usr/share/man \
22                 --libexecdir=/usr/lib/amanda --enable-shared\
23                 --sysconfdir=/etc --localstatedir=/var/lib \
24                 --with-gnutar-listdir=/var/lib/amanda/gnutar-lists \
25                 --with-index-server=localhost \
26                 --with-user=backup --with-group=backup  \
27                 --with-bsd-security --with-amandahosts \
28                 --with-smbclient=/usr/bin/smbclient \
29                 --with-debugging=/var/log/amanda \
30                 --with-dumperdir=/usr/lib/amanda/dumper.d \
31                 --with-tcpportrange=50000,50100 --with-udpportrange=840,860 \
32                 --with-maxtapeblocksize=256 \
33                 --with-ssh-security \
34                 --with-bsdtcp-security --with-bsdudp-security
35         touch missing
36         MAILER=/usr/bin/mail make CFLAGS="-O2 -g -Wall \
37                 -DAMANDATES_FILE='\"/var/lib/amanda/amandates\"' \
38                 -DIGNORE_TAR_ERRORS "
39         touch build-stamp
40
41 clean:
42         dh_testdir
43         dh_testroot
44         [ ! -f Makefile ] || make clean
45         [ ! -f Makefile ] || make distclean
46         -rm -f build-stamp missing config/config.h common-src/genversion
47         -find . -type d -name .deps -exec rm -rf {} \;
48
49         -test -r /usr/share/misc/config.sub && \
50                 cp -f /usr/share/misc/config.sub config/config.sub
51         -test -r /usr/share/misc/config.guess && \
52                 cp -f /usr/share/misc/config.guess config/config.guess
53
54         dh_clean
55
56 # call this before packaging for upload when updating template English text
57 updatepo:
58         -rm -f debian/po/templates.pot
59         debconf-updatepo
60         
61 # Build architecture-independent files here.
62 binary-indep: build
63
64 # Build architecture-dependent files here.
65 binary-arch: build
66         dh_testdir
67         dh_testroot
68         dh_clean -k
69         dh_installdirs -a
70         make install DESTDIR=$(r)
71         install -m 644 debian/amandahosts $(r)/etc/amandahosts
72         dh_installdocs -a
73         dh_installexamples -a
74         cp ChangeLog $(r)/usr/share/doc/amanda-common/changelog
75         cp debian/xinetd.d/amandaidx $(s)/etc/xinetd.d
76         cp debian/xinetd.d/amidxtape $(s)/etc/xinetd.d
77         cp debian/xinetd.d/amanda $(r)/etc/xinetd.d                     
78         dh_installmenu -a
79         dh_installcron -a
80         dh_installchangelogs -a
81         dh_installdebconf -a
82         dh_strip -a
83         dh_compress -a
84         dh_movefiles -a --sourcedir=debian/amanda-common
85         rm $(s)/usr/lib/amanda/chg-mtx
86         dh_fixperms -av
87         # fix perms manually
88         chown -R backup:backup debian/*/var/lib/*
89         chmod -R u=rwX,g=rwX,o-rwx debian/*/var/lib/*
90         chown -R backup:backup $(s)/var/log/amanda
91         chmod -R u=rwX,g=rwX,o-rwx $(s)/var/log/amanda
92         chown -R backup:backup $(s)/etc/amanda
93         chmod -R u=rwX,g=rwX,o-rwx $(s)/etc/amanda
94         chown -R backup:backup $(c)/var/lib/amanda/gnutar-lists
95         chmod -R u=rwX,g=rwX,o-rwx $(c)/var/lib/amanda/gnutar-lists
96         # .. setuid
97         chown root:backup \
98                 $(c)/usr/lib/amanda/killpgrp \
99                 $(c)/usr/lib/amanda/rundump \
100                 $(c)/usr/lib/amanda/runtar \
101                 $(s)/usr/lib/amanda/dumper \
102                 $(s)/usr/lib/amanda/planner \
103                 $(s)/usr/sbin/amcheck
104         chmod u=srwx,g=rx,o=r \
105                 $(c)/usr/lib/amanda/killpgrp \
106                 $(c)/usr/lib/amanda/rundump \
107                 $(c)/usr/lib/amanda/runtar \
108                 $(s)/usr/lib/amanda/dumper \
109                 $(s)/usr/lib/amanda/planner \
110                 $(s)/usr/sbin/amcheck
111         install -o root -g root -m 0644 debian/amanda-client.lintian \
112                 $(c)/usr/share/lintian/overrides/amanda-client
113         install -o root -g root -m 0644 debian/amanda-common.lintian \
114                 $(r)/usr/share/lintian/overrides/amanda-common
115         install -o root -g root -m 0644 debian/amanda-server.lintian \
116                 $(s)/usr/share/lintian/overrides/amanda-server
117         dh_makeshlibs -a
118         dh_installdeb -a
119         dh_shlibdeps -a -l"debian/amanda-common/usr/lib:debian/amanda-client/usr/lib:debian/amanda-server/usr/lib"
120         # strip out the non-versioned amanda-common references, we need
121         # the versioned ones in the control file and dupes are ugly...
122         sed -e 's/amanda-common, //' < debian/amanda-server.substvars > debian/blah
123         mv debian/blah debian/amanda-server.substvars
124         sed -e 's/amanda-common, //' < debian/amanda-client.substvars > debian/blah
125         mv debian/blah debian/amanda-client.substvars
126         dh_gencontrol -a
127         dh_md5sums -a
128         dh_builddeb -a
129
130 source diff:                                                                  
131         @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
132
133 debian/po/templates.pot:        debian/templates
134         @debconf-updatepo
135
136 binary: binary-indep binary-arch
137 .PHONY: build clean binary-indep binary-arch binary