Bug 179479 - mail/p5-Mail-SpamAssassin: missed option definition for IPv6 support
Summary: mail/p5-Mail-SpamAssassin: missed option definition for IPv6 support
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: Beech Rintoul
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-11 08:30 UTC by Alexey Markov
Modified: 2013-10-01 06:30 UTC (History)
0 users

See Also:


Attachments
file.diff (722 bytes, patch)
2013-06-11 08:30 UTC, Alexey Markov
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Alexey Markov 2013-06-11 08:30:00 UTC
For some reason there is no definition for option IPV6 in the Makefile, so dependence on net/p5-IO-Socket-INET6 is unconditional.

Fix: Apply attached patch.

Patch attached with submission follows:
How-To-Repeat: cd /usr/ports/mail/p5-Mail-SpamAssassin and try to build port without IPV6 support.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-06-11 08:30:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->beech

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-10-01 06:20:43 UTC
Author: beech
Date: Tue Oct  1 05:20:36 2013
New Revision: 328912
URL: http://svnweb.freebsd.org/changeset/ports/328912

Log:
  - Add option definition for IPv6 support
  
  PR:		ports/179479
  Submitted by:	Alexey Markov <redrat@mail.ru>

Modified:
  head/mail/p5-Mail-SpamAssassin/Makefile

Modified: head/mail/p5-Mail-SpamAssassin/Makefile
==============================================================================
--- head/mail/p5-Mail-SpamAssassin/Makefile	Tue Oct  1 05:10:19 2013	(r328911)
+++ head/mail/p5-Mail-SpamAssassin/Makefile	Tue Oct  1 05:20:36 2013	(r328912)
@@ -38,7 +38,7 @@ CONFIGURE_ARGS=	SYSCONFDIR="${PREFIX}/et
 		LOCALSTATEDIR="${DBDIR}/spamassassin"
 
 OPTIONS_DEFINE=	AS_ROOT SPAMC SACOMPILE DKIM SSL GNUPG MYSQL PGSQL RAZOR \
-		SPF_QUERY RELAY_COUNTRY DCC
+		SPF_QUERY RELAY_COUNTRY DCC IPV6
 OPTIONS_DEFAULT=	AS_ROOT SPAMC DKIM SSL GNUPG RAZOR
 AS_ROOT_DESC=		Run spamd as root (recommended)
 SPAMC_DESC=		Build spamd/spamc (not for amavisd)
@@ -50,6 +50,7 @@ RAZOR_DESC=		Add Vipul's Razor support
 SPF_QUERY_DESC=		Add SPF query support
 RELAY_COUNTRY_DESC=	Relay country support
 DCC_DESC=		Add DCC support (see LICENSE)
+IPV6_DESC=		IPv6 sockets support
 
 SUB_FILES=	pkg-install
 SUB_LIST=	USER=${USERS} GROUP=${GROUPS} INSTALL="${INSTALL}"
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Beech Rintoul freebsd_committer freebsd_triage 2013-10-01 06:21:50 UTC
State Changed
From-To: open->closed

- Committed, Thanks!