summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/esdl/esdl-0.93.0909.ebuild')
-rw-r--r--media-libs/esdl/esdl-0.93.0909.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/media-libs/esdl/esdl-0.93.0909.ebuild b/media-libs/esdl/esdl-0.93.0909.ebuild
deleted file mode 100644
index eb5d395b868e..000000000000
--- a/media-libs/esdl/esdl-0.93.0909.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/esdl/esdl-0.93.0909.ebuild,v 1.3 2004/03/19 07:56:03 mr_bones_ Exp $
-
-inherit fixheadtails
-
-IUSE=""
-
-DESCRIPTION="Erlang bindings for the SDL library"
-SRC_URI="mirror://sourceforge/esdl/${P}.src.tar.gz"
-HOMEPAGE="http://esdl.sourceforge.net/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~x86 ~ppc"
-
-DEPEND=">=dev-lang/erlang-9b
- >=media-libs/libsdl-1.2.4"
-
-src_compile() {
- ht_fix_all
- cp c_src/Makefile{,.orig}
- sed -e "/^CFLAGS.*/s:\\\\$: ${CFLAGS} \\\\:" \
- c_src/Makefile.orig > c_src/Makefile
- make || die
-}
-
-src_install() {
- ERLANG_DIR="/usr/lib/erlang/lib/"
- ESDL_DIR="${ERLANG_DIR}/${P}"
- dodir ${ESDL_DIR}
-
- make install INSTALLDIR=${D}/${ESDL_DIR} || die
- cp include/* ${D}/${ESDL_DIR}/include/ || die
- dosym ${ESDL_DIR} ${ERLANG_DIR}/${PN}
- dodoc Readme license.terms
- mv ${D}/${ESDL_DIR}/doc/ ${D}/usr/share/doc/${PF}/html/
-}