1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name routino |
---|
7 | version 3.0 |
---|
8 | |
---|
9 | categories gis |
---|
10 | platforms darwin |
---|
11 | maintainers web.de:framic5 openmaintainer |
---|
12 | |
---|
13 | description Route planner for OpenStreetMap data |
---|
14 | long_description Routino is an application for finding a route between two points using the dataset of \ |
---|
15 | topographical information collected by http://www.OpenStreetMap.org. \ |
---|
16 | This router uses a routing algorithm that takes OSM format data as its input and \ |
---|
17 | calculates either the shortest or quickest route between two points. To optimise the \ |
---|
18 | routing a custom database format is used. This allows the routing to be performed \ |
---|
19 | quickly after a modest one-off pre-processing stage. |
---|
20 | homepage http://routino.org/ |
---|
21 | license GPL-3 |
---|
22 | |
---|
23 | master_sites http://routino.org/download/ |
---|
24 | extract.suffix .tgz |
---|
25 | |
---|
26 | checksums rmd160 ea9f8a1fd5f728f6f2a5382543be29ba1b2f1e00 \ |
---|
27 | sha256 376512ef9627ce5c12e8c7a98dba7fe5125acfb89a9f9ee6758fbe36b5cf942f |
---|
28 | |
---|
29 | patchfiles patch-Makefile_conf.diff \ |
---|
30 | patch-src_Makefile_dylib_extension.diff |
---|
31 | |
---|
32 | depends_lib port:libzip \ |
---|
33 | port:bzip2 |
---|
34 | |
---|
35 | use_parallel_build no |
---|
36 | use_configure no |
---|
37 | |
---|
38 | post-patch { |
---|
39 | reinplace -W ${worksrcpath} s|prefix=/usr/local|prefix=${prefix}|g Makefile.conf |
---|
40 | reinplace -W ${worksrcpath} s|docdir=\$(prefix)/doc/routino|docdir=\$(prefix)/share/doc/routino|g Makefile.conf |
---|
41 | } |
---|
42 | |
---|
43 | build.args-append CC=${configure.cc} \ |
---|
44 | LD=${configure.cc} |
---|