blob: 47497a9c16cceeadff0eb236fedd703e0e9a2a4e (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/gcdemu/gcdemu-1.3.0.ebuild,v 1.5 2011/11/23 10:14:58 tetromino Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit python gnome2
DESCRIPTION="Gtk+ GUI for controlling the CDEmu daemon (cdemud)"
HOMEPAGE="http://cdemu.org/"
SRC_URI="mirror://sourceforge/cdemu/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="libnotify"
COMMON_DEPEND=">=dev-python/pygtk-2.6
>=dev-python/pygobject-2.6:2
>=dev-python/libgnome-python-2.6
>=dev-python/gnome-applets-python-2.6
dev-python/gconf-python
>=dev-python/dbus-python-0.71
>=app-cdr/cdemud-1.0.0"
DEPEND="${COMMON_DEPEND}
app-text/gnome-doc-utils
dev-util/pkgconfig
dev-util/intltool"
RDEPEND="${COMMON_DEPEND}
libnotify? ( dev-python/notify-python )"
DOCS="AUTHORS ChangeLog README"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
# disable compilation of python modules
rm py-compile && \
ln -s "$(type -P true)" py-compile || die
python_convert_shebangs 2 src/gcdemu
}
pkg_postinst() {
python_mod_optimize ${PN}
python_need_rebuild
}
pkg_postrm() {
python_mod_cleanup ${PN}
}
|