Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/help2man: ChangeLog help2man-1.36.4-r1.ebuild
Date: Fri, 28 Aug 2009 20:15:58
Message-Id: E1Mg2S8-0001j1-IK@stork.gentoo.org
1 arfrever 09/08/25 20:17:12
2
3 Modified: ChangeLog
4 Added: help2man-1.36.4-r1.ebuild
5 Log:
6 Respect LDFLAGS (bug #181461).
7 (Portage version: 14155-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.34 sys-apps/help2man/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.34&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/help2man/ChangeLog?rev=1.34&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/help2man/ChangeLog?r1=1.33&r2=1.34
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v
19 retrieving revision 1.33
20 retrieving revision 1.34
21 diff -u -r1.33 -r1.34
22 --- ChangeLog 20 Feb 2007 19:51:42 -0000 1.33
23 +++ ChangeLog 25 Aug 2009 20:17:12 -0000 1.34
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-apps/help2man
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.33 2007/02/20 19:51:42 eroyf Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.34 2009/08/25 20:17:12 arfrever Exp $
30 +
31 +*help2man-1.36.4-r1 (25 Aug 2009)
32 +
33 + 25 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +help2man-1.36.4-r1.ebuild, +files/help2man-1.36.4-respect-LDFLAGS.patch:
35 + Respect LDFLAGS (bug #181461).
36
37 20 Feb 2007; Alexander H. Færøy <eroyf@g.o>
38 help2man-1.36.4.ebuild:
39
40
41
42 1.1 sys-apps/help2man/help2man-1.36.4-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/help2man/help2man-1.36.4-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/help2man/help2man-1.36.4-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: help2man-1.36.4-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 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.36.4-r1.ebuild,v 1.1 2009/08/25 20:17:12 arfrever Exp $
52
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/help2man/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
62 IUSE="nls elibc_glibc"
63
64 RDEPEND="dev-lang/perl"
65 DEPEND="${RDEPEND}
66 elibc_glibc? ( nls? ( dev-perl/Locale-gettext
67 >=sys-devel/gettext-0.12.1-r1 ) )"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72
73 epatch "${FILESDIR}/${P}-respect-LDFLAGS.patch"
74 }
75
76 src_compile() {
77 local myconf
78 use elibc_glibc && myconf="${myconf} $(use_enable nls)" \
79 || myconf="${myconf} --disable-nls"
80
81 econf ${myconf} || die
82 emake || die "emake failed"
83 }
84
85 src_install() {
86 emake -j1 DESTDIR="${D}" install || die "make install failed"
87 dodoc ChangeLog NEWS README THANKS
88 }