summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2021-12-28 10:04:00 -0500
committerIonen Wolkens <ionen@gentoo.org>2021-12-28 12:00:06 -0500
commite8df3c4486cf234e626d2c6136983486510f0be5 (patch)
tree69329e5ea2943f93a556ec68e8c8b39108cfadfc /games-engines
parentgames-engines/qtads: drop 3.0.0 (diff)
downloadgentoo-e8df3c4486cf234e626d2c6136983486510f0be5.tar.gz
gentoo-e8df3c4486cf234e626d2c6136983486510f0be5.tar.bz2
gentoo-e8df3c4486cf234e626d2c6136983486510f0be5.zip
games-engines/residualvm: drop 0.2.1-r1
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/residualvm/Manifest1
-rw-r--r--games-engines/residualvm/residualvm-0.2.1-r1.ebuild81
2 files changed, 0 insertions, 82 deletions
diff --git a/games-engines/residualvm/Manifest b/games-engines/residualvm/Manifest
index 3aa86f9db791..fb840283578d 100644
--- a/games-engines/residualvm/Manifest
+++ b/games-engines/residualvm/Manifest
@@ -1,2 +1 @@
-DIST residualvm-0.2.1-sources.tar.bz2 5533814 BLAKE2B befcb42c823d31ff1e8793d0c902bfdf6b3728530c97b3f43ada5d3b2903a0cddba3247095d1674e62cdd75a6db28a7a5f3b1437e5c39cb5eccb37dff9d52fad SHA512 9eed93770ef1ad828934c32e937b861c93f1ebbb0d936f3f56668e654588f734dc88e29446f0a69f8f26475e96b8ce7ca85318758b99aabc9586756692c721da
DIST residualvm-0.3.1-sources.tar.bz2 6711799 BLAKE2B 93d21bc5ee2c567b1ef256a69a2634761cd52211a0b2d926edc67b65e0cc1bf23b41c91225e6d43990d61e6c3761acf19defaa9b477ad882d332ad77c71af1a6 SHA512 491a77f1775718795d93f099fa39ec5888755ac1df610089c17209334b98ae783271078ed03a61ced09835aa327446804a55522d4b83f618dd3b843c231444a0
diff --git a/games-engines/residualvm/residualvm-0.2.1-r1.ebuild b/games-engines/residualvm/residualvm-0.2.1-r1.ebuild
deleted file mode 100644
index a9272195b281..000000000000
--- a/games-engines/residualvm/residualvm-0.2.1-r1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit desktop toolchain-funcs gnome2-utils
-
-DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures"
-HOMEPAGE="https://www.residualvm.org/"
-SRC_URI="mirror://sourceforge/${PN}/${P}-sources.tar.bz2"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# TODO: fix dynamic plugin support
-# games crash without media-libs/libsdl[alsa]
-RDEPEND="
- media-libs/alsa-lib
- media-libs/freetype:2
- media-libs/libsdl[X,sound,alsa,joystick,opengl,video]
- sys-libs/zlib
- virtual/glu
- virtual/opengl"
-DEPEND="${RDEPEND}"
-
-src_configure() {
- # not an autotools script
- # most configure options currently do nothing, verify on version bump !!!
- # disable explicitly, otherwise we get unneeded linkage (some copy-paste build system)
- ./configure \
- --backend=sdl \
- --disable-debug \
- --disable-faad \
- --disable-flac \
- --disable-fluidsynth \
- --disable-libunity \
- --disable-mad \
- --disable-sparkle \
- --disable-translation \
- --disable-tremor \
- --disable-vorbis \
- --docdir="/usr/share/doc/${PF}" \
- --enable-all-engines \
- --enable-release-mode \
- --enable-zlib \
- || die "configure failed"
-}
-
-src_compile() {
- emake \
- VERBOSE_BUILD=1 \
- AR="$(tc-getAR) cru" \
- RANLIB=$(tc-getRANLIB)
-}
-
-src_install() {
- dobin residualvm
-
- insinto "/usr/share/${PN}"
- doins gui/themes/modern.zip dists/engine-data/residualvm-grim-patch.lab
-
- doicon -s scalable icons/${PN}.svg
- doicon -s 256 icons/${PN}.png
- domenu dists/${PN}.desktop
-
- doman dists/${PN}.6
- dodoc AUTHORS README.md KNOWN_BUGS TODO
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}