This C library provides functions for manipulating in memory hash tables

(aka associative arrays). Data is stored as void *'s so any data structure
can be stored.

PR:		33859
Submitted by:	andrew@ugh.net.au
This commit is contained in:
Dirk Meyer 2002-04-02 16:10:39 +00:00
parent 111d55e923
commit 5c64df1887
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57212
6 changed files with 49 additions and 0 deletions

View File

@ -256,6 +256,7 @@
SUBDIR += libglade2
SUBDIR += libgnugetopt
SUBDIR += libgtop
SUBDIR += libhash
SUBDIR += libmalloc
SUBDIR += libmcve
SUBDIR += libol

36
devel/libhash/Makefile Normal file
View File

@ -0,0 +1,36 @@
# New ports collection makefile for: libhash
# Date created: 14 Jan 2002
# Whom: Andrew <andrew@ugh.net.au>
#
# $FreeBSD$
#
PORTNAME= libhash
PORTVERSION= 1.0
CATEGORIES= devel
MASTER_SITES= ftp://ftp.ugh.net.au/pub/unix/libhash/
MAINTAINER= andrew@ugh.net.au
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
INSTALLS_SHLIB= yes
.include <bsd.port.mk>

1
devel/libhash/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (libhash-1.0.tar.gz) = cab97ab5212847baedff9241c22be629

View File

@ -0,0 +1 @@
A library for manipulating hash tables

6
devel/libhash/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
This C library provides functions for manipulating in memory hash tables (aka
associative arrays). Data is stored as void *'s so any data structure can be
stored.
Andrew Stevenson
andrew@ugh.net.au

4
devel/libhash/pkg-plist Normal file
View File

@ -0,0 +1,4 @@
include/hash.h
lib/libhash.so.1
lib/libhash.so
lib/libhash.a