holgersson-overlay/net-im/profanity/profanity-0.9.5.ebuild
Nils Freydank b54b856ace
net-im/profanity: Add new package version 0.9.5
The ebuild is based on the ebuild from the main gentoo/portage tree.

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Manifest-Sign-Key: 00EFD31F1B60D5DBADB831C1C0ECE6960E54475B
Signed-off-by: Nils Freydank <holgersson@posteo.de>
2020-08-09 18:36:22 +02:00

48 lines
955 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
DESCRIPTION="A console based XMPP client inspired by Irssi"
HOMEPAGE="https://profanity-im.github.io"
SRC_URI="https://profanity-im.github.io/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="libnotify +omemo otr gpg xscreensaver"
DEPEND="
dev-libs/expat
dev-libs/glib
dev-libs/libstrophe:=
dev-libs/openssl:0=
net-misc/curl
sys-apps/util-linux
sys-libs/ncurses:=[unicode]
gpg? ( app-crypt/gpgme:= )
libnotify? ( x11-libs/libnotify )
omemo? (
net-libs/libsignal-protocol-c
dev-libs/libgcrypt
)
otr? ( net-libs/libotr )
xscreensaver? (
x11-libs/libXScrnSaver
x11-libs/libX11
)
"
RDEPEND="${DEPEND}"
src_configure() {
local myeconfargs=(
$(use_enable libnotify notifications)
$(use_enable omemo)
$(use_enable otr)
$(use_enable gpg pgp)
$(use_with xscreensaver)
)
econf "${myeconfargs[@]}"
}