1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
# The following variable is dependent on placement of this file
top_builddir = ..
############
# MANPAGES #
############
#Special Rules:
export SGML_CATALOG_FILES
DOCBOOK_XSLT = http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
XMLLINT_FLAGS = --catalogs --postvalid --nonet --xinclude --noout
XSLTPROC_FLAGS = --catalogs --xinclude --nonet
man_MANS = \
gssproxy.8 gssproxy.conf.5 gssproxy-mech.8
EXTRA_DIST = $(man_MANS:%=%.xml) $(wildcard $(srcdir)/include/*.xml)
SUFFIXES = .1.xml .1 .3.xml .3 .5.xml .5 .8.xml .8
.1.xml.1:
$(XMLLINT) $(XMLLINT_FLAGS) $<
$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(DOCBOOK_XSLT) $<
.3.xml.3:
$(XMLLINT) $(XMLLINT_FLAGS) $<
$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(DOCBOOK_XSLT) $<
.5.xml.5:
$(XMLLINT) $(XMLLINT_FLAGS) $<
$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(DOCBOOK_XSLT) $<
.8.xml.8:
$(XMLLINT) $(XMLLINT_FLAGS) $<
$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(DOCBOOK_XSLT) $<
clean-local:
rm -f $(man_MANS)
########################
# MANPAGE TRANSLATIONS #
########################
#
#PO4A=@PO4A@
#SED=@SED@
#
#PACKAGE_DOC=gssproxy-docs
#
#POTFILE = po/$(PACKAGE_DOC).pot
#PO4A_CONFIG = po/po4a.cfg
#
## Extract the list of languages from the po4a config file.
#LINGUAS_DIST = `$(SED) -ne 's/^.*\[po4a_langs\] \(.*\)$$/\1/p' $(srcdir)/$(PO4A_CONFIG)`
#
## If the user has not defined it let's use the default.
#LINGUAS ?= $(LINGUAS_DIST)
#
#PO4A_COMMON_OPTS = --option doctype=docbook \
# --package-name $(PACKAGE_DOC) \
# --variable builddir=$(CURDIR) \
# --package-version $(PACKAGE_VERSION) \
# --msgid-bugs-address simo@redhat.com \
# --copyright-holder "Red Hat"
#
#PO4A_BUILD_OPTS = $(PO4A_COMMON_OPTS) --no-backups
#
#EXTRA_DIST += \
# $(POTFILE)\
# $(PO4A_CONFIG)
#
#XML_DOC = $(wildcard $(srcdir)/*.xml) $(wildcard $(srcdir)/include/*.xml)
#
#if HAVE_PO4A
#
## FIXME: Use a stamp file until po4a supports them internally.
#man.stamp: $(XML_DOC) $(POTFILE) $(PO4A_CONFIG)
# cd $(srcdir) && \
# $(PO4A) $(PO4A_BUILD_OPTS) $(PO4A_CONFIG)
# touch $@
#
#update-po:
# cd $(srcdir) && \
# $(PO4A) $(PO4A_BUILD_OPTS) --force $(PO4A_CONFIG)
#
#dist-hook: man.stamp
# if [ -f man.stamp ]; then \
# cp man.stamp $(distdir); \
# for lang in $(LINGUAS_DIST); do \
# cp $(srcdir)/po/$$lang.po $(distdir)/po; \
# $(mkdir_p) $(distdir)/$$lang; \
# cp -r $(builddir)/$$lang $(distdir)/; \
# done; \
# else \
# cp $(srcdir)/man.stamp $(distdir); \
# for lang in $(LINGUAS_DIST); do \
# cp $(srcdir)/po/$$lang.po $(distdir)/po; \
# $(mkdir_p) $(distdir)/$$lang; \
# cp -r $(srcdir)/$$lang $(distdir)/; \
# done; \
# fi
#
#
#clean-local-no:
#clean-local-yes:
# for lang in $(LINGUAS); do \
# if [ -d $$lang ]; then \
# rm -rf $$lang; \
# fi \
# done
# rm -f $(man_MANS)
# rm -f man.stamp
#
#else
#
#man.stamp: $(XML_DOC)
# touch $@
#
#clean-local-no:
#clean-local-yes:
# rm -f $(man_MANS)
# rm -f man.stamp
#
#endif
#
#clean-local: clean-local-@USE_NLS@
#distclean-local: clean-local-@USE_NLS@
#mostlyclean-local: clean-local-@USE_NLS@
#maintainer-clean-local: clean-local-@USE_NLS@
#
## Generate translated manual pages
#all-local: all-local-@USE_NLS@
#all-local-no:
#all-local-yes: man.stamp
# if [ -z $$recursion ]; then \
# for lang in $(LINGUAS); do \
# if [ -d $$lang ]; then \
# sources=$$(ls -1 $$lang/*.xml); \
# manpages=$$(echo $$sources | $(SED) 's/\.xml//g'); \
# $(MAKE) recursion=1 man_MANS="$$manpages"; \
# fi \
# done \
# fi
#
#install-data-local: install-data-local-@USE_NLS@
#install-data-local-no:
#install-data-local-yes:
# for lang in $(LINGUAS); do \
# if [ -d $$lang ]; then \
# sources=$$(ls -1 $$lang/*.xml); \
# manpages=$$(echo $$sources | $(SED) 's/\.xml//g'); \
# $(MAKE) install-man \
# mandir="$(mandir)/$$lang" \
# man_MANS="$$manpages"; \
# fi \
# done
#
#uninstall-local: uninstall-local-@USE_NLS@
#uninstall-local-no:
#uninstall-local-yes:
# for lang in $(LINGUAS); do \
# if [ -d $$lang ]; then \
# sources=$$(ls -1 $$lang/*.xml); \
# manpages=$$(echo $$sources | $(SED) 's/\.xml//g'); \
# $(MAKE) uninstall-man \
# mandir="$(mandir)/$$lang" \
# man_MANS="$$manpages"; \
# fi \
# done
|