From e7e9c026fbafbe729d41671d60a0101dee39e066 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 10 Jul 2012 08:36:56 -0400 Subject: First release Bump up version to 0.0.2 for the first release Temporarily disable man page translations as we have none Use PAX option for tar so it can handle large uids in make dist --- proxy/configure.ac | 2 +- proxy/man/Makefile.am | 252 +++++++++++++++++++++++++------------------------- proxy/version.m4 | 2 +- 3 files changed, 128 insertions(+), 128 deletions(-) diff --git a/proxy/configure.ac b/proxy/configure.ac index f5532d0..049bb89 100644 --- a/proxy/configure.ac +++ b/proxy/configure.ac @@ -14,7 +14,7 @@ CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE AC_CONFIG_SRCDIR([BUILD.txt]) AC_CONFIG_AUX_DIR([build]) -AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) +AM_INIT_AUTOMAKE([-Wall foreign subdir-objects tar-pax]) AM_PROG_CC_C_O AC_DISABLE_STATIC AC_PROG_INSTALL diff --git a/proxy/man/Makefile.am b/proxy/man/Makefile.am index bbffd01..1e73683 100644 --- a/proxy/man/Makefile.am +++ b/proxy/man/Makefile.am @@ -36,129 +36,129 @@ SUFFIXES = .1.xml .1 .3.xml .3 .5.xml .5 .8.xml .8 ######################## # 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 +# +#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 diff --git a/proxy/version.m4 b/proxy/version.m4 index e720c0d..d4b64c9 100644 --- a/proxy/version.m4 +++ b/proxy/version.m4 @@ -1,5 +1,5 @@ # Primary version number -m4_define([VERSION_NUMBER], [0.0.1]) +m4_define([VERSION_NUMBER], [0.0.2]) # If the PRERELEASE_VERSION_NUMBER is set, we'll append # it to the release tag when creating an RPM or SRPM -- cgit