Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/schroedinger: ChangeLog schroedinger-1.0.7-r2.ebuild
Date: Thu, 10 Sep 2009 09:41:51
Message-Id: E1MlgA1-0004r5-Jd@stork.gentoo.org
1 aballier 09/09/10 09:41:49
2
3 Modified: ChangeLog
4 Added: schroedinger-1.0.7-r2.ebuild
5 Log:
6 Add a patch by Randall Wald <rdwald@×××××.com>, bug #284071, to include the correct headers so that we get the required function declarations.
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.30 media-libs/schroedinger/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/schroedinger/ChangeLog?rev=1.30&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/schroedinger/ChangeLog?rev=1.30&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/schroedinger/ChangeLog?r1=1.29&r2=1.30
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/schroedinger/ChangeLog,v
19 retrieving revision 1.29
20 retrieving revision 1.30
21 diff -u -r1.29 -r1.30
22 --- ChangeLog 16 Aug 2009 12:49:50 -0000 1.29
23 +++ ChangeLog 10 Sep 2009 09:41:49 -0000 1.30
24 @@ -1,6 +1,14 @@
25 # ChangeLog for media-libs/schroedinger
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/ChangeLog,v 1.29 2009/08/16 12:49:50 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/ChangeLog,v 1.30 2009/09/10 09:41:49 aballier Exp $
29 +
30 +*schroedinger-1.0.7-r2 (10 Sep 2009)
31 +
32 + 10 Sep 2009; Alexis Ballier <aballier@g.o>
33 + +schroedinger-1.0.7-r2.ebuild,
34 + +files/schroedinger-1.0.7-gst_adapter_get_buffer.patch:
35 + Add a patch by Randall Wald <rdwald@×××××.com>, bug #284071, to include
36 + the correct headers so that we get the required function declarations.
37
38 *schroedinger-1.0.7-r1 (16 Aug 2009)
39
40
41
42
43 1.1 media-libs/schroedinger/schroedinger-1.0.7-r2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/schroedinger/schroedinger-1.0.7-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/schroedinger/schroedinger-1.0.7-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: schroedinger-1.0.7-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/schroedinger-1.0.7-r2.ebuild,v 1.1 2009/09/10 09:41:49 aballier Exp $
53
54 EAPI=2
55 inherit eutils libtool
56
57 DESCRIPTION="C-based libraries and GStreamer plugins for the Dirac video codec"
58 HOMEPAGE="http://www.diracvideo.org"
59 SRC_URI="http://www.diracvideo.org/download/${PN}/${P}.tar.gz"
60
61 LICENSE="|| ( MPL-1.1 LGPL-2.1 GPL-2 MIT )"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
64 IUSE="gstreamer"
65
66 RDEPEND=">=dev-libs/liboil-0.3.16
67 gstreamer? ( >=media-libs/gstreamer-0.10.24
68 >=media-libs/gst-plugins-base-0.10.24 )"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${P}-gst_adapter_masked_scan_uint32.patch
74 epatch "${FILESDIR}"/${P}-gst_adapter_get_buffer.patch
75 elibtoolize
76 }
77
78 src_configure() {
79 econf \
80 --disable-dependency-tracking \
81 --disable-gtk-doc \
82 $(use_enable gstreamer)
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "emake install failed"
87 dodoc AUTHORS NEWS TODO
88 }