diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2001-07-31 04:06:55 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2001-07-31 04:06:55 +0000 |
commit | 29ca947b2908faf52a70fb318efa5b7e34b0f063 (patch) | |
tree | e300662b66e10b7cbbbe94a5b903bc91a5140bbc /media-video | |
parent | latest mplayer ebuild (diff) | |
download | historical-29ca947b2908faf52a70fb318efa5b7e34b0f063.tar.gz historical-29ca947b2908faf52a70fb318efa5b7e34b0f063.tar.bz2 historical-29ca947b2908faf52a70fb318efa5b7e34b0f063.zip |
old (slightly broken) mplayer ebuild removed
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mplayer/files/digest-mplayer-0.18_pre3 | 1 | ||||
-rw-r--r-- | media-video/mplayer/mplayer-0.18_pre3.ebuild | 80 |
2 files changed, 0 insertions, 81 deletions
diff --git a/media-video/mplayer/files/digest-mplayer-0.18_pre3 b/media-video/mplayer/files/digest-mplayer-0.18_pre3 deleted file mode 100644 index 8b5bb886cc40..000000000000 --- a/media-video/mplayer/files/digest-mplayer-0.18_pre3 +++ /dev/null @@ -1 +0,0 @@ -MD5 c123bfaaad51a429fa51aa2ac304d640 MPlayer-0.18pre3.tgz diff --git a/media-video/mplayer/mplayer-0.18_pre3.ebuild b/media-video/mplayer/mplayer-0.18_pre3.ebuild deleted file mode 100644 index 52e019ce22b2..000000000000 --- a/media-video/mplayer/mplayer-0.18_pre3.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Bruce A. Locke <blocke@shivan.org> - -MY_P="MPlayer-0.18pre3" -S=${WORKDIR}/${MY_P} -DESCRIPTION="Media Player for Linux" -SRC_URI="http://mplayerhq.banki.hu/MPlayer/releases/${MY_P}.tgz" -HOMEPAGE="http://mplayer.sourceforge.net" - -DEPEND="media-video/avifile" - -src_compile() { - - local myconf - local myprefix - echo /usr/X11R6 > ${T}/myprefix - - if [ -z "`use nls`" ] ; then - myconf="${myconf} --disable-nls" - fi - - if [ -z "`use opengl`" ] ; then - myconf="${myconf} --disable-gl" - fi - - if [ -z "`use sdl`" ] ; then - myconf="${myconf} --disable-sdl" - fi - - if [ -z "`use ggi`" ] ; then - myconf="${myconf} --disable-ggi" - fi - - if [ -z "`use mmx`" ] ; then - myconf="${myconf} --disable-mmx --disable-mmx2" - fi - - if [ -z "`use 3dnow`" ] ; then - myconf="${myconf} --disable-3dnow --disable-3dnowex" - fi - - if [ -z "`use sse`" ] ; then - myconf="${myconf} --disable-sse" - fi - - if [ -z "`use svga`" ] ; then - myconf="${myconf} --disable-svga" - fi - - if [ -z "`use X`" ] ; then - myconf="${myconf} --disable-x11 --disable-xv" - echo /usr > ${T}/myprefix - fi - - if [ -z "`use oss`" ] ; then - myconf="${myconf} --disable-ossaudio" - fi - - if [ -z "`use alsa`" ] ; then - myconf="${myconf} --disable-alsa" - fi - - if [ -z "`use esd`" ] ; then - myconf="${myconf} --disable-esd" - fi - - try ./configure --mandir=/usr/share/man --prefix=`cat ${T}/myprefix` --host=${CHOST} ${myconf} - - try make OPTFLAGS=\"${CFLAGS}\" all -} - -src_install() { - make prefix=${D}/`cat ${T}/myprefix` install - - rm ${S}/DOCS/*.1 - dodoc DOCS/* - -} - |