summaryrefslogtreecommitdiff
blob: 3a87fe43a08472cc2ce3c4468ae630811c656411 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit toolchain-funcs

MY_PN="ck"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="A library with concurrency related algorithms and data structures in C"
HOMEPAGE="http://concurrencykit.org"
SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"

LICENSE="Apache-2.0 BSD-2"
SLOT="0"
KEYWORDS="amd64 ~x86"

# The 'libck.so' has a name collision.
# See #616762 for more information.
RDEPEND="!sys-cluster/charm"

PATCHES=(
	"${FILESDIR}/${P}-ar.patch"
	"${FILESDIR}/${P}-glibc-2.30.patch"
	"${FILESDIR}/${P}-gzip.patch"
	"${FILESDIR}/${P}-static-libs.patch"
)

src_configure() {
	tc-export AR CC LD
	export PROFILE="x86$(usex amd64 '_64' '')"

	local myeconfargs=(
		"--disable-static"
	)

	GZIP="" $(usex x86 'PROFILE=x86' '') econf ${myeconfargs[@]}
}