2019-02-28 19:36:42 +01:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
2018-12-27 00:26:52 +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
|
|
|
|
|
|
|
|
DESCRIPTION="Simple libravatar server."
|
|
|
|
HOMEPAGE="https://schlomp.space/tastytea/libravatarserv"
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
|
|
EGIT_REPO_URI="https://schlomp.space/tastytea/libravatarserv.git"
|
|
|
|
else
|
|
|
|
SRC_URI="https://schlomp.space/tastytea/libravatarserv/archive/${PV}.tar.gz
|
|
|
|
-> ${P}.tar.gz"
|
|
|
|
fi
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
|
|
KEYWORDS=""
|
|
|
|
else
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
fi
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
dev-libs/crypto++
|
|
|
|
media-gfx/imagemagick
|
|
|
|
dev-libs/libxdg-basedir
|
2018-12-27 20:01:37 +01:00
|
|
|
dev-cpp/identiconpp
|
2018-12-27 00:26:52 +01:00
|
|
|
"
|
|
|
|
DEPEND="
|
|
|
|
dev-util/cmake
|
|
|
|
${RDEPEND}
|
|
|
|
"
|
|
|
|
|
|
|
|
DOCS="README.md doc/nginx-example.conf"
|
|
|
|
|
|
|
|
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 "Build script modification failed"
|
|
|
|
}
|