| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.13.0 | 8 | ~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86 | 0/4 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="RabbitMQ C client"
HOMEPAGE="https://github.com/alanxz/rabbitmq-c"
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/alanxz/${PN}.git"
else
SRC_URI="https://github.com/alanxz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86"
fi
LICENSE="MIT"
SLOT="0/4"
IUSE="doc test +ssl static-libs tools"
REQUIRED_USE="test? ( static-libs )"
RESTRICT="!test? ( test )"
RDEPEND="ssl? ( dev-libs/openssl:0= )
tools? ( dev-libs/popt )"
DEPEND="${RDEPEND}"
BDEPEND="doc? ( app-text/doxygen )
tools? ( app-text/xmlto )"
PATCHES=(
"${FILESDIR}"/${P}-read-credentials-from-file.patch
)
src_configure() {
local mycmakeargs=(
-DBUILD_API_DOCS=$(usex doc)
-DBUILD_STATIC_LIBS=$(usex static-libs)
-DBUILD_TESTING=$(usex test)
-DBUILD_TOOLS=$(usex tools)
-DBUILD_TOOLS_DOCS=$(usex tools)
-DENABLE_SSL_SUPPORT=$(usex ssl)
)
cmake_src_configure
}
src_test() {
pushd "${BUILD_DIR}" > /dev/null || die
# Skip "basic" test which requires running local rabbitmq-server instance,
# see https://github.com/alanxz/rabbitmq-c/issues/530
ctest -v -E basic || die
}
ssl? ( dev-libs/openssl:0= ) tools? ( dev-libs/popt )
ssl? ( dev-libs/openssl:0= ) tools? ( dev-libs/popt )
doc? ( app-text/doxygen ) tools? ( app-text/xmlto )
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | rabbitmq-c-0.13.0.tar.gz | 126670 bytes | https://github.com/alanxz/rabbitmq-c/archive/v0.13.0.tar.gz |