blob: 55a6d24270f26b6cb89cfca31a5a1922cdaa615c (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8,9} )
inherit autotools python-single-r1
DESCRIPTION="Roleplaying game engine"
HOMEPAGE="http://adonthell.nongnu.org/"
SRC_URI="https://savannah.nongnu.org/download/${PN}/${PN}-src-${PV}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc nls"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
media-libs/freetype
media-libs/libogg
media-libs/libsdl2[X,video,sound]
media-libs/libvorbis
media-libs/sdl2-mixer[vorbis]
media-libs/sdl2-ttf
sys-libs/zlib
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
dev-lang/swig"
BDEPEND="
virtual/pkgconfig
doc? (
app-doc/doxygen
media-gfx/graphviz
)
nls? ( sys-devel/gettext )"
DOCS=( AUTHORS NEWBIE NEWS README )
PATCHES=(
"${FILESDIR}/${P}-ar.patch"
)
src_prepare() {
default
eautoreconf
}
pkg_setup() {
python-single-r1_pkg_setup
}
src_configure() {
econf \
--program-transform-name="s:${PN}-$(ver_cut 1-2):${PN}:" \
--disable-py-debug \
--with-python=${EPYTHON} \
$(use_enable nls) \
$(use_enable doc)
}
|