ports/70026: net/mtr port does not follows WITH_IPV6 switch convention.

Janos Mohacsi mohacsi at niif.hu
Thu Aug 5 11:30:23 UTC 2004


>Number:         70026
>Category:       ports
>Synopsis:       net/mtr port does not follows WITH_IPV6 switch convention.
>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:   Thu Aug 05 11:30:22 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Janos Mohacsi
>Release:        FreeBSD 4.10-PRERELEASE i386
>Organization:
NIIF
>Environment:
System: FreeBSD skye.ki.iif.hu 4.10-PRERELEASE FreeBSD 4.10-PRERELEASE #7: Thu May 20 13:27:41 CEST 2004 root at skye.ki.iif.hu:/usr/obj/mirror/src/sys/SKYE i386

>Description:
	net/mtr port does not follow enabling IPv6 convention:
	defined(WITH_IPV6)
	instead it invents it own scheme: WANT_IPV6
	
	mtr port should be updated to follow the FreeBSD IPv6 enabling 
	convention.
>How-To-Repeat:
	Check the net/mtr Makefile.
	Here is the small fix.
>Fix:


--- Makefile.orig	Thu Aug  5 13:19:20 2004
+++ Makefile	Thu Aug  5 13:20:13 2004
@@ -19,14 +19,14 @@
 GNU_CONFIGURE=	yes
 USE_GMAKE=	yes
 WANT_GNOME=	yes
-WANT_IPV6=	yes
+WITH_IPV6=	yes
 
 MAN8=		mtr.8
 PLIST_FILES=	sbin/mtr
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} >= 400014 && defined(WANT_IPV6)
+.if ${OSVERSION} >= 400014 && defined(WITH_IPV6)
 PATCHFILES=	mtr-054-v6-20040216.diff.gz
 PATCH_SITES=	ftp://ftp.kame.net/pub/kame/misc/
 PATCH_DIST_STRIP=	-p1
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list