1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/net-mgmt/spectools/Makefile
Pav Lucistnik 9cd91f3661 - Remove conditional checks for FreeBSD 6.X
PR:		ports/165608
Submitted by:	pgollucci
Approved by:	portmgr (hat)
2012-03-02 14:56:37 +00:00

81 lines
1.8 KiB
Makefile

# New ports collection makefile for: spectools
# Date created: 09 Oct 2007
# Whom: Henrik Brix Andersen <henrik@brixandersen.dk>
#
# $FreeBSD$
#
PORTNAME= spectools
PORTVERSION= 201004.r1
CATEGORIES= net-mgmt
MASTER_SITES= http://www.kismetwireless.net/code/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= brix
DISTNAME= spectools-2010-04-R1
MAINTAINER= brix@FreeBSD.org
COMMENT= Tools for the Wi-Spy spectrum analyzers from MetaGeek LLC
LICENSE= GPLv2
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
USE_GMAKE= yes
PORTDOCS= README
OPTIONS= GTK "Enable graphical client" On \
NCURSES "Enable ncurses client" On
ALL_TARGET= spectool_net spectool_raw
.include <bsd.port.options.mk>
.if defined(WITH_GTK)
ALL_TARGET+= spectool_gtk
LIB_DEPENDS+= gtk:${PORTSDIR}/x11-toolkits/gtk20
PLIST_SUB+= GTK=""
.else
PLIST_SUB+= GTK="@comment "
.endif
.if defined(WITH_NCURSES)
ALL_TARGET+= spectool_curses
PLIST_SUB+= NCURSES=""
.else
PLIST_SUB+= NCURSES="@comment "
.endif
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 800069
LIB_DEPENDS+= usb-0.1:${PORTSDIR}/devel/libusb
.endif
.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
.if ${OSVERSION} > 800000
BROKEN= Does not build: duplicate definition of malloc
.else
BROKEN= Does not compile: fails to build wispy_hw_dbx.c
.endif
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/spectool_net ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/spectool_raw ${PREFIX}/bin
.if defined(WITH_GTK)
${INSTALL_PROGRAM} ${WRKSRC}/spectool_gtk ${PREFIX}/bin
.endif
.if defined(WITH_NCURSES)
${INSTALL_PROGRAM} ${WRKSRC}/spectool_curses ${PREFIX}/bin
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S@^@${WRKSRC}/@} ${DOCSDIR}
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>