diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2009-11-02 10:26:52 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2009-11-02 10:26:52 +0100 |
commit | 93517da394859666e4af08f518dfb95c4ac271dd (patch) | |
tree | 3ec4f3345e6fe30168d37958ec473e782e1b3922 | |
parent | fec6996f966f4d9d3256cd3b09dc098f3a7b5481 (diff) |
fix/simplify buildsystem for the (now) po4a-only manpages
-rw-r--r-- | .bzrignore | 14 | ||||
-rw-r--r-- | buildlib/po4a_manpage.mak | 3 | ||||
-rw-r--r-- | buildlib/sgml_manpage.mak | 45 | ||||
-rw-r--r-- | doc/es/makefile | 9 | ||||
-rw-r--r-- | doc/makefile | 8 | ||||
-rw-r--r-- | doc/pt_BR/makefile | 7 |
6 files changed, 13 insertions, 73 deletions
diff --git a/.bzrignore b/.bzrignore index 660c3e027..45db3c607 100644 --- a/.bzrignore +++ b/.bzrignore @@ -9,7 +9,8 @@ autom4te.cache/ build/ configure -# generated apt man pages +# generated files in the progress to build all +# apt man pages and other documentation doc/*.1 doc/*.5 doc/*.8 @@ -17,14 +18,5 @@ doc/*/*.1 doc/*/*.5 doc/*/*.8 doc/*/apt.ent - -# ignore xml man page files generated by po4a -# older translation methods translate in this files -# so we can not ignore it for all translations now doc/*/*.xml - -# FIXME: files generated by deprecated sgml man pages -doc/es/manpage.links -doc/es/manpage.refs -doc/pt_BR/manpage.links -doc/pt_BR/manpage.refs +doc/*/*.sgml diff --git a/buildlib/po4a_manpage.mak b/buildlib/po4a_manpage.mak index 3d90c6ba4..dfa215d29 100644 --- a/buildlib/po4a_manpage.mak +++ b/buildlib/po4a_manpage.mak @@ -35,7 +35,8 @@ $($(LOCAL)-LIST) :: % : %.xml $(INCLUDES) .PHONY: veryclean/$(LOCAL) veryclean/$(LOCAL): -rm -rf $($(@F)-LIST) apt.ent apt.$(LC).8 \ - $(addsuffix .xml,$($(@F)-LIST)) + $(addsuffix .xml,$($(@F)-LIST)) \ + offline.$(LC).sgml guide.$(LC).sgml HAVE_PO4A=yes endif diff --git a/buildlib/sgml_manpage.mak b/buildlib/sgml_manpage.mak deleted file mode 100644 index 5fcb75c46..000000000 --- a/buildlib/sgml_manpage.mak +++ /dev/null @@ -1,45 +0,0 @@ -# -*- make -*- - -# This handles man pages in DocBook SGMLL format. We convert to the respective -# output in the source directory then copy over to the final dest. This -# means yodl is only needed if compiling from CVS - -# Input -# $(SOURCE) - The documents to use, in the form foo.sect, ie apt-cache.8 -# the sgml files are called apt-cache.8.sgml - -# See defaults.mak for information about LOCAL - -# Some local definitions -ifdef DOCBOOK2MAN - -LOCAL := sgml-manpage-$(firstword $(SOURCE)) -$(LOCAL)-LIST := $(SOURCE) - -# Install generation hooks -doc: $($(LOCAL)-LIST) -veryclean: veryclean/$(LOCAL) - -$($(LOCAL)-LIST) :: % : %.sgml $(INCLUDES) - echo Creating man page $@ - $(DOCBOOK2MAN) $< - -# Clean rule -.PHONY: veryclean/$(LOCAL) -veryclean/$(LOCAL): - -rm -rf $($(@F)-LIST) - -HAVE_SGML=yes -endif - -INCLUDES := - -ifndef HAVE_SGML -# Strip from the source list any man pages we dont have compiled already -SOURCE := $(wildcard $(SOURCE)) -endif - -# Chain to the manpage rule -ifneq ($(words $(SOURCE)),0) -include $(MANPAGE_H) -endif diff --git a/doc/es/makefile b/doc/es/makefile index 81a410c5c..0b5b52222 100644 --- a/doc/es/makefile +++ b/doc/es/makefile @@ -5,8 +5,7 @@ SUBDIR=doc/es # Bring in the default rules include ../../buildlib/defaults.mak -# Man pages -SOURCE = apt-cache.es.8 apt-get.es.8 apt-cdrom.es.8 apt.conf.es.5 \ - sources.list.es.5 apt-config.es.8 apt_preferences.es.5 -INCLUDES = apt.ent.es -include $(SGML_MANPAGE_H) +# Language Code of this translation +LC=es + +include $(PO4A_MANPAGE_H) diff --git a/doc/makefile b/doc/makefile index 0cb135c7b..fe53aba48 100644 --- a/doc/makefile +++ b/doc/makefile @@ -43,14 +43,6 @@ veryclean-subdirs: for dir in $(SUBDIRS); do\ $(MAKE) -C $$dir veryclean; \ done - # FIXME remove created sgml files, but preserve all - # which are "left over" from older systems. - # After completing the transition this should be handled - # in the po4a-manpage makefile for all translations - for dir in $(subst /addendum/,, $(dir $(wildcard */addendum/*))); do\ - rm -f $$dir/offline.$$dir.sgml; \ - rm -f $$dir/guide.$$dir.sgml; \ - done ifdef PO4A doc: po4a diff --git a/doc/pt_BR/makefile b/doc/pt_BR/makefile index 4c9ea6293..6e485bbf6 100644 --- a/doc/pt_BR/makefile +++ b/doc/pt_BR/makefile @@ -5,6 +5,7 @@ SUBDIR=doc/pt_BR # Bring in the default rules include ../../buildlib/defaults.mak -SOURCE = apt_preferences.pt_BR.5 -INCLUDES = apt.ent.pt_BR -include $(SGML_MANPAGE_H) +# Language Code of this translation +LC=pt_BR + +include $(PO4A_MANPAGE_H) |