aboutsummaryrefslogtreecommitdiff
path: root/misc/firestring
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2002-11-15 22:52:30 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2002-11-15 22:52:30 +0000
commit97b9561099322a8ce79751eb6d3bcbf45147b728 (patch)
tree41cc81c0d9d8a367805e1c562a904151c842e9d2 /misc/firestring
parentcdbd4b39db297fced3265de995cee1d1463e85cd (diff)
downloadports-97b9561099322a8ce79751eb6d3bcbf45147b728.tar.gz
ports-97b9561099322a8ce79751eb6d3bcbf45147b728.zip
Commited patch, thank you!
PR: 45235 Submitted by: Dean Hollister <dean@odyssey.apana.org.au>
Notes
Notes: svn path=/head/; revision=70207
Diffstat (limited to 'misc/firestring')
-rw-r--r--misc/firestring/Makefile11
-rw-r--r--misc/firestring/distinfo2
-rw-r--r--misc/firestring/pkg-descr21
3 files changed, 21 insertions, 13 deletions
diff --git a/misc/firestring/Makefile b/misc/firestring/Makefile
index 388a62c4bc64..72ef344e2f81 100644
--- a/misc/firestring/Makefile
+++ b/misc/firestring/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= firestring
-PORTVERSION= 0.1.22
+PORTVERSION= 0.1.23
CATEGORIES= misc net devel
MASTER_SITES= http://ares.penguinhosting.net/~ian/projects/ \
http://www.wa.apana.org.au/~dean/sources/ \
@@ -19,10 +19,11 @@ MAINTAINER= dean@odyssey.apana.org.au
HAS_CONFIGURE= yes
INSTALLS_SHLIB= yes
-MAN3= firestring_chomp.3 firestring_chug.3 firestring_concat.3 \
- firestring_conf_add.3 firestring_conf_find.3 \
- firestring_conf_find_next.3 firestring_conf_free.3 \
- firestring_conf_parse.3 firestring_estr_0.3 \
+MAN3= firestring_chomp.3 firestring_chug.3 \
+ firestring_concat.3 firestring_conf_add.3 \
+ firestring_conf_find.3 firestring_conf_find_next.3 \
+ firestring_conf_free.3 firestring_conf_parse.3 \
+ firestring_conf_parse_next.3 firestring_estr_0.3 \
firestring_estr_alloc.3 firestring_estr_base64_decode.3 \
firestring_estr_base64_encode.3 firestring_estr_ends.3 \
firestring_estr_estrcasecmp.3 firestring_estr_estrcat.3 \
diff --git a/misc/firestring/distinfo b/misc/firestring/distinfo
index e7c8298c116d..d909bc169e3f 100644
--- a/misc/firestring/distinfo
+++ b/misc/firestring/distinfo
@@ -1 +1 @@
-MD5 (firestring-0.1.22.tar.gz) = c9e65fa76d1fffcd01d8052ba4231616
+MD5 (firestring-0.1.23.tar.gz) = f5d1b6fedbbd4137483efb3864d772b6
diff --git a/misc/firestring/pkg-descr b/misc/firestring/pkg-descr
index 01a41c189b30..af5cb9ebc86f 100644
--- a/misc/firestring/pkg-descr
+++ b/misc/firestring/pkg-descr
@@ -1,14 +1,21 @@
From libfirestring(3):
"libfirestring is a string handling library that provides
-maximum length aware string handling functions to programs.
-Several functions provide saner interfaces than the standard
-libc functions. libfirestring also provides functions that
-are in most libc's but not provided for by POSIX, enabling
-programmers to write POSIX-compliant code while using such
-safe functions (strcasecmp, strncasecmp, snprintf)."
+maximum length aware string handling functions to pro-
+grams. Several functions provide saner interfaces than
+the standard libc functions. libfirestring also provides
+functions that are in most libc's but not provided for by
+ANSI C, enabling programmers to write ANSI C-compliant
+code while using such safe functions (strcasecmp, strn-
+casecmp, snprintf).
-"libfirestring also includes functions for dealing with
+libfirestring provides a set of functions for dealing with
+EStrings. EStrings are binary-safe objects that, when
+used with the firestring functions, are overflow safe,
+because they include allocated memory size information
+with them.
+
+libfirestring also includes functions for dealing with
reading configuration files in an easy to program fashion."
WWW: http://ares.penguinhosting.net/~ian/