Andreas Wacknitz
2024-03-01 8087704e48d63b1ba639e5cf7d7e25da1cb73458
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#
# 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.opensolaris.org/os/licensing.
# 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) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2020, Michal Nowak
# Copyright (c) 2023, Klaus Ziegler
#
 
USE_COMMON_TEST_MASTER= yes
include ../../../make-rules/shared-macros.mk
 
COMPONENT_NAME=         tcl
COMPONENT_VERSION=      8.6.14
COMPONENT_MINOR_VERSION= $(shell echo $(COMPONENT_VERSION) | $(GSED) -e 's/\([0-9]\+\)\.\([0-9]\+\)\.[0-9]\+/\1.\2/')
COMPONENT_SUMMARY=        Tcl - portable scripting environment
COMPONENT_DESCRIPTION=    Tcl is a dynamic programming language used in web and desktop applications, networking, administration, testing and many more applications
COMPONENT_PROJECT_URL=    https://core.tcl-lang.org/
COMPONENT_SRC=          $(COMPONENT_NAME)$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=      $(COMPONENT_NAME)-core$(COMPONENT_VERSION)-src.tar.gz
COMPONENT_ARCHIVE_HASH= sha256:ff604f43862a778827d7ecd1ad7686950ac2ef48d9cf69d3424cea9de08d9a72
COMPONENT_ARCHIVE_URL=  https://prdownloads.sourceforge.net/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
COMPONENT_FMRI=            runtime/tcl-8
COMPONENT_CLASSIFICATION=    Development/Other Languages
COMPONENT_LICENSE=    BSD-like
COMPONENT_LICENSE_FILE=    license.terms
 
include $(WS_MAKE_RULES)/common.mk
 
PKG_MACROS += COMPONENT_MINOR_VERSION=$(COMPONENT_MINOR_VERSION)
 
COMPONENT_PREP_ACTION = \
    (cd $(SOURCE_DIR)/unix ; autoreconf -f; \
     cd ../doc; \
            for i in *.n ; do manbase="$$(basename "$$i" .n)"; mv "$$i" "$${manbase}.1t"; done ; \
            for i in *.3 ; do manbase="$$(basename "$$i" .3)"; mv "$$i" "$${manbase}.3tcl"; done)
 
COMPONENT_PRE_CONFIGURE_ACTION = \
        ($(CLONEY) $(SOURCE_DIR) $(@D))
 
CONFIGURE_SCRIPT = $(SOURCE_DIR)/unix/configure
 
CONFIGURE_OPTIONS    += --enable-shared
CONFIGURE_OPTIONS    += --enable-man-symlinks
CONFIGURE_OPTIONS    += --enable-threads
CONFIGURE_OPTIONS    += --enable-64bit
ifeq ($(strip $(MACH)),sparc)
CONFIGURE_OPTIONS    += --enable-64bit-vis
endif
 
install:    $(INSTALL_64) $(PROTOUSRLIBDIR)/$(MACH64)/tclConfig.sh
 
$(PROTOUSRLIBDIR)/$(MACH64)/tclConfig.sh:    $(INSTALL_64)
    sed -f $(COMPONENT_DIR)/files/tclsed $(PROTOUSRLIBDIR)/$(MACH64)/tclConfig.sh > \
        $(PROTOUSRLIBDIR)/$(MACH64)/tclConfig.sh.new
    $(MV) $(PROTOUSRLIBDIR)/$(MACH64)/tclConfig.sh.new $(PROTOUSRLIBDIR)/$(MACH64)/tclConfig.sh
    $(CHMOD) 555 $(PROTOUSRLIBDIR)/$(MACH64)/tclConfig.sh
 
# if test does not run the first, try second time, then it
# will show no diffs - some kind of a ping pong play.
COMPONENT_TEST_TARGETS= test
COMPONENT_TEST_TRANSFORMS= \
    '-n' \
    '-e "/^LD_LIBRARY_PATH/d"' \
    '-e "/all\.tcl/p"' \
    '-e "/Files/p"'
 
# Auto-generated dependencies
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/library/math