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/ Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->amdmi3 I'll take it.
* Jesse Kempf (jkempf@davisvision.com) wrote: It'll require some minor fixes. > X# Whom: jessekempf@gmail.com We prefer real name here in addition to mail. > XPORTNAME= cmph Please use tabs, not spaces for identation. > XMASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} That is the preferred way - one line shorter and a bit more flexible. > XGNU_CONFIGURE= yes Will also require USE_GNOME= gnomehack that patches configure/Makefile.* in many ways; here it's useful to make it install .pc file into libdata/pkg-config (where .pc files are stored on FreeBSD) instead of lib/pkg-config. libdata/pkg-config should not be dirrm'd in pkg-plist. USE_LDCONFIG= yes as the port installs shared library. MAN1= cmph.1 and remove man from pkg-plist. This correctly deals with manpage installation Most of these problems are listed by portlint (ports-mgmt/portlint) - you will find it useful to check your ports before submission. -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://www.amdmi3.ru
State Changed From-To: open->feedback Awaiting submitter's feedback
Dmitry Marakasov wrote: > * Jesse Kempf (jkempf@davisvision.com) wrote: > > It'll require some minor fixes. > >> X# Whom: jessekempf@gmail.com > > We prefer real name here in addition to mail. > Fixed. My mistake. >> XPORTNAME= cmph > > Please use tabs, not spaces for identation. Fixed. >> XMASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} > > That is the preferred way - one line shorter and a bit more flexible. Fixed. >> XGNU_CONFIGURE= yes > > Will also require > > USE_GNOME= gnomehack > that patches configure/Makefile.* in many ways; here it's useful to make > it install .pc file into libdata/pkg-config (where .pc files are stored > on FreeBSD) instead of lib/pkg-config. > > libdata/pkg-config should not be dirrm'd in pkg-plist. Fixed. > USE_LDCONFIG= yes > as the port installs shared library. Fixed. > MAN1= cmph.1 > and remove man from pkg-plist. This correctly deals with manpage installation Fixed. > Most of these problems are listed by portlint (ports-mgmt/portlint) - you > will find it useful to check your ports before submission. I'd been invoking portlint as `portlint', not `portlint -A'. My mistake. I've attached an updated sharchive with all the fixes. Thanks, -Jesse ------------------------------------------------------------------------ The information contained in this communication is intended only for the use of the recipient(s) named above. It may contain information that is privileged or confidential, and may be protected by State and/or Federal Regulations. If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication, or any of its contents, is strictly prohibited. If you have received this communication in error, please return it to the sender immediately and delete the original message and any copy of it from your computer system. If you have any questions concerning this message, please contact the sender. ------------------------------------------------------------------------
State Changed From-To: feedback->open Submitter has fixed.
amdmi3 2010-08-17 20:32:16 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/cmph Makefile distinfo pkg-descr pkg-plist Log: 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> Revision Changes Path 1.4013 +1 -0 ports/devel/Makefile 1.1 +21 -0 ports/devel/cmph/Makefile (new) 1.1 +3 -0 ports/devel/cmph/distinfo (new) 1.1 +16 -0 ports/devel/cmph/pkg-descr (new) 1.1 +9 -0 ports/devel/cmph/pkg-plist (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed New port added. Thanks!