Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Aug 2011 17:30:40 -0400
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        freebsd-gnome@freebsd.org
Cc:        =?utf-8?b?0JTQvNC40YLRgNC40Lkg0JHQtdC70L7Qsg==?= <smallcms@gmail.com>
Subject:   Re: missing libproxy.la: brasero builds, gnome-applets doesn't
Message-ID:  <201108241730.44084.jkim@FreeBSD.org>
In-Reply-To: <CAN6yY1stVnHg0upM8498JVP6NkZTwr7pMj71QKVk1N%2B2FS0X8g@mail.gmail.com>
References:  <CAHq0ZZvTT_2FHOQS70U%2BZo_URhtBgfRb87iLKUma=26S2OUBrA@mail.gmail.com> <CAN6yY1stVnHg0upM8498JVP6NkZTwr7pMj71QKVk1N%2B2FS0X8g@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wednesday 24 August 2011 05:06 pm, Kevin Oberman wrote:
> 2011/8/24 岸�虜� 邃卿� <smallcms@gmail.com>:
> > I have same problem.
> >
> > [/usr/ports/net/libproxy]# cat Makefile | grep PORT[NV]
> > PORTNAME= � �libproxy
> > PORTVERSION= � �0.4.6
> > PLIST_SUB+= � �VERSION=${PORTVERSION}
> > � �@${MKDIR} ${PREFIX}/lib/libproxy/${PORTVERSION}/modules/
> >
> > [/usr/ports/net/libproxy]# make deinstall clean
> > ===> �Deinstalling for net/libproxy
> > ===> � Deinstalling libproxy-0.4.6
> > pkg_delete: unable to completely remove directory
> > '/usr/local/share/cmake/Modules'
> > pkg_delete: unable to completely remove directory
> > '/usr/local/share/cmake' pkg_delete: couldn't entirely delete
> > package (perhaps the packing list is incorrectly specified?)
> > ===> �Cleaning for libproxy-0.4.6
> >
> > # make install clean
> >
> > [SKIP]
> >
> > [100%] Built target proxy
> > ===> �Installing for libproxy-0.4.6
> > ===> � Generating temporary packing list
> > [ �3%] Built target modman
> > [ �9%] Built target builtin
> > [ 12%] Built target builtin_one
> > [ 15%] Built target condition
> > [ 18%] Built target condition_one
> > [ 21%] Built target condition_two
> > [ 25%] Built target singleton
> > [ 28%] Built target singleton_one
> > [ 31%] Built target singleton_two
> > [ 34%] Built target sorted
> > [ 37%] Built target sorted_one
> > [ 40%] Built target sorted_two
> > [ 43%] Built target symbol
> > [ 46%] Built target symbol_one
> > [ 50%] Built target symbol_two
> > [ 53%] Built target symbollnk
> > [ 84%] Built target libproxy
> > [ 90%] Built target url-encode
> > [ 96%] Built target url-test
> > [100%] Built target proxy
> > Installing the project stripped...
> > -- Install configuration: "Release"
> > -- Installing: /usr/local/lib/libmodman.so.1
> > -- Installing: /usr/local/lib/libmodman.so
> > -- Installing: /usr/local/libdata/pkgconfig/libproxy-1.0.pc
> > -- Installing: /usr/local/share/cmake/Modules/Findlibproxy.cmake
> > -- Installing: /usr/local/lib/libproxy.so.1
> > -- Installing: /usr/local/lib/libproxy.so
> > -- Removed runtime path from "/usr/local/lib/libproxy.so.1"
> > -- Installing: /usr/local/include/proxy.h
> > -- Installing: /usr/local/share/vala/vapi/libproxy-1.0.vapi
> > -- Installing: /usr/local/bin/proxy
> > -- Removed runtime path from "/usr/local/bin/proxy"
> > ===> � Running ldconfig
> > /sbin/ldconfig -m /usr/local/lib
> > ===> � Registering installation for libproxy-0.4.6
> > ===> �Cleaning for libproxy-0.4.6
> >
> > # file /usr/local/lib/libproxy.la
> > /usr/local/lib/libproxy.la: cannot open
> > `/usr/local/lib/libproxy.la' (No such file or directory)
>
> <AOL>Me too.</AOL>
>
> I have attempted to follow UPDATING, but brasero rebuild fails
> because libproxy.la is not
> being listalled when libproxy is installed. Running 8-stable of Aug
> 19 on an amd64
> platform.

I had a similar problem.  I was able to fix it after doing something 
like this:

	find /usr/local/lib -name "*.la" | \
	xargs grep -l /usr/local/lib/libproxy.la | \
	xargs -L 1 pkg_info -W | \
	awk '{ print $6 }' | \
	sort | \
	uniq | \
	xargs portupgrade -f

You may replace 'portupgrade' with 'portmaster', I think.

Jung-uk Kim



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