Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/IcyJuice/Portfile

Revision 38908, 1.5 KB (checked in by ryandesign@…, 5 months ago)

IcyJuice: use ${applications_dir}

  • 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                    IcyJuice
7set my_name             "Icy Juice"
8version                 1.0.2
9categories              aqua net
10maintainers             nomaintainer
11homepage                http://www.mitzpettel.com/software/icyjuice.html
12description             Cocoa ICQ client
13
14long_description        IcyJuice is a cocoa icq client with file transfers \
15                        support and multiple accounts lists.
16                       
17master_sites    http://www.mitzpettel.com/download/
18distname                ${name}${version}src
19extract.suffix  .tgz
20
21checksums               md5 83fe12d8472733d799703fb9a0d84bee \
22                                sha1 1d8789eb1cf1e2d3d1d939e4a2705ad0c24aadba \
23                                rmd160 fbdaa97dea9a52ca1fcbae41e50339cef0a9b243
24
25# Dummy configure to enable universal variant
26use_configure   yes
27configure               {}
28
29if {! [variant_isset universal]} {
30        set arch ${os.arch}
31        if {! [string compare ${os.arch} powerpc]} {
32                set arch ppc
33        }
34
35        xcode.build.settings-append             ARCHS=${arch}
36        xcode.destroot.settings-append  ARCHS=${arch}
37}
38
39# We cannot use xcode.project here because of #12429.
40#xcode.project  "Icy Juice.xcodeproj"
41build.args              "-project \"${my_name}.xcodeproj\""
42destroot.args   "-project \"${my_name}.xcodeproj\""
43
44# Can be removed once MacPorts 1.7.0 is released
45if {![info exists applications_dir]} {
46    set applications_dir /Applications/MacPorts
47}
48
49post-destroot {
50        xinstall -d ${destroot}${applications_dir}
51        copy ${worksrcpath}/build/${xcode.configuration}/${my_name}.app \
52                ${destroot}${applications_dir}
53}
54
55livecheck.check regex
56livecheck.url   ${homepage}
57livecheck.regex "version (\\d+(?:\\.\\d+)*)"
Note: See TracBrowser for help on using the browser.