From owner-freebsd-questions@FreeBSD.ORG Thu Feb 5 09:42:09 2004 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 EAADD16A4CE for ; Thu, 5 Feb 2004 09:42:09 -0800 (PST) Received: from integraonline.com (mail-7.integraonline.com [206.163.82.94]) by mx1.FreeBSD.org (Postfix) with SMTP id C85F543D46 for ; Thu, 5 Feb 2004 09:42:06 -0800 (PST) (envelope-from markmc@tisimaging.com) Received: (qmail 11363 invoked from network); 5 Feb 2004 17:41:59 -0000 Received: from unknown (HELO Eeyore) (?pbs?davidk.tisimaging.com@199.107.164.126) by 0 with SMTP; 5 Feb 2004 17:41:59 -0000 From: "Mark McConnell" To: freebsd-questions@freebsd.org Date: Thu, 05 Feb 2004 09:42:05 -0800 MIME-Version: 1.0 Message-ID: <40220FED.12657.1904E8CC@localhost> Priority: normal In-reply-to: <0HSM0024L6EGTU@mail.etat.lu> X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Subject: Re: build packages recursively from ports collection 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: Thu, 05 Feb 2004 17:42:10 -0000 On 5 Feb 2004 at 14:49, Didier WIROTH wrote: {build packages recursively from por...}: > Hi, > > I want to use some of our freebsd servers to build .tgz binaries from the > ports collection. Then, I would like to install the packages with pkg_add on > different workstations. > > My main problem is how to build packages on servers without installing them! > > All i could find or was told, is: > 1) make fetch-recursive > 2) postinstall -rRp kde > 3) portupgrade -frRp kde > > All of theses samples "installs" the ports software! > > For example kde: > How do you recursively build .tgz packages of the kde sources and their > dependencies "WITHOUT" actually installing them on the servers? On 5 Feb 2004 at 14:49, Didier WIROTH wrote: {build packages recursively from por...}: > Hi, > > I want to use some of our freebsd servers to build .tgz > binaries from the ports collection. Then, I would like to > install the packages with pkg_add on different workstations. > > My main problem is how to build packages on servers without > installing them! > > All i could find or was told, is: > 1) make fetch-recursive > 2) postinstall -rRp kde > 3) portupgrade -frRp kde > > All of theses samples "installs" the ports software! > > For example kde: How do you recursively build .tgz packages > of the kde sources and their dependencies "WITHOUT" actually > installing them on the servers? Do you mean, for example: # cd /usr/port/portname # make This creates the ports, plus the dependencies, and does not install them. To install: # make install or better # make install clean Mark --