ChangeLog

# ChangeLog for games-action/transcend
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v 1.6 2006/12/01 19:47:34 wolf31o2 Exp $

01 Dec 2006; Chris Gianelloni transcend-0.3.ebuild:
Removing old virtual/x11 dependency.

22 Nov 2006; Piotr JaroszyƄski transcend-0.3.ebuild:
Add ~amd64 wrt bug #155890.

28 Jan 2006; Joshua Baergen
transcend-0.2.ebuild, transcend-0.3.ebuild:
Add modular X dependencies.

*transcend-0.3 (04 Sep 2005)

04 Sep 2005; Michael Sterrett
+transcend-0.3.ebuild:
version bump

22 Feb 2005; David Holm transcend-0.2.ebuild:
Added to ~ppc.

*transcend-0.2 (08 Feb 2005)

08 Feb 2005; Michael Sterrett +metadata.xml,
+transcend-0.2.ebuild:
initial commit (bug #65472)

Manifest

DIST Transcend_0.3_UnixSource.tar.gz 1847261 RMD160 e8cef821c17f07e0dfbc5bd3359fb7b60d9a5b08 SHA1 77bb81704e64a1965b9e7a82e5b5eec6ca4da183 SHA256 46dae7cbd1b95c6865a664022ca804c462f1731c974882a527e43810e99fcd40
EBUILD transcend-0.3.ebuild 1299 RMD160 88f6c8d8a4530f07c1bcf25fb0969929b767a573 SHA1 872f10618b7f8a1738bb6c18ee2a0d76cd737dd2 SHA256 3bc24af7c7f2ed4ef0dec930e338347d47e4c948bdce1bd65d176441d0e128ea
MISC ChangeLog 942 RMD160 1506efe68822d336dadf16a3baa4ef01dfd321a7 SHA1 e096cff4aca6c336fd64f836a849d9af514a5d0e SHA256 6302823b83d8943d661423dc251ff0bfaf1c25ec54ca0ce2a9bc1ef01f0a0cdf
MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3

metadata.xml




games

transcend-0.3.ebuild

# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v 1.4 2006/12/01 19:47:34 wolf31o2 Exp $

inherit games

DESCRIPTION="retro-style, abstract, 2D shooter"
HOMEPAGE="http://transcend.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/Transcend_${PV}_UnixSource.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""

DEPEND="x11-libs/libXmu
x11-libs/libXi
virtual/opengl
virtual/glu
virtual/glut"

S=${WORKDIR}/Transcend_${PV}_UnixSource/Transcend

src_unpack() {
unpack ${A}
cd "${S}"
chmod a+x portaudio/configure
rm -f game/Makefile
cat \
Makefile.GnuLinuxX86 \
Makefile.common \
Makefile.minorGems \
game/Makefile.all \
Makefile.minorGems_targets \
> game/Makefile
sed -i \
-e "s:\"levels\":\"${GAMES_DATADIR}/${PN}/levels\":" \
game/LevelDirectoryManager.cpp \
game/game.cpp \
|| die "sed failed"
}

src_compile() {
cd portaudio
egamesconf || die
emake
cd ../game
emake || die
cd ..
cp game/Transcend ${PN} || die "cp failed"
}

src_install() {
dogamesbin ${PN} || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins -r levels/ || die "doins failed"
dodoc doc/how_to_*.txt
prepgamesdirs
}