diff --git a/dports/aqua/iTerm2/Portfile b/dports/aqua/iTerm2/Portfile
index 5ddbe53..c39537d 100644
a
|
b
|
PortSystem 1.0 |
5 | 5 | PortGroup github 1.0 |
6 | 6 | PortGroup xcode 1.0 |
7 | 7 | |
8 | | github.setup gnachman iTerm2 2.1 v |
| 8 | github.setup gnachman iTerm2 3.0.5 v |
9 | 9 | categories aqua shells |
10 | 10 | maintainers emer.net:emer |
11 | 11 | license GPL-2+ |
… |
… |
long_description \ |
17 | 17 | |
18 | 18 | homepage http://iterm2.com/ |
19 | 19 | |
20 | | checksums rmd160 899f80c2b53cb88f8f9efa9251f141e8e2528b3a \ |
21 | | sha256 33ece870c1bf1eb9ca23a0fd06ee3ff0f95de8bf28d99d26fd3502f9e90e41fa |
| 20 | checksums rmd160 a0ba817b6772f2303a43f516e08ad95258b0b472 \ |
| 21 | sha256 a0a2b10e4a1611a9769810a0655c9b8b79b70b014c42d1d5651ef0a101676934 |
22 | 22 | |
23 | | xcode.project iTerm.xcodeproj |
24 | | xcode.target iTerm |
| 23 | xcode.target iTerm2 |
| 24 | xcode.configuration Development |
25 | 25 | |
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} { |
| 26 | if {${os.platform} eq "darwin" && ${os.major} < 12} { |
38 | 27 | 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" |
40 | 29 | return -code error "unsupported Mac OS X version" |
41 | 30 | } |
42 | 31 | } |