diff options
author | Julien Roy <julien@jroy.ca> | 2022-03-07 22:20:21 -0500 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2022-03-07 22:20:21 -0500 |
commit | 4865f2f08d67cdb76bf12dd39b2c8f0581b68ddc (patch) | |
tree | 8c33748225589dbe02819a5081f01271412b9b3e /dev-libs/rocr-runtime/rocr-runtime-4.5.0.ebuild | |
parent | 86527ffe988b2e4e0d3697d609a94336a88e3105 (diff) | |
download | MrRoy-Overlay-4865f2f08d67cdb76bf12dd39b2c8f0581b68ddc.tar.gz MrRoy-Overlay-4865f2f08d67cdb76bf12dd39b2c8f0581b68ddc.tar.bz2 MrRoy-Overlay-4865f2f08d67cdb76bf12dd39b2c8f0581b68ddc.zip |
Removed abandoned ebuilds
Diffstat (limited to 'dev-libs/rocr-runtime/rocr-runtime-4.5.0.ebuild')
-rw-r--r-- | dev-libs/rocr-runtime/rocr-runtime-4.5.0.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-libs/rocr-runtime/rocr-runtime-4.5.0.ebuild b/dev-libs/rocr-runtime/rocr-runtime-4.5.0.ebuild deleted file mode 100644 index bb6dbf9..0000000 --- a/dev-libs/rocr-runtime/rocr-runtime-4.5.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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)" - -COMMON_DEPEND="sys-process/numactl - dev-libs/elfutils:=" -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() { - # ... 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 ${EPREFIX}/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:${EPREFIX}/usr/lib/amdgcn/bitcode:" -i image/blit_src/CMakeLists.txt || die - - cmake_src_prepare -} |