blob: 30d428d9cef9867f4fd1d6f6987999d94da12444 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/gxine/gxine-0.3.3-r1.ebuild,v 1.3 2004/11/06 18:29:54 weeve Exp $
inherit eutils nsplugins
DESCRIPTION="GTK+ Front-End for libxine"
HOMEPAGE="http://xine.sourceforge.net/"
LICENSE="GPL-2"
DEPEND="media-libs/libpng
>=media-libs/xine-lib-1_beta10
>=x11-libs/gtk+-2.0.0
lirc? ( app-misc/lirc )
X? ( virtual/x11 )"
RDEPEND="nls? ( sys-devel/gettext )"
IUSE="X nls lirc"
SLOT="0"
KEYWORDS="x86 ~ppc sparc ~amd64 ~ppc64"
SRC_URI="mirror://sourceforge/xine/${P}.tar.gz"
src_unpack() {
unpack ${A}
cd ${S}
#fixes bug #65303 with missing X11 libs
epatch ${FILESDIR}/${P}-Makefile.in.patch
#fixes bug http overflow security bug #70055
epatch ${FILESDIR}/${P}-http-overflow.patch
}
src_compile() {
# Most of these are not working currently, but are here for completeness
local myconf
use X || myconf="${myconf} --disable-x11 --disable-xv"
myconf="${myconf} $(use_enable nls)"
econf ${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} \
docdir=/usr/share/doc/${PF} \
docsdir=/usr/share/doc/${PF} \
install || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
}
|