diff options
Diffstat (limited to 'games-sports/toycars/toycars-0.3.10.ebuild')
-rw-r--r-- | games-sports/toycars/toycars-0.3.10.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/games-sports/toycars/toycars-0.3.10.ebuild b/games-sports/toycars/toycars-0.3.10.ebuild new file mode 100644 index 000000000000..c0a9ae00d0e8 --- /dev/null +++ b/games-sports/toycars/toycars-0.3.10.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils flag-o-matic games + +DESCRIPTION="a physics based 2-D racer inspired by Micro Machines" +HOMEPAGE="http://sourceforge.net/projects/toycars" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +DEPEND="media-libs/libsdl[sound,video,joystick] + media-libs/sdl-image[png] + x11-libs/fltk:1[opengl] + >=media-libs/fmod-4.25.07-r1:1 + virtual/glu + virtual/opengl" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch \ + "${FILESDIR}"/${P}-glibc-2.10.patch \ + "${FILESDIR}"/${P}-gcc45.patch \ + "${FILESDIR}"/${P}-gcc46.patch + mv data/tracks/Corner/{c,C}orner.map +} + +src_configure() { + append-ldflags -L/opt/fmodex/api/lib + egamesconf +} + +src_install() { + default + local d f + + newicon toycars/celica-render.png ${PN}.png + make_desktop_entry ${PN} "Toy Cars" + + for d in toycars toycars_track_editor toycars_vehicle_editor + do + for f in ChangeLog README TODO + do + if [[ -s $d/$f ]] ; then + newdoc $d/$f $d.$f + fi + done + done + prepgamesdirs +} |