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