Can anyone help me figure out why this is happening?
What else might I need to do to get this ebuild ready to submit to the bugtracker for potential inclusion in the full tree?
On another note, I'm considering making a live ebuild to pull the source from git if I can get that figured out
Code: Select all
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils games
DESCRIPTION="Gravit is a free, visually stunning gravity simulator, where you can spend endless time experimenting with various configurations of simulated universes."
HOMEPAGE="http://gravit.slowchop.com/"
SRC_URI="http://gravit.slowchop.com/media/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="lua png"
REDEPEND=">=media-libs/libsdl-1.2.6
media-libs/sdl-image
media-libs/sdl-ttf
virtual/opengl
virtual/glu
lua? ( >=dev-lang/lua-5.1 )
png? ( media-libs/libpng )"
DEPEND="${RDEPEND}"
pkg_setup() {
games_pkg_setup
}
src_compile() {
egamesconf \
$(use_enable lua) \
$(use_enable png)
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog COPYING NEWS README || die
prepgamesdirs
}


