forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x11-plugins/pidgin-sipe: Version bump
Package-Manager: portage-2.2.24
- Loading branch information
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
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.4.16 | ||
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:0.10 | ||
>=net-im/pidgin-2.8.0 | ||
) | ||
!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() { | ||
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 | ||
} |