# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit games DESCRIPTION="an OpenGL car racing game, based on ID's famous Quake® engine" HOMEPAGE="http://miniracer.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" DEPEND="sys-apps/sed virtual/opengl media-libs/libsdl media-libs/sdl-mixer" src_unpack() { unpack ${A} cd ${S} sed -i \ -e "s:$(DESTDIR)/usr/bin:$(DESTDIR)${GAMES_BINDIR}:" Makefile || die "sed gamesbindir failed" sed -i \ -e "/INCLUDES/s:-I/usr/include/SDL:`sdl-config --cflags`:" Makefile || die "sed sdl-config failed" sed -i \ -e "/CFLAGS/s:-O3 -march=i486 -ffast-math -fexpensive-optimizations:${CFLAGS}:" Makefile || die "sed CFLAGS failed" sed -i \ -e "/LDFLAGS/s:-lSDL -lSDL_mixer -lpthread:`sdl-config --libs` -lSDL_mixer:" Makefile || die "sed LDFLAGS failed" } src_install() { make install DESTDIR="${D}" || die "egamesinstall failed" prepgamesdirs }