diff options
author | edwin <edwin@FreeBSD.org> | 2002-11-16 06:52:30 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-11-16 06:52:30 +0800 |
commit | 9529879073b051d645019165c1a084674d229cb8 (patch) | |
tree | d790ae96dfadd93c569eba5dd9f290800e070db0 /misc/firestring | |
parent | 1b6825c48ec89f2b61bb7e5985d5d0e8a27915ca (diff) | |
download | freebsd-ports-gnome-9529879073b051d645019165c1a084674d229cb8.tar.gz freebsd-ports-gnome-9529879073b051d645019165c1a084674d229cb8.tar.zst freebsd-ports-gnome-9529879073b051d645019165c1a084674d229cb8.zip |
Commited patch, thank you!
PR: 45235
Submitted by: Dean Hollister <dean@odyssey.apana.org.au>
Diffstat (limited to 'misc/firestring')
-rw-r--r-- | misc/firestring/Makefile | 11 | ||||
-rw-r--r-- | misc/firestring/distinfo | 2 | ||||
-rw-r--r-- | misc/firestring/pkg-descr | 21 |
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/ |