1 | # $Id: Portfile,v 1.1 2005/01/31 18:16:06 mww Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name wings |
---|
6 | version 0.98.29b |
---|
7 | categories graphics |
---|
8 | platforms darwin |
---|
9 | maintainers bfulgham@mac.com |
---|
10 | description Erlang 3D Modeler |
---|
11 | long_description Wings 3D is a subdivision modeler inspired by \ |
---|
12 | Nendo and Mirai from Izware. |
---|
13 | |
---|
14 | homepage http://www.wings3d.com |
---|
15 | master_sites sourceforge |
---|
16 | #distfiles ${name}-${version}.src.tar.gz |
---|
17 | checksums md5 c820a09b6f22e56d3fb97f0c26c4f3c3 |
---|
18 | |
---|
19 | depends_build port:graphics:esdl bin:erlang:erlang |
---|
20 | |
---|
21 | use_configure no |
---|
22 | use_bzip2 yes |
---|
23 | |
---|
24 | build.target |
---|
25 | destroot.target |
---|
26 | |
---|
27 | set wingsdest ${destroot}${prefix}/lib/erlang/lib/wings-${version} |
---|
28 | |
---|
29 | post-destroot { |
---|
30 | cd ${worksrcpath} |
---|
31 | xinstall -d -m 0755 ${destroot}${prefix}/share/doc/${name} |
---|
32 | xinstall -m 0644 README AUTHORS license.terms ${destroot}${prefix}/share/doc/${name} |
---|
33 | |
---|
34 | xinstall -d -m 0755 ${wingsdest} |
---|
35 | xinstall -d -m 0755 ${wingsdest}/patches |
---|
36 | |
---|
37 | file copy ${worksrcpath}/plugins ${wingsdest} |
---|
38 | file copy ${worksrcpath}/ebin ${wingsdest} |
---|
39 | } |
---|