diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2013-09-29 18:48:34 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2013-09-29 18:48:34 +0000 |
commit | b8600d517725e2bba153026f3f41da5ad7dfd366 (patch) | |
tree | 55182baf669b4a9764dc03b0106bcc25d8a69ea8 /media-libs/gst-plugins-ugly | |
parent | Disable ghci linker hack on x86-hardened (bug #486140 by Anton Kochkov). (diff) | |
download | gentoo-2-b8600d517725e2bba153026f3f41da5ad7dfd366.tar.gz gentoo-2-b8600d517725e2bba153026f3f41da5ad7dfd366.tar.bz2 gentoo-2-b8600d517725e2bba153026f3f41da5ad7dfd366.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'media-libs/gst-plugins-ugly')
-rw-r--r-- | media-libs/gst-plugins-ugly/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/gst-plugins-ugly/gst-plugins-ugly-1.2.0.ebuild | 44 |
2 files changed, 51 insertions, 1 deletions
diff --git a/media-libs/gst-plugins-ugly/ChangeLog b/media-libs/gst-plugins-ugly/ChangeLog index 8da6ede164d2..3c408e81bf25 100644 --- a/media-libs/gst-plugins-ugly/ChangeLog +++ b/media-libs/gst-plugins-ugly/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/gst-plugins-ugly # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-ugly/ChangeLog,v 1.127 2013/09/01 18:40:32 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-ugly/ChangeLog,v 1.128 2013/09/29 18:48:34 eva Exp $ + +*gst-plugins-ugly-1.2.0 (29 Sep 2013) + + 29 Sep 2013; Gilles Dartiguelongue <eva@gentoo.org> + +gst-plugins-ugly-1.2.0.ebuild: + Version bump. *gst-plugins-ugly-1.0.10 (01 Sep 2013) diff --git a/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.2.0.ebuild b/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.2.0.ebuild new file mode 100644 index 000000000000..5c81a07c24fb --- /dev/null +++ b/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.2.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.2.0.ebuild,v 1.1 2013/09/29 18:48:34 eva Exp $ + +EAPI="5" + +# order is important, gst-plugins10 after gst-plugins +inherit eutils flag-o-matic gst-plugins-ugly gst-plugins10 + +DESCRIPTION="Basepack of plugins for gstreamer" +HOMEPAGE="http://gstreamer.sourceforge.net" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="+orc" + +RDEPEND=" + >=dev-libs/glib-2.32:2 + >=media-libs/gstreamer-1:${SLOT} + >=media-libs/gst-plugins-base-1:${SLOT} + orc? ( >=dev-lang/orc-0.4.16 ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.12 +" + +src_configure() { + # gst doesnt handle optimisations well + strip-flags + replace-flags "-O3" "-O2" + filter-flags "-fprefetch-loop-arrays" # see bug 22249 + + gst-plugins10_src_configure +} + +src_compile() { + default +} + +src_install() { + DOCS="AUTHORS ChangeLog NEWS README RELEASE" + default + prune_libtool_files --modules +} |