What Port Installs /usr/local/lib/libiconv.la?

2006-06-01 Thread Daniel Corrigan

libiconv)- make -DWITH_EXTRA_PATCHES install

I know its over a year later, but haha i just found out and saw your old
post
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: What Port Installs /usr/local/lib/libiconv.la?

2005-01-22 Thread Matt Emmerton
 On 1/21/2005 5:55 PM Kris Kennaway wrote:

 On Fri, Jan 21, 2005 at 02:03:12PM -0800, Drew Tomlinson wrote:
 
 I'm attempting to upgrade the libiconv port from 1.9.1 to 1.9.2 but keep
 getting this error:
 
 libtool15: link: cannot find the library `/usr/local/lib/libiconv.la'
 
 A 'ls' of /usr/local/lib confirms this file doesn't exist.  What port
 should I install to get this file?  Seems like it is part of this port,
 as I see several references to it in the build output.  However I don't
 see any error regarding it other than the one above.  My complete build
 output can be viewed here:
 
 http://drew.mykitchentable.net/libiconv.log
 
 I'd guess something is wrong with your libtool installation.  Try
 reinstalling the libtool15 port.
 
 I thought that too.  Prior to posting, I had libtool13, 14, and 15
 installed.  I removed all of them and then installed 15 from ports.  Yet
 the error persists.  It is interesting that I could install libiconv
 from packages without error.  But even after that, I still did not have
 /usr/local/lib/libiconv.la.  Also after installing libiconv from a
 package, 'portupgrade -f libiconv' ends with the error I described above.

At one time, it was -ports policy to not install .la files, although I can't
see any reference to that in the current porters-handbook.

If that is still true, I would have to say that libiconv is in error by
installing such a file (see the patches included in
converters/libiconv/files -- the file is definitely installed).  Not sure
why it doesn't get installed in your case and breaks your subsequent
upgrade, however.

--
Matt Emmerton

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


What Port Installs /usr/local/lib/libiconv.la?

2005-01-21 Thread Drew Tomlinson
I'm attempting to upgrade the libiconv port from 1.9.1 to 1.9.2 but keep 
getting this error:

libtool15: link: cannot find the library `/usr/local/lib/libiconv.la'
A 'ls' of /usr/local/lib confirms this file doesn't exist.  What port 
should I install to get this file?  Seems like it is part of this port, 
as I see several references to it in the build output.  However I don't 
see any error regarding it other than the one above.  My complete build 
output can be viewed here:

http://drew.mykitchentable.net/libiconv.log
Thanks for your help!
Drew
--
Visit The Alchemist's Warehouse
Magic Tricks, DVDs, Videos, Books,  More!
http://www.alchemistswarehouse.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: What Port Installs /usr/local/lib/libiconv.la?

2005-01-21 Thread Michael C. Shultz
On Friday 21 January 2005 02:03 pm, Drew Tomlinson wrote:
 I'm attempting to upgrade the libiconv port from 1.9.1 to 1.9.2 but
 keep getting this error:

 libtool15: link: cannot find the library `/usr/local/lib/libiconv.la'

 A 'ls' of /usr/local/lib confirms this file doesn't exist.  What port
 should I install to get this file?

 Seems like it is part of this 
 port, as I see several references to it in the build output.  However
 I don't see any error regarding it other than the one above.  My
 complete build output can be viewed here:

 http://drew.mykitchentable.net/libiconv.log

 Thanks for your help!

 Drew
yours FreeBSD 4.11???:
if [ ! -d /usr/local/bin ] ; 
then /bin/sh ../autoconf/mkinstalldirs /usr/local/bin ; fi
case freebsd4.11 in  hpux*) cc  `if test -n ''; then  /usr/local/bin; 
fi` iconv.o ../srclib/libicrt.a -L/usr/local/lib -liconv  -o iconv;;  
*) /bin/sh /usr/local/bin/libtool15 --mode=link cc  `if test -n ''; 
then  /usr/local/bin; fi` 
iconv.o ../srclib/libicrt.a /usr/local/lib/libiconv.la  -o iconv;;  
esac

mine FreeBSD 5.3:
if [ ! -d /usr/local/bin ] ; 
then /bin/sh ../autoconf/mkinstalldirs /usr/local/bin ; fi
case freebsd5.3 in  hpux*) cc  `if test -n ''; then  /usr/local/bin; 
fi` iconv.o ../srclib/libicrt.a -L/usr/local/lib -liconv  -o iconv;;  
freebsd*) /bin/sh /usr/local/bin/libtool15 --mode=link cc  `if test -n 
''; then  /usr/local/bin; fi` 
iconv.o ../srclib/libicrt.a ../lib//libiconv.la  -o iconv;;  
*) /bin/sh /usr/local/bin/libtool15 --mode=link cc  `if test -n ''; 
then  /usr/local/bin; fi` 
iconv.o ../srclib/libicrt.a /usr/local/lib/libiconv.la  -o iconv;;  
esac


Your running FreeBSD 4.11 it looks like, it installs fine on FreeBSD 5.3 
Stable. I'm cc'ing th maintainer [EMAIL PROTECTED] for you to let him
know there may be a problem on 4.11 with the port.

-Mike


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: What Port Installs /usr/local/lib/libiconv.la?

2005-01-21 Thread Drew Tomlinson
On 1/21/2005 3:14 PM Michael C. Shultz wrote:
On Friday 21 January 2005 02:03 pm, Drew Tomlinson wrote:
 

I'm attempting to upgrade the libiconv port from 1.9.1 to 1.9.2 but
keep getting this error:
libtool15: link: cannot find the library `/usr/local/lib/libiconv.la'
A 'ls' of /usr/local/lib confirms this file doesn't exist.  What port
should I install to get this file?
   

 

