1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/archivers/bzip/Makefile
Andreas Klemm 173535b87e - use INSTALL_PROGRAM and INSTALL_MAN in Makefile
- add patch-ac to silence bzip when doing compression, bzip version
  info now only with -v or -V
- changed comment in COMMENT. bzip compresses better than gzip, but
  speed is much slower, so it's not generally better as gzip where
  speed matters !
1996-09-28 12:34:45 +00:00

32 lines
946 B
Makefile

# New ports collection makefile for: bzip
# Version required: 0.21
# Date created: Fr 27 Sep 1996 11:47:35 MET DST
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
#
# $Id: Makefile,v 1.2 1996/09/27 20:55:50 andreas Exp $
#
DISTNAME= bzip-0.21
CATEGORIES+= archivers
MASTER_SITES= http://www.cs.man.ac.uk/arch/people/j-seward/
MAINTAINER= Andreas Klemm <andreas@klemm.gtn.com>
NO_CDROM= yes # Restrictive copyright (don't sell for profit)
pre-install:
@cat ${FILESDIR}/COPYRIGHT
do-install:
rm -f ${PREFIX}/bin/bzip ${PREFIX}/bin/bzip
${INSTALL_PROGRAM} ${WRKSRC}/bzip ${PREFIX}/bin/bzip
ln ${PREFIX}/bin/bzip ${PREFIX}/bin/bunzip
${INSTALL_MAN} ${WRKSRC}/bzip.1 ${PREFIX}/man/man1/bzip.1
${INSTALL_MAN} ${WRKSRC}/bzip.1 ${PREFIX}/man/man1/bunzip.1
.if !defined(NOMANCOMPRESS)
gzip -9nf ${PREFIX}/man/man1/bzip.1
gzip -9nf ${PREFIX}/man/man1/bunzip.1
.endif
.include <bsd.port.mk>