diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2015-11-19 09:51:05 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2015-11-19 09:51:05 +0100 |
commit | b2d9afd8755a4981329a045d16017c0ae81f47ea (patch) | |
tree | 56b442ac8d411f9662c6a4ff9008dc1665dc64bb /sys-apps | |
parent | app-text/xmlto: Bump to version 0.0.28 (diff) | |
download | gentoo-b2d9afd8755a4981329a045d16017c0ae81f47ea.tar.gz gentoo-b2d9afd8755a4981329a045d16017c0ae81f47ea.tar.bz2 gentoo-b2d9afd8755a4981329a045d16017c0ae81f47ea.zip |
sys-apps/help2man: Bump to version 1.47.3
Package-Manager: portage-2.2.25
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/help2man/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/help2man/help2man-1.47.3.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/sys-apps/help2man/Manifest b/sys-apps/help2man/Manifest index b628c0d6324c..73904454e20a 100644 --- a/sys-apps/help2man/Manifest +++ b/sys-apps/help2man/Manifest @@ -1,3 +1,4 @@ DIST help2man-1.46.6.tar.xz 171044 SHA256 615ff5ac38369ddb3707c5fd71672ab122639fd9cf6870de172e0127ed632caf SHA512 55bea01b80baf318e4350ee505bf67da9a7e76b7a5cbd861d0fd6e3afe47b82d1de8f1079d0df2f4ea8ec176d6ca95d5c847d8b1c118cf96ab59b06567c1204c WHIRLPOOL 91d4702d69457090ca58074c05763a085e5bd9da162253a14e86c618a619482e44d7d974c7b0fd0139927d5a67b48bc7160f50990bb622984b122d1bb6c7052c DIST help2man-1.47.1.tar.xz 179164 SHA256 c59b26f60cb06e45b00e729dea721e7a17220e2c17d800eb428271a750382b06 SHA512 3ac99d2d2384aea9d396c7fb123f17b99c19db8f18085be3516cef56f2ecf06f16e6aa924b41b53f57eca8722dee029939677401dd69358cddc39fc59e0bcf12 WHIRLPOOL 75a21cfc55e2652a02f12075a3609dcb4c9f42fdea02fdbda0757cf2f107602e609f4ed9641351663fe177936353db0cb26b763bae92a83bbd2f6ffe0bf7e941 DIST help2man-1.47.2.tar.xz 182356 SHA256 c4c5606773e51039a06b7328ed4934913df142747a9a185d2a6ab9300d7f3f7c SHA512 3429e8f2eff78c8ab8d93533411b68aa8c1f730e56a261de82908069d6ce1af15443f8cc618d1b6f1d8fdc9a06631c9550520f7f43b984f91f2a1778d1c1402e WHIRLPOOL c14cff9fa52756c457c09d976c870ec25d9f66ec44417a3762d361c0edd4f8ddc0d0a6a95233a8e9ca6bcd796336c4f48c4211d1d21bc148487669c0113b630d +DIST help2man-1.47.3.tar.xz 184832 SHA256 c232af6475ef65bee02770862a362f4c4c2e6c9967d39e987eb94cadcfc13856 SHA512 c6c41e6492f7a84a3c8c45473f4fa797d243a10b56bbba6029aec5b84a7b5f5054fb55211f5057a5cade7f7d666f5445c528eb6d519b862fe01d0adc64257501 WHIRLPOOL a9141ab75d4d598a7e2ea9b1ca305c5e23288013b6cd214740e5f1d9d3cc73eed607f392609c8c71101a7bd07295f8e78ef4d60db873e9fc002ada47ba017c02 diff --git a/sys-apps/help2man/help2man-1.47.3.ebuild b/sys-apps/help2man/help2man-1.47.3.ebuild new file mode 100644 index 000000000000..c9efdba10797 --- /dev/null +++ b/sys-apps/help2man/help2man-1.47.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils + +DESCRIPTION="GNU utility to convert program --help output to a man page" +HOMEPAGE="https://www.gnu.org/software/help2man/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="nls" + +RDEPEND="dev-lang/perl + nls? ( dev-perl/Locale-gettext )" +DEPEND=${RDEPEND} + +DOCS="debian/changelog NEWS README THANKS" #385753 + +src_prepare() { + epatch \ + "${FILESDIR}"/${PN}-1.46.1-linguas.patch +} + +src_configure() { + # Disable gettext requirement as the release includes the gmo files #555018 + econf \ + ac_cv_path_MSGFMT=$(type -P false) \ + $(use_enable nls) +} |