blob: 907f557d003d68991694be4d5fb341d9d3b84a3a (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="48k ZX Spectrum Emulator"
HOMEPAGE="http://kempelen.iit.bme.hu/~mszeredi/spectemu/spectemu.html"
SRC_URI="http://www.inf.bme.hu/~mszeredi/spectemu/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="readline svga +X"
REQUIRED_USE="|| ( svga X )"
DEPEND="
X? (
x11-base/xorg-proto
>=x11-libs/libX11-1.0.0
>=x11-libs/libXext-1.0.0
>=x11-libs/libXxf86vm-1.0.0
)
readline? ( sys-libs/readline:= )
"
RDEPEND="${DEPEND}
svga? ( media-libs/svgalib )"
PATCHES=(
"${FILESDIR}"/${P}-automagic.patch
"${FILESDIR}"/${P}-build.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_with readline) \
$(use_with svga) \
$(use_with X x)
}
src_install() {
emake install_root="${ED}" install
}
|