Bug 87051 - p5-Mail-SpamAssassin has borken RUN_DEPENDS
Summary: p5-Mail-SpamAssassin has borken RUN_DEPENDS
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-perl (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-07 14:40 UTC by Michael Schout
Modified: 2005-10-07 14:47 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Schout 2005-10-07 14:40:14 UTC
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

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+=
How-To-Repeat: Build SpamAssassin with WITH_RELAY_COUNTRY turned on.
Comment 1 Marcus Alves Grando freebsd_committer freebsd_triage 2005-10-07 14:42:16 UTC
Responsible Changed
From-To: freebsd-ports-bugs->perl

Over to maintainers.
Comment 2 Anton Berezin freebsd_committer freebsd_triage 2005-10-07 14:47:02 UTC
State Changed
From-To: open->closed

The fix has been committed. Thank you for your submission.