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 | PortGroup cmake 1.0 |
---|
6 | |
---|
7 | name farsa |
---|
8 | version 1.4.0 |
---|
9 | revision 2 |
---|
10 | categories devel |
---|
11 | maintainers laral.istc.cnr.it:emmegian openmaintainer |
---|
12 | platforms darwin |
---|
13 | license GPL |
---|
14 | description FARSA is a collection of integrated open-source object-oriented C++ \ |
---|
15 | libraries that allow to experiment with autonomous robots. |
---|
16 | long_description It allow to simulate different robotic platforms (the iCub humanoid \ |
---|
17 | and the khepera, e-puck, and marxbot wheeled robots), design the \ |
---|
18 | sensory-motor system of the robot/s, design the environment in which \ |
---|
19 | the robot/s operate, design the robot neural controller, and adapt \ |
---|
20 | the free parameters of the robot. |
---|
21 | |
---|
22 | homepage http://laral.istc.cnr.it/farsa |
---|
23 | |
---|
24 | distname farsa-${version} |
---|
25 | master_sites sourceforge:farsa |
---|
26 | |
---|
27 | universal_variant yes |
---|
28 | |
---|
29 | checksums farsa-${version}.tar.gz \ |
---|
30 | rmd160 ba5b1b829780eb88edde0cc9d6f4f2a2a693d0bc \ |
---|
31 | sha256 5d3bde7030657851176bd3c06f002399ea5c7de47d537a7fb4238b156e37caaf |
---|
32 | |
---|
33 | depends_lib port:gsl \ |
---|
34 | port:qt4-mac |
---|
35 | |
---|
36 | platform darwin 12 { |
---|
37 | configure.sdkroot ${developer_dir}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk |
---|
38 | } |
---|
39 | platform darwin 13 { |
---|
40 | configure.sdkroot ${developer_dir}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk |
---|
41 | } |
---|
42 | |
---|
43 | configure.args-append -DUSE_GSL=ON -DEXPERIMENTAL_NEWTON_FROMSOURCE=ON |
---|
44 | |
---|