summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2014-07-29 15:13:53 +0000
committerLars Wendler <polynomial-c@gentoo.org>2014-07-29 15:13:53 +0000
commitd70a84f5d826d3c1c56f838b3d3b414755a26d91 (patch)
tree084c9bc2fc1330524617774bceb81bdc6ee3f185 /sys-apps
parentVersion bump (diff)
downloadgentoo-2-d70a84f5d826d3c1c56f838b3d3b414755a26d91.tar.gz
gentoo-2-d70a84f5d826d3c1c56f838b3d3b414755a26d91.tar.bz2
gentoo-2-d70a84f5d826d3c1c56f838b3d3b414755a26d91.zip
Version bump. Removed old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/help2man/ChangeLog8
-rw-r--r--sys-apps/help2man/files/help2man-1.46.1-linguas.patch67
-rw-r--r--sys-apps/help2man/help2man-1.46.1.ebuild (renamed from sys-apps/help2man/help2man-1.44.1.ebuild)4
3 files changed, 76 insertions, 3 deletions
diff --git a/sys-apps/help2man/ChangeLog b/sys-apps/help2man/ChangeLog
index 6ff7d9d2c60f..c60117dc4c57 100644
--- a/sys-apps/help2man/ChangeLog
+++ b/sys-apps/help2man/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/help2man
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.116 2014/03/25 07:43:34 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.117 2014/07/29 15:13:53 polynomial-c Exp $
+
+*help2man-1.46.1 (29 Jul 2014)
+
+ 29 Jul 2014; Lars Wendler <polynomial-c@gentoo.org> -help2man-1.44.1.ebuild,
+ +help2man-1.46.1.ebuild, +files/help2man-1.46.1-linguas.patch:
+ Version bump. Removed old.
*help2man-1.45.1 (25 Mar 2014)
diff --git a/sys-apps/help2man/files/help2man-1.46.1-linguas.patch b/sys-apps/help2man/files/help2man-1.46.1-linguas.patch
new file mode 100644
index 000000000000..b4631bfa7cd7
--- /dev/null
+++ b/sys-apps/help2man/files/help2man-1.46.1-linguas.patch
@@ -0,0 +1,67 @@
+respect user LINGUAS
+
+--- help2man-1.46.1/Makefile.in
++++ help2man-1.46.1/Makefile.in
+@@ -27,8 +27,15 @@
+ export VPATH = .:$(srcdir)
+
+ DESTDIR =
+-LINGUAS = $(basename $(notdir $(wildcard $(srcdir)/po/*.po)))
+-LINGUAS_TEXI = $(basename $(notdir $(wildcard $(srcdir)/po-texi/*.po)))
++ALL_LINGUAS = $(basename $(notdir $(wildcard $(srcdir)/po/*.po)))
++ALL_LINGUAS_TEXI = $(basename $(notdir $(wildcard $(srcdir)/po-texi/*.po)))
++ifeq ($(LINGUAS),)
++INSTALL_LINGUAS = $(ALL_LINGUAS)
++INSTALL_LINGUAS_TEXI = $(ALL_LINGUAS_TEXI)
++else
++INSTALL_LINGUAS = $(filter $(LINGUAS),$(ALL_LINGUAS))
++INSTALL_LINGUAS_TEXI = $(filter $(LINGUAS),$(ALL_LINGUAS_TEXI))
++endif
+
+ CC = @CC@
+ PERL = @PERL@
+@@ -80,7 +87,7 @@
+
+ install_l10n: install_dirs msg_l10n man_l10n info_l10n
+ set -e; \
+- for lang in $(LINGUAS); \
++ for lang in $(INSTALL_LINGUAS); \
+ do \
+ $(MKINSTALLDIRS) $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
+ $(INSTALL_DATA) $$($(FIND_VPATH) po/$$lang.gmo) \
+@@ -89,7 +96,7 @@
+ $(INSTALL_DATA) $$($(FIND_VPATH) $(target).$$lang.1) \
+ $(DESTDIR)$(mandir)/$$lang/man1/$(target).1; \
+ done; \
+- for lang in $(LINGUAS_TEXI); \
++ for lang in $(INSTALL_LINGUAS_TEXI); \
+ do \
+ $(INSTALL_DATA) $$($(FIND_VPATH) $(target)-$$lang.info) \
+ $(DESTDIR)$(infodir)/$(target)-$$lang.info; \
+@@ -151,7 +158,7 @@
+ $(MAKE) $(target) $(target).h2m
+ ./$(target) --include=$(target).h2m --output=$@ ./$(target)
+
+-msg_l10n: $(addprefix po/,$(addsuffix .gmo,$(LINGUAS)))
++msg_l10n: $(addprefix po/,$(addsuffix .gmo,$(ALL_LINGUAS)))
+ po/%.gmo: $(srcdir)/po/%.po
+ test -d po || mkdir po
+ $(MSGFMT) -o $@ $?
+@@ -161,7 +168,7 @@
+ $(MKINSTALLDIRS) localetmp/$$lang/LC_MESSAGES && \
+ $(INSTALL_DATA) po/$$lang.gmo localetmp/$$lang/LC_MESSAGES/$(target).mo
+
+-man_l10n: $(addprefix $(target).,$(addsuffix .1,$(LINGUAS)))
++man_l10n: $(addprefix $(target).,$(addsuffix .1,$(ALL_LINGUAS)))
+ $(target).%.1: $(srcdir)/$(target).PL $(srcdir)/$(target).h2m.PL \
+ $(srcdir)/po/%.po
+ lang=$(patsubst $(target).%.1,%,$@); \
+@@ -184,7 +191,7 @@
+ $(target).info: $(srcdir)/$(target).texi
+ $(MAKEINFO) $? -o $@
+
+-info_l10n: $(addprefix $(target)-,$(addsuffix .info,$(LINGUAS_TEXI)))
++info_l10n: $(addprefix $(target)-,$(addsuffix .info,$(ALL_LINGUAS_TEXI)))
+ $(target)-%.info: $(target)-%.texi
+ $(MAKEINFO) $? -o $@.tmp
+ $(FIXUP_TEXI_TRANS) -o $@ $@.tmp
diff --git a/sys-apps/help2man/help2man-1.44.1.ebuild b/sys-apps/help2man/help2man-1.46.1.ebuild
index 807f5fcf5965..2ee61779dd99 100644
--- a/sys-apps/help2man/help2man-1.44.1.ebuild
+++ b/sys-apps/help2man/help2man-1.46.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.44.1.ebuild,v 1.1 2014/02/03 12:31:13 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.46.1.ebuild,v 1.1 2014/07/29 15:13:53 polynomial-c Exp $
EAPI=4
inherit eutils
@@ -25,7 +25,7 @@ DOCS="debian/changelog NEWS README THANKS" #385753
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-1.36.4-respect-LDFLAGS.patch \
- "${FILESDIR}"/${PN}-1.38.4-linguas.patch
+ "${FILESDIR}"/${PN}-1.46.1-linguas.patch
}
src_configure() {