Date: Sun, 19 Apr 2009 09:22:13 GMT From: Octavian <itavy@itavy.com> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/133850: p5-Log-Dispatch install dependencies Message-ID: <200904190922.n3J9MDcp008029@www.freebsd.org> Resent-Message-ID: <200904190930.n3J9U2wD013710@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 133850 >Category: ports >Synopsis: p5-Log-Dispatch install dependencies >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 19 09:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Octavian >Release: 7.0 >Organization: >Environment: FreeBSD internweb.automeridian.ro 7.0-RELEASE-p3 FreeBSD 7.0-RELEASE-p3 #1: Tue Sep 2 09:54:43 EEST 2008 itavy@internweb.automeridian.ro:/usr/obj/usr/src/sys/WEBMERIDIAN i386 >Description: hi, i have needed to install p5-Log-Dispatch with apache22 and it was looking dependencies wrong. it was looking for ${LOCALBASE}/libexec/apache2/mod_perl.so instead of ${LOCALBASE}/libexec/apache22/mod_perl.so >How-To-Repeat: >Fix: i have introduced a new variable with the apache2 version --- Makefile.orig 2009-04-17 11:03:42.000000000 +0300 +++ Makefile 2009-04-17 11:02:28.000000000 +0300 @@ -54,7 +54,11 @@ .if defined(WITH_APACHELOG) .if defined(WITH_APACHE2) -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache2/mod_perl.so:${PORTSDIR}/www/mod_perl2 +.if defined(APACHE2_VERSION) +RUN_DEPENDS+= ${LOCALBASE}/libexec/apache${APACHE2_VERSION}/mod_perl.so:${PORTSDIR}/www/mod_perl2 +.else +RUN_DEPENDS+= ${LOCALBASE}/libexec/apache2/mod_perl.so:${PORTSDIR}/www/mod_perl2 +.endif .else RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libperl.so:${PORTSDIR}/www/mod_perl .endif >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904190922.n3J9MDcp008029>