blob: 749548ebb91d726d5ef2436bc3e11a42cd3cef24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gquilt/gquilt-0.19.ebuild,v 1.1 2007/04/05 06:14:20 nerdboy Exp $
DESCRIPTION="A Python/GTK wrapper for quilt"
HOMEPAGE="http://users.bigpond.net.au/Peter-Williams/"
SRC_URI="mirror://sourceforge/gquilt/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="dev-util/quilt
>=dev-python/pygtk-2"
src_install() {
make DESTDIR="${D}" PREFIX="/usr" install || die "make install failed"
dodoc ChangeLog
}
|