summaryrefslogtreecommitdiff
path: root/archivers/freeze
diff options
context:
space:
mode:
authorErwin Lansing <erwin@FreeBSD.org>2006-09-10 17:59:08 +0000
committerErwin Lansing <erwin@FreeBSD.org>2006-09-10 17:59:08 +0000
commit6f82c758e5f1f80a9b352d252493ce624e62bfa3 (patch)
treee5a9731233900cf88731e1bc1ea08506d964e98b /archivers/freeze
parent- Don't override CONFIGURE_TARGET, it compiles without that (diff)
- 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>
Notes
Notes: svn path=/head/; revision=172719
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 1da5d3748a93..fc2e273c02c7 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>