From owner-freebsd-questions@FreeBSD.ORG Mon Mar 27 16:03:03 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 90DB416A41F for ; Mon, 27 Mar 2006 16:03:03 +0000 (UTC) (envelope-from donaldjoneill@gmail.com) Received: from smtp102.sbc.mail.re2.yahoo.com (smtp102.sbc.mail.re2.yahoo.com [68.142.229.103]) by mx1.FreeBSD.org (Postfix) with SMTP id 40AFB43D5C for ; Mon, 27 Mar 2006 16:03:01 +0000 (GMT) (envelope-from donaldjoneill@gmail.com) Received: (qmail 47992 invoked from network); 27 Mar 2006 16:03:00 -0000 Received: from unknown (HELO ?192.168.1.100?) (donaldj@ameritech.net@69.212.15.20 with plain) by smtp102.sbc.mail.re2.yahoo.com with SMTP; 27 Mar 2006 16:03:00 -0000 From: "Donald J. O'Neill" To: freebsd-questions@freebsd.org Date: Mon, 27 Mar 2006 10:02:53 -0600 User-Agent: KMail/1.9.1 References: <4427C93B.2050805@greenmeadow.ca> <20060327232008.21b9113f@localhost> <200603271649.56334.list-freebsd-2004@morbius.sent.com> In-Reply-To: <200603271649.56334.list-freebsd-2004@morbius.sent.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603271002.53806.donaldjoneill@gmail.com> Cc: RW Subject: Re: Fwd: package vs ports question 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: Mon, 27 Mar 2006 16:03:03 -0000 On Monday 27 March 2006 09:49, RW wrote: > On Monday 27 March 2006 14:20, Norberto Meijome wrote: > > make package will actually make the package and install it for you, > > you dont need to do a pkg_add after that (yes, a bit > > counter-intuitive, but really handy) > > Make package creates a package out of an installed port (it will > install the port first, if neccessary). It doesn't install the > package - there would be no point. > _______________________________________________ 'make install' builds a package from the port and installs it. 'make package' builds a package and installs it, it also saves it in compressed form so it can be reinstalled if necessary. A port is a skeleton, it contains the information needed to build a package and that's it. The ports aren't installed, it's the package that results from building a port that is installed. Ports are only skeletons, the contain the information necessary to allow the port to be built into an installable package. Don