diff options
author | sat <sat@FreeBSD.org> | 2006-08-28 23:11:16 +0800 |
---|---|---|
committer | sat <sat@FreeBSD.org> | 2006-08-28 23:11:16 +0800 |
commit | 608832cdd71c459f2ef239af08bc82f40296df3b (patch) | |
tree | 6147bc739383993c9088d65928627d1f15fb1931 /devel | |
parent | a14ff6a8048583387d8a26b00ef1a6f5c1445a10 (diff) | |
download | freebsd-ports-graphics-608832cdd71c459f2ef239af08bc82f40296df3b.tar.gz freebsd-ports-graphics-608832cdd71c459f2ef239af08bc82f40296df3b.tar.zst freebsd-ports-graphics-608832cdd71c459f2ef239af08bc82f40296df3b.zip |
Add port devel/gzstream:
Gzstream is a small C++ library, basically just a wrapper, that provides
the functionality of the zlib C-library in a C++ iostream. It is freely
available under the LGPL license.
Gzstream has been written by Deepak Bandyopadhyay and Lutz Kettner at the
Computational Geometry Group at UNC Chapel Hill.
WWW: http://www.cs.unc.edu/Research/compgeom/gzstream/
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/gzstream/Makefile | 27 | ||||
-rw-r--r-- | devel/gzstream/distinfo | 3 | ||||
-rw-r--r-- | devel/gzstream/pkg-descr | 8 |
4 files changed, 39 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 941674481b6..720726c4a9c 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -385,6 +385,7 @@ SUBDIR += guichan SUBDIR += guikachu SUBDIR += gwenhywfar + SUBDIR += gzstream SUBDIR += happydoc SUBDIR += hapy SUBDIR += hc12mem diff --git a/devel/gzstream/Makefile b/devel/gzstream/Makefile new file mode 100644 index 00000000000..e4485d653d4 --- /dev/null +++ b/devel/gzstream/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: gzstream +# Date created: 28 August 2006 +# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gzstream +DISTVERSION= 1.5 +CATEGORIES= devel +MASTER_SITES= CSME + +MAINTAINER= infofarmer@FreeBSD.org +COMMENT= Provides zlib functionality in an iostream + +WRKSRC= ${WRKDIR}/${PORTNAME} +PLIST_FILES= lib/lib${PORTNAME}.a include/${PORTNAME}.h +ALL_TARGET= default + +post-patch: + @${REINPLACE_CMD} -e 's/=/?=/;s/$${AR}/$${AR} cr/' ${WRKSRC}/${MAKEFILE} + +do-install: + @${INSTALL_DATA} ${WRKSRC}/lib${PORTNAME}.a ${PREFIX}/lib/ + @${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.h ${PREFIX}/include/ + +.include <bsd.port.mk> diff --git a/devel/gzstream/distinfo b/devel/gzstream/distinfo new file mode 100644 index 00000000000..761f66e2074 --- /dev/null +++ b/devel/gzstream/distinfo @@ -0,0 +1,3 @@ +MD5 (gzstream-1.5.tar.gz) = 74a0beaa4e185b883993d537a7019a53 +SHA256 (gzstream-1.5.tar.gz) = 99acb23903dd0e41ee86c29f65b9f36a8f43af29325dd233fb45362df14dc103 +SIZE (gzstream-1.5.tar.gz) = 20503 diff --git a/devel/gzstream/pkg-descr b/devel/gzstream/pkg-descr new file mode 100644 index 00000000000..21cb419f419 --- /dev/null +++ b/devel/gzstream/pkg-descr @@ -0,0 +1,8 @@ +Gzstream is a small C++ library, basically just a wrapper, that provides +the functionality of the zlib C-library in a C++ iostream. It is freely +available under the LGPL license. + +Gzstream has been written by Deepak Bandyopadhyay and Lutz Kettner at the +Computational Geometry Group at UNC Chapel Hill. + +WWW: http://www.cs.unc.edu/Research/compgeom/gzstream/ |