mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Update done using: ``` git grep -l sys-libs/zlib dev-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Followed by manual revert in dev-python/zlib-ng where it accidentally caught sys-libs/zlib-ng dependencies. Signed-off-by: Michał Górny <mgorny@gentoo.org>
47 lines
988 B
Bash
47 lines
988 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake flag-o-matic
|
|
|
|
DESCRIPTION="RPC/Serialization system with capabilities support"
|
|
HOMEPAGE="https://capnproto.org"
|
|
SRC_URI="https://github.com/sandstorm-io/capnproto/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}"/${P}/c++
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
|
|
IUSE="+ssl test zlib"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
ssl? ( dev-libs/openssl:= )
|
|
zlib? ( virtual/zlib:= )
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
test? ( dev-cpp/gtest )
|
|
"
|
|
|
|
src_configure() {
|
|
append-atomic-flags
|
|
if [[ ${LIBS} == *atomic* ]] ; then
|
|
# append-libs won't work here, cmake doesn't respect it
|
|
# ... and ldflags gets missed once
|
|
append-flags -latomic
|
|
fi
|
|
|
|
local mycmakeargs=(
|
|
-DWITH_OPENSSL=$(usex ssl)
|
|
-DBUILD_TESTING=$(usex test)
|
|
$(cmake_use_find_package zlib ZLIB)
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
cmake_build check
|
|
}
|