diff options
author | 2006-09-01 22:10:03 +0000 | |
---|---|---|
committer | 2006-09-01 22:10:03 +0000 | |
commit | a46a31903884b0e1e39da4cf18b67d6321acdf03 (patch) | |
tree | 448e9a0c0ee3f5402d48307c01eb505b956b8b5a /games-arcade/conveysdl/conveysdl-1.3.ebuild | |
parent | Added ~ppc64; bug #145893 (diff) | |
download | gentoo-2-a46a31903884b0e1e39da4cf18b67d6321acdf03.tar.gz gentoo-2-a46a31903884b0e1e39da4cf18b67d6321acdf03.tar.bz2 gentoo-2-a46a31903884b0e1e39da4cf18b67d6321acdf03.zip |
Version bump. Bug #128660
(Portage version: 2.1-r2)
Diffstat (limited to 'games-arcade/conveysdl/conveysdl-1.3.ebuild')
-rw-r--r-- | games-arcade/conveysdl/conveysdl-1.3.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/games-arcade/conveysdl/conveysdl-1.3.ebuild b/games-arcade/conveysdl/conveysdl-1.3.ebuild new file mode 100644 index 000000000000..e97df83bca93 --- /dev/null +++ b/games-arcade/conveysdl/conveysdl-1.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/conveysdl/conveysdl-1.3.ebuild,v 1.1 2006/09/01 22:10:03 tupone Exp $ + +inherit games + +DESCRIPTION="Guide the blob along the conveyer belt collecting the red blobs, if you miss any you go round again" +HOMEPAGE="http://www.cloudsprinter.com/software/conveysdl/" +SRC_URI="http://www.cloudsprinter.com/software/conveysdl/${P/-/.}.tar" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=media-libs/libsdl + >=media-libs/sdl-mixer" + +S=${WORKDIR}/${PN} + +src_unpack() { + mkdir "${S}" + cd "${S}" + unpack ${A} + + # Incomplete readme + sed -i \ + -e 's:I k:use -nosound to disable sound\n\nI k:' \ + readme || die "sed readme failed" + + sed -i \ + -e 's:SDL_Mi:SDL_mi:' \ + main.c || die "sed main.c failed" + mv main.c ${PN}.c +} + +src_compile() { + CFLAGS="${CFLAGS} `sdl-config --cflags`" + CFLAGS="${CFLAGS} -DDATA_PREFIX=\\\"${GAMES_DATADIR}/${PN}/\\\"" + CFLAGS="${CFLAGS} -DENABLE_SOUND" + emake "${PN}" LDLIBS="-lSDL_mixer `sdl-config --libs`" \ + || die "emake failed" +} + +src_install() { + dogamesbin "${PN}" || die "dogamesbin failed" + insinto "${GAMES_DATADIR}/${PN}" + doins -r gfx sounds levels || die "installing data failed" + dodoc readme || die "installing docs failed" + prepgamesdirs +} |