Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Feb 2002 10:07:40 +0200
From:      Jeremy Lea <reg@FreeBSD.ORG>
To:        Edwin Groothuis <edwin@mavetju.org>
Cc:        freebsd-ports@FreeBSD.ORG
Subject:   Re: wierd problem with pkg_delete / make deinstall
Message-ID:  <20020225100740.B78678@shale.csir.co.za>
In-Reply-To: <20020225105905.A47310@k7.mavetju.org>; from edwin@mavetju.org on Mon, Feb 25, 2002 at 10:59:06AM %2B1100
References:  <20020225105905.A47310@k7.mavetju.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Hi,

On Mon, Feb 25, 2002 at 10:59:06AM +1100, Edwin Groothuis wrote:
> I have these files:
> -r--r--r--  1 root  wheel  687960 Feb 25 10:55 /usr/local/lib/liballeg-4.0.0.so
> lrwxr-xr-x  1 root  wheel      32 Feb 25 10:55 /usr/local/lib/liballeg.so.4.0 -> /usr/local/lib/liballeg-4.0.0.so
> 
> And this entry in the pkg-plist:
> lib/liballeg-4.0.0.so
> lib/liballeg.so.4.0

Take a look at the +CONTENTS of the installed package.  You'll see that
it's:
lib/liballeg-4.0.0.so
lib/liballeg.so.4

Because bsd.port.mk strips the irrellevant second a.out version number from
.so's for ELF.  Whichever port this is is basically installing with a
Linux (libtool) style version numbering scheme, and needs to be fixed to
use a FreeBSD scheme:

lib/liballeg.so -> liballeg.so.4
lib/liballeg.so.4

USE_LIBTOOL is probably what's needed.

Regards,
  -Jeremy

-- 
FreeBSD - Because the best things in life are free...
                                           http://www.freebsd.org/

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020225100740.B78678>