diff options
author | Florian Schmaus <flow@gentoo.org> | 2023-09-15 09:58:09 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2023-09-15 09:59:35 +0200 |
commit | 8fc807b994980f4c85d31710f3eff010dbc5b31c (patch) | |
tree | 4d9e18c7fb9a6bbb4f310fcfbffb3b1ee78ecce0 /net-misc | |
parent | */*: remove USE=php_targets_php7-4 (diff) | |
download | gentoo-8fc807b994980f4c85d31710f3eff010dbc5b31c.tar.gz gentoo-8fc807b994980f4c85d31710f3eff010dbc5b31c.tar.bz2 gentoo-8fc807b994980f4c85d31710f3eff010dbc5b31c.zip |
net-misc/nextcloud-client: info if qtkeychain is not installed with USE=keyring
Also drop the USE=doc info message.
Closes: https://bugs.gentoo.org/912844
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'net-misc')
3 files changed, 15 insertions, 9 deletions
diff --git a/net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild b/net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild index 982596d05a8f..23b5a83aabf2 100644 --- a/net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild +++ b/net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild @@ -106,8 +106,10 @@ src_compile() { pkg_postinst() { xdg_pkg_postinst - if ! use doc ; then - elog "Documentation and man pages not installed" - elog "Enable doc USE-flag to generate them" + if ! has_version -r "dev-libs/qtkeychain[keyring]"; then + elog "dev-libs/qtkeychain has not been build with the 'keyring' USE flag." + elog "Please consider enabling the 'keyring' USE flag. Otherwise you may" + elog "have to authenticate manually every time you start the nextlcoud client." + elog "See https://bugs.gentoo.org/912844 for more information." fi } diff --git a/net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild b/net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild index 982596d05a8f..23b5a83aabf2 100644 --- a/net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild +++ b/net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild @@ -106,8 +106,10 @@ src_compile() { pkg_postinst() { xdg_pkg_postinst - if ! use doc ; then - elog "Documentation and man pages not installed" - elog "Enable doc USE-flag to generate them" + if ! has_version -r "dev-libs/qtkeychain[keyring]"; then + elog "dev-libs/qtkeychain has not been build with the 'keyring' USE flag." + elog "Please consider enabling the 'keyring' USE flag. Otherwise you may" + elog "have to authenticate manually every time you start the nextlcoud client." + elog "See https://bugs.gentoo.org/912844 for more information." fi } diff --git a/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild b/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild index 78bd99d7580a..94cff32e49fb 100644 --- a/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild +++ b/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild @@ -106,8 +106,10 @@ src_compile() { pkg_postinst() { xdg_pkg_postinst - if ! use doc ; then - elog "Documentation and man pages not installed" - elog "Enable doc USE-flag to generate them" + if ! has_version -r "dev-libs/qtkeychain[keyring]"; then + elog "dev-libs/qtkeychain has not been build with the 'keyring' USE flag." + elog "Please consider enabling the 'keyring' USE flag. Otherwise you may" + elog "have to authenticate manually every time you start the nextlcoud client." + elog "See https://bugs.gentoo.org/912844 for more information." fi } |