From owner-freebsd-questions@FreeBSD.ORG Wed Mar 21 19:10:44 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BED911065673 for ; Wed, 21 Mar 2012 19:10:44 +0000 (UTC) (envelope-from vrwmiller@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 826368FC0C for ; Wed, 21 Mar 2012 19:10:44 +0000 (UTC) Received: by obbuo13 with SMTP id uo13so1172282obb.13 for ; Wed, 21 Mar 2012 12:10:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=+ytwCG7bHt2L5GS775gecJ1c3GFgPkdBDzYOIpTa7ZY=; b=1C1tJ9tmz4Mj7pJDT1fi1EgPdZt0Uq9a6ThWYb7n2kMhH7gN+WHP7rIMGZZK7owlbf mzqURa1u1thKKlSeJ5MofrnfANdPcv3bBiePebRzT678IkaddrXMsLkVRaAeZI7Muplb NQUnz8KFzJ4Tq1dqdHJLvAZYsuqE2uh0+9OUw+ITzV8/yEDV3NCp4An5QPfDRrdJepuO 5ZLzY0mrRywJ40lMRjmtE7aA3LQCmDuTMmzjiUxPQEb9qUHPzQAXcwjKUXGeJdvPlEVV lPEMMgjhTF2u7IH34v1K/LVDQHQdbrAzqq27rKunnyMlJwWznJMRxXSNB/lFE4gbQB1Z whhQ== MIME-Version: 1.0 Received: by 10.182.111.3 with SMTP id ie3mr6229884obb.14.1332357044003; Wed, 21 Mar 2012 12:10:44 -0700 (PDT) Sender: vrwmiller@gmail.com Received: by 10.182.97.35 with HTTP; Wed, 21 Mar 2012 12:10:43 -0700 (PDT) In-Reply-To: <4F6A1F73.1040304@infracaninophile.co.uk> References: <4F6A1F73.1040304@infracaninophile.co.uk> Date: Wed, 21 Mar 2012 15:10:43 -0400 X-Google-Sender-Auth: 3stbZikFyFZpeh_SKSSjVnwnVL0 Message-ID: From: Rick Miller To: Matthew Seaman Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: Find run-time dependancies recursively for FreeBSD port 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: Wed, 21 Mar 2012 19:10:44 -0000 Thanks Matthew... On Wed, Mar 21, 2012 at 2:35 PM, Matthew Seaman wrote: > On 21/03/2012 16:51, Rick Miller wrote: >> I can get run-time depends by executing make run-depends-list or all >> dependancies by running make all-depends-list. =A0Is there a way to get >> all run-time depends recursively (I don't need the build depends or >> their depends)? > > If your INDEX is up to date: > > =A0 % cd /usr/ports > =A0 % make search name=3Dpackagename-1.2.3 display=3Drdeps > > or > > =A0 % make search path=3Ddevel/foo display=3Drdeps The problem here is that this does not return recursive results, meaning run-time dependancies of run-time dependancies. Having said that, These commands provide me some alternatives in a script I am writing to ascertain this data for me. --=20 Take care Rick Miller