blob: 42891c3a10250824fd4f175b12927dd5bd1ece6a (
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
|
# 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.2 2007/07/18 02:19:19 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
}
|