Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/ballerburg/
Date: Thu, 29 Oct 2020 19:35:32
Message-Id: 1604000110.e49948414026fa60bba0ae42038f4b615fddba06.dilfridge@gentoo
1 commit: e49948414026fa60bba0ae42038f4b615fddba06
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 29 19:34:35 2020 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 29 19:35:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4994841
7
8 games-misc/ballerburg: Fix installation details
9
10 Closes: https://bugs.gentoo.org/730870
11 Package-Manager: Portage-3.0.8, Repoman-3.0.2
12 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
13
14 games-misc/ballerburg/ballerburg-1.2.0-r1.ebuild | 29 ++++++++++++++++++++++++
15 1 file changed, 29 insertions(+)
16
17 diff --git a/games-misc/ballerburg/ballerburg-1.2.0-r1.ebuild b/games-misc/ballerburg/ballerburg-1.2.0-r1.ebuild
18 new file mode 100644
19 index 00000000000..e4a98743301
20 --- /dev/null
21 +++ b/games-misc/ballerburg/ballerburg-1.2.0-r1.ebuild
22 @@ -0,0 +1,29 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +inherit cmake-utils
29 +
30 +DESCRIPTION="Linux port of the classical Atari ST game Ballerburg"
31 +HOMEPAGE="http://baller.tuxfamily.org/"
32 +SRC_URI="http://download.tuxfamily.org/baller/${P}.tar.gz"
33 +
34 +LICENSE="GPL-3+"
35 +SLOT="0"
36 +KEYWORDS="~amd64"
37 +
38 +DEPEND="media-libs/libsdl"
39 +RDEPEND="${DEPEND}"
40 +
41 +src_configure() {
42 + local mycmakeargs=(
43 + -DDOCDIR=share/doc/${PF}
44 + )
45 + cmake-utils_src_configure
46 +}
47 +
48 +src_install() {
49 + cmake-utils_src_install
50 + gunzip "${ED}usr/share/man/man6/ballerburg.6.gz" || die
51 +}