diff options
author | 2006-07-06 00:27:28 +0000 | |
---|---|---|
committer | 2006-07-06 00:27:28 +0000 | |
commit | 21cdf8c406abcd7c740ce3adf338a98ada31aa90 (patch) | |
tree | 6d31ffbdf1f911a103cfcd63afde70c203d0b858 /games-puzzle/hexamine/hexamine-0.2.1.ebuild | |
parent | install missing client_global.h; fix PIC handling on amd64 (diff) | |
download | gentoo-2-21cdf8c406abcd7c740ce3adf338a98ada31aa90.tar.gz gentoo-2-21cdf8c406abcd7c740ce3adf338a98ada31aa90.tar.bz2 gentoo-2-21cdf8c406abcd7c740ce3adf338a98ada31aa90.zip |
version bump
(Portage version: 2.1.1_pre2-r2)
Diffstat (limited to 'games-puzzle/hexamine/hexamine-0.2.1.ebuild')
-rw-r--r-- | games-puzzle/hexamine/hexamine-0.2.1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/games-puzzle/hexamine/hexamine-0.2.1.ebuild b/games-puzzle/hexamine/hexamine-0.2.1.ebuild new file mode 100644 index 000000000000..e7a524724d21 --- /dev/null +++ b/games-puzzle/hexamine/hexamine-0.2.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/hexamine/hexamine-0.2.1.ebuild,v 1.1 2006/07/06 00:27:28 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="Hexagonal Minesweeper" +HOMEPAGE="http://sourceforge.net/projects/hexamine" +SRC_URI="mirror://sourceforge/hexamine/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +RDEPEND="media-libs/libsdl + dev-python/pygame" + +S=${WORKDIR}/${PN} + +src_unpack() { + unpack ${A} + cd "${S}" + + # Modify game data directory + sed -i \ + -e "s:\`dirname \$0\`:${GAMES_DATADIR}/${PN}:" \ + -e "s:\./hexamine:exec python &:" \ + hexamine || die "sed failed" +} + +src_install() { + dogamesbin hexamine || die "dogamesbin failed" + insinto "${GAMES_DATADIR}/${PN}" + doins -r hexamine.* skins || die "doins failed" + dodoc ABOUT README + prepgamesdirs +} |