diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-08-25 17:36:52 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-08-25 17:36:52 +0000 |
commit | 1f1d3493b94d54ade40ce0ebb80e7887211a89d8 (patch) | |
tree | ae5e285dbc71bde80db42e4f3f964651a2e4685e /games-arcade | |
parent | whitespace (diff) | |
download | gentoo-2-1f1d3493b94d54ade40ce0ebb80e7887211a89d8.tar.gz gentoo-2-1f1d3493b94d54ade40ce0ebb80e7887211a89d8.tar.bz2 gentoo-2-1f1d3493b94d54ade40ce0ebb80e7887211a89d8.zip |
Initial commit - ebuild submitted by Santiago M. Mola via bug #143733
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/bloboats/ChangeLog | 10 | ||||
-rw-r--r-- | games-arcade/bloboats/bloboats-1.0.1.ebuild | 44 | ||||
-rw-r--r-- | games-arcade/bloboats/metadata.xml | 5 |
3 files changed, 59 insertions, 0 deletions
diff --git a/games-arcade/bloboats/ChangeLog b/games-arcade/bloboats/ChangeLog new file mode 100644 index 000000000000..47236c8de38a --- /dev/null +++ b/games-arcade/bloboats/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for games-arcade/bloboats +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/bloboats/ChangeLog,v 1.1 2010/08/25 17:36:52 mr_bones_ Exp $ + +*bloboats-1.0.1 (25 Aug 2010) + + 25 Aug 2010; Michael Sterrett <mr_bones_@gentoo.org> + +bloboats-1.0.1.ebuild, +metadata.xml: + Initial commit - ebuild submitted by Santiago M. Mola via bug #143733 + diff --git a/games-arcade/bloboats/bloboats-1.0.1.ebuild b/games-arcade/bloboats/bloboats-1.0.1.ebuild new file mode 100644 index 000000000000..6cffff41b223 --- /dev/null +++ b/games-arcade/bloboats/bloboats-1.0.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/bloboats/bloboats-1.0.1.ebuild,v 1.1 2010/08/25 17:36:52 mr_bones_ Exp $ + +EAPI=2 +inherit games + +DESCRIPTION="arcade-like boat racing game combining platform jumpers and elastomania / x-moto like games" +HOMEPAGE="http://bloboats.dy.fi/" +SRC_URI="http://mirror.kapsi.fi/bloboats.dy.fi/${P}.tar.gz" + +LICENSE="GPL-2 CCPL-Sampling-Plus-1.0" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="media-libs/libsdl[video] + media-libs/sdl-mixer[vorbis] + media-libs/sdl-image[png] + media-libs/sdl-net + media-libs/libvorbis" + +src_prepare() { + sed -i \ + -e "/PREFIX/s://:${D}:" \ + -e "/DATADIR/s:/usr/games/bloboats/data:${GAMES_DATADIR}/${PN}:" \ + -e "/BINARYDIR/s:/usr/bin:${GAMES_BINDIR}:" \ + -e "/CONFIGDIR/s:/etc:${GAMES_SYSCONFDIR}:" \ + -e "/CXXFLAGS_DEFAULT/s:-O2:${CXXFLAGS} \$(LDFLAGS):" \ + -e "/^CXX[ _]/d" \ + -e '/STRIP/d' \ + Makefile \ + || die 'sed Makefile failed' +} + +src_install() { + dogamesbin bin/bloboats || die + insinto "${GAMES_DATADIR}"/${PN} + doins -r data/* || die + insinto "$GAMES_SYSCONFDIR" + doins bloboats.dirs || die + dodoc readme.txt + prepgamesdirs +} diff --git a/games-arcade/bloboats/metadata.xml b/games-arcade/bloboats/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-arcade/bloboats/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +</pkgmetadata> |