From 4b791501ed1aa506c3109891d21cae170cc38fd9 Mon Sep 17 00:00:00 2001 From: Nitin A Kamble Date: Wed, 1 Dec 2010 12:42:48 -0800 Subject: tcl: upgrade from 8.5.8 to 8.5.9 Rebased this patch to the newer upstream code. modified: fix_non_native_build_issue.patch Deleted following patch as the newer upstream code includes it already. deleted: tcl/mips-tclstrtod.patch tcl: update checksums Signed-off-by: Nitin A Kamble --- meta/recipes-devtools/tcltk/tcl_8.5.9.bb | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 meta/recipes-devtools/tcltk/tcl_8.5.9.bb (limited to 'meta/recipes-devtools/tcltk/tcl_8.5.9.bb') diff --git a/meta/recipes-devtools/tcltk/tcl_8.5.9.bb b/meta/recipes-devtools/tcltk/tcl_8.5.9.bb new file mode 100644 index 0000000000..aa1805b861 --- /dev/null +++ b/meta/recipes-devtools/tcltk/tcl_8.5.9.bb @@ -0,0 +1,65 @@ +DESCRIPTION = "Tool Command Language" +LICENSE = "tcl" +SECTION = "devel/tcltk" +HOMEPAGE = "http://tcl.sourceforge.net" +DEPENDS = "tcl-native" +LIC_CHKSUM_FILES = "file://../license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 \ + file://../compat/license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 \ + file://../library/license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 \ + file://../macosx/license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 \ + file://../tests/license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 \ + file://../win/license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 \ + " + +PR = "r0" + +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 " + +SRC_URI[md5sum] = "8512d8db3233041dd68a81476906012a" +SRC_URI[sha256sum] = "3ab671b417e3eeb41b9cef626d742d8f7f57425101e83e5fcad1d552cd99237d" + +SRC_URI_virtclass-native = "${BASE_SRC_URI}" + +S = "${WORKDIR}/tcl${PV}/unix" + +inherit autotools + +DEPENDS_virtclass-native = "" + +EXTRA_OECONF = "--enable-threads" + +do_configure() { + gnu-configize + oe_runconf +} + +do_compile_prepend() { + echo > ../compat/fixstrtod.c +} + +do_install() { + autotools_do_install + oe_libinstall -so libtcl8.5 ${STAGING_LIBDIR} + ln -sf ./tclsh8.5 ${D}${bindir}/tclsh + sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh + sed -i "s,-L${libdir},," tclConfig.sh + install -d ${STAGING_BINDIR_CROSS}/ + install -m 0755 tclConfig.sh ${STAGING_BINDIR_CROSS} + cd .. + for dir in compat generic unix + do + install -d ${STAGING_INCDIR}/tcl${PV}/$dir + install -m 0644 $dir/*.h ${STAGING_INCDIR}/tcl${PV}/$dir/ + done +} + +PACKAGES =+ "${PN}-lib" +FILES_${PN}-lib = "${libdir}/libtcl8.5.so*" +FILES_${PN} += "${libdir}/tcl8.5" +FILES_${PN}-dev += "${libdir}/tclConfig.sh" + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf