commit: 727c2f7752bd688045a5509f0d73d89d04885c06 Author: orbea <orbea <AT> riseup <DOT> net> AuthorDate: Sat Jun 29 14:06:29 2024 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Sun Jun 30 12:40:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=727c2f77
dev-util/rgbds: drop 0.7.0 Signed-off-by: orbea <orbea <AT> riseup.net> Closes: https://github.com/gentoo/gentoo/pull/37360 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> dev-util/rgbds/rgbds-0.7.0.ebuild | 49 --------------------------------------- 1 file changed, 49 deletions(-) diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild deleted file mode 100644 index 96b85fe6003d..000000000000 --- a/dev-util/rgbds/rgbds-0.7.0.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 flag-o-matic toolchain-funcs - -DESCRIPTION="Rednex Game Boy Development System" -HOMEPAGE="https://rgbds.gbdev.io/" -if [[ "${PV}" == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/gbdev/${PN}.git" -else - SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" - -DEPEND="media-libs/libpng" -RDEPEND="${DEPEND}" -BDEPEND=" - sys-devel/bison - virtual/pkgconfig -" - -src_compile() { - append-flags -DNDEBUG - - emake Q= \ - CC="$(tc-getCC)" \ - CXX="$(tc-getCXX)" \ - PKG_CONFIG="$(tc-getPKG_CONFIG)" -} - -src_test() { - local dir - for dir in asm link fix gfx; do - pushd "test/${dir}" >/dev/null || die - ./test.sh || die - popd >/dev/null || die - done -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install - dodoc README.rst -}
