# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit toolchain-funcs git-r3 DESCRIPTION="Game installer for PlayStation 2 HD Loader and Open PS2 Loader" HOMEPAGE="https://github.com/ps2homebrew/hdl-dump" EGIT_REPO_URI="https://github.com/ps2homebrew/hdl-dump.git" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" IUSE="debug" src_prepare() { default # Be more verbose. Patching this would be messy. sed -i -r "s/^(\s+)@/\1/" Makefile || die } src_compile() { emake \ CC=$(tc-getCC) \ RELEASE=$(usex debug no yes) \ IIN_OPTICAL_MMAP=yes } src_install() { dobin hdl_dump dodoc AUTHORS CHANGELOG README.md }