# $Id: Portfile 54313 2009-07-24 19:05:01Z toby@macports.org $

PortSystem 1.0
PortGroup xcode 1.0

name			Lingon
version			2.1
categories		aqua sysutils
platforms		darwin
maintainers		bfulgham
homepage		http://lingon.sourceforge.net/
description		Graphical interface for creating launchd configurations

long_description	Lingon is a graphical interface for creating launchd configuration \
			files and controlling them through launchctl for Mac OS X Tiger.
			
			
master_sites		sourceforge:lingon
checksums		md5 648c4ef122253110d28a950949c5d570 \
				sha1 31e4a6f9eb8193abafa1641f029c34619b856334

use_zip			yes
distname		${name}Source-${version}

pre-fetch {
    if {[variant_isset darwin_7] || [variant_isset darwin_8]} {
        return -code error "${name} ${version} only builds on Mac OS X Leopard (10.5.x). Sorry."
    }
}

use_configure		no

platform darwin 7 { }
platform darwin 8 { }

platform darwin 9 {
	if {$xcodeversion == "2.1"} {
		set xcodebuilddir	build/Deployment
	}
}

build.type		pbx
build.dir		${workpath}/${name}Source
build.target		"Lingon"
build.args		-configuration "Release"

destroot	{
	xinstall -m 755 -d ${destroot}/Applications/MacPorts
	file copy ${workpath}/${name}Source/build/Release/${name}.app \
		${destroot}/Applications/MacPorts
}

