diff options
author | miwi <miwi@FreeBSD.org> | 2013-03-08 00:53:45 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2013-03-08 00:53:45 +0800 |
commit | 01586cc2cd8a893e9fb607884b766059ae2a287d (patch) | |
tree | e492c56fa7379da1ca224d6c3b1e9a31bdf1f7d9 /dns/dnstracer | |
parent | a526e1d7b60fba52822780fd8712e159d1c7b55c (diff) | |
download | freebsd-ports-gnome-01586cc2cd8a893e9fb607884b766059ae2a287d.tar.gz freebsd-ports-gnome-01586cc2cd8a893e9fb607884b766059ae2a287d.tar.zst freebsd-ports-gnome-01586cc2cd8a893e9fb607884b766059ae2a287d.zip |
- Convert to OptionsNG
- Trim header
Reviewed by: bapt
Diffstat (limited to 'dns/dnstracer')
-rw-r--r-- | dns/dnstracer/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/dns/dnstracer/Makefile b/dns/dnstracer/Makefile index 7dc64d9d1a95..4db2d964d74a 100644 --- a/dns/dnstracer/Makefile +++ b/dns/dnstracer/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: dnstracer -# Date created: 18 January 2002 -# Whom: Edwin Groothuis <edwin@mavetju.org> -# +# Created by: Edwin Groothuis <edwin@mavetju.org> # $FreeBSD$ -# PORTNAME= dnstracer PORTVERSION= 1.9 @@ -20,12 +16,12 @@ USE_GMAKE= yes MAN8= dnstracer.8 PLIST_FILES= bin/dnstracer -OPTIONS= IPV6 "With IPv6 support" on +OPTIONS_DEFINE= IPV6 -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITHOUT_IPV6) +.if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+=--disable-ipv6 .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |