From owner-svn-ports-all@FreeBSD.ORG Fri Jul 5 17:45:44 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 35C2EC66; Fri, 5 Jul 2013 17:45:44 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0E6D5197A; Fri, 5 Jul 2013 17:45:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r65Hjh2j017714; Fri, 5 Jul 2013 17:45:43 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r65HjhHP017713; Fri, 5 Jul 2013 17:45:43 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201307051745.r65HjhHP017713@svn.freebsd.org> From: Raphael Kubo da Costa Date: Fri, 5 Jul 2013 17:45:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322343 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jul 2013 17:45:44 -0000 Author: rakuco Date: Fri Jul 5 17:45:43 2013 New Revision: 322343 URL: http://svnweb.freebsd.org/changeset/ports/322343 Log: Add some notes about rebuilding kdelibs4-dependent ports if using clang. As mentioned in r322300, clang support has been improved since the update to 4.10.4 a few days ago. This, however, requires a rebuild of the ports that depend on kdelibs4. Most of them are covered by the KDE update itself, but those which are not part of the Software Compilation need to be rebuilt manually to make sure the previous issues (proper symbol visibility being the most annoying of them) are solved. I haven't fully tested all the possible portmaster/portupgrade/pkg commands myself, so please shout out loud if they're not correct. In collaboration with: avilla@ Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Fri Jul 5 17:37:24 2013 (r322342) +++ head/UPDATING Fri Jul 5 17:45:43 2013 (r322343) @@ -5,6 +5,35 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20130705: + AFFECTS: users of x11/kdelibs4 + AUTHOR: kde@FreeBSD.org + + The KDE Software Compilation 4.10.4 was committed a few days ago, and + version 4.10.5 was committed today. + + They include better support for using clang as the compiler, but that + requires recompiling all KDE ports which depend on x11/kdelibs4. Most + ports which fall into this category are already part of the KDE Software + Compilation and have been updated to version 4.10.5, but those released + separately need to be rebuilt manually. + + If you are building your KDE ports with clang, doing the following is + recommended: + + # portmaster -r kdelibs-4\* + or + # portupgrade -fr x11/kdelibs4 + or + # pkg install -fR x11/kdelibs4 + + Alternatively, to avoid rebuilding the ports which are part of the 4.10.5 + update: + + # portmaster -x \*-4.10.5\* -r kdelibs-4\* + or + # portupgrade -x \*-4.10.5\* -fr x11/kdelibs4 + 20130703: AFFECTS: users of comms/trustedqsl and comms/tqsllib AUTHOR: db@FreeBSD.org