diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-09-25 12:50:59 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-25 12:50:59 +0000 |
commit | c25b1b3efea1ed12c1953978b7a083f666dc4e68 (patch) | |
tree | fc93771ee64f23c5ae0bb24f72de57bb47655175 /packages/tcltk/tk_8.4.11.bb | |
parent | 1388ddb0f747472c631ddd801f13c8a0a6ace4ac (diff) | |
parent | a0a6a9203a15e13fcbc60d3f59ad37c59f1d5ba6 (diff) |
merge of 67751448562cee294c455a1ca90add74cc339b78
and ccbb80bf271c9a4cfead703ac33b9b69e95d755e
Diffstat (limited to 'packages/tcltk/tk_8.4.11.bb')
-rw-r--r-- | packages/tcltk/tk_8.4.11.bb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/packages/tcltk/tk_8.4.11.bb b/packages/tcltk/tk_8.4.11.bb new file mode 100644 index 0000000000..b76d6670f2 --- /dev/null +++ b/packages/tcltk/tk_8.4.11.bb @@ -0,0 +1,44 @@ +DESCRIPTION = "Tool Command Language ToolKit Extension" +LICENSE = "tcl" +SECTION = "devel/tcltk" +HOMEPAGE = "http://tcl.sourceforge.net" +DEPENDS = "tcl x11" +PR = "r1" + +SRC_URI = "${SOURCEFORGE_MIRROR}/tcl/tk${PV}-src.tar.gz \ + file://disable-xim.patch;patch=1;pnum=0" +S = "${WORKDIR}/tk${PV}/unix" + +inherit autotools + +EXTRA_OECONF = "--enable-threads --with-tcl=${STAGING_BINDIR} \ + --x-includes=${STAGING_INCDIR} --x-libraries=${STAGING_LIBDIR}" + +do_configure() { + gnu-configize + oe_runconf +} + +do_stage() { + oe_libinstall -a libtkstub8.4 ${STAGING_LIBDIR} + oe_libinstall -so libtk8.4 ${STAGING_LIBDIR} + install -m 0755 tkConfig.sh ${STAGING_BINDIR} + cd .. + #for dir in compat generic unix + #do + # install -d ${STAGING_INCDIR}/tk${PV}/$dir + #install -m 0644 $dir/*.h ${STAGING_INCDIR}/tk${PV}/$dir/ + #done + install -m 0644 generic/tk.h ${STAGING_INCDIR} + install -m 0644 generic/tkDecls.h ${STAGING_INCDIR} + install -m 0644 generic/tkPlatDecls.h ${STAGING_INCDIR} + +} + +do_install() { + autotools_do_install + oe_libinstall -so libtk8.4 ${D}${libdir} + ln -sf ./wish8.4 ${D}${bindir}/wish +} + +FILES_${PN} += "${libdir}/tk8.4" |