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 3CF8D138334 for ; Fri, 12 Oct 2018 19:48:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 895EBE086D; Fri, 12 Oct 2018 19:48:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 59637E086D for ; Fri, 12 Oct 2018 19:47:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 BC4B8335C5A for ; Fri, 12 Oct 2018 19:47:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D739D3F6 for ; Fri, 12 Oct 2018 19:47:55 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1539373669.7de06dc659e12cd2cbb1269fcd44c2882e72354b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/efl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/efl/efl-1.21.1.ebuild X-VCS-Directories: dev-libs/efl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7de06dc659e12cd2cbb1269fcd44c2882e72354b X-VCS-Branch: master Date: Fri, 12 Oct 2018 19:47:55 +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: f655260a-2a08-4819-868b-e400df9f55f8 X-Archives-Hash: b03f58ddda2772461179cbad88b8c044 commit: 7de06dc659e12cd2cbb1269fcd44c2882e72354b Author: Joonas Niilola gmail com> AuthorDate: Fri Oct 12 06:09:20 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Oct 12 19:47:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7de06dc6 dev-libs/efl: fix build issue with 'xpresent' USE enabled for 1.21.1 Closes: https://bugs.gentoo.org/668354 Signed-off-by: Joonas Niilola gmail.com> Package-Manager: Portage[mgorny]-2.3.49.1 Signed-off-by: Michał Górny gentoo.org> dev-libs/efl/efl-1.21.1.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-libs/efl/efl-1.21.1.ebuild b/dev-libs/efl/efl-1.21.1.ebuild index d020ef97f29..c627b1a33b8 100644 --- a/dev-libs/efl/efl-1.21.1.ebuild +++ b/dev-libs/efl/efl-1.21.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -30,6 +30,7 @@ REQUIRED_USE=" vnc? ( X fbcon ) wayland? ( egl gles !opengl ) xim? ( X ) + xpresent? ( X ) " RDEPEND=" @@ -123,11 +124,11 @@ RDEPEND=" x11-libs/libX11 x11-libs/libXrender virtual/opengl - xpresent? ( x11-libs/libXpresent ) ) ) xine? ( media-libs/xine-lib ) xpm? ( x11-libs/libXpm ) + xpresent? ( x11-libs/libXpresent ) " DEPEND=" @@ -215,6 +216,7 @@ src_configure() { $(use_enable xim) $(use_enable xine) $(use_enable xpm image-loader-xpm) + $(use_enable xpresent) --with-crypto=$(usex gnutls gnutls $(usex ssl openssl none)) --with-glib=$(usex glib) @@ -227,7 +229,6 @@ src_configure() { ) use drm && use wayland && myconf+=( --enable-gl-drm ) - use X && use xpresent && myconf+=( --enable-xpresent ) if use opengl ; then myconf+=( --with-opengl=full )