ChangeLog

# ChangeLog for games-strategy/xscorch
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/xscorch/ChangeLog,v 1.12 2008/03/25 15:42:11 coldwind Exp $

25 Mar 2008; Santiago M. Mola
xscorch-0.2.0-r1.ebuild:
amd64 stable

18 Nov 2006; Saleem Abdulrasool xscorch-0.2.0-r1.ebuild:
Drop gnome useflag for gnome-1.x removal

*xscorch-0.2.0-r1 (31 Aug 2005)

31 Aug 2005; Michael Sterrett
-xscorch-0.1.15.ebuild, -xscorch-0.2.0.ebuild, +xscorch-0.2.0-r1.ebuild:
rev bump to force out the latest patch; tidy old ebuilds

31 Aug 2005; Michael Sterrett xscorch-0.2.0.ebuild:
upstream patch reported by Heinz Striebeck via bug #104402

26 May 2005; Michael Sterrett xscorch-0.2.0.ebuild:
add 64bit patch from upstream; tidy

28 Dec 2004; Ciaran McCreesh :
Change encoding to UTF-8 for GLEP 31 compliance

*xscorch-0.2.0 (26 Mar 2004)

26 Mar 2004; Michael Sterrett xscorch-0.2.0.ebuild:
version bump

10 Mar 2004; Chris Gianelloni
xscorch-0.1.16_rc2.ebuild:
Added ~amd64 keyword. Closing bug #44282.

02 Oct 2003; Michael Sterrett
xscorch-0.1.16_rc2.ebuild:
make it so xscorch can find an uncompressed man page so it can display its
tooltips correctly (bug 30181); add more error messages and checking.

*xscorch-0.1.16_rc2 (05 Sep 2003)

05 Sep 2003; Michael Sterrett
xscorch-0.1.16_rc2.ebuild:
Added the development patched version for people to try out.
Some people are claiming that this version is more stable for them.

*xscorch-0.1.15 (12 Jul 2002)

21 Jun 2003; Mike Frysinger :
Added optional support for gtk/gnome/sound #18512.

04 May 2003; Graham Forest xscorch-0.1.15.ebuild:
set ~ppc in keywords

17 jul 2002; Jose Alberto Suárez López xscorch-0.1.15.ebuild :
Added KEYWORDS.

12 Jul 2002; Ryan Phillips xscorch-0.1.15.ebuild:

New version.

*xscorch-0.1.14 (15 Jun 2002)

17 jul 2002; Jose Alberto Suárez López xscorch-0.1.14.ebuild :
Added KEYWORDS.

15 Jun 2002; Gabriele Giorgetti ChangeLog:

Initial import.
Ebuild Author M. Walker

Manifest

DIST xscorch-0.2.0-64bit.patch.gz 3122 RMD160 297fd79a3417a86a96debd36c0d5c3bb1a9ac789 SHA1 4b109f0dbbec0d216943e8fb96ed9f2ef4e39ab9 SHA256 20c0bec41907bbb560a9a8bdea9553c2e8972b6cdb7e45ade69b7ad102e46970
DIST xscorch-0.2.0-stack-smash.patch.gz 727 RMD160 ffddf0057c48fd372e99d316093b18735d0a4b26 SHA1 c8fa2efecc7c99f23d31c36fe0b77d5a40e9c6a9 SHA256 aa38cd5191b68877718ec77210c130d32f80c9f4a3cf770bd773ab8fb8824948
DIST xscorch-0.2.0.tar.gz 818449 RMD160 243a97eaadd6b29c354c6e0fe679055c0cdb53e2 SHA1 b6d36e2b68e86e1f828d1312bf7789afd4085386 SHA256 f91ebdaf3d11cb5681d1bcca7540fab3b0262cd0b4375785122fdf269ccac68a
EBUILD xscorch-0.2.0-r1.ebuild 1191 RMD160 2c0f37fd150b7bd287b1ab3371888342914617d0 SHA1 50de47af83243fbeb7333751aa7a9525f2fb9267 SHA256 2ecedbb54f61ae348461f818549ca656e0c7d29ebcd6a9f573cb22157c7c3231
MISC ChangeLog 2467 RMD160 125822b3371a9617a5f46c1ba3a31b45b50233ac SHA1 17024bccb07e445fd3b4211ade546d9ebdbe5f82 SHA256 8e8e791cf7a996245bfa83e1be5e3436121f2029809033ede0161d1d46c7c3b4
MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3

metadata.xml




games

xscorch-0.2.0-r1.ebuild

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/xscorch/xscorch-0.2.0-r1.ebuild,v 1.4 2008/03/25 15:42:11 coldwind Exp $

inherit eutils games

DESCRIPTION="clone of the classic DOS game, 'Scorched Earth'"
HOMEPAGE="http://xscorch.org"
SRC_URI="http://xscorch.org./releases/${P}.tar.gz
http://xscorch.org/releases/${P}-stack-smash.patch.gz
http://xscorch.org./releases/${P}-64bit.patch.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc x86"
IUSE="gtk mikmod"

DEPEND="gtk? ( =x11-libs/gtk+-1* )
mikmod? ( media-libs/libmikmod )"

src_unpack() {
unpack ${P}.tar.gz
cd "${S}"
epatch \
"${DISTDIR}/${P}-64bit.patch.gz" \
"${DISTDIR}/${P}-stack-smash.patch.gz"
}

src_compile() {
#configure failed on readline support
egamesconf \
--enable-network \
--without-readline \
$(use_enable mikmod sound) \
$(use_with gtk) \
|| die
emake || die "emake failed"
}

src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
# remove unneeded, empty directory
rmdir "${D}"/usr/games/include
prepgamesdirs
}