new bblfs: sys-apps/help2man-1.49.3

This commit is contained in:
2026-01-08 02:38:26 -05:00
parent cc777d7ee4
commit 160ee84ff9
2 changed files with 104 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
pkgname=help2man
pkgver=1.49.3
pkgdesc="Conversion tool to create man files"
arch=('x86_64')
url="https://www.gnu.org/software/help2man/"
license=('GPL')
depends=()
_patches=("help2man-1.46.1-linguas.patch")
_patch_sums=("0cda34b0c209190ba7709a92394af2d1")
sources=("${pkgname}-${pkgver}.tar.xz"
${_patches[@]})
urls=("https://ftp.gnu.org/gnu/${pkgname}/${sources[0]}"
${_patches[@]})
md5sums=("2a0ffaa1822df5b6971f486a4fe1a4d1"
${_patch_sums[@]})
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
for _patch in ${_patches[@]}; do
patch -Np1 -i ${filedir}/${_patch}
done
}
src_build() {
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--libdir=/usr/lib \
--disable-nls
make
}
src_install() {
make DESTDIR="${pkgdir}" install
}
# vim:ft=sh syn=sh et sw=2:

View File

@@ -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