Seems like it is part of this 
port, as I see several references to it in the build output.  However
I don't see any error regarding it other than the one above.  My
complete build output can be viewed here:

http://drew.mykitchentable.net/libiconv.log
Thanks for your help!
Drew
   

yours FreeBSD 4.11???:
if [ ! -d /usr/local/bin ] ; 
then /bin/sh ../autoconf/mkinstalldirs /usr/local/bin ; fi
case freebsd4.11 in  hpux*) cc  `if test -n ''; then  /usr/local/bin; 
fi` iconv.o ../srclib/libicrt.a -L/usr/local/lib -liconv  -o iconv;;  
*) /bin/sh /usr/local/bin/libtool15 --mode=link cc  `if test -n ''; 
then  /usr/local/bin; fi` 
iconv.o ../srclib/libicrt.a /usr/local/lib/libiconv.la  -o iconv;;  
esac

mine FreeBSD 5.3:
if [ ! -d /usr/local/bin ] ; 
then /bin/sh ../autoconf/mkinstalldirs /usr/local/bin ; fi
case freebsd5.3 in  hpux*) cc  `if test -n ''; then  /usr/local/bin; 
fi` iconv.o ../srclib/libicrt.a -L/usr/local/lib -liconv  -o iconv;;  
freebsd*) /bin/sh /usr/local/bin/libtool15 --mode=link cc  `if test -n 
''; then  /usr/local/bin; fi` 
iconv.o ../srclib/libicrt.a ../lib//libiconv.la  -o iconv;;  
*) /bin/sh /usr/local/bin/libtool15 --mode=link cc  `if test -n ''; 
then  /usr/local/bin; fi` 
iconv.o ../srclib/libicrt.a /usr/local/lib/libiconv.la  -o iconv;;  
esac

Your running FreeBSD 4.11 it looks like, it installs fine on FreeBSD 5.3 
Stable. I'm cc'ing th maintainer [EMAIL PROTECTED] for you to let him
know there may be a problem on 4.11 with the port.

-Mike
 

Thanks.  I'm running 4.10.
Drew
--
Visit The Alchemist's Warehouse
Magic Tricks, DVDs, Videos, Books,  More!
http://www.alchemistswarehouse.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: What Port Installs /usr/local/lib/libiconv.la?

2005-01-21 Thread -
Hey,
Try a pkg_which /path/to/your/file
Hope it helps!
Michael C. Shultz wrote:
On Friday 21 January 2005 02:03 pm, Drew Tomlinson wrote:
 

