mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
28 lines
622 B
Makefile
28 lines
622 B
Makefile
# Created by: Roman Shterenzon <roman@xpert.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= arping
|
|
PORTVERSION= 2.09
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.habets.pp.se/synscan/files/
|
|
|
|
MAINTAINER= gavin@FreeBSD.org
|
|
COMMENT= ARP level "ping" utility
|
|
|
|
LIB_DEPENDS= net:${PORTSDIR}/net/libnet
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= LIBS="`${LIBNET_CONFIG} --libs` -lpcap"
|
|
CFLAGS+= `${LIBNET_CONFIG} --defines`
|
|
CPPFLAGS+= -I${LOCALBASE}/include `${LIBNET_CONFIG} --cflags`
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config
|
|
|
|
MAN8= arping.8
|
|
PLIST_FILES= sbin/arping
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.mk>
|