- rename ipv6-toolkit to ipv6toolkit like upstream did - no longer patch random(3) to arc4random(3), our random(3) is safe now - no longer patch strncat(3) to strlcat(3), the bug has been fixed OK jca@
33 lines
686 B
Makefile
33 lines
686 B
Makefile
# $OpenBSD: Makefile,v 1.3 2015/04/28 23:16:20 bluhm Exp $
|
|
|
|
COMMENT = SI6 networks IPv6 toolkit
|
|
|
|
VERSION = 2.0
|
|
DISTNAME = ipv6toolkit-v${VERSION}
|
|
PKGNAME = ipv6toolkit-${VERSION}
|
|
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = http://www.si6networks.com/tools/ipv6toolkit/
|
|
|
|
MAINTAINER = Alexander Bluhm <bluhm@openbsd.org>
|
|
|
|
# GPL v3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB = c m pcap
|
|
|
|
MASTER_SITES = http://www.si6networks.com/tools/ipv6toolkit/
|
|
|
|
MAKE_FLAGS = CC=${CC}
|
|
FAKE_FLAGS = PREFIX=${PREFIX} \
|
|
MANPREFIX=${PREFIX} \
|
|
ETCPATH=${DESTDIR}/${PREFIX}/share/examples/ipv6toolkit
|
|
|
|
NO_TEST = Yes
|
|
|
|
pre-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ipv6toolkit
|
|
|
|
.include <bsd.port.mk>
|