diff options
author | kevlo <kevlo@FreeBSD.org> | 2002-08-22 11:35:39 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2002-08-22 11:35:39 +0800 |
commit | 20c95a250f149cb94615d0c0aab9537fa25a2ce0 (patch) | |
tree | f21d740b4d0c95ce87354f70d0defb7094b80694 | |
parent | 144a4ffb01fb8a7a49c9a54ab8f1167b918634d9 (diff) | |
download | freebsd-ports-gnome-20c95a250f149cb94615d0c0aab9537fa25a2ce0.tar.gz freebsd-ports-gnome-20c95a250f149cb94615d0c0aab9537fa25a2ce0.tar.zst freebsd-ports-gnome-20c95a250f149cb94615d0c0aab9537fa25a2ce0.zip |
Initial import of firestring 0.1.9.
Libfirestring is a string handling library that provides
maximum length aware string handling functions to programs.
PR: 38025
Submitted by: Dean Hollister <dean@odyssey.apana.org.au>
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/firestring/Makefile | 31 | ||||
-rw-r--r-- | misc/firestring/distinfo | 1 | ||||
-rw-r--r-- | misc/firestring/pkg-comment | 1 | ||||
-rw-r--r-- | misc/firestring/pkg-descr | 18 | ||||
-rw-r--r-- | misc/firestring/pkg-plist | 3 |
6 files changed, 55 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index ad0a568b4757..637599fbe812 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -74,6 +74,7 @@ SUBDIR += figlet SUBDIR += figlet-fonts SUBDIR += findutils + SUBDIR += firestring SUBDIR += floatator SUBDIR += flyway SUBDIR += fortuneit diff --git a/misc/firestring/Makefile b/misc/firestring/Makefile new file mode 100644 index 000000000000..613f776af2d4 --- /dev/null +++ b/misc/firestring/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: firestring +# Date created: Mon 13 May 14:30:00 WST 2002 +# Whom: Dean Hollister <dean@odyssey.apana.org.au> +# +# $FreeBSD$ +# + +PORTNAME= firestring +PORTVERSION= 0.1.9 +CATEGORIES= misc +MASTER_SITES= http://ares.penguinhosting.net/~ian/projects/ \ + http://www.wa.apana.org.au/~dean/sources/ \ + ftp://ftp.wa.apana.org.au/pub/pc/unix/packages/ +DISTNAME= firestring +EXTRACT_SUFX= -0.1.9.tar.gz + +MAINTAINER= dean@odyssey.apana.org.au + +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_malloc.3 firestring_realloc.3 \ + firestring_snprintf.3 firestring_strcasecmp.3 \ + firestring_strdup.3 firestring_strncasecmp.3 \ + firestring_strncat.3 firestring_strncpy.3 \ + libfirestring.3 + +.include <bsd.port.mk> diff --git a/misc/firestring/distinfo b/misc/firestring/distinfo new file mode 100644 index 000000000000..16606e62a257 --- /dev/null +++ b/misc/firestring/distinfo @@ -0,0 +1 @@ +MD5 (firestring-0.1.9.tar.gz) = 77eceb12bc3466840db1b46c43738ee1 diff --git a/misc/firestring/pkg-comment b/misc/firestring/pkg-comment new file mode 100644 index 000000000000..1ea9624a3db5 --- /dev/null +++ b/misc/firestring/pkg-comment @@ -0,0 +1 @@ +A library that provides maximum length aware string handling functions diff --git a/misc/firestring/pkg-descr b/misc/firestring/pkg-descr new file mode 100644 index 000000000000..a276533124dd --- /dev/null +++ b/misc/firestring/pkg-descr @@ -0,0 +1,18 @@ +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). + +"libfirestring also includes functions for dealing with +reading configuration files in an easy to program fashion." + +WWW: http://ares.penguinhosting.net/~ian/ + +- Dean + +dean@odyssey.apana.org.au diff --git a/misc/firestring/pkg-plist b/misc/firestring/pkg-plist new file mode 100644 index 000000000000..011c570ea576 --- /dev/null +++ b/misc/firestring/pkg-plist @@ -0,0 +1,3 @@ +lib/libfirestring.so +lib/libfirestring.a +include/firestring.h |