From owner-freebsd-questions@FreeBSD.ORG Mon Mar 28 05:51:30 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEDCD16A4CE for ; Mon, 28 Mar 2005 05:51:30 +0000 (GMT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id A48E443D4C for ; Mon, 28 Mar 2005 05:51:30 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from ringworm.mechee.com ([4.27.46.32])0.04 <0IE100KJ2S9T47I1@vms046.mailsrvcs.net> for freebsd-questions@freebsd.org; Sun, 27 Mar 2005 23:51:30 -0600 (CST) Received: by ringworm.mechee.com (Postfix, from userid 1001) id 760162CE751; Sun, 27 Mar 2005 21:51:29 -0800 (PST) Date: Sun, 27 Mar 2005 21:51:28 -0800 From: "Michael C. Shultz" In-reply-to: <42479915.5040202@att.net> To: freebsd-questions@freebsd.org Message-id: <200503272151.29109.ringworm01@gmail.com> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: quoted-printable Content-disposition: inline References: <20050328044052.75667.qmail@web53909.mail.yahoo.com> <42479915.5040202@att.net> User-Agent: KMail/1.8 Subject: Re: Portupgrade (vs. Portmanager) question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Mar 2005 05:51:30 -0000 On Sunday 27 March 2005 09:41 pm, Jay O'Brien wrote: > stheg olloydson wrote: > > Hello, > > > > They are recursive dependencies. Check each ports requirements. > > cvsup-without-gui depends on ezm3. ezm3 depends on gmake, > > gettext and libiconv. libiconv depends on libtool...and the foot > > bone's connected to the toe bone :). > > > > hth, > > > > stheg > > stheg, > > Thank you. Great learning experience. Especially 'make search'. That > is very useful. But how does it work (/usr/ports/Makefile doesn't > have a SEARCH statement) and is it documented somewhere, like in a > MAN page? > > The handbook, =B64.3, mentions 'make search' but doesn't explain how it > works. > > Jay It would be nice if the ports make options were better documented, but=20 you can read through /usr/ports/Mk/bsd.port.mk and find information on the various options.=20 here is an example: # all-depends-list # - Show all directories which are dependencies # for this port. then cd /usr/ports/lang/ezm3/ make all-depends-list result: /usr/ports/converters/libiconv /usr/ports/devel/gettext /usr/ports/devel/gmake /usr/ports/devel/libtool15 =2DMike