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-fps/rtcwsp-demo/rtcwsp-demo-1.1b-r2.ebuild

56 lines
1.2 KiB

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils unpacker
MY_P="wolfspdemo-linux-${PV}.x86.run"
DESCRIPTION="Return to Castle Wolfenstein - Single-player demo"
HOMEPAGE="http://games.activision.com/games/wolfenstein/"
SRC_URI="mirror://idsoftware/wolf/linux/old/${MY_P}"
LICENSE="RTCW"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE=""
RESTRICT="bindist strip mirror"
RDEPEND="sys-libs/glibc
amd64? ( sys-libs/glibc[multilib] )
virtual/opengl[abi_x86_32(-)]
x11-libs/libX11[abi_x86_32(-)]
x11-libs/libXext[abi_x86_32(-)]"
S=${WORKDIR}
dir="/opt/${PN}"
#Ddir=${D}/${dir}
src_install() {
insinto "${dir}"
doins -r demomain Docs
exeinto "${dir}"
doexe bin/x86/wolfsp.x86 openurl.sh || die "copying exe"
make_wrapper ${PN} ./wolfsp.x86 "${dir}" "${dir}"
# fix buffer overflow
sed -i -e '/^exec/i \
export MESA_EXTENSION_MAX_YEAR=2003 \
export __GL_ExtensionStringVersion=17700' "${ED}/usr/bin/${PN}"
doins WolfSP.xpm CHANGES
newicon WolfSP.xpm ${PN}.xpm
make_desktop_entry ${PN} "Return to Castle Wolfenstein (SP demo)" \
${PN}.xpm
}
pkg_postinst() {
elog "Install 'rtcwmp-demo' for multi-player"
elog
elog "Run '${PN}' for single-player"
}