diff options
author | Benda Xu <heroxbd@gentoo.org> | 2022-06-22 21:21:20 +0800 |
---|---|---|
committer | Benda Xu <heroxbd@gentoo.org> | 2022-06-22 21:21:49 +0800 |
commit | a5fff1b4aeb8187b266e75c00508c04694b33362 (patch) | |
tree | 160f980663be4ff4be14d56896e41d7af59f41a9 /dev-libs/rocr-runtime | |
parent | dev-libs/rocr-runtime: re-enable the cmake-install-dir.patch (diff) | |
download | gentoo-a5fff1b4aeb8187b266e75c00508c04694b33362.tar.gz gentoo-a5fff1b4aeb8187b266e75c00508c04694b33362.tar.bz2 gentoo-a5fff1b4aeb8187b266e75c00508c04694b33362.zip |
dev-libs/rocr-runtime: drop live ebuild.
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Benda Xu <heroxbd@gentoo.org>
Diffstat (limited to 'dev-libs/rocr-runtime')
-rw-r--r-- | dev-libs/rocr-runtime/rocr-runtime-9999.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-libs/rocr-runtime/rocr-runtime-9999.ebuild b/dev-libs/rocr-runtime/rocr-runtime-9999.ebuild deleted file mode 100644 index 38fc7decb01f..000000000000 --- a/dev-libs/rocr-runtime/rocr-runtime-9999.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/RadeonOpenCompute/ROCR-Runtime/" - inherit git-r3 - S="${WORKDIR}/${P}/src" -else - SRC_URI="https://github.com/RadeonOpenCompute/ROCR-Runtime/archive/rocm-${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/ROCR-Runtime-rocm-${PV}/src" - KEYWORDS="~amd64" -fi - -DESCRIPTION="Radeon Open Compute Runtime" -HOMEPAGE="https://github.com/RadeonOpenCompute/ROCR-Runtime" -PATCHES=( - "${FILESDIR}/${PN}-4.1.0-cmake-install-paths.patch" -) - -LICENSE="MIT" -SLOT="0/$(ver_cut 1-2)" -IUSE="debug" - -COMMON_DEPEND="sys-process/numactl - dev-libs/elfutils:= - >=sys-devel/llvm-roc-${PV}" -RDEPEND="${COMMON_DEPEND}" -DEPEND="${COMMON_DEPEND} - >=dev-libs/roct-thunk-interface-${PV} - >=dev-libs/rocm-device-libs-${PV}" -BDEPEND="app-editors/vim-core" - # vim-core is needed for "xxd" - -src_prepare() { - sed -e "s:get_version ( \"1.0.0\" ):get_version ( \"${PV}\" ):" -i CMakeLists.txt || die - - # ... otherwise system llvm/clang is used ... - sed -e "s:find_package(Clang REQUIRED HINTS \${CMAKE_INSTALL_PREFIX}/llvm \${CMAKE_PREFIX_PATH}/llvm PATHS /opt/rocm/llvm ):find_package(Clang REQUIRED HINTS /usr/lib/llvm/roc ):" -i image/blit_src/CMakeLists.txt || die - - # Gentoo installs "*.bc" to "/usr/lib" instead of a "[path]/bitcode" directory ... - sed -e "s:/opt/rocm/amdgcn/bitcode:/usr/lib/amdgcn/bitcode:" -i image/blit_src/CMakeLists.txt || die - - cmake_src_prepare -} - -src_configure() { - use debug || local mycmakeargs=(-DCMAKE_CXX_FLAGS='-DNDEBUG') - cmake_src_configure -} |