Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/gflags: ChangeLog gflags-0.8.ebuild
Date: Mon, 16 Jun 2008 19:37:34
Message-Id: E1K8KW9-0003N6-Fo@stork.gentoo.org
1 dev-zero 08/06/16 19:37:29
2
3 Modified: ChangeLog
4 Added: gflags-0.8.ebuild
5 Log:
6 Version bump (bug #218802, fixes bug #227473)
7 (Portage version: 2.1.5.5)
8
9 Revision Changes Path
10 1.5 dev-cpp/gflags/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gflags/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gflags/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gflags/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gflags/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 10 Mar 2008 12:11:19 -0000 1.4
23 +++ ChangeLog 16 Jun 2008 19:37:28 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-cpp/gflags
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gflags/ChangeLog,v 1.4 2008/03/10 12:11:19 antarus Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gflags/ChangeLog,v 1.5 2008/06/16 19:37:28 dev-zero Exp $
29 +
30 +*gflags-0.8 (16 Jun 2008)
31 +
32 + 16 Jun 2008; Tiziano Müller <dev-zero@g.o> +gflags-0.8.ebuild:
33 + Version bump (bug #218802, fixes bug #227473)
34
35 10 Mar 2008; Alec Warner <antarus@g.o> gflags-0.7.ebuild:
36 distutils fix from dev-zero
37
38
39
40 1.1 dev-cpp/gflags/gflags-0.8.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gflags/gflags-0.8.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gflags/gflags-0.8.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gflags-0.8.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/gflags/gflags-0.8.ebuild,v 1.1 2008/06/16 19:37:28 dev-zero Exp $
50
51 inherit distutils
52
53 DESCRIPTION="Google's C++ argument parsing library with python extensions."
54 HOMEPAGE="http://code.google.com/p/google-gflags/"
55 SRC_URI="http://google-gflags.googlecode.com/files/${P}.tar.gz"
56 LICENSE="BSD"
57 SLOT="0"
58 KEYWORDS="~amd64"
59 IUSE="python"
60
61 DEPEND="python? ( dev-lang/python )"
62 RDEPEND="${DEPEND}"
63
64 src_compile() {
65 econf || die "econf failed"
66 emake || die "emake failed"
67 if use python;
68 then
69 cd python
70 distutils_src_compile
71 fi
72 }
73
74 src_install() {
75 emake DESTDIR="${D}" install || die "emake install failed"
76 if use python;
77 then
78 cd python
79 distutils_src_install
80 fi
81 }
82
83
84
85 --
86 gentoo-commits@l.g.o mailing list