blob: a90c349324a0f73f2dcc0d8a9346983258d84dbd (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/xine-ui-0.9.23.ebuild,v 1.7 2004/03/29 01:05:22 vapier Exp $
inherit eutils
DESCRIPTION="Xine movie player"
HOMEPAGE="http://xine.sourceforge.net/"
SRC_URI="mirror://sourceforge/xine/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc amd64"
IUSE="X gnome nls directfb lirc"
DEPEND="media-libs/libpng
>=media-libs/xine-lib-1_rc3
>=net-misc/curl-7.10.2
lirc? ( app-misc/lirc )
X? ( virtual/x11 )
media-libs/aalib
gnome? ( gnome-base/ORBit )
directfb? ( media-libs/aalib
>=dev-libs/DirectFB-0.9.9 )"
RDEPEND="nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/preserve-CFLAGS-${PV}.diff
epatch ${FILESDIR}/true-false.patch
use directfb || sed -i "s:dfb::" src/Makefile.in
sed -i "s:LDFLAGS =:LDFLAGS = -L/lib:" src/xitk/Makefile.in
}
src_compile() {
local myconf=""
use X || myconf="${myconf} --disable-x11 --disable-xv"
use nls || myconf="${myconf} --disable-nls"
use lirc || myconf="${myconf} --disable-lirc"
econf ${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} \
docdir=/usr/share/doc/${PF} \
docsdir=/usr/share/doc/${PF} \
install || die
dodoc AUTHORS ChangeLog INSTALL NEWS README
}
|