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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Martin Schlemmer <azarah@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-0.90_pre5.ebuild,v 1.3 2002/06/10 18:05:51 azarah Exp $
# Handle PREversions as well
MY_PV=${PV/_/}
S="${WORKDIR}/MPlayer-${MY_PV}"
# Only install Skin if GUI should be build (gtk as USE flag)
SRC_URI="ftp://mplayerhq.hu/MPlayer/releases/MPlayer-${MY_PV}.tar.bz2
ftp://mplayerhq.hu/MPlayer/releases/mp-arial-iso-8859-1.zip
gtk? ( http://www.ibiblio.org/gentoo/distfiles/default-skin-0.1.tar.bz2 )"
# This is to get the digest problem fixed.
# gtk? ( ftp://mplayerhq.hu/MPlayer/Skin/default.tar.bz2 )"
DESCRIPTION="Media Player for Linux"
HOMEPAGE="http://www.mplayerhq.hu/"
# 'encode' in USE for MEncoder
RDEPEND=">=media-libs/divx4linux-20020418
>=media-libs/win32codecs-0.60
dvd? ( media-libs/libdvdread
media-libs/libdvdcss )
gtk? ( =x11-libs/gtk+-1.2*
media-libs/libpng )
esd? ( media-sound/esound )
ggi? ( media-libs/libggi )
sdl? ( media-libs/libsdl )
alsa? ( media-libs/alsa-lib )
svga? ( media-libs/svgalib )
encode? ( media-sound/lame
>=media-libs/libdv-0.9.5 )
opengl? ( virtual/opengl )
directfb? ( dev-libs/DirectFB )
oggvorbis? ( media-libs/libvorbis )
>=sys-apps/portage-1.9.10"
DEPEND="${RDEPEND}
dev-lang/nasm
app-arch/unzip"
SLOT="0"
src_unpack() {
unpack MPlayer-${MY_PV}.tar.bz2 mp-arial-iso-8859-1.zip
# Fix bug with the default Skin
use gtk && ( \
unpack default-skin-0.1.tar.bz2
cd ${WORKDIR}/default
patch < ${FILESDIR}/default-skin.diff || die "gtk patch failed"
)
cd ${S}
# Fixes some compile problems, thanks to Gwenn Gueguen
patch -p0 <${FILESDIR}/${P}-widget.patch || die "widget patch failed"
# Fixes include problem - Azarah (10 Jun 2002)
patch -p1 <${FILESDIR}/${P}-stream-include.patch || die
# Fixes install location for vidix drivers, thanks to Mezei Zoltan.
patch -p1 <${FILESDIR}/${P}-vidix-destpath.patch || die
}
src_compile() {
if use matrox; then
check_KV
fi
local myconf=""
# Some people have compile problems with the vidix stuff
# myconf="${myconf} --disable-vidix"
use 3dnow \
|| myconf="${myconf} --disable-3dnow --disable-3dnowex"
use sse \
|| myconf="${myconf} --disable-sse --disable-sse2"
# Only disable MMX if 3DNOW or SSE is not in USE
use mmx || use 3dnow || use sse \
|| myconf="${myconf} --disable-mmx --disable-mmx2"
# Only disable X if gtk is not in USE
use X || use gtk \
|| myconf="${myconf} --disable-x11 --disable-xv --disable-xmga --disable-png"
use matrox && use X \
&& myconf="${myconf} --enable-xmga"
use gtk \
&& myconf="${myconf} --enable-gui --enable-x11 --enable-xv --enable-png"
use oss \
|| myconf="${myconf} --disable-ossaudio"
use opengl \
|| myconf="${myconf} --disable-gl"
use sdl \
|| myconf="${myconf} --disable-sdl"
use ggi \
|| myconf="${myconf} --disable-ggi"
use svga \
|| myconf="${myconf} --disable-svga"
use directfb \
|| myconf="${myconf} --disable-directfb"
use fbcon \
|| myconf="${myconf} --disable-fbdev"
use alsa \
|| myconf="${myconf} --disable-alsa"
use oggvorbis \
|| myconf="${myconf} --disable-vorbis"
use encode \
&& myconf="${myconf} --enable-mencoder --enable-tv" \
|| myconf="${myconf} --disable-mencoder"
use dvd \
&& myconf="${myconf} --enable-dvdread --enable-css" \
|| myconf="${myconf} --disable-mpdvdkit --disable-dvdread --disable-css"
use matrox \
&& myconf="${myconf} --enable-mga" \
|| myconf="${myconf} --disable-mga"
use 3dfx \
&& myconf="${myconf} --enable-3dfx --enable-tdfxfb"
# Crashes on start when compiled with most optimizations.
# The code have CPU detection code now, with CPU specific
# optimizations, so extra should not be needed and is not
# recommended by the authors
CFLAGS="" \
CXXFLAGS="" \
./configure --prefix=/usr \
--disable-runtime-cpudetection \
--enable-largefiles \
--enable-linux-devfs \
${myconf} || die
CFLAGS="" \
CXXFLAGS="" \
emake all || die
use matrox && ( \
cd drivers
emake all || die
)
}
src_install() {
make prefix=${D}/usr \
BINDIR=${D}/usr/bin \
LIBDIR=${D}/usr/lib \
CONFDIR=${D}/usr/share/mplayer \
DATADIR=${D}/usr/share/mplayer \
MANDIR=${D}/usr/share/man \
install || die
# MAN pages are already installed ...
rm DOCS/*.1
# Install the rest of the documentation
dodir /usr/share/doc/${PF}
cp -a DOCS/* ${D}/usr/share/doc/${PF}
doalldocs
# Install the default Skin and Gnome menu entry
use gtk && ( \
insinto /usr/share/mplayer/Skin/default
doins ${WORKDIR}/default/*
# Permissions is fried by default
chmod a+rx ${D}/usr/share/mplayer/Skin/default/
chmod a+r ${D}/usr/share/mplayer/Skin/default/*
# Fix the symlink
rm -rf ${D}/usr/bin/gmplayer
dosym /usr/bin/mplayer /usr/bin/gmplayer
)
use gnome && ( \
insinto /usr/share/pixmaps
newins ${S}/Gui/mplayer/pixmaps/icon.xpm mplayer.xpm
insinto /usr/share/gnome/apps/Multimedia
doins ${FILESDIR}/mplayer.desktop
)
# Install the font used by OSD and the GUI
dodir /usr/share/mplayer/fonts
cp -a ${WORKDIR}/iso-8859-1/ ${D}/usr/share/mplayer/fonts
rm -rf ${D}/usr/share/mplayer/font
dosym /usr/share/mplayer/fonts/iso-8859-1/arial-14/ /usr/share/mplayer/font
# This tries setting up mplayer.conf automagically
local video="sdl" audio="sdl"
use X && (
use gtk && video="xv" \
|| use sdl && video="sdl" \
|| use xv && video="xv" \
|| use opengl && video="gl" \
|| use ggi && video="ggi" \
|| use dga && video="dga" \
|| video="x11"
) || (
use fbcon && video="fbdev" \
|| use svga && video="svga" \
|| use aalib && video="aa"
)
use sdl && audio="sdl" \
|| use alsa && (
[ -e /usr/lib/libasound.so.2 ] && audio="alsa9" \
|| audio="alsa5"
) || use oss audio="oss" \
# Note to myself: do not change " into '
sed -e "s/vo=xv/vo=${video}/" \
-e "s/ao=oss/ao=${audio}/" \
-e 's/include =/#include =/' \
${S}/etc/example.conf > ${T}/mplayer.conf
insinto /etc
doins ${T}/mplayer.conf
insinto /usr/share/mplayer
doins ${S}/etc/codecs.conf
use matrox && ( \
dodir /lib/modules/${KV}/kernel/drivers/char
cp ${S}/drivers/mga_vid.o ${D}/lib/modules/${KV}/kernel/drivers/char
)
}
pkg_postinst() {
echo
echo '######################################################################'
echo '# MPlayer users that are going to use the GUI, please note the #'
echo '# following: #'
echo '# #'
echo '# The GUI works best with mplayer -vo xv -gui, but since there is #'
echo '# no USE flag for XVideo, or for using the GUI, the autodetection #'
echo '# process cannot detect this by default (SDL will be used rather). #'
echo '# So, if your setup supports XVideo (xvinfo should give output), #'
echo '# maybe do something like: #'
echo '# #'
echo '# echo "vo = xv" >~/.mplayer/config #'
echo '# echo "gui = 1" >>~/.mplayer/config #'
echo '# #'
echo '# after launching mplayer for the first time. #'
echo '# #'
use gtk &>/dev/null \
|| echo '# NB: the GUI needs "gtk" as USE flag to build. #'
echo '######################################################################'
echo
depmod -a
}
|