Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/fugu/Portfile

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

fugu: 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                    fugu
7set my_name             Fugu
8version                 1.2.0
9categories              aqua
10maintainers             nomaintainer
11description             A Mac OS X SFTP, SCP and SSH Frontend.
12
13long_description        Fugu is a graphical frontend to the commandline \
14                        Secure File Transfer application (SFTP). SFTP is \
15                        similar to FTP, but unlike FTP, the entire session \
16                        is encrypted, meaning no passwords are sent in \
17                        cleartext form, and is thus much less vulnerable to \
18                        third-party interception.
19
20platforms               darwin
21homepage                http://rsug.itd.umich.edu/software/fugu/
22master_sites    ${homepage}files/
23extract.suffix  .tgz
24
25checksums               md5 977b15709364f2fc26d0152a7667d379 \
26                                sha1 f52458be93a57b8f7b1438a9bf790d7b8be71247 \
27                                rmd160 6b7503b071abea4f764da9cbfc62b6d6e29ab0c2
28
29xcode.destroot.settings SKIP_INSTALL=yes
30
31# Dummy configure to enable universal variant.
32use_configure   yes
33configure               {}
34
35post-patch {
36        reinplace "s|build/|build/${xcode.configuration}/|" \
37                ${worksrcpath}/Fugu.pbproj/project.pbxproj
38}
39
40# Can be removed once MacPorts 1.7.0 is released
41if {![info exists applications_dir]} {
42    set applications_dir /Applications/MacPorts
43}
44
45post-destroot {
46        xinstall -d ${destroot}${applications_dir}
47        copy ${worksrcpath}/build/UninstalledProducts/${my_name}.app \
48                ${destroot}${applications_dir}
49}
50
51variant universal {
52        build.args              "ARCHS=\"i386 ppc\""
53        destroot.args   ${build.args}
54}
55
56livecheck.check regex
57livecheck.url   ${homepage}
58livecheck.regex "${my_name} (\\d+(?:\\.\\d+)*)"
Note: See TracBrowser for help on using the browser.