From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 21 13:10:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B8DB106564A for ; Fri, 21 Oct 2011 13:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 50F9D8FC17 for ; Fri, 21 Oct 2011 13:10:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9LDA5wr047834 for ; Fri, 21 Oct 2011 13:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9LDA5B3047833; Fri, 21 Oct 2011 13:10:05 GMT (envelope-from gnats) Resent-Date: Fri, 21 Oct 2011 13:10:05 GMT Resent-Message-Id: <201110211310.p9LDA5B3047833@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ryan Steinmetz Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFC9710657AD for ; Fri, 21 Oct 2011 13:03:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id C63F48FC1D for ; Fri, 21 Oct 2011 13:03:41 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9LD3fW8004000 for ; Fri, 21 Oct 2011 13:03:41 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9LD3f59003995; Fri, 21 Oct 2011 13:03:41 GMT (envelope-from nobody) Message-Id: <201110211303.p9LD3f59003995@red.freebsd.org> Date: Fri, 21 Oct 2011 13:03:41 GMT From: Ryan Steinmetz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/161876: [update] security/snort to 2.9.1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Oct 2011 13:10:05 -0000 >Number: 161876 >Category: ports >Synopsis: [update] security/snort to 2.9.1.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Oct 21 13:10:04 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ryan Steinmetz >Release: 8.2-RELEASE >Organization: Rochester Institute of Technology >Environment: >Description: - Update to 2.9.1.2 - Add DEBUG option to build snort with symbols, etc. - Add SOURCEFIRE option to build snort with --enable-sourcefire >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/snort/Makefile,v retrieving revision 1.137 diff -u -r1.137 Makefile --- Makefile 7 Oct 2011 13:42:13 -0000 1.137 +++ Makefile 21 Oct 2011 12:54:00 -0000 @@ -6,7 +6,7 @@ # PORTNAME= snort -PORTVERSION= 2.9.1.1 +PORTVERSION= 2.9.1.2 CATEGORIES= security MASTER_SITES= SF/snort/snort @@ -39,7 +39,9 @@ POSTGRESQL "Enable PostgreSQL support" off \ PRELUDE "Enable Prelude NIDS integration" off \ LRGPCAP "Enable pcaps larger than 2GB" off \ - SNORTSAM "Unofficial Snortsam Patch" off + SNORTSAM "Unofficial Snortsam Patch" off \ + SRCFIRE "Enable sourcefire build option" off \ + DBGSNORT "Enable debugging symbols+core dumps" off .include @@ -73,9 +75,9 @@ LIBNET_INCDIR= ${LIBNET_CFLAGS:M-I*:S/-I//} LIBNET_LIBDIR= ${LIBNET_LIBS:M-L*:S/-L//} +CFLAGS+= -fstack-protector CONFIGURE_ARGS= --enable-dynamicplugin --enable-build-dynamic-examples \ --enable-reload --enable-reload-error-restart \ - --disable-corefiles \ --with-dnet-includes=${LIBNET_INCDIR} \ --with-dnet-libraries=${LIBNET_LIBDIR} @@ -124,6 +126,17 @@ CONFIGURE_ARGS+= --enable-large-pcap .endif +.if defined(WITH_DBGSNORT) +CONFIGURE_ARGS+= --enable-corefiles --enable-debug +MAKE_ENV+= DONTSTRIP="yes" +.else +CONFIGURE_ARGS+= --disable-corefiles +.endif + +.if defined(WITH_SRCFIRE) +CONFIGURE_ARGS+= --enable-sourcefire +.endif + .if defined(WITH_PERFPROFILE) CONFIGURE_ARGS+= --enable-perfprofiling --enable-ppm .endif Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/snort/distinfo,v retrieving revision 1.72 diff -u -r1.72 distinfo --- distinfo 7 Oct 2011 13:42:13 -0000 1.72 +++ distinfo 21 Oct 2011 12:55:48 -0000 @@ -1,2 +1,2 @@ -SHA256 (snort-2.9.1.1.tar.gz) = 9b89c3345541050b4f2b6355a3023512e08ba16913c0cf5815397441df8c962e -SIZE (snort-2.9.1.1.tar.gz) = 6249252 +SHA256 (snort-2.9.1.2.tar.gz) = eac98be8138f9debdcc8f77061dab1950e88fa40c18311ddbab0a329852375f5 +SIZE (snort-2.9.1.2.tar.gz) = 6233647 >Release-Note: >Audit-Trail: >Unformatted: