View | Details | Raw Unified | Return to bug 168808 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-5 / +4 lines)
Lines 16-22 Link Here
16
MAINTAINER=	sunpoet@FreeBSD.org
16
MAINTAINER=	sunpoet@FreeBSD.org
17
COMMENT=	Traceroute and ping in a single graphical network diagnostic tool
17
COMMENT=	Traceroute and ping in a single graphical network diagnostic tool
18
18
19
OPTIONS=	IPV6	"Build IPv6 support" on
19
OPTIONS_DEFINE=	IPV6 X11
20
OPTIONS_DEFAULT=	IPV6
20
21
21
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
22
USE_GMAKE=	yes
23
USE_GMAKE=	yes
Lines 26-45 Link Here
26
27
27
.include <bsd.port.options.mk>
28
.include <bsd.port.options.mk>
28
29
29
.if !defined(WITHOUT_IPV6)
30
.if ${PORT_OPTIONS:MIPV6}
30
CONFIGURE_ARGS+=--enable-ipv6
31
CONFIGURE_ARGS+=--enable-ipv6
31
CATEGORIES+=	ipv6
32
CATEGORIES+=	ipv6
32
.else
33
.else
33
CONFIGURE_ARGS+=--disable-ipv6
34
CONFIGURE_ARGS+=--disable-ipv6
34
.endif
35
.endif
35
36
36
.if !defined(WITHOUT_X11)
37
.if ${PORT_OPTIONS:MX11}
37
CONFIGURE_ARGS+=--with-gtk
38
CONFIGURE_ARGS+=--with-gtk
38
OPTIONS+=	X11	"Build X11-enabled mtr" on
39
USE_GNOME=	gtk20
39
USE_GNOME=	gtk20
40
.else
40
.else
41
CONFIGURE_ARGS+=--without-gtk
41
CONFIGURE_ARGS+=--without-gtk
42
OPTIONS+=	X11	"Build X11-enabled mtr" off
43
PKGNAMESUFFIX=	-nox11
42
PKGNAMESUFFIX=	-nox11
44
.endif
43
.endif
45
44

Return to bug 168808