diff options
Diffstat (limited to 'games-puzzle/neverball/neverball-1.2.5.ebuild')
-rw-r--r-- | games-puzzle/neverball/neverball-1.2.5.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/games-puzzle/neverball/neverball-1.2.5.ebuild b/games-puzzle/neverball/neverball-1.2.5.ebuild deleted file mode 100644 index e18d5f40e2b4..000000000000 --- a/games-puzzle/neverball/neverball-1.2.5.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/neverball/neverball-1.2.5.ebuild,v 1.4 2004/06/24 23:08:01 agriffis Exp $ - -inherit eutils games - -DESCRIPTION="Clone of Super Monkey Ball using SDL/OpenGL" -HOMEPAGE="http://icculus.org/neverball/" -SRC_URI="http://icculus.org/neverball/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc amd64" -IUSE="" - -RDEPEND=">=media-libs/libsdl-1.2 - >=media-libs/sdl-mixer-1.2.5 - >=media-libs/sdl-image-1.2.2 - media-libs/sdl-ttf - virtual/opengl - virtual/glut" -DEPEND="${RDEPEND} - >=sys-apps/sed-4" - -src_unpack() { - unpack ${A} - cd ${S} - sed -i \ - -e '/CONFIG_PATH/s:"\./data":"'${GAMES_DATADIR}/${PN}'":g' \ - share/config.h \ - || die "sed config.h failed" - sed -i \ - -e 's:-Wall -O3:$(E_CFLAGS):' \ - Makefile \ - || die "sed Makefile failed" -} - -src_compile() { - emake E_CFLAGS="${CFLAGS}" || die "emake failed" -} - -src_install() { - dogamesbin neverball neverputt || die "dogamesbin failed" - newgamesbin mapc ${PN}-mapc || die "newgamesbin failed" - - rm -f data/Makefile* - dodir "${GAMES_DATADIR}/${PN}" - cp -R "${S}/data/"* "${D}/${GAMES_DATADIR}/${PN}/" || die - - dodoc CHANGES README - prepgamesdirs -} |