diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2007-06-11 08:48:11 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2007-06-11 08:48:11 +0000 |
commit | c50688102425d92891389fcbd72753b17cf65514 (patch) | |
tree | c09adefb65c13288404c9223d9cd6e0057b4f5d6 /sci-visualization/g3data | |
parent | Marked stable on amd64, removed old versions. (diff) | |
download | gentoo-2-c50688102425d92891389fcbd72753b17cf65514.tar.gz gentoo-2-c50688102425d92891389fcbd72753b17cf65514.tar.bz2 gentoo-2-c50688102425d92891389fcbd72753b17cf65514.zip |
Version bump.
(Portage version: 2.1.2.9)
Diffstat (limited to 'sci-visualization/g3data')
-rw-r--r-- | sci-visualization/g3data/ChangeLog | 9 | ||||
-rw-r--r-- | sci-visualization/g3data/files/digest-g3data-1.5.1 | 3 | ||||
-rw-r--r-- | sci-visualization/g3data/g3data-1.5.1.ebuild | 32 |
3 files changed, 42 insertions, 2 deletions
diff --git a/sci-visualization/g3data/ChangeLog b/sci-visualization/g3data/ChangeLog index 2179f3f53802..0aa17506cf11 100644 --- a/sci-visualization/g3data/ChangeLog +++ b/sci-visualization/g3data/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-visualization/g3data -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/g3data/ChangeLog,v 1.1 2006/06/06 10:22:27 cryos Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/g3data/ChangeLog,v 1.2 2007/06/11 08:48:11 cryos Exp $ + +*g3data-1.5.1 (11 Jun 2007) + + 11 Jun 2007; Marcus D. Hanwell <cryos@gentoo.org> +g3data-1.5.1.ebuild: + Version bump. *g3data-1.5.0 (06 Jun 2006) diff --git a/sci-visualization/g3data/files/digest-g3data-1.5.1 b/sci-visualization/g3data/files/digest-g3data-1.5.1 new file mode 100644 index 000000000000..a339f07b1e10 --- /dev/null +++ b/sci-visualization/g3data/files/digest-g3data-1.5.1 @@ -0,0 +1,3 @@ +MD5 2609086a76589ddd7c607920a20645ac g3data-1.5.1.tar.gz 47341 +RMD160 7f7565a2f508344b2aed219d732fdb554a4fec90 g3data-1.5.1.tar.gz 47341 +SHA256 e0606bec03f6559405f6e5ddc914d315987b1465307044613b95af2d67426311 g3data-1.5.1.tar.gz 47341 diff --git a/sci-visualization/g3data/g3data-1.5.1.ebuild b/sci-visualization/g3data/g3data-1.5.1.ebuild new file mode 100644 index 000000000000..363e877217f9 --- /dev/null +++ b/sci-visualization/g3data/g3data-1.5.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/g3data/g3data-1.5.1.ebuild,v 1.1 2007/06/11 08:48:11 cryos Exp $ + +DESCRIPTION="Tool for extracting data from graphs" +HOMEPAGE="http://www.frantz.fi/software/g3data.php" +SRC_URI="http://www.frantz.fi/software/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +RDEPEND=">=x11-libs/gtk+-2.6.0 + media-libs/imlib" +DEPEND="${RDEPEND} + ~app-text/docbook-sgml-utils-0.6.14" + +src_compile() { + emake || die "emake failed" +} + +src_install() { + dobin g3data || die "dobin failed - no binary!" + doman g3data.1.gz || die "doman failed" + dodoc README.SOURCE || die "README.SOURCE not found" + if use examples; then + dodoc README.TEST + insinto ${DESTDIR}usr/share/doc/${PF}/ + doins test1.png test1.values test2.png test2.values + fi +} |