Ticket #6330: iTerm.Portfile.diff

File iTerm.Portfile.diff, 734 bytes (added by bfulgham@…, 18 years ago)

Patch to correct build problems with iTerm 0.8.1

  • aqua/iTerm/Portfile

    old new  
    2424use_configure   no
    2525
    2626build.type      pbx
    27 build.target    -target ${name}
     27build.target    -target ${name} -configuration Deployment
    2828build.args      build -project ${name}.xcode
    2929
     30set xcodebuilddir       build
     31platform darwin 8       {
     32        if {$xcodeversion == "2.1"} {
     33                set xcodebuilddir       build/Deployment
     34        }
     35}
     36
    3037destroot        {
    3138        xinstall -d -m 755 ${destroot}/Applications/DarwinPorts
    32         file copy ${build.dir}/build/${name}.app \
     39        file copy ${build.dir}/${xcodebuilddir}/${name}.app \
    3340                ${destroot}/Applications/DarwinPorts/${name}.app
    3441}