2022-06-25 16:23:15 +02:00
|
|
|
# Copyright 2018-2022 Gentoo Authors
|
2018-11-25 07:48:26 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2022-06-25 16:23:15 +02:00
|
|
|
EAPI=8
|
2018-11-25 07:48:26 +01:00
|
|
|
|
2020-10-24 12:24:17 +02:00
|
|
|
inherit cmake
|
2018-11-25 07:48:26 +01:00
|
|
|
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
|
|
inherit git-r3
|
|
|
|
fi
|
|
|
|
|
2020-10-24 12:24:17 +02:00
|
|
|
DESCRIPTION="Simple libravatar server"
|
2018-11-25 07:48:26 +01:00
|
|
|
HOMEPAGE="https://schlomp.space/tastytea/libravatarserv"
|
2022-06-25 16:23:15 +02:00
|
|
|
if [[ ${PV} == *9999* ]]; then
|
2018-11-25 07:48:26 +01:00
|
|
|
EGIT_REPO_URI="https://schlomp.space/tastytea/libravatarserv.git"
|
|
|
|
else
|
2018-11-27 18:07:43 +01:00
|
|
|
SRC_URI="https://schlomp.space/tastytea/libravatarserv/archive/${PV}.tar.gz
|
|
|
|
-> ${P}.tar.gz"
|
2022-06-25 16:23:15 +02:00
|
|
|
KEYWORDS="~amd64"
|
|
|
|
S="${WORKDIR}/${PN}"
|
2018-11-25 07:48:26 +01:00
|
|
|
fi
|
|
|
|
|
2018-11-27 14:50:35 +01:00
|
|
|
LICENSE="GPL-3"
|
2018-11-25 07:48:26 +01:00
|
|
|
SLOT="0"
|
|
|
|
|
2018-11-25 11:03:21 +01:00
|
|
|
RDEPEND="
|
2018-12-26 06:36:24 +01:00
|
|
|
dev-cpp/identiconpp
|
2022-06-25 16:23:15 +02:00
|
|
|
dev-libs/crypto++:=
|
|
|
|
media-gfx/imagemagick:=
|
2018-11-25 07:48:26 +01:00
|
|
|
"
|
2020-10-24 12:24:17 +02:00
|
|
|
DEPEND="${RDEPEND}"
|
2018-11-25 07:48:26 +01:00
|
|
|
|
2020-10-24 12:24:17 +02:00
|
|
|
DOCS=("README.md" "doc/nginx-example.conf")
|