diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-08-30 10:50:36 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-08-30 10:50:36 +0000 |
commit | e9bd2e8504dc2b9128642d129c46f181ed2c2398 (patch) | |
tree | 2d10c57cc5ebc98f53e267732466344ed8cfceb0 /media-libs/gst-plugins-good | |
parent | Fix for wrong files path, one raising bug #181804 (diff) | |
download | gentoo-2-e9bd2e8504dc2b9128642d129c46f181ed2c2398.tar.gz gentoo-2-e9bd2e8504dc2b9128642d129c46f181ed2c2398.tar.bz2 gentoo-2-e9bd2e8504dc2b9128642d129c46f181ed2c2398.zip |
Version bump.
(Portage version: 2.1.3.7)
Diffstat (limited to 'media-libs/gst-plugins-good')
-rw-r--r-- | media-libs/gst-plugins-good/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/gst-plugins-good/files/digest-gst-plugins-good-0.10.6 | 3 | ||||
-rw-r--r-- | media-libs/gst-plugins-good/gst-plugins-good-0.10.6.ebuild | 65 |
3 files changed, 75 insertions, 1 deletions
diff --git a/media-libs/gst-plugins-good/ChangeLog b/media-libs/gst-plugins-good/ChangeLog index 3593ef65c178..12515f8a4b5e 100644 --- a/media-libs/gst-plugins-good/ChangeLog +++ b/media-libs/gst-plugins-good/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/gst-plugins-good # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/ChangeLog,v 1.34 2007/07/26 13:59:58 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/ChangeLog,v 1.35 2007/08/30 10:50:36 drac Exp $ + +*gst-plugins-good-0.10.6 (30 Aug 2007) + + 30 Aug 2007; Samuli Suominen <drac@gentoo.org> + +gst-plugins-good-0.10.6.ebuild: + Version bump. 26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> gst-plugins-good-0.10.5.ebuild: diff --git a/media-libs/gst-plugins-good/files/digest-gst-plugins-good-0.10.6 b/media-libs/gst-plugins-good/files/digest-gst-plugins-good-0.10.6 new file mode 100644 index 000000000000..5a8ad1f134cc --- /dev/null +++ b/media-libs/gst-plugins-good/files/digest-gst-plugins-good-0.10.6 @@ -0,0 +1,3 @@ +MD5 25f111360c2930705b91b4fcf93ae5c5 gst-plugins-good-0.10.6.tar.bz2 1576121 +RMD160 fd0102617759611f9b6e9e490101b95f4369f4e8 gst-plugins-good-0.10.6.tar.bz2 1576121 +SHA256 9e9cd6a5e134c29400b9dc302e523684dca55d0f7f11eb4b06535b24e5032d66 gst-plugins-good-0.10.6.tar.bz2 1576121 diff --git a/media-libs/gst-plugins-good/gst-plugins-good-0.10.6.ebuild b/media-libs/gst-plugins-good/gst-plugins-good-0.10.6.ebuild new file mode 100644 index 000000000000..de4d2376f6fb --- /dev/null +++ b/media-libs/gst-plugins-good/gst-plugins-good-0.10.6.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/gst-plugins-good-0.10.6.ebuild,v 1.1 2007/08/30 10:50:36 drac Exp $ + +# order is important, gnome2 after gst-plugins +inherit gst-plugins-good 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="LGPL-2.1" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" + +RDEPEND=">=media-libs/gst-plugins-base-0.10.13 + >=media-libs/gstreamer-0.10.13 + >=dev-libs/liboil-0.3.6" + +DEPEND="${RDEPEND} + >=sys-devel/gettext-0.11.5 + >=dev-util/pkgconfig-0.9" + +# overrides the eclass +src_unpack() { + unpack ${A} +} + +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-good_src_configure + + emake || die +} + +# override eclass +src_install() { + gnome2_src_install +} + +DOCS="AUTHORS INSTALL README RELEASE TODO" + +pkg_postinst () { + gnome2_pkg_postinst + + echo "" + elog "The Gstreamer plugins setup has changed quite a bit on Gentoo," + elog "applications now should provide the basic plugins needed." + elog "" + elog "The new seperate plugins are all named 'gst-plugins-<plugin>'." + elog "To get a listing of currently available plugins execute 'emerge -s gst-plugins-'." + elog "In most cases it shouldn't be needed though to emerge extra plugins." +} + +pkg_postrm() { + gnome2_pkg_postrm +} |