Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/help2man: ChangeLog help2man-1.38.4.ebuild
Date: Wed, 29 Dec 2010 22:05:12
Message-Id: 20101229220502.9A64D20054@flycatcher.gentoo.org
1 vapier 10/12/29 22:05:02
2
3 Modified: ChangeLog
4 Added: help2man-1.38.4.ebuild
5 Log:
6 Version bump #350062 by Panagiotis Christopoulos.
7
8 (Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.50 sys-apps/help2man/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.50&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.50&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/ChangeLog?r1=1.49&r2=1.50
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v
20 retrieving revision 1.49
21 retrieving revision 1.50
22 diff -u -r1.49 -r1.50
23 --- ChangeLog 11 Jul 2010 18:00:55 -0000 1.49
24 +++ ChangeLog 29 Dec 2010 22:05:02 -0000 1.50
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/help2man
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.49 2010/07/11 18:00:55 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.50 2010/12/29 22:05:02 vapier Exp $
30 +
31 +*help2man-1.38.4 (29 Dec 2010)
32 +
33 + 29 Dec 2010; Mike Frysinger <vapier@g.o> +help2man-1.38.4.ebuild,
34 + +files/help2man-1.38.4-linguas.patch:
35 + Version bump #350062 by Panagiotis Christopoulos.
36
37 11 Jul 2010; Raúl Porcel <armin76@g.o> help2man-1.37.1.ebuild:
38 alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #325089
39
40
41
42 1.1 sys-apps/help2man/help2man-1.38.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/help2man-1.38.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/help2man/help2man-1.38.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: help2man-1.38.4.ebuild
48 ===================================================================
49 # Copyright 1999-2010 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.38.4.ebuild,v 1.1 2010/12/29 22:05:02 vapier Exp $
52
53 EAPI="2"
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 ~sparc-fbsd ~x86-fbsd"
64 IUSE="nls elibc_glibc"
65
66 RDEPEND="dev-lang/perl"
67 DEPEND="${RDEPEND}
68 elibc_glibc? ( nls? (
69 dev-perl/Locale-gettext
70 >=sys-devel/gettext-0.12.1-r1
71 ) )"
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${PN}-1.36.4-respect-LDFLAGS.patch
75 epatch "${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 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die
88 dodoc ChangeLog NEWS README THANKS
89 }