mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
615de0116b
Version: lbzip2-0.23 Focus: Minor feature enhancements Date: 03-Mar-2010 Changes: In this release, if lbzip2 intends to exit with status 1 due to any fatal error, but any SIGPIPE or SIGXFSZ with inherited SIG_DFL action was generated for lbzip2 previously, then lbzip2 terminates by way of one of said signals, after cleaning up any interrupted output file. This should improve compatibility with GNU tar, when it spawns lbzip2 as a filter, and closes the pipe between them early, before it receives an EOF from lbzip2.
34 lines
725 B
Makefile
34 lines
725 B
Makefile
# New ports collection Makefile for: archivers/lbzip2
|
|
# Date created: 7 Feb 2009
|
|
# Whom: Gabor Kovesdan <gabor@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lbzip2
|
|
PORTVERSION= 0.23
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://lacos.web.elte.hu/pub/lbzip2/
|
|
|
|
MAINTAINER= gabor@FreeBSD.org
|
|
COMMENT= A multi-threaded bzip2/bunzip2 filter
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
PLIST_FILES= bin/lbzip2
|
|
|
|
MAN1= lbzip2.1
|
|
|
|
PORTDOCS= ChangeLog README
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/lbzip2 ${PREFIX}/bin/lbzip2
|
|
${INSTALL_MAN} ${WRKSRC}/lbzip2.1 ${MAN1PREFIX}/man/man1
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|