Makefile revision 3353
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi#
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi# CDDL HEADER START
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd#
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd# The contents of this file are subject to the terms of the
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd# Common Development and Distribution License (the "License").
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd# You may not use this file except in compliance with the License.
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd#
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd# or http://www.opensolaris.org/os/licensing.
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd# See the License for the specific language governing permissions
97a3ecc40b65d5f8e865bbe0b1c9325d8c016e34nd# and limitations under the License.
97a3ecc40b65d5f8e865bbe0b1c9325d8c016e34nd#
97a3ecc40b65d5f8e865bbe0b1c9325d8c016e34nd# When distributing Covered Code, include this CDDL HEADER in each
97a3ecc40b65d5f8e865bbe0b1c9325d8c016e34nd# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
edde86731b0c991af13704c646da1419981d40a7wrowe# If applicable, add the following below this CDDL HEADER, with the
edde86731b0c991af13704c646da1419981d40a7wrowe# fields enclosed by brackets "[]" replaced with your own identifying
edde86731b0c991af13704c646da1419981d40a7wrowe# information: Portions Copyright [yyyy] [name of copyright owner]
edde86731b0c991af13704c646da1419981d40a7wrowe#
6ae232055d4d8a97267517c5e50074c2c819941and# CDDL HEADER END
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd#
6ae232055d4d8a97267517c5e50074c2c819941and
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd#
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd#
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd
d80509b9594c1cd4ae2cfb4bb5c416a25d27b150pctonyinclude ../../make-rules/shared-macros.mk
d80509b9594c1cd4ae2cfb4bb5c416a25d27b150pctony
d80509b9594c1cd4ae2cfb4bb5c416a25d27b150pctonyCOMPONENT_NAME= ncurses
d80509b9594c1cd4ae2cfb4bb5c416a25d27b150pctonyCOMPONENT_VERSION= 5.7
COMPONENT_PROJECT_URL= http://www.gnu.org/software/ncurses/
COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
COMPONENT_ARCHIVE_HASH= \
sha256:0a9bdea5c7de8ded5c9327ed642915f2cc380753f12d4ad120ef7da3ea3498f4
COMPONENT_ARCHIVE_URL= http://ftp.gnu.org/pub/gnu/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
COMPONENT_BUGDB= library/ncurses
TPNO= 5931
include ../../make-rules/prep.mk
include ../../make-rules/configure.mk
include ../../make-rules/ips.mk
# Needed to make "gmake test" work.
COMPONENT_PRE_CONFIGURE_ACTION = \
($(CLONEY) $(SOURCE_DIR) $(@D))
CONFIGURE_PREFIX = /usr/gnu
# Needed to correctly build that 64-bit library.
LDFLAGS += $(CC_BITS)
CONFIGURE_OPTIONS += --with-shared
CONFIGURE_OPTIONS += --with-normal
CONFIGURE_OPTIONS += --enable-rpath
CONFIGURE_OPTIONS += --enable-widec
CONFIGURE_OPTIONS += --includedir=$(USRINCDIR)/ncurses
CONFIGURE_OPTIONS += --with-default-terminfo-dir=$(GNUSHARE)/terminfo
# Needed to pass -m32 or -m64 to the C/C++ compiler and linker.
CONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
CONFIGURE_OPTIONS += CXXFLAGS="$(CXXFLAGS)"
CONFIGURE_OPTIONS += LDFLAGS="$(LDFLAGS)"
# XXX: Ugly hack copied directly from the desktop SUNWncurses.spec file:
# The sun-color terminfo included in ncurses does not work;
# copying the one shipped with Sun's curses fixes it:
COMPONENT_POST_INSTALL_ACTION += \
$(CP) /usr/share/lib/terminfo/s/sun-color \
$(PROTO_DIR)$(GNUSHARE)/terminfo/s/
COMPONENT_TEST_DIR = $(BUILD_DIR)/$(MACH$(BITS))/test
COMPONENT_TEST_TARGETS =
ASLR_MODE = $(ASLR_ENABLE)
# common targets
build: $(BUILD_32_and_64)
install: $(INSTALL_32_and_64)
test: $(TEST_32_and_64)
BUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
include ../../make-rules/depend.mk