diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-05-13 12:34:55 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-05-13 12:34:55 +0000 |
commit | 8ad1439161dc46c8871ae1e5bfd29d282e8bdada (patch) | |
tree | ae7183aba3127e833529861a8baa193ae66f3808 /sci-visualization/g3data/g3data-1.5.3.ebuild | |
parent | Drop old (diff) | |
download | gentoo-2-8ad1439161dc46c8871ae1e5bfd29d282e8bdada.tar.gz gentoo-2-8ad1439161dc46c8871ae1e5bfd29d282e8bdada.tar.bz2 gentoo-2-8ad1439161dc46c8871ae1e5bfd29d282e8bdada.zip |
Drop old; obsoletes bug #538534; fix HOMEPAGE, bug #523562
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Diffstat (limited to 'sci-visualization/g3data/g3data-1.5.3.ebuild')
-rw-r--r-- | sci-visualization/g3data/g3data-1.5.3.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/sci-visualization/g3data/g3data-1.5.3.ebuild b/sci-visualization/g3data/g3data-1.5.3.ebuild deleted file mode 100644 index d9c65b5909aa..000000000000 --- a/sci-visualization/g3data/g3data-1.5.3.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/g3data/g3data-1.5.3.ebuild,v 1.6 2012/05/04 08:07:00 jdhore Exp $ - -EAPI=2 -inherit eutils - -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="doc examples" - -RDEPEND="x11-libs/gtk+:2" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( ~app-text/docbook-sgml-utils-0.6.14 )" - -src_prepare() { - epatch "${FILESDIR}"/${P}-makefile.patch -} - -src_compile() { - emake || die "emake failed" - # although doc is only 1 man file, it pulls lots of deps - if use doc; then - emake g3data.1 || die "emake doc failed" - fi -} - -src_install() { - dobin g3data || die "dobin failed - no binary!" - dodoc README.SOURCE - # xpm image is really a png file - newicon g3data-icon.xpm g3data.png - make_desktop_entry g3data "g3data data extractor" - if use examples; then - docinto examples - dodoc README.TEST - insinto /usr/share/doc/${PF}/examples - doins test1.png test1.values test2.png test2.values - fi - if use doc; then - doman g3data.1 || die "doman failed" - fi -} |