X-Git-Url: https://git.librecmc.org/?p=oweals%2Ftinc.git;a=blobdiff_plain;f=debian%2Frules;h=14b2fe470b9b990f02ddbb52f9e31d17c8cfad20;hp=74744d2ac95dd851240525a57c29e49de4ca073f;hb=2f37f2bd8ab6b89eb6b6c2b4bdd6ffe449b1aa98;hpb=6461a4b607f5e422b5809acb772e4bfe810b5570 diff --git a/debian/rules b/debian/rules index 74744d2..14b2fe4 100644 --- a/debian/rules +++ b/debian/rules @@ -1,4 +1,4 @@ -#!/bin/make -f +#!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. @@ -12,7 +12,14 @@ build: build-stamp build-stamp: dh_testdir - ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --sysconfdir=/etc +# # 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 ;\ + ) + ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info \ + --sysconfdir=/etc --localstatedir=/var $(MAKE) touch build-stamp @@ -32,9 +39,10 @@ install: build dh_clean -k dh_installdirs - $(MAKE) install prefix=`pwd`/debian/tmp/usr - mkdir -p `pwd`/debian/tmp/etc/tinc - cp doc/tincd.conf.sample `pwd`/debian/tmp/etc/tinc/tincd.conf + $(MAKE) install DESTDIR=`pwd`/debian/tmp + mkdir -p `pwd`/debian/tmp/etc/tinc/example + cp doc/tinc.conf.sample `pwd`/debian/tmp/etc/tinc/example/tinc.conf + ln -s /usr/share/doc/tinc/README.Debian `pwd`/debian/tmp/etc/tinc/example/README # Build architecture-independent files here. @@ -43,30 +51,20 @@ binary-indep: build install # Build architecture-dependent files here. binary-arch: build install -# dh_testversion dh_testdir dh_testroot -# dh_installdebconf dh_installdocs dh_installexamples -# dh_installmenu -# dh_installemacsen -# dh_installpam dh_installinit -# dh_installcron dh_installmanpages dh_installinfo -# dh_undocumented dh_installchangelogs ChangeLog dh_link dh_strip dh_compress dh_fixperms -# # You may want to make some executables suid here. -# dh_suidregister -# dh_makeshlibs dh_installdeb -# dh_perl + dh_perl dh_shlibdeps dh_gencontrol dh_md5sums