diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-04-03 00:10:39 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-04-03 00:10:39 +0800 |
commit | 145e4b9b99b48535f47129b6dc6f2dd707f33156 (patch) | |
tree | a6677717a49f894d8cf06837f37f26a69f2e57b1 /devel | |
parent | d479dcb23754a8092c48f496afd82093741c592b (diff) | |
download | freebsd-ports-gnome-145e4b9b99b48535f47129b6dc6f2dd707f33156.tar.gz freebsd-ports-gnome-145e4b9b99b48535f47129b6dc6f2dd707f33156.tar.zst freebsd-ports-gnome-145e4b9b99b48535f47129b6dc6f2dd707f33156.zip |
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
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/libhash/Makefile | 36 | ||||
-rw-r--r-- | devel/libhash/distinfo | 1 | ||||
-rw-r--r-- | devel/libhash/pkg-comment | 1 | ||||
-rw-r--r-- | devel/libhash/pkg-descr | 6 | ||||
-rw-r--r-- | devel/libhash/pkg-plist | 4 |
6 files changed, 49 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 0d42d3c5288a..6bd84c7c75be 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -256,6 +256,7 @@ SUBDIR += libglade2 SUBDIR += libgnugetopt SUBDIR += libgtop + SUBDIR += libhash SUBDIR += libmalloc SUBDIR += libmcve SUBDIR += libol diff --git a/devel/libhash/Makefile b/devel/libhash/Makefile new file mode 100644 index 000000000000..90d9b50fa954 --- /dev/null +++ b/devel/libhash/Makefile @@ -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> diff --git a/devel/libhash/distinfo b/devel/libhash/distinfo new file mode 100644 index 000000000000..36734b616518 --- /dev/null +++ b/devel/libhash/distinfo @@ -0,0 +1 @@ +MD5 (libhash-1.0.tar.gz) = cab97ab5212847baedff9241c22be629 diff --git a/devel/libhash/pkg-comment b/devel/libhash/pkg-comment new file mode 100644 index 000000000000..2a5d4679a411 --- /dev/null +++ b/devel/libhash/pkg-comment @@ -0,0 +1 @@ +A library for manipulating hash tables diff --git a/devel/libhash/pkg-descr b/devel/libhash/pkg-descr new file mode 100644 index 000000000000..8716d9db06ae --- /dev/null +++ b/devel/libhash/pkg-descr @@ -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 diff --git a/devel/libhash/pkg-plist b/devel/libhash/pkg-plist new file mode 100644 index 000000000000..d29cab85b3dc --- /dev/null +++ b/devel/libhash/pkg-plist @@ -0,0 +1,4 @@ +include/hash.h +lib/libhash.so.1 +lib/libhash.so +lib/libhash.a |