# # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.illumos.org/license/CDDL. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # Copyright (c) 2013, Aurelien Larcher. All rights reserved. # Copyright (c) 2016 Jim Klimov # BUILD_BITS= 32_and_64 include ../../../make-rules/shared-macros.mk COMPONENT_NAME= giflib COMPONENT_VERSION= 5.1.4 COMPONENT_REVISION= 2 COMPONENT_SUMMARY= GIFLIB - A library and utilities for processing GIFs COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION) COMPONENT_PROJECT_URL= https://giflib.sourceforge.net/ COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.bz2 COMPONENT_ARCHIVE_HASH= sha256:df27ec3ff24671f80b29e6ab1c4971059c14ac3db95406884fc26574631ba8d5 COMPONENT_ARCHIVE_URL= https://sourceforge.net/projects/giflib/files/$(COMPONENT_ARCHIVE)/download COMPONENT_FMRI= library/giflib COMPONENT_CLASSIFICATION=System/Libraries COMPONENT_LICENSE= MIT COMPONENT_LICENSE_FILE= COPYING # For backwards compatibility, deliver shared lib of previous version SO number COMPONENT_VERSION_1= 5.0.6 COMPONENT_SRC_1= $(COMPONENT_NAME)-$(COMPONENT_VERSION_1) COMPONENT_ARCHIVE_1= $(COMPONENT_SRC_1).tar.bz2 COMPONENT_ARCHIVE_HASH_1= sha256:8909839ccbdfca75cfbe6a4db907b55978e11fb268a8f3cde24bd923a0f669ea COMPONENT_ARCHIVE_URL_1= https://sourceforge.net/projects/giflib/files/$(COMPONENT_ARCHIVE_1)/download CLEAN_PATHS += $(COMPONENT_SRC_1) SOURCE_DIR_1 = $(COMPONENT_DIR)/$(COMPONENT_SRC_1) TEST_TARGET=$(NO_TESTS) include $(WS_MAKE_RULES)/common.mk PATH=$(PATH.gnu) CONFIGURE_OPTIONS+= --enable-shared CONFIGURE_OPTIONS+= --disable-static # Macros to configure, build, and install the old version for the time being. # Snatched from libreadline recipe BUILD_OLD_DIR_32 = $(COMPONENT_DIR)/build/$(COMPONENT_VERSION_1)-$(MACH32) BUILD_OLD_DIR_64 = $(COMPONENT_DIR)/build/$(COMPONENT_VERSION_1)-$(MACH64) $(BUILD_OLD_DIR_32)/.configured: CONFIGURE_SCRIPT = $(SOURCE_DIR_1)/configure $(BUILD_OLD_DIR_64)/.configured: CONFIGURE_SCRIPT = $(SOURCE_DIR_1)/configure $(BUILD_OLD_DIR_32)/.configured: BITS=32 $(BUILD_OLD_DIR_64)/.configured: BITS=64 BUILD_32 += $(BUILD_OLD_DIR_32)/.built BUILD_64 += $(BUILD_OLD_DIR_64)/.built INSTALL_32 += $(BUILD_OLD_DIR_32)/.installed INSTALL_64 += $(BUILD_OLD_DIR_64)/.installed # install the old version first $(BUILD_DIR_32)/.installed: $(BUILD_OLD_DIR_32)/.installed $(BUILD_DIR_64)/.installed: $(BUILD_OLD_DIR_64)/.installed # Build dependencies REQUIRED_PACKAGES += text/xmlto # Auto-generated dependencies REQUIRED_PACKAGES += system/library REQUIRED_PACKAGES += system/library/math