1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-10 07:04:03 +00:00
freebsd-ports/lang/eperl/Makefile
Ralf S. Engelschall c0850f23fe Upgrade to ePerl 2.2.3.
Distribution still exists on {www,ftp}.engelschall.com, CPAN follows
in a few hours.
1997-08-21 15:39:19 +00:00

63 lines
1.8 KiB
Makefile

# New ports collection makefile for: eperl
# Version required: 2.2.3
# Date created: Thu Aug 21 17:32:36 MET DST 1997
# Whom: Ralf S. Engelschall <rse@engelschall.com>
#
# $Id: Makefile,v 1.11 1997/08/14 15:04:23 rse Exp $
#
DISTNAME= eperl-2.2.3
CATEGORIES= lang www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \
http://www.engelschall.com/sw/eperl/distrib/ \
ftp://ftp.engelschall.com/sw/
MASTER_SITE_SUBDIR=Parse
MAINTAINER= rse@engelschall.com
# User-controlled variables list
# INSTALL_ALSO_AS_SSSL
# install ePerl also as a Server-Side
# Scripting Language (SSSL) for Apache
INSTALL_ALSO_AS_SSSL= no
.if defined(INSTALL_ALSO_AS_SSSL)
RUN_DEPENDS= ${PREFIX}/etc/apache/srm.conf:${PORTSDIR}/www/apache
.endif
USE_PERL5= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS+=--with-perl=${PREFIX}/bin/perl
MAN1= eperl.1
test:
@(cd ${WRKSRC}; make test)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/eperl ${PREFIX}/bin/eperl
${INSTALL_MAN} ${WRKSRC}/eperl.1 ${PREFIX}/man/man1/eperl.1
.if !defined(NOPORTDOCS)
@if [ ! -d ${PREFIX}/share/examples/eperl ]; then \
${MKDIR} -p ${PREFIX}/share/examples/eperl; \
fi
${CP} ${WRKSRC}/eg/* ${PREFIX}/share/examples/eperl/
.endif
.if defined(INSTALL_ALSO_AS_SSSL)
@if [ ! -d ${PREFIX}/www/cgi-bin ]; then \
${MKDIR} -p ${PREFIX}/www/cgi-bin; \
fi
${INSTALL_PROGRAM} ${WRKSRC}/eperl ${PREFIX}/www/cgi-bin/nph-eperl
@if [ ".`grep x-httpd-eperl ${PREFIX}/etc/apache/srm.conf`" = . ]; then \
${ECHO} "AddType application/x-httpd-eperl .phtml .eperl .epl" \
>>${PREFIX}/etc/apache/srm.conf; \
${ECHO} "Action application/x-httpd-eperl /cgi-bin/nph-eperl" \
>>${PREFIX}/etc/apache/srm.conf; \
${ECHO} "Added knowledge about ePerl to Apache's srm.conf"; \
else \
${ECHO} "Apache srm.conf is already aware of ePerl"; \
fi
.endif
.include <bsd.port.mk>