forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wit-2.31a.ebuild
38 lines (29 loc) · 861 Bytes
/
wit-2.31a.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="A set of command line tools to manipulate Wii/GameCube ISO images and WBFS containers"
HOMEPAGE="http://wit.wiimm.de/"
SRC_URI="https://dev.gentoo.org/~radhermit/distfiles/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+fuse +zlib"
RDEPEND="
app-arch/bzip2
fuse? ( sys-fs/fuse )
zlib? ( sys-libs/zlib )
"
DEPEND="${RDEPEND}"
DOCS="doc/*.txt"
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.30a-makefile.patch
epatch "${FILESDIR}"/${PN}-2.30a-no-exec-stack.patch
epatch "${FILESDIR}"/${PN}-2.30a-sizeof-pointer-memaccess.patch
}
src_compile() {
export NO_FUSE=$(usex fuse 0 1)
export NO_ZLIB=$(usex zlib 0 1)
emake INSTALL_PATH="${D}"/usr CC="$(tc-getCC)"
emake doc
}