| 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
|---|
| 2 | # $Id$ |
|---|
| 3 | |
|---|
| 4 | PortSystem 1.0 |
|---|
| 5 | PortGroup xcode 1.0 |
|---|
| 6 | |
|---|
| 7 | name iTerm2 |
|---|
| 8 | version alpha16 |
|---|
| 9 | categories shells aqua sysutils |
|---|
| 10 | platforms darwin |
|---|
| 11 | maintainers gmail.com:fuzzyTew |
|---|
| 12 | description The Terminal Re-redefined |
|---|
| 13 | long_description iTerm2 is a replacement for Terminal and the successor to iTerm. It works on\ |
|---|
| 14 | Macs with Leopard or Snow Leopard. Its focus is on performance,\ |
|---|
| 15 | internationalization, and supporting innovative features that make your life\ |
|---|
| 16 | better. |
|---|
| 17 | homepage http://sites.google.com/site/iterm2home/ |
|---|
| 18 | |
|---|
| 19 | worksrcdir ${version} |
|---|
| 20 | fetch.type svn |
|---|
| 21 | svn.url http://iterm2.googlecode.com/svn/tags/${worksrcdir} |
|---|
| 22 | |
|---|
| 23 | xcode.target iTerm |
|---|
| 24 | xcode.project ${xcode.target}.xcodeproj |
|---|
| 25 | |
|---|
| 26 | macosx_deployment_target 10.5 |
|---|
| 27 | |
|---|
| 28 | destroot { |
|---|
| 29 | file copy ${build.dir}/build/Deployment/${xcode.target}.app \ |
|---|
| 30 | ${destroot}${applications_dir}/${xcode.target}.app |
|---|
| 31 | } |
|---|