diff options
author | jmz <jmz@FreeBSD.org> | 1995-04-23 17:21:34 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1995-04-23 17:21:34 +0000 |
commit | 18db14f34ff8137c3f24f8b9b00b546981ac55ae (patch) | |
tree | bca9f450c5af1e32b4230afe917773dc43abde94 /lang/perl5 | |
parent | f2e8e5bfd4d62cbe89ace45475099424a0c8d5dd (diff) | |
download | FreeBSD-ports-18db14f34ff8137c3f24f8b9b00b546981ac55ae.zip FreeBSD-ports-18db14f34ff8137c3f24f8b9b00b546981ac55ae.tar.gz |
gzip man pages, strip binaries
Diffstat (limited to 'lang/perl5')
-rw-r--r-- | lang/perl5/Makefile | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/lang/perl5/Makefile b/lang/perl5/Makefile index 556a8bc..795d8e9 100644 --- a/lang/perl5/Makefile +++ b/lang/perl5/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> |