blob: 18ac53badef63fa46349b7a7f2af0cb5064e5a5a (
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-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit cmake distutils-r1
MY_PN="${PN,,}"
DESCRIPTION="C++ library for converting geographic coordinate systems"
HOMEPAGE="https://sourceforge.net/projects/geographiclib/"
SRC_URI="mirror://sourceforge/${MY_PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0/19"
KEYWORDS="~amd64 ~arm"
IUSE="doc examples python"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="python? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}"
BDEPEND="
doc? (
>=app-doc/doxygen-1.8.7
>=dev-lang/perl-5.26.1-r1
>=dev-python/sphinx-1.6.3-r2
>=sys-apps/util-linux-2.31
)
"
distutils_enable_tests setup.py
# there are additional docs in the python dir
distutils_enable_sphinx python/doc
src_prepare() {
cmake_src_prepare
if use python; then
pushd "python" || die
distutils-r1_src_prepare
popd || die
fi
}
src_configure() {
export GEODATAPATH="/usr/share/${MY_PN}"
local mycmakeargs=(
-DGEOGRAPHICLIB_DOCUMENTATION=$(usex doc ON OFF)
-DGEOGRAPHICLIB_LIB_TYPE="SHARED"
-DGEOGRAPHICLIB_DATA="${GEODATAPATH}"
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
if use python; then
pushd "python" || die
distutils-r1_src_compile
popd || die
fi
}
src_test() {
cmake_src_test
if use python; then
pushd "python" || die
distutils-r1_src_test
popd || die
fi
}
src_install() {
cmake_src_install
# Remove python things added by the cmake_src_install function
rm -r "${ED}/usr/$(get_libdir)/python" || die
# If using Python, we re-add these python files for each implementation
if use python; then
pushd "python" || die
distutils-r1_src_install
popd || die
fi
# TODO: find out if java stuff need something
# Installs to wrong doc dir for some reason
# Also happens with USE="-doc"
mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${PF}" || die
if use examples; then
dodoc -r examples
docompress -x "/usr/share/doc/${PF}/examples"
fi
insinto "/usr/share/maxima/${MY_PN}"
doins -r maxima/.
find "${D}" -name "*.la" -delete || die
}
|