Changeset 27808
- Timestamp:
- 2007-08-14 07:39:37 (15 months ago)
- Files:
-
- 1 modified
-
trunk/dports/aqua/Platypus/Portfile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/aqua/Platypus/Portfile
r21856 r27808 1 1 # $Id$ 2 2 3 PortSystem 1.0 4 PortGroup xcode 1.0 3 5 4 6 name Platypus 5 version 3. 27 version 3.4 6 8 categories aqua devel 7 maintainers nomaintainer @macports.org9 maintainers nomaintainer 8 10 description Program for creating application wrappers around scripts. 11 9 12 long_description Platypus is a program for creating application \ 10 13 wrappers around scripts, i.e. creating Mac OS X \ … … 16 19 root using Authentication Manager and more. 17 20 18 homepage http:// sveinbjorn.sytes.net19 master_sites ${homepage}/files/software/platypus/21 homepage http://www.sveinbjorn.org/platypus/ 22 master_sites http://www.sveinbjorn.org/files/software/platypus/ 20 23 distname platypus${version}.src 21 24 use_zip yes 22 checksums md5 4dcfca127b1bfaecdbbc75c06641ad9123 platforms darwin24 25 25 set worksrcdir ${name} 26 checksums md5 775d39e01562a97739043644865c7062 \ 27 sha1 fdb9967f5f3edbb9f82e206455db21aa1e420496 \ 28 rmd160 2a1dc4cf5247c688706f7724ddfc0945d2805146 29 30 worksrcdir ${name} 26 31 27 use_configure no 32 # Dummy configure to enable universal variant. 33 use_configure yes 34 configure {} 28 35 29 build.type pbx 30 build.target -configuration Deployment -target ${name} 36 if {! [variant_isset universal]} { 37 set arch ${os.arch} 38 if {! [string compare ${os.arch} powerpc]} { 39 set arch ppc 40 } 31 41 32 destroot { 33 xinstall -d -m 755 ${destroot}/Applications/MacPorts 34 system "cp -R '${worksrcpath}'/build/Deployment/${name}.app \ 35 ${destroot}/Applications/MacPorts/${name}.app" 42 xcode.build.settings-append ARCHS=${arch} 43 xcode.destroot.settings-append ARCHS=${arch} 36 44 } 45 46 livecheck.check regex 47 livecheck.url ${homepage} 48 livecheck.regex "${name} (\\d+(?:\\.\\d+)*)" 49

