overlay/net-misc/mastorss/mastorss-9999.ebuild

36 lines
678 B
Bash
Raw Normal View History

# Copyright 1999-2020 Gentoo Authors
2018-05-08 06:50:18 +02:00
# Distributed under the terms of the GNU General Public License v2
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="
2020-11-21 22:49:54 +01:00
dev-libs/boost
>=dev-cpp/mastodonpp-0.5.6
2020-11-21 22:49:54 +01:00
dev-libs/jsoncpp
net-misc/curl
2020-08-24 18:32:41 +02:00
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
app-text/asciidoc
2019-03-18 05:01:22 +01:00
"