mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
27 lines
606 B
Makefile
27 lines
606 B
Makefile
# Created by: Roman Shterenzon <roman@xpert.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= arping
|
|
PORTVERSION= 2.15
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.habets.pp.se/synscan/files/
|
|
|
|
MAINTAINER= gavin@FreeBSD.org
|
|
COMMENT= ARP level "ping" utility
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libnet.so:${PORTSDIR}/net/libnet
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include \
|
|
`${LIBNET_CONFIG} --cflags` `${LIBNET_CONFIG} --defines`
|
|
LIBS+= -L${LOCALBASE}/lib `${LIBNET_CONFIG} --libs` -lpcap
|
|
|
|
LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config
|
|
|
|
PLIST_FILES= sbin/arping man/man8/arping.8.gz
|
|
|
|
.include <bsd.port.mk>
|