You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-action/cs2d/cs2d-1002.ebuild

71 lines
1.8 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils games
DESCRIPTION="A 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
}