diff options
author | 2012-04-23 12:16:18 +0700 | |
---|---|---|
committer | 2012-04-23 12:16:18 +0700 | |
commit | 46ab7862e6db414458e3670277b0aa79316a509e (patch) | |
tree | 00d4f7a8795f65049cf9926e02132c72d0b7c023 /games-engines/love/love-9999.ebuild | |
parent | fixed manifest, again :( (diff) | |
download | lua-46ab7862e6db414458e3670277b0aa79316a509e.tar.gz lua-46ab7862e6db414458e3670277b0aa79316a509e.tar.bz2 lua-46ab7862e6db414458e3670277b0aa79316a509e.zip |
bump!
(Portage version: 2.2.0_alpha100_p12/git/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-engines/love/love-9999.ebuild')
-rw-r--r-- | games-engines/love/love-9999.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/games-engines/love/love-9999.ebuild b/games-engines/love/love-9999.ebuild new file mode 100644 index 0000000..1028cfe --- /dev/null +++ b/games-engines/love/love-9999.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: This ebuild is from Lua overlay; Bumped by mva; $ + +EAPI="3" + +DESCRIPTION="An *awesome* framework you can use to make 2D games in Lua." +HOMEPAGE="http://love2d.org/" +if [[ ${PV} =~ "9999" ]]; then + SCM_ECLASS="mercurial" + EHG_REPO_URI="https://bitbucket.org/rude/love" + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://bitbucket.org/rude/love/downloads/${P}-linux-src.tar.gz" + KEYWORDS="~amd64 ~x86" +fi; + +inherit games eutils autotools ${SCM_ECLASS} + +LICENSE="ZLIB" +SLOT="0" +IUSE="luajit" + +RDEPEND="dev-games/physfs + dev-lang/lua + media-libs/devil[mng,tiff] + media-libs/freetype + media-libs/libmodplug + media-libs/libsdl[joystick,opengl] + media-libs/libvorbis + media-libs/openal + media-sound/mpg123 + virtual/opengl" +DEPEND="${RDEPEND} + media-libs/libmng + media-libs/tiff" + +DOCS=( "readme.md" "changes.txt" ) + +src_prepare() { + sh platform/unix/gen-makefile || die + mkdir platform/unix/m4 || die + eautoreconf +} + +src_configure() { + OPTS=() + use luajit && OPTS+=" --with-luajit" + OPTS+=" --disable-dependency-tracking --disable-option-checking" + econf ${OPTS} +} |