Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/help2man: ChangeLog help2man-1.40.5.ebuild
Date: Wed, 11 Jan 2012 22:33:46
Message-Id: 20120111223334.EFBEB2004B@flycatcher.gentoo.org
1 radhermit 12/01/11 22:33:34
2
3 Modified: ChangeLog
4 Added: help2man-1.40.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.65 sys-apps/help2man/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.65&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.65&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?r1=1.64&r2=1.65
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v
20 retrieving revision 1.64
21 retrieving revision 1.65
22 diff -u -r1.64 -r1.65
23 --- ChangeLog 6 Oct 2011 16:51:28 -0000 1.64
24 +++ ChangeLog 11 Jan 2012 22:33:34 -0000 1.65
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/help2man
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.64 2011/10/06 16:51:28 ssuominen Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.65 2012/01/11 22:33:34 radhermit Exp $
31 +
32 +*help2man-1.40.5 (11 Jan 2012)
33 +
34 + 11 Jan 2012; Tim Harder <radhermit@g.o> +help2man-1.40.5.ebuild:
35 + Version bump.
36
37 06 Oct 2011; Samuli Suominen <ssuominen@g.o> help2man-1.40.4.ebuild:
38 Fix broken symlink to ChangeLog wrt #385753 by MichaƂ Bartoszkiewicz
39
40
41
42 1.1 sys-apps/help2man/help2man-1.40.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/help2man-1.40.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/help2man-1.40.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: help2man-1.40.5.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.40.5.ebuild,v 1.1 2012/01/11 22:33:34 radhermit Exp $
52
53 EAPI="4"
54
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/help2man/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~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"
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 elibc_glibc? ( nls? (
72 dev-perl/Locale-gettext
73 ) )"
74
75 DOCS=( debian/changelog NEWS README THANKS ) #385753
76
77 src_prepare() {
78 epatch \
79 "${FILESDIR}"/${PN}-1.36.4-respect-LDFLAGS.patch \
80 "${FILESDIR}"/${PN}-1.38.4-linguas.patch
81 }
82
83 src_configure() {
84 local myconf
85 use elibc_glibc \
86 && myconf="${myconf} $(use_enable nls)" \
87 || myconf="${myconf} --disable-nls"
88 econf ${myconf}
89 }