Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Aug 2011 15:07:05 -0700
From:      Kevin Oberman <kob6558@gmail.com>
To:        Jung-uk Kim <jkim@freebsd.org>
Cc:        =?KOI8-R?B?5M3J1NLJyiDixczP1w==?= <smallcms@gmail.com>, freebsd-gnome@freebsd.org
Subject:   Re: missing libproxy.la: brasero builds, gnome-applets doesn't
Message-ID:  <CAN6yY1t2H3PueNF%2BjfWf0kpa9%2Bvht6vKHnHaxLjFkyLjtp-QYQ@mail.gmail.com>
In-Reply-To: <201108241730.44084.jkim@FreeBSD.org>
References:  <CAHq0ZZvTT_2FHOQS70U%2BZo_URhtBgfRb87iLKUma=26S2OUBrA@mail.gmail.com> <CAN6yY1stVnHg0upM8498JVP6NkZTwr7pMj71QKVk1N%2B2FS0X8g@mail.gmail.com> <201108241730.44084.jkim@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
2011/8/24 Jung-uk Kim <jkim@freebsd.org>:
> On Wednesday 24 August 2011 05:06 pm, Kevin Oberman wrote:
>> 2011/8/24 =E5=B2=B8=EF=BF=BD=EF=A4=B6=EF=BF=BD =E9=82=83=E5=8D=BF=EF=BF=
=BD <smallcms@gmail.com>:
>> > I have same problem.
>> >
>> > [/usr/ports/net/libproxy]# cat Makefile | grep PORT[NV]
>> > PORTNAME=3D =EF=BF=BD =EF=BF=BDlibproxy
>> > PORTVERSION=3D =EF=BF=BD =EF=BF=BD0.4.6
>> > PLIST_SUB+=3D =EF=BF=BD =EF=BF=BDVERSION=3D${PORTVERSION}
>> > =EF=BF=BD =EF=BF=BD@${MKDIR} ${PREFIX}/lib/libproxy/${PORTVERSION}/mod=
ules/
>> >
>> > [/usr/ports/net/libproxy]# make deinstall clean
>> > =3D=3D=3D> =EF=BF=BDDeinstalling for net/libproxy
>> > =3D=3D=3D> =EF=BF=BD 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?)
>> > =3D=3D=3D> =EF=BF=BDCleaning for libproxy-0.4.6
>> >
>> > # make install clean
>> >
>> > [SKIP]
>> >
>> > [100%] Built target proxy
>> > =3D=3D=3D> =EF=BF=BDInstalling for libproxy-0.4.6
>> > =3D=3D=3D> =EF=BF=BD Generating temporary packing list
>> > [ =EF=BF=BD3%] Built target modman
>> > [ =EF=BF=BD9%] 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"
>> > =3D=3D=3D> =EF=BF=BD Running ldconfig
>> > /sbin/ldconfig -m /usr/local/lib
>> > =3D=3D=3D> =EF=BF=BD Registering installation for libproxy-0.4.6
>> > =3D=3D=3D> =EF=BF=BDCleaning 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. =C2=A0I was able to fix it after doing something
> like this:
>
> =C2=A0 =C2=A0 =C2=A0 =C2=A0find /usr/local/lib -name "*.la" | \
> =C2=A0 =C2=A0 =C2=A0 =C2=A0xargs grep -l /usr/local/lib/libproxy.la | \
> =C2=A0 =C2=A0 =C2=A0 =C2=A0xargs -L 1 pkg_info -W | \
> =C2=A0 =C2=A0 =C2=A0 =C2=A0awk '{ print $6 }' | \
> =C2=A0 =C2=A0 =C2=A0 =C2=A0sort | \
> =C2=A0 =C2=A0 =C2=A0 =C2=A0uniq | \
> =C2=A0 =C2=A0 =C2=A0 =C2=A0xargs portupgrade -f
>
> You may replace 'portupgrade' with 'portmaster', I think.
>
> Jung-uk Kim
>

Thanks. It's in progress. If you use portmaster, replace "portupgrade -f" w=
ith
"portmaster". (No -f needed or wanted with portmaster.)

I see that it re-installed totem-pl-parser before getting to brasero,
but that polled in libgdata and several other ports. It will take a
while to complete, but it looks good.

Again, thanks.
--=20
R. Kevin Oberman, Network Engineer - Retired
E-mail: kob6558@gmail.com



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAN6yY1t2H3PueNF%2BjfWf0kpa9%2Bvht6vKHnHaxLjFkyLjtp-QYQ>