diff options
author | miwi <miwi@FreeBSD.org> | 2008-05-18 08:04:19 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-05-18 08:04:19 +0800 |
commit | e53dfc90d7e0c0bb97e2a3606f1574045024dcf2 (patch) | |
tree | 07a426d11570f2e2510c3d27932b903789fd8602 /devel | |
parent | 0ccbebafa82327b96410e71c71ddffcc6b30889a (diff) | |
download | freebsd-ports-graphics-e53dfc90d7e0c0bb97e2a3606f1574045024dcf2.tar.gz freebsd-ports-graphics-e53dfc90d7e0c0bb97e2a3606f1574045024dcf2.tar.zst freebsd-ports-graphics-e53dfc90d7e0c0bb97e2a3606f1574045024dcf2.zip |
E00Compr is an Open Source ANSI-C library to compress and uncompress
Arc/Info Export (E00) files. It can be easily plugged into existing E00
translators to add support for compressed E00 files simply by replacing
the existing translator's read/write function by the E00ReadNextLine()
and E00WriteNextLine() functions provided by the library.
WWW: http://avce00.maptools.org/e00compr/
PR: ports/123396
Submitted by: Wen Heping <wenheping at gmail.com>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/e00compr/Makefile | 34 | ||||
-rw-r--r-- | devel/e00compr/distinfo | 3 | ||||
-rw-r--r-- | devel/e00compr/pkg-descr | 7 |
4 files changed, 45 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index ec7d44aeb39..aa595cb5e7a 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -273,6 +273,7 @@ SUBDIR += duplo SUBDIR += dwarfdump SUBDIR += dyncall + SUBDIR += e00compr SUBDIR += e4graph SUBDIR += e_dbus SUBDIR += ebnf2yacc diff --git a/devel/e00compr/Makefile b/devel/e00compr/Makefile new file mode 100644 index 00000000000..5b7f646f27a --- /dev/null +++ b/devel/e00compr/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: e00compr +# Date created: May 04 , 2008 +# Whom: Wen Heping <wenheping@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= e00compr +PORTVERSION= 1.0.0 +CATEGORIES= devel +MASTER_SITES= http://avce00.maptools.org/dl/ +DISTNAME= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= wenheping@gmail.com +COMMENT= A Library to Read/Write Compressed E00 Files + +USE_GMAKE= yes +WRKSRC= ${WRKDIR}/${DISTNAME} +PLIST_FILES= bin/e00conv include/e00compr.h \ + lib/e00compr.a +PORTDOCS= e00compr.html + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/e00conv ${PREFIX}/bin/e00conv + ${INSTALL_DATA} ${WRKSRC}/e00compr.h ${PREFIX}/include/e00compr.h + ${INSTALL_DATA} ${WRKSRC}/e00compr.a ${PREFIX}/lib/e00compr.a + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/e00compr.html ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/devel/e00compr/distinfo b/devel/e00compr/distinfo new file mode 100644 index 00000000000..df86e84ac0a --- /dev/null +++ b/devel/e00compr/distinfo @@ -0,0 +1,3 @@ +MD5 (e00compr-1.0.0.tar.gz) = d0b084609401190399e110231b0083fd +SHA256 (e00compr-1.0.0.tar.gz) = 7a2e441732ec33ff997525b1f9df2ad18ffdf299694eb4ac1db1b48a467a1027 +SIZE (e00compr-1.0.0.tar.gz) = 35306 diff --git a/devel/e00compr/pkg-descr b/devel/e00compr/pkg-descr new file mode 100644 index 00000000000..3df51841172 --- /dev/null +++ b/devel/e00compr/pkg-descr @@ -0,0 +1,7 @@ +E00Compr is an Open Source ANSI-C library to compress and uncompress +Arc/Info Export (E00) files. It can be easily plugged into existing E00 +translators to add support for compressed E00 files simply by replacing +the existing translator's read/write function by the E00ReadNextLine() +and E00WriteNextLine() functions provided by the library. + +WWW: http://avce00.maptools.org/e00compr/ |