2000-04-26 22:01:01 +00:00
|
|
|
#!/usr/bin/make -f
|
2000-04-25 19:11:02 +00:00
|
|
|
# Sample debian/rules that uses debhelper.
|
|
|
|
# GNU copyright 1997 to 1999 by Joey Hess.
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
|
|
|
# This is the debhelper compatability version to use.
|
|
|
|
export DH_COMPAT=1
|
|
|
|
|
|
|
|
build: build-stamp
|
|
|
|
build-stamp:
|
|
|
|
dh_testdir
|
|
|
|
|
2000-11-02 22:51:16 +00:00
|
|
|
# # If the Makefile.in.in file in po/ already contains DESTDIR support, skip the patching.
|
|
|
|
cd `pwd`/po ; ( \
|
|
|
|
if ! grep DESTDIR Makefile.in.in > /dev/null ; then \
|
|
|
|
patch -Ns -p0 < `pwd`/../debian/po-Makefile.in.in.diff || true ;\
|
|
|
|
fi ;\
|
|
|
|
)
|
2000-11-24 14:15:20 +00:00
|
|
|
|
|
|
|
env CFLAGS='-O2 -Wall' ./autogen.sh --prefix=/usr --mandir=\$${prefix}/share/man \
|
2000-11-24 14:04:49 +00:00
|
|
|
--infodir=\$${prefix}/share/info --sysconfdir=/etc --localstatedir=/var
|
2000-11-24 14:15:20 +00:00
|
|
|
|
2000-04-25 19:11:02 +00:00
|
|
|
$(MAKE)
|
|
|
|
|
|
|
|
touch build-stamp
|
|
|
|
|
|
|
|
clean:
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
rm -f build-stamp
|
|
|
|
|
2000-11-24 14:15:20 +00:00
|
|
|
-$(MAKE) cvs-clean
|
2000-04-25 19:11:02 +00:00
|
|
|
|
|
|
|
dh_clean
|
|
|
|
|
|
|
|
install: build
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
|
|
|
dh_installdirs
|
|
|
|
|
2000-08-22 14:55:04 +00:00
|
|
|
$(MAKE) install DESTDIR=`pwd`/debian/tmp
|
2001-01-13 14:56:46 +00:00
|
|
|
mkdir -p `pwd`/debian/tmp/etc/tinc
|
2001-01-18 13:02:34 +00:00
|
|
|
cp -a doc/sample-config.tar.gz `pwd`/debian/tmp/etc/tinc/example
|
|
|
|
cd `pwd`/debian/tmp/etc/tinc/example && tar xzf sample-config.tar.gz && rm sample-config.tar.gz
|
2000-05-21 22:40:41 +00:00
|
|
|
ln -s /usr/share/doc/tinc/README.Debian `pwd`/debian/tmp/etc/tinc/example/README
|
2000-04-25 19:11:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Build architecture-independent files here.
|
|
|
|
binary-indep: build install
|
|
|
|
# We have nothing to do by default.
|
|
|
|
|
|
|
|
# Build architecture-dependent files here.
|
|
|
|
binary-arch: build install
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_installdocs
|
|
|
|
dh_installexamples
|
2000-04-25 20:42:54 +00:00
|
|
|
dh_installinit
|
2000-04-25 19:11:02 +00:00
|
|
|
dh_installmanpages
|
2000-12-05 09:03:19 +00:00
|
|
|
dh_installmodules
|
2000-04-25 19:11:02 +00:00
|
|
|
dh_installinfo
|
|
|
|
dh_installchangelogs ChangeLog
|
|
|
|
dh_link
|
|
|
|
dh_strip
|
|
|
|
dh_compress
|
|
|
|
dh_fixperms
|
|
|
|
dh_installdeb
|
2000-11-02 22:51:16 +00:00
|
|
|
dh_perl
|
2000-04-25 19:11:02 +00:00
|
|
|
dh_shlibdeps
|
|
|
|
dh_gencontrol
|
|
|
|
dh_md5sums
|
|
|
|
dh_builddeb
|
|
|
|
|
|
|
|
binary: binary-indep binary-arch
|
|
|
|
.PHONY: build clean binary-indep binary-arch binary install
|