summaryrefslogtreecommitdiff
path: root/net/libnetdude/Makefile
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-05-04 07:35:47 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-05-04 07:35:47 +0000
commit6a82e4c11d819262b8c4bae3285ff423287d6790 (patch)
tree87636a3813fc6f00657a63601389b6488c68989b /net/libnetdude/Makefile
parentAdd libpcapnav 0.5, (diff)
Add libnetdude 0.6,
The core of the Netdude framework and the place where the packet manipulations are performed. It allows you to implement trace file manipulations at a much higher level of abstraction than code written directly on top of the pcap library. PR: ports/66178 Submitted by: Yann Berthier <yb@sainte-barbe.org>
Notes
Notes: svn path=/head/; revision=108342
Diffstat (limited to 'net/libnetdude/Makefile')
-rw-r--r--net/libnetdude/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/net/libnetdude/Makefile b/net/libnetdude/Makefile
new file mode 100644
index 000000000000..c078f32cd453
--- /dev/null
+++ b/net/libnetdude/Makefile
@@ -0,0 +1,35 @@
+# New ports collection makefile for: libpcapnav
+# Date created: 2004-04-23
+# Whom: Yann Berthier <yb@sainte-barbe.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= libnetdude
+PORTVERSION= 0.6
+CATEGORIES= net
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= netdude
+
+MAINTAINER= yb@sainte-barbe.org
+COMMENT= A library for manipulating libpcap/tcpdump trace files
+
+LIB_DEPENDS= pcapnav.0:${PORTSDIR}/net/libpcapnav
+
+USE_LIBTOOL_VER= 13
+USE_GNOME= glib12
+CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_ARGS= --disable-gtk-doc --with-html-dir=${DOCSDIR}
+INSTALLS_SHLIB= yes
+USE_REINPLACE= yes
+
+post-patch:
+ @${REINPLACE_CMD} -e "s|netinet/if_fddi.h|net/fddi.h|g" \
+ ${WRKSRC}/protocols/fddi/libnd_fddi.h
+ @${REINPLACE_CMD} -e 's|DOC_MODULE = libnetdude|DOC_MODULE =|' \
+ ${WRKSRC}/docs/Makefile.in
+.if defined(NOPORTDOCS)
+ @${REINPLACE_CMD} -e 's|docs||' ${WRKSRC}/Makefile.in
+.endif
+
+.include <bsd.port.mk>