Ticket #47965: iTerm2-3.0.5.diff

File iTerm2-3.0.5.diff, 1.6 KB (added by markemer (Mark Anderson), 8 years ago)
  • dports/aqua/iTerm2/Portfile

    diff --git a/dports/aqua/iTerm2/Portfile b/dports/aqua/iTerm2/Portfile
    index 5ddbe53..c39537d 100644
    a b PortSystem 1.0 
    55PortGroup   github 1.0
    66PortGroup   xcode 1.0
    77
    8 github.setup gnachman iTerm2 2.1 v
     8github.setup gnachman iTerm2 3.0.5 v
    99categories  aqua shells
    1010maintainers emer.net:emer
    1111license         GPL-2+
    long_description \ 
    1717
    1818homepage        http://iterm2.com/
    1919
    20 checksums       rmd160  899f80c2b53cb88f8f9efa9251f141e8e2528b3a \
    21                 sha256  33ece870c1bf1eb9ca23a0fd06ee3ff0f95de8bf28d99d26fd3502f9e90e41fa
     20checksums       rmd160  a0ba817b6772f2303a43f516e08ad95258b0b472 \
     21                sha256  a0a2b10e4a1611a9769810a0655c9b8b79b70b014c42d1d5651ef0a101676934
    2222
    23 xcode.project   iTerm.xcodeproj
    24 xcode.target    iTerm
     23xcode.target iTerm2
     24xcode.configuration Development
    2525
    26 post-patch {
    27     reinplace "s|^version *= *.*$|version = \"${version}\"|" ${worksrcpath}/updateVersion.py
    28     # disable Sparkle autoupdate
    29     reinplace "s|.*Sparkle.*||g" ${worksrcpath}/${xcode.project}/project.pbxproj
    30 }
    31 
    32 destroot {
    33     file copy ${build.dir}/build/Deployment/iTerm.app \
    34         ${destroot}${applications_dir}/${name}.app
    35 }
    36 
    37 if {${os.platform} eq "darwin" && ${os.major} < 11} {
     26if {${os.platform} eq "darwin" && ${os.major} < 12} {
    3827    pre-fetch {
    39         ui_error "${subport} @${version} requires Mac OS X 10.7 or newer"
     28        ui_error "${subport} @${version} requires Mac OS X 10.8 or newer"
    4029        return -code error "unsupported Mac OS X version"
    4130    }
    4231}