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 F0B77138262 for ; Sat, 21 May 2016 09:32:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5EA3224048; Sat, 21 May 2016 09:32:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 29C97224048 for ; Sat, 21 May 2016 09:32:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 68505340C53 for ; Sat, 21 May 2016 09:32:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FC6A97B for ; Sat, 21 May 2016 09:32:41 +0000 (UTC) From: "Marius Brehler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marius Brehler" Message-ID: <1463823217.dc8f95ffd16366115a35d83b2c38326ed46a6d0b.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/clfft/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/clfft/clfft-2.12.0.ebuild sci-libs/clfft/clfft-9999.ebuild X-VCS-Directories: sci-libs/clfft/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: dc8f95ffd16366115a35d83b2c38326ed46a6d0b X-VCS-Branch: master Date: Sat, 21 May 2016 09:32:41 +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: 4f2675c9-d1cf-4d43-812b-d09a241c8df3 X-Archives-Hash: 25b11f9330655cf5243ff71e3014025f commit: dc8f95ffd16366115a35d83b2c38326ed46a6d0b Author: Marius Brehler linux sungazer de> AuthorDate: Sat May 21 09:33:37 2016 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Sat May 21 09:33:37 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=dc8f95ff sci-libs/clfft: Bump to EAPI=6 Package-Manager: portage-2.2.28 sci-libs/clfft/clfft-2.12.0.ebuild | 10 +++++----- sci-libs/clfft/clfft-9999.ebuild | 13 +++++++------ 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/sci-libs/clfft/clfft-2.12.0.ebuild b/sci-libs/clfft/clfft-2.12.0.ebuild index 1776ddd..aff0a7e 100644 --- a/sci-libs/clfft/clfft-2.12.0.ebuild +++ b/sci-libs/clfft/clfft-2.12.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit cmake-utils @@ -43,10 +43,10 @@ pkg_pretend() { src_configure() { local mycmakeargs=( - $(cmake-utils_use_build callback_client CALLBACK_CLIENT) - $(cmake-utils_use_build client CLIENT) - $(cmake-utils_use_build examples EXAMPLES) - $(cmake-utils_use_build test TEST) + -DBUILD_CALLBACK_CLIENT="$(usex callback_client)" + -DBUILD_CLIENT="$(usex client)" + -DBUILD_SAMPLE="$(usex examples)" + -DBUILD_TEST="$(usex test)" -DBoost_USE_STATIC_LIBS=OFF ) cmake-utils_src_configure diff --git a/sci-libs/clfft/clfft-9999.ebuild b/sci-libs/clfft/clfft-9999.ebuild index 6c0b74c..187abfb 100644 --- a/sci-libs/clfft/clfft-9999.ebuild +++ b/sci-libs/clfft/clfft-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit cmake-utils git-r3 @@ -47,10 +47,11 @@ pkg_pretend() { src_configure() { local mycmakeargs=( - $(cmake-utils_use_build callback_client CALLBACK_CLIENT) - $(cmake-utils_use_build client CLIENT) - $(cmake-utils_use_build examples EXAMPLES) - $(cmake-utils_use_build test TEST) + -DBUILD_CALLBACK_CLIENT="$(usex callback_client)" + -DBUILD_CLIENT="$(usex client)" + -DBUILD_SAMPLE="$(usex examples)" + -DBUILD_TEST="$(usex test)" + -DBoost_USE_STATIC_LIBS=OFF ) cmake-utils_src_configure }