forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cs2d-0127.ebuild
71 lines (57 loc) · 1.82 KB
/
cs2d-0127.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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils games
DESCRIPTION="Counter-Strike 2D is freeware clone of Counter-Strike with some added features in gameplay"
HOMEPAGE="http://www.cs2d.com/"
SRC_URI="https://dev.gentoo.org/~maksbotan/cs2d/cs2d_${PV}_linux.zip
https://dev.gentoo.org/~maksbotan/cs2d/cs2d_${PV}_win.zip
https://dev.gentoo.org/~maksbotan/cs2d/cs2d.png"
LICENSE="freedist"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND="
x86? (
media-libs/openal
media-libs/freetype:2
x11-libs/libX11
x11-libs/libXxf86vm
virtual/opengl
)
amd64? (
>=media-libs/openal-1.15.1[abi_x86_32(-)]
>=virtual/opengl-7.0-r1[abi_x86_32(-)]
>=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)]
>=x11-libs/libX11-1.6.2[abi_x86_32(-)]
>=x11-libs/libXxf86vm-1.1.3[abi_x86_32(-)]
)"
QA_PREBUILT="opt/cs2d/CounterStrike2D"
S=${WORKDIR}
src_prepare() {
# removing windows files
rm -f *.exe *.bat || die
# OpenAL is default sound driver
sed -i \
-e 's:^sounddriver.*$:sounddriver OpenAL Default:' \
sys/config.cfg || die
}
src_install() {
insinto "${GAMES_PREFIX_OPT}"/${PN}
doins -r .
# avoid file collision with untracked file
rm -f "${ED%/}/${GAMES_PREFIX_OPT}"/${PN}/sys/core/started.cfg
make_desktop_entry CounterStrike2D "Counter Strike 2D"
make_desktop_entry "CounterStrike2D -fullscreen -24bit" "Counter Strike 2D - FULLSCREEN"
games_make_wrapper CounterStrike2D ./CounterStrike2D \
"${GAMES_PREFIX_OPT}"/${PN} "${GAMES_PREFIX_OPT}"/${PN}
doicon "${DISTDIR}"/${PN}.png
prepgamesdirs
# fixing permissions
fperms -R g+w "${GAMES_PREFIX_OPT}"/${PN}/maps
fperms -R g+w "${GAMES_PREFIX_OPT}"/${PN}/screens
fperms -R g+w "${GAMES_PREFIX_OPT}"/${PN}/sys
fperms ug+x "${GAMES_PREFIX_OPT}"/${PN}/CounterStrike2D
}