From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 19 04:00:49 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DBD7316A40F for ; Tue, 19 Dec 2006 04:00:49 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CFBF43C9F for ; Tue, 19 Dec 2006 04:00:49 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBJ40n7D096777 for ; Tue, 19 Dec 2006 04:00:49 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBJ40nZq096776; Tue, 19 Dec 2006 04:00:49 GMT (envelope-from gnats) Date: Tue, 19 Dec 2006 04:00:49 GMT Message-Id: <200612190400.kBJ40nZq096776@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Philip M. Gollucci" Cc: Subject: Re: ports/103813: www/p5-Apache-DBI: fix package dependenies when WITH_MODPERL2 and WITH_APACHE2 are defined X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Philip M. Gollucci" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Dec 2006 04:00:49 -0000 The following reply was made to PR ports/103813; it has been noted by GNATS. From: "Philip M. Gollucci" To: bug-followup@FreeBSD.org, swhetzel@gmail.com Cc: Subject: Re: ports/103813: www/p5-Apache-DBI: fix package dependenies when WITH_MODPERL2 and WITH_APACHE2 are defined Date: Mon, 18 Dec 2006 19:52:04 -0800 This is a multi-part message in MIME format. --------------080705040204030003000707 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sorry, wrong attachment I made the same goof Scott did. s/1.3+/yes/ -- ------------------------------------------------------------------------ Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708 Consultant / http://p6m7g8.net/Resume/resume.shtml Senior Software Engineer - TicketMaster - http://ticketmaster.com 1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB B89E 1324 9B4F EC88 A0BF I never had a dream come true 'Til the day that I found you. Even though I pretend that I've moved on You'll always be my baby. I never found the words to say You're the one I think about each day And I know no matter where life takes me to A part of me will always be... A part of me will always be with you. --------------080705040204030003000707 Content-Type: text/plain; name="p5-Apache-DBI.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="p5-Apache-DBI.diff" Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Apache-DBI/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 3 Dec 2006 23:21:47 -0000 1.23 +++ Makefile 19 Dec 2006 03:51:25 -0000 @@ -18,16 +18,18 @@ MAN3= Apache::DBI.3 Apache::AuthDBI.3 PERL_CONFIGURE= yes -USE_APACHE= yes - -.include .if defined(WITH_MODPERL2) +USE_APACHE= 2.0+ RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl2.pm:${PORTSDIR}/www/mod_perl2 +BUILD_DEPENDS+= ${RUN_DEPENDS} .else +USE_APACHE= yes RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/mod_perl +BUILD_DEPENDS+= ${RUN_DEPENDS} .endif -BUILD_DEPENDS= ${RUN_DEPENDS} + +.include .if ${PERL_LEVEL} < 500800 BUILD_DEPENDS+= ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple --------------080705040204030003000707--