Date: Thu, 5 Aug 2004 13:26:11 +0200 (CEST) From: Janos Mohacsi <mohacsi@niif.hu> To: FreeBSD-gnats-submit@FreeBSD.org Cc: billf@FreeBSD.org Subject: ports/70026: net/mtr port does not follows WITH_IPV6 switch convention. Message-ID: <200408051126.i75BQB88053814@skye.ki.iif.hu> Resent-Message-ID: <200408051130.i75BUMWF065824@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>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@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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200408051126.i75BQB88053814>