# $Id: Portfile,v 1.1 2004/11/09 17:14:09 mww Exp $

PortSystem 1.0

name			judy
version			1.0.0
categories		devel
platforms		darwin
maintainers		mww@opendarwin.org
description		general purpose dynamic array as a C callable library
long_description	Judy is a general purpose dynamic array implemented as a C \
				callable library. Judy's speed and memory usage are typically \
				better than other data storage models and improves with very \
				large data sets.

homepage		http://judy.sourceforge.net/
master_sites	sourceforge
distname		Judy-${version}
checksums		md5 4742f3bd4cb4e08e60a3216a13c3b61a

configure.args	--mandir=${prefix}/share/man \
				--enable-32-bit

variant bit64 {
	configure.args-delete	--enable-32-bit
	configure.args-append	--enable-64-bit
}

test.run		yes
test.target		check
