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