4239N/A#
4239N/A# CDDL HEADER START
4239N/A#
4239N/A# The contents of this file are subject to the terms of the
4239N/A# Common Development and Distribution License (the "License").
4239N/A# You may not use this file except in compliance with the License.
4239N/A#
4239N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4239N/A# or http://www.opensolaris.org/os/licensing.
4239N/A# See the License for the specific language governing permissions
4239N/A# and limitations under the License.
4239N/A#
4239N/A# When distributing Covered Code, include this CDDL HEADER in each
4239N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4239N/A# If applicable, add the following below this CDDL HEADER, with the
4239N/A# fields enclosed by brackets "[]" replaced with your own identifying
4239N/A# information: Portions Copyright [yyyy] [name of copyright owner]
4239N/A#
4239N/A# CDDL HEADER END
4239N/A#
4239N/A
4239N/A#
4239N/A# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
4239N/A#
4239N/A
4239N/Ainclude ../../../make-rules/shared-macros.mk
4239N/A
4239N/ACOMPONENT_NAME= ruby
4239N/ACOMPONENT_VERSION= 2.1.6
4239N/ACOMPONENT_PROJECT_URL= http://www.ruby-lang.org/
4239N/ACOMPONENT_SRC= \
4239N/A $(COMPONENT_NAME)-$(COMPONENT_VERSION)
4239N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
4239N/ACOMPONENT_ARCHIVE_HASH= \
4239N/A sha256:1e1362ae7427c91fa53dc9c05aee4ee200e2d7d8970a891c5bd76bee28d28be4
4239N/ACOMPONENT_ARCHIVE_URL= \
4239N/A http://cache.ruby-lang.org/pub/ruby/2.1/$(COMPONENT_ARCHIVE)
4239N/ACOMPONENT_BUGDB= utility/ruby
4239N/A
4239N/ATPNO= 22307
4239N/A
4239N/Ainclude $(WS_MAKE_RULES)/prep.mk
4239N/Ainclude $(WS_MAKE_RULES)/ips.mk
4239N/Ainclude $(WS_MAKE_RULES)/configure.mk
4239N/A
4239N/A# COMPONENT_VERSION <major>.<minor>.<teeny>
4239N/A# is transformed into <major>.<minor> for RUBY_VER.
4239N/A# First change the separator '.' to ' ', so we can use "word" to pull the
4239N/A# first two space-separated words from the string.
4239N/ARUBY_VER_WORDS= $(subst ., ,$(COMPONENT_VERSION))
4239N/ARUBY_VER=$(word 1,$(RUBY_VER_WORDS)).$(word 2,$(RUBY_VER_WORDS))
4239N/A# the library-compatible version
4239N/ARUBY_LIB_VER=2.1.0
4239N/A
4239N/APROTORUBYDIR=$(PROTO_DIR)/usr/ruby/$(RUBY_VER)
4239N/APROTO_RBCONFIG_FILE=$(PROTORUBYDIR)/lib/ruby/$(RUBY_LIB_VER)/$(MACH64)-solaris$(SOLARIS_VERSION)/rbconfig.rb
4239N/A
4239N/A# these macros are used in the package manifest
4239N/APKG_MACROS+= RUBY_VER=$(RUBY_VER) RUBY_LIB_VER=$(RUBY_LIB_VER)
4239N/A
4239N/A# Prevent re-compile of ripper.so during install, which would result in
4239N/A# an erroneous full build directory in its RUNPATH. The below change to
4239N/A# ext/ripper/Makefile is identical to what occurs during install
4239N/A# and prevents its regeneration.
4239N/ACOMPONENT_PRE_INSTALL_ACTION += \
4239N/A $(GSED) -i -e "s/^static: check/static: all/" $(BUILD_DIR_64)/ext/ripper/Makefile ; \
4239N/A $(TOUCH) -r $(BUILD_DIR_64)/ext/ripper/ripper.o $(BUILD_DIR_64)/ext/ripper/Makefile
4239N/A
4239N/A# Apply some of the edits here--including to the sed scripts themselves.
4239N/A# These modifications of ruby.1 must occur after ruby
4239N/A# is installed, not before. Although there are some other patches
4239N/A# to ruby.1 that occur before, the ruby installation does some
4239N/A# formatting of ruby.1 that won't occur if the below changes
4239N/A# are applied.
4239N/A# Fix generated rbconfig.rb using /usr/bin/sed; gsed doesn't
4239N/A# work for some of the commands in rbconfig.sedscript.
4239N/ACOMPONENT_POST_INSTALL_ACTION += \
4239N/A $(GSED) -e "s/RUBY_VER/$(RUBY_VER)/" \
4239N/A -e "s/RUBY_LIB_VER/$(RUBY_LIB_VER)/" Solaris/gem.1-generic \
4239N/A > Solaris/gem.1 ; \
4239N/A $(GSED) -e "s/RUBY_VER/$(RUBY_VER)/" \
4239N/A -e "s/RUBY_LIB_VER/$(RUBY_LIB_VER)/" Solaris/ruby.1.sedscript \
4239N/A > Solaris/ruby.1.sedscript.mod ; \
4239N/A $(GSED) -e "s/RUBY_VER/$(RUBY_VER)/" \
4239N/A -e "s/RUBY_LIB_VER/$(RUBY_LIB_VER)/" Solaris/rbconfig.sedscript \
4239N/A > Solaris/rbconfig.sedscript.mod ; \
4239N/A $(GSED) -i -f Solaris/ruby.1.sedscript.mod \
4239N/A $(PROTORUBYDIR)/share/man/man1/ruby.1 ; \
4239N/A /usr/bin/sed -f Solaris/rbconfig.sedscript.mod \
4239N/A $(PROTO_RBCONFIG_FILE) > rbconfig.rb.mod ; \
4239N/A $(MV) rbconfig.rb.mod $(PROTO_RBCONFIG_FILE)
4239N/A
4239N/A# default LD_OPTION $(LD_B_DIRECT) causes problems--
4239N/A# during install of ruby, ruby is executed and will core dump
4239N/A# after compiling with this option
4239N/ALD_B_DIRECT=
4239N/A
4239N/A# don't use LD_Z_IGNORE: causes ruby linker problems with
4239N/A# unreferenced symbol tgetent in libreadline, similar to bug #15617172
4239N/ALD_Z_IGNORE=
4239N/A
4239N/A# sparc build sometimes fails with studio 12.3 because of 17537968;
4239N/A# -xO3 worked around the problem. Also, iropt optimizer has a
4239N/A# an assertion failure when compiling ext/socket/raddrinfo.c,
4239N/A# (CR 20704428); dropping down to -xO2 works around the bug.
4239N/Astudio_OPT.sparc.64 = -xO2
4239N/A
4239N/A# without this define, config fails frequently on i386 when including
4239N/A# /usr/include/sys/isa_defs.h with error: "ISA not supported";
4239N/A# many extensions don't get built and at least one error causes
4239N/A# the build to fail
4239N/Astudio_XBITS.i386.64 += -D__amd64
4239N/A
4239N/ACONFIGURE_PREFIX = $(USRDIR)/$(COMPONENT_NAME)/$(RUBY_VER)
4239N/A# change CONFIGURE_BINDIR.64 because this path will be embedded in
4239N/A# the header for ruby scripts; we are only building 64-bit,
4239N/A# so the real path for ruby will not have $(MACH64) in it
4239N/ACONFIGURE_BINDIR.64 = $(CONFIGURE_BINDIR.32)
4239N/A# not strictly needed, since ruby doesn't use sbin, but
4239N/A# change this as well, for consistency with BINDIR
4239N/ACONFIGURE_SBINDIR.64 = $(CONFIGURE_SBINDIR.32)
4239N/A
4239N/A# we are building 64-bit, but most of the ruby libraries (*.rb files)
4239N/A# are non-bit-specfic text files, so don't put them under lib/$(MACH64).
4239N/A# The 64-bit *.so libraries will be in the $(MACH64)-solaris$(SOLARIS_VERSION)
4239N/A# arch directories under lib
4239N/A
4239N/ACONFIGURE_OPTIONS += --with-rubylibprefix=$(CONFIGURE_LIBDIR.32)/ruby
4239N/ACONFIGURE_OPTIONS += --enable-shared
4239N/ACONFIGURE_OPTIONS += --enable-rpath
4239N/A# Don't need docs for ruby C source files
4239N/ACONFIGURE_OPTIONS += --disable-install-capi
4239N/ACONFIGURE_OPTIONS += --disable-option-checking
4239N/ACONFIGURE_OPTIONS += --with-openssl
4239N/A# If Ruby is configured with __builtin_setjmp, may cause
4239N/A# problems with gems compiled with gcc. Studio compiler doesn't
4239N/A# report an error for __builtin_setjmp, but gcc would.
4239N/ACONFIGURE_OPTIONS += --with-setjmp-type=_setjmp
4239N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
4239N/ACONFIGURE_OPTIONS += DTRACE="/usr/sbin/dtrace"
4239N/A# ensure we use the 64-bit configuration file, not the 32-bit one
4239N/ACONFIGURE_OPTIONS += --with-tclConfig-file=/usr/lib/64/tclConfig.sh
4239N/A
4239N/A# fiddle.so (ext/fiddle) links to libffi, which does not define
4239N/A# ffi_raw_size(), although its prototype is in libffi's
4239N/A# /usr/lib/libffi-3.0/include/ffi.h header file.
4239N/A# Defining FFI_NO_RAW_API avoids use of ffi_raw_size().
4239N/A# This is a workaround to bug
4239N/A# 17349280 - libffi is missing ffi_raw_size()
4239N/ACFLAGS += -DFFI_NO_RAW_API
4239N/A
4239N/A# keep ASLR disabled;
4239N/A# miniruby may core dump on sparc during build
4239N/AASLR_MODE = $(ASLR_DISABLE)
4239N/A
4239N/ACLEAN_PATHS += Solaris/gem.1 Solaris/rbconfig.sedscript.mod \
4239N/A Solaris/ruby.1.sedscript.mod
4239N/A
4239N/A# /usr/bin/env does not support --unset option, so use /usr/gnu/bin/env instead
4239N/ACOMPONENT_TEST_ENV_CMD = $(GNU_ENV)
4239N/A# Some tests produce warnings if HTTP_PROXY is set
4239N/ACOMPONENT_TEST_ENV += "--unset=HTTP_PROXY"
4239N/A
4239N/A# This set of tests goes through thousands of entries in the passwd
4239N/A# and group table, taking hours to run; move it aside so we skip it.
4239N/A# There may also be spurious errors if group memberships are modified
4239N/A# during testing.
4239N/ACOMPONENT_PRE_TEST_ACTION += \
4239N/A ( if test -e $(SOURCE_DIR)/test/etc/test_etc.rb ; then \
4239N/A $(MV) $(SOURCE_DIR)/test/etc/test_etc.rb \
4239N/A $(SOURCE_DIR)/test/etc/test_etc.rb-save ; fi )
4239N/A
4239N/A# common targets
4239N/A
4239N/Abuild: $(BUILD_64)
4239N/A
4239N/Ainstall: build $(INSTALL_64)
4239N/A
4239N/Atest: $(TEST_64)
4239N/A
4239N/AREQUIRED_PACKAGES += library/database/gdbm
4239N/AREQUIRED_PACKAGES += library/libffi
4239N/AREQUIRED_PACKAGES += library/ncurses
4239N/AREQUIRED_PACKAGES += library/readline
4239N/AREQUIRED_PACKAGES += library/security/openssl
4239N/AREQUIRED_PACKAGES += library/zlib
4239N/AREQUIRED_PACKAGES += runtime/tcl-8
4239N/AREQUIRED_PACKAGES += runtime/tk-8
4239N/AREQUIRED_PACKAGES += system/core-os
4239N/AREQUIRED_PACKAGES += system/library
4239N/AREQUIRED_PACKAGES += system/library/math
4239N/AREQUIRED_PACKAGES += system/linker
4239N/AREQUIRED_PACKAGES += x11/library/libx11