forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alienarena-20130827.ebuild
72 lines (61 loc) · 1.54 KB
/
alienarena-20130827.ebuild
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
72
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils gnome2-utils eutils games
MY_PN=alienarena-7.66
DESCRIPTION="Fast-paced multiplayer deathmatch game"
HOMEPAGE="http://red.planetarena.org/"
SRC_URI="http://icculus.org/alienarena/Files/${MY_PN}-linux${PV}.tar.gz
http://red.planetarena.org/files/${MY_PN}-linux${PV}.tar.gz"
LICENSE="GPL-2 free-noncomm"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="dedicated +dga +vidmode +zlib"
UIRDEPEND="virtual/jpeg:0
media-libs/openal
media-libs/libvorbis
media-libs/freetype:2
virtual/glu
virtual/opengl
dga? ( x11-libs/libXxf86dga )
vidmode? ( x11-libs/libXxf86vm )
zlib? ( sys-libs/zlib )
net-misc/curl"
UIDEPEND="dga? ( x11-proto/xf86dgaproto )
vidmode? ( x11-proto/xf86vidmodeproto )"
RDEPEND="!dedicated? ( ${UIRDEPEND} )"
DEPEND="${RDEPEND}
!dedicated? ( ${UIDEPEND} )
virtual/pkgconfig"
S=${WORKDIR}/${MY_PN/_/.}
src_prepare() {
epatch "${FILESDIR}"/${P}-format.patch
}
src_configure() {
egamesconf \
--with-icondir=/usr/share/icons/hicolor/48x48/apps/ \
--without-system-libode \
--disable-documents \
$(use_enable !dedicated client) \
$(use_with zlib) \
$(use_with vidmode xf86vm) \
$(use_with dga xf86dga)
}
src_install() {
DOCS="docs/README.txt README" default
if ! use dedicated ; then
make_desktop_entry ${PN} "Alien Arena"
fi
prepgamesdirs
}
pkg_preinst() {
games_pkg_preinst
gnome2_icon_savelist
}
pkg_postinst() {
games_pkg_postinst
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}