1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/devel/e00compr/Makefile
Martin Wilke 623bf7b059 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>
2008-05-18 00:04:19 +00:00

35 lines
847 B
Makefile

# 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>