Import of Str 0.9.1.
The Str library is a generic string library written in ANSI C which provides functions for handling, matching, parsing, searching and formatting of C strings. So it can be considered as a superset of POSIX string(3), but its main intention is to provide a more convinient and compact API plus a more generalized functionality.
This commit is contained in:
parent
6ec02ed8f8
commit
eba32b8eb3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=24608
5 changed files with 51 additions and 0 deletions
31
devel/str/Makefile
Normal file
31
devel/str/Makefile
Normal file
|
@ -0,0 +1,31 @@
|
|||
# New ports collection makefile for: str
|
||||
# Version required: 0.9.1
|
||||
# Date Created: 09 Jan 2000
|
||||
# Whom: Ralf S. Engelschall
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= str-0.9.1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.engelschall.com/sw/str/ \
|
||||
ftp://ftp.engelschall.com/sw/str/
|
||||
|
||||
MAINTAINER= rse@engelschall.com
|
||||
|
||||
HAS_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --prefix=${PREFIX}
|
||||
|
||||
MAN1= str-config.1
|
||||
MAN3= str.3
|
||||
|
||||
post-build:
|
||||
@${ECHO_MSG} "===> Use 'make test' to run a quick test suite."
|
||||
|
||||
test:
|
||||
@cd ${WRKSRC} && ${MAKE} test
|
||||
|
||||
post-install:
|
||||
@${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/str/distinfo
Normal file
1
devel/str/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (str-0.9.1.tar.gz) = ca5b24c7ef61dbd9bfb8853f51ff6224
|
1
devel/str/pkg-comment
Normal file
1
devel/str/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Generic String Library
|
10
devel/str/pkg-descr
Normal file
10
devel/str/pkg-descr
Normal file
|
@ -0,0 +1,10 @@
|
|||
Str - Generic String Library
|
||||
Copyright (c) 1999-2000 Ralf S. Engelschall <rse@engelschall.com>
|
||||
|
||||
The Str library is a generic string library written in ANSI C which
|
||||
provides functions for handling, matching, parsing, searching and
|
||||
formatting of C strings. So it can be considered as a superset of POSIX
|
||||
string(3), but its main intention is to provide a more convinient and
|
||||
compact API plus a more generalized functionality.
|
||||
|
||||
WWW: http://www.engelschall.com/sw/str/
|
8
devel/str/pkg-plist
Normal file
8
devel/str/pkg-plist
Normal file
|
@ -0,0 +1,8 @@
|
|||
bin/str-config
|
||||
include/str.h
|
||||
lib/libstr.a
|
||||
lib/libstr.la
|
||||
lib/libstr.so
|
||||
lib/libstr.so.9
|
||||
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
||||
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
Loading…
Reference in a new issue