Ticket #10914: Portfile.diff
File Portfile.diff, 1022 bytes (added by markd@…, 18 years ago) |
---|
-
Portfile
old new 4 4 5 5 name spidermonkey 6 6 version 1.5 7 revision 17 revision 2 8 8 categories lang 9 9 platforms darwin 10 10 maintainers nomaintainer@macports.org … … 23 23 use_configure no 24 24 25 25 build.args -f Makefile.ref 26 # JS_THREADSAFE=YES 26 27 post-build { 27 28 system "ranlib ${worksrcpath}//Darwin_DBG.OBJ/libjs.a" 28 29 } … … 30 31 destroot { 31 32 xinstall -m 755 -d ${destroot}${prefix}/include/${name} 32 33 xinstall -m 755 ${worksrcpath}/Darwin_DBG.OBJ/js ${destroot}${prefix}/bin 33 xinstall -m 644 -W ${worksrcpath} jsapi.h Darwin_DBG.OBJ/jsautocfg.h \ 34 xinstall -m 644 ${worksrcpath}/Darwin_DBG.OBJ/jsautocfg.h \ 35 ${destroot}${prefix}/include/${name} 36 eval xinstall -m 644 [glob ${worksrcpath}/js*.h] \ 34 37 ${destroot}${prefix}/include/${name} 35 38 xinstall -m 644 ${worksrcpath}/Darwin_DBG.OBJ/libjs.a ${destroot}${prefix}/lib 39 xinstall -m 644 ${worksrcpath}/Darwin_DBG.OBJ/libjs.so ${destroot}${prefix}/lib 36 40 }