From 2508377c60059fc5012d1c2304dafa12afaa0b8f Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 17 Aug 1999 04:50:15 +0000 Subject: [PATCH] r80: Initial Import --- debian/changelog | 8 ++++++++ examples/rules | 22 +++++++++++++++------- examples/rules.indep | 22 +++++++++++++++------- examples/rules.multi | 26 +++++++++++++++----------- 4 files changed, 53 insertions(+), 25 deletions(-) diff --git a/debian/changelog b/debian/changelog index ce1e381..2483090 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +debhelper (0.83) unstable; urgency=low + + * Generate symlinks in build stage of debian/rules. cvs cannot create them + properly. Note that version 0.80 and 0.81 could not build some packages + because of missing symlinks. + + -- Joey Hess Tue, 31 Mar 1998 19:27:29 -0800 + debhelper (0.81) unstable; urgency=low * dh_movefiles: empty $tomove (#20495). diff --git a/examples/rules b/examples/rules index 7fbd9d9..631e5cb 100755 --- a/examples/rules +++ b/examples/rules @@ -16,28 +16,36 @@ build-stamp: clean: dh_testdir dh_testroot - rm -f build-stamp + rm -f build-stamp install-stamp # Add here commands to clean up after the build process. + #-$(MAKE) clean #-$(MAKE) distclean dh_clean +install: install-stamp +install-stamp: build + dh_testdir + dh_testroot + dh_clean + + # Add here commands to install the package into debian/tmp. + #$(MAKE) prefix=`pwd`/debian/tmp/usr install + + touch install-stamp + # Build architecture-independent files here. -binary-indep: build +binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. -binary-arch: build +binary-arch: build install # dh_testversion dh_testdir dh_testroot dh_clean -k dh_installdirs - - # Add here commands to install the files into debian/tmp - #$(MAKE) prefix=`pwd`/debian/tmp install - dh_installdocs dh_installexamples dh_installmenu diff --git a/examples/rules.indep b/examples/rules.indep index 7ba839a..08ce4b6 100755 --- a/examples/rules.indep +++ b/examples/rules.indep @@ -17,24 +17,32 @@ build-stamp: clean: dh_testdir dh_testroot - rm -f build-stamp + rm -f build-stamp install-stamp # Add here commands to clean up after the build process. + #-$(MAKE) clean #-$(MAKE) distclean dh_clean +install: install-stamp +install-stamp: build + dh_testdir + dh_testroot + dh_clean + + # Add here commands to install the package into debian/tmp. + #$(MAKE) prefix=`pwd`/debian/tmp/usr install + + touch install-stamp + # Build architecture-independent files here. -binary-indep: build +binary-indep: build install # dh_testversion dh_testdir dh_testroot dh_clean -k dh_installdirs - - # Add here commands to install the files into debian/tmp - #$(MAKE) prefix=`pwd`/debian/tmp install - dh_installdocs dh_installexamples dh_installmenu @@ -52,7 +60,7 @@ binary-indep: build dh_builddeb # Build architecture-dependent files here. -binary-arch: build +binary-arch: build install # We have nothing to do by default. source diff: diff --git a/examples/rules.multi b/examples/rules.multi index 33a1a4a..92e2e83 100755 --- a/examples/rules.multi +++ b/examples/rules.multi @@ -19,24 +19,32 @@ build-stamp: clean: dh_testdir dh_testroot - rm -f build-stamp + rm -f build-stamp install-stamp # Add here commands to clean up after the build process. + #-$(MAKE) clean #-$(MAKE) distclean dh_clean +install: install-stamp +install-stamp: build + dh_testdir + dh_testroot + dh_clean + + # Add here commands to install the package into debian/tmp. + #$(MAKE) prefix=`pwd`/debian/tmp/usr install + + touch install-stamp + # Build architecture-independent files here. -binary-indep: build +binary-indep: build install # dh_testversion dh_testdir -i dh_testroot -i dh_clean -i -k dh_installdirs -i - - # Add here commands to install the files into debian/tmp - #$(MAKE) prefix=`pwd`/debian/tmp install - dh_movefiles -i dh_installdocs -i dh_installexamples -i @@ -55,16 +63,12 @@ binary-indep: build dh_builddeb -i # Build architecture-dependent files here. -binary-arch: build +binary-arch: build install # dh_testversion dh_testdir -a dh_testroot -a dh_clean -a -k dh_installdirs -a - - # Add here commands to install the files into debian/tmp - #$(MAKE) prefix=`pwd`/debian/tmp install - dh_movefiles -a dh_installdocs -a dh_installexamples -a -- 2.39.5