]> git.donarmstrong.com Git - debhelper.git/blobdiff - debian/rules
r1818: releasing version 5.0.5
[debhelper.git] / debian / rules
index 8d3cf5d5d6fc3a5e218ee351f200a03adce32262..c9b186eda7c7ba4188fbd246d09514a22363d1ea 100755 (executable)
 #!/usr/bin/make -f
-# Note that I have to refer to debhelper programs with ./, to make sure
-# I run the most current ones.
-#
-# This is _not_ a good example of a debhelper rules file, but I didn't need
-# to tell you that; just see the chunk of inlined perl below.. 
+# This is _not_ a good example of a debhelper rules file.
 # See examples/ for some good examples.
 
-# Ensure that builds are self-hosting, which means I have to use the .pm
-# files in this package, not any that may be on the system.
-export PERL5LIB=.
-
-# If any automatic script generation is done in building this package, 
-# be sure to use the new templates from this package.
-export DH_AUTOSCRIPTDIR=autoscripts
-
-# Figure out the `current debhelper version.
-VERSION=$(shell expr "`dpkg-parsechangelog 2>/dev/null |grep Version:`" : '.*Version: \(.*\)')
-
-PERLLIBDIR=$(shell perl -MConfig -e 'print $$Config{vendorlib}')
-
-build: test build-stamp
-build-stamp:
-       # Generate the main man page. All the perl cruft is to get a list
-       # of debhelper commands with short descriptions into the man page.
-       pod2man --section=7 -c Debhelper -r "$(VERSION)" debhelper.pod | \
-       perl -e ' \
+# This generates a list of synopses of debhelper commands, and substitutes
+# it in to the #LIST# line on the man page fed to it on stdin. Must be passed
+# parameters of all the executables or pod files to get the synopses from.
+# (Like I said, this is not a good example of a debhelper rules file..)
+# For correct conversion of pod tags (like S< >) #LIST# must be substituted in
+# the pod file and not in the troff file.
+MAKEMANLIST=perl -e ' \
                undef $$/; \
                foreach (@ARGV) { \
                        open (IN, $$_) or die "$$_: $$!"; \
                        $$file=<IN>; \
                        close IN; \
-                       if ($$file=~m/=head1 NAME\n\n(.*?) - (.*?)\n/m) { \
-                               $$collect.=".IP $$1(1)\n$$2\n"; \
+                       if ($$file=~m/=head1 .*?\n\n(.*?) - (.*?)\n\n/s) { \
+                               $$collect.="=item $$1(1)\n\n$$2\n\n"; \
                        } \
                } \
                END { \
                        while (<STDIN>) { \
-                               s/#LIST#/$$collect/; \
+                               s/\#LIST\#/$$collect/; \
                                print; \
                        }; \
-               }' `find . -type f -perm +1 -maxdepth 1 -name "dh_*" | sort` > debhelper.7
-       # Turn all executables into man pages.
-       find . -type f -perm +1 -maxdepth 1 -name "dh_*" \
-               -exec pod2man -c Debhelper -r "$(VERSION)" {} {}.1 \;
+               }'
+
+# Figure out the `current debhelper version.
+VERSION=$(shell expr "`dpkg-parsechangelog 2>/dev/null |grep Version:`" : '.*Version: \(.*\)')
+
+PERLLIBDIR=$(shell perl -MConfig -e 'print $$Config{vendorlib}')
+
+POD2MAN=pod2man -c Debhelper -r "$(VERSION)"
+
+version:
        printf "package Debian::Debhelper::Dh_Version;\n\$$version='$(VERSION)';" > \
                Debian/Debhelper/Dh_Version.pm
 
