197b73e029
PR: 190806 Submitted by: Marco Steinbach <coco@executive-computing.de> Approved by: former maintainer (timeout)
29 lines
637 B
Makefile
29 lines
637 B
Makefile
# Created by: joseph@randomnetworks.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sendip
|
|
PORTVERSION= 2.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= net-mgmt ipv6
|
|
MASTER_SITES= http://www.earth.li/projectpurple/files/
|
|
|
|
MAINTAINER= coco@executive-computing.de
|
|
COMMENT= SendIP is a commandline tool to allow sending arbitrary IP packets
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= help2man:${PORTSDIR}/misc/help2man
|
|
|
|
USES= gmake perl5
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sendip
|
|
.for slib in ipv4.so ipv6.so icmp.so tcp.so udp.so rip.so ripng.so ntp.so \
|
|
bgp.so
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/sendip/${slib}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|