summaryrefslogtreecommitdiff
blob: 9e2dbd751738ce0ec9ffa6dd2c1ae7085fb04c63 (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
57
58
59
60
61
62
63
64
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
inherit desktop toolchain-funcs

DESCRIPTION="A scrolling, platform-jumping, key-collecting, ancient pyramid exploring game"
HOMEPAGE="http://abe.sourceforge.net/"
SRC_URI="mirror://sourceforge/abe/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="media-libs/libsdl[sound,video]
	x11-libs/libXi
	media-libs/sdl-mixer[vorbis]"
RDEPEND=${DEPEND}

src_unpack() {
	unpack ${A}
	cd "${S}"
	unpack ./images/images.tar
}

PATCHES=(
	# From Fedora:
	# Enable changing the video settings.  Sent upstream 2 Apr 2006:
	# https://sourceforge.net/p/abe/bugs/1/
	"${FILESDIR}"/${P}-settings.patch

	# Fix a double free() bug.  Sent upstream 15 Mar 2011:
	# https://sourceforge.net/p/abe/patches/1/
	"${FILESDIR}"/${P}-doublefree.patch

	# Fix an incorrect printf format specifier.  Sent upstream 15 Mar 2011:
	# https://sourceforge.net/p/abe/patches/2/
	"${FILESDIR}"/${P}-format.patch

	# Fix build failure with -Werror=format-security
	"${FILESDIR}"/${P}-format-security.patch
)

src_prepare() {
	default
	sed -i \
		-e "/^TR_CFLAGS/d" \
		-e "/^TR_CXXFLAGS/d" \
		configure || die
}

src_configure() {
	econf --with-data-dir=/usr/share/${PN}
}

src_install() {
	dobin src/abe
	insinto /usr/share/${PN}
	doins -r images sounds maps
	newicon tom1.bmp abe.bmp
	make_desktop_entry abe "Abe's Amazing Adventure" /usr/share/pixmaps/abe.bmp
	einstalldocs
}