blob: d35f64fad47b133868c00802d4e08c846bdd3e67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2018 Gentoo Foundation
# 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
}
|