From owner-freebsd-questions@FreeBSD.ORG Tue Sep 8 00:49:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE99B106566B for ; Tue, 8 Sep 2009 00:49:14 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from mail-bw0-f206.google.com (mail-bw0-f206.google.com [209.85.218.206]) by mx1.freebsd.org (Postfix) with ESMTP id 74C6C8FC0A for ; Tue, 8 Sep 2009 00:49:14 +0000 (UTC) Received: by bwz2 with SMTP id 2so641087bwz.43 for ; Mon, 07 Sep 2009 17:49:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=YrN3ysDBCwpPefgOpmtAFpfp2RBxo2lKGSEUwL5mxYw=; b=XPHsj34kARb61xdFcePfZPdRvwj2ovGUPrYFSSRHG6+m1I9sO+aifOSQeeUaFg119i HzTrAPkrnuZstFKd/y5mYbVRqUvsOUUZV7KMw6welRLIA01sYlKEP5S7JjSV61+8WeTH ESfvBTMsDRkZ9dbWwq3jiKXtlA4fMh/LIwN1I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=amNrv+odg4PliGeUbkJECvg/qoSA8YtaIRYDPwJ3cDkCQLGVF07kf6fg+En4RqVB0N N+d1gJXZd/iXdCkfXBx6iTS5x4Caqr8S3DSIZv41hXb0fqAQV3mgE9XjVlcpAtALDhsE FHdc68Nr0lnISD0/NANo3mxqLz+Xg+b0YA4tY= Received: by 10.204.34.5 with SMTP id j5mr12690321bkd.5.1252370953405; Mon, 07 Sep 2009 17:49:13 -0700 (PDT) Received: from gumby.homeunix.com (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mx.google.com with ESMTPS id d13sm7948442fka.2.2009.09.07.17.49.10 (version=SSLv3 cipher=RC4-MD5); Mon, 07 Sep 2009 17:49:11 -0700 (PDT) Date: Tue, 8 Sep 2009 01:49:07 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20090908014907.271dd347@gumby.homeunix.com> In-Reply-To: References: <20090902160336.70d2a4c4@scorpio.seibercom.net> X-Mailer: Claws Mail 3.7.2 (GTK+ 2.16.5; i386-portbld-freebsd7.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Error compiling KDE 3 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: Tue, 08 Sep 2009 00:49:15 -0000 On Wed, 2 Sep 2009 20:08:26 -0500 Andrew Gould wrote: > On Wed, Sep 2, 2009 at 3:03 PM, Jerry wrote: > > cd /usr/ports/security/gnutls > > make deinstall && make reinstall && make distclean > > cd - > > make install > > > > -- > > Jerry > > gesbbb@yahoo.com > > > > The package list may have changed between version 2.6.4 and 2.8.3. I > would recommend replacing "make deinstall", above, with: > > pkg_delete gnutls-2.6.4 There's no significant difference between "make deinstall" and pkg_delete - the last time I checked there was only one port that didn't use the default "make deinstall" target, which calls "pkg_delete -f". Usually this kind of thing happens because files moved between ports, and the best thing is to remove all of the affected ports before upgrading. Normally there's an UPDATING entry advising this. The FORCE_PKG_REGISTER method is a bit of cludge, but I gather it also works for this kind of build problem. I guess it allows a repeat install when a package has lost files due to a transient conflict.