forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
freedink-108.4-r1.ebuild
50 lines (44 loc) · 1.04 KB
/
freedink-108.4-r1.ebuild
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
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic
DESCRIPTION="Dink Smallwood is an adventure/role-playing game, similar to Zelda (2D top view)"
HOMEPAGE="http://www.freedink.org/"
SRC_URI="mirror://gnu/freedink/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
>=media-libs/fontconfig-2.4
>=media-libs/libsdl-1.2[X,sound,joystick,video]
>=media-libs/sdl-gfx-2.0
>=media-libs/sdl-image-1.2
>=media-libs/sdl-mixer-1.2[midi,vorbis,wav]
>=media-libs/sdl-ttf-2.0.9
"
RDEPEND="${DEPEND}
games-rpg/freedink-data
"
DEPEND="${DEPEND}
dev-libs/check
virtual/pkgconfig
sys-devel/gettext
"
PATCHES=(
"${FILESDIR}"/${PN}-108.4-no-windres.patch
)
src_prepare() {
default
sed -i \
-e 's#^datarootdir =.*$#datarootdir = /usr/share#' \
share/Makefile.in || die
# seems like the code is fragile (bug #559548)
filter-flags
replace-flags -O? -O0
}
src_configure() {
econf \
--disable-embedded-resources \
--localedir="/usr/share/locale"
}