diff options
author | Ian Whyman <thev00d00@gentoo.org> | 2012-04-24 18:47:29 +0000 |
---|---|---|
committer | Ian Whyman <thev00d00@gentoo.org> | 2012-04-24 18:47:29 +0000 |
commit | cda2be43855bb7826557a7fed84627e77c16eab3 (patch) | |
tree | 655ba814ec97a2f8b0f82dc9d4f90e9e52d49c7c /x11-plugins/pidgin-sipe | |
parent | Marked ~{ppc,x86,x64}-macos, bug #410361 (diff) | |
download | gentoo-2-cda2be43855bb7826557a7fed84627e77c16eab3.tar.gz gentoo-2-cda2be43855bb7826557a7fed84627e77c16eab3.tar.bz2 gentoo-2-cda2be43855bb7826557a7fed84627e77c16eab3.zip |
Bump to latest
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins/pidgin-sipe')
-rw-r--r-- | x11-plugins/pidgin-sipe/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/pidgin-sipe/pidgin-sipe-1.13.1.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/x11-plugins/pidgin-sipe/ChangeLog b/x11-plugins/pidgin-sipe/ChangeLog index 0ed378ba968d..85f79c4e499e 100644 --- a/x11-plugins/pidgin-sipe/ChangeLog +++ b/x11-plugins/pidgin-sipe/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/pidgin-sipe # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v 1.11 2012/03/20 20:28:01 thev00d00 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v 1.12 2012/04/24 18:47:29 thev00d00 Exp $ + +*pidgin-sipe-1.13.1 (24 Apr 2012) + + 24 Apr 2012; Ian Whyman <thev00d00@gentoo.org> +pidgin-sipe-1.13.1.ebuild: + Bump to latest *pidgin-sipe-1.13.0 (20 Mar 2012) diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.13.1.ebuild b/x11-plugins/pidgin-sipe/pidgin-sipe-1.13.1.ebuild new file mode 100644 index 000000000000..af6763c0cc9c --- /dev/null +++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.13.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/pidgin-sipe-1.13.1.ebuild,v 1.1 2012/04/24 18:47:29 thev00d00 Exp $ + +EAPI=4 + +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 voice" + +DEPEND="net-im/pidgin[gnutls] + dev-util/intltool + >=dev-libs/gmime-2.4.16 + dev-libs/libxml2 + kerberos? ( app-crypt/mit-krb5 ) + voice? ( + >=dev-libs/glib-2.28.0 + >=net-libs/libnice-0.1.0 + media-libs/gstreamer ) + !voice? ( >=dev-libs/glib-2.12.0 )" + +src_configure() { + econf \ + --enable-purple \ + --disable-quality-check \ + --disable-telepathy \ + $(use_with voice vv) \ + $(use_enable debug) \ + $(use_with kerberos krb5) +} + +src_install() { + emake install DESTDIR="${D}" + dodoc AUTHORS ChangeLog NEWS TODO README +} |