diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:20 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:42:08 +0100 |
commit | a535641ae3fdb9e1c000b5ce4945bd2ebed31742 (patch) | |
tree | e789a4e7c6b5b3950ad82b2ea398e446e8939609 /games-engines | |
parent | games-engines/renpy: Remove old (diff) | |
download | gentoo-a535641ae3fdb9e1c000b5ce4945bd2ebed31742.tar.gz gentoo-a535641ae3fdb9e1c000b5ce4945bd2ebed31742.tar.bz2 gentoo-a535641ae3fdb9e1c000b5ce4945bd2ebed31742.zip |
games-engines/residualvm: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/residualvm/residualvm-0.2.1.ebuild | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/games-engines/residualvm/residualvm-0.2.1.ebuild b/games-engines/residualvm/residualvm-0.2.1.ebuild deleted file mode 100644 index ffed45e37513..000000000000 --- a/games-engines/residualvm/residualvm-0.2.1.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils toolchain-funcs gnome2-utils games - -DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures" -HOMEPAGE="http://www.residualvm.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}-sources.tar.bz2" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -# 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, recheck on version bump !!! - # disable explicitly, otherwise we get unneeded linkage (some copy-paste build system) - ./configure \ - --disable-debug \ - --enable-all-engines \ - --backend=sdl \ - --enable-release-mode \ - --disable-tremor \ - --disable-sparkle \ - --prefix="${GAMES_PREFIX}" \ - --datadir="${GAMES_DATADIR}/${PN}" \ - --libdir="$(games_get_libdir)" \ - --docdir="/usr/share/doc/${PF}" \ - --disable-libunity \ - --disable-faad \ - --disable-flac \ - --disable-fluidsynth \ - --disable-mad \ - --disable-translation \ - --disable-vorbis \ - --enable-zlib \ - || die "configure failed" -} - -src_compile() { - emake \ - VERBOSE_BUILD=1 \ - AR="$(tc-getAR) cru" \ - RANLIB=$(tc-getRANLIB) -} - -src_install() { - dogamesbin residualvm - - insinto "${GAMES_DATADIR}/${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 - - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} |