From owner-freebsd-ports@FreeBSD.ORG Fri Jul 25 05:00:08 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F020237B401 for ; Fri, 25 Jul 2003 05:00:07 -0700 (PDT) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65CD643F85 for ; Fri, 25 Jul 2003 05:00:06 -0700 (PDT) (envelope-from olive@oban.frmug.org) Received: from frmug.org (localhost [127.0.0.1])h6PC0AIY018235NO) for ; Fri, 25 Jul 2003 14:00:11 +0200 (CEST) (envelope-from olive@oban.frmug.org) Received: (from uucp@localhost) by frmug.org (8.12.9/8.12.9/Submit) with UUCP id h6PC0A8d018234 for freebsd-ports@freebsd.org; Fri, 25 Jul 2003 14:00:10 +0200 (CEST) Received: by weirdos.oban.frmug.org (Postfix, from userid 1002) id 57C7A8C0C; Fri, 25 Jul 2003 13:58:51 +0200 (CEST) Date: Fri, 25 Jul 2003 13:58:51 +0200 From: Olivier Tharan To: freebsd-ports@freebsd.org Message-ID: <20030725115851.GE2189@weirdos.oban.frmug.org> Mail-Followup-To: freebsd-ports@freebsd.org References: <20030714213252.GJ51069@weirdos.oban.frmug.org> <20030715084241.GA15954@droso.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20030715084241.GA15954@droso.net> X-Attribution: Olive Subject: Re: bug in p5-Apache-Test install? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jul 2003 12:00:08 -0000 * Erwin Lansing (20030715 10:42): > Yes. www/p5-Apache-Test cannot install (both perl 5.6.1 and 5.005_03). > I haven't had time to look for a fix though. If you have a patch, I'd be > happy to test it. See also message from Marc Fournier on July, 22nd. The trick would be to s/PERLRUN/PERL/ in Makefile in a post-configure or pre-build target (PERLRUN appears only once). Is this patch enough? Do you want me to file a PR? --- www/p5-Apache-Test/Makefile.orig Fri Jul 25 13:56:39 2003 +++ www/p5-Apache-Test/Makefile Fri Jul 25 13:57:47 2003 @@ -32,5 +32,6 @@ post-configure: @${PERL} -pi -e 's/^(POD2MAN_EXE.*)$$/\1 --lax/;' ${WRKSRC}/Makefile + @${PERL} -pi -e 's/PERLRUN/PERL/;' ${WRKSRC}/Makefile .include -- olive