summaryrefslogtreecommitdiff
blob: 66e2b4e0b43d95a70fa7bc85b487f73ca143ba52 (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit gnome2 autotools

DESCRIPTION="GNOME program to create, edit and verify hashfiles"
HOMEPAGE="http://parano.berlios.de/"
SRC_URI="mirror://berlios/parano/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc"

DEPEND=">=dev-python/pygtk-2.0
	dev-python/gnome-python"
RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"

	# Many fixes, thanks to dragonheart
	mv src/parano.py src/parano.in
	epatch "${FILESDIR}/${P}-autoconf.patch"
	eautoreconf
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc AUTHORS ChangeLog README NEWS TODO
}