Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Jul 1999 13:25:55 +0800 (CST)
From:      clive@CirX.ORG
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/12515: p5-Apache/scripts/install_httpd needs fix ?
Message-ID:  <199907050525.NAA27236@cartier.cirx.org>

next in thread | raw e-mail | index | archive | help

>Number:         12515
>Category:       ports
>Synopsis:       p5-Apache/scripts/install_httpd needs fix ?
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Jul  4 22:20:01 PDT 1999
>Closed-Date:
>Last-Modified:
>Originator:     Clive Lin
>Release:        FreeBSD 4.0-CURRENT i386
>Organization:
hell
>Environment:

FreeBSD cartier.cirx.org 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Wed Jun 30 22:06:53 CST 1999     root@cartier.cirx.org:/usr/src/sys/compile/CARTIER  i386

>Description:

This morning I wanted to install p5-Apache for its mod_perl. (Oh yes, I just cvsuped my ports tree.) At the last step of make install, my box returns me something like apache12/work not found. It seems must be something not-so-updated in www/p5-Apache. So I fixed www/p5-Apache/scripts/install_http. I changed all 12 to 13. And it seems work pretty fine.

>How-To-Repeat:

Simply type ``make install'' under www/p5-Apache.

>Fix:

go into www/p5-Apache/scripts, and apply this patch.

--- install_httpd.orig	Mon Jul  5 13:10:32 1999
+++ install_httpd	Mon Jul  5 13:24:11 1999
@@ -3,11 +3,11 @@
 # $Id: install_httpd,v 1.3 1998/06/27 06:06:32 asami Exp $
 #
 
-opendir( WRKDIR, "$ENV{PORTSDIR}/www/apache12/work" ) || die( "Can't open $ENV{PORTSDIR}/www/apache12/work" );
+opendir( WRKDIR, "$ENV{PORTSDIR}/www/apache13/work" ) || die( "Can't open $ENV{PORTSDIR}/www/apache13/work" );
 ( $srcdir ) = grep( /^apache/, readdir( WRKDIR ) );
 closedir( WRKDIR );
 
-system( "$ENV{INSTALL_PROGRAM} $ENV{PORTSDIR}/www/apache12/work/$srcdir/src/httpd $ENV{PREFIX}/sbin/httpd_modperl" );
+system( "$ENV{INSTALL_PROGRAM} $ENV{PORTSDIR}/www/apache13/work/$srcdir/src/httpd $ENV{PREFIX}/sbin/httpd_modperl" );
 
 #
 # EOF

>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199907050525.NAA27236>