Hi all,
My goal is to convert MS .msg files generate by Outlook to mime so I can read the messages on linux. I found this article:
http://wiki.sabayonlinux.org/index.php?title=HOWTO:_Read_Microsoft_Outlook_.MSG_files_in_Linux
The cpan deps are:
perl -MCPAN -e 'install("Email::Outlook::Message")'
perl -MCPAN -e 'install("Email::LocalDelivery")'
perl -MCPAN -e 'install("Getopt::Long")'
perl -MCPAN -e 'install("Pod::Usage")'
perl -MCPAN -e 'install("File::Basename")'
The last one "File::Basename" has been quite difficult for
me. My opensuse 11.0 system has perl 5.10.0 , so I get a message like this (I lost the history but its similar):
The most recent version "2.77" of the module "File::Basename"
is part of the perl-5.8.9 distribution. To install that, you need to r
+un
force install File::Baseline --or--
install N/NW/NWCLARK/perl-5.8.9.tar.gz
I seen a similar error on this forum and it mentioned something about getting the .pm and .t files for the git repo, but I'm not sure how to build those. What I decided to do was build 5.8.9 from source so that I'd have both 5.10.0 and 5.8.9 on my system. So I did:
wget http://search.cpan.org/CPAN/authors/id/N/NW/NWCLARK/perl-5.8.9.tar.bz2
And did a "make" and "make install" . Bad idea!!! It trashed my 5.10.0 install and now all my printing via hplib is broken, among other things. Assuming I can revert to 5.10.0 somehow, what is the easiest way to install "File::Basename" on a system with perl 5.10.0 ?