Gentoo Archives: gentoo-commits

From: Alexandre Restovtsev <tetromino@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: media-libs/gstreamer/
Date: Fri, 01 Jul 2011 19:41:58
Message-Id: 76fba7316fe4b47ab047927555558c4935288fbe.tetromino@gentoo
1 commit: 76fba7316fe4b47ab047927555558c4935288fbe
2 Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
3 AuthorDate: Fri Jul 1 19:18:18 2011 +0000
4 Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
5 CommitDate: Fri Jul 1 19:18:18 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=76fba731
7
8 media-libs/gstreamer-0.10.35 moved to gx86
9
10 ---
11 media-libs/gstreamer/gstreamer-0.10.35.ebuild | 70 -------------------------
12 1 files changed, 0 insertions(+), 70 deletions(-)
13
14 diff --git a/media-libs/gstreamer/gstreamer-0.10.35.ebuild b/media-libs/gstreamer/gstreamer-0.10.35.ebuild
15 deleted file mode 100644
16 index 257abe6..0000000
17 --- a/media-libs/gstreamer/gstreamer-0.10.35.ebuild
18 +++ /dev/null
19 @@ -1,70 +0,0 @@
20 -# Copyright 1999-2011 Gentoo Foundation
21 -# Distributed under the terms of the GNU General Public License v2
22 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.32-r1.ebuild,v 1.7 2011/06/09 16:00:02 jer Exp $
23 -
24 -EAPI=2
25 -
26 -inherit eutils multilib versionator
27 -
28 -# Create a major/minor combo for our SLOT and executables suffix
29 -PV_MAJ_MIN=$(get_version_component_range '1-2')
30 -
31 -DESCRIPTION="Streaming media framework"
32 -HOMEPAGE="http://gstreamer.freedesktop.org/"
33 -SRC_URI="http://${PN}.freedesktop.org/src/${PN}/${P}.tar.bz2"
34 -
35 -LICENSE="LGPL-2"
36 -SLOT=${PV_MAJ_MIN}
37 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
38 -IUSE="doc +introspection nls test"
39 -
40 -RDEPEND=">=dev-libs/glib-2.22:2
41 - dev-libs/libxml2
42 - introspection? ( >=dev-libs/gobject-introspection-0.6.3 )
43 - !<media-libs/gst-plugins-base-0.10.26"
44 - # ^^ queue2 move, mustn't have both libgstcoreleements.so and libgstqueue2.so at runtime providing the element at once
45 -DEPEND="${RDEPEND}
46 - dev-util/pkgconfig
47 - doc? ( >=app-text/docbook-sgml-utils-0.6.10
48 - app-text/docbook-xml-dtd:4.2
49 - media-gfx/transfig )
50 - nls? ( sys-devel/gettext )"
51 - # dev-util/gtk-doc-am # Only if eautoreconf'ing
52 -
53 -src_prepare() {
54 - # don't ever build ps and pdf documentation
55 - sed -e 's:PDF_DAT = $(DOC).pdf:PDF_DAT =:' \
56 - -e 's:PS_DAT = $(DOC).ps:PS_DAT =:' \
57 - -i docs/manuals.mak docs/{faq,manual,pwg}/Makefile.in ||
58 - die "sed of docs/manuals.mak docs/{faq,manual,pwg}/Makefile.in failed"
59 -}
60 -
61 -src_configure() {
62 - # Disable static archives, dependency tracking and examples
63 - # to speed up build time
64 - econf \
65 - --disable-static \
66 - --disable-dependency-tracking \
67 - $(use_enable nls) \
68 - --disable-valgrind \
69 - --disable-examples \
70 - --enable-check \
71 - $(use_enable introspection) \
72 - $(use_enable test tests) \
73 - $(use_enable doc docbook) \
74 - --with-package-name="GStreamer ebuild for Gentoo" \
75 - --with-package-origin="http://packages.gentoo.org/package/media-libs/gstreamer"
76 -}
77 -
78 -src_install() {
79 - emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install ||
80 - die "emake install failed."
81 - dodoc AUTHORS ChangeLog NEWS MAINTAINERS README RELEASE
82 -
83 - # Remove unversioned binaries to allow SLOT installations in future
84 - cd "${D}"/usr/bin
85 - local gst_bins
86 - for gst_bins in $(ls *-${PV_MAJ_MIN}); do
87 - rm -f ${gst_bins/-${PV_MAJ_MIN}/}
88 - done
89 -}