diff options
author | alane <alane@FreeBSD.org> | 2003-02-01 04:41:32 +0000 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2003-02-01 04:41:32 +0000 |
commit | cbacda0d20e4eea21a20c91f1e64dba9ad91d9c2 (patch) | |
tree | 1b56704705c5efc620a78df43b388f4bd2f1a829 /devel/ossp-al | |
parent | 64098914bbf613979de17c86687e45fb4011e8d8 (diff) | |
download | FreeBSD-ports-cbacda0d20e4eea21a20c91f1e64dba9ad91d9c2.zip FreeBSD-ports-cbacda0d20e4eea21a20c91f1e64dba9ad91d9c2.tar.gz |
Data buffer that can move, assemble, and truncate chunks of data without
any copying.
Diffstat (limited to 'devel/ossp-al')
-rw-r--r-- | devel/ossp-al/Makefile | 29 | ||||
-rw-r--r-- | devel/ossp-al/distinfo | 1 | ||||
-rw-r--r-- | devel/ossp-al/files/manpages.mk | 1 | ||||
-rw-r--r-- | devel/ossp-al/pkg-comment | 1 | ||||
-rw-r--r-- | devel/ossp-al/pkg-descr | 10 | ||||
-rw-r--r-- | devel/ossp-al/pkg-plist | 6 |
6 files changed, 48 insertions, 0 deletions
diff --git a/devel/ossp-al/Makefile b/devel/ossp-al/Makefile new file mode 100644 index 0000000..2c6ed02 --- /dev/null +++ b/devel/ossp-al/Makefile @@ -0,0 +1,29 @@ +# ex:ts=8 -*-mode: makefile-*- +# +# New ports collection makefile for: ossp-al +# Date created: 2003-01-31 +# Whom: Alan Eldridge <alane@geeksrus.net> +# +# $FreeBSD$ +# + +PORTNAME= al +PORTVERSION= 0.9.1 +PORTREVISION= 0 +PORTEPOCH= 0 +CATEGORIES= devel +MASTER_SITES= ftp://ftp.ossp.org/pkg/lib/al/ +PKGNAMEPREFIX= ossp- + +MAINTAINER= alane@FreeBSD.org + +LIB_DEPENDS= ex.10:${.CURDIR}/../../devel/ossp-ex + +USE_GMAKE= yes +GNU_CONFIGURE= yes + +.include <bsd.port.pre.mk> +.include "${FILESDIR}/manpages.mk" +.include <bsd.port.post.mk> + +#EOF diff --git a/devel/ossp-al/distinfo b/devel/ossp-al/distinfo new file mode 100644 index 0000000..435d1e2 --- /dev/null +++ b/devel/ossp-al/distinfo @@ -0,0 +1 @@ +MD5 (al-0.9.1.tar.gz) = eba90e56fe7248466b66306a65868ae7 diff --git a/devel/ossp-al/files/manpages.mk b/devel/ossp-al/files/manpages.mk new file mode 100644 index 0000000..2b06afd --- /dev/null +++ b/devel/ossp-al/files/manpages.mk @@ -0,0 +1 @@ +MAN3+= al.3 diff --git a/devel/ossp-al/pkg-comment b/devel/ossp-al/pkg-comment new file mode 100644 index 0000000..c89090a --- /dev/null +++ b/devel/ossp-al/pkg-comment @@ -0,0 +1 @@ +Defines an abstract type of buffer that can move data without copying diff --git a/devel/ossp-al/pkg-descr b/devel/ossp-al/pkg-descr new file mode 100644 index 0000000..0edc02f --- /dev/null +++ b/devel/ossp-al/pkg-descr @@ -0,0 +1,10 @@ +OSSP al defines an abstract data type of a data buffer that can assemble, +move and truncate chunks of data in a stream but avoids actual copying. It +was built to deal efficiently with communication streams between software +modules. It especially provides flexible semantical data attribution through +by-chunk labeling. It also has convenient chunk traversal methods and +optional OSSP ex based exception handling. + +WWW: http://www.ossp.org/pkg/lib/al/ + +-- AlanE@FreeBSD.org diff --git a/devel/ossp-al/pkg-plist b/devel/ossp-al/pkg-plist new file mode 100644 index 0000000..632526b --- /dev/null +++ b/devel/ossp-al/pkg-plist @@ -0,0 +1,6 @@ +bin/al-config +include/al.h +lib/libal.a +lib/libal.la +lib/libal.so +lib/libal.so.9 |