1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2025-12-25 07:32:30 +01:00

Removed not working c64 debugger

This commit is contained in:
2022-08-13 12:54:25 +02:00
parent 58df390350
commit 6d39616584
2 changed files with 0 additions and 38 deletions

View File

@@ -1 +0,0 @@
EBUILD c64-debugger-9999.ebuild 810 BLAKE2B 96ca654a83b0e27490c0349ac8555a297a4c3e0dff72f31087150d249e063c00e69c52394ec06102b533291650da235e6302aa99bf5343bd6b3d0b7c3b64ede8 SHA512 67960d4285022525f34d759edca0f1438e2a3b4387272c69e2f65ff771c904a94f439545807cdcd9591e7d494867ef2c48a4b78eeb93bd0fd9f44f89fa3f9a07

View File

@@ -1,37 +0,0 @@
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop git-r3
DESCRIPTION="Commodore 64 and Atari XL/XE debugger that works in real time."
HOMEPAGE="https://sourceforge.net/projects/c64-debugger"
EGIT_REPO_URI="https://git.code.sf.net/p/c64-debugger/code"
LICENSE=""
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="
media-libs/mesa
x11-libs/gtk+:3
media-libs/alsa-lib
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
cd "${WORKDIR}/${PN}-${PV%_*}/MTEngine"
# remove binary compression with upx
sed -i '/upx -9 c64debugger/d' Makefile
make
}
src_install() {
cd "${WORKDIR}/${PN}-${PV%_*}/MTEngine"
dobin c64debugger
cp "Assets/icons C64 Debugger/Images.xcassets/IconPRG.iconset/icon_128x128.png" c64debugger.png
doicon c64debugger.png
}