758636d269
It sends ARP REQUEST packets to the LAN and waits for ARP REPLY packets from network nodes that are up, producing a table of currently active IP and MAC addresses. Knowlan uses libpcap and libnet libraries for easy source code review and maintenance. WWW: http://www.enderunix.org/knowlan PR: 58592 Submitted by: Omer Faruk Sen <ofsen@enderunix.org> Approved by: krion (implicit)
24 lines
553 B
Makefile
24 lines
553 B
Makefile
# Ports collection makefile for: knowlan
|
|
# Date Created: 2003-10-27
|
|
# Whom: Omer Faruk Sen <ofsen@enderunix.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= knowlan
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.enderunix.org/knowlan/
|
|
|
|
MAINTAINER= ofsen@enderunix.org
|
|
COMMENT= ARP-based LAN IP and MAC Address Extractor
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ENV= PREFIX="${PREFIX}" LOCALBASE="${LOCALBASE}"
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/knowlan ${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|