diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-06-03 14:57:09 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-06-03 14:57:09 +0800 |
commit | 89ad587a258adf95722592ecc7e93773b63f288f (patch) | |
tree | e8e405a736b741b6c5bf01f6908a6638390b3c02 /devel | |
parent | 4570f4b1cadc5612142921a4636205d7f657527b (diff) | |
download | freebsd-ports-gnome-89ad587a258adf95722592ecc7e93773b63f288f.tar.gz freebsd-ports-gnome-89ad587a258adf95722592ecc7e93773b63f288f.tar.zst freebsd-ports-gnome-89ad587a258adf95722592ecc7e93773b63f288f.zip |
add trio
A fully matured and stable set of printf and string functions
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/trio/Makefile | 31 | ||||
-rw-r--r-- | devel/trio/distinfo | 1 | ||||
-rw-r--r-- | devel/trio/pkg-comment | 1 | ||||
-rw-r--r-- | devel/trio/pkg-descr | 12 | ||||
-rw-r--r-- | devel/trio/pkg-plist | 3 |
6 files changed, 49 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 8200d8b8677c..83014ca648b6 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -488,6 +488,7 @@ SUBDIR += tkcvs SUBDIR += tkref SUBDIR += tmake + SUBDIR += trio SUBDIR += tvision SUBDIR += uclmmbase SUBDIR += ucpp diff --git a/devel/trio/Makefile b/devel/trio/Makefile new file mode 100644 index 000000000000..6e770fcc2d38 --- /dev/null +++ b/devel/trio/Makefile @@ -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> diff --git a/devel/trio/distinfo b/devel/trio/distinfo new file mode 100644 index 000000000000..e88b81579f57 --- /dev/null +++ b/devel/trio/distinfo @@ -0,0 +1 @@ +MD5 (trio-1.3.tar.gz) = 81035929ba937f4fb49d07f44e699529 diff --git a/devel/trio/pkg-comment b/devel/trio/pkg-comment new file mode 100644 index 000000000000..6a3059e53771 --- /dev/null +++ b/devel/trio/pkg-comment @@ -0,0 +1 @@ +A fully matured and stable set of printf and string functions diff --git a/devel/trio/pkg-descr b/devel/trio/pkg-descr new file mode 100644 index 000000000000..d217eb169afe --- /dev/null +++ b/devel/trio/pkg-descr @@ -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/ diff --git a/devel/trio/pkg-plist b/devel/trio/pkg-plist new file mode 100644 index 000000000000..5e576ba69f72 --- /dev/null +++ b/devel/trio/pkg-plist @@ -0,0 +1,3 @@ +include/trio.h +include/triop.h +lib/libtrio.a |