summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/libsdl/libsdl-1.1.6.ebuild')
-rw-r--r--media-libs/libsdl/libsdl-1.1.6.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/media-libs/libsdl/libsdl-1.1.6.ebuild b/media-libs/libsdl/libsdl-1.1.6.ebuild
deleted file mode 100644
index 00d084464eca..000000000000
--- a/media-libs/libsdl/libsdl-1.1.6.ebuild
+++ /dev/null
@@ -1,48 +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.6.ebuild,v 1.3 2001/04/23 19:59:34 drobbins 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=">=sys-apps/bash-2.04
- >=sys-libs/glibc-2.1.3
- >=dev-lang/nasm-0.98
- >=media-libs/alsa-lib-0.5.9
- >=media-libs/audiofile-0.1.9
- >=media-sound/esound-0.2.19
- virtual/x11"
-
-src_unpack() {
- unpack ${A}
-}
-
-src_compile() {
- cd ${S}
- try ./configure --host=${CHOST} --prefix=/usr
- 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}
-
-}
-
-
-