Ticket #20722: Portfile

File Portfile, 1.5 KB (added by lrem@…, 15 years ago)

Corrected Portfile

Line 
1# $Id$
2
3PortSystem              1.0
4
5name                    opal
6version                 0.4.0
7revision                1
8categories              devel
9platforms               darwin
10maintainers             nomaintainer
11
12homepage                http://opal.sourceforge.net/
13master_sites            sourceforge:opal
14distname                ${name}-${version}-src
15worksrcdir              ${name}-${version}-src
16use_zip                 yes
17
18description             A high-level interface for low-level physics engines
19
20long_description        OPAL is a high-level interface for low-level physics\
21                        engines used in games, robotics simulations, and other\
22                        3D applications.  Features a simple C++ API, intuitive\
23                        objects (e.g. Solids, Joints, Motors, Sensors), and\
24                        XML-based file storage for complex objects.
25 
26
27checksums               md5     f000ba644185f49cafcfb3480cc1063a \
28                        sha1    550359a1fb1f75f5e343d123383cbc659136dabd \
29                        rmd160  e9a1ab4a08198aeebfe5784868a2ae68b0b145fc
30
31depends_build           port:scons
32
33depends_lib             port:ode
34
35use_configure           no
36
37use_parallel_build      yes
38
39build.cmd               scons
40build.target           
41#build.args             DESTDIR=${destroot}\
42                        prefix=${prefix}
43build.args              extra_include_path=/opt/local/include/\
44                        extra_lib_path=/opt/local/lib\
45                        ODE
46
47patchfiles              patch-src-SConstruct.diff
48pre-build {
49        reinplace "s|@prefix@|${prefix}|" ${workpath}/${distname}/SConstruct
50}
51
52destroot.cmd            scons
53destroot.destdir        prefix=${destroot}${prefix}
54destroot.args           ${build.args}