summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--media-libs/sdl-mixer/files/digest-sdl-mixer-1.2.41
-rw-r--r--media-libs/sdl-mixer/sdl-mixer-1.2.4.ebuild40
-rw-r--r--media-libs/smpeg/files/digest-smpeg-0.4.4-r31
-rw-r--r--media-libs/smpeg/smpeg-0.4.4-r3.ebuild65
4 files changed, 0 insertions, 107 deletions
diff --git a/media-libs/sdl-mixer/files/digest-sdl-mixer-1.2.4 b/media-libs/sdl-mixer/files/digest-sdl-mixer-1.2.4
deleted file mode 100644
index 6b2bbdcd4f12..000000000000
--- a/media-libs/sdl-mixer/files/digest-sdl-mixer-1.2.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 13935e2945cf8ecb7056e0d3e0e36509 SDL_mixer-1.2.4.tar.gz 955542
diff --git a/media-libs/sdl-mixer/sdl-mixer-1.2.4.ebuild b/media-libs/sdl-mixer/sdl-mixer-1.2.4.ebuild
deleted file mode 100644
index ec591469763e..000000000000
--- a/media-libs/sdl-mixer/sdl-mixer-1.2.4.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.4.ebuild,v 1.12 2003/09/06 23:59:48 msterret Exp $
-
-IUSE="mpeg mikmod oggvorbis"
-
-MY_P="${P/sdl-/SDL_}"
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="Simple Direct Media Layer Mixer Library"
-SRC_URI="http://www.libsdl.org/projects/SDL_mixer/release/${MY_P}.tar.gz"
-HOMEPAGE="http://www.libsdl.org/projects/SDL_mixer/index.html"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ppc sparc alpha"
-
-DEPEND=">=media-libs/libsdl-1.2.4
- >=media-libs/smpeg-0.4.4-r1
- mikmod? ( >=media-libs/libmikmod-3.1.10 )
- oggvorbis? ( >=media-libs/libvorbis-1.0_beta4 )"
-
-
-src_compile() {
-
- local myconf
-
- use mikmod || myconf="${myconf} --disable-mod"
- use mpeg || myconf="${myconf} --disable-music-mp3"
- use oggvorbis || myconf="${myconf} --disable-music-ogg"
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
-
- make DESTDIR=${D} install || die
-
- dodoc CHANGES COPYING README
-}
diff --git a/media-libs/smpeg/files/digest-smpeg-0.4.4-r3 b/media-libs/smpeg/files/digest-smpeg-0.4.4-r3
deleted file mode 100644
index 9aa5597db6c8..000000000000
--- a/media-libs/smpeg/files/digest-smpeg-0.4.4-r3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 59c76ac704088ef5539210190c4e1fe3 smpeg-0.4.4.tar.gz 315054
diff --git a/media-libs/smpeg/smpeg-0.4.4-r3.ebuild b/media-libs/smpeg/smpeg-0.4.4-r3.ebuild
deleted file mode 100644
index d62dffe14399..000000000000
--- a/media-libs/smpeg/smpeg-0.4.4-r3.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r3.ebuild,v 1.9 2003/09/06 23:59:49 msterret Exp $
-
-IUSE="X gtk opengl"
-
-S=${WORKDIR}/${P}
-DESCRIPTION="SDL MPEG Player Library"
-SRC_URI="ftp://ftp.lokigames.com/pub/open-source/smpeg/${P}.tar.gz"
-HOMEPAGE="http://www.lokigames.com/development/smpeg.php3"
-
-SLOT="0"
-LICENSE="LGPL-2"
-KEYWORDS="x86 sparc "
-
-DEPEND=">=media-libs/libsdl-1.2.0
- opengl? ( virtual/opengl virtual/glu )
- gtk? ( =x11-libs/gtk+-1.2* )"
-
-src_unpack() {
-
- unpack ${P}.tar.gz
-
- ## GCC 3.1 fix from bug #5558 (cardoe 08/03/02)
- cd ${S}
- if [ `gcc -dumpversion | cut -d"." -f1` == "3" ] ; then
- patch -p1 < ${FILESDIR}/${P}-gcc-3.1.patch || die
- fi
-
-}
-
-
-src_compile() {
-
- local myconf
-# --enable-mmx causes test apps to crash on startup .. smpeg bug?
-# bugzilla bug #470 -- azarah (03/02/2002)
-# if [ "`use mmx`" ] ; then
-# myconf="--enable-mmx"
-# fi
- if [ -z "`use gtk`" ] ; then
- myconf="${myconf} --disable-gtk-player"
- fi
- if [ -z "`use X`" ] ; then
- myconf="${myconf} --disable-gtk-player --without-x"
- fi
- if [ -z "`use opengl`" ] ; then
- myconf="${myconf} --disable-opengl-player"
- fi
-
- ./configure --prefix=/usr \
- --mandir=/usr/share/man \
- --host=${CHOST} \
- ${myconf} || die
-
- emake || die
-}
-
-src_install () {
-
- make DESTDIR=${D} install || die
-
- dodoc CHANGES COPYING README* TODO
-}
-