diff options
author | 2021-08-19 01:47:45 +0100 | |
---|---|---|
committer | 2021-08-19 01:47:45 +0100 | |
commit | 939b3cb7a742549da1b0b5a74334c412597cb8bb (patch) | |
tree | fa45ebe8e229fc6af9e8520482ed106fd83570c9 /games-fps/worldofpadman/worldofpadman-1.6-r2.ebuild | |
parent | games-arcade/moleinvasion: revbump for changed dependency (diff) | |
download | gentoo-939b3cb7a742549da1b0b5a74334c412597cb8bb.tar.gz gentoo-939b3cb7a742549da1b0b5a74334c412597cb8bb.tar.bz2 gentoo-939b3cb7a742549da1b0b5a74334c412597cb8bb.zip |
games-fps/worldofpadman: revbump for changed dependency
Fixes: c84301a2f08f94fe74fac62811cac8fd1749bc6e
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-fps/worldofpadman/worldofpadman-1.6-r2.ebuild')
-rw-r--r-- | games-fps/worldofpadman/worldofpadman-1.6-r2.ebuild | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/games-fps/worldofpadman/worldofpadman-1.6-r2.ebuild b/games-fps/worldofpadman/worldofpadman-1.6-r2.ebuild new file mode 100644 index 000000000000..a958dfcfe874 --- /dev/null +++ b/games-fps/worldofpadman/worldofpadman-1.6-r2.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop + +DESCRIPTION="A cartoon style multiplayer first-person shooter" +HOMEPAGE="https://worldofpadman.net/" +SRC_URI="mirror://sourceforge/${PN}/wop-1.5-unified.zip + mirror://sourceforge/${PN}/wop-1.5.x-to-1.6-patch-unified.zip" +S="${WORKDIR}/${P}_svn2178-src" + +LICENSE="GPL-2 worldofpadman" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+curl dedicated maps +openal +theora +vorbis" + +RDEPEND="sys-libs/zlib + !dedicated? ( + >=media-libs/speex-1.2.0 + media-libs/speexdsp + virtual/jpeg:0 + media-libs/libsdl[joystick,opengl,video,X] + virtual/opengl + virtual/glu + openal? ( media-libs/openal ) + curl? ( net-misc/curl ) + vorbis? ( media-libs/libvorbis ) + theora? ( + media-libs/libtheora + media-libs/libogg + ) + ) +" +DEPEND="${RDEPEND}" +BDEPEND="app-arch/unzip" + +src_unpack() { + unpack ${A} + unzip XTRAS/"editing files"/${P}-src.zip +} + +src_prepare() { + default + eapply "${FILESDIR}"/${P}-gentoo.patch + sed -i \ + -e 's:JPEG_LIB_VERSION < 80:JPEG_LIB_VERSION < 62:' \ + code/renderer/tr_image_jpg.c || die #479652 +} + +src_compile() { + local arch + + if use amd64 ; then + arch=x86_64 + elif use x86 ; then + arch=i386 + fi + + emake \ + V=1 \ + ARCH=${arch} \ + BUILD_CLIENT=$(use dedicated && echo 0) \ + DEFAULT_BASEDIR=/usr/share/${PN} \ + OPTIMIZE= \ + USE_CURL=$(usex curl 1 0) \ + USE_CURL_DLOPEN=0 \ + USE_OPENAL=$(usex openal 1 0) \ + USE_OPENAL_DLOPEN=0 \ + USE_CODEC_VORBIS=$(usex vorbis 1 0) \ + USE_CIN_THEORA=$(usex theora 1 0) \ + USE_RENDERER_DLOPEN=0 \ + USE_INTERNAL_ZLIB=0 \ + USE_INTERNAL_JPEG=0 \ + USE_INTERNAL_SPEEX=0 +} + +src_install() { + newbin build/release-*/wopded.* ${PN}-ded + + if ! use dedicated ; then + newbin build/release-*/wop.* ${PN} + newicon misc/quake3.png ${PN}.png + make_desktop_entry ${PN} "World of Padman" + fi + + insinto /usr/share/${PN} + doins -r ../wop + + dodoc id-readme.txt \ + IOQ3-README \ + voip-readme.txt \ + ../XTRAS/changelog.txt \ + ../XTRAS/sounds_readme.txt + + HTML_DOCS="../XTRAS/readme ../XTRAS/readme.html" einstalldocs +} |