+build: version test build-stamp
+build-stamp:
+       find . -maxdepth 1 -type f -perm +100 -name "dh_*" \
+               -exec $(POD2MAN) {} {}.1 \;
+       cat debhelper.pod | \
+               $(MAKEMANLIST) `find . -maxdepth 1 -type f -perm +100 -name "dh_*" | sort` | \
+               $(POD2MAN) --section=7  > debhelper.7
+       po4a po/po4a.cfg 
+       set -e; \
+       for dir in man/*; do \
+               lang=`basename $$dir`; \
+               for file in $$dir/dh_*.pod; do \
+                       prog=`basename $$file | sed 's/.pod//'`; \
+                       $(POD2MAN) $$file $$prog.$$lang.1; \
+               done; \
+               cat $$dir/debhelper.pod | \
+                       $(MAKEMANLIST) `find $$dir -type f -maxdepth 1 -name "dh_*.pod" | sort` | \
+                       $(POD2MAN) --section=7 > debhelper.$$lang.7; \
+       done
+       
        touch build-stamp
 
 clean:
-       ./dh_testdir
-       ./dh_testroot
-       -./dh_clean *.1 *.7 *-stamp Debian/Debhelper/Dh_Version.pm
+       ./run dh_testdir
+       ./run dh_testroot
+       ./run dh_clean *.1 *.7 *-stamp Debian/Debhelper/Dh_Version.pm
+       rm -rf man
 
-test: test-stamp
+test: version test-stamp
 test-stamp:
-       ./dh_clean
-       DH_VERSION=10 perl -MTest::Harness -e 'runtests grep { ! /CVS/ } @ARGV' t/*
-       ./dh_clean
+       ./run dh_clean
+       ./run perl -MTest::Harness -e 'runtests grep { ! /CVS/ && ! /\.svn/ } @ARGV' t/*
+       ./run dh_clean
        touch test-stamp
 
-# Build architecture-dependent files here.
-binary-arch: build
-# Nothing to do.
-
-# Build architecture-independent files here.
 binary-indep: build
-       ./dh_testdir
-       ./dh_testroot
-       ./dh_clean -k
-       ./dh_install -X .1 dh_* usr/bin
-       ./dh_install Debian/Debhelper/*.pm $(PERLLIBDIR)/Debian/Debhelper/
-       ./dh_install autoscripts usr/share/debhelper
-       ./dh_installdocs doc/*
-       ./dh_installexamples examples/*
-       ./dh_installman *.1 *.7
-       ./dh_installchangelogs
-       ./dh_shlibdeps
-       ./dh_link
-       ./dh_compress
-       ./dh_fixperms
-       ./dh_perl
-       ./dh_installdeb
-       ./dh_gencontrol
-       ./dh_md5sums
-       ./dh_builddeb
+       ./run dh_testdir
+       ./run dh_testroot
+       ./run dh_clean -k
+       ./run dh_install -X .1 dh_* usr/bin
+       ./run dh_install Debian/Debhelper/*.pm $(PERLLIBDIR)/Debian/Debhelper/
+       ./run dh_install autoscripts usr/share/debhelper
+       ./run dh_installdocs doc/*
+       ./run dh_installexamples examples/*
+       ./run dh_installman *.1 *.7
+       ./run dh_installchangelogs
+       ./run dh_link
+       ./run dh_compress
+       ./run dh_fixperms
+       ./run dh_perl
+       ./run dh_installdeb
+       ./run dh_gencontrol
+       ./run dh_md5sums
+       ./run dh_builddeb
 
 # Update the debhelper web page. Not intended for use by anyone except the
 # author.
+DIR=/home/web/kitenet.net/programs/debhelper
 installhook:
-       cp debian/changelog /home/pub/programs/debhelper/CHANGES
-       echo -n $(VERSION) > /home/pub/programs/debhelper/LATEST-VERSION-IS
+       cp debian/changelog $(DIR)/CHANGES
+       echo -n $(VERSION) > $(DIR)/LATEST-VERSION-IS
 
+binary-arch:
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary dist
-
+.PHONY: build clean binary-indep binary-arch binary