|
Revision 43931, 1.3 KB
(checked in by jmr@…, 3 weeks ago)
|
|
Lingon: update to 2.1 (#17285, maintainer timeout)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | PortGroup xcode 1.0 |
|---|
| 5 | |
|---|
| 6 | name Lingon |
|---|
| 7 | version 2.1 |
|---|
| 8 | categories aqua sysutils |
|---|
| 9 | platforms darwin |
|---|
| 10 | maintainers bfulgham@macports.org |
|---|
| 11 | homepage http://lingon.sourceforge.net/ |
|---|
| 12 | description Graphical interface for creating launchd configurations |
|---|
| 13 | |
|---|
| 14 | long_description Lingon is a graphical interface for creating launchd configuration \ |
|---|
| 15 | files and controlling them through launchctl for Mac OS X Tiger. |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | master_sites sourceforge:lingon |
|---|
| 19 | checksums md5 648c4ef122253110d28a950949c5d570 \ |
|---|
| 20 | sha1 31e4a6f9eb8193abafa1641f029c34619b856334 |
|---|
| 21 | |
|---|
| 22 | use_zip yes |
|---|
| 23 | distname ${name}Source-${version} |
|---|
| 24 | |
|---|
| 25 | pre-fetch { |
|---|
| 26 | if {[variant_isset darwin_6] || [variant_isset darwin_7] || [variant_isset darwin_8]} { |
|---|
| 27 | return -code error "${name} ${version} only builds on Mac OS X Leopard (10.5.x). Sorry." |
|---|
| 28 | } |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | use_configure no |
|---|
| 32 | |
|---|
| 33 | platform darwin 6 { } |
|---|
| 34 | platform darwin 7 { } |
|---|
| 35 | platform darwin 8 { } |
|---|
| 36 | |
|---|
| 37 | platform darwin 9 { |
|---|
| 38 | if {$xcodeversion == "2.1"} { |
|---|
| 39 | set xcodebuilddir build/Deployment |
|---|
| 40 | } |
|---|
| 41 | } |
|---|
| 42 | |
|---|
| 43 | build.type pbx |
|---|
| 44 | build.dir ${workpath}/${name}Source |
|---|
| 45 | build.target "Lingon" |
|---|
| 46 | build.args -configuration "Release" |
|---|
| 47 | |
|---|
| 48 | destroot { |
|---|
| 49 | xinstall -m 755 -d ${destroot}/Applications/MacPorts |
|---|
| 50 | file copy ${workpath}/${name}Source/build/Release/${name}.app \ |
|---|
| 51 | ${destroot}/Applications/MacPorts |
|---|
| 52 | } |
|---|