diff options
author | 2005-08-19 01:16:17 +0000 | |
---|---|---|
committer | 2005-08-19 01:16:17 +0000 | |
commit | 26b3219b00ff79bd06d50b8f80709bb9107ad93f (patch) | |
tree | aa0161c13110d1df6b4675a9129fd75783e55dc4 /games-puzzle/tod/tod-0.ebuild | |
parent | Fixed multilib-strict issue, bug 102562. (diff) | |
download | gentoo-2-26b3219b00ff79bd06d50b8f80709bb9107ad93f.tar.gz gentoo-2-26b3219b00ff79bd06d50b8f80709bb9107ad93f.tar.bz2 gentoo-2-26b3219b00ff79bd06d50b8f80709bb9107ad93f.zip |
Initial import. Ebuild submitted by Dick Marinus #88492.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'games-puzzle/tod/tod-0.ebuild')
-rw-r--r-- | games-puzzle/tod/tod-0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/games-puzzle/tod/tod-0.ebuild b/games-puzzle/tod/tod-0.ebuild new file mode 100644 index 000000000000..ebef393b625a --- /dev/null +++ b/games-puzzle/tod/tod-0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/tod/tod-0.ebuild,v 1.1 2005/08/19 01:16:17 vapier Exp $ + +inherit games + +DESCRIPTION="Tetanus On Drugs simulates playing a Tetris clone under the influence of hallucinogenic drugs" +HOMEPAGE="http://www.pineight.com/tod/" +SRC_URI="http://www.pineight.com/pc/win${PN}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 x86" +IUSE="" + +DEPEND="media-libs/allegro" + +S=${WORKDIR} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-makefile.patch + sed -i \ + -e "s:idltd\.dat:${GAMES_DATADIR}/${PN}/idltd.dat:" \ + rec.c || die +} + +src_compile() { + emake -f makefile || die "make failed" +} + +src_install() { + newgamesbin tod-debug.exe tod || die + insinto "${GAMES_DATADIR}"/${PN} + doins idltd.dat || die + dodoc readme.txt +} |