blob: 4e624f1b33c81efcdd943f80e8e80d652235c4ef (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools flag-o-matic
MY_P="hfsplus_${PV}"
DESCRIPTION="HFS+ Filesystem Access Utilities (a PPC filesystem)"
HOMEPAGE="http://penguinppc.org/historical/hfsplus/"
SRC_URI="http://penguinppc.org/historical/hfsplus/${MY_P}.src.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc ppc64 x86"
IUSE="static-libs"
S="${WORKDIR}/hfsplus-${PV}"
PATCHES=(
"${FILESDIR}"/${P}-glob.patch
"${FILESDIR}"/${P}-errno.patch
"${FILESDIR}"/${P}-gcc4.patch
"${FILESDIR}"/${P}-string.patch
"${FILESDIR}"/${P}-stdlib.patch
"${FILESDIR}"/${P}-cflags.patch
)
src_prepare() {
default
# let's avoid the Makefile.cvs since isn't working for us
mv configure.{in,ac} || die
eautoreconf
}
src_configure() {
# bug 580620
append-flags -fgnu89-inline
econf $(use_enable static-libs static)
}
src_install() {
default
newman doc/man/hfsp.man hfsp.1
find "${D}" -name '*.la' -delete || die
}
|