blob: d84e19e457c461512e5c9da004739aeeaf3cfb05 (
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
56
57
58
59
60
61
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/serpentine/serpentine-0.9-r2.ebuild,v 1.2 2008/06/09 19:34:40 opfer Exp $
GCONF_DEBUG=no
inherit autotools eutils gnome2 mono multilib python
DESCRIPTION="An application for writing CD-Audio discs. It aims for simplicity, usability and compability."
HOMEPAGE="http://irrepupavel.com/projects/serpentine/"
SRC_URI="mirror://berlios/serpentine/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="muine"
RDEPEND=">=dev-lang/python-2.4
>=dev-python/pygtk-2.6
>=dev-python/gnome-python-desktop-2.14.0
>=dev-python/gst-python-0.10
gnome-base/gconf
>=media-plugins/gst-plugins-gnomevfs-0.10
muine? ( media-sound/muine )"
DEPEND="${RDEPEND}
sys-devel/gettext
dev-util/intltool
dev-util/pkgconfig"
pkg_setup() {
G2CONF="${G2CONF} $(use_enable muine)"
DOCS="AUTHORS ChangeLog NEWS README TODO"
}
src_unpack() {
unpack ${A}
cd "${S}"
echo serpentine/gtkutil.py >> po/POTFILES.skip
echo serpentine/plugins/plugsuspend.py >> po/POTFILES.skip
epatch "${FILESDIR}"/${P}-drop_pyxml.patch \
"${FILESDIR}"/${P}-python24_compat.patch
rm -f py-compile || die "rm failed."
ln -s $(type -P true) py-compile || die "ln failed."
intltoolize --force --copy --automake || die "intltoolize failed."
eautoreconf
}
pkg_postinst() {
gnome2_pkg_postinst
python_version
python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/${PN}
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup
}
|