freebsd-ports/net-mgmt/kismet/Makefile
Rong-En Fan f935a609c5 - Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
supports them.  This is determined by running ``configure --help'' in
  do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
  which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
  Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
  PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
  subdirectory detection.

PR:		ports/111470
Approved by:	portmgr
Discussed with:	stas (Mk/*), gerald (info related stuffs)
Tested by:	pointyhat exp run
2007-07-23 09:36:51 +00:00

111 lines
3.3 KiB
Makefile

# New ports collection makefile for: kismet
# Date created: 3 May 2004
# Whom: Thomas Spreng <spreng@socket.ch>
#
# $FreeBSD$
#
PORTNAME= kismet
PORTVERSION= 200701.r1
CATEGORIES= net-mgmt
MASTER_SITES= http://www.kismetwireless.net/code/
DISTNAME= kismet-2007-01-R1b
MAINTAINER= peter.thoenen@yahoo.com
COMMENT= 802.11 layer2 wireless network detector, sniffer, and IDS
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
CONFIGURE_ARGS+= --enable-syspcap
OPTIONS= CURSES "libcurses interface" on \
PANEL "libpanels interface" on \
SETUID "Install kismet with setuid" on \
GPSMAP "Build gpsmap utility" off \
GMAP "Build gpsmap with Google Maps patch *UNOFFICIAL*" off
RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget
.include <bsd.port.pre.mk>
.ifdef(WITHOUT_CURSES)
CONFIGURE_ARGS+=--disable-curses
.endif
.ifdef(WITHOUT_PANEL)
CONFIGURE_ARGS+=--disable-panel
.endif
.ifdef(WITHOUT_SETUID)
CONFIGURE_ARGS+=--disable-setuid
.endif
.ifdef(WITH_GPSMAP)
PLIST_SUB+= GPS=""
LIB_DEPENDS+= gmp.7:${PORTSDIR}/math/libgmp4 \
expat.6:${PORTSDIR}/textproc/expat2 \
Magick++.10:${PORTSDIR}/graphics/ImageMagick
BUILD_DEPENDS+= wget:${PORTSDIR}/ftp/wget
MAN1= gpsmap.1
.else
CONFIGURE_ARGS+=--disable-gpsmap
PLIST_SUB+= GPS="@comment "
.endif
.ifdef(WITH_GMAP) && defined(WITH_GPSMAP)
PATCH_SITES= http://www.parknation.com/gmap/files/
PATCHFILES= gpsmap-gmap-0.1.tgz
PLIST_SUB+= GMAP=""
.ifndef(NOPORTDOC)
SUB_LIST+= DOCSDIR=${DOCSDIR}
SUB_FILES+= pkg-message
.endif
GMAP= gpsmap-gmap
PORTDOCS= ${GMAP}/README.txt
.else
PLIST_SUB+= GMAP="@comment "
.endif
MAN1+= kismet.1 kismet_drone.1
MAN5= kismet.conf.5 kismet_drone.conf.5 kismet_ui.conf.5
PORTDOCS+= README
.if ${OSVERSION} < 502000
CONFIGURE_ARGS+= --disable-pcap
.endif
post-extract:
.ifdef(WITH_GMAP) && defined(WITH_GPSMAP)
@${TAR} -C ${WRKSRC} -xzf ${DISTDIR}/${DIST_SUBDIR}/${PATCHFILES}
@${PATCH} -d ${WRKSRC}/${GMAP}-0.1 --forward --quiet < ${PKGDIR}/files/${GMAP}-0.1.diff.patch
@${PATCH} -d ${WRKSRC} --forward --quiet < ${WRKSRC}/${GMAP}-0.1/${GMAP}-0.1.diff
.endif
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
${WRKSRC}/configure
post-install:
.ifndef(NOPORTDOC)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.ifdef(WITH_GMAP) && defined(WITH_GPSMAP)
${MKDIR} ${DATADIR}/${GMAP}/mapfiles
${INSTALL_DATA} ${WRKSRC}/${GMAP}-0.1/index.html ${DATADIR}/${GMAP}/index.html
${INSTALL_DATA} ${WRKSRC}/${GMAP}-0.1/mapfiles/shadow.png ${DATADIR}/${GMAP}/mapfiles/shadow.png
${INSTALL_DATA} ${WRKSRC}/${GMAP}-0.1/mapfiles/wep.png ${DATADIR}/${GMAP}/mapfiles/wep.png
${INSTALL_DATA} ${WRKSRC}/${GMAP}-0.1/mapfiles/open.png ${DATADIR}/${GMAP}/mapfiles/open.png
${INSTALL_DATA} ${WRKSRC}/${GMAP}-0.1/mapfiles/wpa.png ${DATADIR}/${GMAP}/mapfiles/wpa.png
.ifndef(NOPORTDOC)
@${INSTALL_DATA} ${WRKSRC}/${GMAP}-0.1/README.txt ${DOCSDIR}/${GMAP}
@${CAT} ${PKGMESSAGE}
.endif
.endif
${INSTALL_SCRIPT} ${WRKSRC}/extra/manuf_update.sh ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/conf/kismet.conf ${PREFIX}/etc/kismet.conf.sample
${INSTALL_DATA} ${WRKSRC}/conf/kismet_drone.conf ${PREFIX}/etc/kismet_drone.conf.sample
${INSTALL_DATA} ${WRKSRC}/conf/kismet_ui.conf ${PREFIX}/etc/kismet_ui.conf.sample
.include <bsd.port.post.mk>