blob: 816ce2542ea95c97a08e320802805c6206782785 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header :$
# debug since its still in devel
inherit gnome2 debug
DESCRIPTION="GStreamer Media Player"
HOMEPAGE="http://www.gstreamer.net/apps/gst-player/"
SRC_URI="mirror://sourceforge/gstreamer/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=media-libs/gstreamer-0.6.1
>=media-libs/gst-plugins-0.6.1
>=x11-libs/gtk+-2.2
>=gnome-base/libgnomeui-2
>=gnome-base/gconf-1.2
>=gnome-base/libbonoboui-2
>=gnome-base/libglade-2
dev-libs/libxml2"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.21"
DOCS="AUTHORS ChangeLog INSTALL NEWS README RELEASE TODO"
SCROLLKEEPER_UPDATE="0"
src_unpack() {
unpack ${A}
# we depend on 0.6, but configure still uses 0.5's gst-inspect
cd ${S}; sed -i -e "s/gst-inspect/gst-inspect-0.6/" configure
}
src_compile() {
# get around sandbox violation generated by gst-inspect
addwrite /var/lib/cache/gstreamer-0.6
addwrite /root/.gstreamer
gnome2_src_compile
}
|