blob: 9976eb3b0450e4b6ce4f2380003eee85a844f420 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
CMAKE_BUILD_TYPE="Release"
#CMAKE_MAKEFILE_GENERATOR=emake
POSTGRES_COMPAT=( 9.6 {10..13} )
POSTGRES_USEDEP="server"
inherit cmake postgres-multi
DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
HOMEPAGE="https://pgrouting.org/"
LICENSE="GPL-2 MIT Boost-1.0"
SLOT="0"
KEYWORDS="amd64 x86"
SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
IUSE=""
RDEPEND="${POSTGRES_DEP}
>=dev-db/postgis-2.0
dev-libs/boost
sci-mathematics/cgal
"
DEPEND="${RDEPEND}"
# Needs a running psql instance, doesn't work out of the box
RESTRICT="test"
src_prepare() {
cmake_src_prepare
postgres-multi_src_prepare
}
my_src_configure() {
local mycmakeargs=(
-DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)"
)
cmake_src_configure
}
src_configure() {
postgres-multi_foreach my_src_configure
}
src_compile() {
postgres-multi_foreach cmake_build
}
src_install() {
postgres-multi_foreach cmake_src_install
}
|