aboutsummaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-11-19 13:42:26 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-11-19 13:42:26 +0000
commitd12ba0e211d26a68d3766a5525bcf7f2e821f4ad (patch)
tree6ac7f83f62c54f7f0546b629f638f1887f04de32 /databases
parentf1371a36f60e65e882389e6b40e74d3cf54c2b9d (diff)
downloadports-d12ba0e211d26a68d3766a5525bcf7f2e821f4ad.tar.gz
ports-d12ba0e211d26a68d3766a5525bcf7f2e821f4ad.zip
Add back part of manual compression rule (note double meaning of
"manual" here), bsd.port.mk can't deal with both MAN1 and MAN3 if they have different MANPREFIX's. Hmm.
Notes
Notes: svn path=/head/; revision=4595
Diffstat (limited to 'databases')
-rw-r--r--databases/p5-Msql/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/databases/p5-Msql/Makefile b/databases/p5-Msql/Makefile
index 5c9c52d4c462..c92b8bb64347 100644
--- a/databases/p5-Msql/Makefile
+++ b/databases/p5-Msql/Makefile
@@ -3,7 +3,7 @@
# Date created: September 29th 1996
# Whom: James FitzGibbon <jfitz@FreeBSD.org>
#
-# $Id: Makefile,v 1.3 1996/10/24 09:59:20 jfitz Exp $
+# $Id: Makefile,v 1.4 1996/11/17 03:18:38 obrien Exp $
#
DISTNAME= MsqlPerl-1.11
@@ -19,9 +19,15 @@ BUILD_DEPENDS= ${PREFIX}/Minerva/lib/libmsql.a:${PORTSDIR}/databases/msql \
RUN_DEPENDS= perl5.003:${PORTSDIR}/lang/perl5
MAN1= pmsql.1
-MAN3= Msql.3
do-configure:
@ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL
+post-install:
+.if !defined(NOMANCOMPRESS)
+ @ for file in ${PREFIX}/lib/perl5/man/man3/Msql.3; do \
+ gzip -9nf $$file; \
+ done
+.endif
+
.include <bsd.port.mk>