components/swig/Makefile
author Norm Jacobs <Norm.Jacobs@Oracle.COM>
Wed, 27 Apr 2011 22:40:44 -0700
changeset 206 a4474882bf60
parent 181 87e11e685b1f
permissions -rw-r--r--
7010355 python needs to be packaged to separate out non-core dependencies 7035055 move apr and apr-util to userland (fix history) 7035672 subversion needs to move to Userland (fix download, build, missing files) 7038682 components should take advantage of automatic .pyc file action creation 7038812 userland shared-macros.mk should add bittedness to more macros 7038816 userland makefiles should declare some phony targets.
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
#
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    21
# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
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
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    27
COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    28
COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    29
COMPONENT_ARCHIVE_HASH=	sha1:f5d61ba31f440846b5e2a4077da26dd5d347fa61
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    30
COMPONENT_ARCHIVE_URL=	http://iweb.dl.sourceforge.net/project/swig/swig/swig-1.3.35/$(COMPONENT_ARCHIVE)
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    31
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    32
include ../../make-rules/prep.mk
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    33
include ../../make-rules/configure.mk
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    34
include ../../make-rules/ips.mk
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    35
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    36
# 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
    37
COMPONENT_PRE_CONFIGURE_ACTION =      ($(CLONEY) $(SOURCE_DIR) $(@D))
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    38
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    39
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
    40
CONFIGURE_OPTIONS +=	CXXFLAGS="$(CXXFLAGS)"
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    41
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    42
# common targets
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    43
build:		$(BUILD_32)
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    44
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    45
install:	$(INSTALL_32)
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    46
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    47
# 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
    48
test:		$(TEST_32)
159
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    49
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    50
BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    51
315fcb0d53a0 7026497 migrate swig to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    52
include ../../make-rules/depend.mk