forked from tastytea/overlay
tastytea
43f97a4940
Package-Manager: Portage-2.3.69, Repoman-2.3.16 Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
69 lines
1.2 KiB
Bash
69 lines
1.2 KiB
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake-utils
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
inherit git-r3
|
|
fi
|
|
|
|
DESCRIPTION="Library to generate identicons."
|
|
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
|
|
IUSE="doc examples test"
|
|
|
|
RDEPEND="
|
|
media-gfx/imagemagick[png]
|
|
"
|
|
DEPEND="
|
|
dev-util/cmake
|
|
doc? ( app-doc/doxygen )
|
|
test? ( dev-cpp/catch )
|
|
${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
|
|
DOCS+=(example.cpp example.c)
|
|
fi
|
|
|
|
if use test; then
|
|
mycmakeargs+=(-DWITH_TESTS=YES)
|
|
fi
|
|
}
|
|
|
|
src_compile() {
|
|
cmake-utils_src_compile
|
|
|
|
if use doc; then
|
|
./build_doc.sh
|
|
fi
|
|
}
|