# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-arcade/xtux/xtux-20030306.ebuild,v 1.11 2006/01/29 00:00:28 joshuabaergen Exp $ inherit games DESCRIPTION="Multiplayer Gauntlet-style arcade game" HOMEPAGE="http://xtux.sourceforge.net/" SRC_URI="mirror://sourceforge/xtux/xtux-src-${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="" DEPEND="|| ( x11-libs/libXpm virtual/x11 )" S=${WORKDIR}/${PN} src_unpack() { unpack ${A} cd "${S}" sed -i \ -e "s:-g -Wall -O2:${CFLAGS}:" \ src/{client,common,server}/Makefile \ || die "sed failed" sed -i \ -e "s:./tux_serv:tux_serv:" \ src/client/menu.c \ || die "sed failed" } src_compile() { emake DATADIR="${GAMES_DATADIR}/xtux/data" || die "emake failed" } src_install () { dogamesbin xtux tux_serv || die "dogamesbin failed" dodir "${GAMES_DATADIR}/xtux" cp -r data "${D}/${GAMES_DATADIR}/xtux/" || die "cp failed" dodoc AUTHORS CHANGELOG README README.GGZ doc/* prepgamesdirs }