74 lines
1.3 KiB
Bash
74 lines
1.3 KiB
Bash
|
# Copyright 1999-2020 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
inherit desktop autotools
|
||
|
|
||
|
DESCRIPTION="Atari 800 emulator"
|
||
|
HOMEPAGE="https://atari800.github.io/"
|
||
|
SRC_URI="
|
||
|
https://github.com/atari800/atari800/releases/download/ATARI800_${PV//./_}/${P}-src.tgz
|
||
|
https://sourceforge.net/projects/${PN}/files/ROM/Original%20XL%20ROM/xf25.zip"
|
||
|
|
||
|
LICENSE="GPL-2+"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE="opengl readline +sdl +sound"
|
||
|
|
||
|
RDEPEND="
|
||
|
sdl? (
|
||
|
>=media-libs/libsdl-1.2.0[opengl?,sound?,video]
|
||
|
)
|
||
|
!sdl? (
|
||
|
sys-libs/ncurses:=
|
||
|
)
|
||
|
readline? (
|
||
|
sys-libs/readline:=
|
||
|
sys-libs/ncurses:=
|
||
|
)
|
||
|
media-libs/libpng:=
|
||
|
sys-libs/zlib
|
||
|
"
|
||
|
DEPEND=${RDEPEND}
|
||
|
BDEPEND="
|
||
|
app-arch/unzip
|
||
|
"
|
||
|
|
||
|
src_prepare() {
|
||
|
default
|
||
|
|
||
|
# Bug 544608
|
||
|
eapply -p2 "${FILESDIR}/atari800-3.1.0-tgetent-detection.patch"
|
||
|
eautoreconf
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
local video=ncurses
|
||
|
local sound=no
|
||
|
|
||
|
if use sdl; then
|
||
|
video=sdl
|
||
|
use sound && sound=sdl
|
||
|
elif use sound; then
|
||
|
sound=oss
|
||
|
fi
|
||
|
|
||
|
local myconf=(
|
||
|
$(use_with opengl)
|
||
|
$(use_with readline)
|
||
|
--with-video=${video}
|
||
|
--with-sound=${sound}
|
||
|
)
|
||
|
econf "${myconf[@]}"
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
default
|
||
|
insinto "/usr/share/${PN}"
|
||
|
doins "${WORKDIR}/"*.ROM
|
||
|
insinto /etc
|
||
|
newins "${FILESDIR}"/atari800-4.2.0.cfg atari800.cfg
|
||
|
newicon data/atari2.svg ${PN}.svg
|
||
|
make_desktop_entry ${PN} "Atari 800 emulator"
|
||
|
}
|