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 EB1D8139695 for ; Fri, 3 Mar 2017 22:51:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21C7FE0C26; Fri, 3 Mar 2017 22:51:07 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E643FE0C27 for ; Fri, 3 Mar 2017 22:51:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 995C1341755 for ; Fri, 3 Mar 2017 22:51:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26D8F5B6E for ; Fri, 3 Mar 2017 22:51:04 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1488581455.3b4f527614cd87d33e808943716e582957f67735.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vulkan-loader/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vulkan-loader/vulkan-loader-9999.ebuild X-VCS-Directories: media-libs/vulkan-loader/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 3b4f527614cd87d33e808943716e582957f67735 X-VCS-Branch: master Date: Fri, 3 Mar 2017 22:51:04 +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: cd9138ef-45fd-48d6-8d83-3de091ce63ff X-Archives-Hash: 5834ac63500d45a503e8765c14684b1d commit: 3b4f527614cd87d33e808943716e582957f67735 Author: Matt Turner gentoo org> AuthorDate: Fri Mar 3 22:48:05 2017 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Mar 3 22:50:55 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b4f5276 media-libs/vulkan-loader: Install things properly. We were not installing vulkan.hpp. We were (uselessly) installing LICENSE. And by manually installing the library, we were breaking things with clang -flto=thin (see $Bug). Bug: https://bugs.gentoo.org/600070 media-libs/vulkan-loader/vulkan-loader-9999.ebuild | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/media-libs/vulkan-loader/vulkan-loader-9999.ebuild b/media-libs/vulkan-loader/vulkan-loader-9999.ebuild index dacb3ce4844..4ab7f86d549 100644 --- a/media-libs/vulkan-loader/vulkan-loader-9999.ebuild +++ b/media-libs/vulkan-loader/vulkan-loader-9999.ebuild @@ -27,8 +27,6 @@ DEPEND="${PYTHON_DEPS} wayland? ( dev-libs/wayland:=[${MULTILIB_USEDEP}] ) X? ( x11-libs/libX11:=[${MULTILIB_USEDEP}] )" -DOCS=( README.md LICENSE.txt ) - multilib_src_configure() { local mycmakeargs=( -DCMAKE_SKIP_RPATH=True @@ -48,13 +46,5 @@ multilib_src_configure() { multilib_src_install() { keepdir /etc/vulkan/icd.d - cd "${BUILD_DIR}/loader" || die - dolib libvulkan.so.1.* - dosym libvulkan.so.1.* /usr/$(get_libdir)/libvulkan.so.1 - dosym libvulkan.so.1.* /usr/$(get_libdir)/libvulkan.so - - cd "${S}" || die - insinto /usr/include/vulkan - doins include/vulkan/*.h - einstalldocs + default }