
Package-Manager: Portage-2.3.38, Repoman-2.3.9 Manifest-Sign-Key: 01A82408BDE3C5613399B9F57B0F1A69527F615C
56 lines
1.4 KiB
Bash
56 lines
1.4 KiB
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python3_5 )
|
|
PYTHON_REQ_USE="sqlite,xml"
|
|
|
|
AUTOTOOLS_AUTORECONF=true
|
|
|
|
if [[ "$PV" == "9999" ]] ; then
|
|
inherit distutils-r1 python-r1 versionator git-r3
|
|
EGIT_REPO_URI="https://dev.gajim.org/gajim/gajim.git"
|
|
else
|
|
inherit distutils-r1 python-r1 versionator
|
|
SRC_URI="https://www.gajim.org/downloads/$(get_version_component_range 1-2)/${P}.tar.bz2"
|
|
fi
|
|
|
|
DESCRIPTION="Jabber client written in PyGTK"
|
|
HOMEPAGE="http://www.gajim.org/"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="crypt dbus networkmanager nls spell +srv test X"
|
|
|
|
REQUIRED_USE="
|
|
${PYTHON_REQUIRED_USE}"
|
|
|
|
COMMON_DEPEND="
|
|
${PYTHON_DEPS}
|
|
dev-python/pygobject:3[${PYTHON_USEDEP},cairo]
|
|
x11-libs/gtk+:3"
|
|
DEPEND="${COMMON_DEPEND}
|
|
>=dev-util/intltool-0.40.1
|
|
virtual/pkgconfig
|
|
>=sys-devel/gettext-0.17-r1"
|
|
RDEPEND="${COMMON_DEPEND}
|
|
dev-python/pyasn1[${PYTHON_USEDEP}]
|
|
>=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
|
|
>=dev-python/python-nbxmpp-0.6.4[${PYTHON_USEDEP}]
|
|
crypt? (
|
|
dev-python/python-gnupg[${PYTHON_USEDEP}]
|
|
dev-python/pycrypto[${PYTHON_USEDEP}]
|
|
)
|
|
dbus? (
|
|
dev-python/dbus-python[${PYTHON_USEDEP}]
|
|
dev-libs/dbus-glib
|
|
)
|
|
networkmanager? (
|
|
dev-python/dbus-python[${PYTHON_USEDEP}]
|
|
net-misc/networkmanager
|
|
)
|
|
spell? ( app-text/gspell )"
|
|
|
|
RESTRICT="test"
|