blob: 58e5b0ce48459f2edc016cf33d122f063165425a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/dxr3player/dxr3player-0.9.ebuild,v 1.6 2005/11/07 10:14:27 flameeyes Exp $
DESCRIPTION="A DVD player for Linux, supports the DXR3 (aka Hollywood+) board."
HOMEPAGE="http://dxr3player.sourceforge.net/"
SRC_URI="mirror://sourceforge/dxr3player/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="lirc sdl mmx sse 3dnow"
DEPEND=">=media-libs/libmad-0.15.1b
lirc? ( app-misc/lirc )
sdl? ( media-libs/libsdl media-libs/libmpeg2 )"
src_compile() {
myconf="--with-mad"
if use lirc; then
myconf="${myconf} --with-lirc=/usr"
fi
if use sdl; then
myconf="${myconf} --with-sdl=/usr"
fi
if [ -e /usr/include/linux/em8300.h ]
then
myconf="${myconf} --with-em8300=/usr"
fi
if use 3dnow; then
accel=" --with-mm-accel=3dnow"
fi
if use mmx; then
accel=" --with-mm-accel=mmx"
fi
if use sse; then
accel=" --with-mm-accel=sse"
fi
econf ${myconf} ${accel} || die
emake || die
}
src_install() {
dodoc AUTHORS ChangeLog LISEZMOI NEWS README
mybin="src/dxr3player/dumpdvd"
if [ -e /usr/include/linux/em8300.h ]
then
mybin="${mybin} src/dxr3player/dxr3player"
fi
if use sdl; then
mybin="${mybin} src/dxr3player/dxr3player-sdl"
fi
dobin $mybin
}
|