blob: 23416df1688f3cd80890c42fdaacee289a3dcb7c (
plain) (
blame)
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
|
# Copyright 2017 Adélie Linux Team
# Distributed under the terms of the NCSA License
EAPI=6
S="${WORKDIR}/${PN}/src/Unix"
AT_M4DIR="${S}/m4"
inherit autotools
DESCRIPTION="A cross-platform 68k Macintosh emulator"
HOMEPAGE="http://basilisk.cebix.net/"
SRC_URI="mirror://foxkit/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 m68k ppc ppc64 sparc64 x86 x86_64"
IUSE="bincue gtk +jit +sdl"
REQUIRED_USE="bincue? ( sdl )"
DEPEND="
gtk? ( x11-libs/gtk+:2 )
sdl? ( media-libs/libsdl[sound,video] )
!sdl? (
x11-libs/libXext
x11-libs/libX11
)
"
RDEPEND="${DEPEND}"
src_prepare () {
default
eautoreconf
}
src_configure () {
econf \
$(use_enable jit jit-compiler) \
$(use_enable sdl sdl-video) \
$(use_enable sdl sdl-audio) \
--enable-addressing=direct \
$(use_with gtk) \
$(use_with bincue)
}
|