You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
722 B
28 lines
722 B
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
CMAKE_ECLASS=cmake
|
|
inherit cmake-multilib
|
|
|
|
DESCRIPTION="JThread provides some classes to make use of threads easy on different platforms"
|
|
HOMEPAGE="https://research.edm.uhasselt.be/jori/page/CS/Jthread.html"
|
|
SRC_URI="https://research.edm.uhasselt.be/jori/${PN}/${P}.tar.bz2"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
IUSE="static-libs"
|
|
|
|
DOCS=( ChangeLog README.md doc/manual.tex )
|
|
|
|
src_prepare() {
|
|
# do not build static library, if it is not requested
|
|
if ! use static-libs; then
|
|
sed -i -e '/jthread-static/d' src/CMakeLists.txt || die 'sed on src/CMakeLists.txt failed'
|
|
fi
|
|
cmake_src_prepare
|
|
}
|