Imported Upstream version 3.3.2
[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
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 AMVER=`cat FULL_VERSION`
11
12 # These are variables that the user can override.  They get used in various
13 # places during configure, build, and install.
14 PREFIX=/usr
15 BINDIR=$(PREFIX)/bin
16 LIBDIR=$(PREFIX)/lib
17 AMLIBDIR=$(LIBDIR)/amanda
18 LIBEXECDIR=$(PREFIX)/libexec
19 AMLIBEXECDIR=$(LIBEXECDIR)/amanda
20 MANDIR=$(PREFIX)/share/man
21 DOCDIR=$(PREFIX)/share/doc
22 SYSCONFDIR=/etc
23 LOCALSTATEDIR=/var
24 AMANDAHOMEDIR=$(LOCALSTATEDIR)/lib/amanda
25 LOGDIR=$(LOCALSTATEDIR)/log/amanda
26 # Extract the perl site_lib directory.  This is used to install amanda's perl 
27 # libs. If configure finds a different install or you specify a different path using
28 # --with-amperldir= make sure you change this variable as well.
29 PERLSITELIB=$(shell perl -V:installsitelib|sed -e"s:installsitelib='/::;s:'\;::")
30 AMANDAUSER=amandabackup
31 AMANDAGROUP=disk
32 WITHOUT_SERVER="False"
33 WITHOUT_CLIENT="False"
34
35 r=$(shell pwd)/debian/tmp
36 server=$(shell pwd)/debian/amanda-backup-server
37 client=$(shell pwd)/debian/amanda-backup-client
38
39 log=$(shell pwd)/debian/dpkg.log
40
41 # These are used for cross-compiling and for saving the configure script
42 # from having to guess our platform (since we know it already)
43 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
44 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
45
46 WD=$(shell pwd)
47
48 build: build-stamp
49 build-stamp: /sbin/dump /usr/bin/smbclient
50         dh_testdir
51         ./configure \
52                 MAKEFLAGS="-j1 " \
53                 CFLAGS="-pipe " \
54                 MAILER=/usr/bin/mail \
55                 --enable-as-needed \
56                 --quiet \
57                 --host=$(DEB_HOST_GNU_TYPE) \
58                 --build=$(DEB_BUILD_GNU_TYPE) \
59                 --prefix=$(PREFIX) \
60                 --bindir=$(BINDIR) \
61                 --mandir=$(MANDIR) \
62                 --libexecdir=$(LIBEXECDIR) \
63                 --enable-shared \
64                 --sysconfdir=$(SYSCONFDIR) \
65                 --localstatedir=$(LOCALSTATEDIR) \
66                 --with-amdatadir=$(AMANDAHOMEDIR) \
67                 --with-gnutar-listdir=$(AMANDAHOMEDIR)/gnutar-lists \
68                 --with-index-server=localhost \
69                 --with-tape-server=localhost \
70                 --with-user=$(AMANDAUSER) \
71                 --with-group=$(AMANDAGROUP) \
72                 --with-fqdn \
73                 --with-bsd-security \
74                 --with-bsdtcp-security \
75                 --with-bsdudp-security \
76                 --with-amandahosts \
77                 --with-smbclient=$(BINDIR)/smbclient \
78                 --with-debugging=$(LOGDIR) \
79                 --with-ssh-security \
80                 --with-assertions \
81                 --enable-s3-device \
82                 --disable-installperms
83         touch missing
84         # Preinst is the same for client and server, but we leave room for
85         # differences by just appending here.
86         cat $(WD)/debian/preinst >> $(WD)/debian/amanda-backup-client.preinst
87         cat $(WD)/debian/preinst >> $(WD)/debian/amanda-backup-server.preinst
88         # Postinst and postrm keep client/server differences to just variables;
89         # the postinst/postrm logic is otherwise the same.
90         cat $(WD)/debian/postinst >> $(WD)/debian/amanda-backup-client.postinst
91         cat $(WD)/debian/postinst >> $(WD)/debian/amanda-backup-server.postinst
92         cat $(WD)/debian/postrm >> $(WD)/debian/amanda-backup-client.postrm
93         cat $(WD)/debian/postrm >> $(WD)/debian/amanda-backup-server.postrm
94         make -s LIBTOOLFLAGS=--silent
95         touch build-stamp
96
97 clean:
98         dh_testdir >> $(log) 2>&1
99         dh_testroot >> $(log) 2>&1
100         -make -s LIBTOOLFLAGS=--silent clean
101         -make -s LIBTOOLFLAGS=--silent distclean
102         -rm -f build-stamp missing config/config.h common-src/genversion
103         -find . -type d -name .deps -exec rm -rf {} \;
104         -test -r /usr/share/misc/config.sub && \
105                 cp -f /usr/share/misc/config.sub config/config.sub
106         -test -r /usr/share/misc/config.guess && \
107                 cp -f /usr/share/misc/config.guess config/config.guess
108         dh_clean >> $(log) 2>&1
109
110 # Build architecture-dependent files here.
111 binary-arch: build
112         echo "---->dh_testdir: " >> $(log)
113         dh_testdir >> $(log) 2>&1
114         echo "---->dh_testroot: " >> $(log)
115         dh_testroot >> $(log) 2>&1
116         echo "---->dh_clean: " >> $(log)
117         dh_clean -k >> $(log) 2>&1
118         echo "---->dh_installdirs: " >> $(log)
119         dh_installdirs -v >> $(log) 2>&1
120         make -s LIBTOOLFLAGS=--silent install DESTDIR=$(r)
121         echo "---->dh_installdocs: " >> $(log)
122         dh_installdocs -v >> $(log) 2>&1
123         install -d $(r)/$(DOCDIR)/amanda-common/examples
124         cp -a example/* $(r)/$(DOCDIR)/amanda-common/examples
125         cp ChangeLog $(r)/$(DOCDIR)/amanda-common/changelog
126         echo "---->dh_installchangelogs: " >> $(log)
127         dh_installchangelogs -v >> $(log) 2>&1
128         # Here's how we get the perl modules installed into sitelib
129         echo $(PERLSITELIB)/* >> debian/amanda-backup-server.install
130         echo "---->dh_install -v --fail-missing: " >> $(log)
131         dh_install -v --sourcedir=$(r) >> $(log) 2>&1
132         echo "---->dh_strip: " >> $(log)
133         dh_strip >> $(log) 2>&1
134         echo "---->dh_compress: " >> $(log)
135         dh_compress >> $(log) 2>&1
136         echo "---->dh_fixperms: " >> $(log)
137         dh_fixperms -v >> $(log) 2>&1
138         # fix perms manually
139         chown -R $(AMANDAUSER):$(AMANDAGROUP) debian/*/var/lib/*
140         #chmod -R u=rwX,g=rwX,o-rwx debian/*/var/lib/*
141         chown -R $(AMANDAUSER):$(AMANDAGROUP) $(client)/$(LOGDIR) $(server)/$(LOGDIR)
142         #chmod -R u=rwX,g=rwX,o-rwx $(server)/$(LOGDIR)
143         chown -R $(AMANDAUSER):$(AMANDAGROUP)  $(client)/$(SYSCONFDIR)/amanda $(server)/$(SYSCONFDIR)/amanda
144         chmod -R u=rwX,g=rwX,o-rwx $(client)/$(SYSCONFDIR)/amanda
145         chmod -R u=rwX,g=rwX,o-rwx $(server)/$(SYSCONFDIR)/amanda
146         chown -R $(AMANDAUSER):$(AMANDAGROUP) $(client)/$(AMANDAHOMEDIR)/gnutar-lists $(server)/$(AMANDAHOMEDIR)/gnutar-lists
147         chmod -R u=rwX,g=rwX,o-rwx  $(client)/$(AMANDAHOMEDIR)/gnutar-lists $(server)/$(AMANDAHOMEDIR)/gnutar-lists
148         # .. setuid
149         chown root:disk \
150                 $(client)/$(AMLIBEXECDIR)/application/amgtar \
151                 $(client)/$(AMLIBEXECDIR)/application/amstar \
152                 $(client)/$(AMLIBEXECDIR)/killpgrp \
153                 $(client)/$(AMLIBEXECDIR)/rundump \
154                 $(client)/$(AMLIBEXECDIR)/runtar \
155                 $(client)/$(AMLIBEXECDIR)/calcsize \
156                 $(server)/$(AMLIBEXECDIR)/application/amgtar \
157                 $(server)/$(AMLIBEXECDIR)/application/amstar \
158                 $(server)/$(AMLIBEXECDIR)/killpgrp \
159                 $(server)/$(AMLIBEXECDIR)/rundump \
160                 $(server)/$(AMLIBEXECDIR)/runtar \
161                 $(server)/$(AMLIBEXECDIR)/calcsize \
162                 $(server)/$(AMLIBEXECDIR)/dumper \
163                 $(server)/$(AMLIBEXECDIR)/planner \
164                 $(server)/usr/sbin/amcheck \
165                 $(server)/usr/sbin/amservice
166         chmod u=srwx,g=rx,o=r \
167                 $(client)/$(AMLIBEXECDIR)/application/amgtar \
168                 $(client)/$(AMLIBEXECDIR)/application/amstar \
169                 $(client)$(AMLIBEXECDIR)/killpgrp \
170                 $(client)$(AMLIBEXECDIR)/rundump \
171                 $(client)$(AMLIBEXECDIR)/runtar \
172                 $(client)$(AMLIBEXECDIR)/calcsize \
173                 $(server)/$(AMLIBEXECDIR)/application/amgtar \
174                 $(server)/$(AMLIBEXECDIR)/application/amstar \
175                 $(server)$(AMLIBEXECDIR)/killpgrp \
176                 $(server)$(AMLIBEXECDIR)/rundump \
177                 $(server)$(AMLIBEXECDIR)/runtar \
178                 $(server)$(AMLIBEXECDIR)/calcsize \
179                 $(server)$(AMLIBEXECDIR)/dumper \
180                 $(server)$(AMLIBEXECDIR)/planner \
181                 $(server)/usr/sbin/amcheck \
182                 $(server)/usr/sbin/amservice
183         echo "Amanda version $(AMVER)" >  $(server)/$(AMANDAHOMEDIR)/amanda-release
184         echo "Amanda version $(AMVER)" >  $(client)/$(AMANDAHOMEDIR)/amanda-release
185         install -o root -g root -m 0644 debian/amanda-backup-client.lintian \
186                 $(client)/usr/share/lintian/overrides/amanda-backup-client
187         install -o root -g root -m 0644 debian/amanda-backup-server.lintian \
188                 $(server)/usr/share/lintian/overrides/amanda-backup-server
189         dh_makeshlibs  >> $(log) 2>&1
190         dh_perl >> $(log) 2>&1
191         dh_shlibdeps -l"$(r)/usr/lib:$(client)/usr/lib:$(server)/usr/lib" >> $(log) 2>&1
192         dh_installdeb >> $(log) 2>&1
193         dh_gencontrol >> $(log) 2>&1
194         dh_md5sums  >> $(log) 2>&1
195         dh_builddeb  >> $(log) 2>&1
196
197 source diff:
198         @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
199
200 binary: binary-arch
201 .PHONY: build clean binary-arch binary