Portage is a package management system used by Gentoo Linux
# ChangeLog for games-arcade/project-starfighter
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/project-starfighter/ChangeLog,v 1.13 2007/05/31 19:11:08 tupone Exp $
*project-starfighter-1.1-r1 (31 May 2007)
31 May 2007; Tupone Alfredo
+project-starfighter-1.1-r1.ebuild:
Added menu entry. Bug #160243 by Pacho Ramos
24 Apr 2007; Timothy Redaelli
project-starfighter-1.1.ebuild:
Add ~x86-fbsd keyword.
Thanks to Nathan Smith for reporting wrt bug #175779
26 Sep 2006; Chris Gianelloni
project-starfighter-1.1.ebuild:
Added built_with_use to check that sdl-image was built with USE=gif for bug
#148558.
20 Sep 2006;
stable on amd64
22 Jul 2005; Michael Sterrett
+files/1.1-ammo.patch, project-starfighter-1.1.ebuild:
add patch to fix ammo overflow from Jason Bucata (bug #99395)
12 Feb 2005; Michael Sterrett
-project-starfighter-1.00.ebuild, project-starfighter-1.1.ebuild:
clean old; tidy
28 Dec 2004; Joseph Jezak
project-starfighter-1.1.ebuild:
Marked ppc stable.
03 Nov 2004; Joseph Jezak
project-starfighter-1.1.ebuild:
Added ~ppc.
30 May 2004; Gustavo Zacarias
project-starfighter-1.1.ebuild:
Stable on sparc
08 May 2004; Ciaran McCreesh
project-starfighter-1.1.ebuild:
Added ~sparc, #50413
*project-starfighter-1.1 (01 Sep 2003)
01 Sep 2003; Michael Sterrett
project-starfighter-1.1.ebuild:
version bump
*project-starfighter-1.00 (05 Jul 2003)
05 Jul 2003; Michael Sterrett
project-starfighter-1.00.ebuild:
Initial commit (bug 21332)
AUX 1.1-ammo.patch 1803 RMD160 2935b9f7e4044954c76e4264de4f669df10c2390 SHA1 9b0cd42b058e044ccf2603c5d016f56d3b846b97 SHA256 86212a7bbcb33860075a52bfc974634b69c0034c9b9c5a80d60f879a759277d8
DIST project-starfighter-1.1.tar.gz 2523399 RMD160 6cdc1e3fc4efaf56102f0e85f1ed479204a20202 SHA1 e9b2d463247ee216f399cdff99ccbf4cd7f821e7 SHA256 820d7c52fb997dca3e7b2a5f8183936474395dbae343f618540e0183a4c17186
EBUILD project-starfighter-1.1-r1.ebuild 1284 RMD160 338dd18a98e7ceb7f2b80b7e919b44a81e95e542 SHA1 56eaf100b36f72f1dd12b78e7ac5fa6502e14553 SHA256 383c5a901644ddd9965e4b1132fb2018623612216cea9c5b8ab88a27efe6d181
MISC ChangeLog 1888 RMD160 789e06e6c15b10b150330bbe0b57e4624cda238b SHA1 52aad6c47dd7043220396441bb7850de0e4d2242 SHA256 34ec81534a903245816e58c2ebc5c0e14be7c02de5d1e2fe5e5c2614858b3613
MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/project-starfighter/project-starfighter-1.1-r1.ebuild,v 1.2 2007/06/15 19:46:46 nyhm Exp $
inherit eutils games
MY_P=${P/project-/}
DESCRIPTION="A space themed shooter"
HOMEPAGE="http://www.parallelrealities.co.uk/starfighter.php"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
IUSE=""
DEPEND="media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer"
S=${WORKDIR}/${MY_P}
pkg_setup() {
if ! built_with_use media-libs/sdl-image gif
then
die "You need to build media-libs/sdl-image with USE=gif!"
fi
games_pkg_setup
}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:-O3:${CXXFLAGS}:" makefile \
|| die "sed makefile failed"
epatch "${FILESDIR}"/${PV}-ammo.patch
}
src_compile() {
emake DATA="${GAMES_DATADIR}/parallelrealities/" || die "emake failed"
}
src_install() {
dogamesbin starfighter || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/parallelrealities/"
doins starfighter.pak || die "doins failed"
dohtml -r docs/
newicon docs/rocketAmmo.png ${PN}.png
make_desktop_entry starfighter "Project: Starfighter"
prepgamesdirs
}