diff options
author | Marek Szuba <marecki@gentoo.org> | 2023-08-23 21:11:49 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2023-08-23 22:05:50 +0100 |
commit | 05df5805b608a906b01e871ca45114dec89fda68 (patch) | |
tree | 4f69e8da1dec83c17b5729679beb2a73330093df /mail-mta/proton-mail-bridge | |
parent | dev-python/spdx-tools: new package, add 0.7.1 (diff) | |
download | gentoo-05df5805b608a906b01e871ca45114dec89fda68.tar.gz gentoo-05df5805b608a906b01e871ca45114dec89fda68.tar.bz2 gentoo-05df5805b608a906b01e871ca45114dec89fda68.zip |
mail-mta/proton-mail-bridge: remove IUSE=gui from 3.1.3
It never did anything anyway. We could of course simply drop this
version, however this is the last one without built-in telemetry support
so I'd rather keep it around for a while.
Closes: https://bugs.gentoo.org/912887
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'mail-mta/proton-mail-bridge')
-rw-r--r-- | mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild b/mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild index 3b00a1442737..cc717399d90f 100644 --- a/mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild +++ b/mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild @@ -16,7 +16,6 @@ SRC_URI="https://github.com/ProtonMail/${MY_PN}/archive/refs/tags/v${PV}.tar.gz LICENSE="Apache-2.0 BSD BSD-2 GPL-3+ ISC LGPL-3+ MIT MPL-2.0 Unlicense" SLOT="0" KEYWORDS="~amd64" -IUSE="gui" # Quite a few tests require Internet access PROPERTIES="test_network" @@ -33,12 +32,7 @@ src_prepare() { } src_compile() { - if use gui; then - eerror "Since version 3.0.0, GUI support in ${PN} requires Qt6 and is therefore currently not available" - die "USE=gui requires Qt6" - else - emake build-nogui - fi + emake build-nogui } src_test() { @@ -53,11 +47,3 @@ src_install() { einstalldocs } - -pkg_postinst() { - use gui && xdg_icon_cache_update -} - -pkg_postrm() { - use gui && xdg_icon_cache_update -} |