diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-08-13 21:54:31 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-08-13 21:54:31 +0800 |
commit | 0208d3b4646665f50ae86f1bed44daa2bcc5a6cf (patch) | |
tree | 712e3722c0a918eba53855dbb7ef4338d117ce2d /devel/libavl | |
parent | 83733c37d4491969fccbc322ec75064d8f161249 (diff) | |
download | freebsd-ports-gnome-0208d3b4646665f50ae86f1bed44daa2bcc5a6cf.tar.gz freebsd-ports-gnome-0208d3b4646665f50ae86f1bed44daa2bcc5a6cf.tar.zst freebsd-ports-gnome-0208d3b4646665f50ae86f1bed44daa2bcc5a6cf.zip |
add libavl
A library for balanced binary trees
Diffstat (limited to 'devel/libavl')
-rw-r--r-- | devel/libavl/Makefile | 20 | ||||
-rw-r--r-- | devel/libavl/distinfo | 1 | ||||
-rw-r--r-- | devel/libavl/pkg-comment | 1 | ||||
-rw-r--r-- | devel/libavl/pkg-descr | 7 | ||||
-rw-r--r-- | devel/libavl/pkg-plist | 8 |
5 files changed, 37 insertions, 0 deletions
diff --git a/devel/libavl/Makefile b/devel/libavl/Makefile new file mode 100644 index 000000000000..0eb07b43fa6c --- /dev/null +++ b/devel/libavl/Makefile @@ -0,0 +1,20 @@ +# ex:ts=8 +# New ports collection makefile for: libavl +# Date created: Aug 13, 2001 +# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= libavl +PORTVERSION= 1.4.0 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GNU} +MASTER_SITE_SUBDIR= avl +DISTNAME= avl-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org + +GNU_CONFIGURE= yes + +.include <bsd.port.mk> diff --git a/devel/libavl/distinfo b/devel/libavl/distinfo new file mode 100644 index 000000000000..772c02fb26ee --- /dev/null +++ b/devel/libavl/distinfo @@ -0,0 +1 @@ +MD5 (avl-1.4.0.tar.gz) = 28f175eed15a6ca52f626cb04964ee12 diff --git a/devel/libavl/pkg-comment b/devel/libavl/pkg-comment new file mode 100644 index 000000000000..ad0585839092 --- /dev/null +++ b/devel/libavl/pkg-comment @@ -0,0 +1 @@ +A library for balanced binary trees diff --git a/devel/libavl/pkg-descr b/devel/libavl/pkg-descr new file mode 100644 index 000000000000..a53a5ef48e1f --- /dev/null +++ b/devel/libavl/pkg-descr @@ -0,0 +1,7 @@ +GNU libavl, a library for balanced binary trees. Balanced binary trees +provide guaranteed O(lg n) performance for list insertion, deletion, and +search operations. libavl is the most complete free balanced binary tree +library on the net today, supporting AVL trees in plain, threaded, and +right-threaded forms as well as plain red-black trees. + +WWW: http://www.msu.edu/user/pfaffben/avl/ diff --git a/devel/libavl/pkg-plist b/devel/libavl/pkg-plist new file mode 100644 index 000000000000..9f35624f92ea --- /dev/null +++ b/devel/libavl/pkg-plist @@ -0,0 +1,8 @@ +lib/libavl.a +include/avl.h +include/avlt.h +include/avltr.h +include/rb.h +@unexec install-info --delete %D/info/avl.info %D/info/dir +info/avl.info +@exec install-info %D/info/avl.info %D/info/dir |