blob: bfee4070bdf5f7e56b3b2ee67640bd7f9e7ef181 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# New ports collection makefile for: wistumbler2
# Date created: 2003/11/15
# Whom: Sebastian Yepes F. <esn@x123.info>
#
# $FreeBSD$
#
PORTNAME= wistumbler2
PORTVERSION= 2.00
PORTREVISION= 7
CATEGORIES= net
MASTER_SITES= ftp://ftp.nopcode.org/prj/wistumbler2/
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
MANCOMPRESSED= yes
MAN1= wistumbler2.1
PLIST_FILES= bin/wistumbler2
.if defined(NO_X)
MAKE_ENV= PREFIX=${LOCALBASE} USE_GTK=0
.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
post-patch:
# Abovementioned header was removed. Patch for it.
# This change is already included in the next version of wistumbler2
.if ${OSVERSION} >= 700006
${REINPLACE_CMD} -e 's,dev/owi/if_ieee80211.h,net80211/ieee80211.h,g' \
${WRKSRC}/src/stumbler.h
.endif
pre-everything::
@${ECHO} "You may specify the following on the command line:"
@${ECHO} ""
@${ECHO} " NO_X=yes Disable The X(GTK2) Support."
@${ECHO} ""
.include <bsd.port.post.mk>
|