commit: ae2581bc50c1b570091c341f570d0df859d2dddb
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Apr 6 17:42:20 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Apr 6 17:42:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ae2581bc
sci-geosciences: do not die is use doc
doing this:
use x && do_thing || die
makes the build die is use -x
so don't do that
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-geosciences/geographiclib/geographiclib-1.50.ebuild | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/sci-geosciences/geographiclib/geographiclib-1.50.ebuild
b/sci-geosciences/geographiclib/geographiclib-1.50.ebuild
index 7f8a351..64a438f 100644
--- a/sci-geosciences/geographiclib/geographiclib-1.50.ebuild
+++ b/sci-geosciences/geographiclib/geographiclib-1.50.ebuild
@@ -110,6 +110,8 @@ DEPEND="
S="${WORKDIR}/${MY_P}"
distutils_enable_tests setup.py
+# there are additional docs in the python dir
+distutils_enable_sphinx python/doc
src_prepare() {
#TODO: strip cflags
@@ -152,6 +154,7 @@ src_compile() {
cd "python" || die
python_foreach_impl distutils-r1_python_compile
cd ".." || die
+ use doc && build_sphinx python/doc
fi
}
@@ -176,6 +179,10 @@ src_install() {
cmake_src_install
+ # remove python things added by the cmake_src_install function
+ # these are installed in the wrong python dir
+ rm -rf "${D}/usr/$(get_libdir)/python" || die
+ # if use python we re-add these python files correctly
if use python; then
cd "python" || die
python_foreach_impl distutils-r1_python_install
@@ -184,8 +191,7 @@ src_install() {
#TODO: find out if java stuff need something
- rm -rf "${D}/usr/$(get_libdir)/python" || die
-
- use doc && mkdir -p "${D}/usr/share/${P}" || die
- use doc && mv "${D}/usr/share/doc/${MY_PN}" "${D}/usr/share/${P}/doc"
|| die
+ # Installs to wrong doc dir for some reason
+ # Also happens with USE="-doc"
+ mv "${D}/usr/share/doc/${MY_PN}" "${D}/usr/share/doc/${P}" || die
}