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-plugins |
---|
8 | version 1.4.0 |
---|
9 | revision 1 |
---|
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-plugins-${version} |
---|
25 | master_sites sourceforge:farsa |
---|
26 | |
---|
27 | universal_variant yes |
---|
28 | |
---|
29 | checksums farsa-plugins-${version}.tar.gz \ |
---|
30 | rmd160 2ef32ad422c55342e9794b3aec16e149ede826fb \ |
---|
31 | sha256 b6021ad48ec2cc65ce3849494938cf8d9837cdbc531b1ee27a00236dc766a232 |
---|
32 | |
---|
33 | depends_lib port:farsa |
---|
34 | |
---|
35 | platform darwin 12 { |
---|
36 | configure.sdkroot ${developer_dir}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk |
---|
37 | } |
---|
38 | platform darwin 13 { |
---|
39 | configure.sdkroot ${developer_dir}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk |
---|
40 | } |
---|
41 | |
---|
42 | pre-configure { |
---|
43 | xinstall -m 755 ${filespath}/CMakeLists.txt ${worksrcpath} |
---|
44 | } |
---|
45 | |
---|
46 | #configure.args-append ${worksrcpath}/BraitenbergExperiment |
---|
47 | |
---|