blob: c2f24e10a5b7c46c7adef8533eeb9122969b0b88 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic toolchain-funcs
MY_P="wiimms-iso-tools.source-${PV}"
DESCRIPTION="command line tools to manipulate Wii/GameCube ISO images and WBFS containers"
HOMEPAGE="https://wit.wiimm.de/"
SRC_URI="https://download.wiimm.de/source/wiimms-iso-tools/${MY_P}.txz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="+fuse +zlib"
RDEPEND="
app-arch/bzip2:0=
dev-libs/openssl:=
fuse? ( sys-fs/fuse:0= )
zlib? ( sys-libs/zlib:0= )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}"/${P}-makefile.patch
"${FILESDIR}"/${P}-no-exec-stack.patch
)
src_configure() {
# -Werror=lto-type-mismatch
# https://bugs.gentoo.org/859319
#
# After investigation, the build system also uses -fno-strict-aliasing
# so do not trust it with LTO either, even if the type-mismatch gets fixed.
filter-lto
export NO_FUSE=$(usex fuse 0 1)
export NO_ZLIB=$(usex zlib 0 1)
tc-export CC PKG_CONFIG
}
src_compile() {
emake INSTALL_PATH="${ED}"/usr
emake doc
}
src_install() {
default
dodoc doc/*.txt
}
|