2016-02-26 15:13:29 +00:00
|
|
|
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2016-05-26 13:17:08 +00:00
|
|
|
require desktop-utils gtk-icon-cache
|
2021-03-15 07:55:33 +00:00
|
|
|
require setup-py [ import=distutils blacklist="2" multibuild=false ]
|
|
|
|
require github [ user="AGProjects" pn="blink-qt" tag="${PV}" ]
|
2016-02-26 15:13:29 +00:00
|
|
|
|
|
|
|
SUMMARY="A state of the art, easy to use SIP client"
|
|
|
|
HOMEPAGE="http://iCanBlink.com"
|
|
|
|
|
|
|
|
LICENCES="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
MYOPTIONS=""
|
|
|
|
PLATFORMS="~amd64 ~x86"
|
|
|
|
|
|
|
|
DEPENDENCIES="
|
|
|
|
build:
|
|
|
|
dev-python/Cython[python_abis:*(-)?]
|
|
|
|
build+run:
|
|
|
|
net-libs/libvncserver
|
|
|
|
run:
|
2017-03-13 20:21:40 +00:00
|
|
|
dev-python/PyQt5[>=5.0][webkit][python_abis:*(-)?]
|
|
|
|
dev-python/google-api-python-client[python_abis:*(-)?]
|
2016-02-26 15:13:29 +00:00
|
|
|
dev-python/lxml[python_abis:*(-)?]
|
2021-03-15 07:55:33 +00:00
|
|
|
dev-python/python-application[>=3.0.3][python_abis:*(-)?]
|
2016-02-26 15:13:29 +00:00
|
|
|
dev-python/python-dateutil[python_abis:*(-)?]
|
2021-03-15 07:55:33 +00:00
|
|
|
dev-python/python-eventlib[>=0.3.0][python_abis:*(-)?]
|
2021-09-16 11:52:33 +00:00
|
|
|
dev-python/python-sipsimple[>=5.2.2][python_abis:*(-)?]
|
2016-02-26 15:13:29 +00:00
|
|
|
dev-python/zopeinterface[python_abis:*(-)?]
|
2019-06-04 12:22:27 +00:00
|
|
|
net-twisted/Twisted[python_abis:*(-)?]
|
2016-02-26 15:13:29 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
DEFAULT_SRC_PREPARE_PATCHES=(
|
2021-03-15 07:55:33 +00:00
|
|
|
"${FILES}/${PN}-data-path.patch"
|
2016-02-26 15:13:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
setup-py_src_install
|
|
|
|
|
|
|
|
insinto /usr/share/icons/hicolor/48x48/apps
|
|
|
|
newins resources/icons/blink48.png blink.png
|
|
|
|
insinto /usr/share/icons/hicolor/64x64/apps
|
|
|
|
newins resources/icons/blink64.png blink.png
|
|
|
|
insinto /usr/share/icons/hicolor/512x512/apps
|
|
|
|
doins resources/icons/blink.png
|
|
|
|
|
2016-05-26 13:17:08 +00:00
|
|
|
install_desktop_entry "Name=Blink"
|
2016-02-26 15:13:29 +00:00
|
|
|
}
|
|
|
|
|