22c160ac23
from Markus Lude with a few changes, tested by many including reyk@, jdixon@. Thanks. ok landry@
112 lines
2.7 KiB
Makefile
112 lines
2.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.52 2008/02/12 14:13:32 rui Exp $
|
|
|
|
COMMENT= highly flexible sniffer/NIDS
|
|
|
|
DISTNAME= snort-2.8.0.1
|
|
CATEGORIES= net security
|
|
MASTER_SITES= ${HOMEPAGE}/dl/current/
|
|
|
|
HOMEPAGE= http://www.snort.org/
|
|
|
|
MAINTAINER= Markus Lude <markus.lude@gmx.de>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c m pcap
|
|
|
|
SHARED_LIBS= sf_engine 1.0 \
|
|
sf_dns_preproc 1.0 \
|
|
sf_ftptelnet_preproc 1.0 \
|
|
sf_smtp_preproc 1.0 \
|
|
sf_dcerpc_preproc 0.0 \
|
|
sf_ssh_preproc 0.0 \
|
|
_sfdynamic_example_rule 0.0 \
|
|
_sfdynamic_preprocessor_example 0.0
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE=simple
|
|
CONFIGURE_ARGS+=${CONFIGURE_SHARED} \
|
|
--enable-dynamicplugin
|
|
|
|
LIB_DEPENDS= pcre::devel/pcre
|
|
|
|
# gcc 3.3.5, Bus errors
|
|
.if ${MACHINE_ARCH} == "sparc64"
|
|
CFLAGS+= -O0
|
|
.endif
|
|
|
|
FLAVORS= postgresql mysql flexresp prelude
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mflexresp}
|
|
LIB_DEPENDS+= dnet.=1::net/libdnet
|
|
CONFIGURE_ARGS+=--enable-flexresp2
|
|
|
|
MASTER_SITES0= http://www-fs.informatik.uni-tuebingen.de/~lude/openbsd/distfiles/
|
|
PATCHFILES= snort-flexresp_patch.diff:0
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mpostgresql}
|
|
LIB_DEPENDS+= pq.>=2::databases/postgresql
|
|
CONFIGURE_ARGS+=--with-postgresql="${LOCALBASE}"
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mmysql}
|
|
LIB_DEPENDS+= lib/mysql/mysqlclient.>=10::databases/mysql
|
|
CONFIGURE_ARGS+=--with-mysql-libraries="${LOCALBASE}/lib" \
|
|
--with-mysql-includes="${LOCALBASE}/include"
|
|
WANTLIB+= z
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mprelude}
|
|
MODULES= devel/gettext
|
|
WANTLIB+= gcrypt gnutls gpg-error pthread z
|
|
LIB_DEPENDS+= prelude.>=8::security/prelude/libprelude
|
|
CONFIGURE_ARGS+=--enable-prelude
|
|
MESSAGE= ${PKGDIR}/MESSAGE-prelude
|
|
.endif
|
|
|
|
CONFIGS= classification.config gen-msg.map reference.config \
|
|
sid-msg.map snort.conf threshold.conf unicode.map
|
|
|
|
PREPROC= decoder.rules preprocessor.rules
|
|
|
|
DOCS= AUTHORS CREDITS README README.* *.pdf TODO USAGE WISHLIST
|
|
|
|
# workaround conflicts between distpatches and patches
|
|
post-patch:
|
|
.if ${FLAVOR:L:Mflexresp}
|
|
@perl -pi -e "s,ip_t,snort_ip," ${WRKSRC}/src/preprocessors/stream.h
|
|
.endif
|
|
|
|
post-build:
|
|
@perl -pi -e "s,%%SYSCONFDIR%%,${SYSCONFDIR}," \
|
|
${WRKSRC}/etc/snort.conf
|
|
@perl -pi -e "s,/usr/local/,${LOCALBASE}/," \
|
|
${WRKSRC}/etc/snort.conf
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/snort
|
|
.for i in ${CONFIGS}
|
|
${INSTALL_DATA} ${WRKSRC}/etc/${i} ${PREFIX}/share/examples/snort
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/doc/generators ${PREFIX}/share/examples/snort
|
|
|
|
.for i in ${PREPROC}
|
|
${INSTALL_DATA} ${WRKSRC}/preproc_rules/${i} ${PREFIX}/share/examples/snort
|
|
.endfor
|
|
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/snort
|
|
.for j in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${j} ${PREFIX}/share/doc/snort
|
|
.endfor
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
.include <bsd.port.mk>
|