From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4AECC1396D9 for ; Fri, 3 Nov 2017 02:11:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F227E0DC3; Fri, 3 Nov 2017 02:10:58 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5DD25E0DC3 for ; Fri, 3 Nov 2017 02:10:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0D284341746 for ; Fri, 3 Nov 2017 02:10:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 841C492FC for ; Fri, 3 Nov 2017 02:10:54 +0000 (UTC) From: "Maciej Mrozowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Mrozowski" Message-ID: <1509675044.2c5a02cd1cf4f6ccec3b0317b1d4b867f107448c.reavertm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/kadu/, net-im/kadu/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/kadu/files/kadu-4.3-do-not-force-ccache.patch net-im/kadu/kadu-4.3-r1.ebuild X-VCS-Directories: net-im/kadu/files/ net-im/kadu/ X-VCS-Committer: reavertm X-VCS-Committer-Name: Maciej Mrozowski X-VCS-Revision: 2c5a02cd1cf4f6ccec3b0317b1d4b867f107448c X-VCS-Branch: master Date: Fri, 3 Nov 2017 02:10:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a75e9cee-1da1-4241-b061-2ea10d87ba1d X-Archives-Hash: f619e17c7b1a85a698b96768971838a5 commit: 2c5a02cd1cf4f6ccec3b0317b1d4b867f107448c Author: Maciej Mrozowski gentoo org> AuthorDate: Fri Nov 3 02:10:25 2017 +0000 Commit: Maciej Mrozowski gentoo org> CommitDate: Fri Nov 3 02:10:44 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c5a02cd net-im/kadu: Update gtk icon cache, bug 630464. Remove custom handling of ccache, bug 622610. Package-Manager: Portage-2.3.8, Repoman-2.3.4 net-im/kadu/files/kadu-4.3-do-not-force-ccache.patch | 17 +++++++++++++++++ net-im/kadu/kadu-4.3-r1.ebuild | 10 +++++++++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/net-im/kadu/files/kadu-4.3-do-not-force-ccache.patch b/net-im/kadu/files/kadu-4.3-do-not-force-ccache.patch new file mode 100644 index 00000000000..2511f3c42b9 --- /dev/null +++ b/net-im/kadu/files/kadu-4.3-do-not-force-ccache.patch @@ -0,0 +1,17 @@ +diff -ruN kadu-4.3/CMakeLists.txt my/CMakeLists.txt +--- kadu-4.3/CMakeLists.txt 2017-01-24 22:36:21.000000000 +0100 ++++ my/CMakeLists.txt 2017-11-03 03:00:07.005162047 +0100 +@@ -75,13 +75,6 @@ + endif () + endif () + +-## CCache is cool stuff to improve compilation time +-find_program (CCACHE_FOUND ccache) +-if (CCACHE_FOUND) +- set_property (GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache) +- set_property (GLOBAL PROPERTY RULE_LAUNCH_LINK ccache) +-endif (CCACHE_FOUND) +- + # Look above, DEBUG_ENABLED is always enabled in Debug configuration. + # Enable it in all configurations when ENABLE_DEVELOPER_BUILD is on. + if (ENABLE_DEVELOPER_BUILD) diff --git a/net-im/kadu/kadu-4.3-r1.ebuild b/net-im/kadu/kadu-4.3-r1.ebuild index b3e45cf121e..a2dbc88c32f 100644 --- a/net-im/kadu/kadu-4.3-r1.ebuild +++ b/net-im/kadu/kadu-4.3-r1.ebuild @@ -3,7 +3,7 @@ EAPI="6" -inherit cmake-utils flag-o-matic +inherit cmake-utils flag-o-matic gnome2-utils MY_P="${P/_/-}" @@ -100,6 +100,10 @@ tabs word_fix ' +PATCHES=( + "${FILESDIR}/${PN}-4.3-do-not-force-ccache.patch" +) + src_configure() { # Filter out dangerous flags filter-flags -fno-rtti @@ -128,3 +132,7 @@ src_configure() { cmake-utils_src_configure } + +pkg_postinst() { + gnome2_icon_cache_update +}