blob: 1d1c7cf54f365c063095c9317a968272db7e2217 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-calculators/gonvert/gonvert-0.2.19.ebuild,v 1.3 2011/03/02 21:19:45 jlec Exp $
EAPI="1"
inherit eutils
DESCRIPTION="Unit conversion utility written in PyGTK"
HOMEPAGE="http://unihedron.com/projects/gonvert/gonvert.php"
SRC_URI="http://unihedron.com/projects/gonvert/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE=""
DEPEND="dev-python/pygtk:2"
RDEPEND="${DEPEND}"
src_unpack () {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PV}-paths.patch"
}
src_install () {
make install DESTDIR="${D}" prefix=/usr || die
rm -fr "${D}/usr/share/doc/${PN}"
dodoc doc/CHANGELOG doc/FAQ doc/README doc/THANKS doc/TODO
}
|