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