blob: 99e2821535e7df140aaeb9d4a3729c75a976b69d (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="An open-source braille translator and back-translator"
HOMEPAGE="https://github.com/liblouis/liblouis"
SRC_URI="https://github.com/liblouis/liblouis/releases/download/v${PV}/${P}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0/20" # follows LIBLOUIS_CURRENT in configure.ac
KEYWORDS="~alpha amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RESTRICT="!test? ( test )"
# texlive-core for patgen which is required by lou_maketable
RDEPEND="
${PYTHON_DEPS}
app-text/texlive-core
test? ( dev-libs/libyaml )
"
DEPEND="${RDEPEND}"
BDEPEND="
${DISTUTILS_DEPS}
${PYTHON_DEPS}
sys-apps/help2man
"
src_prepare() {
default
#1. bug #913705
#2. Use correct python version
sed -i \
-e "s|\$CURDIR/lou_maketable.d|${EPREFIX}/usr/libexec/lou_maketable|" \
-e "s|python3|${EPYTHON}|" \
tools/lou_maketable.d/lou_maketable.in || die
pushd python > /dev/null || die
distutils-r1_src_prepare
popd > /dev/null || die
}
src_configure() {
# -fanalyzer substantially slows down the build and isn't useful for
# us. It's useful for upstream as it's static analysis, but it's not
# useful when just getting something built.
export gl_cv_warn_c__fanalyzer=no
econf --enable-ucs4 $(use_with test yaml)
}
src_compile() {
default
pushd python > /dev/null || die
# setup.py imports liblouis to get the version number,
# and this causes the shared library to be dlopened
# at build-time. Hack around it with LD_PRELOAD.
# Thanks ArchLinux.
LD_PRELOAD+=":${S}/liblouis/.libs/liblouis.so" distutils-r1_src_compile
popd > /dev/null || die
}
src_test() {
default
pushd python > /dev/null || die
LD_PRELOAD+=":${S}/liblouis/.libs/liblouis.so" distutils-r1_src_test
popd > /dev/null || die
}
python_test() {
local -x LOUIS_TABLEPATH="${S}"/tables
"${EPYTHON}" tests/test_louis.py || die
}
python_install() {
distutils-r1_python_install
python_scriptinto /usr/libexec/lou_maketable
python_doexe ../tools/lou_maketable.d/*.py
}
src_install() {
pushd python > /dev/null || die
LD_PRELOAD+=":${S}/liblouis/.libs/liblouis.so" distutils-r1_src_install
popd > /dev/null || die
# These need to be after distutils src_install, or it'll try to install them from under python/ as well
DOCS=( README AUTHORS NEWS ChangeLog doc/liblouis.txt )
HTML_DOCS=( doc/liblouis.html )
default
# bug #913705
mkdir -p "${ED}"/usr/libexec/lou_maketable || die
mv "${ED}"/usr/bin/lou_maketable.d/*.{mk,pl,sh} "${ED}"/usr/libexec/lou_maketable/ || die
rm -r "${ED}"/usr/bin/lou_maketable.d || die
find "${ED}" -name '*.la' -delete || die
}
|