components/snort/Makefile
changeset 213 7d4229dba5ed
child 800 2ad056ed89ec
equal deleted inserted replaced
212:8a66c0c0e8dc 213:7d4229dba5ed
       
     1 #
       
     2 # CDDL HEADER START
       
     3 #
       
     4 # The contents of this file are subject to the terms of the
       
     5 # Common Development and Distribution License (the "License").
       
     6 # You may not use this file except in compliance with the License.
       
     7 #
       
     8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
     9 # or http://www.opensolaris.org/os/licensing.
       
    10 # See the License for the specific language governing permissions
       
    11 # and limitations under the License.
       
    12 #
       
    13 # When distributing Covered Code, include this CDDL HEADER in each
       
    14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    15 # If applicable, add the following below this CDDL HEADER, with the
       
    16 # fields enclosed by brackets "[]" replaced with your own identifying
       
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    18 #
       
    19 # CDDL HEADER END
       
    20 #
       
    21 
       
    22 #
       
    23 # Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
       
    24 #
       
    25 
       
    26 include ../../make-rules/shared-macros.mk
       
    27 
       
    28 COMPONENT_NAME=		snort
       
    29 COMPONENT_VERSION=	2.8.4.1
       
    30 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    31 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    32 COMPONENT_ARCHIVE_HASH=	sha1:3ffabb5366c088952fefab19a8dc19ce84d62645
       
    33 COMPONENT_PROJECT_URL=	http://www.snort.org/
       
    34 # the main site does not retain older releases
       
    35 COMPONENT_ARCHIVE_URL=	http://mirror2.openwrt.org/sources/$(COMPONENT_ARCHIVE)
       
    36 
       
    37 include ../../make-rules/prep.mk
       
    38 include ../../make-rules/configure.mk
       
    39 include ../../make-rules/ips.mk
       
    40 
       
    41 PATCH_LEVEL =	0
       
    42 
       
    43 # without this we bus error on sparc. sadly I don't see any patches
       
    44 # that might relate from the upstream (though maybe that's really
       
    45 # "happily", as this is simpler)
       
    46 studio_ALIGN.sparc.32=	-xmemalign=1i
       
    47 
       
    48 CONFIGURE_OPTIONS +=	--with-libpcre=included
       
    49 CONFIGURE_OPTIONS +=	--with-libpcap=/usr
       
    50 CONFIGURE_OPTIONS +=	--enable-static=no
       
    51 CONFIGURE_OPTIONS +=	CFLAGS="$(CFLAGS)"
       
    52 
       
    53 # common targets
       
    54 build:		$(BUILD_32)
       
    55 
       
    56 install:	$(INSTALL_32)
       
    57 
       
    58 test:		$(NO_TESTS)
       
    59 
       
    60 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    61 
       
    62 include ../../make-rules/depend.mk