aboutsummaryrefslogtreecommitdiffstats
path: root/archivers/freeze
diff options
context:
space:
mode:
authorerwin <erwin@FreeBSD.org>2006-09-11 01:59:08 +0800
committererwin <erwin@FreeBSD.org>2006-09-11 01:59:08 +0800
commit051f2c88d03c140061dfe1da0b6e4e19425242d0 (patch)
treef1266cb032a6fd59165c6973c8fdd0e135dd586b /archivers/freeze
parent76ef0773403a93c217dfba6709b57309ddba95c6 (diff)
downloadfreebsd-ports-graphics-051f2c88d03c140061dfe1da0b6e4e19425242d0.tar.gz
freebsd-ports-graphics-051f2c88d03c140061dfe1da0b6e4e19425242d0.tar.zst
freebsd-ports-graphics-051f2c88d03c140061dfe1da0b6e4e19425242d0.zip
- Compile with -DCOMPAT for Freeze 1.0 compatibility (not usually used, but why not giving the
opportunity to the end-user?) - Install README if NOPORTDOCS unset - Bump PORTREVISION - Take maintainership PR: 103104 Submitted by: Gabor Kovesdan <gabor@FreeBSD.org>
Diffstat (limited to 'archivers/freeze')
-rw-r--r--archivers/freeze/Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/archivers/freeze/Makefile b/archivers/freeze/Makefile
index 1da5d3748a9..fc2e273c02c 100644
--- a/archivers/freeze/Makefile
+++ b/archivers/freeze/Makefile
@@ -7,17 +7,24 @@
PORTNAME= freeze
PORTVERSION= 2.5
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= archivers
MASTER_SITES= ftp://ftp.warwick.ac.uk/pub/compression/
-MAINTAINER= ports@FreeBSD.org
+MAINTAINER= gkovesdan@t-hosting.hu
COMMENT= Compression program - often used in QNX
GNU_CONFIGURE= yes
ALL_TARGET= prog
-MAKE_ARGS+= CFLAGS="${CFLAGS} -I." CC="${CC}"
+MAKE_ARGS+= CFLAGS="${CFLAGS} -I. -DCOMPAT" CC="${CC}"
MAN1= freeze.1 melt.1 unfreeze.1 fcat.1 statist.1
PLIST_FILES= bin/fcat bin/freeze bin/melt bin/statist bin/unfreeze
+PORTDOCS= README
+
+post-install:
+.if !defined(NOPORTDOCS)
+ @${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
+.endif
.include <bsd.port.mk>