From 264784f98311837d8a77e262d7bafe52ac759c1c Mon Sep 17 00:00:00 2001 From: Andrey Utkin Date: Mon, 6 May 2019 20:01:43 +0100 Subject: [PATCH] net-im/profanity: add new package Based on the ebuild contributed by Dennis Schridde - huge thanks! Bug: https://bugs.gentoo.org/558840 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andrey Utkin --- net-im/profanity/Manifest | 1 + net-im/profanity/metadata.xml | 16 ++++++++++ net-im/profanity/profanity-0.6.0.ebuild | 39 +++++++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 net-im/profanity/Manifest create mode 100644 net-im/profanity/metadata.xml create mode 100644 net-im/profanity/profanity-0.6.0.ebuild diff --git a/net-im/profanity/Manifest b/net-im/profanity/Manifest new file mode 100644 index 000000000000..94dfe57fd10c --- /dev/null +++ b/net-im/profanity/Manifest @@ -0,0 +1 @@ +DIST profanity-0.6.0.tar.gz 741812 BLAKE2B ba6cff070ee0e8a83b52677f6551c1d7397cd25993982d6b5390590a4924d902050504cb8803ee2741262b1409e4d75e9f223397f87f39d7dc86fcc56a0e5df6 SHA512 c7d8e74b764276f59fccfa029d45271032db315cdbf6e00deccbd611f202983a0930fed99021202333047acee9f3f0d7779cd9bb3628d2e5c4757e3de8c3629e diff --git a/net-im/profanity/metadata.xml b/net-im/profanity/metadata.xml new file mode 100644 index 000000000000..d2349017e1a3 --- /dev/null +++ b/net-im/profanity/metadata.xml @@ -0,0 +1,16 @@ + + + + + andrey_utkin@gentoo.org + Andrey Utkin + + + Profanity is a console based XMPP client written in C using + ncurses and libstrophe, inspired by Irssi. + + + Enable OpenPGP encryption + Enable encrypted conversations using Off-The-Records messaging + + diff --git a/net-im/profanity/profanity-0.6.0.ebuild b/net-im/profanity/profanity-0.6.0.ebuild new file mode 100644 index 000000000000..402ca75c0859 --- /dev/null +++ b/net-im/profanity/profanity-0.6.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2019 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="http://www.profanity.im/" +SRC_URI="http://www.profanity.im/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="libnotify 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 ) + otr? ( net-libs/libotr ) + xscreensaver? ( + x11-libs/libXScrnSaver + x11-libs/libX11 ) + " +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + $(use_enable libnotify notifications) \ + $(use_enable otr) \ + $(use_enable gpg pgp) \ + $(use_with xscreensaver) +} -- 2.26.2