Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/Lingon/Portfile

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
3PortSystem 1.0
4PortGroup xcode 1.0
5
6name                    Lingon
7version                 2.1
8categories              aqua sysutils
9platforms               darwin
10maintainers             bfulgham@macports.org
11homepage                http://lingon.sourceforge.net/
12description             Graphical interface for creating launchd configurations
13
14long_description        Lingon is a graphical interface for creating launchd configuration \
15                        files and controlling them through launchctl for Mac OS X Tiger.
16                       
17                       
18master_sites            sourceforge:lingon
19checksums               md5 648c4ef122253110d28a950949c5d570 \
20                                sha1 31e4a6f9eb8193abafa1641f029c34619b856334
21
22use_zip                 yes
23distname                ${name}Source-${version}
24
25pre-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
31use_configure           no
32
33platform darwin 6 { }
34platform darwin 7 { }
35platform darwin 8 { }
36
37platform darwin 9 {
38        if {$xcodeversion == "2.1"} {
39                set xcodebuilddir       build/Deployment
40        }
41}
42
43build.type              pbx
44build.dir               ${workpath}/${name}Source
45build.target            "Lingon"
46build.args              -configuration "Release"
47
48destroot        {
49        xinstall -m 755 -d ${destroot}/Applications/MacPorts
50        file copy ${workpath}/${name}Source/build/Release/${name}.app \
51                ${destroot}/Applications/MacPorts
52}
Note: See TracBrowser for help on using the browser.