I'm attempting to upgrade the libiconv port from 1.9.1 to 1.9.2 but
keep getting this error:
libtool15: link: cannot find the library `/usr/local/lib/libiconv.la'
A 'ls' of /usr/local/lib confirms this file doesn't exist.  What port
should I install to get this file?
   

 

Seems like it is part of this 
port, as I see several references to it in the build output.  However
I don't see any error regarding it other than the one above.  My
complete build output can be viewed here:

http://drew.mykitchentable.net/libiconv.log
Thanks for your help!
Drew
   

yours FreeBSD 4.11???:
if [ ! -d /usr/local/bin ] ; 
then /bin/sh ../autoconf/mkinstalldirs /usr/local/bin ; fi
case freebsd4.11 in  hpux*) cc  `if test -n ''; then  /usr/local/bin; 
fi` iconv.o ../srclib/libicrt.a -L/usr/local/lib -liconv  -o iconv;;  
*) /bin/sh /usr/local/bin/libtool15 --mode=link cc  `if test -n ''; 
then  /usr/local/bin; fi` 
iconv.o ../srclib/libicrt.a /usr/local/lib/libiconv.la  -o iconv;;  
esac

mine FreeBSD 5.3:
if [ ! -d /usr/local/bin ] ; 
then /bin/sh ../autoconf/mkinstalldirs /usr/local/bin ; fi
case freebsd5.3 in  hpux*) cc  `if test -n ''; then  /usr/local/bin; 
fi` iconv.o ../srclib/libicrt.a -L/usr/local/lib -liconv  -o iconv;;  
freebsd*) /bin/sh /usr/local/bin/libtool15 --mode=link cc  `if test -n 
''; then  /usr/local/bin; fi` 
iconv.o ../srclib/libicrt.a ../lib//libiconv.la  -o iconv;;  
*) /bin/sh /usr/local/bin/libtool15 --mode=link cc  `if test -n ''; 
then  /usr/local/bin; fi` 
iconv.o ../srclib/libicrt.a /usr/local/lib/libiconv.la  -o iconv;;  
esac

Your running FreeBSD 4.11 it looks like, it installs fine on FreeBSD 5.3 
Stable. I'm cc'ing th maintainer [EMAIL PROTECTED] for you to let him
know there may be a problem on 4.11 with the port.

-Mike
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: What Port Installs /usr/local/lib/libiconv.la?

2005-01-21 Thread Kris Kennaway
On Fri, Jan 21, 2005 at 02:03:12PM -0800, Drew Tomlinson wrote:
 I'm attempting to upgrade the libiconv port from 1.9.1 to 1.9.2 but keep 
 getting this error:
 
 libtool15: link: cannot find the library `/usr/local/lib/libiconv.la'
 
 A 'ls' of /usr/local/lib confirms this file doesn't exist.  What port 
 should I install to get this file?  Seems like it is part of this port, 
 as I see several references to it in the build output.  However I don't 
 see any error regarding it other than the one above.  My complete build 
 output can be viewed here:
 
 http://drew.mykitchentable.net/libiconv.log

I'd guess something is wrong with your libtool installation.  Try
reinstalling the libtool15 port.

Kris



pgpwxprGju5p2.pgp
Description: PGP signature


Re: What Port Installs /usr/local/lib/libiconv.la?

2005-01-21 Thread Drew Tomlinson
On 1/21/2005 5:55 PM Kris Kennaway wrote:
On Fri, Jan 21, 2005 at 02:03:12PM -0800, Drew Tomlinson wrote:
 

I'm attempting to upgrade the libiconv port from 1.9.1 to 1.9.2 but keep 
getting this error:

libtool15: link: cannot find the library `/usr/local/lib/libiconv.la'
A 'ls' of /usr/local/lib confirms this file doesn't exist.  What port 
should I install to get this file?  Seems like it is part of this port, 
as I see several references to it in the build output.  However I don't 
see any error regarding it other than the one above.  My complete build 
output can be viewed here:

http://drew.mykitchentable.net/libiconv.log
   

I'd guess something is wrong with your libtool installation.  Try
reinstalling the libtool15 port.
Kris
 

I thought that too.  Prior to posting, I had libtool13, 14, and 15 
installed.  I removed all of them and then installed 15 from ports.  Yet 
the error persists.  It is interesting that I could install libiconv 
from packages without error.  But even after that, I still did not have 
/usr/local/lib/libiconv.la.  Also after installing libiconv from a 
package, 'portupgrade -f libiconv' ends with the error I described above.

Thanks,
Drew
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]