From owner-svn-ports-all@FreeBSD.ORG Mon Oct 20 20:39:44 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E37385D3; Mon, 20 Oct 2014 20:39:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B547779C; Mon, 20 Oct 2014 20:39:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9KKdiZH088763; Mon, 20 Oct 2014 20:39:44 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9KKdiqR088761; Mon, 20 Oct 2014 20:39:44 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201410202039.s9KKdiqR088761@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Mon, 20 Oct 2014 20:39:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371302 - in head/deskutils/kdeplasma-addons: . files 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.18-1 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: Mon, 20 Oct 2014 20:39:45 -0000 Author: rakuco Date: Mon Oct 20 20:39:43 2014 New Revision: 371302 URL: https://svnweb.freebsd.org/changeset/ports/371302 QAT: https://qat.redports.org/buildarchive/r371302/ Log: Add upstream patch to fix the build with the IBUS option on. Explicitly #include to avoid this: /wrkdirs/usr/ports/deskutils/kdeplasma-addons/work/kdeplasma-addons-4.14.2/applets/kimpanel/backend/ibus/ibus15/panel.cpp:415:36: error: use of undeclared identifier 'LC_CTYPE' const char* locale = setlocale(LC_CTYPE, NULL); Added: head/deskutils/kdeplasma-addons/files/patch-applets__kimpanel__backend__ibus__ibus15__panel.cpp (contents, props changed) Modified: head/deskutils/kdeplasma-addons/Makefile Modified: head/deskutils/kdeplasma-addons/Makefile ============================================================================== --- head/deskutils/kdeplasma-addons/Makefile Mon Oct 20 20:36:39 2014 (r371301) +++ head/deskutils/kdeplasma-addons/Makefile Mon Oct 20 20:39:43 2014 (r371302) @@ -2,6 +2,7 @@ PORTNAME= kdeplasma-addons PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} Added: head/deskutils/kdeplasma-addons/files/patch-applets__kimpanel__backend__ibus__ibus15__panel.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/kdeplasma-addons/files/patch-applets__kimpanel__backend__ibus__ibus15__panel.cpp Mon Oct 20 20:39:43 2014 (r371302) @@ -0,0 +1,21 @@ +commit 3eef0383f98f8a5e99a07b5998ca035055a1db31 +Author: Raphael Kubo da Costa +Date: Mon Oct 20 23:28:06 2014 +0300 + + kimpanel: Include for LC_CTYPE. + + Required after 80e34a0cb61aafb925fe38fec5532fa0f28486e9 ("complete ibus + 1.5 port") -- at least on FreeBSD locale.h isn't included indirectly. + + CCMAIL: wengxt@gmail.com + +--- applets/kimpanel/backend/ibus/ibus15/panel.cpp ++++ applets/kimpanel/backend/ibus/ibus15/panel.cpp +@@ -19,6 +19,7 @@ + * along with this program. If not, see . + */ + ++#include + #include + #include + #include