mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
3cbaf768d1
- Turn on FCS validation by default for all sources - support for recent autotools - fixes for crashes when alert backlog was set to zero - fixes for failures in some VIF situations - fixes to resizing windows - fixes to GPS averaging - add WPS state parsing - handle BSSTimestamp parsing - other assorted bug fixes and behavior improvements. - nl8011 support is fixed so finding the vif device works again - full 5GHz channel discovery works now - memory leaks in the drone are fixed - some ncurses compile bugs are resolved.
102 lines
2.7 KiB
Makefile
102 lines
2.7 KiB
Makefile
# Created by: Thomas Spreng <spreng@socket.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kismet
|
|
DISTVERSION= 2016-07-R1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://www.kismetwireless.net/code/
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= 802.11 layer2 wireless network detector, sniffer, and IDS
|
|
|
|
LICENSE= GPLv2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake tar:xz
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= PCRE PLUGINS SETUID DOCS EXAMPLES
|
|
OPTIONS_DEFAULT= PCRE PLUGINS SETUID
|
|
SETUID_DESC= Use privilege separation
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/a$$//}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
PORTDOCS= README
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
PORTEXAMPLES= *
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPCRE}
|
|
CONFIGURE_ARGS+=--enable-pcre
|
|
LIB_DEPENDS+= libpcre.so:devel/pcre
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pcre
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSETUID}
|
|
GROUPS= kismet
|
|
CONFIGURE_ARGS+=--with-suidgroup=wheel
|
|
INSTALL_TARGET= suidinstall
|
|
PLIST_SUB+= SUID="" SUIDGROUP="${GROUPS}"
|
|
PKGMESSAGE= ${WRKDIR}/suid_pkg-message
|
|
SUB_FILES+= suid_pkg-message
|
|
.else
|
|
INSTALL_TARGET= install
|
|
CONFIGURE_ARGS+=--without-suidgroup
|
|
PLIST_SUB+= SUID="@comment " SUIDGROUP=""
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPLUGINS}
|
|
ALL_TARGET= depend all all-plugins
|
|
INSTALL_TARGET+= all-plugins-install
|
|
USES+= ssl
|
|
PLIST_SUB+= PLUGINS=""
|
|
.else
|
|
PLIST_SUB+= PLUGINS="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "/gps=/s/true/false/" \
|
|
-e "/ouifile=/{/wireshark/d;s|/etc|${DOCSDIR}|;}" \
|
|
${WRKSRC}/conf/kismet.conf.in \
|
|
${WRKSRC}/conf/kismet_drone.conf
|
|
@${REINPLACE_CMD} -e "s/plugin-/plugin-[aps]/" \
|
|
-e "s/make/${MAKE_CMD}/" \
|
|
-e "s/\$$(MAKE)/${MAKE_CMD}/" \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e "s/CXXFLAGS/CPPFLAGS/" \
|
|
${WRKSRC}/plugin-alertsyslog/Makefile
|
|
@${FIND} ${WRKSRC} -type f -name 'Makefile' -print0 | ${XARGS} -0 \
|
|
${REINPLACE_CMD} -E \
|
|
'/C(XX)?FLAGS[[:blank:]]*\+=/s/ -g / /'
|
|
@${FIND} ${WRKSRC} -type f \( -name Makefile -o -name Makefile.in \) -print0 | ${XARGS} -0 \
|
|
${REINPLACE_CMD} -e 's,-o $$(INSTUSR) -g $$(INSTGRP),,' \
|
|
-e 's,-o $$(INSTUSR) -g $$(MANGRP),,' \
|
|
-e 's,-o $$(INSTUSR) -g $$(SUIDGROUP) -m 4550,,'
|
|
|
|
post-build:
|
|
cd ${WRKSRC}; ${STRIP_CMD} kismet_client kismet_drone kismet_server */*.so
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/ruby/* ${STAGEDIR}${EXAMPLESDIR}
|
|
.endif
|
|
${MV} ${STAGEDIR}${PREFIX}/etc/kismet.conf \
|
|
${STAGEDIR}${PREFIX}/etc/kismet.conf.sample
|
|
${MV} ${STAGEDIR}${PREFIX}/etc/kismet_drone.conf \
|
|
${STAGEDIR}${PREFIX}/etc/kismet_drone.conf.sample
|
|
|
|
.include <bsd.port.mk>
|