diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-08-29 11:12:02 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-08-29 11:12:02 +0000 |
commit | cb3495a104175a81499d54fda7dfc5f144ce3c5d (patch) | |
tree | 5e934fb529ff7852500b172bcbd8c13a579d855b /archivers/lbrate/Makefile | |
parent | 5353da0b14fc427a9a7d8921ed0562eb70539448 (diff) | |
download | FreeBSD-ports-cb3495a104175a81499d54fda7dfc5f144ce3c5d.zip FreeBSD-ports-cb3495a104175a81499d54fda7dfc5f144ce3c5d.tar.gz |
add lbrate
Extract/decompress CP/M LBR archives
PR: 30087
Submitted by: Gea-Suan Lin <gslin@infomath.math.nctu.edu.tw>
Diffstat (limited to 'archivers/lbrate/Makefile')
-rw-r--r-- | archivers/lbrate/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/archivers/lbrate/Makefile b/archivers/lbrate/Makefile new file mode 100644 index 0000000..4424dca --- /dev/null +++ b/archivers/lbrate/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: lbrate +# Date created: 26 August 2001 +# Whom: Gea-Suan Lin (gslin@ccca.nctu.edu.tw) +# +# $FreeBSD$ +# + +PORTNAME= lbrate +PORTVERSION= 1.0 +CATEGORIES= archivers +MASTER_SITES= ftp://ftp.ibiblio.org/pub/Linux/utils/compress/ + +MAINTAINER= gslin@ccca.nctu.edu.tw + +LIB_DEPENDS= gnugetopt:${PORTSDIR}/devel/libgnugetopt + +MAN1= lbrate.1 + +post-patch: + @${PERL} -pi -e "s,^CC,#CC,g ; s,^PREFIX,#PREFIX,g ; \ + s,%%LOCALBASE%%,${LOCALBASE},g" ${WRKSRC}/Makefile + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for FILE in COPYING ChangeLog README TODO + @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |