summaryrefslogtreecommitdiff
path: root/net-mgmt/cflowd/Makefile
blob: 97f93a9c46bff0be2e354437ffafacd018a7d0f9 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# New ports collection makefile for:	cflowd
# Date created:		Di   7 Nov 2000 19:48:50 CET
# Whom:			Andreas Klemm <andreas@klemm.gtn.com>
#
# $FreeBSD$
#

PORTNAME=	cflowd
PORTVERSION=	2.1.b1
PORTREVISION=	10
PORTEPOCH=	1
CATEGORIES=	net-mgmt
MASTER_SITES=	http://www.caida.org/tools/measurement/cflowd/download/
DISTNAME=	${PORTNAME}-${PORTVERSION:S|.|-|g}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Flow analysis tool used for analyzing Cisco's NetFlow switching

LIB_DEPENDS=	Arts.0:${PORTSDIR}/net-mgmt/arts++

USE_AUTOTOOLS=	libtool:22
USE_GMAKE=	yes
USE_BISON=	build
USE_LDCONFIG=	yes

CONFIGURE_ARGS=	--enable-shared --with-artspp=${LOCALBASE}

MANL=		cfdases.l cfdifmatrix.l cfdnets.l cfdnexthops.l \
		cfdportmatrix.l cfdprotos.l cfdtos.l flowdump.l flowwatch.l

OPTIONS=	FLOWSCAN "FlowScan patch" off

.include <bsd.port.pre.mk>

.if defined(WITH_FLOWSCAN)
PATCH_SITES+=	http://net.doit.wisc.edu/~plonka/cflowd/
PATCHFILES+=	cflowd-${PORTVERSION:S|.|-|g}-djp.patch
.endif

post-extract:
	${CHMOD} -R u+w ${WRKSRC}

post-patch:
	@${FIND} ${WRKSRC} -type f | ${XARGS}	\
		${REINPLACE_CMD} -e 's|iostream.h>|iostream>|;s|strstream.h|sstream|'
	@${FIND} ${WRKSRC} -name Makefile.in | ${XARGS}	\
		${REINPLACE_CMD} -e '/^LIBTOOL =/s^\$$(top_builddir)/libtool^${LIBTOOL}^'	\
		-e '/LIBTOOL/ { ;\
			N ;\
			/ -o / s|$${LIBTOOL} $${CXX}|$${LIBTOOL} --mode=link $${CXX}| ;\
			P ;\
			D ;\
		}';
	@${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} \
		-e 's|$${LIBTOOL} $$(CXX)|$${LIBTOOL} --mode=compile $$(CXX)|'		\
		-e 's|$${LIBTOOL} $${CXX}|$${LIBTOOL} --mode=compile $${CXX}|'		\
		-e 's|$${LIBTOOL} \.\.|$${LIBTOOL} --mode=install ..|'

post-install:
	${INSTALL_SCRIPT} ${FILESDIR}/cflowd.sh \
		${PREFIX}/etc/rc.d/cflowd-base.sh.sample

.include <bsd.port.post.mk>