]> git.donarmstrong.com Git - debhelper.git/commitdiff
r182: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:11:32 +0000 (05:11 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:11:32 +0000 (05:11 +0000)
debian/changelog
debian/rules
doc/README

index 7726e2e773e9ebe5a627bf2211eb85c9c5bd62d8..2a5843ce04ef2ee1767579e6845f2ec70621fc2c 100644 (file)
@@ -1,3 +1,11 @@
+debhelper (1.2.45) unstable; urgency=low
+
+  * dh_installwm.1: fixed two errors (#34534, #34535)
+  * debhelper.1: list all other debhelper commands with synopses
+    (automatically generated by build process).
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun, 14 Mar 1999 11:33:39 -0800
+
 debhelper (1.2.44) unstable; urgency=medium
 
   * dh_fixperms: has been mostly broken when used with -X, corrected this.
index 0d9676f25e8f3206ffcb92ef21573d09478bf83d..1c8c3b93e2cccc5b70f8a75f526b8c498ad0fe90 100755 (executable)
@@ -41,6 +41,22 @@ binary-indep: build
        ./dh_installexamples examples/*
        ./dh_installmenu
        ./dh_installmanpages
+       # Fix up the debhelper.1 man page, substituting in a list of all
+       # debhelper commands. eek!
+       perl -ne ' \
+               s/\\- /(1)\n/; \
+               $$collect.=".TP\n.BR $$_" if $$. eq 3 && /^dh_/; \
+               close(ARGV) if eof; \
+               END { \
+                       open(I,"debhelper.1"); \
+                       open(O,">debian/tmp/usr/man/man1/debhelper.1"); \
+                       while (<I>) { \
+                               s/#LIST#/$$collect/; \
+                               print O; \
+                       } \
+                       close I; \
+                       close O; \
+               }' *.1
        ./dh_installchangelogs
        ./dh_movefiles
        ./dh_link
index 07048e35a3f26f03861e6d3497ca84afb1d5fd8c..34063629eb46f0a9f45831d75a9b1a7d49c53aff 100644 (file)
@@ -9,6 +9,10 @@ that use debhelper commands extensively. See /usr/doc/debhelper/examples/ .
 These files are also useful as they give one good order you can run the 
 various debhelper scripts in (though other variations are possible).
 
+For a more gentle introduction, the maint-guid debian package contains a
+tutorial about making your first package using Debhelper.
+
+
 Starting a new package:
 ----------------------