2020-01-07 09:00:44 +01:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
2018-05-08 06:50:18 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2019-04-21 04:25:56 +02:00
|
|
|
EAPI=7
|
2020-11-21 21:29:09 +01:00
|
|
|
|
|
|
|
inherit cmake
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
|
|
inherit git-r3
|
|
|
|
fi
|
2018-05-08 06:50:18 +02:00
|
|
|
|
|
|
|
DESCRIPTION="Another RSS to Mastodon bot"
|
2018-06-04 21:09:02 +02:00
|
|
|
HOMEPAGE="https://schlomp.space/tastytea/mastorss"
|
2020-11-21 21:29:09 +01:00
|
|
|
|
|
|
|
if [[ "${PV}" != "9999" ]]; then
|
|
|
|
SRC_URI="https://schlomp.space/tastytea/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
else
|
|
|
|
EGIT_REPO_URI="https://schlomp.space/tastytea/mastorss.git"
|
|
|
|
fi
|
|
|
|
|
2018-05-08 06:50:18 +02:00
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
IUSE=""
|
2020-11-21 21:29:09 +01:00
|
|
|
|
2019-03-18 05:01:22 +01:00
|
|
|
RDEPEND="
|
2019-12-28 08:17:01 +01:00
|
|
|
>=dev-libs/boost-1.62.0
|
2020-11-15 17:49:27 +01:00
|
|
|
>=dev-cpp/mastodonpp-0.5.6
|
2019-12-28 08:17:01 +01:00
|
|
|
>=dev-libs/jsoncpp-1.7.4
|
|
|
|
>=dev-cpp/restclient-cpp-0.5.1
|
2020-08-24 18:32:41 +02:00
|
|
|
"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
BDEPEND="
|
|
|
|
virtual/pkgconfig
|
2020-01-07 09:00:44 +01:00
|
|
|
app-text/asciidoc
|
2019-03-18 05:01:22 +01:00
|
|
|
"
|