forked from Lainports/freebsd-ports
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
# New ports collection makefile for: arping
|
|
# Date Created: 1 Oct 2000
|
|
# Whom: Roman Shterenzon <roman@xpert.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= arping
|
|
PORTVERSION= 1.07
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.habets.pp.se/pub/synscan/
|
|
|
|
MAINTAINER= ports@oven.org
|
|
COMMENT= ARP level "ping" utility
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet
|
|
|
|
LDFLAGS+= -lpcap
|
|
|
|
MAN8= arping.8
|
|
PLIST_FILES= sbin/arping
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 600031
|
|
BROKEN= "Does not compile on FreeBSD >= 6.0"
|
|
.endif
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && \
|
|
${CC} ${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib \
|
|
-DUSE_NETIF=1 -DFREEBSD=1 -c `libnet-config --defines` \
|
|
`libnet-config --cflags` ${PORTNAME}.c && \
|
|
${CC} ${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib \
|
|
-DUSE_NETIF=1 -DFREEBSD=1 -o ${PORTNAME} ${PORTNAME}.o \
|
|
`libnet-config --libs` ${LDFLAGS}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/arping ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/arping.8 ${PREFIX}/man/man8
|
|
|
|
.include <bsd.port.post.mk>
|