commit:     264784f98311837d8a77e262d7bafe52ac759c1c
Author:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Mon May  6 19:01:43 2019 +0000
Commit:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Mon May  6 19:17:48 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=264784f9

net-im/profanity: add new package

Based on the ebuild contributed by Dennis Schridde <devurandom <AT> gmx.net>
- huge thanks!

Bug: https://bugs.gentoo.org/558840
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>

 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(+)

diff --git a/net-im/profanity/Manifest b/net-im/profanity/Manifest
new file mode 100644
index 00000000000..94dfe57fd10
--- /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 00000000000..d2349017e1a
--- /dev/null
+++ b/net-im/profanity/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
+<pkgmetadata>
+       <maintainer type="person">
+               <email>[email protected]</email>
+               <name>Andrey Utkin</name>
+       </maintainer>
+       <longdescription>
+               Profanity is a console based XMPP client written in C using
+               ncurses and libstrophe, inspired by Irssi.
+       </longdescription>
+       <use>
+               <flag name="gpg">Enable OpenPGP encryption</flag>
+               <flag name="otr">Enable encrypted conversations using 
Off-The-Records messaging</flag>
+       </use>
+</pkgmetadata>

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 00000000000..402ca75c085
--- /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)
+}

Reply via email to