summaryrefslogtreecommitdiff
path: root/games-arcade/spout/spout-1.3-r3.ebuild
blob: 9f30a8242b0d2b8c3286c78301c201f85a3f5751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit autotools desktop readme.gentoo-r1

MY_P="spout-unix-${PV}"

DESCRIPTION="Abstract Japanese caveflier / shooter"
HOMEPAGE="http://freshmeat.net/projects/spout/"
SRC_URI="http://rohanpm.net/files/old/${MY_P}.tar.bz2"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"

DEPEND=">=media-libs/libsdl-1.2.6"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

PATCHES=(
	"${FILESDIR}"/${P}-fno-common.patch
	"${FILESDIR}"/${PN}-1.3-Fix-implicit-function-declarations.patch
)

src_prepare() {
	default

	eautoreconf
}

src_install() {
	dobin spout
	einstalldocs

	doicon spout.png
	make_desktop_entry spout "Spout"

	local DOC_CONTENTS="
	To play in fullscreen mode, do 'spout f'.
	To play in a greater resolution, do 'spout x', where
	x is an integer; the larger x is, the higher the resolution.

	To play:
	* Accelerate - spacebar, enter, z, x
	* Pause - escape
	* Exit - shift+escape
	* Rotate - left or right"
	readme.gentoo_create_doc
}

pkg_postinst() {
	readme.gentoo_print_elog
}