Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Oct 2005 08:40:06 -0500 (CDT)
From:      Michael Schout <mschout@gkg.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        Michael Schout <mschout@gkg.net>
Subject:   ports/87051: p5-Mail-SpamAssassin has borken RUN_DEPENDS
Message-ID:  <200510071340.j97De6KY034015@mike.localdomain>
Resent-Message-ID: <200510071340.j97DeEGH060979@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         87051
>Category:       ports
>Synopsis:       p5-Mail-SpamAssassin has borken RUN_DEPENDS
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Oct 07 13:40:14 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Michael Schout <mschout@gkg.net>
>Release:        FreeBSD 5.4-STABLE i386
>Organization:
GKG.NET, Inc.
>Environment:
System: FreeBSD mike.localdomain 5.4-STABLE FreeBSD 5.4-STABLE #1: Fri Sep 30 17:09:05 CDT 2005 mschout@mike.localdomain:/usr/obj/usr/src/sys/MYKERNEL5 i386

>Description:
The p5-Mail-SpamAssassin port has broken RUN_DEPENDS if WITH_RELAY_COUNTRY is
turned on.  If WITH_RELAY_COUNTRY is enabled, RUN_DEPENDS is clobbered in
the Makefile


>How-To-Repeat:
Build SpamAssassin with WITH_RELAY_COUNTRY turned on.

>Fix:

Change the following section of the port Makefile:

.if defined(WITH_RELAY_COUNTRY)
RUN_DEPENDS=	${SITE_PERL}/IP/Country/Fast.pm:${PORTSDIR}/net/p5-IP-Country
.endif

change to this:

.if defined(WITH_RELAY_COUNTRY)
RUN_DEPENDS+=	${SITE_PERL}/IP/Country/Fast.pm:${PORTSDIR}/net/p5-IP-Country
.endif

In other words, replace RUN_DEPENDS= with RUN_DEPENDS+=
>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200510071340.j97De6KY034015>