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 sumo |
---|
7 | conflicts sumo-devel |
---|
8 | version 0.11.1 |
---|
9 | categories science devel |
---|
10 | maintainers me.com:jens.fahnenbruck \ |
---|
11 | herbiet.net:guillaume-jean |
---|
12 | |
---|
13 | description Simulation of Urban MObility (SUMO) |
---|
14 | long_description \ |
---|
15 | Simulation of Urban MObility (SUMO) is an open source, highly portable, \ |
---|
16 | microscopic road traffic simulation package designed to handle large \ |
---|
17 | road networks. It is mainly developed by employees of the Institute of \ |
---|
18 | Transportation Systems at the German Aerospace Center. SUMO is licensed \ |
---|
19 | under the GPL. |
---|
20 | homepage http://sumo.sourceforge.net/ |
---|
21 | platforms darwin |
---|
22 | |
---|
23 | master_sites sourceforge |
---|
24 | distname ${name}-src-${version} |
---|
25 | worksrcdir ${name}-${version} |
---|
26 | checksums \ |
---|
27 | md5 d3e8d29d74cf25d6cf2bb0c2a622ea49 \ |
---|
28 | sha1 c33f451918c5cb15de5964eb9db3078e24b415a1 \ |
---|
29 | rmd160 956495941b3e58ab42bba6f233678814cb269c2f |
---|
30 | |
---|
31 | depends_lib-append \ |
---|
32 | port:fox \ |
---|
33 | port:gdal \ |
---|
34 | port:libtool \ |
---|
35 | port:proj \ |
---|
36 | port:xercesc |
---|
37 | |
---|
38 | configure.args-append \ |
---|
39 | --with-fox=${prefix} # required for the gui to be enabled |
---|
40 | |
---|
41 | variant debug description {Enable SUMO debugging code} { |
---|
42 | configure.args-append \ |
---|
43 | --enable-debug |
---|
44 | } |
---|
45 | |
---|
46 | variant double_precision description {Use "double" instead of "float" for calculations} { |
---|
47 | configure.args-append \ |
---|
48 | --enable-double-precision |
---|
49 | } |
---|
50 | |
---|
51 | variant subseconds description {Enable subsecond timesteps} { |
---|
52 | configure.args-append \ |
---|
53 | --enable-subsecond |
---|
54 | } |
---|
55 | |
---|
56 | variant messages description {Enable static and dynamic messages emitted by vehicless} { |
---|
57 | configure.args-append \ |
---|
58 | --enable-messages |
---|
59 | } |
---|
60 | |
---|
61 | variant no_internal_lanes description {Disable junction internal lanes} { |
---|
62 | configure.args-append \ |
---|
63 | --disable-internal-lanes |
---|
64 | } |
---|
65 | |
---|
66 | variant no_traci description {Disable Traffic Control Interface (TraCI) Server} { |
---|
67 | configure.args-append \ |
---|
68 | --disable-traci |
---|
69 | } |
---|