diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2011-01-16 04:59:13 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2011-01-16 04:59:13 +0800 |
commit | 032d2d71e2cede95f131c24415c3ef0c2f59d44f (patch) | |
tree | cbdfbe34515dbc0681d116eb6486d0acc3d36b85 /net | |
parent | fa2d414069c6900f0460a884164da50d8dd7c665 (diff) | |
download | freebsd-ports-gnome-032d2d71e2cede95f131c24415c3ef0c2f59d44f.tar.gz freebsd-ports-gnome-032d2d71e2cede95f131c24415c3ef0c2f59d44f.tar.zst freebsd-ports-gnome-032d2d71e2cede95f131c24415c3ef0c2f59d44f.zip |
- Re-enable X11 by default
- Bump PORTREVISION for dependency change
Suggested by: dougb (via IRC)
Feature safe: yes
Diffstat (limited to 'net')
-rw-r--r-- | net/mtr/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/mtr/Makefile b/net/mtr/Makefile index d7eaf149b34f..e86b2015fa65 100644 --- a/net/mtr/Makefile +++ b/net/mtr/Makefile @@ -7,7 +7,7 @@ PORTNAME= mtr PORTVERSION= 0.80 -PORTREVISION= 1 +PORTREVISION?= 2 CATEGORIES= net ipv6 MASTER_SITES= ftp://ftp.bitwizard.nl/mtr/ \ http://mirrors.evolva.ro/util/mtr/ \ @@ -17,7 +17,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Traceroute and ping in a single graphical network diagnostic tool OPTIONS= IPV6 "Build IPv6 support" on \ - X11 "Build X11-enabled mtr" off + X11 "Build X11-enabled mtr" on GNU_CONFIGURE= yes USE_GMAKE= yes @@ -33,12 +33,12 @@ CONFIGURE_ARGS+=--enable-ipv6 CONFIGURE_ARGS+=--disable-ipv6 .endif -.if !defined(WITH_X11) -CONFIGURE_ARGS+=--without-gtk -.else +.if !defined(WITHOUT_X11) CONFIGURE_ARGS+=--with-gtk USE_GNOME= gtk20 -PKGNAMESUFFIX= -x11 +.else +CONFIGURE_ARGS+=--without-gtk +PKGNAMESUFFIX= -nox11 .endif post-patch: |