From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 6 23:30:03 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D49F1065672 for ; Fri, 6 Aug 2010 23:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F1ABB8FC21 for ; Fri, 6 Aug 2010 23:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o76NU2ZE021040 for ; Fri, 6 Aug 2010 23:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o76NU2pc021039; Fri, 6 Aug 2010 23:30:02 GMT (envelope-from gnats) Resent-Date: Fri, 6 Aug 2010 23:30:02 GMT Resent-Message-Id: <201008062330.o76NU2pc021039@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthew Ekstrand-Abueg Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE1611065675 for ; Fri, 6 Aug 2010 23:26:00 +0000 (UTC) (envelope-from mattea@dot.housing.berkeley.edu) Received: from dot.housing.berkeley.edu (dot.Housing.Berkeley.EDU [169.229.71.20]) by mx1.freebsd.org (Postfix) with ESMTP id DA5FC8FC14 for ; Fri, 6 Aug 2010 23:26:00 +0000 (UTC) Received: from dot.housing.berkeley.edu (localhost [127.0.0.1]) by dot.housing.berkeley.edu (8.14.4/8.14.4) with ESMTP id o76NAGeD085354 for ; Fri, 6 Aug 2010 23:10:16 GMT (envelope-from mattea@dot.housing.berkeley.edu) Received: (from mattea@localhost) by dot.housing.berkeley.edu (8.14.4/8.14.4/Submit) id o76NAGhl085353; Fri, 6 Aug 2010 23:10:16 GMT (envelope-from mattea) Message-Id: <201008062310.o76NAGhl085353@dot.housing.berkeley.edu> Date: Fri, 6 Aug 2010 23:10:16 GMT From: Matthew Ekstrand-Abueg To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/149372: Fix devel/p5-Log-Dispatch mod_perl2 dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Ekstrand-Abueg List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Aug 2010 23:30:03 -0000 >Number: 149372 >Category: ports >Synopsis: Fix devel/p5-Log-Dispatch mod_perl2 dependency >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Aug 06 23:30:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Matthew Ekstrand-Abueg >Release: FreeBSD 7.3-RELEASE-p2 amd64 >Organization: Network and Infrastructure Services, RSSP-IT, UC Berkeley >Environment: >Description: p5-Log-Dispatch currently has a line to depend explicitly on the port mod_perl2. This port was changed to ap*-mod_perl2, so the dependency check fails. This should be changed to simply look for the file, so as to be port-name independent. >How-To-Repeat: portupgrade -N www/mod_perl2 portupgrade -N devel/p5-Log-Dispatch >Fix: Patch Makefile to reference mod_perl2.pm instead of the mod_perl2 port. --- Makefile.patch begins here --- --- p5-Log-Dispatch/Makefile.orig 2010-08-06 22:55:28.000000000 +0000 +++ p5-Log-Dispatch/Makefile 2010-08-06 22:55:38.000000000 +0000 @@ -62,7 +62,7 @@ .if ${APACHE_VERSION} == 13 RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libperl.so:${PORTSDIR}/www/mod_perl .else -RUN_DEPENDS+= mod_perl2>=2.0:${PORTSDIR}/www/mod_perl2 +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl2.pm:${PORTSDIR}/www/mod_perl2 .endif .endif --- Makefile.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: