Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-smoothstreaming/
Date: Sat, 09 Jul 2016 10:12:38
Message-Id: 1468059078.6e629528b2294d02258ac64d00de6db9582e4357.pacho@gentoo
1 commit: 6e629528b2294d02258ac64d00de6db9582e4357
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 9 09:36:41 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 9 10:11:18 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e629528
7
8 media-plugins/gst-plugins-smoothstreaming: Version bump
9
10 Package-Manager: portage-2.3.0
11
12 media-plugins/gst-plugins-smoothstreaming/Manifest | 1 +
13 .../gst-plugins-smoothstreaming-1.8.2.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/media-plugins/gst-plugins-smoothstreaming/Manifest b/media-plugins/gst-plugins-smoothstreaming/Manifest
17 index 7efa38d..a67cb43 100644
18 --- a/media-plugins/gst-plugins-smoothstreaming/Manifest
19 +++ b/media-plugins/gst-plugins-smoothstreaming/Manifest
20 @@ -1 +1,2 @@
21 DIST gst-plugins-bad-1.6.3.tar.xz 4216940 SHA256 971b29101d6a9c5e3fe94d99d977a227f58f0b2d29b6ca2c7f292052542b3a61 SHA512 0a3a1d3617f167e69c20db3fccf7af0c4983b8012136093dcc3d08c059d0d8687cf921309c91f94afb250e0c3b9f9ff397a98ff548ca83dc12ae762119ffc915 WHIRLPOOL eb1f1376ee9b36da09f93b14d587169a007578f7cfdce3981ae905638c28f32b85a2f2667fc347f0b9ff4aaa51512f9726377c9ab3c73040886eab9a09833612
22 +DIST gst-plugins-bad-1.8.2.tar.xz 4455536 SHA256 d7995317530c8773ec088f94d9320909d41da61996b801ebacce9a56af493f97 SHA512 0b8a7df6b60f24655b463dedae71de6c92dbbbc3bdf42f4b722caaee17cd701ae3c078a2ca81a9d6568123aeade20a8a3759f72a7a9806f4533375d61ab028b6 WHIRLPOOL a7af68b86bfff8c19683dd5afaaed6ea627b6d2fa54103ccc1310909ff500d36ee2c72a5bd66f2074f2bcf9f8292733dd09101ece26c47b54a18598364e39415
23
24 diff --git a/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.8.2.ebuild b/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.8.2.ebuild
25 new file mode 100644
26 index 0000000..a70e262
27 --- /dev/null
28 +++ b/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.8.2.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +GST_ORG_MODULE=gst-plugins-bad
36 +
37 +inherit gstreamer
38 +
39 +DESCRIPTION="Smooth Streaming plugin"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE=""
42 +
43 +RDEPEND=">=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]"
44 +DEPEND="${RDEPEND}"
45 +
46 +src_prepare() {
47 + default
48 +
49 + # FIXME: gsturidownloader does not have a .pc
50 + # gst-libs/gst/uridownloader:gsturidownloader \
51 + # gst-libs/gst/adaptativedemux:gstadaptivedemux
52 + gstreamer_system_link \
53 + gst-libs/gst/codecparsers:gstreamer-codecparsers
54 +
55 + local directory libs
56 + directory="gst-libs/gst/uridownloader"
57 + libs="-lgobject-2.0 -lglib-2.0 -lgstreamer-1.0 -lgstbase-1.0 -lgsturidownloader-1.0"
58 + sed -e "s:\$(top_builddir)/${directory}/.*\.la:${libs}:" \
59 + -i ext/smoothstreaming/Makefile.{am,in} || die
60 +
61 + directory="gst-libs/gst/adaptivedemux"
62 + libs="-lgobject-2.0 -lglib-2.0 -lgstreamer-1.0 -lgstbase-1.0 -lgstapp-1.0 -lgsturidownloader-1.0 -lgstadaptivedemux-1.0"
63 + sed -e "s:\$(top_builddir)/${directory}/.*\.la:${libs}:" \
64 + -i ext/smoothstreaming/Makefile.{am,in} || die
65 +}