Makefile revision 6092
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna#
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# CDDL HEADER START
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna#
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# The contents of this file are subject to the terms of the
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# Common Development and Distribution License (the "License").
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# You may not use this file except in compliance with the License.
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna#
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# or http://www.opensolaris.org/os/licensing.
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# See the License for the specific language governing permissions
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# and limitations under the License.
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna#
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# When distributing Covered Code, include this CDDL HEADER in each
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# If applicable, add the following below this CDDL HEADER, with the
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# fields enclosed by brackets "[]" replaced with your own identifying
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# information: Portions Copyright [yyyy] [name of copyright owner]
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna#
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# CDDL HEADER END
cc88b110377cb545f140b532890976de875eb01fpquerna#
cc88b110377cb545f140b532890976de875eb01fpquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna#
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna#
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
cc88b110377cb545f140b532890976de875eb01fpquernainclude ../../../make-rules/shared-macros.mk
cc88b110377cb545f140b532890976de875eb01fpquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_NAME= M2Crypto
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_VERSION= 0.24.0
cc88b110377cb545f140b532890976de875eb01fpquernaCOMPONENT_PROJECT_URL= http://chandlerproject.org/Projects/MeTooCrypto/
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_ARCHIVE_HASH= \
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna sha256:80a56441a1d2c0cf27e725be7554c92598b938fc8767ee2c71fdbc2fdc055ee8
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_ARCHIVE_URL= http://pypi.python.org/packages/source/M/M2Crypto/$(COMPONENT_ARCHIVE)
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_BUGDB= python-mod/m2crypto
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaTPNO= 28340
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# Syntax issues: not Python 3 ready.
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaPYTHON_VERSIONS= $(PYTHON2_VERSIONS)
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernainclude $(WS_MAKE_RULES)/prep.mk
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernainclude $(WS_MAKE_RULES)/setup.py.mk
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernainclude $(WS_MAKE_RULES)/ips.mk
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaASLR_MODE = $(ASLR_NOT_APPLICABLE)
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_TEST_ARGS = setup.py test
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_TEST_DIR = $(COMPONENT_SRC)
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_TEST_ENV= CC=$(CC)
5bfaaf573bacb45c1cf290ce85ecc676587e8a64jimCOMPONENT_TEST_ENV += PATH=/usr/bin
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaCOMPONENT_TEST_ENV += PYTHONPATH=$(PROTO_DIR)$(PYTHON_VENDOR_PACKAGES.32)
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna# common targets
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernabuild: $(BUILD_32_and_64)
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernainstall: $(INSTALL_32_and_64)
5bfaaf573bacb45c1cf290ce85ecc676587e8a64jim
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernatest: $(TEST_32_and_64)
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernasystem-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED)
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaREQUIRED_PACKAGES += developer/swig
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaREQUIRED_PACKAGES += library/security/openssl
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquernaREQUIRED_PACKAGES += system/library
b0d8a6d437db6f4c222173f27ef81c98622fbd02pquerna