1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/net-mgmt/bsd-airtools/Makefile
Sean Chittenden b8e1e7ef86 Correct ports that were abusing the FORBIDDEN variable and replace with
either IGNORE or BROKEN.

Since there seems to be some confusion, for the record:

BROKEN		is reserved for ports that don't work.  This will prevent
		users from installing the port, but please note that
		ports marked as BROKEN will still be built by bento
IGNORE		is reserved for ports that should not be built for one
		reason or another (including bento).  Users and bento
		will not build ports marked as IGNORE.
FORBIDDEN	is reserved for security breakages only!!!  Only mark a
		port as FORBIDDEN if there is a security issue with the
		port at the time.

Reviewed by:	kris (portmgr)
2003-02-07 02:44:21 +00:00

45 lines
1.0 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.2
CATEGORIES= net
MASTER_SITES= http://www.dachb0den.com/projects/bsd-airtools/
DISTNAME= ${PORTNAME}-v${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= seanc@FreeBSD.org
CONF_AIRTOOLS= dstumbler
MAKE_AIRTOOLS= dweputils/dwepcrack dweputils/dwepdump \
dweputils/dwepkeygen prism2ctl prism2dump
INST_AIRTOOLS= ${CONF_AIRTOOLS} ${MAKE_AIRTOOLS}
WRKSRC= ${WRKDIR}/${PORTNAME}
.if !exists(/usr/include/dev/wi/if_wavelan_ieee.h)
BROKEN= You need to upgrade
.endif
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.mk>