freebsd-ports/devel/cmph/Makefile
Dmitry Marakasov 5487d31c1e CMPH - C Minimal Perfect Hashing Library
A perfect hash function maps a static set of n keys into a set of m integer
numbers without collisions, where m is greater than or equal to n. If m is equal
to n, the function is called minimal.

Minimal perfect hash functions are widely used for memory efficient storage and
fast retrieval of items from static sets, such as words in natural languages,
reserved words in programming languages or interactive systems, universal
resource locations (URLs) in Web search engines, or item sets in data mining
techniques. Therefore, there are applications for minimal perfect hash functions
in information retrieval systems, database systems, language translation
systems, electronic commerce systems, compilers, operating systems, among
others.

WWW:    http://cmph.sourceforge.net/

PR:		149248
Submitted by:	Jesse Kempf <jkempf@davisvision.com>
2010-08-17 20:32:16 +00:00

22 lines
432 B
Makefile

# New ports collection makefile for: cmph
# Date created: 30 Jul 2010
# Whom: Jesse Kempf (jessekempf@gmail.com)
# $FreeBSD$
#
PORTNAME= cmph
PORTVERSION= 0.9
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= jessekempf@gmail.com
COMMENT= Minimal perfect hashes for C
GNU_CONFIGURE= yes
USE_GNOME= gnomehack
USE_LDCONFIG= yes
MAN1= cmph.1
.include <bsd.port.mk>