Imported Upstream version 2.6.0p1
[debian/amanda] / packaging / deb / rules
1 #!/usr/bin/make -f
2 # debian/rules for amanda using debhelper. GNU copyright 2008 by Dan Locks, 
3 # based on work by Bdale Garbee.
4 # requires automake 1.2d (from experimental tree)
5
6 #       Warning - do *not* use -j on an SMP machine, or the build gets
7 #               confused... some sort of race condition in the makefiles?
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11 AMVER=2.6.0p1
12
13 # These are variables that the user can override.  They get used in various
14 # places during configure, build, and install.
15 PREFIX=/usr
16 BINDIR=$(PREFIX)/bin
17 LIBDIR=$(PREFIX)/lib
18 AMLIBDIR=$(LIBDIR)/amanda
19 LIBEXECDIR=$(PREFIX)/libexec
20 AMLIBEXECDIR=$(LIBEXECDIR)/amanda
21 MANDIR=$(PREFIX)/share/man
22 DOCDIR=$(PREFIX)/share/doc
23 SYSCONFDIR=/etc
24 LOCALSTATEDIR=/var
25 AMHOMEDIR=$(LOCALSTATEDIR)/lib/amanda
26 LOGDIR=$(LOCALSTATEDIR)/log/amanda
27 # Extract the perl site_lib directory.  This is used to install amanda's perl 
28 # libs. If configure finds a different install or you specify a different path using
29 # --with-amperldir= make sure you change this variable as well.
30 PERLSITELIB=$(shell perl -V:installsitelib|sed -e"s:installsitelib='/::;s:'\;::")
31 AMANDAUSER=amandabackup
32 AMANDAGROUP=disk
33 WITHOUT_SERVER="False"
34 WITHOUT_CLIENT="False"
35
36 r=$(shell pwd)/debian/amanda-common
37 server=$(shell pwd)/debian/amanda-backup-server
38 client=$(shell pwd)/debian/amanda-backup-client
39
40 log=$(shell pwd)/debian/dpkg.log
41
42 # These are used for cross-compiling and for saving the configure script
43 # from having to guess our platform (since we know it already)
44 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
45 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
46
47 build: build-stamp 
48 build-stamp: /sbin/dump /usr/bin/smbclient 
49         dh_testdir
50         ./configure \
51                 MAKEFLAGS="-j1 " \
52                 CFLAGS="-DIGNORE_TAR_ERRORS " \
53                 MAILER=/usr/bin/mail \
54                 --quiet \
55                 --host=$(DEB_HOST_GNU_TYPE) \
56                 --build=$(DEB_BUILD_GNU_TYPE) \
57                 --prefix=$(PREFIX) \
58                 --bindir=$(BINDIR) \
59                 --mandir=$(MANDIR) \
60                 --libexecdir=$(LIBEXECDIR) \
61                 --enable-shared \
62                 --sysconfdir=$(SYSCONFDIR) \
63                 --localstatedir=$(LOCALSTATEDIR)\
64                 --with-gnutar-listdir=$(AMHOMEDIR)/gnutar-lists \
65                 --with-index-server=localhost \
66                 --with-tape-server=localhost \
67                 --with-user=$(AMANDAUSER) \
68                 --with-group=$(AMANDAGROUP) \
69                 --with-fqdn \
70                 --with-bsd-security \
71                 --with-bsdtcp-security \
72                 --with-bsdudp-security \
73                 --with-amandahosts \
74                 --with-smbclient=$(BINDIR)/smbclient \
75                 --with-debugging=$(LOGDIR) \
76                 --with-tcpportrange=11000,11040 \
77                 --with-udpportrange=700,740 \
78                 --with-low-udpportrange=700,710 \
79                 --with-ssh-security \
80                 --with-assertions \
81                 --enable-s3-device \
82                 --disable-installperms
83         touch missing
84         make 
85         touch build-stamp
86
87 clean:
88         dh_testdir >> $(log) 2>&1
89         dh_testroot >> $(log) 2>&1
90         -make clean
91         -make distclean
92         -rm -f build-stamp missing config/config.h common-src/genversion
93         -find . -type d -name .deps -exec rm -rf {} \;
94         -test -r /usr/share/misc/config.sub && \
95                 cp -f /usr/share/misc/config.sub config/config.sub
96         -test -r /usr/share/misc/config.guess && \
97                 cp -f /usr/share/misc/config.guess config/config.guess
98         dh_clean >> $(log) 2>&1
99
100 # Build architecture-dependent files here.
101 binary-arch: build
102         echo "---->dh_testdir: " >> $(log)
103         dh_testdir >> $(log) 2>&1
104         echo "---->dh_testroot: " >> $(log)
105         dh_testroot >> $(log) 2>&1
106         echo "---->dh_clean: " >> $(log)
107         dh_clean -k >> $(log) 2>&1
108         echo "---->dh_installdirs: " >> $(log)
109         dh_installdirs -v >> $(log) 2>&1
110         make install DESTDIR=$(r)
111         echo "---->dh_installdocs: " >> $(log)
112         dh_installdocs -v >> $(log) 2>&1
113         install -d $(r)/$(DOCDIR)/amanda-common/examples
114         cp -a example/* $(r)/$(DOCDIR)/amanda-common/examples
115         cp ChangeLog $(r)/$(DOCDIR)/amanda-common/changelog
116         echo "---->dh_installmenu: " >> $(log)
117         dh_installmenu -v >> $(log) 2>&1
118         echo "---->dh_installcron: " >> $(log)
119         dh_installcron >> $(log) 2>&1
120         echo "---->dh_installchangelogs: " >> $(log)
121         dh_installchangelogs -v >> $(log) 2>&1
122         echo "---->dh_installdebconf: " >> $(log)
123         dh_installdebconf -v >> $(log) 2>&1
124         # Here's how we get the perl modules installed into sitelib
125         echo $(PERLSITELIB)/* >> debian/amanda-backup-server.install
126         echo "---->dh_install -v --fail-missing: " >> $(log)
127         dh_install -v --sourcedir=debian/amanda-common >> $(log) 2>&1
128         echo "---->dh_strip: " >> $(log)
129         dh_strip >> $(log) 2>&1
130         echo "---->dh_compress: " >> $(log)
131         dh_compress >> $(log) 2>&1
132         echo "---->dh_fixperms: " >> $(log)
133         dh_fixperms -v >> $(log) 2>&1
134         # fix perms manually
135         chown -R $(AMANDAUSER):$(AMANDAGROUP) debian/*/var/lib/*
136         #chmod -R u=rwX,g=rwX,o-rwx debian/*/var/lib/*
137         chown -R $(AMANDAUSER):$(AMANDAGROUP) $(client)/$(LOGDIR) $(server)/$(LOGDIR)
138         #chmod -R u=rwX,g=rwX,o-rwx $(server)/$(LOGDIR)
139         chown -R $(AMANDAUSER):$(AMANDAGROUP)  $(client)/$(SYSCONFDIR)/amanda $(server)/$(SYSCONFDIR)/amanda
140         #chmod -R u=rwX,g=rwX,o-rwx $(server)/$(SYSCONFDIR)/amanda
141         chown -R $(AMANDAUSER):$(AMANDAGROUP) $(client)/$(AMHOMEDIR)/gnutar-lists $(server)/$(AMHOMEDIR)/gnutar-lists
142         chmod -R u=rwX,g=rwX,o-rwx  $(client)/$(AMHOMEDIR)/gnutar-lists $(server)/$(AMHOMEDIR)/gnutar-lists
143         # .. setuid
144         chown root:disk \
145                 $(client)/$(AMLIBEXECDIR)/killpgrp \
146                 $(client)/$(AMLIBEXECDIR)/rundump \
147                 $(client)/$(AMLIBEXECDIR)/runtar \
148                 $(client)/$(AMLIBEXECDIR)/calcsize \
149                 $(server)/$(AMLIBEXECDIR)/killpgrp \
150                 $(server)/$(AMLIBEXECDIR)/rundump \
151                 $(server)/$(AMLIBEXECDIR)/runtar \
152                 $(server)/$(AMLIBEXECDIR)/calcsize \
153                 $(server)/$(AMLIBEXECDIR)/dumper \
154                 $(server)/$(AMLIBEXECDIR)/planner \
155                 $(server)/usr/sbin/amcheck
156         chmod u=srwx,g=rx,o=r \
157                 $(client)$(AMLIBEXECDIR)/killpgrp \
158                 $(client)$(AMLIBEXECDIR)/rundump \
159                 $(client)$(AMLIBEXECDIR)/runtar \
160                 $(client)$(AMLIBEXECDIR)/calcsize \
161                 $(server)$(AMLIBEXECDIR)/killpgrp \
162                 $(server)$(AMLIBEXECDIR)/rundump \
163                 $(server)$(AMLIBEXECDIR)/runtar \
164                 $(server)$(AMLIBEXECDIR)/calcsize \
165                 $(server)$(AMLIBEXECDIR)/dumper \
166                 $(server)$(AMLIBEXECDIR)/planner \
167                 $(server)/usr/sbin/amcheck
168         echo "Amanda version $(AMVER)" >  $(server)/$(AMHOMEDIR)/amanda-release 
169         echo "Amanda version $(AMVER)" >  $(client)/$(AMHOMEDIR)/amanda-release 
170         install -o root -g root -m 0644 debian/amanda-backup-client.lintian \
171                 $(client)/usr/share/lintian/overrides/amanda-backup-client
172         #install -o root -g root -m 0644 debian/amanda-common.lintian \
173         #       $(r)/usr/share/lintian/overrides/amanda-common
174         install -o root -g root -m 0644 debian/amanda-backup-server.lintian \
175                 $(server)/usr/share/lintian/overrides/amanda-backup-server
176         dh_makeshlibs  >> $(log) 2>&1
177         dh_installdeb >> $(log) 2>&1
178         dh_perl >> $(log) 2>&1
179         dh_shlibdeps -l"debian/$(r)/usr/lib:debian/$(client)/usr/lib:debian/$(server)/usr/lib" >> $(log) 2>&1
180         # strip out the non-versioned amanda-common references, we need
181         # the versioned ones in the control file and dupes are ugly...
182         sed -e 's/amanda-common, //' < debian/amanda-backup-server.substvars > debian/blah
183         mv debian/blah debian/amanda-backup-server.substvars
184         sed -e 's/amanda-common, //' < debian/amanda-backup-client.substvars > debian/blah
185         mv debian/blah debian/amanda-backup-client.substvars
186         dh_gencontrol >> $(log) 2>&1
187         dh_md5sums  >> $(log) 2>&1
188         dh_builddeb  >> $(log) 2>&1
189
190 source diff:                                                                  
191         @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
192
193 binary: binary-arch
194 .PHONY: build clean binary-arch binary