blob: 608b34fcd7e221a69088bb1f82fc658fbd133847 (
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
34
35
36
37
38
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/dragbox/dragbox-0.4.0.ebuild,v 1.2 2011/03/28 17:15:55 angelos Exp $
EAPI="2"
PYTHON_DEPEND="2"
inherit python
DESCRIPTION="GTK tool for connecting the commandline with the desktop environment"
HOMEPAGE="http://kaizer.se/wiki/dragbox/"
SRC_URI="http://kaizer.se/publicfiles/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/pygtk:2
gnome-base/libglade:2.0
dev-python/gnome-vfs-python:2
dev-python/libgnome-python:2
dev-python/gconf-python:2
sys-apps/dbus
x11-libs/gtk+:2"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed"
}
pkg_postinst() {
python_mod_optimize $(python_get_sitedir)/Dragbox
}
pkg_postrm() {
python_mod_cleanup $(python_get_sitedir)/Dragbox
}
|