diff options
Diffstat (limited to 'games-action/lugaru/lugaru-1.0c.ebuild')
-rw-r--r-- | games-action/lugaru/lugaru-1.0c.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/games-action/lugaru/lugaru-1.0c.ebuild b/games-action/lugaru/lugaru-1.0c.ebuild new file mode 100644 index 000000000000..941f76274fcc --- /dev/null +++ b/games-action/lugaru/lugaru-1.0c.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/lugaru/lugaru-1.0c.ebuild,v 1.1 2010/05/12 04:21:55 vapier Exp $ + +inherit eutils games + +DESCRIPTION="3D arcade with unique fighting system and antropomorphic characters" +HOMEPAGE="http://www.wolfire.com/lugaru" +SRC_URI="${PN}-full-linux-x86-${PV}.bin" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" +RESTRICT="fetch strip" + +DEPEND="app-arch/unzip" +RDEPEND="sys-libs/glibc + amd64? ( app-emulation/emul-linux-x86-xlibs ) + x86? ( + x11-libs/libX11 + x11-libs/libXext + )" + +S=${WORKDIR}/data + +src_unpack() { + # self unpacking zip archive; unzip warns about the exe stuff + local a="${DISTDIR}/${A}" + echo ">>> Unpacking ${a} to ${PWD}" + unzip -q "${a}" + [ $? -gt 1 ] && die "unpacking failed" + + # Duplicate file and can't be handled by portage, bug #14983 + rm -f "${S}/Data/Textures/Quit.png " +} + +src_install() { + local dir=${GAMES_PREFIX_OPT}/lugaru + + insinto "${dir}" + doins -r Data || die "doins failed" + + dodoc *.txt + + exeinto "${dir}" + doexe ${PN} || die "doexe failed" + games_make_wrapper ${PN} ./${PN} "${dir}" "${dir}" + + doicon ${PN}.png + make_desktop_entry ${PN} Lugaru ${PN} + + prepgamesdirs +} |