Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 708078
Collapse All | Expand All

(-)a/net-im/profanity/Manifest (+1 lines)
Lines 1-2 Link Here
1
DIST profanity-0.6.0.tar.gz 741812 BLAKE2B ba6cff070ee0e8a83b52677f6551c1d7397cd25993982d6b5390590a4924d902050504cb8803ee2741262b1409e4d75e9f223397f87f39d7dc86fcc56a0e5df6 SHA512 c7d8e74b764276f59fccfa029d45271032db315cdbf6e00deccbd611f202983a0930fed99021202333047acee9f3f0d7779cd9bb3628d2e5c4757e3de8c3629e
1
DIST profanity-0.6.0.tar.gz 741812 BLAKE2B ba6cff070ee0e8a83b52677f6551c1d7397cd25993982d6b5390590a4924d902050504cb8803ee2741262b1409e4d75e9f223397f87f39d7dc86fcc56a0e5df6 SHA512 c7d8e74b764276f59fccfa029d45271032db315cdbf6e00deccbd611f202983a0930fed99021202333047acee9f3f0d7779cd9bb3628d2e5c4757e3de8c3629e
2
DIST profanity-0.7.1.tar.gz 788754 BLAKE2B 447c761233ce6989081d3ed7a585d90713f4266dfc22ff816aea7c014f642f57989f7f767d8cf40cdd36c3152f45c6700f3905e0d12b864533aac61ac4dc7aaa SHA512 a6e159a5452ebb193dcff74dc8673de5dbc4bc5b2f2b8abc129641fc1b4b370aee9617dc0b26cfcc6aae58a1a900fda29356e61cdc17ee7ba69c879d6ccc2339
2
DIST profanity-0.7.1.tar.gz 788754 BLAKE2B 447c761233ce6989081d3ed7a585d90713f4266dfc22ff816aea7c014f642f57989f7f767d8cf40cdd36c3152f45c6700f3905e0d12b864533aac61ac4dc7aaa SHA512 a6e159a5452ebb193dcff74dc8673de5dbc4bc5b2f2b8abc129641fc1b4b370aee9617dc0b26cfcc6aae58a1a900fda29356e61cdc17ee7ba69c879d6ccc2339
3
DIST profanity-0.8.0.tar.gz 809438 BLAKE2B 0ec486fc5ab07ed7995da98843e2cf5b5a5df59f2b4070f163b5671db5957156b40d2dd0c59f21b1e569da0824211c80f6a707bc9d369dbffbe1e7b107a5c232 SHA512 e8fa01c3029a4e3649f21be2f56add40e4f36172e9dcca2c57100092d87fc060b2540dc00ee62c052c472912bb19d221b057c5210d02900166b4ec595c9fa711
(-)a/net-im/profanity/profanity-0.8.0.ebuild (-1 / +44 lines)
Line 0 Link Here
0
- 
1
# Copyright 1999-2020 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
3
4
EAPI=7
5
6
DESCRIPTION="A console based XMPP client inspired by Irssi"
7
HOMEPAGE="https://profanity-im.github.io"
8
SRC_URI="https://profanity-im.github.io/${PN}-${PV}.tar.gz"
9
10
LICENSE="GPL-3"
11
SLOT="0"
12
KEYWORDS="~amd64"
13
14
IUSE="libnotify omemo otr gpg xscreensaver"
15
16
DEPEND="
17
	dev-libs/expat
18
	dev-libs/glib
19
	dev-libs/libstrophe:=
20
	dev-libs/openssl:0=
21
	net-misc/curl
22
	sys-apps/util-linux
23
	sys-libs/ncurses:=[unicode]
24
	gpg? ( app-crypt/gpgme:= )
25
	libnotify? ( x11-libs/libnotify )
26
	omemo? (
27
		net-libs/libsignal-protocol-c
28
		dev-libs/libgcrypt
29
	)
30
	otr? ( net-libs/libotr )
31
	xscreensaver? (
32
		x11-libs/libXScrnSaver
33
		x11-libs/libX11 )
34
	"
35
RDEPEND="${DEPEND}"
36
37
src_configure() {
38
	econf \
39
		$(use_enable libnotify notifications) \
40
		$(use_enable omemo) \
41
		$(use_enable otr) \
42
		$(use_enable gpg pgp) \
43
		$(use_with xscreensaver)
44
}

Return to bug 708078