components/python/pylxml/Makefile
author Rich Burridge <rich.burridge@oracle.com>
Wed, 14 Aug 2013 10:54:58 -0700
changeset 1434 c782e620dd26
parent 1071 cc3ecf7b3dec
child 1890 5a4ef66c42bf
permissions -rw-r--r--
17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
251
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
     1
#
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
     3
#
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
     7
#
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    12
#
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    18
#
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    20
#
1434
c782e620dd26 17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Rich Burridge <rich.burridge@oracle.com>
parents: 1071
diff changeset
    21
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
251
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    22
#
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    23
include ../../../make-rules/shared-macros.mk
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    24
1048
e82fa02a4d16 15863968 Auto-generation of Userland gate list - Phase 1.
Rich Burridge <rich.burridge@oracle.com>
parents: 873
diff changeset
    25
COMPONENT_NAME=		pylxml
752
cbd9239f6454 7153019 Update Python lxml bindings to latest version
Rich Burridge <rich.burridge@oracle.com>
parents: 706
diff changeset
    26
COMPONENT_VERSION=	2.3.3
609
775168282b2f 7037821 Userland migration of data from Makefile to manifest may have been a little overzealous
Rich Burridge <rich.burridge@oracle.com>
parents: 251
diff changeset
    27
COMPONENT_PROJECT_URL=	http://lxml.de/
1048
e82fa02a4d16 15863968 Auto-generation of Userland gate list - Phase 1.
Rich Burridge <rich.burridge@oracle.com>
parents: 873
diff changeset
    28
COMPONENT_SRC_NAME=	lxml
e82fa02a4d16 15863968 Auto-generation of Userland gate list - Phase 1.
Rich Burridge <rich.burridge@oracle.com>
parents: 873
diff changeset
    29
COMPONENT_SRC=		$(COMPONENT_SRC_NAME)-$(COMPONENT_VERSION)
251
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    30
COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tgz
800
2ad056ed89ec 7163771 sha1 should not be used in userland-fetch and userland component/*/Makefile
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 752
diff changeset
    31
COMPONENT_ARCHIVE_HASH=	\
2ad056ed89ec 7163771 sha1 should not be used in userland-fetch and userland component/*/Makefile
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 752
diff changeset
    32
    sha256:2a3ca34f63b062ee8e059ca2460ac18040ec9622f0a31e143383f0db944ceb36
609
775168282b2f 7037821 Userland migration of data from Makefile to manifest may have been a little overzealous
Rich Burridge <rich.burridge@oracle.com>
parents: 251
diff changeset
    33
COMPONENT_ARCHIVE_URL=	$(COMPONENT_PROJECT_URL)files/$(COMPONENT_ARCHIVE)
1071
cc3ecf7b3dec 15959394 Several Userland components are using the wrong BugDB cat/subcat.
Rich Burridge <rich.burridge@oracle.com>
parents: 1058
diff changeset
    34
COMPONENT_BUGDB=	python-mod/lxml
251
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    35
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    36
# disable optimization to prevent the Studio compilers from spinning
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    37
studio_OPT.i386.32 =
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    38
studio_OPT.i386.64 =
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    39
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    40
include $(WS_TOP)/make-rules/prep.mk
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    41
include $(WS_TOP)/make-rules/setup.py.mk
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    42
include $(WS_TOP)/make-rules/ips.mk
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    43
1434
c782e620dd26 17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Rich Burridge <rich.burridge@oracle.com>
parents: 1071
diff changeset
    44
ASLR_MODE = $(ASLR_NOT_APPLICABLE)
c782e620dd26 17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Rich Burridge <rich.burridge@oracle.com>
parents: 1071
diff changeset
    45
251
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    46
# common targets
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    47
build:		$(BUILD_32_and_64)
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    48
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    49
install:	$(INSTALL_32_and_64)
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    50
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    51
test:		$(BUILD_32_and_64)
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    52
		cd $(SOURCE_DIR) && $(PYTHON) selftest.py
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    53
		cd $(SOURCE_DIR) && $(PYTHON) selftest2.py
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    54
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    55
BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    56
f527656d334f 7041598 migrate python-2/lxml-26 from slim_prototype to userland
Drew Fisher <drew.fisher@oracle.com>
parents:
diff changeset
    57
include $(WS_TOP)/make-rules/depend.mk