From owner-freebsd-questions@FreeBSD.ORG Fri Oct 1 10:20:43 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 0425816A4CE; Fri, 1 Oct 2004 10:20:43 +0000 (GMT) Received: from mailbox.rainbownet.com (mailbox.rainbownet.com [213.174.191.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97B5743D39; Fri, 1 Oct 2004 10:20:41 +0000 (GMT) (envelope-from aturetta@commit.it) Received: from nbangx ([81.174.12.226]) (authenticated user aturetta@rainbownet.com) by rainbownet.com (mailbox.rainbownet.com [127.0.0.1]) (MDaemon.PRO.v6.8.5.R) with ESMTP id 53-md50000000316.tmp; Fri, 01 Oct 2004 12:19:59 +0200 Message-ID: <005801c4a7a0$2ff11070$c92aa8c0@lan> From: "Angelo Turetta" To: "Dan Finn" , "f-questions" , References: <89ceee7040930172042dae1d5@mail.gmail.com> Date: Fri, 1 Oct 2004 12:19:50 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Authenticated-Sender: aturetta@rainbownet.com X-Spam-Processed: mailbox.rainbownet.com, Fri, 01 Oct 2004 12:19:59 +0200 (not processed: message from valid local sender) X-MDRemoteIP: 81.174.12.226 X-Return-Path: aturetta@commit.it Subject: Re: upgrading openssl/openssh only using ports 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: Fri, 01 Oct 2004 10:20:43 -0000 ----- Original Message ----- From: "Dan Finn" Sent: Friday, October 01, 2004 2:20 AM > I want to upgrade OpenSSH/OpenSSL and I only want to have to use the > ports tree to do this. What is the best way to do this? If possible > I would like to over write my existing base installations of those two > packages, or delete the base install ones if that's possible > (preferably not by hand). How should I do this? > > Thanks > Dan Build the ports with -DOPENxxx_OVERWRITE_BASE or, if you use portupgrade, better put the following lines in your /usr/local/etc/pkgtools.conf MAKE_ARGS section: 'security/openssl*' => '-DOPENSSL_OVERWRITE_BASE', 'security/openssh*' => '-DOPENSSH_OVERWRITE_BASE', Then you must remember to use -DNO_OPENSSL and -DNO_OPENSSH when running 'make installworld' (I advice against using the flags during buildworld, it gave me some problems at times) Angelo.