diff options
author | 2009-05-13 15:46:37 +0000 | |
---|---|---|
committer | 2009-05-13 15:46:37 +0000 | |
commit | 92eaff43b2fc68e21e14ec1155be82a63ca84ff1 (patch) | |
tree | 85c9729437e6b83f02fb0c8fee0cbc84d6f6b2e8 /dev-python/gst-python | |
parent | Marked ~hppa (bug #268645). (diff) | |
download | gentoo-2-92eaff43b2fc68e21e14ec1155be82a63ca84ff1.tar.gz gentoo-2-92eaff43b2fc68e21e14ec1155be82a63ca84ff1.tar.bz2 gentoo-2-92eaff43b2fc68e21e14ec1155be82a63ca84ff1.zip |
Version bump
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/gst-python')
-rw-r--r-- | dev-python/gst-python/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/gst-python/gst-python-0.10.15.ebuild | 51 |
2 files changed, 59 insertions, 2 deletions
diff --git a/dev-python/gst-python/ChangeLog b/dev-python/gst-python/ChangeLog index 62e13048e280..a48671de0da3 100644 --- a/dev-python/gst-python/ChangeLog +++ b/dev-python/gst-python/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/gst-python -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gst-python/ChangeLog,v 1.48 2008/12/09 11:41:52 ssuominen Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gst-python/ChangeLog,v 1.49 2009/05/13 15:46:37 tester Exp $ + +*gst-python-0.10.15 (13 May 2009) + + 13 May 2009; Olivier Crête <tester@gentoo.org> + +gst-python-0.10.15.ebuild: + Version bump 09 Dec 2008; <ssuominen@gentoo.org> gst-python-0.10.13.ebuild: gst-python needs >= gstreamer-0.10.21 but configure.ac doesn't check for diff --git a/dev-python/gst-python/gst-python-0.10.15.ebuild b/dev-python/gst-python/gst-python-0.10.15.ebuild new file mode 100644 index 000000000000..fe2920df11bf --- /dev/null +++ b/dev-python/gst-python/gst-python-0.10.15.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2009 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.15.ebuild,v 1.1 2009/05/13 15:46:37 tester Exp $ + +NEED_PYTHON=2.4 + +inherit autotools eutils multilib python + +DESCRIPTION="A Python Interface to GStreamer" +HOMEPAGE="http://gstreamer.freedesktop.org" +SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0.10" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="examples" + +RDEPEND="|| ( >=dev-python/pygobject-2.11.2 >=dev-python/pygtk-2.6.3 ) + >=media-libs/gstreamer-0.10.23 + >=media-libs/gst-plugins-base-0.10.23 + dev-libs/libxml2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-0.10.9-lazy.patch + + eautoconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README TODO + + if use examples; then + docinto examples + dodoc examples/* + fi +} + +pkg_postinst() { + python_version + python_mod_compile /usr/$(get_libdir)/python${PYVER}/site-packages/pygst.py + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/gst-0.10 +} + +pkg_postrm() { + python_mod_cleanup +} |