mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 03:53:22 -04:00
Closes: https://bugs.gentoo.org/847337 Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
40 lines
814 B
Bash
40 lines
814 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
COMMIT="902f5e3cbba66833bbf2d219c183d4705b3582c7"
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION='Fast distributed sorting routines using MPI and OpenMP'
|
|
HOMEPAGE="https://github.com/hsundar/usort"
|
|
SRC_URI="https://github.com/hsundar/${PN}/archive/${COMMIT}.tar.gz -> ${PF}.tar.gz"
|
|
S="${WORKDIR}/${PN}-${COMMIT}"
|
|
|
|
KEYWORDS="~amd64"
|
|
LICENSE='MIT'
|
|
IUSE=""
|
|
SLOT="0"
|
|
|
|
DEPEND="virtual/mpi"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="app-text/dos2unix"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-cmake.patch"
|
|
"${FILESDIR}/${P}-rename-THRESHOLD.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
dos2unix CMakeLists.txt || die
|
|
dos2unix include/seqUtils.h || die
|
|
dos2unix include/seqUtils.tcc || die
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
dodoc README.md
|
|
}
|