blob: 1eb4be0b4402e755d3504f755678edad23c942d7 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gst-python/gst-python-0.10.8-r1.ebuild,v 1.1 2007/11/04 06:40:17 drac Exp $
NEED_PYTHON=2.3
inherit eutils flag-o-matic python
DESCRIPTION="A Python Interface to GStreamer"
HOMEPAGE="http://gstreamer.freedesktop.org"
SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0.10"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc"
RDEPEND=">=dev-python/pygtk-2.6.3
>=dev-libs/glib-2.8
>=x11-libs/gtk+-2.6
>=dev-python/pygobject-2.11.2
>=media-libs/gstreamer-0.10.2
>=media-libs/gst-plugins-base-0.10.0.2
dev-libs/libxml2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( app-text/xmlto )"
src_unpack() {
unpack ${A}
cd "${S}"
# Can be removed with next version, from upstream CVS.
epatch "${FILESDIR}"/${P}-atexit.patch
}
src_compile() {
append-ldflags -Wl,-z,lazy
econf $(use_enable doc docs)
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README TODO
docinto examples
cp -pPR examples/* "${D}"/usr/share/doc/${PF}/examples
prepalldocs
}
pkg_postinst() {
python_mod_optimize
}
pkg_postrm() {
python_mod_cleanup
}
|