diff options
Diffstat (limited to 'lang/perl5.16/Makefile')
-rw-r--r-- | lang/perl5.16/Makefile | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/lang/perl5.16/Makefile b/lang/perl5.16/Makefile index 556a8bce53f0..795d8e958a49 100644 --- a/lang/perl5.16/Makefile +++ b/lang/perl5.16/Makefile @@ -3,7 +3,7 @@ # Date created: 16 April 1995 # Whom: markm # -# $Id: Makefile,v 1.2 1995/04/18 02:00:15 asami Exp $ +# $Id: Makefile,v 1.3 1995/04/19 08:12:00 ache Exp $ # DISTNAME= perl5.001 @@ -14,18 +14,21 @@ EXTRACT_SUFX= .tar.gz MAINTAINER= markm@FreeBSD.ORG -# -# This isn't really interactive, but the Configure script checks for -# file descriptor 0, so it won't run if you </dev/null to run a -# nightly batch build.... -# -IS_INTERACTIVE= yes - HAS_CONFIGURE= yes CONFIGURE_SCRIPT= Configure CONFIGURE_ARGS= -sde +PERLMAN= "" api book bot call data debug diag embed form func guts ipc mod \ + obj op ovl pod re ref run sec style sub syn trap var + test: @(cd ${WRKSRC}; make test) + +post-install: + @for m in ${PERLMAN}; do gzip -9nf ${PREFIX}/man/man1/perl$$m.1; done + @gzip -9nf ${PREFIX}/man/man1/a2p.1 + @gzip -9nf ${PREFIX}/man/man1/s2p.1 + @strip ${PREFIX}/bin/perl ${PREFIX}/bin/suidperl + .include <bsd.port.mk> |