Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/g3data: g3data-1.5.3.ebuild ChangeLog
Date: Thu, 26 Feb 2009 21:04:10
Message-Id: E1LcnOp-0004sd-Io@stork.gentoo.org
1 bicatali 09/02/26 21:04:07
2
3 Modified: ChangeLog
4 Added: g3data-1.5.3.ebuild
5 Log:
6 Version bump, fixing more flag propagation in makefile
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 sci-visualization/g3data/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/g3data/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/g3data/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/g3data/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/g3data/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 27 Nov 2008 18:25:22 -0000 1.4
23 +++ ChangeLog 26 Feb 2009 21:04:07 -0000 1.5
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sci-visualization/g3data
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/g3data/ChangeLog,v 1.4 2008/11/27 18:25:22 bicatali Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/g3data/ChangeLog,v 1.5 2009/02/26 21:04:07 bicatali Exp $
30 +
31 +*g3data-1.5.3 (26 Feb 2009)
32 +
33 + 26 Feb 2009; Sébastien Fabbro <bicatali@g.o>
34 + +files/g3data-1.5.3-makefile.patch, +g3data-1.5.3.ebuild:
35 + Version bump, fixing more flag propagation in makefile
36
37 27 Nov 2008; Sébastien Fabbro <bicatali@g.o>
38 +files/g3data-1.5.1-makefile.patch, metadata.xml, g3data-1.5.1.ebuild:
39
40
41
42 1.1 sci-visualization/g3data/g3data-1.5.3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/g3data/g3data-1.5.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/g3data/g3data-1.5.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: g3data-1.5.3.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/sci-visualization/g3data/g3data-1.5.3.ebuild,v 1.1 2009/02/26 21:04:07 bicatali Exp $
52
53 EAPI=2
54 inherit eutils
55
56 DESCRIPTION="Tool for extracting data from graphs"
57 HOMEPAGE="http://www.frantz.fi/software/g3data.php"
58 SRC_URI="http://www.frantz.fi/software/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="examples"
64
65 RDEPEND=">=x11-libs/gtk+-2.6.0"
66 DEPEND="${RDEPEND}
67 dev-util/pkgconfig
68 ~app-text/docbook-sgml-utils-0.6.14"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${P}-makefile.patch
72 }
73
74 src_install() {
75 dobin g3data || die "dobin failed - no binary!"
76 doman g3data.1 || die "doman failed"
77 dodoc README.SOURCE
78 # xpm image is really a png file
79 newicon g3data-icon.xpm g3data.png
80 make_desktop_entry g3data "g3data data extractor"
81 if use examples; then
82 docinto examples
83 dodoc README.TEST
84 insinto /usr/share/doc/${PF}/examples
85 doins test1.png test1.values test2.png test2.values
86 fi
87 }