diff options
Diffstat (limited to 'games-kids/memonix-bin/memonix-bin-1.6.ebuild')
-rw-r--r-- | games-kids/memonix-bin/memonix-bin-1.6.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/games-kids/memonix-bin/memonix-bin-1.6.ebuild b/games-kids/memonix-bin/memonix-bin-1.6.ebuild new file mode 100644 index 000000000000..663c8094ead7 --- /dev/null +++ b/games-kids/memonix-bin/memonix-bin-1.6.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-kids/memonix-bin/memonix-bin-1.6.ebuild,v 1.1 2007/06/07 22:50:43 mr_bones_ Exp $ + +inherit games + +MY_PN=${PN%-bin} +DESCRIPTION="Brain teasers, puzzle and memory games for kid's in one pack" +HOMEPAGE="http://www.viewizard.com/memonix/" +SRC_URI="http://www.viewizard.com/download/memx${PV//./}.tar.gz + mirror://gentoo/memonix-addons-1.tar.bz2" + +LICENSE="Memonix" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +RESTRICT="strip" + +DEPEND="" +RDEPEND="" + +S=${WORKDIR}/Memonix + +src_install() { + exeinto "${GAMES_PREFIX_OPT}/${MY_PN}" + doexe Memonix || die "doexe failed" + insinto "${GAMES_PREFIX_OPT}/${MY_PN}" + doins gamedata.vfs "${WORKDIR}"/addons/* || die "doins failed" + dodoc Changes ReadMe + + games_make_wrapper ${MY_PN} "./Memonix" "${GAMES_PREFIX_OPT}/${MY_PN}" + newicon icon48.png ${MY_PN}.png || die "newicon failed" + make_desktop_entry ${MY_PN} "Memonix" ${MY_PN}.png + prepgamesdirs +} |