blob: cd93c38ef5e2be88f7ca396bd3458ca008e5cc3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# ex:ts=8
# Ports collection makefile for: arp-sk
# Date Created: Apr 14, 2004
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= arp-sk
PORTVERSION= 0.0.16
CATEGORIES= net
MASTER_SITES= http://www.arp-sk.org/files/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= A tool designed to manipulate ARP tables of all kinds of equipment
BUILD_DEPENDS= ${LOCALBASE}/include/libnet/libnet-types.h:${PORTSDIR}/net/libnet-devel
USE_REINPLACE= yes
#USE_GETOPT_LONG= yes
GNU_CONFIGURE= yes
MAN1= arp-sk.1
PLIST_FILES= sbin/arp-sk
post-patch:
@${REINPLACE_CMD} -e "s, -pedantic -g,," ${WRKSRC}/configure
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/arp-sk ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/man/arp-sk.1 ${MAN1PREFIX}/man/man1
.include <bsd.port.mk>
|