Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/help2man: help2man-1.46.6.ebuild ChangeLog help2man-1.46.4.ebuild
Date: Tue, 28 Apr 2015 14:41:17
Message-Id: 20150427100049.91474993@oystercatcher.gentoo.org
1 polynomial-c 15/04/27 10:00:48
2
3 Modified: ChangeLog
4 Added: help2man-1.46.6.ebuild
5 Removed: help2man-1.46.4.ebuild
6 Log:
7 Version bump. Removed old
8
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
10
11 Revision Changes Path
12 1.132 sys-apps/help2man/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.132&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.132&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?r1=1.131&r2=1.132
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v
21 retrieving revision 1.131
22 retrieving revision 1.132
23 diff -u -r1.131 -r1.132
24 --- ChangeLog 31 Jan 2015 10:16:02 -0000 1.131
25 +++ ChangeLog 27 Apr 2015 10:00:48 -0000 1.132
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-apps/help2man
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.131 2015/01/31 10:16:02 polynomial-c Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.132 2015/04/27 10:00:48 polynomial-c Exp $
31 +
32 +*help2man-1.46.6 (27 Apr 2015)
33 +
34 + 27 Apr 2015; Lars Wendler <polynomial-c@g.o> -help2man-1.46.4.ebuild,
35 + +help2man-1.46.6.ebuild:
36 + Version bump. Removed old.
37
38 *help2man-1.46.5 (31 Jan 2015)
39
40
41
42
43 1.1 sys-apps/help2man/help2man-1.46.6.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/help2man-1.46.6.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/help2man-1.46.6.ebuild?rev=1.1&content-type=text/plain
47
48 Index: help2man-1.46.6.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.46.6.ebuild,v 1.1 2015/04/27 10:00:48 polynomial-c Exp $
53
54 EAPI=4
55 inherit eutils
56
57 DESCRIPTION="GNU utility to convert program --help output to a man page"
58 HOMEPAGE="http://www.gnu.org/software/help2man/"
59 SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 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"
64 IUSE="nls elibc_glibc"
65
66 RDEPEND="dev-lang/perl
67 elibc_glibc? ( nls? (
68 dev-perl/Locale-gettext
69 ) )"
70 DEPEND=${RDEPEND}
71
72 DOCS="debian/changelog NEWS README THANKS" #385753
73
74 src_prepare() {
75 epatch \
76 "${FILESDIR}"/${PN}-1.46.1-linguas.patch
77 }
78
79 src_configure() {
80 local myconf
81 use elibc_glibc \
82 && myconf="${myconf} $(use_enable nls)" \
83 || myconf="${myconf} --disable-nls"
84 econf ${myconf}
85 }