Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-smoothstreaming/
Date: Sat, 26 Dec 2015 18:21:13
Message-Id: 1451154028.241a7e02883e755922b0af84cee024e906c4a81a.eva@gentoo
1 commit: 241a7e02883e755922b0af84cee024e906c4a81a
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 26 17:39:00 2015 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 26 18:20:28 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=241a7e02
7
8 media-plugins/gst-plugins-smoothstreaming: version bump to 1.6.2
9
10 Package-Manager: portage-2.2.26
11
12 media-plugins/gst-plugins-smoothstreaming/Manifest | 1 +
13 .../gst-plugins-smoothstreaming-1.6.2.ebuild | 34 ++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/media-plugins/gst-plugins-smoothstreaming/Manifest b/media-plugins/gst-plugins-smoothstreaming/Manifest
17 index a3f1ae6..e88a0c5 100644
18 --- a/media-plugins/gst-plugins-smoothstreaming/Manifest
19 +++ b/media-plugins/gst-plugins-smoothstreaming/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gst-plugins-bad-1.4.5.tar.xz 3824936 SHA256 152fad7250683d72f9deb36c5685428338365fe4a4c87ffe15e38783b14f983c SHA512 65d6be58957b1329420611b8e6f1eb9869420745d9165047631cdf9e45083605f37dcfaf68a288fe4252f1b3543f7f70ded9c12eab2e0ac4ac9f4c4ce9eaac7a WHIRLPOOL f5ade3f101ca82b52e7145e5ac16f5c1ab5d042415ee7753586dc6ad0942467c4c5b5b4aa6b0bc44e1ebd9c40de1964df265aa41599cb692fd32aab2b6a7acf7
22 DIST gst-plugins-bad-1.6.1.tar.xz 4215876 SHA256 e176a9af125f6874b3d6724aa7566a198fa225d3ece0a7ac2f2b51c57e525466 SHA512 336a449a23cc11c31fc744828746946de1107e31bd60bf1ba7e3b74d906bda691e917093d04a03249aabcdfc5af0a26ea2a04e343b2b744b1d404b0a5071bdd6 WHIRLPOOL 5cfaeef59b43c9c4fb70acb01f6cd31861e95904a618b02bcfa37afc81919239e1727f9e7da2bf2ee415c0525f3b7955289adbbf9099c9696f83128f7ffdf844
23 +DIST gst-plugins-bad-1.6.2.tar.xz 4187644 SHA256 650855e39ff56a8bb6cb0c192109c5926ce12f536d06e19ebf829de71ef396fe SHA512 f2d14d32047440a64daf341f9538fcb37c8b808d5ba19e8e9d4b7f9439b77f81cfc791e72193cb69f280a038162921bc9670cc340905850bec656ed4fe488fb5 WHIRLPOOL 7ae8e20c706f3526a5cdd5b4d086dfcf86af4f93e6ba0d60f655c211ca41b80c841004d0fc2134ad3f77c3600913dff0d94610dc5751acbbc4b9305c5600e8dc
24
25 diff --git a/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.6.2.ebuild b/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.6.2.ebuild
26 new file mode 100644
27 index 0000000..30167d6
28 --- /dev/null
29 +++ b/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.6.2.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="5"
36 +GST_ORG_MODULE=gst-plugins-bad
37 +
38 +inherit gstreamer
39 +
40 +DESCRIPTION="Smooth Streaming plugin"
41 +KEYWORDS="~amd64 ~x86"
42 +IUSE=""
43 +
44 +RDEPEND=">=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]"
45 +DEPEND="${RDEPEND}"
46 +
47 +src_prepare() {
48 + # FIXME: gsturidownloader does not have a .pc
49 + # gst-libs/gst/uridownloader:gsturidownloader \
50 + # gst-libs/gst/adaptativedemux:gstadaptivedemux
51 + gstreamer_system_link \
52 + gst-libs/gst/codecparsers:gstreamer-codecparsers
53 +
54 + local directory libs
55 + directory="gst-libs/gst/uridownloader"
56 + libs="-lgobject-2.0 -lglib-2.0 -lgstreamer-1.0 -lgstbase-1.0 -lgsturidownloader-1.0"
57 + sed -e "s:\$(top_builddir)/${directory}/.*\.la:${libs}:" \
58 + -i ext/smoothstreaming/Makefile.{am,in} || die
59 +
60 + directory="gst-libs/gst/adaptivedemux"
61 + libs="-lgobject-2.0 -lglib-2.0 -lgstreamer-1.0 -lgstbase-1.0 -lgstapp-1.0 -lgsturidownloader-1.0 -lgstadaptivedemux-1.0"
62 + sed -e "s:\$(top_builddir)/${directory}/.*\.la:${libs}:" \
63 + -i ext/smoothstreaming/Makefile.{am,in} || die
64 +}