2019-01-02 07:05:58 +01:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
2018-12-26 18:56:32 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
|
|
|
inherit cmake-utils
|
|
|
|
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
|
|
inherit git-r3
|
|
|
|
fi
|
|
|
|
|
2018-12-27 07:18:48 +01:00
|
|
|
DESCRIPTION="Library to generate identicons in C++."
|
2018-12-26 18:56:32 +01:00
|
|
|
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"
|
|
|
|
fi
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
|
|
KEYWORDS=""
|
|
|
|
else
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
fi
|
2019-01-02 07:05:58 +01:00
|
|
|
IUSE="debug doc examples test"
|
2018-12-26 18:56:32 +01:00
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
media-gfx/imagemagick[png]
|
|
|
|
"
|
|
|
|
DEPEND="
|
|
|
|
dev-util/cmake
|
|
|
|
doc? ( app-doc/doxygen )
|
2019-01-02 07:05:58 +01:00
|
|
|
test? ( dev-cpp/catch )
|
2018-12-26 18:56:32 +01:00
|
|
|
${RDEPEND}
|
|
|
|
"
|
|
|
|
|
|
|
|
if [[ "${PV}" != "9999" ]]; then
|
|
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
cmake-utils_src_prepare
|
|
|
|
|
|
|
|
sed -i "s|\${CMAKE_INSTALL_DOCDIR}|\${CMAKE_INSTALL_DATAROOTDIR}/doc/${P}|" \
|
|
|
|
CMakeLists.txt || die "Modification of CMAKE_INSTALL_DOCDIR failed."
|
|
|
|
|
|
|
|
if use doc; then
|
|
|
|
HTML_DOCS="doc/html/*"
|
|
|
|
fi
|
|
|
|
if use examples; then
|
2019-01-04 19:46:58 +01:00
|
|
|
DOCS+=(example.cpp example.c)
|
2018-12-26 18:56:32 +01:00
|
|
|
fi
|
2019-01-02 07:05:58 +01:00
|
|
|
|
|
|
|
if use test; then
|
|
|
|
mycmakeargs+=(-DWITH_TESTS=YES)
|
|
|
|
fi
|
2018-12-26 18:56:32 +01:00
|
|
|
}
|
|
|
|
|
2018-12-27 21:00:41 +01:00
|
|
|
src_compile() {
|
2018-12-27 20:48:47 +01:00
|
|
|
if use debug; then
|
2018-12-27 21:00:41 +01:00
|
|
|
cmake-utils_src_compile DEBUG=1
|
|
|
|
else
|
2018-12-27 21:09:04 +01:00
|
|
|
cmake-utils_src_compile
|
2018-12-27 20:48:47 +01:00
|
|
|
fi
|
|
|
|
|
2018-12-26 18:56:32 +01:00
|
|
|
if use doc; then
|
|
|
|
./build_doc.sh
|
|
|
|
fi
|
|
|
|
}
|