49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
# Copyright 2023-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Source: Written from scratch for sunset-repo overlay
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
DISTUTILS_SINGLE_IMPL=true
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
|
|
inherit distutils-r1 optfeature
|
|
|
|
DESCRIPTION="GTK3 & Python GUI for syncthing"
|
|
HOMEPAGE="https://github.com/syncthing-gtk/syncthing-gtk"
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="${PYTHON_DEPS}
|
|
x11-libs/gtk+:3
|
|
libnotify? ( x11-libs/libnotify )
|
|
$(python_gen_cond_dep '
|
|
dev-python/pygobject[cairo,${PYTHON_USEDEP}]
|
|
dev-python/python-dateutil[${PYTHON_USEDEP}]
|
|
dev-python/bcrypt[${PYTHON_USEDEP}]
|
|
')"
|
|
RDEPEND="${DEPEND}
|
|
sys-process/psmisc
|
|
net-p2p/syncthing
|
|
$(python_gen_cond_dep '
|
|
dev-python/six[${PYTHON_USEDEP}]
|
|
')"
|
|
BDEPEND="${PYTHON_DEPS}
|
|
$(python_gen_cond_dep '
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
')"
|
|
|
|
IUSE="+libnotify"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
pkg_postinst() {
|
|
optfeature "Caja file manager integration" dev-python/python-caja
|
|
optfeature "Nautilus file manager integration" dev-python/nautilus-python
|
|
optfeature "Gnome file manager integration" gnome-extra/gnome-shell-extension-appindicator
|
|
}
|