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-devel |
---|
7 | conflicts sumo |
---|
8 | version 0.11.1-svn |
---|
9 | categories science devel |
---|
10 | maintainers me.com:jens.fahnenbruck \ |
---|
11 | herbiet.net:guillaume-jean |
---|
12 | |
---|
13 | description Development version for 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 | fetch.type svn |
---|
24 | svn.url https://sumo.svn.sourceforge.net/svnroot/sumo/trunk/sumo/ |
---|
25 | worksrcdir sumo |
---|
26 | |
---|
27 | depends_lib-append \ |
---|
28 | port:fox \ |
---|
29 | port:gdal \ |
---|
30 | port:libtool \ |
---|
31 | port:proj \ |
---|
32 | port:xercesc |
---|
33 | |
---|
34 | configure.cmd {make -f Makefile.cvs && ./configure} |
---|
35 | |
---|
36 | configure.args-append \ |
---|
37 | --with-fox=${prefix} # required for the gui to be enabled |
---|
38 | |
---|
39 | variant debug description {Enable SUMO debugging code} { |
---|
40 | configure.args-append \ |
---|
41 | --enable-debug |
---|
42 | } |
---|
43 | |
---|
44 | variant double_precision description {Use "double" instead of "float" for calculations} { |
---|
45 | configure.args-append \ |
---|
46 | --enable-double-precision |
---|
47 | } |
---|
48 | |
---|
49 | variant subseconds description {Enable subsecond timesteps} { |
---|
50 | configure.args-append \ |
---|
51 | --enable-subsecond |
---|
52 | } |
---|
53 | |
---|
54 | variant messages description {Enable static and dynamic messages emitted by vehicless} { |
---|
55 | configure.args-append \ |
---|
56 | --enable-messages |
---|
57 | } |
---|
58 | |
---|
59 | variant no_internal_lanes description {Disable junction internal lanes} { |
---|
60 | configure.args-append \ |
---|
61 | --disable-internal-lanes |
---|
62 | } |
---|
63 | |
---|
64 | variant no_traci description {Disable Traffic Control Interface (TraCI) Server} { |
---|
65 | configure.args-append \ |
---|
66 | --disable-traci |
---|
67 | } |
---|