blob: 23416df1688f3cd80890c42fdaacee289a3dcb7c (
plain) (
tree)
|
|
# 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)
}
|