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 785141384B4 for ; Thu, 5 Nov 2015 15:51:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18C3FE086B; Thu, 5 Nov 2015 15:51:36 +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 BC8FAE086B for ; Thu, 5 Nov 2015 15:51:35 +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 791E23405BB for ; Thu, 5 Nov 2015 15:51:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36F6120FB for ; Thu, 5 Nov 2015 15:51:26 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1446738680.7b54aee07fb6c0910e0bc5eae51aab415eccf604.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/frei0r-plugins/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/frei0r-plugins/frei0r-plugins-1.4.ebuild X-VCS-Directories: media-plugins/frei0r-plugins/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 7b54aee07fb6c0910e0bc5eae51aab415eccf604 X-VCS-Branch: master Date: Thu, 5 Nov 2015 15:51:26 +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: d53e64e3-cb41-471f-85a1-a4e483b04cf3 X-Archives-Hash: daac917acc43bfc9d66f5aeda464f2f3 commit: 7b54aee07fb6c0910e0bc5eae51aab415eccf604 Author: Alexis Ballier gentoo org> AuthorDate: Thu Nov 5 15:51:15 2015 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Thu Nov 5 15:51:20 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b54aee0 media-plugins/frei0r-plugins: fix swapped useflag. bug #563826 by Anton Gubarkov. Package-Manager: portage-2.2.24 Signed-off-by: Alexis Ballier gentoo.org> media-plugins/frei0r-plugins/frei0r-plugins-1.4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-plugins/frei0r-plugins/frei0r-plugins-1.4.ebuild b/media-plugins/frei0r-plugins/frei0r-plugins-1.4.ebuild index c81d166..1ed8d39 100644 --- a/media-plugins/frei0r-plugins/frei0r-plugins-1.4.ebuild +++ b/media-plugins/frei0r-plugins/frei0r-plugins-1.4.ebuild @@ -39,8 +39,8 @@ src_prepare() { src_configure() { local mycmakeargs=( - $(cmake-utils_use "!facedetect" "WITHOUT_GAVL" ) - $(cmake-utils_use "!scale0tilt" "WITHOUT_OPENCV") + $(cmake-utils_use "!facedetect" "WITHOUT_OPENCV" ) + $(cmake-utils_use "!scale0tilt" "WITHOUT_GAVL" ) ) cmake-utils_src_configure }