]> git.donarmstrong.com Git - debhelper.git/commitdiff
r80: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 04:50:15 +0000 (04:50 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 04:50:15 +0000 (04:50 +0000)
debian/changelog
examples/rules
examples/rules.indep
examples/rules.multi

index ce1e3814ded5413876eb690b56feb622e770c210..24830908dce264b36f73afcadcf7d3a0d786e3dc 100644 (file)
@@ -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 <joeyh@master.debian.org>  Tue, 31 Mar 1998 19:27:29 -0800
+
 debhelper (0.81) unstable; urgency=low
 
   * dh_movefiles: empty $tomove (#20495).
index 7fbd9d99957d203971957b1ea368be3fe8d42dbc..631e5cb72db9c79586a33096f24bca06900e081a 100755 (executable)
@@ -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
index 7ba839ad99bed395168dd244673fe66ea5ae3ae1..08ce4b62c538a07614875cecf160ad52babb8fd1 100755 (executable)
@@ -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:
index 33a1a4ac4b5c001fb59235ed39e6c5b775cef2f1..92e2e83025acc56ebda35b41b9dece33f9265367 100755 (executable)
@@ -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