components/tmux/Makefile
author Neng Xue <neng.xue@oracle.com>
Fri, 14 Oct 2016 11:36:01 -0700
changeset 7111 a0e4f5518caa
parent 6663 128d4acc707a
child 7687 1093e2a9adbd
permissions -rw-r--r--
23500659 Setting ADIHEAP finds issues in GSS-API
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1476
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
     1
#
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
     3
#
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
     7
#
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    12
#
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    18
#
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    20
#
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    21
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    22
#
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4339
diff changeset
    23
# Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
1476
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    24
#
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4339
diff changeset
    25
BUILD_BITS= 64
6663
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    26
# Use GCC until Studio supports large enums (23058232)
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    27
COMPILER=	gcc
1476
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    28
include ../../make-rules/shared-macros.mk
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    29
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    30
COMPONENT_NAME=		tmux
6663
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    31
COMPONENT_VERSION=	2.2
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    32
COMPONENT_PROJECT_URL=	http://github.com/tmux/tmux
1476
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    33
COMPONENT_ARCHIVE_HASH=	\
6663
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    34
    sha256:bc28541b64f99929fe8e3ae7a02291263f3c97730781201824c0f05d7c8e19e4
1476
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    35
6663
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    36
COMPONENT_ARCHIVE_URL=	$(COMPONENT_PROJECT_URL)/releases/download/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    37
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    38
TPNO=			31154
1948
2d1537e7942d 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 1787
diff changeset
    39
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4339
diff changeset
    40
TEST_TARGET= $(NO_TESTS)
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4339
diff changeset
    41
include $(WS_MAKE_RULES)/common.mk
1476
ab7bed457fe6 PSARC 2013/270 tmux version 1.8
mahmood.ali@oracle.com <mahmood.ali@oracle.com>
parents:
diff changeset
    42
6663
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    43
CONFIGURE_ENV += LIBNCURSES_CFLAGS=-I$(USRINCDIR)/ncurses
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    44
CONFIGURE_ENV += LIBNCURSES_LIBS="-L$(USRLIBDIR64) -lncurses"
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    45
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3717
diff changeset
    46
REQUIRED_PACKAGES += library/libevent
6663
128d4acc707a 23094092 Upgrade to tmux 2.2
Peter Schow <peter.schow@oracle.com>
parents: 5682
diff changeset
    47
REQUIRED_PACKAGES += library/ncurses
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3717
diff changeset
    48
REQUIRED_PACKAGES += shell/ksh93