Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
Date: Tue, 28 Dec 2021 17:10:33
Message-Id: 1640710806.e8df3c4486cf234e626d2c6136983486510f0be5.ionen@gentoo
1 commit: e8df3c4486cf234e626d2c6136983486510f0be5
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 28 15:04:00 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 28 17:00:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8df3c44
7
8 games-engines/residualvm: drop 0.2.1-r1
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 games-engines/residualvm/Manifest | 1 -
13 .../residualvm/residualvm-0.2.1-r1.ebuild | 81 ----------------------
14 2 files changed, 82 deletions(-)
15
16 diff --git a/games-engines/residualvm/Manifest b/games-engines/residualvm/Manifest
17 index 3aa86f9db791..fb840283578d 100644
18 --- a/games-engines/residualvm/Manifest
19 +++ b/games-engines/residualvm/Manifest
20 @@ -1,2 +1 @@
21 -DIST residualvm-0.2.1-sources.tar.bz2 5533814 BLAKE2B befcb42c823d31ff1e8793d0c902bfdf6b3728530c97b3f43ada5d3b2903a0cddba3247095d1674e62cdd75a6db28a7a5f3b1437e5c39cb5eccb37dff9d52fad SHA512 9eed93770ef1ad828934c32e937b861c93f1ebbb0d936f3f56668e654588f734dc88e29446f0a69f8f26475e96b8ce7ca85318758b99aabc9586756692c721da
22 DIST residualvm-0.3.1-sources.tar.bz2 6711799 BLAKE2B 93d21bc5ee2c567b1ef256a69a2634761cd52211a0b2d926edc67b65e0cc1bf23b41c91225e6d43990d61e6c3761acf19defaa9b477ad882d332ad77c71af1a6 SHA512 491a77f1775718795d93f099fa39ec5888755ac1df610089c17209334b98ae783271078ed03a61ced09835aa327446804a55522d4b83f618dd3b843c231444a0
23
24 diff --git a/games-engines/residualvm/residualvm-0.2.1-r1.ebuild b/games-engines/residualvm/residualvm-0.2.1-r1.ebuild
25 deleted file mode 100644
26 index a9272195b281..000000000000
27 --- a/games-engines/residualvm/residualvm-0.2.1-r1.ebuild
28 +++ /dev/null
29 @@ -1,81 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit desktop toolchain-funcs gnome2-utils
36 -
37 -DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures"
38 -HOMEPAGE="https://www.residualvm.org/"
39 -SRC_URI="mirror://sourceforge/${PN}/${P}-sources.tar.bz2"
40 -
41 -LICENSE="GPL-2 LGPL-2.1"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -
45 -# TODO: fix dynamic plugin support
46 -# games crash without media-libs/libsdl[alsa]
47 -RDEPEND="
48 - media-libs/alsa-lib
49 - media-libs/freetype:2
50 - media-libs/libsdl[X,sound,alsa,joystick,opengl,video]
51 - sys-libs/zlib
52 - virtual/glu
53 - virtual/opengl"
54 -DEPEND="${RDEPEND}"
55 -
56 -src_configure() {
57 - # not an autotools script
58 - # most configure options currently do nothing, verify on version bump !!!
59 - # disable explicitly, otherwise we get unneeded linkage (some copy-paste build system)
60 - ./configure \
61 - --backend=sdl \
62 - --disable-debug \
63 - --disable-faad \
64 - --disable-flac \
65 - --disable-fluidsynth \
66 - --disable-libunity \
67 - --disable-mad \
68 - --disable-sparkle \
69 - --disable-translation \
70 - --disable-tremor \
71 - --disable-vorbis \
72 - --docdir="/usr/share/doc/${PF}" \
73 - --enable-all-engines \
74 - --enable-release-mode \
75 - --enable-zlib \
76 - || die "configure failed"
77 -}
78 -
79 -src_compile() {
80 - emake \
81 - VERBOSE_BUILD=1 \
82 - AR="$(tc-getAR) cru" \
83 - RANLIB=$(tc-getRANLIB)
84 -}
85 -
86 -src_install() {
87 - dobin residualvm
88 -
89 - insinto "/usr/share/${PN}"
90 - doins gui/themes/modern.zip dists/engine-data/residualvm-grim-patch.lab
91 -
92 - doicon -s scalable icons/${PN}.svg
93 - doicon -s 256 icons/${PN}.png
94 - domenu dists/${PN}.desktop
95 -
96 - doman dists/${PN}.6
97 - dodoc AUTHORS README.md KNOWN_BUGS TODO
98 -}
99 -
100 -pkg_preinst() {
101 - gnome2_icon_savelist
102 -}
103 -
104 -pkg_postinst() {
105 - gnome2_icon_cache_update
106 -}
107 -
108 -pkg_postrm() {
109 - gnome2_icon_cache_update
110 -}