aboutsummaryrefslogtreecommitdiffstats
path: root/devel/cmph
Commit message (Collapse)AuthorAgeFilesLines
* Support stagebapt2014-01-212-3/+1
|
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-4/+2
| | | | devel part 1)
* Fix MASTER_SITES.rakuco2013-05-121-1/+1
| | | | | | | Version 2.0 is located one directory up. PR: ports/178460 Submitted by: John Marino <draco@marino.st> (maintainer)
* This changes almost all the "gnomehack" only USE_GNOME cases to USES= pathfix.eadler2013-03-191-1/+1
| | | | | | | | | If a port used other USE_GNOME items it was untouched. The ports that used other USES were fixed by hand. PR: ports/177081 Reviewed by: bapt Approved by: portmgr (miwi)
* Update to version 2.0.demon2013-02-283-3/+4
| | | | Maintainer timeout.
* -remove MD5ohauer2011-07-031-1/+0
|
* CMPH - C Minimal Perfect Hashing Libraryamdmi32010-08-184-0/+49
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>