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 D2352138350 for ; Thu, 23 Apr 2020 00:32:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14369E0B30; Thu, 23 Apr 2020 00:32:15 +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 D2A26E0B30 for ; Thu, 23 Apr 2020 00:32:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 05B0D34F086 for ; Thu, 23 Apr 2020 00:32:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56FDA1DD for ; Thu, 23 Apr 2020 00:31:42 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1587601885.264285c9a5552d11f8e5ddb91a4d2c820d9faf81.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/clhpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/clhpp/clhpp-2.0.11-r1.ebuild X-VCS-Directories: dev-libs/clhpp/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 264285c9a5552d11f8e5ddb91a4d2c820d9faf81 X-VCS-Branch: master Date: Thu, 23 Apr 2020 00:31:42 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2e81ce0f-2da9-4b42-a748-3b8c107987cc X-Archives-Hash: ce584c632da3be532d15a5a4de2e0759 commit: 264285c9a5552d11f8e5ddb91a4d2c820d9faf81 Author: Marek Szuba gentoo org> AuthorDate: Thu Apr 23 00:25:25 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Apr 23 00:31:25 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=264285c9 dev-libs/clhpp: fix installation directory Upstream now handles the global prefix correctly so there is no need to set it to $EPREFIX/usr/include; simply $EPREFIX/usr - i.e. the Gentoo default will do. Closes: https://bugs.gentoo.org/716392 Signed-off-by: Marek Szuba gentoo.org> dev-libs/clhpp/clhpp-2.0.11-r1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-libs/clhpp/clhpp-2.0.11-r1.ebuild b/dev-libs/clhpp/clhpp-2.0.11-r1.ebuild new file mode 100644 index 00000000000..2325c35bccc --- /dev/null +++ b/dev-libs/clhpp/clhpp-2.0.11-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Khronos OpenCL C++ bindings" +HOMEPAGE="https://github.com/KhronosGroup/OpenCL-CLHPP/" +SRC_URI="https://github.com/KhronosGroup/OpenCL-CLHPP/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Khronos-CLHPP" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="virtual/opencl" +RDEPEND="${DEPEND}" + +S="${WORKDIR}"/OpenCL-CLHPP-${PV} + +src_configure() { + local mycmakeargs=( + -DBUILD_DOCS=OFF + -DBUILD_EXAMPLES=OFF + -DBUILD_TESTS=OFF + ) + cmake_src_configure +}