diff options
author | pav <pav@FreeBSD.org> | 2004-02-28 19:25:03 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-02-28 19:25:03 +0800 |
commit | 8cd75dcae024fbf2dd66b61f078cf96c4f533444 (patch) | |
tree | eaa60c763f9ffdf143332316495048a294636286 /devel | |
parent | f93239989a9b42f0c78809e4436a4d3167fa41bf (diff) | |
download | freebsd-ports-gnome-8cd75dcae024fbf2dd66b61f078cf96c4f533444.tar.gz freebsd-ports-gnome-8cd75dcae024fbf2dd66b61f078cf96c4f533444.tar.zst freebsd-ports-gnome-8cd75dcae024fbf2dd66b61f078cf96c4f533444.zip |
Add ossp-str, a generic string library written in ISO-C which provides
functions for handling, matching, parsing, searching and formatting of
ISO-C strings. So it can be considered as a superset of POSIX
string(3), but its main intention is to provide a more convenient and
compact API plus a more generalized functionality.
WWW: http://www.ossp.org/pkg/lib/str/
PR: ports/63180
Submitted by: Kimura Fuyuki <fuyuki@nigredo.org>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/ossp-str/Makefile | 26 | ||||
-rw-r--r-- | devel/ossp-str/distinfo | 2 | ||||
-rw-r--r-- | devel/ossp-str/pkg-descr | 7 | ||||
-rw-r--r-- | devel/ossp-str/pkg-plist | 6 |
5 files changed, 42 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 3454adbb7431..ed6a892b6286 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -514,6 +514,7 @@ SUBDIR += ossp-cfg SUBDIR += ossp-ex SUBDIR += ossp-l2 + SUBDIR += ossp-str SUBDIR += ossp-val SUBDIR += ossp-var SUBDIR += p4.el diff --git a/devel/ossp-str/Makefile b/devel/ossp-str/Makefile new file mode 100644 index 000000000000..2052c23cf5db --- /dev/null +++ b/devel/ossp-str/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: OSSP str +# Date created: 22 February 2004 +# Whom: Kimura Fuyuki <fuyuki@nigredo.org> +# +# $FreeBSD$ +# + +PORTNAME= str +PORTVERSION= 0.9.8 +CATEGORIES= devel +MASTER_SITES= ftp://ftp.ossp.org/pkg/lib/${PORTNAME}/ +PKGNAMEPREFIX= ossp- + +MAINTAINER= fuyuki@nigredo.org +COMMENT= A generic string library written in ISO-C + +USE_LIBTOOL_VER= 15 +INSTALLS_SHLIB= yes + +MAN1= str-config.1 +MAN3= str.3 + +test: + cd ${WRKSRC}; make check + +.include <bsd.port.mk> diff --git a/devel/ossp-str/distinfo b/devel/ossp-str/distinfo new file mode 100644 index 000000000000..402d477d4398 --- /dev/null +++ b/devel/ossp-str/distinfo @@ -0,0 +1,2 @@ +MD5 (str-0.9.8.tar.gz) = 4b3be05ddcc5959215de2d0532b233ac +SIZE (str-0.9.8.tar.gz) = 254674 diff --git a/devel/ossp-str/pkg-descr b/devel/ossp-str/pkg-descr new file mode 100644 index 000000000000..6474e5fee78e --- /dev/null +++ b/devel/ossp-str/pkg-descr @@ -0,0 +1,7 @@ +OSSP str is a generic string library written in ISO-C which provides +functions for handling, matching, parsing, searching and formatting of +ISO-C strings. So it can be considered as a superset of POSIX +string(3), but its main intention is to provide a more convenient and +compact API plus a more generalized functionality. + +WWW: http://www.ossp.org/pkg/lib/str/ diff --git a/devel/ossp-str/pkg-plist b/devel/ossp-str/pkg-plist new file mode 100644 index 000000000000..4f31810516d8 --- /dev/null +++ b/devel/ossp-str/pkg-plist @@ -0,0 +1,6 @@ +bin/str-config +include/str.h +lib/libstr.a +lib/libstr.la +lib/libstr.so +lib/libstr.so.9 |