LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-22-2009, 11:13 AM   #46
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983

I'm sorry but at this point I'm completely lost. It's difficult to follow you while doing different installations on different machines!

Regarding the "guile-config is broken", take in mind that if you have guile-devel installed, you must have the file /usr/lib/pkgconfig/guile-1.8.pc which should be invoked by the configure script to correctly set up the necessary flag for the compilers. Check it out. Mine is the following:
Code:
$ cat /usr/lib/pkgconfig/guile-1.8.pc
prefix=/usr
exec_prefix=/usr
libdir=/usr/lib
includedir=/usr/include
datarootdir=${prefix}/share
datadir=/usr/share

sitedir=/usr/share/guile/site
libguileinterface=19:0:2

Name: GNU Guile
Description: GNU's Ubiquitous Intelligent Language for Extension
Version: 1.8.5
Libs: -L${libdir} -lguile   -lgmp -lcrypt -lm -lltdl
Cflags: -I${includedir}  -pthread
 
Old 02-22-2009, 04:02 PM   #47
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Hi minaesm,
just out of curiosity I tried to install mpb on my OpenSuse 11.1 and it resulted in a straightforward installation. Here is my step:

1) Pre-requisites: using Yast Software Manager I installed the following packages:
Code:
     blas
     libblas3
     lapack
     liblapack3
     fftw
     fftw-devel
     guile
     guile-devel
2) Pre-requisites: I installed libctl from source in /usr/local:
Code:
# tar zxvf libctl-3.0.3.tar.gz -C /usr/local
# cd /usr/local/libctl-3.0.3
# export F77=gfortran
# export CC=gcc
# ./configure
# make
# make check
# make install
3) mpb installation:
Code:
# tar zxvf mpb-1.4.2.tar.gz
# cd mpb-1.4.2
# export F77=gfortran
# export CC=gcc
# ./configure --prefix=/home/colucix/mpb-1.4.2
# make
# make check
**********************************************************
                   MPB PASSED all tests.
**********************************************************
# make install
I hope this helps a little.
 
Old 02-22-2009, 06:37 PM   #48
minaesm
Member
 
Registered: Oct 2008
Posts: 38

Original Poster
Blog Entries: 3

Rep: Reputation: 15
Quote:
Originally Posted by colucix View Post
I'm sorry but at this point I'm completely lost. It's difficult to follow you while doing different installations on different machines!
yeah you'r right , it's better just to follow one of them in the moment , sorry for mantioning them all .
 
Old 02-22-2009, 06:52 PM   #49
minaesm
Member
 
Registered: Oct 2008
Posts: 38

Original Poster
Blog Entries: 3

Rep: Reputation: 15
Quote:
Originally Posted by colucix View Post
if you have guile-devel installed, you must have the file /usr/lib/pkgconfig/guile-1.8.pc [/CODE]
ok, i checked it ,though after :
rpm -q guile_devel ,the coammand is " guile-devel-1.8.4-22.1",
it says that it's installed but there is no guile file in the pkgconfig . i've installed all of the prerequisites as you said , but again because of guile problem i can't install libctl .
 
Old 02-22-2009, 07:28 PM   #50
minaesm
Member
 
Registered: Oct 2008
Posts: 38

Original Poster
Blog Entries: 3

Rep: Reputation: 15
should i install guile manually from the source ? may be it will work ?
 
Old 02-23-2009, 01:47 AM   #51
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Quote:
Originally Posted by minaesm View Post
should i install guile manually from the source ? may be it will work ?
Nope. This is the thing to avoid, accordingly to the installation guide of libctl. To me you have simply a broken guile-devel package. To verify the integrity of the package you can do
Code:
rpm -V guile-devel
In any case, try to uninstall and reinstall it using Yast Software manager and check the presence of /usr/lib/pkgconfig/guile-1.8.pc again. I feel that once you have solved the guile problem, the installation will be straightforward to the end.
 
Old 02-27-2009, 11:55 PM   #52
minaesm
Member
 
Registered: Oct 2008
Posts: 38

Original Poster
Blog Entries: 3

Rep: Reputation: 15
hi and tahnks for your great helps . at last i could do it with your helps . thnks for them all
 
Old 03-01-2009, 06:34 AM   #53
minaesm
Member
 
Registered: Oct 2008
Posts: 38

Original Poster
Blog Entries: 3

Rep: Reputation: 15
how can i find in UBUNTU where the package e.g. HDF5 is installed ?
 
Old 03-01-2009, 10:45 AM   #54
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Hi minaesm, you will never stop to surprise me! Ubuntu now!

Unfortunately, I'm not so experienced with ubuntu. I think the command to list the content of a package is
Code:
dpkg -c package-name
but I'm not sure. I suggest to start new threads for new questions which are not related to this thread title anymore (installing fortran on suse). In this way your questions will have more visibility to all LQ members.

Cheers.
 
Old 03-01-2009, 11:14 AM   #55
minaesm
Member
 
Registered: Oct 2008
Posts: 38

Original Poster
Blog Entries: 3

Rep: Reputation: 15
Quote:
Originally Posted by colucix View Post
but I'm not sure. I suggest to start new threads for new questions which are not related to this thread title anymore (installing fortran on suse). In this way your questions will have more visibility to all LQ members.

Cheers.
yeah you r right , i will start new threads , tnx
 
  


Reply

Tags
fortran



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
Grub problems after installing second hard disk and SuSE11.0 HellesAngel SUSE / openSUSE 46 09-15-2008 03:13 PM
Suse11 can not see windows systems in workgroup linuxlover.chaitanya SUSE / openSUSE 3 08-25-2008 01:16 AM
Not able to update Suse11. linuxlover.chaitanya SUSE / openSUSE 8 08-21-2008 12:05 AM
Open Suse11 RC wifi/ndiswrapper problem slacard SUSE / openSUSE 2 06-13-2008 06:35 PM
Dynamically set array length in Fortran77? halfpower Programming 2 12-15-2005 08:03 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:47 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