components/libevent/Makefile
changeset 209 2961eca161ad
child 604 c25824a87b1f
equal deleted inserted replaced
208:a06bd0485fd0 209:2961eca161ad
       
     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=		libevent
       
    29 COMPONENT_VERSION=	1.3e
       
    30 IPS_COMPONENT_VERSION=	1.3.5
       
    31 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    32 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    33 COMPONENT_ARCHIVE_HASH=	sha1:67b064a4533c640dfb86e3d81c0cca9247427353
       
    34 COMPONENT_ARCHIVE_URL=	http://monkey.org/~provos/$(COMPONENT_ARCHIVE)
       
    35 
       
    36 include ../../make-rules/prep.mk
       
    37 include ../../make-rules/configure.mk
       
    38 include ../../make-rules/ips.mk
       
    39 include ../../make-rules/lint-libraries.mk
       
    40 
       
    41 COMPONENT_PRE_CONFIGURE_ACTION =  \
       
    42 	($(CLONEY) $(SOURCE_DIR) $(@D))
       
    43 
       
    44 #The libevent that is bundled with Solaris is a trimed down version.
       
    45 #It does not contain the evhttp*, evdns* functions. The man page 'event.3'
       
    46 #is patched to remove descriptions regarding these functions.
       
    47 #
       
    48 #The original manpage is in a format that the Solaris man command does
       
    49 #not understand. Hence it has been manually converted.
       
    50 #
       
    51 #List of files from the original package that are not being delivered
       
    52 #
       
    53 #/usr/share/man/man3/evdns.3
       
    54 #/usr/include/evhttp.h
       
    55 #/usr/include/evdns.h
       
    56 #/usr/bin/event_rpcgen.py
       
    57 
       
    58 CONFIGURE_OPTIONS	+= CFLAGS="$(CFLAGS)"
       
    59 CONFIGURE_OPTIONS	+= --enable-threads
       
    60 
       
    61 build:		$(BUILD_32_and_64)
       
    62 
       
    63 install:	$(INSTALL_32_and_64)
       
    64 
       
    65 # this isn't really true - there _are_ tests, but we can't run
       
    66 # them because we delete things that the tests want (see above).
       
    67 test:		$(NO_TESTS)
       
    68 
       
    69 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    70 
       
    71 include ../../make-rules/depend.mk