forked from tastytea/overlay
tastytea
97640d91fd
Package-Manager: Portage-2.3.51, Repoman-2.3.11 Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
40 lines
767 B
Bash
40 lines
767 B
Bash
# Copyright 1999-2018 Gentoo Authors
|
|
# 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=""
|
|
|
|
DEPEND="
|
|
dev-util/cmake
|
|
dev-libs/crypto++
|
|
media-gfx/imagemagick
|
|
dev-libs/libxdg-basedir
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
if [[ "${PV}" != "9999" ]]; then
|
|
S="${WORKDIR}/${PN}"
|
|
fi
|