| SUMMARY = "Tool Command Language" |
| HOMEPAGE = "http://tcl.sourceforge.net" |
| DESCRIPTION = "Tool Command Language, is an open-source multi-purpose C library which includes a powerful dynamic scripting language. Together they provide ideal cross-platform development environment for any programming project." |
| SECTION = "devel/tcltk" |
| |
| # http://www.tcl.tk/software/tcltk/license.html |
| LICENSE = "TCL & BSD-3-Clause" |
| LIC_FILES_CHKSUM = "file://license.terms;md5=058f6229798281bbcac4239c788cfa38 \ |
| file://compat/license.terms;md5=058f6229798281bbcac4239c788cfa38 \ |
| file://library/license.terms;md5=058f6229798281bbcac4239c788cfa38 \ |
| file://macosx/license.terms;md5=058f6229798281bbcac4239c788cfa38 \ |
| file://tests/license.terms;md5=058f6229798281bbcac4239c788cfa38 \ |
| file://win/license.terms;md5=058f6229798281bbcac4239c788cfa38 \ |
| " |
| |
| DEPENDS = "tcl8-native zlib" |
| |
| BASE_SRC_URI = "${SOURCEFORGE_MIRROR}/tcl/tcl-core${PV}-src.tar.gz \ |
| file://tcl-add-soname.patch" |
| SRC_URI = "${BASE_SRC_URI} \ |
| file://fix_non_native_build_issue.patch \ |
| file://tcl-remove-hardcoded-install-path.patch \ |
| file://alter-includedir.patch \ |
| file://run-ptest \ |
| file://0001-generic-tcl.h-use-Tcl_WideInt-for-seconds-in-Tcl_Tim.patch \ |
| " |
| SRC_URI[sha256sum] = "1880b6337de72431174511419550bb4cf1327b7c8200a5466d1c4eb3ecac5132" |
| |
| SRC_URI:class-native = "${BASE_SRC_URI}" |
| |
| UPSTREAM_CHECK_URI = "https://www.tcl.tk/software/tcltk/download.html" |
| UPSTREAM_CHECK_REGEX = "tcl(?P<pver>8(\.\d+)+)-src" |
| |
| S = "${UNPACKDIR}/tcl${PV}" |
| |
| VER = "${PV}" |
| |
| inherit autotools ptest binconfig |
| |
| AUTOTOOLS_SCRIPT_PATH = "${S}/unix" |
| |
| EXTRA_OECONF = "--enable-threads --disable-rpath --enable-man-suffix=tcl8" |
| |
| PACKAGECONFIG ??= "" |
| # Use of system tzdata is not recommended at present: |
| # https://core.tcl-lang.org/tcl/tktview/51aa53616067cb63900b17ca1d71f07b094ffa1a |
| PACKAGECONFIG[system-tzdata] = "--with-tzdata=no,--with-tzdata=yes,,tzdata" |
| |
| do_install() { |
| autotools_do_install |
| oe_runmake 'DESTDIR=${D}' install-private-headers |
| ln -sf ./tclsh${VER} ${D}${bindir}/tclsh8 |
| ln -sf tclsh8.6 ${D}${bindir}/tclsh${VER} |
| sed -i "s;-L${B};-L${STAGING_LIBDIR};g" tclConfig.sh |
| sed -i "s;'${UNPACKDIR};'${STAGING_INCDIR};g" tclConfig.sh |
| install -d ${D}${bindir_crossscripts} |
| install -m 0755 tclConfig.sh ${D}${bindir_crossscripts} |
| install -m 0755 tclConfig.sh ${D}${libdir} |
| for dir in compat generic unix; do |
| install -d ${D}${includedir}/tcl${VER}/$dir |
| install -m 0644 ${S}/$dir/*.h ${D}${includedir}/tcl${VER}/$dir/ |
| done |
| } |
| |
| SYSROOT_DIRS += "${bindir_crossscripts}" |
| |
| PACKAGES =+ "tcl8-lib" |
| FILES:tcl8-lib = "${libdir}/libtcl8.6.so.*" |
| FILES:${PN} += "${libdir}/tcl${VER} ${libdir}/tcl8.6 ${libdir}/tcl8" |
| FILES:${PN}-dev += "${libdir}/tcl8Config.sh ${libdir}/tcl8ooConfig.sh" |
| |
| # isn't getting picked up by shlibs code |
| RDEPENDS:${PN} += "tcl8-lib" |
| RDEPENDS:${PN}-ptest += "libgcc locale-base-en-us" |
| |
| BBCLASSEXTEND = "native nativesdk" |
| |
| do_compile_ptest() { |
| oe_runmake tcltest |
| } |
| |
| do_install_ptest() { |
| cp ${B}/tcltest ${D}${PTEST_PATH} |
| cp -r ${S}/tests ${D}${PTEST_PATH} |
| } |
| |
| do_install_ptest:append:libc-musl () { |
| # Assumes locales other than provided by musl-locales |
| sed -i '/SKIP="$SKIP.*$/a # unixInit-3* is suppressed due to hardcoded locale assumptions\nSKIP="$SKIP unixInit-3\\\*"' ${D}${PTEST_PATH}/run-ptest |
| } |
| |
| # Fix some paths that might be used by Tcl extensions |
| BINCONFIG_GLOB = "*Config.sh" |
| |
| # Fix the path in sstate |
| SSTATE_SCAN_FILES += "*Config.sh" |
| |
| # Cleanup host path from ${libdir}/tclConfig.sh and remove the |
| # ${bindir_crossscripts}/tclConfig.sh from target |
| # |
| # Also rename development files which conflict with tcl 9.x to |
| # have tcl8-specific filenames. |
| PACKAGE_PREPROCESS_FUNCS += "tcl_package_preprocess" |
| tcl_package_preprocess() { |
| sed -i -e "s;${DEBUG_PREFIX_MAP};;g" \ |
| -e "s;-L${STAGING_LIBDIR};-L${libdir};g" \ |
| -e "s;${STAGING_INCDIR};${includedir};g" \ |
| -e "s;--sysroot=${RECIPE_SYSROOT};;g" \ |
| -e "s;${B};${libdir};g" ${PKGD}${libdir}/tclConfig.sh \ |
| ${PKGD}${libdir}/tclConfig.sh |
| |
| rm -f ${PKGD}${bindir_crossscripts}/tclConfig.sh |
| |
| # development files |
| mv ${PKGD}${libdir}/pkgconfig/tcl.pc ${PKGD}${libdir}/pkgconfig/tcl8.pc |
| mv ${PKGD}${libdir}/tclConfig.sh ${PKGD}${libdir}/tcl8Config.sh |
| mv ${PKGD}${libdir}/tclooConfig.sh ${PKGD}${libdir}/tcl8ooConfig.sh |
| } |