mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
160a985a49
network and log ethernet/ip pairings. To simply try out addrwatch start it without any arguments. When started without arguments it will open first non loopback interface and start logging events to the console without writing anything to disk. All discovered ethernet/ip address pairings will be printed to stdout. All debug, warning, and err messages will be sent to syslog and printed to stderr. WWW: https://github.com/fln/addrwatch PR: 244359 Submitted by: Michael Muenz <m.muenz@gmail.com>
29 lines
591 B
Makefile
29 lines
591 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= addrwatch
|
|
DISTVERSIONPREFIX=v
|
|
DISTVERSION= 1.0.2
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= m.muenz@gmail.com
|
|
COMMENT= Supports IP/Ethernet pairing for IPv4 and IPv6
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libevent.so:devel/libevent \
|
|
libpcap.so:net/libpcap \
|
|
libargp.so:devel/argp-standalone
|
|
|
|
USES= autoreconf gmake pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= fln
|
|
|
|
PLIST_FILES= bin/addrwatch \
|
|
bin/addrwatch_stdout \
|
|
bin/addrwatch_syslog \
|
|
man/man8/addrwatch.8.gz
|
|
|
|
.include <bsd.port.mk>
|