diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1995-04-23 17:21:34 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1995-04-23 17:21:34 +0000 |
commit | 9083fbf32933aed1fe0b63cd4291b896881eed12 (patch) | |
tree | 319a02973351efd93d3881f3fa5c279a09663f98 /lang/perl5 | |
parent | b165a3a9b5864235aa405bcb2c8612fba408be8f (diff) | |
download | ports-9083fbf32933aed1fe0b63cd4291b896881eed12.tar.gz ports-9083fbf32933aed1fe0b63cd4291b896881eed12.zip |
gzip man pages, strip binaries
Notes
Notes:
svn path=/head/; revision=1503
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 556a8bce53f0..795d8e958a49 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> |