From owner-freebsd-ports Sun Jul 4 22:20: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 25DF915256 for ; Sun, 4 Jul 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA67777; Sun, 4 Jul 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from www.neto.net (www.neto.net [210.209.34.10]) by hub.freebsd.org (Postfix) with ESMTP id 9F02114EAB for ; Sun, 4 Jul 1999 22:18:42 -0700 (PDT) (envelope-from clive@cartier.cirx.org) Received: from cartier.cirx.org (clive@ts5-26.tpe.neto.net [210.209.42.26]) by www.neto.net (8.9.1/8.9.1) with ESMTP id NAA09014 for ; Mon, 5 Jul 1999 13:18:39 +0800 (CST) Received: (from clive@localhost) by cartier.cirx.org (8.9.3/8.9.3) id NAA27236; Mon, 5 Jul 1999 13:25:55 +0800 (CST) (envelope-from clive) Message-Id: <199907050525.NAA27236@cartier.cirx.org> Date: Mon, 5 Jul 1999 13:25:55 +0800 (CST) From: clive@CirX.ORG Reply-To: clive@CirX.ORG To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12515: p5-Apache/scripts/install_httpd needs fix ? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >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