pkgsrc/www/p5-CGI/Makefile
jlam cc35ebc3a5 Add definition of PERL5_SITEARCH used earlier in Makefile. This variable is no
longer automatically defined by bsd.pkg.mk, and this package can't USE_PERL5 as
it's part of the perl5 meta-package.
2001-02-26 07:23:56 +00:00

48 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.11 2001/02/26 07:23:57 jlam Exp $
#
DISTNAME= CGI.pm-2.75
PKGNAME= p5-CGI-2.75
CATEGORIES= www perl5
MASTER_SITES= http://stein.cshl.org/WWW/software/CGI/ \
${MASTER_SITE_PERL_CPAN:=CGI/}
MAINTAINER= christos@netbsd.org
HOMEPAGE= http://stein.cshl.org/WWW/software/CGI/
COMMENT= perl5 module for writing forms-based CGI programs
# Some perl packages install their own versions of this module.
# Can't simply define USE_PERL5.
DEPENDS+= perl-{5.0*,5.6.0nb2,base-5.[6-9]*}:../../lang/perl5-base
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/CGI/.packlist
HTMLDIR= ${PREFIX}/share/doc/html/p5-CGI
do-configure:
cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
post-build:
cd ${WRKSRC}/examples; \
for file in *.cgi *.pl; do \
${MV} -f $${file} $${file}.tmp; \
${SED} -e "s|^#!/.*|#!${PERL5}|g" \
$${file}.tmp > $${file}; \
${RM} -f $${file}.tmp; \
done; \
${CHMOD} +x *.cgi; \
${PERL5} make_links.pl
post-install:
${INSTALL_DATA_DIR} ${HTMLDIR}
${INSTALL_DATA_DIR} ${HTMLDIR}/examples
cd ${WRKSRC}; ${INSTALL_DATA} *.html ${HTMLDIR}
cd ${WRKSRC}/examples; \
${INSTALL_DATA} *.gif *.html *.txt *.xbm ${HTMLDIR}/examples; \
${INSTALL_SCRIPT} *.cgi ${HTMLDIR}/examples
.include "../../mk/bsd.pkg.mk"
.if !defined(PERL5_SITEARCH)
PERL5_SITEARCH!= eval `${PERL5} -V:installsitearch 2>/dev/null`; \
${ECHO} $${installsitearch}
.endif