Index: head/security/barnyard2/Makefile =================================================================== --- head/security/barnyard2/Makefile (revision 335635) +++ head/security/barnyard2/Makefile (revision 335636) @@ -1,145 +1,144 @@ # $FreeBSD$ PORTNAME= barnyard2 -PORTVERSION= 1.12 -PORTREVISION= 1 +PORTVERSION= 1.13 CATEGORIES= security MAINTAINER= pauls@utdallas.edu COMMENT= Interpreter for Snort unified2 binary output files LICENSE= GPLv2 USE_GITHUB= yes GH_ACCOUNT= firnsy GH_TAGNAME= v2-${PORTVERSION} -GH_COMMIT= 3c1f553 +GH_COMMIT= 272eaf7 OPTIONS_DEFINE= 64BIT ARUBA BRO GRE IPV6 MPLS MYSQL MYSQL_SSL ODBC PRELUDE PGSQL NO_OPTIONS_SORT=yes 64BIT_DESC= Enable 64bit compilation (experimental) ARUBA_DESC= Enable aruba support BRO_DESC= Enable bro support (libbroccoli) GRE_DESC= Enable gre support MYSQL_SSL_DESC= Enable mysql ssl support (experimental) PRELUDE_DESC= Enable prelude support .if defined(SLAVE) OPTIONS_DEFINE+= TCL OPTIONS_DESC= Enable tcl support for sguil OPTIONS_DEFAULT+= TCL .endif USE_AUTOTOOLS= libtoolize aclocal autoheader automake autoconf LIBTOOLIZE_ARGS=--copy --force AUTOMAKE_ARGS= --add-missing --copy ACLOCAL_ARGS= -I m4 -I ${LOCALBASE}/share/aclocal USE_RC_SUBR= barnyard2 GNU_CONFIGURE= yes SUB_FILES= pkg-message PORTDOCS1= README RELEASE.NOTES -PORTDOCS2= INSTALL README.aruba README.database README.sguil README.snortsam +PORTDOCS2= INSTALL README.aruba README.database README.sguil README.sig_suppress README.snortsam EXAMPLES= SCHEMA_ACCESS create_db2 create_mssql create_mysql create_oracle.sql create_postgresql .include .if ${PORT_OPTIONS:M64BIT} CONFIGURE_ARGS+= --enable-64bit-gcc .else CONFIGURE_ARGS+= --disable-64bit-gcc .endif .if ${PORT_OPTIONS:MARUBA} CONFIGURE_ARGS+= --enable-aruba .else CONFIGURE_ARGS+= --disable-aruba .endif .if ${PORT_OPTIONS:MBRO} LIB_DEPENDS+= libbroccoli.so:${PORTSDIR}/security/broccoli CONFIGURE_ARGS+= --enable-bro --with-broccoli=${LOCALBASE}/lib .else CONFIGURE_ARGS+= --disable-bro .endif .if ${PORT_OPTIONS:MGRE} CONFIGURE_ARGS+= --enable-gre .else CONFIGURE_ARGS+= --disable-gre .endif .if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 .endif .if ${PORT_OPTIONS:MMPLS} CONFIGURE_ARGS+= --enable-mpls .else CONFIGURE_ARGS+= --disable-mpls .endif .if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql \ --with-mysql-includes=${LOCALBASE}/include/mysql \ --with-mysql-libraries=${LOCALBASE}/lib/mysql .else CONFIGURE_ARGS+= --without-mysql .endif .if ${PORT_OPTIONS:MMYSQL_SSL} USE_MYSQL= yes CONFIGURE_ARGS+= --enable-mysql-ssl-support .else CONFIGURE_ARGS+= --disable-mysql-ssl-support .endif .if ${PORT_OPTIONS:MODBC} LIB_DEPENDS+= odbc:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+= --with-odbc .else CONFIGURE_ARGS+= --without-odbc .endif .if ${PORT_OPTIONS:MPRELUDE} BUILD_DEPENDS+= prelude-manager:${PORTSDIR}/security/prelude-manager CONFIGURE_ARGS+= --enable-prelude .else CONFIGURE_ARGS+= --disable-prelude .endif .if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes WANT_PGSQL_VER= 92+ CONFIGURE_ARGS+= --with-postgresql=${LOCALBASE}/bin/pg_config --with-pgsql-includes=${LOCALBASE}/include/postgresql/server .else CONFIGURE_ARGS+= --without-postgresql .endif .if ${PORT_OPTIONS:MTCL} USES+= tcl CONFIGURE_ARGS+= --with-tcl=${LOCALBASE}/lib/tcl${TCL_VER} .else CONFIGURE_ARGS+= --without-tcl .endif post-patch: @${REINPLACE_CMD} 's|/etc|${LOCALBASE}/etc|' \ ${WRKSRC}/etc/barnyard2.conf do-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS1:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS2:S|^|${WRKSRC}/doc/|} ${STAGEDIR}${DOCSDIR} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${EXAMPLES:S|^|${WRKSRC}/schemas/|} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_PROGRAM} ${WRKSRC}/src/barnyard2 ${STAGEDIR}${PREFIX}/bin/ ${CP} ${WRKSRC}/etc/barnyard2.conf ${STAGEDIR}${PREFIX}/etc/barnyard2.conf.sample .include Index: head/security/barnyard2/distinfo =================================================================== --- head/security/barnyard2/distinfo (revision 335635) +++ head/security/barnyard2/distinfo (revision 335636) @@ -1,2 +1,2 @@ -SHA256 (barnyard2-1.12.tar.gz) = 30b31ec4ad1d2c05493f10e082496b42111807497443f01bb2648859eff246a9 -SIZE (barnyard2-1.12.tar.gz) = 425744 +SHA256 (barnyard2-1.13.tar.gz) = 503ca64e9cc5857bdda6e49f0843f31dad55c08ec04cd8e5c833ae23eb343aab +SIZE (barnyard2-1.13.tar.gz) = 435140 Index: head/security/barnyard2/pkg-plist =================================================================== --- head/security/barnyard2/pkg-plist (revision 335635) +++ head/security/barnyard2/pkg-plist (revision 335636) @@ -1,19 +1,20 @@ bin/barnyard2 @unexec if cmp -s %D/etc/barnyard2.conf %D/etc/barnyard2.conf.sample; then rm -f %D/etc/barnyard2.conf; fi etc/barnyard2.conf.sample @exec [ -f %B/barnyard2.conf ] || cp -p %B/%f %B/barnyard2.conf %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/README.aruba %%PORTDOCS%%%%DOCSDIR%%/README.database %%PORTDOCS%%%%DOCSDIR%%/README.sguil +%%PORTDOCS%%%%DOCSDIR%%/README.sig_suppress %%PORTDOCS%%%%DOCSDIR%%/README.snortsam %%PORTDOCS%%%%DOCSDIR%%/RELEASE.NOTES %%PORTEXAMPLES%%%%EXAMPLESDIR%%/SCHEMA_ACCESS %%PORTEXAMPLES%%%%EXAMPLESDIR%%/create_db2 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/create_mssql %%PORTEXAMPLES%%%%EXAMPLESDIR%%/create_mysql %%PORTEXAMPLES%%%%EXAMPLESDIR%%/create_oracle.sql %%PORTEXAMPLES%%%%EXAMPLESDIR%%/create_postgresql %%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%% %%PORTDOCS%%@dirrmtry %%DOCSDIR%%