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 F06001381F3 for ; Tue, 14 May 2013 12:26:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AC83E088A; Tue, 14 May 2013 12:26:33 +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 1073EE088A for ; Tue, 14 May 2013 12:26:32 +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 1067133DFF7 for ; Tue, 14 May 2013 12:26:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 723FCE5308 for ; Tue, 14 May 2013 12:26:29 +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: <1368534090.7ad303a4150859229b469919d478a36b02d835a9.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde4-meta.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 7ad303a4150859229b469919d478a36b02d835a9 X-VCS-Branch: master Date: Tue, 14 May 2013 12:26:29 +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: 45c856f7-76ee-4245-b9e3-df8b0f2c6f27 X-Archives-Hash: 450f756e721ef7c053e9529944057c12 commit: 7ad303a4150859229b469919d478a36b02d835a9 Author: Michael Palimaka gentoo org> AuthorDate: Tue May 14 12:21:30 2013 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue May 14 12:21:30 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=7ad303a4 [eclass] Remove kdewebdev configuration code as this is now handled on a per-package basis. --- eclass/kde4-meta.eclass | 14 -------------- 1 files changed, 0 insertions(+), 14 deletions(-) diff --git a/eclass/kde4-meta.eclass b/eclass/kde4-meta.eclass index 465adb7..54e0583 100644 --- a/eclass/kde4-meta.eclass +++ b/eclass/kde4-meta.eclass @@ -559,20 +559,6 @@ kde4-meta_change_cmakelists() { kde4-meta_src_configure() { debug-print-function ${FUNCNAME} "$@" - # Set some cmake default values here (usually workarounds for automagic deps) - case ${KMNAME} in - kdewebdev) - mycmakeargs=( - -DWITH_KdepimLibs=OFF - -DWITH_LibXml2=OFF - -DWITH_LibXslt=OFF - -DWITH_Boost=OFF - -DWITH_LibTidy=OFF - "${mycmakeargs[@]}" - ) - ;; - esac - kde4-base_src_configure }