Makefile revision 5134
369N/A#
369N/A# CDDL HEADER START
369N/A#
369N/A# The contents of this file are subject to the terms of the
369N/A# Common Development and Distribution License (the "License").
369N/A# You may not use this file except in compliance with the License.
369N/A#
369N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
369N/A# or http://www.opensolaris.org/os/licensing.
369N/A# See the License for the specific language governing permissions
369N/A# and limitations under the License.
369N/A#
369N/A# When distributing Covered Code, include this CDDL HEADER in each
369N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
369N/A# If applicable, add the following below this CDDL HEADER, with the
369N/A# fields enclosed by brackets "[]" replaced with your own identifying
369N/A# information: Portions Copyright [yyyy] [name of copyright owner]
369N/A#
369N/A# CDDL HEADER END
369N/A#
844N/A
369N/A#
369N/A# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
369N/A#
369N/A
369N/Ainclude ../../make-rules/shared-macros.mk
369N/A
369N/ACOMPONENT_NAME= libxml2
844N/ACOMPONENT_VERSION= 2.9.3
844N/ACOMPONENT_PROJECT_URL= http://xmlsoft.org/
369N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
369N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
369N/ACOMPONENT_ARCHIVE_HASH= \
369N/A sha256:4de9e31f46b44d34871c22f54bfc54398ef124d6f7cafb1f4a5958fbcd3ba12d
369N/ACOMPONENT_ARCHIVE_URL= ftp://xmlsoft.org/libxml2/$(COMPONENT_ARCHIVE)
369N/ACOMPONENT_BUGDB= library/libxml
369N/A
369N/A# W3C XML Conformance Test Suites
369N/ACOMPONENT_ARCHIVE_1= xmlts20080827.tar.gz
369N/ACOMPONENT_ARCHIVE_HASH_1= \
369N/A sha256:96151685cec997e1f9f3387e3626d61e6284d4d6e66e0e440c209286c03e9cc7
369N/ACOMPONENT_ARCHIVE_URL_1= http://www.w3.org/XML/Test/$(COMPONENT_ARCHIVE_1)
369N/A
369N/ATPNO= 25711
369N/A
369N/Ainclude $(WS_MAKE_RULES)/prep.mk
369N/Ainclude $(WS_MAKE_RULES)/configure.mk
369N/Ainclude $(WS_MAKE_RULES)/ips.mk
369N/Ainclude $(WS_MAKE_RULES)/lint-libraries.mk
369N/A
369N/AASLR_MODE = $(ASLR_ENABLE)
369N/A
369N/ACFLAGS += $(CPP_LARGEFILES)
369N/ALDFLAGS += $(LD_Z_DEFS) $(LD_Z_TEXT) -lpthread
369N/A
369N/ACONFIGURE_OPTIONS += --disable-static
369N/ACONFIGURE_OPTIONS += --with-pic
369N/ACONFIGURE_OPTIONS += --with-threads
369N/ACONFIGURE_OPTIONS += --with-python=$(PYTHON.$(BITS))
369N/ACONFIGURE_OPTIONS += --with-python-install-dir=$(PYTHON_VENDOR_PACKAGES)
369N/A# Cannot link to lzma since it's not in /lib.
369N/ACONFIGURE_OPTIONS += --without-lzma
369N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
369N/ACONFIGURE_OPTIONS += LDFLAGS="$(LDFLAGS)"
369N/A
369N/ACOMPONENT_PREP_ACTION += (cd $(@D) ; cp ../mapfile libxml2.syms ; autoreconf -if)
369N/A
369N/A# After we have configured, make a copy of the python bits so we can build and
369N/A# test separate python 2.7 and 3.4 support. Note for 3.4: .py files need to
369N/A# go in .../vendor-packages (whether building 32-bit or 64-bit) whereas .so
369N/A# files need to go in .../vendor-packages for 32-bit but .../vendor-packages/64
369N/A# for 64-bit. For 2.7, Python is built 32- and 64-bit, so .py files end
369N/A# up in both places even though only the 32-bit location is needed, but the
369N/A# superfluous files in the proto area are harmless; meanwhile, the .so files
369N/A# end up in their proper 32- and 64-bit locations. But Python 3.4 is built
369N/A# 64-bit only, so we have an extra sed edit below to force the .py files into
369N/A# the 32-bit location and we manually specify the 32-bit path in the manifest
369N/A# to correct for the .so file being installed there instead of the 64-bit path
369N/A# where it belongs. Further, Python 3.4 needs an extra 'm' on the link and
369N/A# include paths, plus a tweak to the binary path; see PEP 3149 for details.
COMPONENT_POST_CONFIGURE_ACTION = \
(cd $(@D) ; cp -rp python python3.4 ; \
$(GSED) -i -e 's|-lpython2[.]7|-lpython3.4m|' \
-e 's|usr/bin/$(MACH64)/python2[.]7|usr/bin/python3.4m|' \
-e 's|usr/include/python2[.]7|usr/include/python3.4m|' \
-e 's/2[.]7/3.4/g' -e 's|vendor-packages/64|vendor-packages|' \
`find python3.4 -name Makefile` ; \
)
# After we have built/installed libxml2, build/install the python
# support for python 3.4
COMPONENT_POST_INSTALL_ACTION = \
( if [ $(BITS) -eq 64 ]; then \
cd $(@D)/python3.4 ; \
$(GMAKE) $(COMPONENT_INSTALL_ARGS) install ; \
else \
true ; \
fi )
# It's also nice to test python 3.4 modules.
COMPONENT_POST_TEST_ACTION = \
( if [ $(BITS) -eq 64 ]; then \
cd $(@D)/python3.4 ; \
$(GMAKE) $(COMPONENT_TEST_ARGS) test ; \
else \
true ; \
fi )
# We have patched our 64 bit python so it will search for modules only in
# '64/' directories. Now we need to provide one. Otherwise python will
# end up using libxml2mod.so installed on system.
$(BUILD_DIR)/$(MACH64)/.tested: COMPONENT_PRE_TEST_ACTION = ( \
$(MKDIR) $(@D)/python/.libs/64 \
$(@D)/python3.4/.libs/64; \
$(SYMLINK) ../libxml2mod.so $(@D)/python/.libs/64/libxml2mod.so; \
$(SYMLINK) ../libxml2mod.so $(@D)/python3.4/.libs/64/libxml2mod.so);
COMPONENT_PRE_TEST_ACTION += \
(cd $(@D) ; gtar xf $(COMPONENT_DIR)/$(COMPONENT_ARCHIVE_1));
COMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-all.master
COMPONENT_TEST_TRANSFORMS = \
'-e "s/^make\[.*$$/[EnD]/" ' \
'-e "/^\#\# XML regression tests/,/^\[EnD\]/p" ' \
'-e "/^\#\# running Python regression tests/,/^\[EnD\]/p" ' \
'-e "/.*/d" '
COMPONENT_SYSTEM_TEST_TARGETS = system-test
COMPONENT_PRE_SYSTEM_TEST_ACTION = $(COMPONENT_PRE_TEST_ACTION)
# common targets
configure: $(CONFIGURE_32_and_64)
build: $(BUILD_32_and_64)
install: $(INSTALL_32_and_64)
$(PYTHON.2.7.32) -m compileall $(PROTO_DIR)/usr/lib/python2.7/vendor-packages
$(PYTHON.3.4.64) -m compileall $(PROTO_DIR)/usr/lib/python3.4/vendor-packages
test: $(TEST_32_and_64)
system-test: $(CONFIGURE_32_and_64) $(SYSTEM_TEST_32_and_64)
REQUIRED_PACKAGES += library/libxml2
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += runtime/python-27
REQUIRED_PACKAGES += runtime/python-34
REQUIRED_PACKAGES += shell/ksh93
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/library/math