components/swig/Makefile
author John Beck <John.Beck@Oracle.COM>
Sat, 17 Jan 2015 09:17:37 -0800
branchs11-update
changeset 3661 47545fb8aed4
parent 2813 db0bfa0fa498
child 3857 5e5034b03491
permissions -rw-r--r--
18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     1
#
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     3
#
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     7
#
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    12
#
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    18
#
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    20
#
3661
47545fb8aed4 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 2813
diff changeset
    21
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    22
#
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    23
include ../../make-rules/shared-macros.mk
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    24
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    25
COMPONENT_NAME=		swig
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    26
COMPONENT_VERSION=	1.3.35
609
775168282b2f 7037821 Userland migration of data from Makefile to manifest may have been a little overzealous
Rich Burridge <rich.burridge@oracle.com>
parents: 206
diff changeset
    27
COMPONENT_PROJECT_URL=	http://www.swig.org/
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    28
COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    29
COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
800
2ad056ed89ec 7163771 sha1 should not be used in userland-fetch and userland component/*/Makefile
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 609
diff changeset
    30
COMPONENT_ARCHIVE_HASH=	\
2ad056ed89ec 7163771 sha1 should not be used in userland-fetch and userland component/*/Makefile
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 609
diff changeset
    31
    sha256:2b03c44c8802e16ff4a493dd486de23c027fd5a46dedb08bf7561171b16cd084
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    32
COMPONENT_ARCHIVE_URL=	http://iweb.dl.sourceforge.net/project/swig/swig/swig-1.3.35/$(COMPONENT_ARCHIVE)
2434
6c9bb5cf5610 15930486 - Auto-generation of Userland gate list for the Solaris 11 Update Release
Rich Burridge <rich.burridge@oracle.com>
parents: 800
diff changeset
    33
COMPONENT_BUGDB=	utility/swig
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    34
3661
47545fb8aed4 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 2813
diff changeset
    35
TPNO=			9031
47545fb8aed4 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 2813
diff changeset
    36
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    37
include ../../make-rules/prep.mk
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    38
include ../../make-rules/configure.mk
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    39
include ../../make-rules/ips.mk
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    40
2591
31090006a324 15734212 SUNBT7076895 userland fails to build with jdk1.7
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 2434
diff changeset
    41
PATH=$(SPRO_VROOT)/bin:$(JAVA_HOME)/bin:/usr/bin
31090006a324 15734212 SUNBT7076895 userland fails to build with jdk1.7
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 2434
diff changeset
    42
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    43
# This is needed because the community provided 'check' target is not viewpath aware
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    44
COMPONENT_PRE_CONFIGURE_ACTION =      ($(CLONEY) $(SOURCE_DIR) $(@D))
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    45
2591
31090006a324 15734212 SUNBT7076895 userland fails to build with jdk1.7
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 2434
diff changeset
    46
CONFIGURE_ENV += JAVA_HOME="$(JAVA_HOME)"
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    47
CONFIGURE_OPTIONS +=	CFLAGS="$(CFLAGS)"
206
a4474882bf60 7010355 python needs to be packaged to separate out non-core dependencies
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents: 181
diff changeset
    48
CONFIGURE_OPTIONS +=	CXXFLAGS="$(CXXFLAGS)"
2591
31090006a324 15734212 SUNBT7076895 userland fails to build with jdk1.7
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 2434
diff changeset
    49
CONFIGURE_OPTIONS +=	--with-javaincl="$(JAVA_HOME)/include"
2813
db0bfa0fa498 PSARC/2013/269 Add Ruby 1.9.3 and EOF and Remove Ruby 1.8.7
April Chin <april.chin@oracle.com>
parents: 2591
diff changeset
    50
# keep swig building with ruby 1.8 for now
db0bfa0fa498 PSARC/2013/269 Add Ruby 1.9.3 and EOF and Remove Ruby 1.8.7
April Chin <april.chin@oracle.com>
parents: 2591
diff changeset
    51
CONFIGURE_OPTIONS +=	--with-ruby=$(RUBY.1.8)
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    52
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    53
# common targets
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    54
build:		$(BUILD_32)
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    55
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    56
install:	$(INSTALL_32)
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    57
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    58
# Fails due to deprecated OCAML example and boost library problems
181
87e11e685b1f 7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents: 159
diff changeset
    59
test:		$(TEST_32)
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    60
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    61
BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    62
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    63
include ../../make-rules/depend.mk