2017-08-27 12:37:41 +02:00
|
|
|
# Copyright 1999-2017 Gentoo Foundation
|
2016-09-24 20:30:38 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2017-07-05 22:41:09 +02:00
|
|
|
EAPI="6"
|
2016-09-24 20:30:38 +02:00
|
|
|
|
2016-10-17 21:03:16 +02:00
|
|
|
PYTHON_COMPAT=( python3_{4,5} )
|
|
|
|
|
2016-09-24 20:30:38 +02:00
|
|
|
inherit eutils
|
|
|
|
|
2017-08-28 20:49:02 +02:00
|
|
|
if [[ "${PV}" == "9999" ]]
|
2017-08-27 12:37:41 +02:00
|
|
|
then
|
2017-08-28 20:49:02 +02:00
|
|
|
inherit https-r3
|
|
|
|
EGIT_REPO_URI="https://git.server-speed.net/users/flo/fb"
|
2017-08-27 12:37:41 +02:00
|
|
|
else
|
|
|
|
SRC_URI="https://paste.xinu.at/data/client/fb-${PV}.tar.gz -> fb-client-${PVR}.tar.gz"
|
2017-08-28 20:49:02 +02:00
|
|
|
S="${WORKDIR}/fb-${PV}"
|
2017-08-27 12:37:41 +02:00
|
|
|
fi
|
|
|
|
|
2016-09-24 20:30:38 +02:00
|
|
|
DESCRIPTION="Client for paste.xinu.at"
|
|
|
|
HOMEPAGE="https://paste.xinu.at"
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~x86 ~amd64"
|
|
|
|
IUSE="+clipboard"
|
|
|
|
|
2017-11-09 21:28:55 +01:00
|
|
|
RDEPEND="
|
|
|
|
dev-python/pyxdg
|
2016-09-24 20:30:38 +02:00
|
|
|
dev-python/pycurl
|
2017-11-09 21:28:55 +01:00
|
|
|
clipboard? ( x11-misc/xclip )
|
|
|
|
"
|