summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzamat H. Hackimov <azamat.hackimov@gmail.com>2020-02-06 23:31:16 +0300
committerAzamat H. Hackimov <azamat.hackimov@gmail.com>2020-02-07 00:22:35 +0300
commit62f7e9663f29ebc135f67ede9bde2d0d4b8c1edd (patch)
treec88dc7455ec7286500181e2c3e464889190c78b1
parentgames-engines/massacre, games-util/massacre-data: remove (diff)
downloadgamerlay-62f7e966.tar.gz
gamerlay-62f7e966.tar.bz2
gamerlay-62f7e966.zip
games-engines/residualvm-tools: remove ebuild
Live ebuild with lack of development, deprecated games eclass Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
-rw-r--r--games-engines/residualvm-tools/metadata.xml13
-rw-r--r--games-engines/residualvm-tools/residualvm-tools-9999.ebuild43
2 files changed, 0 insertions, 56 deletions
diff --git a/games-engines/residualvm-tools/metadata.xml b/games-engines/residualvm-tools/metadata.xml
deleted file mode 100644
index 0b5c041..0000000
--- a/games-engines/residualvm-tools/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd></herd>
-<maintainer>
-<email>azamat.hackimov@gmail.com</email>
-<name>Azamat H. Hackimov</name>
-</maintainer>
-<longdescription lang="en">
-Utilities for the GrimE game engine
-</longdescription>
-</pkgmetadata>
-
diff --git a/games-engines/residualvm-tools/residualvm-tools-9999.ebuild b/games-engines/residualvm-tools/residualvm-tools-9999.ebuild
deleted file mode 100644
index 3842068..0000000
--- a/games-engines/residualvm-tools/residualvm-tools-9999.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-inherit games git-2
-
-DESCRIPTION="Utilities for the GrimE game engine"
-HOMEPAGE="http://www.residualvm.org/"
-#SRC_URI=""
-EGIT_REPO_URI="https://github.com/residualvm/residualvm-tools"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS=""
-IUSE="flac mad vorbis"
-
-DEPEND="flac? ( media-libs/flac )
- mad? ( media-libs/libmad )
- vorbis? ( media-libs/libvorbis )
- sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- # econf can't work here, configure script not have some options
- ./configure \
- --enable-release --disable-tremor \
- --prefix="${GAMES_PREFIX}" \
- --datadir="${GAMES_DATADIR}" \
- $(use_enable flac) \
- $(use_enable mad) \
- $(use_enable vorbis) \
- || die "configure failed"
-}
-
-src_install() {
- local f
- for f in $(find tools -type f -perm +1 -print); do
- newgamesbin $f ${PN}-${f##*/} || die "newgamesbin $f failed"
- done
- prepgamesdirs
-}