diff options
author | Andrey Grozin <grozin@gentoo.org> | 2023-07-20 23:07:10 +0700 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2023-07-20 23:07:10 +0700 |
commit | b21cfa942340c2940fd4783f4810abf772617a20 (patch) | |
tree | 08a8eb02c944acce99bb59982cff00e695dbd292 /sci-geosciences/routino/routino-3.4.1.ebuild | |
parent | dev-util/pycharm-community: bump to 2023.1.4 (diff) | |
download | gentoo-b21cfa942340c2940fd4783f4810abf772617a20.tar.gz gentoo-b21cfa942340c2940fd4783f4810abf772617a20.tar.bz2 gentoo-b21cfa942340c2940fd4783f4810abf772617a20.zip |
sci-geosciences/routino: bump to 3.4.1
Signed-off-by: Andrey Grozin <grozin@gentoo.org>
Diffstat (limited to 'sci-geosciences/routino/routino-3.4.1.ebuild')
-rw-r--r-- | sci-geosciences/routino/routino-3.4.1.ebuild | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/sci-geosciences/routino/routino-3.4.1.ebuild b/sci-geosciences/routino/routino-3.4.1.ebuild new file mode 100644 index 000000000000..3a03984a6ad0 --- /dev/null +++ b/sci-geosciences/routino/routino-3.4.1.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) +inherit toolchain-funcs distutils-r1 + +DESCRIPTION="Routing application based on openstreetmap data" +HOMEPAGE="https://routino.org/" +SRC_URI="https://routino.org/download/${P}.tgz" + +LICENSE="AGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="python test" + +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +RESTRICT="!test? ( test )" + +BDEPEND=" + python? ( + ${PYTHON_DEPS} + dev-lang/swig[pcre] + ) +" +RDEPEND="python? ( ${PYTHON_DEPS} )" + +PATCHES=( "${FILESDIR}"/${PN}-3.3.2.patch ) + +src_prepare() { + default + + sed -i -e "s@libdir=\(.*\)@libdir=\$(prefix)/$(get_libdir)@" \ + -e "s@CC=gcc@CC=$(tc-getCC)@" \ + -e "s@LD=gcc@LD=$(tc-getCC)@" \ + Makefile.conf || die "failed sed" +} + +src_compile() { + emake -j1 + + rm README.txt || die "rm README.txt failed" + mv doc/README.txt . || die "mv doc/README.txt . failed" + + if use python; then + pushd python > /dev/null || die + distutils-r1_src_compile + popd > /dev/null || die + fi +} + +python_compile() { + rm -f build/.timestamp || die + emake PYTHON=${EPYTHON} src/_router.c src/_database.cc || die + distutils-r1_python_compile +} + +src_test() { + emake test + + # Need to fix import issues with these + #if use python; then + # pushd python > /dev/null || die + # distutils-r1_src_test + # popd > /dev/null || die + #fi +} + +python_test() { + emake PYTHON=${EPYTHON} test +} + +src_install() { + default + + if use python; then + pushd python > /dev/null || die + distutils-r1_src_install + newdoc README.txt README_python.txt + popd > /dev/null || die + fi +} |