blob: 815d335a20454b12f7e8c323d7d3096622687f2a (
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
60
61
62
63
64
65
66
67
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/xine-ui-0.99.3-r1.ebuild,v 1.1 2005/04/11 14:53:09 luckyduck 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 ~amd64 ~ppc64 ~sparc"
IUSE="X nls lirc aalib libcaca readline curl ncurses"
DEPEND="media-libs/libpng
>=media-libs/xine-lib-1.0
lirc? ( app-misc/lirc )
X? ( virtual/x11 )
aalib? ( media-libs/aalib )
libcaca? ( media-libs/libcaca )
curl? ( >=net-misc/curl-7.10.2 )
ncurses? ( sys-libs/ncurses )"
RDEPEND="nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
# Detects CFLAGS set in make.conf without this patch
#epatch ${FILESDIR}/preserve-CFLAGS-${PV}.diff
epatch ${FILESDIR}/true-false.patch
epatch ${FILESDIR}/${PN}-configure-checks.patch
epatch ${FILESDIR}/${PN}-desktop-fixes.patch
./autogen.sh
sed -i "s:LDFLAGS =:LDFLAGS = -L/lib :" src/xitk/Makefile.in
}
src_compile() {
rm misc/xine-bugreport
local myconf=""
econf \
$(use_enable lirc) \
$(use_enable nls) \
$(use_with X x) \
$(use_with aalib) \
$(use_with libcaca) \
$(use_with curl) \
$(use_with readline) \
$(use_with ncurses) \
${myconf} || die
emake || die "Make failed!"
}
src_install() {
make DESTDIR=${D} docdir=/usr/share/doc/${PF} docsdir=/usr/share/doc/${PF} install || die
dodoc AUTHORS ChangeLog INSTALL NEWS README
for res in 16 22 32 48; do
insinto /usr/share/icons/hicolor/${res}x${res}/apps
newins ${S}/misc/desktops/xine_${res}x${res}.png xine.png
done
}
|