blob: c5087bd921fd078245cbba951cc0c5d761b75cc6 (
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-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools xdg
DESCRIPTION="Puzzle game similar to Oxyd"
HOMEPAGE="http://www.nongnu.org/enigma/"
SRC_URI="https://downloads.sourceforge.net/enigma-game/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls"
RDEPEND="
media-fonts/dejavu
media-libs/sdl-ttf
media-libs/libsdl[video]
media-libs/sdl-mixer
media-libs/sdl-image[jpeg,png]
media-libs/libpng:0=
sys-libs/zlib
net-misc/curl
|| ( >=dev-libs/xerces-c-3[icu] >=dev-libs/xerces-c-3[-icu,-iconv] )
net-libs/enet:=
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}"
BDEPEND="
sys-devel/gettext
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-build.patch
"${FILESDIR}"/${P}-gcc6.patch
)
src_prepare() {
default
eautoreconf
config_rpath_update .
}
src_configure() {
econf \
--with-system-enet \
$(use_enable nls)
}
src_install() {
HTML_DOCS=( doc/. )
DOCS=( ACKNOWLEDGEMENTS AUTHORS CHANGES README doc/HACKING )
default
doman doc/enigma.6
dosym \
../../fonts/dejavu/DejaVuSansCondensed.ttf \
/usr/share/enigma/fonts/DejaVuSansCondensed.ttf
dosym \
../../fonts/dejavu/DejaVuSans.ttf \
/usr/share/enigma/fonts/vera_sans.ttf
}
|