Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/MultiTerm/Portfile

Revision 28955, 1.2 KB (checked in by nox@…, 16 months ago)

MultiTerm:

  • Don't use cd anymore.
  • Added universal support.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem      1.0
4PortGroup       xcode 1.0
5
6name            MultiTerm
7version         0.13
8categories      aqua sysutils
9maintainers     nomaintainer
10description     MultiTerm is an extendible Terminal Emulation
11
12long_description \
13    MultiTerm aims to become an extendible Terminal Emulation \
14    which provides a high quality user interface for everyday \
15    terminal work.
16
17homepage        http://www.13thfloor.at/${name}/
18master_sites    ${homepage}
19distname        ${name}-V${version}
20   
21checksums       md5 a71d8733c133e1a7fdc92a3f8fb8d4bf \
22                sha1 849cbb743b3ade445d2ad5936a61f8bde2213b5e \
23                rmd160 a6d1a71998326d3e827a05f1154e3376517d6c37
24
25worksrcdir      ${name}
26
27pre-build {
28    touch ${worksrcpath}/gpl.html ${worksrcpath}/gpl.txt
29}
30
31variant universal {
32    post-patch {
33        reinplace -E "/OTHER_CFLAGS =/s|\"\"|\"${configure.universal_cflags}\"|" \
34            ${worksrcpath}/${name}.pbproj/project.pbxproj
35        reinplace -E "/OTHER_LDFLAGS =/s|\"\"|\"${configure.universal_ldflags}\"|" \
36            ${worksrcpath}/${name}.pbproj/project.pbxproj
37    }
38}
39
40livecheck.check regex
41livecheck.url   ${homepage}
42livecheck.regex "Application Prototype V(\\d+(?:\\.\\d+)*)"
Note: See TracBrowser for help on using the browser.