diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-02-03 01:16:24 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-02-03 01:16:24 +0000 |
commit | 11f9d1bb16fe8aae79b04ea6a12907eaa11d8e25 (patch) | |
tree | f82b2195620464d0df96a22dcc71b5d774967c47 /games-arcade/xtux | |
parent | doc tidy (diff) | |
download | historical-11f9d1bb16fe8aae79b04ea6a12907eaa11d8e25.tar.gz historical-11f9d1bb16fe8aae79b04ea6a12907eaa11d8e25.tar.bz2 historical-11f9d1bb16fe8aae79b04ea6a12907eaa11d8e25.zip |
header fix
Diffstat (limited to 'games-arcade/xtux')
-rw-r--r-- | games-arcade/xtux/Manifest | 2 | ||||
-rw-r--r-- | games-arcade/xtux/xtux-20030306.ebuild | 26 |
2 files changed, 13 insertions, 15 deletions
diff --git a/games-arcade/xtux/Manifest b/games-arcade/xtux/Manifest index 5584d8d618ab..a04f612b307c 100644 --- a/games-arcade/xtux/Manifest +++ b/games-arcade/xtux/Manifest @@ -1,4 +1,4 @@ MD5 8ef6436d67f281f7bb75e41c84129ef9 ChangeLog 687 -MD5 eb9823faf58d113f8602402fd44827d5 xtux-20030306.ebuild 914 +MD5 f89a285f177588d5d0369eeb469b5956 xtux-20030306.ebuild 952 MD5 b244cf1c41a78cacb62296d573935c07 metadata.xml 245 MD5 ae206f62d4928ea9a2064d36dea9d6b5 files/digest-xtux-20030306 70 diff --git a/games-arcade/xtux/xtux-20030306.ebuild b/games-arcade/xtux/xtux-20030306.ebuild index de6df318a176..4af3ac11668e 100644 --- a/games-arcade/xtux/xtux-20030306.ebuild +++ b/games-arcade/xtux/xtux-20030306.ebuild @@ -1,39 +1,37 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/xtux/xtux-20030306.ebuild,v 1.2 2003/10/27 15:38:30 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/xtux/xtux-20030306.ebuild,v 1.3 2004/02/03 01:16:10 mr_bones_ Exp $ inherit games +S="${WORKDIR}/${PN}" DESCRIPTION="Multiplayer Gauntlet-style arcade game" HOMEPAGE="http://xtux.sourceforge.net/" SRC_URI="mirror://sourceforge/xtux/xtux-src-${PV}.tar.gz" RESTRICT="nomirror" -SLOT="0" -LICENSE="GPL-2" KEYWORDS="x86" +LICENSE="GPL-2" +SLOT="0" +IUSE="" -DEPEND="virtual/x11 +RDEPEND="virtual/x11" +DEPEND="${RDEPEND} >=sys-apps/sed-4" -S=${WORKDIR}/${PN} - src_compile() { for f in src/{client,common,server}/Makefile ; do sed -i \ - -e "s:-g -Wall -O2:${CFLAGS}:" ${f} || \ - die "sed ${F} failed" + -e "s:-g -Wall -O2:${CFLAGS}:" ${f} \ + || die "sed ${F} failed" done - emake DATADIR=${GAMES_DATADIR}/xtux/data || die + emake DATADIR="${GAMES_DATADIR}/xtux/data" || die "emake failed" } src_install () { dogamesbin xtux tux_serv - dodir ${GAMES_DATADIR}/xtux cp -r data ${D}/${GAMES_DATADIR}/xtux/ - - dodoc AUTHORS CHANGELOG COPYING README README.GGZ doc/* - + dodoc AUTHORS CHANGELOG README README.GGZ doc/* prepgamesdirs } |