#!/usr/bin/make -f # debian/rules for amanda using debhelper. GNU copyright 1998 by Bdale Garbee. # requires automake 1.2d (from experimental tree) # Warning - do *not* use -j on an SMP machine, or the build gets # confused... some sort of race condition in the makefiles? # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 r=$(shell pwd)/debian/amanda-common s=$(shell pwd)/debian/amanda-server c=$(shell pwd)/debian/amanda-client configure: configure-stamp configure-stamp: dh_testdir # pick up latest config files provided by autotools-dev cp -f /usr/share/misc/config.sub config/config.sub cp -f /usr/share/misc/config.guess config/config.guess # automake --foreign # autoconf -l config MAILER=/usr/bin/mail \ ./configure --prefix=/usr --bindir=/usr/sbin --mandir=/usr/share/man \ --enable-shared\ --sysconfdir=/etc --localstatedir=/var/lib \ --with-gnutar-listdir=/var/lib/amanda/gnutar-lists \ --with-index-server=localhost \ --with-user=backup --with-group=backup \ --with-bsd-security --with-amandahosts \ --with-smbclient=/usr/bin/smbclient \ --with-debugging=/var/log/amanda \ --with-dumperdir=/usr/lib/amanda/dumper.d \ --with-tcpportrange=50000,50100 --with-udpportrange=840,860 \ --with-maxtapeblocksize=256 \ --with-ssh-security \ --with-bsdtcp-security --with-bsdudp-security touch missing touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir MAILER=/usr/bin/mail make CFLAGS="-O2 -g -Wall \ -DAMANDATES_FILE='\"/var/lib/amanda/amandates\"' \ -DIGNORE_TAR_ERRORS " touch build-stamp clean: dh_testdir dh_testroot [ ! -f Makefile ] || make clean [ ! -f Makefile ] || make distclean -rm -f build-stamp configure-stamp missing config/config.h common-src/genversion -find . -type d -name .deps -exec rm -rf {} \; dh_clean # call this before packaging for upload when updating template English text updatepo: -rm -f debian/po/templates.pot debconf-updatepo binary-indep: build binary-arch: build dh_testdir dh_testroot dh_clean -k dh_installdirs -a make install DESTDIR=$(r) install -m 644 debian/amandahosts $(r)/etc/amandahosts dh_installdocs -a dh_installexamples -a cp ChangeLog $(r)/usr/share/doc/amanda-common/changelog cp debian/xinetd.d/amandaidx $(s)/etc/xinetd.d cp debian/xinetd.d/amidxtape $(s)/etc/xinetd.d cp debian/xinetd.d/amanda $(r)/etc/xinetd.d dh_installmenu -a dh_installcron -a dh_installchangelogs -a dh_installdebconf -a dh_strip -a dh_compress -a dh_movefiles -a --sourcedir=debian/amanda-common rm $(s)/usr/lib/amanda/chg-mtx dh_fixperms -av # fix perms manually chown -R backup:backup debian/*/var/lib/* chmod -R u=rwX,g=rwX,o-rwx debian/*/var/lib/* chown -R backup:backup $(s)/var/log/amanda chmod -R u=rwX,g=rwX,o-rwx $(s)/var/log/amanda chown -R backup:backup $(s)/etc/amanda chmod -R u=rwX,g=rwX,o-rwx $(s)/etc/amanda chown -R backup:backup $(c)/var/lib/amanda/gnutar-lists chmod -R u=rwX,g=rwX,o-rwx $(c)/var/lib/amanda/gnutar-lists # .. setuid chown root:backup \ $(c)/usr/lib/amanda/killpgrp \ $(c)/usr/lib/amanda/rundump \ $(c)/usr/lib/amanda/runtar \ $(s)/usr/lib/amanda/dumper \ $(s)/usr/lib/amanda/planner \ $(s)/usr/sbin/amcheck chmod u=srwx,g=rx,o=r \ $(c)/usr/lib/amanda/killpgrp \ $(c)/usr/lib/amanda/rundump \ $(c)/usr/lib/amanda/runtar \ $(s)/usr/lib/amanda/dumper \ $(s)/usr/lib/amanda/planner \ $(s)/usr/sbin/amcheck install -o root -g root -m 0644 debian/amanda-client.lintian \ $(c)/usr/share/lintian/overrides/amanda-client install -o root -g root -m 0644 debian/amanda-common.lintian \ $(r)/usr/share/lintian/overrides/amanda-common install -o root -g root -m 0644 debian/amanda-server.lintian \ $(s)/usr/share/lintian/overrides/amanda-server dh_makeshlibs -a dh_installdeb -a dh_shlibdeps -a -l"debian/amanda-common/usr/lib:debian/amanda-client/usr/lib:debian/amanda-server/usr/lib" # strip out the non-versioned amanda-common references, we need # the versioned ones in the control file and dupes are ugly... sed -e 's/amanda-common, //' < debian/amanda-server.substvars > debian/blah mv debian/blah debian/amanda-server.substvars sed -e 's/amanda-common, //' < debian/amanda-client.substvars > debian/blah mv debian/blah debian/amanda-client.substvars dh_gencontrol -a dh_md5sums -a dh_builddeb -a source diff: @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary