components/mpc/mpc.p5m
author boris.chiu@oracle.com
Mon, 03 Oct 2016 15:42:45 -0700
branchs11u3-sru
changeset 7024 84310b997802
parent 3734 24181f5eb463
permissions -rw-r--r--
24516419 umad_get_ca() should pass the PF node_guid for CX3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
427
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
     1
#
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
     3
#
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
     7
#
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    12
#
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    18
#
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    20
#
3734
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    21
# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
427
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    22
#
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    23
3734
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    24
set name=pkg.fmri \
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    25
    value=pkg:/library/mpc@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
427
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    26
set name=pkg.summary value="Multiprecision complex data type evaluation library"
2551
0391c5c3b137 16431724 Adjust how license text and Oracle internal tracking numbers are propagated
Rich Burridge <rich.burridge@oracle.com>
parents: 609
diff changeset
    27
set name=com.oracle.info.description value="GNU Mpc"
3661
47545fb8aed4 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 3124
diff changeset
    28
set name=com.oracle.info.tpno value=$(TPNO)
3734
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    29
set name=info.classification \
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    30
    value="org.opensolaris.category.2008:Development/High Performance Computing"
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    31
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
609
775168282b2f 7037821 Userland migration of data from Makefile to manifest may have been a little overzealous
Rich Burridge <rich.burridge@oracle.com>
parents: 464
diff changeset
    32
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
3734
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    33
set name=org.opensolaris.arc-caseid value=PSARC/2011/255
427
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    34
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
3734
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    35
dir  path=usr
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    36
dir  path=usr/include
427
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    37
file path=usr/include/mpc.h
3734
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    38
dir  path=usr/lib
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    39
dir  path=usr/lib/$(MACH64)
427
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    40
link path=usr/lib/$(MACH64)/libmpc.so target=libmpc.so.2.0.0
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    41
link path=usr/lib/$(MACH64)/libmpc.so.2 target=libmpc.so.2.0.0
3734
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    42
file path=usr/lib/$(MACH64)/libmpc.so.2.0.0
427
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    43
link path=usr/lib/libmpc.so target=libmpc.so.2.0.0
1902114e6f0f Initial version of mpc
Ross Towle <ross.towle@oracle.com>
parents:
diff changeset
    44
link path=usr/lib/libmpc.so.2 target=libmpc.so.2.0.0
3734
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    45
file path=usr/lib/libmpc.so.2.0.0
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    46
dir  path=usr/share
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    47
dir  path=usr/share/info
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    48
file path=usr/share/info/mpc.info
24181f5eb463 20440737 pkgfmt all Userland pkg(5) manifests
John Beck <John.Beck@Oracle.COM>
parents: 3661
diff changeset
    49
license mpc.license license=LGPLv2.1