blob: 2290ecdfffa0b1a904673811724eebabdb31345c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2008 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.3 2008/02/09 03:14:12 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
}
|