This repository has been archived on 2024-09-25. You can view files and clone it, but cannot push or open issues or pull requests.
overlay/net-misc/feiertagebot/feiertagebot-9999.ebuild
tastytea 9a2f87481f
net-misc/feiertagebot: Adjusted dependencies.
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
2019-04-21 04:12:56 +02:00

56 lines
1.1 KiB
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake-utils
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
fi
XDGJSON_PV="0.2.3"
DESCRIPTION="Allows you to execute files from compiled languages as scripts."
HOMEPAGE="https://schlomp.space/tastytea/feiertagebot"
if [[ "${PV}" == "9999" ]]; then
EGIT_REPO_URI="https://schlomp.space/tastytea/feiertagebot.git"
else
SRC_URI="
https://schlomp.space/tastytea/feiertagebot/archive/${PV}.tar.gz -> ${P}.tar.gz
https://schlomp.space/tastytea/xdgjson/archive/${XDGJSON_PV}.tar.gz -> xdgcfg-${XDGJSON_PV}.tar.gz
"
fi
LICENSE="GPL-3"
SLOT="0"
if [[ "${PV}" == "9999" ]]; then
KEYWORDS=""
else
KEYWORDS="~amd64 ~x86"
fi
IUSE=""
RDEPEND="
dev-libs/libxdg-basedir
dev-cpp/curlpp
dev-libs/jsoncpp
>=dev-cpp/mastodon-cpp-0.105.0
"
DEPEND="
dev-util/cmake
${RDEPEND}
"
if [[ "${PV}" != "9999" ]]; then
S="${WORKDIR}/${PN}"
fi
src_unpack() {
if [[ "${PV}" == "9999" ]]; then
git-r3_src_unpack
else
default_src_unpack
mv xdgcfg ${PN}
fi
}