diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-17 11:48:33 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-17 11:48:33 +0000 |
commit | 715fbb51500f92a1aa0b617f76d56a13d0e61f1c (patch) | |
tree | b9520169325ce895b5264d9a890ac4b62ee57c34 | |
parent | mplayer is now fetching a weekly snapshot (diff) | |
download | historical-715fbb51500f92a1aa0b617f76d56a13d0e61f1c.tar.gz historical-715fbb51500f92a1aa0b617f76d56a13d0e61f1c.tar.bz2 historical-715fbb51500f92a1aa0b617f76d56a13d0e61f1c.zip |
Version bump
-rw-r--r-- | media-libs/libsdl/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/libsdl/files/digest-libsdl-1.2.4 | 1 | ||||
-rw-r--r-- | media-libs/libsdl/libsdl-1.2.4.ebuild | 95 |
3 files changed, 103 insertions, 1 deletions
diff --git a/media-libs/libsdl/ChangeLog b/media-libs/libsdl/ChangeLog index fa0fd27cfcd1..577bcd26ce57 100644 --- a/media-libs/libsdl/ChangeLog +++ b/media-libs/libsdl/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/libsdl # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/ChangeLog,v 1.3 2002/03/21 16:33:20 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/ChangeLog,v 1.4 2002/04/17 11:48:33 seemant Exp $ + +*libsdl-1.2.4 (17 Apr 2002) + + 17 Apr 2002; Seemant Kulleen <seemant@gentoo.org> libsdl-1.2.4.ebuild : + + Version bump submitted by pete@shinners.org (Pete Shinners)in bug #1866 *libsdl-1.2.3-r1 (21 Mar 2002) diff --git a/media-libs/libsdl/files/digest-libsdl-1.2.4 b/media-libs/libsdl/files/digest-libsdl-1.2.4 new file mode 100644 index 000000000000..d7cf1782b39d --- /dev/null +++ b/media-libs/libsdl/files/digest-libsdl-1.2.4 @@ -0,0 +1 @@ +MD5 116c083aad99faae691c6ca8dcdf406d SDL-1.2.4.tar.gz 1806163 diff --git a/media-libs/libsdl/libsdl-1.2.4.ebuild b/media-libs/libsdl/libsdl-1.2.4.ebuild new file mode 100644 index 000000000000..4f8d19d70af0 --- /dev/null +++ b/media-libs/libsdl/libsdl-1.2.4.ebuild @@ -0,0 +1,95 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Seemant Kulleen <seemant@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/libsdl-1.2.4.ebuild,v 1.1 2002/04/17 11:48:33 seemant Exp $ + +S=${WORKDIR}/SDL-${PV} +DESCRIPTION="Simple Direct Media Layer" +SRC_URI="http://www.libsdl.org/release/SDL-${PV}.tar.gz" +HOMEPAGE="http://www.libsdl.org/" + +RDEPEND=">=media-libs/audiofile-0.1.9 + X? ( virtual/x11 ) + esd? ( >=media-sound/esound-0.2.19 ) + ggi? ( >=media-libs/libggi-2.0_beta3 ) + nas? ( media-libs/nas ) + alsa? ( media-libs/alsa-lib ) + arts? ( >=kde-base/kdelibs-2.0.1 ) + svga? ( >=media-libs/svgalib-1.4.2 ) + opengl? ( virtual/opengl ) + directfb? ( >=dev-libs/DirectFB-0.9.7 )" + +DEPEND="${RDEPEND} + dev-lang/nasm-0.98" + + +src_compile() { + local myconf + + use X \ + && myconf="${myconf} --enable-video-x11" \ + || myconf="${myconf} --disable-video-x11" + + use xv \ + && myconf="${myconf} --enable-video-x11-xv" \ + || myconf="${myconf} --disable-video-x11-xv" + + use esd \ + && myconf="--enable-esd" \ + || myconf="--disable-esd" + + use ggi \ + && myconf="${myconf} --enable-video-ggi" \ + || myconf="${myconf} --disable-video-ggi" + + use nas \ + && myconf="${myconf} --enable-nas" \ + || myconf="${myconf} --disable-nas" + + use alsa \ + && myconf="${myconf} --enable-alsa" \ + || myconf="${myconf} --disable-alsa" + + use arts \ + && myconf="${myconf} --enable-arts" \ + || myconf="${myconf} --disable-arts" + + use svga \ + && myconf="${myconf} --enable-video-svga" \ + || myconf="${myconf} --disable-video-svga" + + use aalib \ + && myconf="${myconf} --enable-video-aalib" \ + || myconf="${myconf} --disable-video-aalib" + + use fbcon \ + && myconf="${myconf} --enable-video-fbcon" \ + || myconf="${myconf} --disable-video-fbcon" + + use opengl \ + && myconf="${myconf} --disable-video-opengl" \ + || myconf="${myconf} --enable-video-opengl" + + use directfb \ + && myconf="${myconf} --enable-video-directfb" \ + || myconf="${myconf} --disable-video-directfb" + + ./configure \ + --host=${CHOST} \ + --enable-input-events \ + --prefix=/usr \ + --mandir=/usr/share/man \ + ${myconf} || die + + emake || die +} + +src_install() { + make \ + DESTDIR=${D} \ + install || die + + preplib /usr + dodoc BUGS COPYING CREDITS README* TODO WhatsNew + dohtml -r ./ +} |