diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-06-28 15:00:00 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-06-28 15:00:00 -0400 |
commit | 55a176113de2b1923c62774779bb9e069d88021d (patch) | |
tree | 1060caf85c37094d93b3af0255ce62de9c42e7ef | |
parent | 2105efbab7b64359550354fe0215b2bd025dd5cb (diff) | |
download | debhelper-55a176113de2b1923c62774779bb9e069d88021d.tar.gz |
Revert "Generate and install dh_auto docs when building debhelper."
I'm reverting the documentation addition to try doing it
myself, more simply and less verbosely.
This reverts commit 6ac4644330cb02384cf6c12a540cdc6b8e347170.
-rw-r--r-- | Makefile | 19 |
1 files changed, 3 insertions, 16 deletions
@@ -27,28 +27,15 @@ PERLLIBDIR=$(shell perl -MConfig -e 'print $$Config{vendorlib}')/Debian/Debhelpe POD2MAN=pod2man -c Debhelper -r "$(VERSION)" -DH_AUTO_POD=man/dh_auto_pod - # l10n to be built is determined from .po files LANGS=$(notdir $(basename $(wildcard man/po4a/po/*.po))) build: version - find . -maxdepth 1 -type f -perm +100 -name "dh*" -a ! -name "dh_auto*" \ + 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) --name="debhelper" --section=7 > debhelper.7 - # Generate dh_auto program PODs and manual pages - ./run find . -maxdepth 1 -type f -perm +100 -name "dh_auto_*" \ - -exec $(DH_AUTO_POD) {} -oman/{}.pod \; - cd man; for pod in dh_auto_*.pod; do $(POD2MAN) --section=1 $$pod "../$${pod%.pod}.1"; done - # Generate dh_auto POD and manual page - ./run $(DH_AUTO_POD) -oman/dh_auto.pod - $(POD2MAN) --section=7 man/dh_auto.pod dh_auto.7 - # Generate dh_auto build system manual pages - find Debian/Debhelper/Buildsystem -maxdepth 1 -type f -name "*.pm" \ - -exec sh -c 'n=`basename {}`;n=$${n%.pm}; $(POD2MAN) --section=7 --name dh_auto_$$n {} dh_auto_$$n.7' \; - # Translations po4a -L UTF-8 man/po4a/po4a.cfg set -e; \ for lang in $(LANGS); do \ @@ -67,7 +54,7 @@ version: Debian/Debhelper/Dh_Version.pm clean: - rm -f *.1 *.7 man/dh_auto*.pod Debian/Debhelper/Dh_Version.pm + rm -f *.1 *.7 Debian/Debhelper/Dh_Version.pm po4a --rm-translations --rm-backups man/po4a/po4a.cfg for lang in $(LANGS); do \ if [ -e man/$$lang ]; then rmdir man/$$lang; fi; \ @@ -78,7 +65,7 @@ install: $(DESTDIR)/usr/share/debhelper/autoscripts \ $(DESTDIR)$(PERLLIBDIR)/Sequence \ $(DESTDIR)$(PERLLIBDIR)/Buildsystem - install $(shell find -maxdepth 1 -mindepth 1 -name dh\* -executable |grep -v \.1\$$) $(DESTDIR)/usr/bin + install $(shell find -maxdepth 1 -mindepth 1 -name dh\* |grep -v \.1\$$) $(DESTDIR)/usr/bin install -m 0644 autoscripts/* $(DESTDIR)/usr/share/debhelper/autoscripts install -m 0644 Debian/Debhelper/*.pm $(DESTDIR)$(PERLLIBDIR) install -m 0644 Debian/Debhelper/Sequence/*.pm $(DESTDIR)$(PERLLIBDIR)/Sequence |