Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/help2man: ChangeLog help2man-1.40.11.ebuild
Date: Tue, 31 Jul 2012 08:55:06
Message-Id: 20120731085456.97FD42004B@flycatcher.gentoo.org
1 ssuominen 12/07/31 08:54:56
2
3 Modified: ChangeLog
4 Added: help2man-1.40.11.ebuild
5 Log:
6 old
7
8 (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.89 sys-apps/help2man/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.89&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.89&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?r1=1.88&r2=1.89
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v
20 retrieving revision 1.88
21 retrieving revision 1.89
22 diff -u -r1.88 -r1.89
23 --- ChangeLog 3 Jun 2012 08:29:28 -0000 1.88
24 +++ ChangeLog 31 Jul 2012 08:54:56 -0000 1.89
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/help2man
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.88 2012/06/03 08:29:28 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.89 2012/07/31 08:54:56 ssuominen Exp $
30 +
31 +*help2man-1.40.11 (31 Jul 2012)
32 +
33 + 31 Jul 2012; Samuli Suominen <ssuominen@g.o> +help2man-1.40.11.ebuild:
34 + Version bump.
35
36 03 Jun 2012; Samuli Suominen <ssuominen@g.o> -help2man-1.40.5.ebuild,
37 -help2man-1.40.7.ebuild, -help2man-1.40.9.ebuild:
38
39
40
41 1.1 sys-apps/help2man/help2man-1.40.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/help2man-1.40.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/help2man-1.40.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: help2man-1.40.11.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.40.11.ebuild,v 1.1 2012/07/31 08:54:56 ssuominen Exp $
51
52 EAPI=4
53 inherit eutils
54
55 DESCRIPTION="GNU utility to convert program --help output to a man page"
56 HOMEPAGE="http://www.gnu.org/software/help2man/"
57 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
62 IUSE="nls elibc_glibc"
63
64 RDEPEND="dev-lang/perl
65 elibc_glibc? ( nls? (
66 dev-perl/Locale-gettext
67 ) )"
68 DEPEND=${RDEPEND}
69
70 DOCS="debian/changelog NEWS README THANKS" #385753
71
72 src_prepare() {
73 epatch \
74 "${FILESDIR}"/${PN}-1.36.4-respect-LDFLAGS.patch \
75 "${FILESDIR}"/${PN}-1.38.4-linguas.patch
76 }
77
78 src_configure() {
79 local myconf
80 use elibc_glibc \
81 && myconf="${myconf} $(use_enable nls)" \
82 || myconf="${myconf} --disable-nls"
83 econf ${myconf}
84 }