diff options
author | Koen Kooi <koen@openembedded.org> | 2010-05-19 15:54:36 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-05-19 15:54:36 +0200 |
commit | 4e62775c6f368859fc43d0081ff7afaa779aa65b (patch) | |
tree | a4cf499ade98cc6b7014a2a028816cd7b88534eb /recipes/tcltk | |
parent | 015cb8225db083c686a8b57ea268fefd920ba8ca (diff) |
tk 8.5.8: reintroduce .so workaround
Diffstat (limited to 'recipes/tcltk')
-rw-r--r-- | recipes/tcltk/tk_8.5.8.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/tcltk/tk_8.5.8.bb b/recipes/tcltk/tk_8.5.8.bb index 4e14937749..08683a373d 100644 --- a/recipes/tcltk/tk_8.5.8.bb +++ b/recipes/tcltk/tk_8.5.8.bb @@ -4,6 +4,8 @@ SECTION = "devel/tcltk" HOMEPAGE = "http://tcl.sourceforge.net" DEPENDS = "tcl virtual/libx11 libxt" +PR = "r1" + SRC_URI = "\ ${SOURCEFORGE_MIRROR}/tcl/tk${PV}-src.tar.gz \ file://confsearch.diff;patch=1;pnum=2 \ @@ -33,10 +35,12 @@ BINCONFIG_GLOB = "*Config.sh" do_install() { autotools_do_install + mv libtk8.5.so libtk8.5.so.0 + oe_libinstall -so libtk8.5 ${D}${libdir} ln -sf wish8.5 ${D}${bindir}/wish } PACKAGES =+ "${PN}-lib" -FILES_${PN}-lib = "${libdir}/libtk8.5.so" +FILES_${PN}-lib = "${libdir}/libtk8.5.so.*" FILES_${PN} += "${libdir}/tk*" |