Gentoo Archives: gentoo-commits

From: "Krzysztof Pawlik (nelchael)" <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/gflags: ChangeLog gflags-1.6.ebuild gflags-1.4.ebuild
Date: Thu, 01 Sep 2011 15:39:55
Message-Id: 20110901153936.17C1D2004C@flycatcher.gentoo.org
1 nelchael 11/09/01 15:39:36
2
3 Modified: ChangeLog
4 Added: gflags-1.6.ebuild
5 Removed: gflags-1.4.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.1.10.11/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.13 dev-cpp/gflags/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/ChangeLog?rev=1.13&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/ChangeLog?rev=1.13&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/ChangeLog?r1=1.12&r2=1.13
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gflags/ChangeLog,v
21 retrieving revision 1.12
22 retrieving revision 1.13
23 diff -u -r1.12 -r1.13
24 --- ChangeLog 12 Feb 2011 21:54:14 -0000 1.12
25 +++ ChangeLog 1 Sep 2011 15:39:35 -0000 1.13
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-cpp/gflags
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gflags/ChangeLog,v 1.12 2011/02/12 21:54:14 nelchael Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gflags/ChangeLog,v 1.13 2011/09/01 15:39:35 nelchael Exp $
31 +
32 +*gflags-1.6 (01 Sep 2011)
33 +
34 + 01 Sep 2011; Krzysztof Pawlik <nelchael@g.o> -gflags-1.4.ebuild,
35 + +gflags-1.6.ebuild:
36 + Version bump.
37
38 *gflags-1.5 (12 Feb 2011)
39
40
41
42
43 1.1 dev-cpp/gflags/gflags-1.6.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/gflags-1.6.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gflags/gflags-1.6.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gflags-1.6.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/gflags/gflags-1.6.ebuild,v 1.1 2011/09/01 15:39:35 nelchael Exp $
53
54 EAPI="3"
55
56 DESCRIPTION="Google's C++ argument parsing library."
57 HOMEPAGE="http://code.google.com/p/google-gflags/"
58 SRC_URI="http://google-gflags.googlecode.com/files/${P}.tar.gz"
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="static-libs"
63
64 DEPEND=""
65 RDEPEND=""
66
67 src_configure() {
68 econf $(use_enable static-libs static)
69 }
70
71 src_install() {
72 emake DESTDIR="${D}" install || die "emake install failed"
73
74 rm -rf "${D}"/usr/share/doc/*
75 dodoc AUTHORS ChangeLog NEWS README
76 dohtml doc/*
77 }