diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-19 20:55:40 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-19 20:55:40 +0000 |
commit | d857bbe4d9fe4a22bc4a18b1f45af3104b8e293d (patch) | |
tree | 829dc800c7ce2fcd0293404d7405bedd7f5d9af2 /media-libs | |
parent | opengl fix by phoen][x (diff) | |
download | gentoo-2-d857bbe4d9fe4a22bc4a18b1f45af3104b8e293d.tar.gz gentoo-2-d857bbe4d9fe4a22bc4a18b1f45af3104b8e293d.tar.bz2 gentoo-2-d857bbe4d9fe4a22bc4a18b1f45af3104b8e293d.zip |
removed older ebuilds
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libsdl/files/digest-libsdl-1.2.0 | 1 | ||||
-rw-r--r-- | media-libs/libsdl/files/digest-libsdl-1.2.1 | 1 | ||||
-rw-r--r-- | media-libs/libsdl/files/digest-libsdl-1.2.2 | 1 | ||||
-rw-r--r-- | media-libs/libsdl/libsdl-1.2.0.ebuild | 119 | ||||
-rw-r--r-- | media-libs/libsdl/libsdl-1.2.1.ebuild | 119 | ||||
-rw-r--r-- | media-libs/libsdl/libsdl-1.2.2.ebuild | 119 |
6 files changed, 0 insertions, 360 deletions
diff --git a/media-libs/libsdl/files/digest-libsdl-1.2.0 b/media-libs/libsdl/files/digest-libsdl-1.2.0 deleted file mode 100644 index 96aee744ef68..000000000000 --- a/media-libs/libsdl/files/digest-libsdl-1.2.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 20419c09eed9c3a64ec5fb39e0cb924c SDL-1.2.0.tar.gz 1375872 diff --git a/media-libs/libsdl/files/digest-libsdl-1.2.1 b/media-libs/libsdl/files/digest-libsdl-1.2.1 deleted file mode 100644 index 5aeceedcfb52..000000000000 --- a/media-libs/libsdl/files/digest-libsdl-1.2.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 72c9058de7a9277693585660cc1876ae SDL-1.2.1.tar.gz 1478755 diff --git a/media-libs/libsdl/files/digest-libsdl-1.2.2 b/media-libs/libsdl/files/digest-libsdl-1.2.2 deleted file mode 100644 index 7be464679682..000000000000 --- a/media-libs/libsdl/files/digest-libsdl-1.2.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 d27e0cd39388e2ff927823577f6c935f SDL-1.2.2.tar.gz 1491276 diff --git a/media-libs/libsdl/libsdl-1.2.0.ebuild b/media-libs/libsdl/libsdl-1.2.0.ebuild deleted file mode 100644 index 687eeb2f9aa3..000000000000 --- a/media-libs/libsdl/libsdl-1.2.0.ebuild +++ /dev/null @@ -1,119 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/libsdl-1.2.0.ebuild,v 1.5 2001/11/17 11:28:28 danarmak Exp $ - -A=SDL-${PV}.tar.gz -S=${WORKDIR}/SDL-${PV} -DESCRIPTION="Simple Direct Media Layer" -SRC_URI="http://www.libsdl.org/release/${A}" -HOMEPAGE="http://www.libsdl.org/" - -DEPEND="virtual/glibc - >=dev-lang/nasm-0.98 - >=media-libs/audiofile-0.1.9 - opengl? ( virtual/opengl ) - svga? ( >=media-libs/svgalib-1.4.2 ) - esd? ( >=media-sound/esound-0.2.19 ) - X? ( virtual/x11 ) - arts? ( >=kde-base/kdelibs-2.0.1 ) - nas? ( media-libs/nas ) - ggi? ( >=media-libs/libggi-2.0_beta3 ) - alsa? ( media-libs/alsa-lib )" - -RDEPEND="virtual/glibc - >=media-libs/audiofile-0.1.9 - opengl? ( virtual/opengl ) - svga? ( >=media-libs/svgalib-1.4.2 ) - esd? ( >=media-sound/esound-0.2.19 ) - X? ( virtual/x11 ) - arts? ( >=kde-base/kdelibs-2.0.1 ) - nas? ( media-libs/nas ) - ggi? ( >=media-libs/libggi-2.0_beta3 ) - alsa? ( media-libs/alsa-lib )" - -src_compile() { - - local myconf - - if [ -z "`use esd`" ] - then - myconf="--disable-esd" - else - myconf="--enable-esd" - fi - - if [ -z "`use arts`" ] - then - myconf="${myconf} --disable-arts" - else - myconf="${myconf} --enable-arts" - fi - - if [ -z "`use nas`" ] - then - myconf="${myconf} --disable-nas" - else - myconf="${myconf} --enable-nas" - fi - - if [ -z "`use X`" ] - then - myconf="${myconf} --disable-video-x11" - else - myconf="${myconf} --enable-video-x11" - fi - if [ "`use svga`" ] - then - myconf="${myconf} --enable-video-svga" - else - myconf="${myconf} --disable-video-svga" - fi - if [ -z "`use fbcon`" ] - then - myconf="${myconf} --disable-video-fbcon" - else - myconf="${myconf} --enable-video-fbcon" - fi - if [ "`use aalib`" ] - then - myconf="${myconf} --enable-video-aalib" - else - myconf="${myconf} --disable-video-aalib" - fi - if [ "`use ggi`" ] - then - myconf="${myconf} --enable-video-ggi" - else - myconf="${myconf} --disable-video-ggi" - fi - if [ -z "`use opengl`" ] - then - myconf="${myconf} --disable-video-opengl" - else - myconf="${myconf} --enable-video-opengl" - fi - if [ -n "`use alsa`" ] - then - myconf="${myconf} --enable-alsa" - else - myconf="${myconf} --disable-alsa" - fi - - try ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man ${myconf} - - try make - -} - -src_install() { - cd ${S} - try make DESTDIR=${D} install - preplib /usr - dodoc BUGS COPYING CREDITS README* TODO WhatsNew - docinto html - dodoc *.html - docinto html/docs - dodoc docs/*.html - -} diff --git a/media-libs/libsdl/libsdl-1.2.1.ebuild b/media-libs/libsdl/libsdl-1.2.1.ebuild deleted file mode 100644 index f74686f93cf2..000000000000 --- a/media-libs/libsdl/libsdl-1.2.1.ebuild +++ /dev/null @@ -1,119 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/libsdl-1.2.1.ebuild,v 1.3 2001/11/17 11:28:28 danarmak Exp $ - -A=SDL-${PV}.tar.gz -S=${WORKDIR}/SDL-${PV} -DESCRIPTION="Simple Direct Media Layer" -SRC_URI="http://www.libsdl.org/release/${A}" -HOMEPAGE="http://www.libsdl.org/" - -DEPEND="virtual/glibc - >=dev-lang/nasm-0.98 - >=media-libs/audiofile-0.1.9 - opengl? ( virtual/opengl ) - svga? ( >=media-libs/svgalib-1.4.2 ) - esd? ( >=media-sound/esound-0.2.19 ) - X? ( virtual/x11 ) - arts? ( >=kde-base/kdelibs-2.0.1 ) - nas? ( media-libs/nas ) - ggi? ( >=media-libs/libggi-2.0_beta3 ) - alsa? ( media-libs/alsa-lib )" - -RDEPEND="virtual/glibc - >=media-libs/audiofile-0.1.9 - opengl? ( virtual/opengl ) - svga? ( >=media-libs/svgalib-1.4.2 ) - esd? ( >=media-sound/esound-0.2.19 ) - X? ( virtual/x11 ) - arts? ( >=kde-base/kdelibs-2.0.1 ) - nas? ( media-libs/nas ) - ggi? ( >=media-libs/libggi-2.0_beta3 ) - alsa? ( media-libs/alsa-lib )" - -src_compile() { - - local myconf - - if [ -z "`use esd`" ] - then - myconf="--disable-esd" - else - myconf="--enable-esd" - fi - - if [ -z "`use arts`" ] - then - myconf="${myconf} --disable-arts" - else - myconf="${myconf} --enable-arts" - fi - - if [ -z "`use nas`" ] - then - myconf="${myconf} --disable-nas" - else - myconf="${myconf} --enable-nas" - fi - - if [ -z "`use X`" ] - then - myconf="${myconf} --disable-video-x11" - else - myconf="${myconf} --enable-video-x11" - fi - if [ "`use svga`" ] - then - myconf="${myconf} --enable-video-svga" - else - myconf="${myconf} --disable-video-svga" - fi - if [ -z "`use fbcon`" ] - then - myconf="${myconf} --disable-video-fbcon" - else - myconf="${myconf} --enable-video-fbcon" - fi - if [ "`use aalib`" ] - then - myconf="${myconf} --enable-video-aalib" - else - myconf="${myconf} --disable-video-aalib" - fi - if [ "`use ggi`" ] - then - myconf="${myconf} --enable-video-ggi" - else - myconf="${myconf} --disable-video-ggi" - fi - if [ -z "`use opengl`" ] - then - myconf="${myconf} --disable-video-opengl" - else - myconf="${myconf} --enable-video-opengl" - fi - if [ -n "`use alsa`" ] - then - myconf="${myconf} --enable-alsa" - else - myconf="${myconf} --disable-alsa" - fi - - try ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man ${myconf} - - try make - -} - -src_install() { - cd ${S} - try make DESTDIR=${D} install - preplib /usr - dodoc BUGS COPYING CREDITS README* TODO WhatsNew - docinto html - dodoc *.html - docinto html/docs - dodoc docs/*.html - -} diff --git a/media-libs/libsdl/libsdl-1.2.2.ebuild b/media-libs/libsdl/libsdl-1.2.2.ebuild deleted file mode 100644 index 8f47d9369be1..000000000000 --- a/media-libs/libsdl/libsdl-1.2.2.ebuild +++ /dev/null @@ -1,119 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/libsdl-1.2.2.ebuild,v 1.2 2001/11/17 11:28:28 danarmak Exp $ - -A=SDL-${PV}.tar.gz -S=${WORKDIR}/SDL-${PV} -DESCRIPTION="Simple Direct Media Layer" -SRC_URI="http://www.libsdl.org/release/${A}" -HOMEPAGE="http://www.libsdl.org/" - -DEPEND="virtual/glibc - >=dev-lang/nasm-0.98 - >=media-libs/audiofile-0.1.9 - opengl? ( virtual/opengl ) - svga? ( >=media-libs/svgalib-1.4.2 ) - esd? ( >=media-sound/esound-0.2.19 ) - X? ( virtual/x11 ) - arts? ( >=kde-base/kdelibs-2.0.1 ) - nas? ( media-libs/nas ) - ggi? ( >=media-libs/libggi-2.0_beta3 ) - alsa? ( media-libs/alsa-lib )" - -RDEPEND="virtual/glibc - >=media-libs/audiofile-0.1.9 - opengl? ( virtual/opengl ) - svga? ( >=media-libs/svgalib-1.4.2 ) - esd? ( >=media-sound/esound-0.2.19 ) - X? ( virtual/x11 ) - arts? ( >=kde-base/kdelibs-2.0.1 ) - nas? ( media-libs/nas ) - ggi? ( >=media-libs/libggi-2.0_beta3 ) - alsa? ( media-libs/alsa-lib )" - -src_compile() { - - local myconf - - if [ -z "`use esd`" ] - then - myconf="--disable-esd" - else - myconf="--enable-esd" - fi - - if [ -z "`use arts`" ] - then - myconf="${myconf} --disable-arts" - else - myconf="${myconf} --enable-arts" - fi - - if [ -z "`use nas`" ] - then - myconf="${myconf} --disable-nas" - else - myconf="${myconf} --enable-nas" - fi - - if [ -z "`use X`" ] - then - myconf="${myconf} --disable-video-x11" - else - myconf="${myconf} --enable-video-x11" - fi - if [ "`use svga`" ] - then - myconf="${myconf} --enable-video-svga" - else - myconf="${myconf} --disable-video-svga" - fi - if [ -z "`use fbcon`" ] - then - myconf="${myconf} --disable-video-fbcon" - else - myconf="${myconf} --enable-video-fbcon" - fi - if [ "`use aalib`" ] - then - myconf="${myconf} --enable-video-aalib" - else - myconf="${myconf} --disable-video-aalib" - fi - if [ "`use ggi`" ] - then - myconf="${myconf} --enable-video-ggi" - else - myconf="${myconf} --disable-video-ggi" - fi - if [ -z "`use opengl`" ] - then - myconf="${myconf} --disable-video-opengl" - else - myconf="${myconf} --enable-video-opengl" - fi - if [ -n "`use alsa`" ] - then - myconf="${myconf} --enable-alsa" - else - myconf="${myconf} --disable-alsa" - fi - - try ./configure --host=${CHOST} --enable-input-events --prefix=/usr --mandir=/usr/share/man ${myconf} - - try make - -} - -src_install() { - cd ${S} - try make DESTDIR=${D} install - preplib /usr - dodoc BUGS COPYING CREDITS README* TODO WhatsNew - docinto html - dodoc *.html - docinto html/docs - dodoc docs/*.html - -} |