Gentoo Archives: gentoo-commits

From: "Azamat H. Hackimov" <winterheart@××××××.ru>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gamerlay:master commit in: games-engines/residualvm-tools/
Date: Thu, 06 Feb 2020 21:22:50
Message-Id: 1581024155.62f7e9663f29ebc135f67ede9bde2d0d4b8c1edd.winterheart@gentoo
1 commit: 62f7e9663f29ebc135f67ede9bde2d0d4b8c1edd
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Thu Feb 6 20:31:16 2020 +0000
4 Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
5 CommitDate: Thu Feb 6 21:22:35 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=62f7e966
7
8 games-engines/residualvm-tools: remove ebuild
9
10 Live ebuild with lack of development, deprecated games eclass
11 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
12
13 games-engines/residualvm-tools/metadata.xml | 13 -------
14 .../residualvm-tools/residualvm-tools-9999.ebuild | 43 ----------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/games-engines/residualvm-tools/metadata.xml b/games-engines/residualvm-tools/metadata.xml
18 deleted file mode 100644
19 index 0b5c041..0000000
20 --- a/games-engines/residualvm-tools/metadata.xml
21 +++ /dev/null
22 @@ -1,13 +0,0 @@
23 -<?xml version="1.0" encoding="UTF-8"?>
24 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
25 -<pkgmetadata>
26 -<herd></herd>
27 -<maintainer>
28 -<email>azamat.hackimov@×××××.com</email>
29 -<name>Azamat H. Hackimov</name>
30 -</maintainer>
31 -<longdescription lang="en">
32 -Utilities for the GrimE game engine
33 -</longdescription>
34 -</pkgmetadata>
35 -
36
37 diff --git a/games-engines/residualvm-tools/residualvm-tools-9999.ebuild b/games-engines/residualvm-tools/residualvm-tools-9999.ebuild
38 deleted file mode 100644
39 index 3842068..0000000
40 --- a/games-engines/residualvm-tools/residualvm-tools-9999.ebuild
41 +++ /dev/null
42 @@ -1,43 +0,0 @@
43 -# Copyright 1999-2012 Gentoo Foundation
44 -# Distributed under the terms of the GNU General Public License v2
45 -# $Header: $
46 -
47 -EAPI=3
48 -
49 -inherit games git-2
50 -
51 -DESCRIPTION="Utilities for the GrimE game engine"
52 -HOMEPAGE="http://www.residualvm.org/"
53 -#SRC_URI=""
54 -EGIT_REPO_URI="https://github.com/residualvm/residualvm-tools"
55 -
56 -LICENSE="LGPL-2.1"
57 -SLOT="0"
58 -KEYWORDS=""
59 -IUSE="flac mad vorbis"
60 -
61 -DEPEND="flac? ( media-libs/flac )
62 - mad? ( media-libs/libmad )
63 - vorbis? ( media-libs/libvorbis )
64 - sys-libs/zlib"
65 -RDEPEND="${DEPEND}"
66 -
67 -src_configure() {
68 - # econf can't work here, configure script not have some options
69 - ./configure \
70 - --enable-release --disable-tremor \
71 - --prefix="${GAMES_PREFIX}" \
72 - --datadir="${GAMES_DATADIR}" \
73 - $(use_enable flac) \
74 - $(use_enable mad) \
75 - $(use_enable vorbis) \
76 - || die "configure failed"
77 -}
78 -
79 -src_install() {
80 - local f
81 - for f in $(find tools -type f -perm +1 -print); do
82 - newgamesbin $f ${PN}-${f##*/} || die "newgamesbin $f failed"
83 - done
84 - prepgamesdirs
85 -}