From owner-svn-ports-head@FreeBSD.ORG Thu Sep 5 16:55:34 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A21BD6C5; Thu, 5 Sep 2013 16:55:34 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8FE632FCA; Thu, 5 Sep 2013 16:55:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r85GtYe9057492; Thu, 5 Sep 2013 16:55:34 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r85GtYHw057490; Thu, 5 Sep 2013 16:55:34 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201309051655.r85GtYHw057490@svn.freebsd.org> From: Ryan Steinmetz Date: Thu, 5 Sep 2013 16:55:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326414 - head/security/snort X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Sep 2013 16:55:34 -0000 Author: zi Date: Thu Sep 5 16:55:34 2013 New Revision: 326414 URL: http://svnweb.freebsd.org/changeset/ports/326414 Log: - Add OPTION to enable non-Ethernet decoders Requested by: Andrew Nichols Modified: head/security/snort/Makefile Modified: head/security/snort/Makefile ============================================================================== --- head/security/snort/Makefile Thu Sep 5 16:34:46 2013 (r326413) +++ head/security/snort/Makefile Thu Sep 5 16:55:34 2013 (r326414) @@ -23,7 +23,7 @@ RUN_DEPENDS= daq>=2.0.0:${PORTSDIR}/net/ OPTIONS_DEFINE= IPV6 MPLS GRE TARGETBASED ZLIB NORMALIZER REACT \ PERFPROFILE FLEXRESP3 LRGPCAP SNORTSAM SOURCEFIRE \ - DBGSNORT BARNYARD PULLEDPORK + DBGSNORT BARNYARD PULLEDPORK NONETHER OPTIONS_DEFAULT=IPV6 MPLS GRE ZLIB NORMALIZER REACT PERFPROFILE \ FLEXRESP3 SOURCEFIRE TARGETBASED PULLEDPORK \ BARNYARD @@ -31,6 +31,7 @@ OPTIONS_DEFAULT=IPV6 MPLS GRE ZLIB NORMA GRE_DESC= Enable GRE support TARGETBASED_DESC= Enable targetbased support ZLIB_DESC= Enable GZIP support +NONETHER_DESC= Enable non-Ethernet Decoders NORMALIZER_DESC= Enable normalizer REACT_DESC= Enable react PERFPROFILE_DESC= Enable performance profiling @@ -113,6 +114,10 @@ CONFIGURE_ARGS+=--disable-ipv6 CONFIGURE_ARGS+=--disable-gre .endif +.if ${PORT_OPTIONS:MNONETHER} +CONFIGURE_ARGS+=--enable-non-ether-decoders +.endif + .if empty(PORT_OPTIONS:MMPLS) CONFIGURE_ARGS+=--disable-mpls .endif