Update to version 0.67.

Approved by:	maintainer
This commit is contained in:
Dmitry Sivachenko 2003-06-16 06:35:12 +00:00
parent 6c41bf6fc9
commit e5dda9dc35
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=83099
4 changed files with 15 additions and 14 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= FastCGI
PORTVERSION= 0.58
PORTVERSION= 0.67
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= FCGI
@ -16,9 +16,10 @@ DISTNAME= FCGI-${PORTVERSION}
MAINTAINER= kbyanc@posi.net
COMMENT= Modules for perl5, for enabling FastCGI support in CGI scripts
BUILD_DEPENDS= ${LOCALBASE}/lib/libfcgi.a:${PORTSDIR}/www/fcgi
LIB_DEPENDS= fcgi.0:${PORTSDIR}/www/fcgi
PERL_CONFIGURE= yes
CONFIGURE_ARGS+= --use-installed=${LOCALBASE}
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
MAN3= FCGI.3

View file

@ -1 +1 @@
MD5 (FCGI-0.58.tar.gz) = db5c0a5fd7c24469b52ea329823b1d59
MD5 (FCGI-0.67.tar.gz) = 2e9b5bd1f74290fd9788555e8108a3d2

View file

@ -1,11 +0,0 @@
--- Makefile.PL.orig Wed Oct 27 19:56:24 1999
+++ Makefile.PL Wed Oct 27 20:01:08 1999
@@ -25,7 +25,7 @@
# CPAN
for $dir ("/usr", "/usr/local") {
if (-d "$dir/lib/" && -f "$dir/lib/libfcgi.a"
- && -d "$dir/include" && !grep {!-f "$dir/include/$_"} (@h))
+ && -d "$dir/include/fastcgi/" && !grep {!-f "$dir/include/fastcgi/$_"} (@h))
{
print "Found fcgi library and include files in $dir\n";
print "Will be using that instead of included files\n";

View file

@ -0,0 +1,11 @@
--- Makefile.PL.orig Mon Jun 16 10:31:32 2003
+++ Makefile.PL Mon Jun 16 10:31:41 2003
@@ -33,7 +33,7 @@
$libspec .= "-lfcgi";
my @l = MM->ext($libspec);
if ($l[0] || $l[1] || $l[2]) {
- $prefix = "$useinstalled/include" if $useinstalled;
+ $prefix = "$useinstalled" if $useinstalled;
$libfound = 1;
push @libs, $libspec;
}