+++ /dev/null
---- a/fsgs/amiga/roms.py 2017-07-06 16:50:33.351036624 +0200
-+++ b/fsgs/amiga/roms.py 2017-07-06 16:52:58.335040977 +0200
-@@ -11,6 +11,8 @@
- # Kickstart v1.3 r34.5 (1987)(Commodore)(A500-A1000-A2000-CDTV)[!]
- # Kickstart v1.3 r34.5 (1987)(Commodore)(A500-A1000-A2000-CDTV)[o] (patch)
- "891e9a547772fe0c6c19b610baf8bc4ea7fcb785",
-+ # kick13.rom - from Upgrade Commodore Amiga 500 (1989)
-+ "90933936cce43ca9bc6bf375662c076b27e3c458",
- ]
-
- A500P_KICKSTARTS = [
-@@ -55,6 +57,9 @@
-
- # Kickstart v3.1 r40.68 (1993)(Commodore)(A4000)[h Cloanto]
- # "c3c481160866e60d085e436a24db3617ff60b5f9",
-+
-+ # Kickstart v3.1 r40.10 (15.7.93) from german A4000
-+ "3b7f1493b27e212830f989f26ca76c02049f09ca",
- ]
-
- CD32_KICKSTARTS = [
+++ /dev/null
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{5,6,7} )
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1 xdg-utils
-
-DESCRIPTION="PyQt5-based launcher for FS-UAE"
-HOMEPAGE="https://fs-uae.net/"
-SRC_URI="https://fs-uae.net/stable/${PV}/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="lha"
-
-RDEPEND="
- app-emulation/fs-uae
- dev-python/pyopengl[${PYTHON_USEDEP}]
- dev-python/PyQt5[${PYTHON_USEDEP},declarative,gui,network,opengl,widgets]
- dev-python/six[${PYTHON_USEDEP}]
- lha? ( dev-python/python-lhafile[${PYTHON_USEDEP}] )
-"
-
-DEPEND="
- sys-devel/gettext
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-German-ROMs.patch
- "${FILESDIR}"/${P}-QApplication.patch
-)
-
-src_prepare() {
- default
-
- # Unbundle some libraries. Keep oyoyo IRC library because upstream
- # is long dead and it's not worth packaging separately.
- rm -r {OpenGL,six}/ || die
- sed -i -r "/OpenGL|six/d" setup.py || die
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- local dir=${EPREFIX}/usr/share/${PN}
- distutils-r1_python_install --install-lib="${dir}" --install-scripts="${dir}"
- dosym ../share/${PN}/${PN} /usr/bin/${PN}
-
- emake install-data DESTDIR="${D}" prefix="${EPREFIX}"/usr
- mv "${ED}"/usr/share/doc/{${PN},${PF}} || die
-}
-
-pkg_postinst() {
- elog "Some important information:"
- elog
- ewarn " - Do not use QtCurve, it will crash PyQt5!"
- elog
- elog " - By default, FS-UAE creates its directories under Documents/FS-UAE."
- elog " If your Documents directory is not configured according to the XDG"
- elog " user diretory spec, ~/FS-UAE will be used as a fallback."
- elog
- elog " - You can override this by putting the path to the desired base"
- elog " directory in a special config file. The config file will be read"
- elog " from ~/.config/fs-uae/base-dir by both FS-UAE and FS-UAE Launcher"
- elog " if it exists."
- elog
- elog " Alternatively, you can start FS-UAE and/or FS-UAE Launcher with"
- elog " --base-dir=/path/to/desired/dir"
-}
-
-pkg_postinst() { xdg_icon_cache_update; }
-pkg_postrm() { xdg_icon_cache_update; }