blob: dc025367918c2833a01f4287a509977cc8e6bed9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2009 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.1 2009/02/26 21:04:07 bicatali 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="examples"
RDEPEND=">=x11-libs/gtk+-2.6.0"
DEPEND="${RDEPEND}
dev-util/pkgconfig
~app-text/docbook-sgml-utils-0.6.14"
src_prepare() {
epatch "${FILESDIR}"/${P}-makefile.patch
}
src_install() {
dobin g3data || die "dobin failed - no binary!"
doman g3data.1 || die "doman failed"
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
}
|