diff options
author | Florian Schmaus <flow@gentoo.org> | 2023-08-17 14:33:31 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2023-08-17 14:35:06 +0200 |
commit | 16ff417792dfd29700c68aa537db67deb2f8233c (patch) | |
tree | 810885f373e1d3a7f4bf5a90e1ad4186d4b3483c /net-im/profanity | |
parent | net-im/profanity: add 0.14.0 (diff) | |
download | gentoo-16ff417792dfd29700c68aa537db67deb2f8233c.tar.gz gentoo-16ff417792dfd29700c68aa537db67deb2f8233c.tar.bz2 gentoo-16ff417792dfd29700c68aa537db67deb2f8233c.zip |
net-im/profanity: fix deps
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'net-im/profanity')
-rw-r--r-- | net-im/profanity/metadata.xml | 1 | ||||
-rw-r--r-- | net-im/profanity/profanity-0.14.0.ebuild | 10 |
2 files changed, 6 insertions, 5 deletions
diff --git a/net-im/profanity/metadata.xml b/net-im/profanity/metadata.xml index 619a19eb9612..615f8cd4c2ef 100644 --- a/net-im/profanity/metadata.xml +++ b/net-im/profanity/metadata.xml @@ -16,6 +16,7 @@ <use> <flag name="gpg">Enable OpenPGP encryption</flag> <flag name="omemo">Enable OMEMO encryption</flag> + <flag name="omemo-qrcode">Enable exchanging OMEMO information via QR code</flag> <flag name="otr">Enable encrypted conversations using Off-The-Records messaging</flag> </use> <upstream> diff --git a/net-im/profanity/profanity-0.14.0.ebuild b/net-im/profanity/profanity-0.14.0.ebuild index 4f49c0eba437..f9b478c96344 100644 --- a/net-im/profanity/profanity-0.14.0.ebuild +++ b/net-im/profanity/profanity-0.14.0.ebuild @@ -10,15 +10,14 @@ SRC_URI="https://github.com/profanity-im/profanity/releases/download/${PV}/${P}. LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~arm64" -IUSE="libnotify omemo otr gpg test xscreensaver" +IUSE="libnotify omemo omemo-qrcode otr gpg test xscreensaver" RESTRICT="!test? ( test )" +REQUIRED_USE="omemo-qrcode? ( omemo )" RDEPEND=" + >=app-accessibility/at-spi2-core-2.46.0 dev-db/sqlite:3 - || ( app-accessibility/at-spi2-core:2 dev-libs/atk ) dev-libs/glib:2 - dev-libs/libassuan - dev-libs/libgpg-error >=dev-libs/libstrophe-0.12.3:= media-libs/harfbuzz:= net-misc/curl @@ -29,13 +28,13 @@ RDEPEND=" x11-libs/gtk+:3 x11-libs/pango x11-misc/shared-mime-info - virtual/libcrypt:= gpg? ( app-crypt/gpgme:= ) libnotify? ( x11-libs/libnotify ) omemo? ( dev-libs/libgcrypt:= net-libs/libsignal-protocol-c ) + omemo-qrcode? ( media-gfx/qrencode:= ) otr? ( net-libs/libotr ) xscreensaver? ( x11-libs/libXScrnSaver @@ -52,6 +51,7 @@ src_configure() { --enable-gdk-pixbuf $(use_enable libnotify notifications) $(use_enable omemo) + $(use_enable omemo-qrcode) $(use_enable otr) $(use_enable gpg pgp) $(use_with xscreensaver) |