diff options
author | Zaheer Abbas Merali <zaheerm@gentoo.org> | 2006-06-12 09:58:49 +0000 |
---|---|---|
committer | Zaheer Abbas Merali <zaheerm@gentoo.org> | 2006-06-12 09:58:49 +0000 |
commit | f26af4ad8284b186f553f5d0279faf7bc13b91ec (patch) | |
tree | ed7ef4962a374235a007c33168937b085f308f73 /media-libs/gst-plugins-base/gst-plugins-base-0.10.8.ebuild | |
parent | Add new patch for GCC 4.1 from Javier. (diff) | |
download | historical-f26af4ad8284b186f553f5d0279faf7bc13b91ec.tar.gz historical-f26af4ad8284b186f553f5d0279faf7bc13b91ec.tar.bz2 historical-f26af4ad8284b186f553f5d0279faf7bc13b91ec.zip |
version bump, also from now on gstreamer 0.10 requires glib 2.8
Package-Manager: portage-2.1_rc4-r3
Diffstat (limited to 'media-libs/gst-plugins-base/gst-plugins-base-0.10.8.ebuild')
-rw-r--r-- | media-libs/gst-plugins-base/gst-plugins-base-0.10.8.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/media-libs/gst-plugins-base/gst-plugins-base-0.10.8.ebuild b/media-libs/gst-plugins-base/gst-plugins-base-0.10.8.ebuild new file mode 100644 index 000000000000..ad60468a254a --- /dev/null +++ b/media-libs/gst-plugins-base/gst-plugins-base-0.10.8.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/gst-plugins-base-0.10.8.ebuild,v 1.1 2006/06/12 09:58:49 zaheerm Exp $ + +# order is important, gnome2 after gst-plugins +inherit gst-plugins-base gst-plugins10 gnome2 eutils flag-o-matic libtool + +DESCRIPTION="Basepack of plugins for gstreamer" +HOMEPAGE="http://gstreamer.net/" +SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="alsa esd oss X xv" + +RDEPEND=">=dev-libs/glib-2.8 + >=media-libs/gstreamer-0.10.8 + >=dev-libs/liboil-0.3.6" + +DEPEND="${RDEPEND} + >=sys-devel/gettext-0.11.5 + >=dev-util/pkgconfig-0.9" + +PDEPEND="oss? ( >=media-plugins/gst-plugins-oss-0.10 ) + alsa? ( >=media-plugins/gst-plugins-alsa-0.10 ) + esd? ( >=media-plugins/gst-plugins-esd-0.10 ) + X? ( >=media-plugins/gst-plugins-x-0.10 ) + xv? ( >=media-plugins/gst-plugins-xvideo-0.10 )" + +src_compile() { + + elibtoolize + + # gst doesnt handle optimisations well + strip-flags + replace-flags "-O3" "-O2" + filter-flags "-fprefetch-loop-arrays" # see bug 22249 + if use alpha || use amd64 || use ia64 || use hppa; then + append-flags -fPIC + fi + + gst-plugins-base_src_configure + + emake || die + +} + +# override eclass +src_install() { + + gnome2_src_install + +} + +DOCS="AUTHORS INSTALL README RELEASE TODO" |