Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Jul 2009 19:01:24 -0300
From:      Sergio de Almeida Lenzi <lenzi.sergio@gmail.com>
To:        ajtiM <lumiwa@gmail.com>, freebsd-questions <questions@freebsd.org>
Subject:   Re: jpeg-7
Message-ID:  <1248386484.27780.36.camel@localhost>
In-Reply-To: <200907231539.59719.lumiwa@gmail.com>
References:  <200907201930.54520.lumiwa@gmail.com> <d05df8620907230752s30a442b9jf13b0300c128861d@mail.gmail.com> <200907231539.59719.lumiwa@gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
for me what worked is:

grep libjpeg /usr/local/bin/* /usr/local/lib/* | grep Binary | awk
'{print $3}' | sort -u > /tmp/p1 

after that I have a list of all files that uses libjpeg (or at least the
almost of all).

another script.... gets the package list....
for i in `cat /tmp/p1`
do
    pkg_info -W $i  | awk '{print $NF}'  >> /tmp/p2
done

finally.............


portmaster -Bug `sort -u /tmp/p2`  builds all ports that have
libjpeg....

several hours later...  it all works....

Hope this will help.




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