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