Changeset 27934
- Timestamp:
- 2007-08-16 03:42:43 (15 months ago)
- Location:
- trunk/dports/aqua/fugu
- Files:
-
- 1 removed
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/aqua/fugu/Portfile
r21857 r27934 1 1 # $Id$ 2 PortSystem 1.0 2 3 PortSystem 1.0 4 PortGroup xcode 1.0 3 5 4 6 name fugu 7 set my_name Fugu 5 8 version 1.2.0 6 9 categories aqua 7 maintainers nomaintainer @macports.org10 maintainers nomaintainer 8 11 description A Mac OS X SFTP, SCP and SSH Frontend. 12 9 13 long_description Fugu is a graphical frontend to the commandline \ 10 14 Secure File Transfer application (SFTP). SFTP is \ … … 13 17 cleartext form, and is thus much less vulnerable to \ 14 18 third-party interception. 19 15 20 platforms darwin 16 homepage http://rsug.itd.umich.edu/software/fugu 17 master_sites ${homepage}/files/ 18 extract.suffix .tgz 19 checksums md5 977b15709364f2fc26d0152a7667d379 21 homepage http://rsug.itd.umich.edu/software/fugu/ 22 master_sites ${homepage}files/ 23 extract.suffix .tgz 20 24 21 use_configure no 25 checksums md5 977b15709364f2fc26d0152a7667d379 \ 26 sha1 f52458be93a57b8f7b1438a9bf790d7b8be71247 \ 27 rmd160 6b7503b071abea4f764da9cbfc62b6d6e29ab0c2 22 28 23 build.type pbx 24 build.args -buildstyle Deployment -alltargets 25 build.target 29 xcode.destroot.settings SKIP_INSTALL=yes 26 30 27 patchfiles patch-project.pbxproj 31 # Dummy configure to enable universal variant. 32 use_configure yes 33 configure {} 28 34 29 destroot { 30 xinstall -d -m 0755 ${destroot}/Applications/MacPorts 31 if {$xcodeversion == "2.1"} { 32 cd ${worksrcpath}/build/Deployment 33 } else { 34 cd ${worksrcpath}/build 35 } 36 file copy Fugu.app ${destroot}/Applications/MacPorts/ 35 post-patch { 36 reinplace "s|build/|build/${xcode.configuration}/|" \ 37 ${worksrcpath}/Fugu.pbproj/project.pbxproj 37 38 } 39 40 post-destroot { 41 xinstall -d ${destroot}/Applications/MacPorts 42 copy ${worksrcpath}/build/UninstalledProducts/${my_name}.app \ 43 ${destroot}/Applications/MacPorts 44 } 45 46 variant universal { 47 build.args "ARCHS=\"i386 ppc\"" 48 destroot.args ${build.args} 49 } 50 51 livecheck.check regex 52 livecheck.url ${homepage} 53 livecheck.regex "${my_name} (\\d+(?:\\.\\d+)*)" 54

