02a5f6113a
- Add INSTALL_TARGET=install-strip Approved by: portmgr (implicit, bump unstaged port)
26 lines
606 B
Makefile
26 lines
606 B
Makefile
# Created by: Roman Shterenzon <roman@xpert.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= arping
|
|
PORTVERSION= 2.14
|
|
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>
|