summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2003-12-12 07:37:05 +0000
committerSeemant Kulleen <seemant@gentoo.org>2003-12-12 07:37:05 +0000
commit6ab68ce059d8f0888a61aad325e704882179d1cc (patch)
treecdffd955267c3b888b6fed1bfc38af5fe169cdf1 /media-video/mplayer
parentversion bump (diff)
downloadhistorical-6ab68ce059d8f0888a61aad325e704882179d1cc.tar.gz
historical-6ab68ce059d8f0888a61aad325e704882179d1cc.tar.bz2
historical-6ab68ce059d8f0888a61aad325e704882179d1cc.zip
version bump
Diffstat (limited to 'media-video/mplayer')
-rw-r--r--media-video/mplayer/Manifest5
-rw-r--r--media-video/mplayer/files/digest-mplayer-1.0_pre35
-rw-r--r--media-video/mplayer/files/mplayer-1.0-gtk2.patch189
-rw-r--r--media-video/mplayer/mplayer-1.0_pre3.ebuild439
4 files changed, 636 insertions, 2 deletions
diff --git a/media-video/mplayer/Manifest b/media-video/mplayer/Manifest
index 9b0c9623742c..0a7368599ebb 100644
--- a/media-video/mplayer/Manifest
+++ b/media-video/mplayer/Manifest
@@ -1,7 +1,7 @@
MD5 6e4cd04df5cea0c54044d82fea4e1c59 mplayer-1.0_pre2.ebuild 11693
-MD5 6e4cd04df5cea0c54044d82fea4e1c59 mplayer-1.0_pre3.ebuild 11693
+MD5 7a54f22040217ef59312c8dd5dac72e3 mplayer-1.0_pre3.ebuild 11705
MD5 9adeb555572aece3c0e951a526116e3c mplayer-1.0_pre1-r1.ebuild 11501
-MD5 9cbdd77f8750550be5c7d9cf42e11737 ChangeLog 17078
+MD5 0cf58b6dedb84384d9b14c233e10b1cc ChangeLog 17285
MD5 93694398515284a729c544200e65ba8b mplayer-0.92.ebuild 11816
MD5 9ef4af14dad87b03fde8e43f19e08d26 metadata.xml 225
MD5 9e064190a914d26b0392a266753161ed files/mplayer-0.90-ppc-benh.patch 2029
@@ -14,6 +14,7 @@ MD5 fef9f0571da54ae3df2e804100bd2632 files/vuln01-fix.diff 1231
MD5 c2d65649f15837c5a326557ded4e47c5 files/mplayer.desktop 119
MD5 b0205104d1242fcccdb5dfd2188f5ab2 files/digest-mplayer-1.0_pre2 358
MD5 d74f7136fa5b4fa7d9ef13f8193dfe7c files/digest-mplayer-1.0_pre3 358
+MD5 c54c7ba8e18c8e7f3412c6d6939d010a files/mplayer-1.0-gtk2.patch 5903
MD5 26a52f084f4d177580ed9ea0187f54e7 files/mplayer-0.90-ppc-benh-2.patch 2049
MD5 89440216f99b2e09265d46fead5363fb files/digest-mplayer-1.0_pre1-r1 358
MD5 8f18911adcd661e70ad0cd84a94d49ac files/mplayer-0.90-divx.patch 25064
diff --git a/media-video/mplayer/files/digest-mplayer-1.0_pre3 b/media-video/mplayer/files/digest-mplayer-1.0_pre3
new file mode 100644
index 000000000000..89f8208a6f50
--- /dev/null
+++ b/media-video/mplayer/files/digest-mplayer-1.0_pre3
@@ -0,0 +1,5 @@
+MD5 998becb79417c6a14d15c07e85188b82 MPlayer-1.0pre3.tar.bz2 4714725
+MD5 1ecd31d17b51f16332b1fcc7da36b312 font-arial-iso-8859-1.tar.bz2 234242
+MD5 7b47904a925cf58ea546ca15f3df160c font-arial-iso-8859-2.tar.bz2 222208
+MD5 3f1b9eb2ba639bf42c61f7b9189f6524 svgalib_helper-1.9.17-mplayer.tar.bz2 7234
+MD5 64e2d18438bbef16822c141d846884f6 Blue-1.0.tar.bz2 219130
diff --git a/media-video/mplayer/files/mplayer-1.0-gtk2.patch b/media-video/mplayer/files/mplayer-1.0-gtk2.patch
new file mode 100644
index 000000000000..33d99e3347c2
--- /dev/null
+++ b/media-video/mplayer/files/mplayer-1.0-gtk2.patch
@@ -0,0 +1,189 @@
+diff -urN MPlayer-1.0pre3.old/Gui/mplayer/gtk/about.c MPlayer-1.0pre3/Gui/mplayer/gtk/about.c
+--- MPlayer-1.0pre3.old/Gui/mplayer/gtk/about.c 2003-03-16 16:48:26.000000000 -0800
++++ MPlayer-1.0pre3/Gui/mplayer/gtk/about.c 2003-12-11 22:58:54.000000000 -0800
+@@ -28,6 +28,11 @@
+ GtkWidget * AboutText;
+ GtkWidget * Ok;
+
++#ifdef HAVE_GTK2_GUI
++ GtkTextBuffer * AboutTextBuffer;
++ GtkTextIter iter;
++#endif //HAVE_GTK2_GUI
++
+ GtkStyle * pixmapstyle;
+ GdkPixmap * pixmapwid;
+ GdkBitmap * mask;
+@@ -67,11 +72,24 @@
+ gtk_box_pack_start( GTK_BOX( vbox ),scrolledwindow1,TRUE,TRUE,0 );
+ gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( scrolledwindow1 ),GTK_POLICY_AUTOMATIC,GTK_POLICY_AUTOMATIC );
+
+- AboutText=gtk_text_new( NULL,NULL );
++ #ifdef HAVE_GTK2_GUI
++ AboutText = gtk_text_view_new();
++ AboutTextBuffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (AboutText));
++ gtk_text_buffer_get_iter_at_offset (AboutTextBuffer, &iter, 0);
++ #else
++ AboutText = gtk_text_new( NULL,NULL );
++ #endif //HAVE_GTK2_GUI
++
+ gtk_widget_set_name( AboutText,"AboutText" );
+ gtk_widget_show( AboutText );
+ gtk_container_add( GTK_CONTAINER( scrolledwindow1 ),AboutText );
+- gtk_text_insert( GTK_TEXT( AboutText ),NULL,NULL,NULL,
++
++ #ifdef HAVE_GTK2_GUI
++ gtk_text_buffer_insert (AboutTextBuffer, &iter,
++ #else
++ gtk_text_insert( GTK_TEXT( AboutText ),NULL,NULL,NULL,
++ #endif //HAVE_GTK2_GUI
++
+ "\n"
+ MSGTR_ABOUT_UHU
+ " (http://www.uhulinux.hu/)\n"
+diff -urN MPlayer-1.0pre3.old/configure MPlayer-1.0pre3/configure
+--- MPlayer-1.0pre3.old/configure 2003-12-08 13:33:31.000000000 -0800
++++ MPlayer-1.0pre3/configure 2003-12-11 23:12:31.000000000 -0800
+@@ -149,6 +149,7 @@
+ Optional features:
+ --disable-mencoder disable mencoder (a/v encoder) compilation [enable]
+ --enable-gui enable gmplayer compilation (gtk-1.2 GUI) [disable]
++ --enable-gtk2 enable gtk2 port of the gui [disable]
+ --enable-largefiles enable support for files > 2 GBytes [disable]
+ --enable-linux-devfs set default devices to devfs ones [disable]
+ --enable-termcap use termcap database for key codes [autodetect]
+@@ -1162,6 +1163,7 @@
+ _lirc=auto
+ _lircc=auto
+ _gui=no
++_gtk2=no
+ _termcap=auto
+ _termios=auto
+ _3dfx=no
+@@ -1363,6 +1365,8 @@
+ --disable-lircc) _lircc=no ;;
+ --enable-gui) _gui=yes ;;
+ --disable-gui) _gui=no ;;
++ --enable-gtk2) _gtk2=yes ;;
++ --disable-gtk2) _gtk2=no ;;
+ --enable-termcap) _termcap=yes ;;
+ --disable-termcap) _termcap=no ;;
+ --enable-termios) _termios=yes ;;
+@@ -5537,41 +5541,69 @@
+ fi
+ echores "$_xshape"
+
++ #Check for new GTK (2.x.x)
++ if test "$_gtk2" = yes ; then
+
+- # Check for GTK:
+- echocheck "gtk version"
+- if test -z "$_gtkconfig" ; then
+- if ( gtk-config --version ) >/dev/null 2>&1 ; then
+- _gtkconfig="gtk-config"
+- elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
+- _gtkconfig="gtk12-config"
+- else
+- die "The GUI requires GTK devel packages (which were not found)."
+- fi
+- fi
+- _gtk=`$_gtkconfig --version 2>&1`
+- _inc_gtk=`$_gtkconfig --cflags 2>&1`
+- _ld_gtk=`$_gtkconfig --libs 2>&1`
+- echores "$_gtk (using $_gtkconfig)"
+-
+- # Check for GLIB
+- echocheck "glib version"
+- if test -z "$_glibconfig" ; then
+- if ( glib-config --version ) >/dev/null 2>&1 ; then
+- _glibconfig="glib-config"
+- elif ( glib12-config --version ) >/dev/null 2>&1 ; then
+- _glibconfig="glib12-config"
+- else
+- die "The GUI requires GLib devel packages (which were not found)"
+- fi
+- fi
+- _glib=`$_glibconfig --version 2>&1`
+- _inc_glib=`$_glibconfig --cflags 2>&1`
+- _ld_glib=`$_glibconfig --libs 2>&1`
+- echores "$_glib (using $_glibconfig)"
++ #Check for GTK:
++ echocheck "GTK+ version"
+
+- _def_gui='#define HAVE_NEW_GUI 1'
+- _ld_gui='$(GTKLIB) $(GLIBLIB)'
++ _gtk=`pkg-config gtk+-2.0 --modversion 2>&1`
++ _inc_gtk=`pkg-config gtk+-2.0 --cflags 2>&1`
++ _ld_gtk=`pkg-config gtk+-2.0 --libs 2>&1`
++ echores "$_gtk"
++
++ # Check for GLIB
++ echocheck "glib version"
++ _glib=`pkg-config glib-2.0 --modversion 2>&1`
++ _inc_glib=`pkg-config glib-2.0 --cflags 2>&1`
++ _ld_glib=`pkg-config glib-2.0 --libs 2>&1`
++ echores "$_glib"
++
++ _def_gui='#define HAVE_NEW_GUI 1'
++ _def_gtk2_gui='#define HAVE_GTK2_GUI 1'
++ _ld_gui='$(GTKLIB) $(GLIBLIB)'
++
++ # Check for "old GTK (1.2.x)
++ else
++
++ # Check for GTK:
++ echochek "GTK+ version"
++ if test -z "$_gtkconfig" ; then
++ if ( gtk-config --version ) >/dev/null 2>&1 ; then
++ _gtkconfig="gtk-config"
++ elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
++ _gtkconfig="gtk12-config"
++ else
++ die "the GUI requires GTK+ (which was not found)"
++ fi
++ fi
++ _gtk=`$_gtkconfig --version 2>&1`
++ _inc_gtk=`$_gtkconfig --cflags 2>&1`
++ _ld_gtk=`$_gtkconfig --libs 2>&1`
++ echores "$_gtk (using $_gtkconfig)"
++
++ # Check for GLIB
++ echocheck "glib version"
++ if test -z "$_glibconfig" ; then
++ if ( glib-config --version ) >/dev/null 2>&1 ; then
++ _glibconfig="glib-config"
++ elif (glib12-config --version ) >/dev/null 2>&1 ; then
++ _glibconfig"glib12-config"
++ else
++ die "the GUI requires GLIB (which was not found)"
++ fi
++ fi
++
++ _glib=`$_glibconfig --version 2>&1`
++ _inc_glib=`$_glibconfig --cflags 2>&1`
++ _ld_glib=`$_glibconfig --libs 2>&1`
++ echores "$_glib (using $_glibconfig)"
++
++ _def_gui='#define HAVE_NEW_GUI 1'
++ _def_gtk2_gui='#undef HAVE_GTK2_GUI'
++ _ld_gui='$(GTKLIB) $(GLIBLIB)'
++
++ fi
+
+ echo "Creating Gui/config.mak"
+ cat > Gui/config.mak << EOF
+@@ -5586,6 +5618,7 @@
+
+ else
+ _def_gui='#undef HAVE_NEW_GUI'
++ _def_gtk2_gui='#undef HAVE_GTK2_GUI'
+ fi
+ # --------------- GUI specific tests end -------------------
+
+@@ -6217,6 +6250,7 @@
+
+ /* gui support, please do not edit this option */
+ $_def_gui
++$_def_gtk2_gui
+
+ /* Audio output drivers */
+ $_def_ossaudio
diff --git a/media-video/mplayer/mplayer-1.0_pre3.ebuild b/media-video/mplayer/mplayer-1.0_pre3.ebuild
new file mode 100644
index 000000000000..f2ee97863888
--- /dev/null
+++ b/media-video/mplayer/mplayer-1.0_pre3.ebuild
@@ -0,0 +1,439 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.0_pre3.ebuild,v 1.1 2003/12/12 07:37:03 seemant Exp $
+
+IUSE="dga oss xmms jpeg 3dfx sse matrox sdl X svga ggi oggvorbis 3dnow aalib gnome xv opengl truetype dvd gtk gif esd fbcon encode alsa directfb arts dvb gtk2 samba lirc matroska debug joystick"
+
+inherit eutils
+
+# NOTE to myself: Test this thing with and without dvd/gtk+ support,
+# as it seems the mplayer guys dont really care to
+# make it work without dvd support.
+
+# Handle PREversions as well
+MY_PV="${PV/_/}"
+S="${WORKDIR}/MPlayer-${MY_PV}"
+SRC_URI="http://mplayerhq.hu/MPlayer/releases/MPlayer-${MY_PV}.tar.bz2
+ http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2
+ http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-2.tar.bz2
+ svga? ( http://mplayerhq.hu/~alex/svgalib_helper-1.9.17-mplayer.tar.bz2 )
+ gtk? ( http://mplayerhq.hu/MPlayer/Skin/Blue-1.0.tar.bz2 )"
+# Only install Skin if GUI should be build (gtk as USE flag)
+DESCRIPTION="Media Player for Linux"
+HOMEPAGE="http://www.mplayerhq.hu/"
+
+# 'encode' in USE for MEncoder.
+RDEPEND="ppc? ( >=media-libs/xvid-0.9.0 )
+ amd64? ( >=media-libs/xvid-0.9.0 )
+ x86? ( >=media-libs/xvid-0.9.0
+ >=media-libs/divx4linux-20030428
+ >=media-libs/win32codecs-0.60 )
+ gtk? ( media-libs/libpng
+ >=x11-base/xfree-4.2.1-r2
+ !gtk2? ( =x11-libs/gtk+-1.2*
+ =dev-libs/glib-1.2* )
+ gtk2? ( >=x11-libs/gtk+-2.0.6
+ >=dev-libs/glib-2.0.6 )
+ )
+ jpeg? ( media-libs/jpeg )
+ gif? ( media-libs/giflib
+ media-libs/libungif )
+ truetype? ( >=media-libs/freetype-2.1 )
+ esd? ( media-sound/esound )
+ ggi? ( media-libs/libggi )
+ sdl? ( media-libs/libsdl )
+ alsa? ( media-libs/alsa-lib )
+ arts? ( kde-base/arts )
+ nas? ( media-libs/nas )
+ lirc? ( app-misc/lirc )
+ aalib? ( media-libs/aalib )
+ svga? ( media-libs/svgalib )
+ encode? ( media-sound/lame
+ >=media-libs/libdv-0.9.5 )
+ xmms? ( media-sound/xmms )
+ matroska? ( >=media-libs/libmatroska-0.5.0 )
+ opengl? ( virtual/opengl )
+ directfb? ( dev-libs/DirectFB )
+ oggvorbis? ( media-libs/libvorbis )
+ nls? ( sys-devel/gettext )
+ media-sound/cdparanoia
+ mpeg? ( media-libs/faad2 )
+ samba? ( >=net-fs/samba-2.2.8a )
+ >=sys-apps/portage-2.0.36"
+# dvd? ( media-libs/libdvdnav )
+# Hardcode paranoia support for now, as there is no
+# related USE flag.
+
+DEPEND="${RDEPEND}
+ x86? ( dev-lang/nasm )
+ app-arch/unzip"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~ppc ~sparc amd64"
+
+
+pkg_setup() {
+ echo
+ einfo "Please note that we do not use C[XX]FLAGS from /etc/make.conf"
+ einfo "or the environment, as the MPlayer guys then do not give support"
+ einfo "in case of bug reports!."
+ echo
+ echo -ne "\a" ; sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null
+ echo -ne "\a" ; sleep 1
+ echo -ne "\a" ; sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null
+ echo -ne "\a" ; sleep 1
+ sleep 3
+}
+
+src_unpack() {
+
+ unpack MPlayer-${MY_PV}.tar.bz2 \
+ font-arial-iso-8859-1.tar.bz2 font-arial-iso-8859-2.tar.bz2
+
+ use svga && unpack svgalib_helper-1.9.17-mplayer.tar.bz2
+
+ use gtk && unpack Blue-1.0.tar.bz2
+
+ # Use gtk-2.x
+ cd ${S}; epatch ${FILESDIR}/${PN}-1.0-gtk2.patch
+
+ # Fix head/tail call for new coreutils
+ cd ${S}; epatch ${FILESDIR}/${PN}-0.90-coreutils-fixup.patch
+
+ # Fix mencoder segfaulting with bad arguments
+ cd ${S}; epatch ${FILESDIR}/mencoder-segfault.patch
+
+
+ if [ "`use svga`" ]
+ then
+ echo
+ einfo "Enabling vidix non-root mode."
+ einfo "(You need a proper svgalib_helper.o module for your kernel"
+ einfo " to actually use this)"
+ echo
+
+ mv ${WORKDIR}/svgalib_helper ${S}/libdha
+ cd ${S}/libdha
+ sed -i -e "s/^#CFLAGS/CFLAGS/" Makefile
+ fi
+}
+
+src_compile() {
+
+ use matrox && check_KV
+
+ local myconf=
+
+ 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-gui --disable-x11 --disable-xv \
+ --disable-xmga --disable-png"
+
+ use jpeg \
+ || myconf="${myconf} --disable-jpeg"
+
+ use gif \
+ || myconf="${myconf} --disable-gif"
+
+ ( use matrox && use X ) \
+ && myconf="${myconf} --enable-xmga" \
+ || myconf="${myconf} --disable-xmga"
+
+ use gtk \
+ && myconf="${myconf} --enable-gui --enable-x11 \
+ --enable-xv --enable-vm --enable-png"
+
+ ( use gtk && use gtk2 ) \
+ && myconf="${myconf} --enable-gtk2"
+
+ use truetype \
+ && myconf="${myconf} --enable-freetype" \
+ || myconf="${myconf} --disable-freetype"
+
+ use aalib && myconf="${myconf} --enable-aa"
+
+ 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 esd \
+ || myconf="${myconf} --disable-esd"
+
+ use alsa \
+ || myconf="${myconf} --disable-alsa"
+
+ use arts \
+ || myconf="${myconf} --disable-arts"
+
+ use nas \
+ || myconf="${myconf} --disable-nas"
+
+ use oggvorbis \
+ || myconf="${myconf} --disable-vorbis"
+
+ use encode \
+ && myconf="${myconf} --enable-mencoder --enable-tv" \
+ || myconf="${myconf} --disable-mencoder"
+
+ use dvd \
+ && myconf="${myconf} --enable-mpdvdkit" \
+ || myconf="${myconf} --disable-mpdvdkit --disable-dvdread \
+ --disable-css"
+ # Disable dvdnav support as its not considered to be
+ # functional anyhow, and will be removed.
+
+ use xmms \
+ && myconf="${myconf} --enable-xmms"
+
+ use mpeg \
+ && myconf="${myconf} --enable-external-faad" \
+ || myconf="${myconf} --disable-external-faad"
+
+ use matrox \
+ && myconf="${myconf} --enable-mga" \
+ || myconf="${myconf} --disable-mga"
+
+ use 3dfx \
+ && myconf="${myconf} --enable-tdfxfb"
+ # --enable-3dfx is broken according to the MPlayer guys.
+
+ use dvb \
+ && myconf="${myconf} --enable-dvb" \
+ || myconf="${myconf} --disable-dvb --disable-dvbhead"
+
+ use nls \
+ && myconf="${myconf} --enable-i18n" \
+ || myconf="${myconf} --disable-i18n"
+
+ use samba \
+ && myconf="${myconf} --enable-smb" \
+ || myconf="${myconf} --disable-smb"
+
+ use lirc \
+ && myconf="${myconf} --enable-lirc" \
+ || myconf="${myconf} --disable-lirc"
+
+ use matroska \
+ && myconf="${myconf} --enable-matroska" \
+ || myconf="${myconf} --disable-matroska"
+
+ use debug \
+ && myconf="${myconf} --enable-debug"
+
+ use joystick \
+ && myconf="${myconf} --enable-joystick" \
+ || myconf="${myconf} --disable-joystick"
+
+ if [ -d /opt/RealPlayer9/Real/Codecs ]
+ then
+ einfo "Setting REALLIBDIR to /opt/RealPlayer9/Real/Codecs..."
+ REALLIBDIR="/opt/RealPlayer9/Real/Codecs"
+ elif [ -d /opt/RealPlayer8/Codecs ]
+ then
+ einfo "Setting REALLIBDIR to /opt/RealPlayer8/Codecs..."
+ REALLIBDIR="/opt/RealPlayer8/Codecs"
+ else
+ REALLIBDIR="/usr/lib/real"
+ fi
+
+ if has_version media-plugins/live
+ then
+ einfo "Enabling LIVE.COM Streaming Media..."
+ myconf="${myconf} --enable-live"
+ fi
+
+ if [ -e /dev/.devfsd ]
+ then
+ myconf="${myconf} --enable-linux-devfs"
+ fi
+
+ if has_version 'sys-devel/hardened-gcc' && [ "${CC}" = "gcc" ]
+ then
+ CC="${CC} -yet_exec"
+ fi
+
+ # 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
+ unset CFLAGS CXXFLAGS
+ ./configure --prefix=/usr \
+ --datadir=/usr/share/mplayer \
+ --confdir=/usr/share/mplayer \
+ --disable-runtime-cpudetection \
+ --enable-largefiles \
+ --enable-menu \
+ --enable-real \
+ --with-reallibdir=${REALLIBDIR} \
+ --with-x11incdir=/usr/X11R6/include \
+ ${myconf} || die
+ # Breaks with gcc-2.95.3, bug #14479:
+ # --enable-shared-pp \
+ # Enable untested and currently unused code:
+ # --enable-dynamic-plugins \
+
+ # emake borks on fast boxes - Azarah (07 Aug 2002)
+ einfo "Make"
+ make all || die "Failed to build MPlayer!"
+ einfo "Make completed"
+
+ # We build the shared libpostproc.so here so that our
+ # mplayer binary is not linked to it, ensuring that we
+ # do not run into issues ... (bug #14479)
+ cd ${S}/libavcodec/libpostproc
+ make SHARED_PP="yes" || die "Failed to build libpostproc.so!"
+
+ if [ -n "`use matrox`" ]
+ then
+ cd ${S}/drivers
+ make all || die "Failed to build matrox driver!"
+ fi
+}
+
+src_install() {
+
+ einfo "Make 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 "Failed to install MPlayer!"
+ einfo "Make install completed"
+
+ # Install our libpostproc.so ...
+ cd ${S}/libavcodec/libpostproc
+ make prefix=${D}/usr \
+ SHARED_PP="yes" \
+ install || die "Failed to install libpostproc.so!"
+ cd ${S}
+
+ dodoc AUTHORS ChangeLog README
+ # Install the documentation; DOCS is all mixed up not just html
+ find ${S}/DOCS -type d | xargs -- chmod 0755
+ cp -r ${S}/DOCS ${D}/usr/share/doc/${PF}/ || die
+
+ # Copy misc tools to documentation path, as they're not installed
+ # directly
+ find ${S}/TOOLS -type d | xargs -- chmod 0755
+ cp -r ${S}/TOOLS ${D}/usr/share/doc/${PF} || die
+
+ # Install the default Skin and Gnome menu entry
+ if [ -n "`use gtk`" ]
+ then
+ dodir /usr/share/mplayer/Skin
+ cp -r ${WORKDIR}/Blue ${D}/usr/share/mplayer/Skin/default || die
+
+ # Fix the symlink
+ rm -rf ${D}/usr/bin/gmplayer
+ dosym mplayer /usr/bin/gmplayer
+ fi
+
+ if [ -n "`use gnome`" ]
+ then
+ insinto /usr/share/pixmaps
+ newins ${S}/Gui/mplayer/pixmaps/logo.xpm mplayer.xpm
+ insinto /usr/share/gnome/apps/Multimedia
+ doins ${FILESDIR}/mplayer.desktop
+ fi
+
+ dodir /usr/share/mplayer/fonts
+ local x=
+ # Do this generic, as the mplayer people like to change the structure
+ # of their zips ...
+ for x in $(find ${WORKDIR}/ -type d -name 'font-arial-??-iso-*')
+ do
+ cp -Rd ${x} ${D}/usr/share/mplayer/fonts
+ done
+ # Fix the font symlink ...
+ rm -rf ${D}/usr/share/mplayer/font
+ dosym fonts/font-arial-14-iso-8859-1 /usr/share/mplayer/font
+
+ insinto /etc
+ newins ${S}/etc/example.conf mplayer.conf
+ dosed -e 's/include =/#include =/' /etc/mplayer.conf
+ dosed -e 's/fs=yes/fs=no/' /etc/mplayer.conf
+ dosym ../../../etc/mplayer.conf /usr/share/mplayer/mplayer.conf
+
+ insinto /usr/share/mplayer
+ doins ${S}/etc/codecs.conf
+ doins ${S}/etc/input.conf
+ doins ${S}/etc/menu.conf
+
+ if [ -n "`use matrox`" ]
+ then
+ check_KV
+ insinto /lib/modules/${KV}/kernel/drivers/char
+ doins ${S}/drivers/mga_vid.o
+ fi
+}
+
+pkg_preinst() {
+
+ if [ -d "${ROOT}/usr/share/mplayer/Skin/default" ]
+ then
+ rm -rf ${ROOT}/usr/share/mplayer/Skin/default
+ fi
+}
+
+pkg_postinst() {
+
+ if [ -n "`use ppc`" ]
+ then
+ echo
+ einfo "When you see only GREEN salad on your G4 while playing"
+ einfo "a DivX, you should recompile _without_ altivec enabled."
+ einfo "Furher information: http://bugs.gentoo.org/show_bug.cgi?id=18511"
+ echo
+ einfo "If everything functions fine with watching DivX and"
+ einfo "altivec enabled, please drop a comment on the mentioned bug!"
+ fi
+
+ depmod -a &>/dev/null || :
+}
+
+pkg_postrm() {
+
+ # Cleanup stale symlinks
+ if [ -L ${ROOT}/usr/share/mplayer/font -a \
+ ! -e ${ROOT}/usr/share/mplayer/font ]
+ then
+ rm -f ${ROOT}/usr/share/mplayer/font
+ fi
+
+ if [ -L ${ROOT}/usr/share/mplayer/subfont.ttf -a \
+ ! -e ${ROOT}/usr/share/mplayer/subfont.ttf ]
+ then
+ rm -f ${ROOT}/usr/share/mplayer/subfont.ttf
+ fi
+}
+