summaryrefslogtreecommitdiff
blob: e854d07537d542169848f3ed1bdafe683077ba5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit cmake-multilib

DESCRIPTION="JThread provides some classes to make use of threads easy on different platforms"
HOMEPAGE="http://research.edm.uhasselt.be/jori/page/CS/Jthread.html"
SRC_URI="http://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-utils_src_prepare
}