components/libxslt/Makefile
changeset 148 33ca3897ae25
child 151 f9e42a3f7095
equal deleted inserted replaced
147:5af6875cbf70 148:33ca3897ae25
       
     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=		libxslt
       
    29 COMPONENT_VERSION=	1.1.26
       
    30 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    31 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    32 COMPONENT_ARCHIVE_HASH=	sha1:69f74df8228b504a87e2b257c2d5238281c65154
       
    33 COMPONENT_ARCHIVE_URL=	ftp://xmlsoft.org/libxslt/$(COMPONENT_ARCHIVE)
       
    34 
       
    35 include ../../make-rules/prep.mk
       
    36 include ../../make-rules/configure.mk
       
    37 include ../../make-rules/ips.mk
       
    38 
       
    39 LIBNAME=	xslt
       
    40 LIBNAME2=	exslt
       
    41 LINTOUT=	lint.out
       
    42 
       
    43 CFLAGS +=	$(CPP_LARGEFILES)
       
    44 LDFLAGS +=	$(LD_Z_DEFS) $(LD_Z_TEXT) -lpthread
       
    45 
       
    46 CONFIGURE_OPTIONS += --disable-static
       
    47 CONFIGURE_OPTIONS += --with-pic
       
    48 CONFIGURE_OPTIONS += --with-threads
       
    49 CONFIGURE_OPTIONS += --with-python=$(PYTHON.$(BITS))
       
    50 CONFIGURE_OPTIONS += --without-crypto
       
    51 CONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
       
    52 CONFIGURE_OPTIONS += LDFLAGS="$(LDFLAGS)"
       
    53 CONFIGURE_OPTIONS += PYTHON_VENDOR_PACKAGES=$(PYTHON_VENDOR_PACKAGES)
       
    54 
       
    55 PKG_PROTO_DIRS +=	$(COMPONENT_DIR)/$(COMPONENT_SRC)
       
    56 
       
    57 COMPONENT_PREP_ACTION = \
       
    58 	(cd $(@D) ; cp ../mapfile.xslt libxslt/libxslt.syms ; \
       
    59 		    cp ../mapfile.exslt libexslt/libexslt.syms ; \
       
    60 		    $(RM) libxslt/xsltconfig.h libexslt/exsltconfig.h ; \
       
    61 		    libtoolize --force --copy ; aclocal-1.10 ; \
       
    62 		    automake-1.10 --addmissing --copy ; autoconf)
       
    63 
       
    64 COMPONENT_POST_BUILD_ACTION = \
       
    65 	(cd $(@D); $(LINT) -nsvx $(CC_BITS) -o $(LIBNAME) -I$(@D) \
       
    66 			-I$(COMPONENT_DIR)/$(COMPONENT_SRC)/include \
       
    67 			-I/usr/include/libxml2 \
       
    68 			$(COMPONENT_DIR)/llib-l$(LIBNAME) > $(LINTOUT) 2>&1 ; \
       
    69 	 	    $(LINT) -nsvx $(CC_BITS) -o $(LIBNAME2) -I$(@D) \
       
    70 			-I$(COMPONENT_DIR)/$(COMPONENT_SRC)/include \
       
    71 			-I/usr/include/libxml2 \
       
    72 			$(COMPONENT_DIR)/llib-l$(LIBNAME2) >> $(LINTOUT) 2>&1)
       
    73 
       
    74 COMPONENT_POST_INSTALL_ACTION = \
       
    75 	(cd $(@D); $(INSTALL) llib-l$(LIBNAME).ln \
       
    76 			$(PROTO_DIR)/$(CONFIGURE_LIBDIR.$(BITS)) ; \
       
    77 		   $(INSTALL) llib-l$(LIBNAME2).ln \
       
    78 			$(PROTO_DIR)/$(CONFIGURE_LIBDIR.$(BITS)))
       
    79 
       
    80 # common targets
       
    81 build:		$(BUILD_32_and_64)
       
    82 
       
    83 install:	$(INSTALL_32_and_64)
       
    84 
       
    85 test:	$(TEST_32_and_64)
       
    86 
       
    87 $(BUILD_DIR)/%/.tested: $(BUILD_DIR)/%/.built
       
    88 	(cd $(@D) ; gmake tests || exit 0)
       
    89 
       
    90 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    91 
       
    92 include ../../make-rules/depend.mk
       
    93