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