Ticket #14319: iterm-0.9.6.2.diff

File iterm-0.9.6.2.diff, 1.4 KB (added by raimue (Rainer Müller), 15 years ago)
  • Portfile

     
    11# $Id$
    22
    33PortSystem 1.0
     4PortGroup xcode 1.0
     5
    46name            iTerm
    5 version         0.8.2
     7version         0.9.6
     8set svntag      RC_[strsed $version {g/\./_/}]
    69categories      aqua shells
    7 maintainers     waqar@macports.org
     10maintainers     waqar
    811description     Enhanced terminal emulator program for Mac OS X
    912long_description        \
    1013        iTerm is a full featured terminal emulation program written     \
     
    1417        interface, and an emphasis on complete international support.
    1518
    1619homepage        http://iterm.sourceforge.net
    17 platforms       macosx
    1820
    19 fetch.type      cvs
    20 cvs.root        :pserver:anonymous@iterm.cvs.sourceforge.net:/cvsroot/iterm
    21 cvs.module      ${name}
    22 
    23 worksrcdir      ${name}
    24 use_configure   no
    25 
    26 build.type      pbx
    27 build.target    -target ${name}
    28 build.args      build -project ${name}.xcodeproj
    29 
    30 destroot        {
    31         xinstall -d -m 755 ${destroot}/Applications/MacPorts
    32         file copy ${build.dir}/build/Default/${name}.app \
    33                 ${destroot}/Applications/MacPorts/${name}.app
     21fetch.type      svn
     22svn.url         http://iterm.svn.sourceforge.net/svnroot/iterm/tags/$svntag/
     23worksrcdir      ${svntag}
     24
     25xcode.project   ${name}.xcodeproj
     26xcode.target    ${name}
     27
     28# Remove this after MacPorts 1.7.1 is released
     29pre-destroot {
     30        xinstall -d -m 755 ${destroot}${applications_dir}
     31}
     32
     33destroot {
     34        file copy ${build.dir}/build/Deployment/${name}.app \
     35                ${destroot}${applications_dir}/${name}.app
    3436}