Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/popt: ChangeLog popt-1.13.ebuild
Date: Mon, 07 Jan 2008 06:00:53
Message-Id: E1JBl2Y-0005hj-3Z@stork.gentoo.org
1 dirtyepic 08/01/07 06:00:50
2
3 Modified: ChangeLog
4 Added: popt-1.13.ebuild
5 Log:
6 Version bump. Fixes redefinition errors in headers when building packages
7 like xulrunner with GCC 4.3.
8 (Portage version: 2.1.4_rc14)
9
10 Revision Changes Path
11 1.61 dev-libs/popt/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/popt/ChangeLog?rev=1.61&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/popt/ChangeLog?rev=1.61&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/popt/ChangeLog?r1=1.60&r2=1.61
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/popt/ChangeLog,v
20 retrieving revision 1.60
21 retrieving revision 1.61
22 diff -u -r1.60 -r1.61
23 --- ChangeLog 9 Dec 2007 04:15:41 -0000 1.60
24 +++ ChangeLog 7 Jan 2008 06:00:49 -0000 1.61
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/popt
27 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/popt/ChangeLog,v 1.60 2007/12/09 04:15:41 vapier Exp $
29 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/popt/ChangeLog,v 1.61 2008/01/07 06:00:49 dirtyepic Exp $
31 +
32 +*popt-1.13 (07 Jan 2008)
33 +
34 + 07 Jan 2008; Ryan Hill <dirtyepic@g.o> +popt-1.13.ebuild:
35 + Version bump. Fixes redefinition errors in headers when building packages
36 + like xulrunner with GCC 4.3.
37
38 *popt-1.12 (09 Dec 2007)
39
40
41
42
43 1.1 dev-libs/popt/popt-1.13.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/popt/popt-1.13.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/popt/popt-1.13.ebuild?rev=1.1&content-type=text/plain
47
48 Index: popt-1.13.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/popt/popt-1.13.ebuild,v 1.1 2008/01/07 06:00:49 dirtyepic Exp $
53
54 inherit eutils
55
56 DESCRIPTION="Parse Options - Command line parser"
57 HOMEPAGE="http://rpm5.org/"
58 SRC_URI="http://rpm5.org/files/popt/${P}.tar.gz"
59
60 LICENSE="as-is"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
63 IUSE="nls"
64
65 RDEPEND="nls? ( virtual/libintl )"
66 DEPEND="nls? ( sys-devel/gettext )"
67
68 src_unpack() {
69 unpack ${A}
70 cd "${S}"
71 epatch "${FILESDIR}"/${PN}-1.12-scrub-lame-gettext.patch
72 }
73
74 src_compile() {
75 econf \
76 --without-included-gettext \
77 $(use_enable nls) \
78 || die
79 emake || die "emake failed"
80 }
81
82 src_install() {
83 emake install DESTDIR="${D}" || die
84 dodoc CHANGES README
85 }
86
87
88
89 --
90 gentoo-commits@l.g.o mailing list