2002-04-02 18:10:39 +02:00
|
|
|
# New ports collection makefile for: libhash
|
|
|
|
# Date created: 14 Jan 2002
|
|
|
|
# Whom: Andrew <andrew@ugh.net.au>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= libhash
|
2005-02-06 21:01:17 +01:00
|
|
|
PORTVERSION= 1.0.3
|
2002-04-02 18:10:39 +02:00
|
|
|
CATEGORIES= devel
|
2006-06-20 00:20:58 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_GENTOO}
|
|
|
|
MASTER_SITE_SUBDIR= distfiles
|
2002-04-02 18:10:39 +02:00
|
|
|
|
2006-06-14 09:26:50 +02:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-02-21 12:23:04 +01:00
|
|
|
COMMENT= A library for manipulating hash tables
|
2002-04-02 18:10:39 +02:00
|
|
|
|
|
|
|
WRKSRC= ${WRKDIR}/libhash
|
|
|
|
|
|
|
|
MAN3= libhash.3 libhash_convenience.3
|
|
|
|
MANCOMPRESSED= maybe
|
|
|
|
MLINKS= libhash.3 hash_initialise.3 \
|
|
|
|
libhash.3 hash_insert.3 \
|
|
|
|
libhash.3 hash_retrieve.3 \
|
|
|
|
libhash.3 hash_delete.3 \
|
|
|
|
libhash.3 hash_iterator_initialise.3 \
|
|
|
|
libhash.3 hash_fetch_next.3 \
|
|
|
|
libhash.3 hash_iterator_deinitialise.3 \
|
|
|
|
libhash.3 hash_deinitialise.3 \
|
|
|
|
libhash_convenience.3 hash_compare_int.3 \
|
|
|
|
libhash_convenience.3 hash_compare_string.3 \
|
|
|
|
libhash_convenience.3 hash_hash_int.3 \
|
|
|
|
libhash_convenience.3 hash_hash_string.3 \
|
|
|
|
libhash_convenience.3 hash_copy_int.3 \
|
|
|
|
libhash_convenience.3 hash_copy_string.3
|
|
|
|
|
2006-08-15 00:55:18 +02:00
|
|
|
USE_LDCONFIG= yes
|
2002-04-02 18:10:39 +02:00
|
|
|
|
2003-04-25 01:13:46 +02:00
|
|
|
.if defined(NOPROFILE)
|
2006-06-20 00:20:58 +02:00
|
|
|
PLIST_SUB+= PROFILE="@comment "
|
2003-04-25 01:13:46 +02:00
|
|
|
.else
|
2006-06-20 00:20:58 +02:00
|
|
|
PLIST_SUB+= PROFILE=""
|
2003-04-25 01:13:46 +02:00
|
|
|
.endif
|
|
|
|
|
2002-04-02 18:10:39 +02:00
|
|
|
.include <bsd.port.mk>
|