diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2008-07-25 20:24:09 +0800 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2008-07-25 20:24:09 +0800 |
commit | fa38ed02cc7ff1a59528f13db1b7dedc130b2def (patch) | |
tree | 94158659da258abce4ed96928351a7282233e421 /net/wistumbler2 | |
parent | 09db2e42a9f1432af998b2877453c2eaf20a132c (diff) | |
download | freebsd-ports-gnome-fa38ed02cc7ff1a59528f13db1b7dedc130b2def.tar.gz freebsd-ports-gnome-fa38ed02cc7ff1a59528f13db1b7dedc130b2def.tar.zst freebsd-ports-gnome-fa38ed02cc7ff1a59528f13db1b7dedc130b2def.zip |
- Remove duplicates from MAKE_ENV after inclusion of CC and CXX in default MAKE_ENV
Diffstat (limited to 'net/wistumbler2')
-rw-r--r-- | net/wistumbler2/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/net/wistumbler2/Makefile b/net/wistumbler2/Makefile index c2477852c8be..e5424bf69773 100644 --- a/net/wistumbler2/Makefile +++ b/net/wistumbler2/Makefile @@ -15,7 +15,6 @@ DISTNAME= wistumbler${PORTVERSION}-pre7 MAINTAINER= ports@FreeBSD.org COMMENT= Network Stumbler for WaveLAN/IEEE Wireless -MAKE_ENV= PREFIX=${LOCALBASE} USE_GTK=1 WRKSRC= ${WRKDIR}/${DISTNAME} USE_GNOME= gtk20 @@ -25,17 +24,13 @@ MAN1= wistumbler2.1 PLIST_FILES= bin/wistumbler2 .if defined(NO_X) -MAKE_ENV= PREFIX=${LOCALBASE} USE_GTK=0 +MAKE_ENV= USE_GTK=0 +.else +MAKE_ENV= USE_GTK=1 .endif .include <bsd.port.pre.mk> -# this port needs the file /sys/dev/owi/if_ieee80211.h, but there -# was not a FreeBSD version bump specifically for that. Use the -# nearest one. -.if ${OSVERSION} < 501107 -IGNORE= requires newer kernel sources -.endif .if ${OSVERSION} > 700045 IGNORE= is not supported on FreeBSD 7.X and later .endif |