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 A3C041384B4 for ; Sun, 29 Nov 2015 16:24:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1CA221C08E; Sun, 29 Nov 2015 16:24:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0A7CC21C08E for ; Sun, 29 Nov 2015 16:24:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9353D33E5E4 for ; Sun, 29 Nov 2015 16:24:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19E9FA0E for ; Sun, 29 Nov 2015 16:24:49 +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: <1448814274.e8aa90c2301d7300e27c536ed33c12851b615f32.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kdbg/files/, dev-util/kdbg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kdbg/files/kdbg-2.5.5-cmake34.patch dev-util/kdbg/kdbg-2.5.5.ebuild X-VCS-Directories: dev-util/kdbg/ dev-util/kdbg/files/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: e8aa90c2301d7300e27c536ed33c12851b615f32 X-VCS-Branch: master Date: Sun, 29 Nov 2015 16:24:49 +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: dad9814c-dbfa-499c-92bd-24b8ac0e100c X-Archives-Hash: f4b484b47045cce117a9e49f46c712bc commit: e8aa90c2301d7300e27c536ed33c12851b615f32 Author: Michael Palimaka gentoo org> AuthorDate: Sun Nov 29 16:23:56 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Nov 29 16:24:34 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8aa90c2 dev-util/kdbg: add patch to fix build failure with >=dev-util/cmake-3.4.0 Gentoo-bug: 567090 Package-Manager: portage-2.2.26 dev-util/kdbg/files/kdbg-2.5.5-cmake34.patch | 14 ++++++++++++++ dev-util/kdbg/kdbg-2.5.5.ebuild | 1 + 2 files changed, 15 insertions(+) diff --git a/dev-util/kdbg/files/kdbg-2.5.5-cmake34.patch b/dev-util/kdbg/files/kdbg-2.5.5-cmake34.patch new file mode 100644 index 0000000..e5f71a0 --- /dev/null +++ b/dev-util/kdbg/files/kdbg-2.5.5-cmake34.patch @@ -0,0 +1,14 @@ +Fixes build with cmake-3.4. + +Gentoo-bug: 567090 + +--- kdbg/CMakeLists.txt ++++ kdbg/CMakeLists.txt +@@ -4,6 +4,7 @@ + + include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) + include(CheckFunctionExists) ++include(CheckIncludeFiles) + + CHECK_INCLUDE_FILES(pty.h HAVE_PTY_H) + CHECK_INCLUDE_FILES(libutil.h HAVE_LIBUTIL_H) diff --git a/dev-util/kdbg/kdbg-2.5.5.ebuild b/dev-util/kdbg/kdbg-2.5.5.ebuild index 3600f61..637d10d 100644 --- a/dev-util/kdbg/kdbg-2.5.5.ebuild +++ b/dev-util/kdbg/kdbg-2.5.5.ebuild @@ -20,6 +20,7 @@ IUSE="debug" RDEPEND="sys-devel/gdb" DEPEND="${RDEPEND}" +PATCHES=( "${FILESDIR}/${P}-cmake34.patch" ) DOCS=( BUGS README ReleaseNotes-${PV} TODO ) src_prepare() {