blob: e831ffb801a31db3f43a4265b5f27643d2e665c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/esdl/esdl-0.96.0626.ebuild,v 1.6 2008/09/19 21:36:48 maekke Exp $
inherit fixheadtails multilib eutils
DESCRIPTION="Erlang bindings for the SDL library"
HOMEPAGE="http://esdl.sourceforge.net/"
SRC_URI="mirror://sourceforge/esdl/${P}.src.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ppc ~ppc64 x86"
IUSE=""
DEPEND=">=dev-lang/erlang-9b
>=media-libs/libsdl-1.2.5"
pkg_setup() {
if ! built_with_use media-libs/libsdl opengl ; then
eerror "media-libs/libsdl needs to be built with USE=\"opengl\""
die "emerge media-libs/libsdl with USE=\"opengl\""
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i "/CFLAGS.*=/s:-g -O2 -funroll-loops -Wall -ffast-math:${CFLAGS}:" c_src/Makefile
ht_fix_file Makefile c_src/Makefile
}
src_compile() {
emake || die
}
src_install() {
addpredict /usr/$(get_libdir)/erlang/lib
ERLANG_DIR="/usr/$(get_libdir)/erlang/lib"
ESDL_DIR="${ERLANG_DIR}/${P}"
dodir ${ESDL_DIR}
make install INSTALLDIR="${D}"/${ESDL_DIR} || die "make install"
}
|