Install this version:
emerge -a =dev-cpp/identiconpp-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-cpp/identiconpp-9999
Or alternatively:
emerge --autounmask-write -a =dev-cpp/identiconpp-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
fi
DESCRIPTION="Library to generate identicons for C++."
HOMEPAGE="https://schlomp.space/tastytea/identiconpp"
if [[ "${PV}" == "9999" ]]; then
EGIT_REPO_URI="https://schlomp.space/tastytea/identiconpp.git"
else
SRC_URI="https://schlomp.space/tastytea/identiconpp/archive/${PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}/${PN}"
KEYWORDS="~amd64"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE="doc examples test"
RESTRICT="!test? ( test )"
RDEPEND="
media-gfx/imagemagick[png,cxx]
"
DEPEND="
dev-build/cmake
doc? ( app-text/doxygen )
test? ( dev-cpp/catch )
${RDEPEND}
"
src_prepare() {
if use doc; then
HTML_DOCS="doc/html/*"
fi
if use examples; then
DOCS+=(examples/example.cpp)
fi
if use test; then
mycmakeargs+=(-DWITH_TESTS=YES)
fi
cmake_src_prepare
}
src_compile() {
cmake_src_compile
if use doc; then
./build_doc.sh
fi
}
src_test() {
BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test
}
Manage flags for this package:
euse -i <flag> -p dev-cpp/identiconpp |
euse -E <flag> -p dev-cpp/identiconpp |
euse -D <flag> -p dev-cpp/identiconpp
dev-build/cmake doc? ( app-text/doxygen ) test? ( dev-cpp/catch ) media-gfx/imagemagick[png,cxx]
media-gfx/imagemagick[png,cxx]