From owner-freebsd-questions@FreeBSD.ORG Thu Jul 23 22:01:29 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 273B6106566B for ; Thu, 23 Jul 2009 22:01:29 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.24]) by mx1.freebsd.org (Postfix) with ESMTP id CFE748FC12 for ; Thu, 23 Jul 2009 22:01:28 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so651987qwe.7 for ; Thu, 23 Jul 2009 15:01:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:in-reply-to :references:content-type:date:message-id:mime-version:x-mailer; bh=CN6TvyY5mIp7ifkC2J9VXrU06ofrsBqAip3wm692srk=; b=ndYU8vOzse8IdERkG68NbwUPuyenDobFLEQu3azKBJLV/IUtpHJ5bHfPLcbL75E50g ykYGdplixD+Yr6uj9nQbPwPfreeLLrt9GiHEkT4JGsqYzqVWRtfIWZAvWipNcCMPQdfi G7TW8CX+qlSEbVAXn+OeoO6eIQNk1AkKwRovQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:in-reply-to:references:content-type:date:message-id :mime-version:x-mailer; b=IKKvpL6MG8qY8DonyiJ/F7w5k8W0OA3cbTF2+Cqqr8llYRdD7nN6SNWxK5i0Ovy2nI QMQ2n/8ozetrYrQH4t6PQlhM+WU2UbAiR8Ytexy0F/p+lN6jI0ZSBPIcPB85rPSMuVjw GtKHSNyOox0flrwEznOHsaKNZa1KjtD3hf3U8= Received: by 10.224.54.4 with SMTP id o4mr2699040qag.58.1248386488201; Thu, 23 Jul 2009 15:01:28 -0700 (PDT) Received: from ?192.168.6.250? ([201.21.144.81]) by mx.google.com with ESMTPS id 7sm3395594qwf.48.2009.07.23.15.01.26 (version=SSLv3 cipher=RC4-MD5); Thu, 23 Jul 2009 15:01:27 -0700 (PDT) From: Sergio de Almeida Lenzi To: ajtiM , freebsd-questions In-Reply-To: <200907231539.59719.lumiwa@gmail.com> References: <200907201930.54520.lumiwa@gmail.com> <200907231539.59719.lumiwa@gmail.com> Date: Thu, 23 Jul 2009 19:01:24 -0300 Message-Id: <1248386484.27780.36.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: jpeg-7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jul 2009 22:01:29 -0000 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.