blob: 9f0bb22fa51ed9b9bf23dff2c5d2b012dae38f81 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="3"
inherit autotools eutils
MY_P="${P/crf/CRF}"
DESCRIPTION="Yet Another CRF toolkit for segmenting/labelling sequential data"
HOMEPAGE="https://taku910.github.io/crfpp/"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
LICENSE="|| ( BSD LGPL-2.1 )"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE="examples static-libs"
S="${WORKDIR}/${MY_P}"
src_prepare() {
sed -i \
-e "/CFLAGS/s/-O3/${CFLAGS}/" \
-e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \
configure.in || die
epatch "${FILESDIR}"/${PN}-automake-1.13.patch
eautoreconf
}
src_configure() {
econf $(use_enable static-libs static) || die
}
src_test() {
for task in example/* ; do
(
cd "${task}"
./exec.sh || die "failed test in ${task}"
)
done
}
src_install() {
emake DESTDIR="${D}" install || die
if ! use static-libs ; then
find "${ED}" -name "*.la" -type f -delete || die
fi
dodoc AUTHORS README || die
dohtml -r doc/* || die
if use examples ; then
insinto /usr/share/doc/${PF}
doins -r example || die
fi
}
|