mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b557d8c173
NOMANCOMPRESS.
38 lines
904 B
Makefile
38 lines
904 B
Makefile
# New ports collection makefile for: perl5
|
|
# Version required: 5.002
|
|
# Date created: 16 April 1995
|
|
# Whom: markm
|
|
#
|
|
# $Id: Makefile,v 1.8 1996/03/16 13:04:35 markm Exp $
|
|
#
|
|
|
|
DISTNAME= perl5.002
|
|
PKGNAME= perl-5.002
|
|
CATEGORIES+= lang devel
|
|
MASTER_SITES= ftp://ftp.netlabs.com/pub/outgoing/perl5.0/ \
|
|
ftp://ftp.wpi.edu/perl5/
|
|
|
|
MAINTAINER= markm@FreeBSD.ORG
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= Configure
|
|
CONFIGURE_ARGS= -sde -Dprefix=${PREFIX}
|
|
|
|
PERLMAN= "" book bot call data debug diag embed form func guts ipc lol mod \
|
|
obj op ovl pod re ref run sec style sub syn tie toc trap var xs \
|
|
xstut
|
|
|
|
test:
|
|
@(cd ${WRKSRC}; make test)
|
|
|
|
|
|
post-install:
|
|
.if !defined(NOMANCOMPRESS)
|
|
@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
|
|
.endif
|
|
@strip ${PREFIX}/bin/perl ${PREFIX}/bin/suidperl
|
|
|
|
.include <bsd.port.mk>
|