diff options
author | 2017-09-30 17:19:02 +0100 | |
---|---|---|
committer | 2017-09-30 17:19:02 +0100 | |
commit | e1e467dde4705d7326bd585d42da824b01ebe525 (patch) | |
tree | 7387bbd9d73fde0a199a1c7f23e597e64a654479 /x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild | |
parent | net-misc/gerbera: Expose new v1.1 options as useflags (diff) | |
download | gentoo-e1e467dde4705d7326bd585d42da824b01ebe525.tar.gz gentoo-e1e467dde4705d7326bd585d42da824b01ebe525.tar.bz2 gentoo-e1e467dde4705d7326bd585d42da824b01ebe525.zip |
x11-plugins/pidgin-sipe: Version bump, fix gmime slot
Package-Manager: Portage-2.3.10, Repoman-2.3.3
Diffstat (limited to 'x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild')
-rw-r--r-- | x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild new file mode 100644 index 000000000000..8b7372dda468 --- /dev/null +++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.22.1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools eutils + +DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)" +HOMEPAGE="http://sipe.sourceforge.net/" +SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice" + +RDEPEND=" + dev-libs/gmime:2.6 + dev-libs/libxml2 + openssl? ( dev-libs/openssl:= ) + !openssl? ( dev-libs/nss ) + kerberos? ( virtual/krb5 ) + voice? ( + >=dev-libs/glib-2.28.0 + >=net-libs/libnice-0.1.0 + media-libs/gstreamer:1.0 + >=net-im/pidgin-2.8.0 + net-libs/farstream:0.2 + ) + !voice? ( + >=dev-libs/glib-2.12.0:2 + net-im/pidgin + ) + telepathy? ( + >=sys-apps/dbus-1.1.0 + >=dev-libs/dbus-glib-0.61 + >=dev-libs/glib-2.28:2 + >=net-libs/telepathy-glib-0.18.0 + ) +" + +DEPEND="dev-util/intltool + virtual/pkgconfig + ${RDEPEND} +" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --enable-purple \ + --disable-quality-check \ + $(use_enable telepathy) \ + $(use_enable debug) \ + $(use_enable ocs2005-message-hack) \ + $(use_with kerberos krb5) \ + $(use_with voice vv) \ + $(use_enable !openssl nss) \ + $(use_enable openssl) +} + +src_install() { + emake install DESTDIR="${D}" + dodoc AUTHORS ChangeLog NEWS TODO README +} |