mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
Explicitly set libdir in EXTRA_OECONF so that the correct library folder is generated in a multilib build. The version string (VER) has been changed to 8.6.1 and the library paths have been updated accordingly so that the related tk recipe can correctly detect tcl (this search is done using the tclConfig.sh script which contains the tcl version number). (From OE-Core rev: e840f526e7223c9d393aab818c7a5a446b89c503) Signed-off-by: Nick D'Ademo <nickdademo@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
79 lines
2.5 KiB
BlitzBasic
79 lines
2.5 KiB
BlitzBasic
DESCRIPTION = "Tool Command Language"
|
|
LICENSE = "BSD-3-Clause"
|
|
SECTION = "devel/tcltk"
|
|
HOMEPAGE = "http://tcl.sourceforge.net"
|
|
DEPENDS = "tcl-native zlib"
|
|
LIC_FILES_CHKSUM = "file://../license.terms;md5=3c6f62c07835353e36f0db550ccfb65a \
|
|
file://../compat/license.terms;md5=3c6f62c07835353e36f0db550ccfb65a \
|
|
file://../library/license.terms;md5=3c6f62c07835353e36f0db550ccfb65a \
|
|
file://../macosx/license.terms;md5=3c6f62c07835353e36f0db550ccfb65a \
|
|
file://../tests/license.terms;md5=3c6f62c07835353e36f0db550ccfb65a \
|
|
file://../win/license.terms;md5=3c6f62c07835353e36f0db550ccfb65a \
|
|
"
|
|
|
|
BASE_SRC_URI = "${SOURCEFORGE_MIRROR}/tcl/tcl${PV}-src.tar.gz \
|
|
file://tcl-add-soname.patch"
|
|
|
|
SRC_URI = "${BASE_SRC_URI} \
|
|
file://fix_non_native_build_issue.patch \
|
|
file://fix_issue_with_old_distro_glibc.patch \
|
|
file://no_packages.patch \
|
|
file://tcl-remove-hardcoded-install-path.patch \
|
|
file://alter-includedir.patch \
|
|
"
|
|
SRC_URI[md5sum] = "aae4b701ee527c6e4e1a6f9c7399882e"
|
|
SRC_URI[sha256sum] = "16ee769248e64ba1cae6b4834fcc4e4edd7470d881410e8d58f7dd1434343514"
|
|
|
|
SRC_URI_class-native = "${BASE_SRC_URI}"
|
|
|
|
S = "${WORKDIR}/tcl${PV}/unix"
|
|
|
|
VER = "8.6.1"
|
|
|
|
inherit autotools
|
|
|
|
DEPENDS_class-native = ""
|
|
|
|
EXTRA_OECONF = "--enable-threads --disable-rpath --libdir=${libdir}"
|
|
|
|
do_configure() {
|
|
( cd ${S}; gnu-configize )
|
|
oe_runconf
|
|
}
|
|
|
|
do_compile_prepend() {
|
|
echo > ${S}/../compat/fixstrtod.c
|
|
}
|
|
|
|
do_install() {
|
|
autotools_do_install install-private-headers
|
|
ln -sf ./tclsh${VER} ${D}${bindir}/tclsh
|
|
sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh
|
|
sed -i "s,-L${libdir},-L=${libdir},g" tclConfig.sh
|
|
sed -i "s,-I${includedir},-I=${includedir},g" tclConfig.sh
|
|
install -d ${D}${bindir_crossscripts}
|
|
install -m 0755 tclConfig.sh ${D}${bindir_crossscripts}
|
|
cd ..
|
|
for dir in compat generic unix
|
|
do
|
|
install -d ${D}${includedir}/${BPN}${VER}/$dir
|
|
install -m 0644 ${S}/../$dir/*.h ${D}${includedir}/${BPN}${VER}/$dir/
|
|
done
|
|
}
|
|
|
|
SYSROOT_PREPROCESS_FUNCS += "tcl_sysroot_preprocess"
|
|
tcl_sysroot_preprocess () {
|
|
sysroot_stage_dir ${D}${bindir_crossscripts} ${SYSROOT_DESTDIR}${bindir_crossscripts}
|
|
}
|
|
|
|
PACKAGES =+ "tcl-lib"
|
|
FILES_tcl-lib = "${libdir}/libtcl8.6.so.*"
|
|
FILES_${PN} += "${libdir}/tcl${VER} ${libdir}/tcl8.6 ${libdir}/tcl8"
|
|
FILES_${PN}-dev += "${libdir}/tclConfig.sh ${libdir}/tclooConfig.sh"
|
|
|
|
# isn't getting picked up by shlibs code
|
|
RDEPENDS_${PN} += "tcl-lib"
|
|
RDEPENDS_${PN}_class-native = ""
|
|
|
|
BBCLASSEXTEND = "native"
|