blob: 8a6dbee115a7665a310f03e6fcfe4ce1ad0746c8 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 2010-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
inherit autotools flag-o-matic perl-module toolchain-funcs
DESCRIPTION="Zinnia - Online hand recognition system with machine learning"
HOMEPAGE="https://taku910.github.io/zinnia/ https://github.com/taku910/zinnia https://sourceforge.net/projects/zinnia/"
SRC_URI="https://downloads.sourceforge.net/zinnia/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~ppc64 x86"
IUSE="perl static-libs"
PATCHES=(
"${FILESDIR}"/${P}-c++11.patch
"${FILESDIR}"/${P}-flags.patch
"${FILESDIR}"/${P}-perl.patch
)
HTML_DOCS=( doc/{index{,-ja}.html,${PN}.css} )
src_prepare() {
default
sed -i "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" configure.in || die
mv configure.{in,ac} || die
eautoreconf
}
src_configure() {
econf $(use_enable static-libs static)
}
src_compile() {
default
if use perl; then
cd perl >/dev/null || die
# We need to run this here as otherwise it won't pick up the
# just-built -lzinnia and cause the extension to have
# undefined symbols.
perl-module_src_configure
append-cppflags "-I${S}"
append-ldflags "-L${S}/.libs"
emake \
CC="$(tc-getCXX)" \
LD="$(tc-getCXX)" \
OPTIMIZE="${CPPFLAGS} ${CXXFLAGS}" \
LDDLFLAGS="-shared" \
OTHERLDFLAGS="${LDFLAGS}"
cd - >/dev/null || die
fi
}
src_test() {
default
}
src_install() {
default
einstalldocs
find "${D}" -name "*.la" -delete || die
if use perl; then
cd perl >/dev/null || die
perl-module_src_install
cd - >/dev/null || die
fi
}
|