Install this version:
emerge -a =dev-cpp/redox-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-cpp/redox-9999
Or alternatively:
emerge --autounmask-write -a =dev-cpp/redox-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3 cmake
MY_P="${PN}-${PV}"
DESCRIPTION="Modern, asynchronous, and wicked fast C++11 client for Redis"
HOMEPAGE="https://github.com/mpoquet/redox"
EGIT_REPO_URI="https://github.com/mpoquet/redox.git"
EGIT_BRANCH="install-pkg-config-file"
S="${WORKDIR}/${MY_P}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-libs/hiredis
dev-libs/libev
"
#DEPEND="${RDEPEND}"
BDEPEND="
dev-build/cmake
"
PATCHES=(
"${FILESDIR}"/${PN}-rm_suffix.patch
)
src_prepare() {
cmake_src_prepare
}
src_configure() {
cmake_src_configure
}
src_install() {
cmake_src_install
}
dev-libs/hiredis dev-libs/libev
dev-build/cmake