public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-action/astromenace-bin: ChangeLog astromenace-bin-1.2-r1.ebuild
@ 2007-10-15 16:45 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; only message in thread
From: Michael Sterrett (mr_bones_) @ 2007-10-15 16:45 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    07/10/15 16:45:52

  Modified:             ChangeLog
  Added:                astromenace-bin-1.2-r1.ebuild
  Log:
  upstream changed the tarball; added icon install
  (Portage version: 2.1.3.9, RepoMan options: --force)

Revision  Changes    Path
1.5                  games-action/astromenace-bin/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/astromenace-bin/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/astromenace-bin/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/astromenace-bin/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/astromenace-bin/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	9 Jul 2007 04:08:05 -0000	1.4
+++ ChangeLog	15 Oct 2007 16:45:51 -0000	1.5
@@ -1,6 +1,12 @@
 # ChangeLog for games-action/astromenace-bin
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/astromenace-bin/ChangeLog,v 1.4 2007/07/09 04:08:05 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/astromenace-bin/ChangeLog,v 1.5 2007/10/15 16:45:51 mr_bones_ Exp $
+
+*astromenace-bin-1.2-r1 (15 Oct 2007)
+
+  15 Oct 2007; Michael Sterrett <mr_bones_@gentoo.org>
+  +astromenace-bin-1.2-r1.ebuild:
+  upstream changed the tarball; added icon install
 
 *astromenace-bin-1.2 (09 Jul 2007)
 



1.1                  games-action/astromenace-bin/astromenace-bin-1.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/astromenace-bin/astromenace-bin-1.2-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/astromenace-bin/astromenace-bin-1.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: astromenace-bin-1.2-r1.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/astromenace-bin/astromenace-bin-1.2-r1.ebuild,v 1.1 2007/10/15 16:45:51 mr_bones_ Exp $

inherit eutils versionator games

MY_PN=${PN/-bin}
MY_PV=$(delete_all_version_separators)
MY_P=amenace${MY_PV}
DL="http://www.viewizard.com/download"

DESCRIPTION="Modern 3D space shooter with spaceship upgrade possibilities"
HOMEPAGE="http://www.viewizard.com/astromenace/index_linux.php"
SRC_URI="linguas_de? ( ${DL}/${MY_P}_de.tar.bz2 )
	!linguas_de? ( linguas_ru? ( ${DL}/${MY_P}_ru.tar.bz2 ) )
	!linguas_de? ( !linguas_ru? ( ${DL}/${MY_P}.tar.bz2 ) )"

LICENSE="astromenace"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="linguas_de linguas_ru"
RESTRICT="strip"

RDEPEND="
	virtual/glu
	virtual/opengl
	>=media-libs/freealut-1.0.1
	>=media-libs/jpeg-6b
	x11-libs/libX11
	x11-libs/libXau
	x11-libs/libXdmcp
	x11-libs/libXext
	x11-libs/libXrandr
	x11-libs/libXrender
	media-libs/libmikmod
	>=media-libs/openal-0.0.8
	>=media-libs/sdl-image-1.2.4
	>=media-libs/libsdl-1.2.6
	>=media-libs/libogg-1.1
	>=media-libs/libvorbis-1.1"

S=${WORKDIR}/${MY_PN}

src_unpack() {
	unpack ${A}

	# Standardize directory name
	if [[ ! -d ${S} ]] ; then
		if [[ -d ${MY_PN}_de ]] ; then
			mv ${MY_PN}_de ${S} || die
		else
			mv ${MY_PN}_ru ${S} || die
		fi
	fi
}

src_install() {
	exeinto "${GAMES_PREFIX_OPT}/${MY_PN}"
	if use amd64; then
		newexe AstroMenace64 AstroMenace || die "newexe failed"
	else
		doexe AstroMenace || die "doexe failed"
	fi
	insinto "${GAMES_PREFIX_OPT}/${MY_PN}"
	doins -r *.vfs DATA || die "doins failed"

	newicon astromenace_128.png ${PN}.png
	games_make_wrapper ${MY_PN} "./AstroMenace" "${GAMES_PREFIX_OPT}/${MY_PN}"
	make_desktop_entry ${MY_PN} "Astro Menace"
	prepgamesdirs
}



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-10-15 16:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-15 16:45 [gentoo-commits] gentoo-x86 commit in games-action/astromenace-bin: ChangeLog astromenace-bin-1.2-r1.ebuild Michael Sterrett (mr_bones_)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox