blob: b40dc29a0bec6007dfc7aa2cdec584d334ade475 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/nautilus-python/nautilus-python-0.6.1.ebuild,v 1.4 2011/01/22 16:29:17 phajdan.jr Exp $
EAPI="2"
inherit gnome.org eutils
DESCRIPTION="Python bindings for the Nautilus file manager"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=dev-python/pygtk-2.8
>=dev-python/gnome-python-2.12
>=gnome-base/nautilus-2.6"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" install || die
mv "${D}"/usr/share/doc/{${PN},${PF}}
dodoc AUTHORS ChangeLog NEWS || die
}
|