blob: c42888ba06ea78bc4e67e9932abd1b2a1c732673 (
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
64
65
66
67
68
69
70
71
72
73
|
# $NetBSD: Makefile,v 1.13 2005/04/11 21:46:46 tv Exp $
DISTNAME= flow-tools-0.67
PKGREVISION= 2
CATEGORIES= net
MASTER_SITES= ftp://ftp.eng.oar.net/pub/flow-tools/
MAINTAINER= cjs@NetBSD.org
HOMEPAGE= http://www.splintered.net/sw/flow-tools/
COMMENT= Collect and store NetFlow data
GNU_CONFIGURE= YES
USE_PKGINSTALL= YES
PKG_SYSCONFSUBDIR= flow-tools
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
EGDIR= ${PREFIX}/share/examples/flow-tools
MAKE_DIRS+= ${PKG_SYSCONFDIR}/sym
MAKE_DIRS+= ${PKG_SYSCONFDIR}/cfg
# These files are config files that are unlikely to be modified in most cases
# so we install them via SUPPORT_FILES.
_SYM_FILES= ip-prot.sym ip-type.sym tcp-port.sym asn.sym tag.sym
.for _f_ in ${_SYM_FILES}
SUPPORT_FILES+= ${EGDIR}/sym/${_f_} ${PKG_SYSCONFDIR}/sym/${_f_}
.endfor
MESSAGE_SUBST+= EGDIR=${EGDIR}
.if defined(FLOW_TOOLS_USE_MYSQL) && \
!empty(FLOW_TOOLS_USE_MYSQL:M[yY][eE][sS])
PKG_DEFAULT_OPTIONS+= mysql
.endif
.if defined(FLOW_TOOLS_USE_POSTGRESQL) && \
!empty(FLOW_TOOLS_USE_POSTGRESQL:M[yY][eE][sS])
PKG_DEFAULT_OPTIONS+= postgresql
.endif
PKG_OPTIONS_VAR= PKG_OPTIONS.flow-tools
PKG_SUPPORTED_OPTIONS= mysql postgresql
.include "../../mk/bsd.options.mk"
# MySQL support.
.if !empty(PKG_OPTIONS:Mmysql)
. include "../../mk/mysql.buildlink3.mk"
CONFIGURE_ARGS+= --with-mysql=${BUILDLINK_PREFIX.mysql-client}
.endif
# PostgreSQL support.
.if !empty(PKG_OPTIONS:Mpostgresql)
. include "../../mk/pgsql.buildlink3.mk"
CONFIGURE_ARGS+= --with-pgsql=${PGSQL_PREFIX}
.endif
# To avoid providing more patch files we do the following...
# Order is important here or else dependencies requiring docbook-to-man/jade
# will be triggered
post-patch:
${_PKG_SILENT}${_PKG_DEBUG} \
cd ${WRKSRC}/docs && \
for m in flow-*.1.in; do \
h=`${BASENAME} $${m} .1.in`.html.in; \
s=`${BASENAME} $${m} .1.in`.sgml; \
for f in $${s} $${h} $${m}; do \
${MV} $${f} $${f}.bak && \
${SED} -e 's,@localstatedir@,@sysconfdir@,g' \
< $${f}.bak > $${f}; \
done; \
done
.include "../../devel/zlib/buildlink3.mk"
.include "../../security/tcp_wrappers/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|