From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 07C94138010 for ; Wed, 27 Mar 2013 17:12:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92EFDE0776; Wed, 27 Mar 2013 17:12:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DA68E0776 for ; Wed, 27 Mar 2013 17:12:53 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 43F3A33DBDC for ; Wed, 27 Mar 2013 17:12:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D3A17E4073 for ; Wed, 27 Mar 2013 17:12:50 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1364404306.0232c5a0654a17f9693d9c27fb4592081563f395.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde4-base.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 0232c5a0654a17f9693d9c27fb4592081563f395 X-VCS-Branch: master Date: Wed, 27 Mar 2013 17:12:50 +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: a8a3e5e2-36fc-4d31-80c8-9918650b3f05 X-Archives-Hash: 21b65053ccffa6418781093f703ec2e1 commit: 0232c5a0654a17f9693d9c27fb4592081563f395 Author: Michael Palimaka gentoo org> AuthorDate: Wed Mar 27 17:11:46 2013 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Mar 27 17:11:46 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0232c5a0 [eclass] Work around upstream by always pulling in certain dependencies for kde-workspace. --- eclass/kde4-base.eclass | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index 3d76ac3..0eba2aa 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -376,6 +376,28 @@ case ${KDE_SELINUX_MODULE} in ;; esac +# These dependencies are added as they are unconditionally required by kde-workspace. +# They are not necessarily required by individual applications but are pulled in to prevent +# bugs like bug #444438. This list is subject to change in the future so do not rely on it +# in ebuilds - always set correct dependencies. +case ${KMNAME} in + kde-workspace) + kdedepend+=" + x11-libs/xcb-util + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXfixes + x11-libs/libxkbfile + x11-libs/libXrandr + x11-libs/libXrender + " + ;; + *) + ;; +esac + # We always need the aqua useflag because otherwise we cannot = refer to it inside # add_kdebase_dep. This was always kind of a bug, but came to light with EAPI=5 # (where referring to a use flag not in IUSE masks the ebuild).