Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/help2man/
Date: Sat, 13 Oct 2018 14:21:40
Message-Id: 1539440486.d99ca5dd20a1d785833017254560174678a64ea2.zlogene@gentoo
1 commit: d99ca5dd20a1d785833017254560174678a64ea2
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 13 14:18:40 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 13 14:21:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d99ca5dd
7
8 sys-apps/help2man: Version bump (v1.47.8)
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 sys-apps/help2man/Manifest | 1 +
14 sys-apps/help2man/help2man-1.47.8.ebuild | 39 ++++++++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/sys-apps/help2man/Manifest b/sys-apps/help2man/Manifest
18 index fec9772a43c..678efaf46d7 100644
19 --- a/sys-apps/help2man/Manifest
20 +++ b/sys-apps/help2man/Manifest
21 @@ -1,2 +1,3 @@
22 DIST help2man-1.47.6.tar.xz 192980 BLAKE2B ddf2b899e4479a45505aefaf3dabfceb1595128da35c000b81be79046aabceff58e1d605b2797880c5c652947d0fe59673eaf087de911152e79768c571037a73 SHA512 d24849b93de58b20f518c071687e7bfa653a96600382f36c4cf7fc1047656458f75f093b911b786b18b6931b2453cb60868ecbe07cc7d2984e5981a874b34942
23 DIST help2man-1.47.7.tar.xz 200128 BLAKE2B bdac9d1db29b03bbb8e41caecfdf3a7273b69d9b9fa2e206b2e6c28d1144c3104b8d4b7d4a43aab1b405bffd6e097db63a2f4e97a76dfcd980ee5d8a9ffc2114 SHA512 e6ec25d973df68edde87d3314b1bef2e679d57d4c9e024bca17362b9da058c80314050e1ae61d73179b8c2662c8692caa1f223fc48b8d02f2d4f040d16e51d14
24 +DIST help2man-1.47.8.tar.xz 200264 BLAKE2B 2650909986649a471cfa13db96fda34e864312aab96ffa2692c2d38cbb9b36149d90a398b3ea9568992b9da01ab7aeeab8022ee74edebf2e7c83cac48c951e7c SHA512 05e420560b143042418db2e992beaef45cc5a568cdbf640c7b285ba2dc322290d14e0df978ff4c412a99f4346e38f6fb9796ebda695ddc002a3d0e74e85725d6
25
26 diff --git a/sys-apps/help2man/help2man-1.47.8.ebuild b/sys-apps/help2man/help2man-1.47.8.ebuild
27 new file mode 100644
28 index 00000000000..7c0baf97fce
29 --- /dev/null
30 +++ b/sys-apps/help2man/help2man-1.47.8.ebuild
31 @@ -0,0 +1,39 @@
32 +# Copyright 1999-2018 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +DESCRIPTION="GNU utility to convert program --help output to a man page"
38 +HOMEPAGE="https://www.gnu.org/software/help2man/"
39 +SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
44 +IUSE="nls"
45 +
46 +RDEPEND="dev-lang/perl
47 + nls? ( dev-perl/Locale-gettext )"
48 +DEPEND=${RDEPEND}
49 +
50 +DOCS=( debian/changelog NEWS README THANKS ) #385753
51 +
52 +PATCHES=(
53 + "${FILESDIR}"/${PN}-1.46.1-linguas.patch
54 +)
55 +
56 +src_prepare() {
57 + if [[ ${CHOST} == *-darwin* ]] ; then
58 + sed -i \
59 + -e 's/-shared/-bundle/' \
60 + Makefile.in || die
61 + fi
62 + default
63 +}
64 +
65 +src_configure() {
66 + # Disable gettext requirement as the release includes the gmo files #555018
67 + econf \
68 + ac_cv_path_MSGFMT=$(type -P false) \
69 + $(use_enable nls)
70 +}