components/libarchive/Makefile
changeset 1316 22b5cf35a3ea
child 1434 c782e620dd26
child 3661 47545fb8aed4
equal deleted inserted replaced
1315:4a5fc1fadc50 1316:22b5cf35a3ea
       
     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 # Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
       
    22 #
       
    23 include ../../make-rules/shared-macros.mk
       
    24 
       
    25 COMPONENT_NAME=		libarchive
       
    26 COMPONENT_VERSION=	3.0.4
       
    27 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    28 COMPONENT_PROJECT_URL=	http://github.com/
       
    29 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    30 COMPONENT_ARCHIVE_HASH=	\
       
    31     sha256:76e8d7c7b100ec4071e48c1b7d3f3ea1d22b39db3e45b7189f75b5ff4df90fac
       
    32 COMPONENT_ARCHIVE_URL=	\
       
    33     $(COMPONENT_PROJECT_URL)downloads/libarchive/libarchive/$(COMPONENT_ARCHIVE)
       
    34 COMPONENT_BUGDB=	library/libarchive
       
    35 
       
    36 include ../../make-rules/prep.mk
       
    37 include ../../make-rules/configure.mk
       
    38 include ../../make-rules/ips.mk
       
    39 
       
    40 # Userland default includes -mt which links with libthread which we don't need.
       
    41 studio_MT =
       
    42 
       
    43 # libarchive's Makefile hard-codes some gcc-only flags in COMMON_CFLAGS, then
       
    44 # appends CFLAGS to that.  Reset the former here so we can build with Studio.
       
    45 COMPONENT_BUILD_ARGS +=	COMMON_CFLAGS=''
       
    46 COMPONENT_BUILD_ARGS +=	CFLAGS="$(CFLAGS)"
       
    47 COMPONENT_TEST_ARGS +=	COMMON_CFLAGS=''
       
    48 COMPONENT_TEST_ARGS +=	CFLAGS="$(CFLAGS)"
       
    49 
       
    50 # We need GNU awk for the following to work; hence the PATH tweak.
       
    51 COMPONENT_PREP_ACTION = \
       
    52     (cd $(@D)/doc/man ; rm *.[135] ; env PATH=/usr/gnu/bin:$$PATH gmake all)
       
    53 PKG_PROTO_DIRS += $(COMPONENT_SRC)/doc/man
       
    54 
       
    55 # common targets
       
    56 build:		$(BUILD_32_and_64)
       
    57 
       
    58 install:	$(INSTALL_32_and_64)
       
    59 
       
    60 test:		$(TEST_32_and_64)
       
    61 
       
    62 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    63 
       
    64 include ../../make-rules/depend.mk