Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 665236
Collapse All | Expand All

(-)a/media-sound/tempest_for_eliza/tempest_for_eliza-1.0.5-r2.ebuild (+34 lines)
Line 0 Link Here
1
# Copyright 1999-2018 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
4
EAPI=7
5
inherit toolchain-funcs
6
7
DESCRIPTION="listen to music on the radio generated by images on your screen"
8
HOMEPAGE="http://www.erikyyy.de/tempest/"
9
SRC_URI="http://www.erikyyy.de/tempest/${P}.tar.gz"
10
11
LICENSE="GPL-2"
12
SLOT="0"
13
KEYWORDS="~amd64 ~ppc ~x86"
14
15
RDEPEND="media-libs/libsdl"
16
DEPEND="${RDEPEND}"
17
18
src_configure() {
19
	tc-export CXX
20
	econf \
21
		--enable-debug \
22
		--enable-nowarnerror
23
}
24
25
src_compile() {
26
	emake CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
27
}
28
29
src_install() {
30
	default
31
	rm songs/Makefile* || die
32
	insinto /usr/share/${PN}
33
	doins songs/*
34
}

Return to bug 665236