Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/tempest_for_eliza/
Date: Fri, 07 Sep 2018 12:13:28
Message-Id: 1536322334.1bd6ffd5e108e0e177e6a4081dc5d5ef9a92978d.asturm@gentoo
1 commit: 1bd6ffd5e108e0e177e6a4081dc5d5ef9a92978d
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Sep 4 18:26:33 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 7 12:12:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bd6ffd5
7
8 media-sound/tempest_for_eliza: EAPI7 revbump, improve ebuild
9
10 Closes: https://bugs.gentoo.org/665236
11 Closes: https://github.com/gentoo/gentoo/pull/9778
12
13 .../tempest_for_eliza-1.0.5-r2.ebuild | 35 ++++++++++++++++++++++
14 1 file changed, 35 insertions(+)
15
16 diff --git a/media-sound/tempest_for_eliza/tempest_for_eliza-1.0.5-r2.ebuild b/media-sound/tempest_for_eliza/tempest_for_eliza-1.0.5-r2.ebuild
17 new file mode 100644
18 index 00000000000..c1f630a8951
19 --- /dev/null
20 +++ b/media-sound/tempest_for_eliza/tempest_for_eliza-1.0.5-r2.ebuild
21 @@ -0,0 +1,35 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="Listen to music on the radio generated by images on your screen"
30 +HOMEPAGE="http://www.erikyyy.de/tempest/"
31 +SRC_URI="http://www.erikyyy.de/tempest/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~x86"
36 +
37 +RDEPEND="media-libs/libsdl"
38 +DEPEND="${RDEPEND}"
39 +
40 +src_configure() {
41 + tc-export CXX
42 + econf \
43 + --enable-debug \
44 + --enable-nowarnerror
45 +}
46 +
47 +src_compile() {
48 + emake CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
49 +}
50 +
51 +src_install() {
52 + default
53 + rm songs/Makefile* || die
54 + insinto /usr/share/${PN}
55 + doins songs/*
56 +}