diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-09 02:10:54 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-09 02:10:54 +0000 |
commit | 3b85f6dfe5c5a53951d993f35d74fe88597ee623 (patch) | |
tree | b0ddc2a1d67e12d8db8eeca758d016248d77d1a8 /media-libs/libsdl | |
parent | Some cleanup (diff) | |
download | gentoo-2-3b85f6dfe5c5a53951d993f35d74fe88597ee623.tar.gz gentoo-2-3b85f6dfe5c5a53951d993f35d74fe88597ee623.tar.bz2 gentoo-2-3b85f6dfe5c5a53951d993f35d74fe88597ee623.zip |
*** empty log message ***
Diffstat (limited to 'media-libs/libsdl')
-rw-r--r-- | media-libs/libsdl/files/digest-libsdl-1.1.8-r1 | 1 | ||||
-rw-r--r-- | media-libs/libsdl/libsdl-1.1.8-r1.ebuild | 91 |
2 files changed, 0 insertions, 92 deletions
diff --git a/media-libs/libsdl/files/digest-libsdl-1.1.8-r1 b/media-libs/libsdl/files/digest-libsdl-1.1.8-r1 deleted file mode 100644 index e493356fc892..000000000000 --- a/media-libs/libsdl/files/digest-libsdl-1.1.8-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 af977736c789185456faab535f1c6fac SDL-1.1.8.tar.gz diff --git a/media-libs/libsdl/libsdl-1.1.8-r1.ebuild b/media-libs/libsdl/libsdl-1.1.8-r1.ebuild deleted file mode 100644 index 4447549f8c37..000000000000 --- a/media-libs/libsdl/libsdl-1.1.8-r1.ebuild +++ /dev/null @@ -1,91 +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.1.8-r1.ebuild,v 1.5 2001/04/30 14:50:18 achim 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-sound/nas ) - ggi? ( >=medlia-libs/libggi-2.0_beta3 )" - -src_compile() { - - local myconf - - if [ -z "`use esd`" ] - then - myconf="--disable-esd" - fi - - if [ -z "`use arts`" ] - then - myconf="${myconf} --disable-arts" - fi - - if [ -z "`use nas`" ] - then - myconf="${myconf} --disable-nas" - fi - - if [ -z "`use X`" ] - then - myconf="${myconf} --disable-video-x11" - fi - if [ "`use svga`" ] - then - myconf="${myconf} --enable-video-svga" - fi - if [ -z "`use fbcon`" ] - then - myconf="${myconf} --disable-video-fbcon" - fi - if [ "`use aalib`" ] - then - myconf="${myconf} --enable-video-aalib" - fi - if [ "`use ggi`" ] - then - myconf="${myconf} --enable-video-ggi" - fi - if [ -z "`use opengl`" ] - then - myconf="${myconf} --disable-video-opengl" - 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 - -} -pkg_postinst() { - - ldconfig -r ${ROOT} - -} - - - |