Ticket #31946: FFView-0.9.10.diff
File FFView-0.9.10.diff, 1.6 KB (added by ryandesign (Ryan Carsten Schmidt), 13 years ago) |
---|
-
Portfile
4 4 PortGroup xcode 1.0 5 5 6 6 name FFView 7 version 0.9. 97 version 0.9.10 8 8 categories aqua graphics 9 9 maintainers phw 10 10 description fast OpenGL-powered picture viewer … … 23 23 [suffix FFEXIF-src-0.5.2] 24 24 25 25 checksums [suffix ${distname}] \ 26 md5 71d2ac2b074ff3739c9947bfe776adb8\27 sha1 e75a1ee71801e1cb485c946b45dbf15fb26f221e\28 rmd160 a300cd7a941a13726229f020e06657127f9ac05a\26 md5 6d7a23eb72fce5c6013862bb94269ca7 \ 27 sha1 0c09a4e06ed6498055837bf81150d5116a70c672 \ 28 rmd160 32160fb699b5619c8ab5f7fbc50bb6256c2eb05b \ 29 29 [suffix FFArchive-src-0.8.1] \ 30 30 md5 60cc021380de3d05480345aa29783b10 \ 31 31 sha1 4b6aa52e2c444c3b4b31604f3cac28a8b44c25fe \ … … 39 39 40 40 xcode.target ${name} 41 41 42 if {! [variant_isset universal]} {43 set arch ${os.arch}44 if {! [string compare ${arch} powerpc]} {45 set arch ppc46 }47 48 xcode.build.settings ARCHS=${arch}49 xcode.destroot.settings ARCHS=${arch}50 }51 52 42 pre-build { 53 43 foreach {framework} {FFArchive FFEXIF} { 54 system "cd ${workpath}/${framework} &&\55 ${build.cmd} -configuration ${xcode.configuration} ${xcode.build.settings}"44 system -W ${workpath}/${framework} \ 45 "${build.cmd} -configuration ${xcode.configuration} ${xcode.build.settings}" 56 46 } 57 47 } 58 59 variant universal {}60