Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/popt: ChangeLog popt-1.16.ebuild
Date: Mon, 10 May 2010 18:33:12
Message-Id: 20100510183307.D746E2C5B1@corvid.gentoo.org
1 ssuominen 10/05/10 18:33:07
2
3 Modified: ChangeLog
4 Added: popt-1.16.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.82 dev-libs/popt/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/popt/ChangeLog?rev=1.82&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/popt/ChangeLog?rev=1.82&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/popt/ChangeLog?r1=1.81&r2=1.82
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/popt/ChangeLog,v
19 retrieving revision 1.81
20 retrieving revision 1.82
21 diff -u -r1.81 -r1.82
22 --- ChangeLog 25 Jan 2010 18:48:44 -0000 1.81
23 +++ ChangeLog 10 May 2010 18:33:07 -0000 1.82
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/popt
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/popt/ChangeLog,v 1.81 2010/01/25 18:48:44 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/popt/ChangeLog,v 1.82 2010/05/10 18:33:07 ssuominen Exp $
29 +
30 +*popt-1.16 (10 May 2010)
31 +
32 + 10 May 2010; Samuli Suominen <ssuominen@g.o> +popt-1.16.ebuild:
33 + Version bump.
34
35 25 Jan 2010; Raúl Porcel <armin76@g.o> popt-1.15.ebuild:
36 arm/ia64/m68k/s390/sh stable wrt #296420
37
38
39
40 1.1 dev-libs/popt/popt-1.16.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/popt/popt-1.16.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/popt/popt-1.16.ebuild?rev=1.1&content-type=text/plain
44
45 Index: popt-1.16.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/popt/popt-1.16.ebuild,v 1.1 2010/05/10 18:33:07 ssuominen Exp $
50
51 EAPI=3
52
53 DESCRIPTION="Parse Options - Command line parser"
54 HOMEPAGE="http://rpm5.org/"
55 SRC_URI="http://rpm5.org/files/popt/${P}.tar.gz"
56
57 LICENSE="MIT"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
60 IUSE="nls"
61
62 RDEPEND="nls? ( virtual/libintl )"
63 DEPEND="nls? ( sys-devel/gettext )"
64
65 # FIXME
66 RESTRICT="test"
67
68 src_configure() {
69 econf \
70 --disable-dependency-tracking \
71 $(use_enable nls)
72 }
73
74 src_install() {
75 emake DESTDIR="${D}" install || die
76 dodoc CHANGES README || die
77 }