From owner-freebsd-ports@FreeBSD.ORG Tue Jul 31 06:56:59 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90B3716A417 for ; Tue, 31 Jul 2007 06:56:59 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 1C6B813C457 for ; Tue, 31 Jul 2007 06:56:59 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1IFlec-0005ZW-NJ for freebsd-ports@freebsd.org; Tue, 31 Jul 2007 08:56:27 +0200 Received: from e177215191.adsl.alicedsl.de ([85.177.215.191]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 31 Jul 2007 08:56:26 +0200 Received: from rotkap by e177215191.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 31 Jul 2007 08:56:26 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Heino Tiedemann Followup-To: gmane.os.freebsd.devel.ports Date: Tue, 31 Jul 2007 08:52:46 +0200 Organization: yes Lines: 41 Message-ID: References: <200707310307.l6V378Ca028454@app.auscert.org.au> <46AEC854.3070508@otenet.gr> <9n13o4-826.ln1@news.hansenet.de> <20070731063759.GA19731@rot26.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: e177215191.adsl.alicedsl.de User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.99 (berkeley-unix) X-Face: v6Lci{Mw=kwHf$`7C?L-U#BHn7O\wqF-1qg#Vk%}nUQv\i^mM/.p=wU+cr)yXf#Ob+foOOxW; ir"QI!|25wG3`ywF)yh~@V.kKtr.qp+v.R; w?c@ZzM#!'/7r_+)$NjMN:]qo-]`&z~KlP}|cERO'%s9":6\ZnN/O Subject: Re: make install a port, but with a package? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rotkap@gmx.de List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2007 06:56:59 -0000 Kris Kennaway wrote: > On Tue, Jul 31, 2007 at 08:32:58AM +0200, Heino Tiedemann wrote: >> Manolis Kiagias wrote: >> >> > Make install will always compile from source. You could however use: >> > >> > setenv PACKAGESITE >> > ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-6-stable/Latest/ >> > >> > or >> > >> > export >> > PACKAGESITE=ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-6-stable/Latest/ >> > (if you use bash) >> > >> > and then do pkg_add, will get you latest packages build from the -STABLE >> > ports. You don't even have to worry about specific version numbers (i.e. >> > pkg_add -r bash instead of pkg_add -r bash-3.2.17_1) so this is a close >> > to a "port tree simulation" as possible. The package may still be >> > lagging a few versions behind the port however (or in some cases may not >> > even exist). >> >> What about the variable PKG_SITES? >> >> Once I found (in sime wiki or howto) this entry: >> >> >> export >> PACKAGESITE=ftp://ftp7.de.freebsd.org/pub/FreeBSD/ports/i386/packages-6-stable/Latest/ >> export PKG_SITES=ftp://ftp7.de.freebsd.org/pub/FreeBSD/ports/i386/packages-6-stable/ >> >> >> what about that variable PKG_SITES? what is it for? > > See pkg_add(1) PACKAGESITE ist explanied in that manpage, PKG_SITES not. Heino