blob: e4e9ada1cc2d31d65420381525395ed55e4216ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A console based XMPP client inspired by Irssi"
HOMEPAGE="https://profanity-im.github.io"
SRC_URI="https://github.com/profanity-im/profanity/releases/download/${PV}/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm64"
IUSE="libnotify omemo otr gpg test xscreensaver"
RESTRICT="!test? ( test )"
RDEPEND="
dev-db/sqlite:3
|| ( app-accessibility/at-spi2-atk dev-libs/atk )
dev-libs/glib:2
dev-libs/libassuan
dev-libs/libgpg-error
>=dev-libs/libstrophe-0.12.2
media-libs/harfbuzz:=
net-misc/curl
sys-libs/ncurses:=[unicode(+)]
sys-libs/readline:=
x11-libs/cairo
x11-libs/gdk-pixbuf:2
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
)
otr? ( net-libs/libotr )
xscreensaver? (
x11-libs/libXScrnSaver
x11-libs/libX11
)
"
DEPEND="
${RDEPEND}
test? ( dev-util/cmocka )
"
src_configure() {
local myeconfargs=(
--enable-gdk-pixbuf
$(use_enable libnotify notifications)
$(use_enable omemo)
$(use_enable otr)
$(use_enable gpg pgp)
$(use_with xscreensaver)
)
econf "${myeconfargs[@]}"
}
src_compile() {
emake CFLAGS="${CFLAGS}"
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}
|