1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/net-mgmt/bsd-airtools/Makefile
Mark Linimon 9ef0ed5efa Correct the BROKEN line; the commit to if_wavelan_ieee.h of 20070711
by thompsa removed some ioctls that this port depended on.  Therefore,
IGNORE is more appropriate.

PR:		ports/117890
Submitted by:	Denis Barov <dindin at dindin dot ru>
Approved by:	portmgr (self)
2007-11-12 18:05:15 +00:00

48 lines
1.1 KiB
Makefile

# New ports collection makefile for: bsd-airtools
# Date created: 2002/07/06
# Whom: Sean Chittenden <seanc@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= bsd-airtools
PORTVERSION= 0.3
CATEGORIES= net-mgmt
MASTER_SITES= http://people.FreeBSD.org/~seanc/ports/bsd-airtools/
DISTNAME= ${PORTNAME}-v${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= BSD Wireless Scanning Tools
CONF_AIRTOOLS= dstumbler
MAKE_AIRTOOLS= dweputils/dwepcrack dweputils/dwepdump \
dweputils/dwepkeygen prism2ctl prism2dump
INST_AIRTOOLS= ${CONF_AIRTOOLS} ${MAKE_AIRTOOLS}
WRKSRC= ${WRKDIR}/${PORTNAME}
do-build:
.for TOOL in ${CONF_AIRTOOLS}
@cd ${WRKSRC}/${TOOL}; ${SH} ${CONFIGURE_SCRIPT}; ${MAKE}
.endfor
.for TOOL in ${MAKE_AIRTOOLS}
@cd ${WRKSRC}/${TOOL}; ${MAKE}
.endfor
do-install:
${MKDIR} ${DOCSDIR}
.for TOOL in ${INST_AIRTOOLS}
@cd ${WRKSRC}/${TOOL}; ${MAKE} ${INSTALL_TARGET}
${INSTALL_DATA} ${WRKSRC}/${TOOL}/README \
${DOCSDIR}/README.`${BASENAME} ${TOOL}`
.endfor
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 700052
IGNORE= broken by removal of wicontrol ioctls from if_wavelan_ieee.h
.endif
.include <bsd.port.post.mk>