summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-02-03 15:49:00 +0100
committerDavid Seifert <soap@gentoo.org>2017-02-04 22:19:24 +0100
commit42fdba9f4c0262ff05fd9e7582dc70e90ffc0539 (patch)
treed9ca3b5445e921fbfa13ed411f4d0eab3309b66c /sys-apps/help2man
parentsys-apps/gawk: remove unused patch (diff)
downloadgentoo-42fdba9f4c0262ff05fd9e7582dc70e90ffc0539.tar.gz
gentoo-42fdba9f4c0262ff05fd9e7582dc70e90ffc0539.tar.bz2
gentoo-42fdba9f4c0262ff05fd9e7582dc70e90ffc0539.zip
sys-apps/help2man: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/3791
Diffstat (limited to 'sys-apps/help2man')
-rw-r--r--sys-apps/help2man/files/help2man-1.36.4-respect-LDFLAGS.patch11
-rw-r--r--sys-apps/help2man/files/help2man-1.38.4-linguas.patch53
2 files changed, 0 insertions, 64 deletions
diff --git a/sys-apps/help2man/files/help2man-1.36.4-respect-LDFLAGS.patch b/sys-apps/help2man/files/help2man-1.36.4-respect-LDFLAGS.patch
deleted file mode 100644
index e6d1f6f0811e..000000000000
--- a/sys-apps/help2man/files/help2man-1.36.4-respect-LDFLAGS.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in
-+++ Makefile.in
-@@ -102,7 +102,7 @@
-
- preload: $(preload).so
- $(preload).so: $(srcdir)/$(preload).c
-- $(CC) $(CFLAGS) -o $@ -fPIC -shared $? $(LIBS)
-+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ -fPIC -shared $? $(LIBS)
-
- man: $(target).1
- $(target).1: $(srcdir)/$(target).PL $(srcdir)/$(target).h2m
diff --git a/sys-apps/help2man/files/help2man-1.38.4-linguas.patch b/sys-apps/help2man/files/help2man-1.38.4-linguas.patch
deleted file mode 100644
index 080166c5060c..000000000000
--- a/sys-apps/help2man/files/help2man-1.38.4-linguas.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-respect user LINGUAS
-
-+++ b/Makefile.in
-@@ -16,7 +16,12 @@
- export VPATH = .:$(srcdir)
-
- DESTDIR =
--LINGUAS = $(basename $(notdir $(wildcard $(srcdir)/po/*.po)))
-+ALL_LINGUAS = $(basename $(notdir $(wildcard $(srcdir)/po/*.po)))
-+ifeq ($(LINGUAS),)
-+INSTALL_LINGUAS = $(ALL_LINGUAS)
-+else
-+INSTALL_LINGUAS = $(filter $(LINGUAS),$(ALL_LINGUAS))
-+endif
-
- CC = @CC@
- PERL = @PERL@
-@@ -56,7 +62,7 @@
- $(INSTALL_PROGRAM) $(preload).so $(DESTDIR)$(pkglibdir)
-
- install_l10n: install_dirs msg_l10n man_l10n
-- for lang in $(LINGUAS); \
-+ for lang in $(INSTALL_LINGUAS); \
- do \
- $(MKINSTALLDIRS) $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
- $(INSTALL_DATA) $(call vpath_file,po/$$lang.gmo) \
-@@ -124,7 +130,7 @@
- $(MAKE) $(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 $@ $?
-@@ -134,7 +140,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,%,$@); \
-@@ -164,7 +170,7 @@
- ./config.status
-
- update-po: $(srcdir)/po/$(target).pot
-- for lang in $(LINGUAS); \
-+ for lang in $(ALL_LINGUAS); \
- do \
- echo -n "Updating $$lang "; \
- msgmerge -U $(srcdir)/po/$$lang.po $(srcdir)/po/$(target).pot; \