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 3D4571392EF for ; Mon, 14 Jul 2014 12:54:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0316E088C; Mon, 14 Jul 2014 12:54:27 +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 4B9D8E088C for ; Mon, 14 Jul 2014 12:54:27 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7269733FCB2 for ; Mon, 14 Jul 2014 12:54:26 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2102) id 1EC532004F; Mon, 14 Jul 2014 12:54:25 +0000 (UTC) From: "Alfredo Tupone (tupone)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, tupone@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in games-arcade/performous/files: performous-0.7.0-freetype.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: performous-0.7.0-freetype.patch X-VCS-Directories: games-arcade/performous/files X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140714125425.1EC532004F@flycatcher.gentoo.org> Date: Mon, 14 Jul 2014 12:54:25 +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: 826c0dea-1cb4-4938-a448-f9a29c12b4e8 X-Archives-Hash: c0b0f14cbc0c0c27aa24ab58d1c58cb8 tupone 14/07/14 12:54:25 Added: performous-0.7.0-freetype.patch Log: freetype is not directly needed. Fix bug #515768 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit) Revision Changes Path 1.1 games-arcade/performous/files/performous-0.7.0-freetype.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/performous/files/performous-0.7.0-freetype.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/performous/files/performous-0.7.0-freetype.patch?rev=1.1&content-type=text/plain Index: performous-0.7.0-freetype.patch =================================================================== --- cmake/Modules/FindCairo.cmake.old 2014-07-14 14:46:07.262806432 +0200 +++ cmake/Modules/FindCairo.cmake 2014-07-14 14:46:45.890461688 +0200 @@ -8,7 +8,6 @@ include(LibFindMacros) # Dependencies -libfind_package(Cairo Freetype) # Use pkg-config to get hints about paths libfind_pkg_check_modules(Cairo_PKGCONF cairo) @@ -28,7 +27,7 @@ # Set the include dir variables and the libraries and let libfind_process do the rest. # NOTE: Singular variables for this library, plural for libraries this this lib depends on. -set(Cairo_PROCESS_INCLUDES Cairo_INCLUDE_DIR Freetype_INCLUDE_DIRS) -set(Cairo_PROCESS_LIBS Cairo_LIBRARY Freetype_LIBRARIES) +set(Cairo_PROCESS_INCLUDES Cairo_INCLUDE_DIR) +set(Cairo_PROCESS_LIBS Cairo_LIBRARY) libfind_process(Cairo) --- cmake/Modules/FindPango.cmake.old 2014-07-14 14:46:13.754748551 +0200 +++ cmake/Modules/FindPango.cmake 2014-07-14 14:47:06.270279853 +0200 @@ -8,7 +8,6 @@ include(LibFindMacros) # Dependencies -libfind_package(Pango Freetype) libfind_package(Pango Glib) libfind_package(Pango GObject) @@ -30,7 +29,7 @@ # Set the include dir variables and the libraries and let libfind_process do the rest. # NOTE: Singular variables for this library, plural for libraries this this lib depends on. -set(Pango_PROCESS_INCLUDES Pango_INCLUDE_DIR Freetype_INCLUDE_DIRS Glib_INCLUDE_DIRS) -set(Pango_PROCESS_LIBS Pango_LIBRARY Freetype_LIBRARIES Glib_LIBRARIES GObject_LIBRARIES) +set(Pango_PROCESS_INCLUDES Pango_INCLUDE_DIR Glib_INCLUDE_DIRS) +set(Pango_PROCESS_LIBS Pango_LIBRARY Glib_LIBRARIES GObject_LIBRARIES) libfind_process(Pango)