net-libs/cppzmq - 4.9.0 (gentoo)

Search

Package Information

Description:
High-level CPP Binding for ZeroMQ
Homepage:
https://github.com/zeromq/cppzmq
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
4.9.0 8 amd64 ~arm ~arm64 ~riscv x86 0
View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

DESCRIPTION="High-level CPP Binding for ZeroMQ"
HOMEPAGE="https://github.com/zeromq/cppzmq"
SRC_URI="https://github.com/zeromq/${PN}/archive/v${PV}.tar.gz ->  ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"

IUSE="test"
RESTRICT="!test? ( test )"

RDEPEND=">=net-libs/zeromq-4.3.1"
# Tests require cmake modules from catch2 and headers from older version of catch
DEPEND="${RDEPEND}
	test? ( =dev-cpp/catch-2* )"

PATCHES=(
	"${FILESDIR}/${P}-disable-static.patch"
)

src_configure() {
	local mycmakeargs=(
		-DCPPZMQ_CMAKECONFIG_INSTALL_DIR="/usr/$(get_libdir)/cmake/${PN}/"
		-DCPPZMQ_BUILD_TESTS="$(usex test)"
	)
	if has_version -d '>=net-libs/zeromq-4.3.1[drafts]'; then
		mycmakeargs+=( -DENABLE_DRAFTS=on )
	fi
	cmake_src_configure
}

USE Flags

Dependencies

DEPEND

>=net-libs/zeromq-4.3.1
	test? ( =dev-cpp/catch-2* )

RDEPEND

>=net-libs/zeromq-4.3.1

Manifest for 4.9.0

Type File Size Source URLs
DIST cppzmq-4.9.0.tar.gz 46936 bytes https://github.com/zeromq/cppzmq/archive/v4.9.0.tar.gz