A fully matured and stable set of printf and string functions
This commit is contained in:
Ying-Chieh Liao 2001-06-03 06:57:09 +00:00
parent 2a2f708e8e
commit f67f0b4174
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=43459
6 changed files with 49 additions and 0 deletions

View File

@ -488,6 +488,7 @@
SUBDIR += tkcvs
SUBDIR += tkref
SUBDIR += tmake
SUBDIR += trio
SUBDIR += tvision
SUBDIR += uclmmbase
SUBDIR += ucpp

31
devel/trio/Makefile Normal file
View File

@ -0,0 +1,31 @@
# ex:ts=8
# New ports collection makefile for: trio
# Date created: Jun 3, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= trio
PORTVERSION= 1.3
CATEGORIES= devel
MASTER_SITES= http://www.contactor.se/~dast/stuff/
MAINTAINER= ijliao@FreeBSD.org
MANCOMPRESSED= no
MAN3= trio_printf.3 trio_scanf.3 trio_register.3 strio.3
post-patch:
@${PERL} -pi -e "s,^CFLAGS,#CFLAGS,g" ${WRKSRC}/Makefile
do-install:
.for file in trio.h triop.h
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include
.endfor
${INSTALL_DATA} ${WRKSRC}/libtrio.a ${PREFIX}/lib
.for file in ${MAN3}
${INSTALL_MAN} ${WRKSRC}/man/man3/${file} ${MANPREFIX}/man/man3
.endfor
.include <bsd.port.mk>

1
devel/trio/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (trio-1.3.tar.gz) = 81035929ba937f4fb49d07f44e699529

1
devel/trio/pkg-comment Normal file
View File

@ -0,0 +1 @@
A fully matured and stable set of printf and string functions

12
devel/trio/pkg-descr Normal file
View File

@ -0,0 +1,12 @@
Trio is a fully matured and stable set of printf and string functions designed
be used by applications with focus on portability or with the need for
additional features that are not supported by standard stdio implementation.
There are several cases where you may want to consider using trio:
1.Portability across heterogeneous platforms.
2.Embedded systems without stdio support.
3.Extendability of unsupported features.
4.Your native version don't do everything you need.
WWW: http://www.contactor.se/~dast/trio/

3
devel/trio/pkg-plist Normal file
View File

@ -0,0 +1,3 @@
include/trio.h
include/triop.h
lib/libtrio.a