diff options
Diffstat (limited to 'games-strategy/castle-combat')
-rw-r--r-- | games-strategy/castle-combat/ChangeLog | 8 | ||||
-rw-r--r-- | games-strategy/castle-combat/castle-combat-0.7.4.ebuild | 14 |
2 files changed, 12 insertions, 10 deletions
diff --git a/games-strategy/castle-combat/ChangeLog b/games-strategy/castle-combat/ChangeLog index fd0f9df755ca..db3d08954cd6 100644 --- a/games-strategy/castle-combat/ChangeLog +++ b/games-strategy/castle-combat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-strategy/castle-combat -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/castle-combat/ChangeLog,v 1.2 2003/09/10 15:51:46 vapier Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/castle-combat/ChangeLog,v 1.3 2004/05/04 01:44:13 mr_bones_ Exp $ + + 03 May 2004; Michael Sterrett <mr_bones_@gentoo.org> + castle-combat-0.7.4.ebuild: + IUSE; tidy 12 Jul 2003; Michael Sterrett <msterret@gentoo.org> castle-combat-0.7.4.ebuild: diff --git a/games-strategy/castle-combat/castle-combat-0.7.4.ebuild b/games-strategy/castle-combat/castle-combat-0.7.4.ebuild index 4da823f1c855..04e2ce8ac884 100644 --- a/games-strategy/castle-combat/castle-combat-0.7.4.ebuild +++ b/games-strategy/castle-combat/castle-combat-0.7.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/castle-combat/castle-combat-0.7.4.ebuild,v 1.2 2004/02/20 07:38:17 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/castle-combat/castle-combat-0.7.4.ebuild,v 1.3 2004/05/04 01:44:13 mr_bones_ Exp $ inherit games @@ -11,6 +11,7 @@ SRC_URI="http://user.cs.tu-berlin.de/~karlb/castle-combat/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86" +IUSE="" RDEPEND="virtual/glibc sys-libs/zlib @@ -26,16 +27,13 @@ src_unpack() { cd ${S} # dist file seems to include a copy of SDL_net. Take it out so we link # against the system copy instead. - sed -i -e "s/SDL_net//" src/Makefile.in || die "sed src/Makefile.in failed" -} - -src_compile() { - egamesconf || die - emake || die + sed -i \ + -e "s/SDL_net//" src/Makefile.in \ + || die "sed src/Makefile.in failed" } src_install() { - make install DESTDIR=${D} || die + make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog README TODO || die "dodoc failed" prepgamesdirs } |