mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Update done using: ``` git grep -l sys-libs/zlib sys-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git grep -l virtual/zlib-ng sys-* | xargs sed -i -e s@virtual/zlib-ng@sys-libs/zlib-ng@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Plus reverts in sys-libs/minizip-ng, sys-libs/zlib-ng and profiles. Signed-off-by: Michał Górny <mgorny@gentoo.org>
33 lines
598 B
Bash
33 lines
598 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="SEGA Master System / Game Gear emulator"
|
|
HOMEPAGE="https://fms.komkon.org/MG/"
|
|
SRC_URI="https://fms.komkon.org/MG/MG${PV/./}-Ubuntu-x86-bin.tgz"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="all-rights-reserved"
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64"
|
|
RESTRICT="bindist mirror"
|
|
|
|
RDEPEND="
|
|
|| (
|
|
media-libs/libpulse
|
|
media-sound/apulse[sdk]
|
|
)
|
|
virtual/zlib:=
|
|
x11-libs/libX11
|
|
x11-libs/libXext"
|
|
|
|
QA_PREBUILT="usr/bin/mastergear"
|
|
|
|
src_install() {
|
|
newbin mg mastergear
|
|
|
|
docinto html
|
|
dodoc MG.html
|
|
}
|