diff options
author | Steve Price <steve@FreeBSD.org> | 1999-05-09 01:16:35 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-05-09 01:16:35 +0000 |
commit | 253c687d8f6c5aaa8641906aec378c2e8e05d0df (patch) | |
tree | e8a2134daeb45fc516dd0fdae291bb2a96432d94 /net/libnet/Makefile | |
parent | Second half of botched commit to fix this for -current users and (diff) |
A C library for creating IP packets.
PR: 9901
Submitted by: Peter Shipley <shipley@dis.org>
Diffstat (limited to 'net/libnet/Makefile')
-rw-r--r-- | net/libnet/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net/libnet/Makefile b/net/libnet/Makefile new file mode 100644 index 000000000000..2e643d91800b --- /dev/null +++ b/net/libnet/Makefile @@ -0,0 +1,44 @@ +# Ports collection makefile for: libnet +# Version required: 0.9 +# Date created: Sun Feb 3, 1999 +# Whom: shipley@dis.org +# +# $Id$ +# + +DISTNAME= libnet-0.99a +PKGNAME= libnet-0.9.2 +CATEGORIES= net +MASTER_SITES= http://www.packetfactory.net/libnet/dist/ +EXTRACT_SUFX= .tgz + +MAINTAINER= shipley@dis.org + +MAN3= libnet.3 + +GNU_CONFIGURE= yes + +#NOPROFILE= true + +.include <bsd.port.pre.mk> +.if ${OSVERSION} <= 300000 +BROKEN= does not build +.endif + +WRKSRC= ${WRKDIR}/Libnet-0.99a + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/libnet + ${INSTALL_MAN} ${WRKSRC}/doc/PORTS ${PREFIX}/share/doc/libnet + ${INSTALL_MAN} ${WRKSRC}/doc/README ${PREFIX}/share/doc/libnet + ${INSTALL_MAN} ${WRKSRC}/doc/README.asn.1 ${PREFIX}/share/doc/libnet + ${INSTALL_MAN} ${WRKSRC}/doc/README.bpf ${PREFIX}/share/doc/libnet + ${INSTALL_MAN} ${WRKSRC}/doc/README.examples ${PREFIX}/share/doc/libnet + ${INSTALL_MAN} ${WRKSRC}/doc/README.linux ${PREFIX}/share/doc/libnet + ${INSTALL_MAN} ${WRKSRC}/doc/README.rawsockets ${PREFIX}/share/doc/libnet + ${INSTALL_MAN} ${WRKSRC}/doc/README.stubs ${PREFIX}/share/doc/libnet + +.endif + +.include <bsd.port.post.mk> |