mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James <sam@gentoo.org>
42 lines
833 B
Bash
42 lines
833 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs
|
|
|
|
COMMIT="67e66ca0e0a0000563f75c573a046cb8614745ad"
|
|
DESCRIPTION="Game installer for PlayStation 2 HD Loader and Open PS2 Loader"
|
|
HOMEPAGE="https://github.com/AKuHAK/hdl-dump"
|
|
SRC_URI="https://github.com/AKuHAK/hdl-dump/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="debug"
|
|
|
|
S="${WORKDIR}/${PN//_/-}-${COMMIT}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/Makefile.patch
|
|
)
|
|
|
|
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
|
|
}
|