1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/net/arprelease/Makefile
Sergey Matveychuk 4fb9dbb840 - Update to 1.2
PR:		ports/81512
Submitted by:	ports fury
2005-05-26 15:24:32 +00:00

35 lines
783 B
Makefile

# New ports collection makefile for: arprelease
# Date created: 02 Aug 2001
# Whom: nbm
#
# $FreeBSD$
#
PORTNAME= arprelease
PORTVERSION= 1.2
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= Libnet tool to flush arp cache entries from devices (eg. routers)
BUILD_DEPENDS= libnet-config:${PORTSDIR}/net/libnet-devel
WRKSRC= ${WRKDIR}/${PORTNAME}
PLIST_FILES= bin/arprelease
LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet-config
do-build:
(cd ${WRKSRC} && \
${CC} ${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib \
-o arprelease arprelease.c \
`${LIBNET_CONFIG} --defines` `${LIBNET_CONFIG} --libs`)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/arprelease ${PREFIX}/bin
.include <bsd.port.mk>