Ticket #5135: Portfile

File Portfile, 993 bytes (added by bfulgham@…, 19 years ago)

Portfile to build Wings

Line 
1# $Id: Portfile,v 1.1 2005/01/31 18:16:06 mww Exp $
2
3PortSystem 1.0
4
5name                    wings
6version                 0.98.29b
7categories              graphics
8platforms               darwin
9maintainers             bfulgham@mac.com
10description             Erlang 3D Modeler
11long_description        Wings 3D is a subdivision modeler inspired by \
12                                Nendo and Mirai from Izware.
13
14homepage                http://www.wings3d.com
15master_sites            sourceforge
16#distfiles              ${name}-${version}.src.tar.gz
17checksums               md5 c820a09b6f22e56d3fb97f0c26c4f3c3
18
19depends_build           port:graphics:esdl bin:erlang:erlang
20
21use_configure           no
22use_bzip2               yes
23
24build.target           
25destroot.target                 
26
27set wingsdest   ${destroot}${prefix}/lib/erlang/lib/wings-${version}
28
29post-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}