mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
e576cffda4
This port was removed due not having a publically available distfile. That has been fixed per the PR with maintainership assigned to submitter. Additionally: * The patch-aa was renamed * The patch-ab and patch-ac touched the same file; they were combined and renamed * DragonFly support was added (hence the portrevision bump) * GPLv2 license was annotated * 80-column formatting was respected * PLIST sorted PR: 188939 Submitted by: Chris Hutchinson Tweaks: marino
34 lines
779 B
Makefile
34 lines
779 B
Makefile
# Created by: Andreas Klemm <andreas@klemm.gtn.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bzip
|
|
PORTVERSION= 0.21
|
|
PORTREVISION= 1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://bsdforge.com/projects/source/archivers/bzip/
|
|
|
|
MAINTAINER= portmaster@bsdforge.com
|
|
COMMENT= Block-sorting file compressor
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RESTRICTED= may be covered by patents
|
|
USE_CSTD= gnu89
|
|
|
|
PLIST_FILES= bin/bzip bin/bunzip \
|
|
man/man1/bunzip.1.gz \
|
|
man/man1/bzip.1.gz
|
|
|
|
pre-install:
|
|
@${CAT} ${FILESDIR}/COPYRIGHT
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bzip ${STAGEDIR}${PREFIX}/bin
|
|
${LN} -fs bzip ${STAGEDIR}${PREFIX}/bin/bunzip
|
|
${INSTALL_MAN} ${WRKSRC}/bzip.1 \
|
|
${STAGEDIR}${MAN1PREFIX}/man/man1/bzip.1
|
|
${INSTALL_MAN} ${WRKSRC}/bzip.1 \
|
|
${STAGEDIR}${MAN1PREFIX}/man/man1/bunzip.1
|
|
|
|
.include <bsd.port.mk>
|