mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-26 16:32:34 +01:00
69 lines
1.5 KiB
Bash
69 lines
1.5 KiB
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit autotools eutils git-r3 python-single-r1
|
|
|
|
DESCRIPTION="A console based XMPP client inspired by Irssi"
|
|
HOMEPAGE="http://profanity.im"
|
|
EGIT_REPO_URI="https://github.com/boothj5/profanity.git"
|
|
RESTRICT="mirror"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE="+c-plugins icons +largefile libnotify +otr pgp +plugins python-plugins test +themes xscreensaver"
|
|
REQUIRED_USE="c-plugins? ( plugins )
|
|
python-plugins? ( plugins ${PYTHON_REQUIRED_USE} )"
|
|
|
|
CDEPEND="dev-libs/glib:2
|
|
net-misc/curl
|
|
sys-apps/util-linux:0
|
|
sys-libs/ncurses:0[unicode]
|
|
sys-libs/readline:0
|
|
|| (
|
|
>=dev-libs/libmesode-0.9.1[ssl]
|
|
>=dev-libs/libstrophe-0.9.1[ssl,xml]
|
|
)
|
|
icons? ( >=x11-libs/gtk+-2.24.10:2 )
|
|
libnotify? ( x11-libs/libnotify )
|
|
otr? ( net-libs/libotr )
|
|
pgp? ( app-crypt/gpgme )
|
|
python-plugins? ( ${PYTHON_DEPS} )
|
|
xscreensaver? ( x11-libs/libXScrnSaver )"
|
|
DEPEND="${CDEPEND}
|
|
virtual/pkgconfig
|
|
test? ( dev-util/cmocka )"
|
|
RDEPEND="${CDEPEND}
|
|
libnotify? ( virtual/notification-daemon )"
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# shellcheck disable=SC2207
|
|
local myeconf=(
|
|
$(use_enable c-plugins)
|
|
$(use_enable icons)
|
|
$(use_enable largefile)
|
|
$(use_enable libnotify notifications)
|
|
$(use_enable otr)
|
|
$(use_enable pgp)
|
|
$(use_enable plugins)
|
|
$(use_enable python-plugins)
|
|
$(use_with themes)
|
|
$(use_with xscreensaver)
|
|
)
|
|
econf "${myeconf[@]}" || die "econf failed"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
prune_libtool_files
|
|
}
|