42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.23 2003/07/22 04:14:28 martti Exp $
|
|
#
|
|
|
|
VERS= 2.91
|
|
DISTNAME= CGI.pm-${VERS}
|
|
PKGNAME= p5-CGI-${VERS}
|
|
SVR4_PKGNAME= p5cgi
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES+= ${MASTER_SITE_PERL_CPAN:=CGI/}
|
|
|
|
MAINTAINER= jlam@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.
|
|
BUILDLINK_DEPENDS.perl= {perl-5.0*,perl-5.6.0nb2,perl-base>=5.6.0,perl>=5.6.1nb2}
|
|
|
|
USE_BUILDLINK2= YES
|
|
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/CGI/.packlist
|
|
HTMLDIR= ${PREFIX}/share/doc/html/p5-CGI
|
|
|
|
post-build:
|
|
cd ${WRKSRC}/examples; \
|
|
for file in *.cgi *.pl; do \
|
|
${SED} -e "s|^#!/.*|#!${PERL5}|g" \
|
|
$${file} > $${file}.tmp; \
|
|
${MV} -f $${file}.tmp $${file}; \
|
|
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 "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|