LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux From Scratch
User Name
Password
Linux From Scratch This Forum is for the discussion of LFS.
LFS is a project that provides you with the steps necessary to build your own custom Linux system.

Notices


Reply
  Search this Thread
Old 02-21-2013, 01:13 PM   #1
Lennie
Member
 
Registered: Aug 2012
Location: Sweden
Distribution: LFS, built with pacman
Posts: 374

Rep: Reputation: 85
Can't install tcl to $pkgdir - it tries to use its recently installed shared library


I'm trying to install Tcl. It compiles fine and all the tests passed. But when I install it to $pkgdir it fails because it tries to use a shared library that it has just installed, and because it is installed in the pkgdir it can't find it.
Code:
==> Starting package()...
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/bin
Installing libtcl8.6.so to /home/packages/pkgbuilds/tcl/pkg/usr/lib/
Installing tclsh as /home/packages/pkgbuilds/tcl/pkg/usr/bin/tclsh8.6
Installing tclConfig.sh to /home/packages/pkgbuilds/tcl/pkg/usr/lib/
Installing tclooConfig.sh to /home/packages/pkgbuilds/tcl/pkg/usr/lib/
Installing libtclstub8.6.a to /home/packages/pkgbuilds/tcl/pkg/usr/lib/
Installing pkg-config file to /home/packages/pkgbuilds/tcl/pkg/usr/lib/pkgconfig/
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/opt0.4
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/http1.0
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/encoding
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/../tcl8
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/../tcl8/8.4
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/../tcl8/8.4/platform
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/../tcl8/8.5
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/../tcl8/8.6
Installing library files to /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/
Installing package http1.0 files to /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/http1.0/
Installing package http 2.8.5 as a Tcl Module
Installing package opt0.4 files to /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/opt0.4/
Installing package msgcat 1.5.0 as a Tcl Module
Installing package tcltest 2.3.5 as a Tcl Module
Installing package platform 1.0.10 as a Tcl Module
Installing package platform::shell 1.1.4 as a Tcl Module
Installing encoding files to /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/encoding/
Making directory /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/msgs
Installing message catalog files to /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/msgs/
Installing time zone files to /home/packages/pkgbuilds/tcl/pkg/usr/lib/tcl8.6/tzdata/
./tclsh: error while loading shared libraries: libtcl8.6.so: cannot open shared object file: No such file or directory
make: *** [install-tzdata] Error 127
I tried both with the build instructions from blfs, but adjusted to pkgdir, and I also tried with the pkgbuild from Arch, which was very much the same. Both error out at the same place, with the same error. Those timezone files are not installed, there is no directory tzdata.

How to create a package of it?
 
Old 02-22-2013, 11:32 AM   #2
Keith Hedger
Senior Member
 
Registered: Jun 2010
Location: Wiltshire, UK
Distribution: Void, Linux From Scratch, Slackware64
Posts: 3,150

Rep: Reputation: 856Reputation: 856Reputation: 856Reputation: 856Reputation: 856Reputation: 856Reputation: 856
I use a package manager and this:
Code:
	cd unix
	sed -i '/sprintf(installLib/s:"lib:&64:' tclUnixInit.c
	sed -i -e '/TCL_PACKAGE_PATH=/s:=.*:="/usr/lib64":' -e "/^TCL_LIBRARY=/s:=.*:='/usr/lib64/tcl\$(VERSION)':" configure
	./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/libexec --libdir=/usr/lib${LIBDIRSUFFIX} --enable-threads
	make || exit 1
	make install DESTDIR=$PKG || exit 1
	make install-private-headers DESTDIR=$PKG || exit 1
	ln -v -sf tclsh8.5 $PKG/usr/bin/tclsh
works for me ( PKG is in this case /tmp/tcl, and LIBDIRSUFFIX=64 ), this is version 8.5.7
 
1 members found this post helpful.
Old 02-22-2013, 12:15 PM   #3
Lennie
Member
 
Registered: Aug 2012
Location: Sweden
Distribution: LFS, built with pacman
Posts: 374

Original Poster
Rep: Reputation: 85
Maybe something is wrong in the Makefile of Tcl-8.6.0. I tried with 8.5.13 (the latest 8.5.x) It did install to the pkgdir, but something was wrong with the sed command. (I used Arch's pkgbuild, which put the sed command last.)

The version 8.5.7 is quite old, from 2009, so I prefer to use a newer version. I don't understand what the sed command is for (I know it changes the text in a file), and if I need to use another sed command for a different version. Maybe someone can help me with this?
 
Old 02-23-2013, 04:13 AM   #4
Lennie
Member
 
Registered: Aug 2012
Location: Sweden
Distribution: LFS, built with pacman
Posts: 374

Original Poster
Rep: Reputation: 85
For now I installed both tcl and tk (8.6.0) with configure option "--without-tzdata". I'm not really satisfied with this solution, I don't know if I will need tzdata for something. I leave the thread open for yet some time, in case someone has a better solution.

Last edited by Lennie; 02-23-2013 at 09:16 AM.
 
Old 02-24-2013, 03:54 AM   #5
Lennie
Member
 
Registered: Aug 2012
Location: Sweden
Distribution: LFS, built with pacman
Posts: 374

Original Poster
Rep: Reputation: 85
I recompiled Tcl (and Tk), with the configure options from the blfs book, when I had it installed, and now it worked. It seems Tcl depends on itself...
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Shared library on Redhat 7.0 - install exactiv Linux - Software 1 05-07-2009 07:24 AM
install from source - unable to find the libcurl library - but library is installed pulper Linux - Newbie 2 02-23-2009 09:00 PM
How do I install a shared library? NichA Linux - Newbie 2 08-04-2007 06:30 PM
How to install Matlab?? I recently installed Fedora. play_play Linux - Software 4 02-18-2007 01:53 PM
Getting ready to install or recently installed? Ac. K. Fedora 3 01-16-2004 10:07 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux From Scratch

All times are GMT -5. The time now is 06:51 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration