158484ab16
so that we'd not force dependance on specific MySQL version, and instead pick the currently installed mysql*-client (or install the default if there is no mysql-client package installed yet) this makes package buildable with arbitrary MySQL version, such as 3.23.x, 4.0.x or 4.1.x
74 lines
2.1 KiB
Makefile
74 lines
2.1 KiB
Makefile
# $NetBSD: Makefile,v 1.11 2004/10/29 05:59:24 jdolecek Exp $
|
|
|
|
DISTNAME= flow-tools-0.67
|
|
PKGREVISION= 1
|
|
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_BUILDLINK3= 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"
|