diff options
author | orbea <orbea@riseup.net> | 2024-05-14 13:45:16 -0700 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-06-18 11:19:48 +0100 |
commit | b6cfe043232c7e3588b2d3d0717425ed89374c67 (patch) | |
tree | 88d35c3a637fba82a3043b168bd7055e07f33b58 /games-emulation | |
parent | games-emulation/sameboy-jg: add 0.16.5 (diff) | |
download | gentoo-b6cfe043232c7e3588b2d3d0717425ed89374c67.tar.gz gentoo-b6cfe043232c7e3588b2d3d0717425ed89374c67.tar.bz2 gentoo-b6cfe043232c7e3588b2d3d0717425ed89374c67.zip |
games-emulation/sameboy-jg: drop 0.16.2
Signed-off-by: orbea <orbea@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/36679
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/sameboy-jg/sameboy-jg-0.16.2.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/games-emulation/sameboy-jg/sameboy-jg-0.16.2.ebuild b/games-emulation/sameboy-jg/sameboy-jg-0.16.2.ebuild deleted file mode 100644 index c41503e9640a..000000000000 --- a/games-emulation/sameboy-jg/sameboy-jg-0.16.2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -MY_PN=${PN%-*} -MY_P=${MY_PN}-${PV} -DESCRIPTION="Jolly Good Port of SameBoy" -HOMEPAGE="https://gitlab.com/jgemu/sameboy" -if [[ "${PV}" == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git" -else - SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2" - S="${WORKDIR}/${MY_P}" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -fi - -LICENSE="MIT" -SLOT="1" - -DEPEND=" - media-libs/jg:1= -" -RDEPEND=" - ${DEPEND} - games-emulation/jgrf -" -BDEPEND=" - >=dev-util/rgbds-0.6.0 - virtual/pkgconfig -" - -src_compile() { - emake -C jollygood \ - CC="$(tc-getCC)" \ - CC_FOR_BUILD="$(tc-getBUILD_CC)" \ - PKG_CONFIG="$(tc-getPKG_CONFIG)" -} - -src_install() { - emake -C jollygood install \ - DESTDIR="${D}" \ - PREFIX="${EPREFIX}"/usr \ - DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \ - LIBDIR="${EPREFIX}/usr/$(get_libdir)" -} |