Makefile revision 3996
0N/A#
0N/A# CDDL HEADER START
0N/A#
0N/A# The contents of this file are subject to the terms of the
0N/A# Common Development and Distribution License (the "License").
0N/A# You may not use this file except in compliance with the License.
0N/A#
0N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0N/A# or http://www.opensolaris.org/os/licensing.
0N/A# See the License for the specific language governing permissions
0N/A# and limitations under the License.
0N/A#
0N/A# When distributing Covered Code, include this CDDL HEADER in each
0N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0N/A# If applicable, add the following below this CDDL HEADER, with the
0N/A# fields enclosed by brackets "[]" replaced with your own identifying
0N/A# information: Portions Copyright [yyyy] [name of copyright owner]
0N/A#
0N/A# CDDL HEADER END
0N/A#
0N/A
0N/A#
0N/A# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
0N/A#
0N/A
0N/Ainclude ../../make-rules/shared-macros.mk
0N/A
0N/ACOMPONENT_NAME= libtool
0N/ACOMPONENT_VERSION= 2.4.2
0N/ACOMPONENT_PROJECT_URL= http://www.gnu.org/software/libtool/
0N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
0N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
0N/ACOMPONENT_ARCHIVE_HASH= \
0N/A sha256:b38de44862a987293cd3d8dfae1c409d514b6c4e794ebc93648febf9afc38918
0N/ACOMPONENT_ARCHIVE_URL= http://ftp.gnu.org/gnu/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
0N/ACOMPONENT_BUGDB= utility/libtool
0N/A
0N/ATPNO= 9088
0N/A
0N/A# For now, we want to continue to provide the libltdl.so's (and their
0N/A# links) from libtool 1.5.22.
0N/A#
0N/ACOMPONENT_VERSION_1 = 1.5.22
0N/ACOMPONENT_SRC_1 = $(COMPONENT_NAME)-$(COMPONENT_VERSION_1)
0N/ACOMPONENT_ARCHIVE_1 = $(COMPONENT_SRC_1).tar.gz
0N/ACOMPONENT_ARCHIVE_HASH_1 = \
0N/A sha256:88e9ffaaade21c1ddaf6297723dd2fb4ca18ccaef0499a28b6e672f02c8ceb5d
0N/ACOMPONENT_ARCHIVE_URL_1 = http://ftp.gnu.org/gnu/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE_1)
0N/ASOURCE_DIR_1 = $(COMPONENT_DIR)/$(COMPONENT_SRC_1)
0N/A
0N/Ainclude $(WS_MAKE_RULES)/prep.mk
0N/Ainclude $(WS_MAKE_RULES)/configure.mk
0N/Ainclude $(WS_MAKE_RULES)/ips.mk
0N/A
0N/ACONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
0N/ACONFIGURE_OPTIONS += --disable-static
0N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
0N/ACONFIGURE_OPTIONS += PERL="$(PERL)"
0N/A
0N/ACOMPONENT_PREP_ACTION = (cd $(@D) ; ./bootstrap)
0N/A
0N/A# Remove the hard-wired compiler locations in the LTCC and two CC lines
0N/A# in the two versions of the libtool script.
0N/ACOMPONENT_POST_INSTALL_ACTION = \
0N/A (for dir in $(PROTOUSRBINDIR) $(PROTOUSRBINDIR)/$(MACH64) ; do \
0N/A cd $$dir; \
0N/A /usr/gnu/bin/sed -i \
0N/A -e 's|^LTCC="/.*$$|LTCC="cc"|' \
0N/A -e 's|^CC="/.*$$|CC="cc"|' libtool ; \
0N/A done)
0N/A
0N/A# Macros to configure, build, and install the old version for the time being.
0N/ABUILD_OLD_DIR_32 = $(COMPONENT_DIR)/build/$(COMPONENT_VERSION_1)-$(MACH32)
0N/ABUILD_OLD_DIR_64 = $(COMPONENT_DIR)/build/$(COMPONENT_VERSION_1)-$(MACH64)
0N/A
0N/A$(BUILD_OLD_DIR_32)/.configured: CONFIGURE_SCRIPT = $(SOURCE_DIR_1)/configure
0N/A$(BUILD_OLD_DIR_64)/.configured: CONFIGURE_SCRIPT = $(SOURCE_DIR_1)/configure
0N/A$(BUILD_OLD_DIR_32)/.configured: BITS=32
0N/A$(BUILD_OLD_DIR_64)/.configured: BITS=64
0N/A
0N/ABUILD_32 += $(BUILD_OLD_DIR_32)/.built
0N/ABUILD_64 += $(BUILD_OLD_DIR_64)/.built
0N/A
0N/AINSTALL_32 += $(BUILD_OLD_DIR_32)/.installed
0N/AINSTALL_64 += $(BUILD_OLD_DIR_64)/.installed
0N/A
0N/A# install the old version first
0N/A$(BUILD_DIR_32)/.installed: $(BUILD_OLD_DIR_32)/.installed
0N/A$(BUILD_DIR_64)/.installed: $(BUILD_OLD_DIR_64)/.installed
0N/A
0N/A# we need to prep the old version too (this should be handled in prep.mk)
0N/A$(SOURCE_DIR_1)/.unpacked: download Makefile $(PATCHES)
0N/A $(RM) -r $(SOURCE_DIR_1)
0N/A $(UNPACK) $(UNPACK_ARGS) $(COMPONENT_ARCHIVE_1)
0N/A $(TOUCH) $@
0N/A
0N/A# prep the old version first
0N/A$(SOURCE_DIR)/.prep: $(SOURCE_DIR_1)/.prep
0N/A
0N/A$(SOURCE_DIR_1)/.prep: $(SOURCE_DIR_1)/.unpacked
0N/A $(TOUCH) $@
0N/A
0N/Aprep:: $(SOURCE_DIR_1)/.prep
0N/A
0N/ACLEAN_PATHS += $(SOURCE_DIR_1)
0N/A
0N/A# common targets
0N/Abuild: $(BUILD_32_and_64)
0N/A
0N/Ainstall: $(INSTALL_32_and_64)
0N/A
0N/Atest: $(TEST_32_and_64)
0N/A
0N/A
0N/AREQUIRED_PACKAGES += developer/base-developer-utilities
0N/AREQUIRED_PACKAGES += file/gnu-coreutils
0N/AREQUIRED_PACKAGES += shell/bash
0N/AREQUIRED_PACKAGES += shell/ksh93
0N/AREQUIRED_PACKAGES += system/library
0N/AREQUIRED_PACKAGES += system/linker
0N/AREQUIRED_PACKAGES += text/gnu-grep
0N/AREQUIRED_PACKAGES += text/gnu-sed
0N/A