# # This file and its contents are supplied under the terms of the # Common Development and Distribution License ("CDDL"). You may # only use this file in accordance with the terms of the CDDL. # # A full copy of the text of the CDDL should have accompanied this # source. A copy of the CDDL is also available via the Internet at # http://www.illumos.org/license/CDDL. # # # Copyright 2020, 2021 David Stes # # # Package Makefile for the "OpenSmalltalk Cog Spur" Squeak Smalltalk system # See http://squeak.org and http://opensmalltalk.org # # opensmalltalk-vm can be built both in 32 and 64bit BUILD_BITS=32_and_64 include ../../../make-rules/shared-macros.mk # there is no official triplet version for opensmalltalk-vm # we use 5.0. for VMMaker.oscog-eem. # sometimes the Stack VM is generated from a different VMMaker as the Cog VM COMPONENT_NAME= cog-spur COMPONENT_VERSION= 5.0.2957 COMPONENT_REVISION= 3 GIT_TAG= sun-v5.0.29 PLUGIN_REV= 5.0-202105050900-cog COMPONENT_SUMMARY= The OpenSmalltalk Cog Spur Virtual Machine COMPONENT_PROJECT_URL= http://www.squeak.org COMPONENT_FMRI= runtime/smalltalk/cog-spur COMPONENT_CLASSIFICATION= Development/Smalltalk # See http://wiki.squeak.org/squeak/933 # See http://wiki.squeak.org/squeak/159 # there's 2 license lines in the manifest, the MIT squeak.license and this one COMPONENT_LICENSE= Squeak5 COMPONENT_LICENSE_FILE= squeak5.license COMPONENT_SRC= opensmalltalk-vm-$(GIT_TAG) COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz COMPONENT_ARCHIVE_HASH= sha256:6975d8be2d8f4cf80c6f5ca60f14550325b6406f3be7b1bcd3e16cead7c86210 COMPONENT_ARCHIVE_URL= https://codeload.github.com/cstes/opensmalltalk-vm/tar.gz/$(GIT_TAG) TEST_TARGET= $(NO_TESTS) include $(WS_MAKE_RULES)/common.mk PKG_OPTIONS += -D PLUGIN_REV="$(PLUGIN_REV)" PKG_OPTIONS += -DBRANCHID="$(BRANCHID)" PATH=$(PATH.gnu) # opensmalltalk configure script checks for plugins files in builddir COMPONENT_PRE_CONFIGURE_ACTION = ( \ $(MKDIR) $(BUILD_DIR_32); \ cp plugins.ext plugins.int $(BUILD_DIR_32); \ $(MKDIR) $(BUILD_DIR_64); \ cp plugins.ext plugins.int $(BUILD_DIR_64) \ ) # the Squeak configure script detects the lfcompile flags # but unfortunately I think some files do not #include "config.h" # we have to make sure largefile support is enabled in the 32bit case CPPFLAGS += $(CPP_LARGEFILES) # Spur memory management sometimes not compatible with traditional malloc LIBS = "-lmapmalloc" # the default CFLAGS.gcc will be -m64 -O3 but this does not work for us # opensmalltalk code is not compatible with the gcc optimizer -O2 or higher gcc_OPT= -DAIO_DEBUG -DNDEBUG -DDEBUGVM=0 -DCOGMTVM=0 CONFIGURE_SCRIPT= $(SOURCE_DIR)/platforms/unix/config/configure CONFIGURE_OPTIONS += --without-npsqueak CONFIGURE_OPTIONS += --with-vmversion=5.0 CONFIGURE_OPTIONS += --disable-dynamicopenssl CONFIGURE_OPTIONS += --without-libtls CONFIGURE_OPTIONS.64 += --with-src=spur64src CONFIGURE_OPTIONS.32 += --with-src=spursrc CONFIGURE_ENV += CPPFLAGS="$(CPPFLAGS)" CONFIGURE_ENV += LIBS="$(LIBS)" CONFIGURE_ENV.32 += TARGET_ARCH="-m32" CONFIGURE_ENV.64 += TARGET_ARCH="-m64" # the opensmalltalk Makefile does not use DESTDIR COMPONENT_INSTALL_ARGS= ROOT=$(PROTO_DIR) COMPONENT_BUILD_TARGETS= getversion squeak plugins ckformat COMPONENT_INSTALL_TARGETS= install-squeak install-doc install-plugins \ install-ckformat # Makefile has no strip target COMPONENT_POST_INSTALL_ACTION = \ ( find $(PROTOUSRLIBDIR) -name 'squeak' -type f -exec strip {} \; ) # # target to update the manifests from sample-manifest # rebuild-manifests:: cp manifests/cog-spur.p5m cog-spur.p5m cp manifests/cog-spur-ssl.p5m cog-spur-ssl.p5m cp manifests/cog-spur-display-X11.p5m cog-spur-display-X11.p5m cp manifests/cog-spur-nodisplay.p5m cog-spur-nodisplay.p5m cp manifests/sample-manifest.p5m sample-manifest.p5m tools/pluginrev.sh $(PLUGIN_REV) sample.p5m tools/classify.pl