Ticket #45289: Portfile

File Portfile, 1.6 KB (added by gmaxera@…, 10 years ago)

Portfile of farsa

Line 
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
4PortSystem          1.0
5PortGroup           cmake 1.0
6
7name                farsa
8version             1.4.0
9revision            2
10categories          devel
11maintainers         laral.istc.cnr.it:emmegian openmaintainer
12platforms           darwin
13license             GPL
14description         FARSA is a collection of integrated open-source object-oriented C++ \
15                                        libraries that allow to experiment with autonomous robots.
16long_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
22homepage            http://laral.istc.cnr.it/farsa
23
24distname                        farsa-${version}
25master_sites        sourceforge:farsa
26
27universal_variant   yes
28
29checksums           farsa-${version}.tar.gz \
30                                        rmd160  ba5b1b829780eb88edde0cc9d6f4f2a2a693d0bc \
31                                        sha256  5d3bde7030657851176bd3c06f002399ea5c7de47d537a7fb4238b156e37caaf
32
33depends_lib         port:gsl \
34                                        port:qt4-mac
35
36platform darwin 12 {
37        configure.sdkroot ${developer_dir}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk
38}
39platform darwin 13 {
40        configure.sdkroot ${developer_dir}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk
41}
42
43configure.args-append   -DUSE_GSL=ON -DEXPERIMENTAL_NEWTON_FROMSOURCE=ON
44