diff options
author | Peter Volkov <pva@gentoo.org> | 2010-04-25 13:29:05 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2010-04-25 13:29:05 +0000 |
commit | bd6e45ddb46414a16fa0934e4b9115dee197404e (patch) | |
tree | cbc8435af257a7cb06dad53f06c3031a03869c17 /x11-plugins | |
parent | Lower ekiga requeriment since 3.x is not ready to be stabilized (diff) | |
download | gentoo-2-bd6e45ddb46414a16fa0934e4b9115dee197404e.tar.gz gentoo-2-bd6e45ddb46414a16fa0934e4b9115dee197404e.tar.bz2 gentoo-2-bd6e45ddb46414a16fa0934e4b9115dee197404e.zip |
Version bump, bug #275611, thank Dave Bender for report.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/pidgin-sipe/ChangeLog | 9 | ||||
-rw-r--r-- | x11-plugins/pidgin-sipe/pidgin-sipe-1.10.0.ebuild | 33 |
2 files changed, 40 insertions, 2 deletions
diff --git a/x11-plugins/pidgin-sipe/ChangeLog b/x11-plugins/pidgin-sipe/ChangeLog index 7d0c198de2c4..893485cc49c0 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-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v 1.5 2009/11/30 14:09:09 lack Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v 1.6 2010/04/25 13:29:05 pva Exp $ + +*pidgin-sipe-1.10.0 (25 Apr 2010) + + 25 Apr 2010; Peter Volkov <pva@gentoo.org> +pidgin-sipe-1.10.0.ebuild: + Version bump, bug #275611, thank Dave Bender for report. *pidgin-sipe-1.7.1 (30 Nov 2009) diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.10.0.ebuild b/x11-plugins/pidgin-sipe/pidgin-sipe-1.10.0.ebuild new file mode 100644 index 000000000000..49a54c0ea6dc --- /dev/null +++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.10.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 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.10.0.ebuild,v 1.1 2010/04/25 13:29:05 pva Exp $ + +EAPI="2" + +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" + +#TODO: dev-libs/gmime - which is automagic dep, but +# >=dev-libs/gmime-2.4.16 is required and is not released atm +RDEPEND="net-im/pidgin + >=dev-libs/glib-2.12.0 + dev-libs/libxml2 kerberos? ( app-crypt/mit-krb5 )" DEPEND="${RDEPEND} + dev-util/intltool" + +src_configure() { + econf \ + --enable-purple \ + $(use_enable debug) \ + $(use_with kerberos krb5) +} + +src_install() { + emake install DESTDIR="${D}" || die "make install failed" + dodoc AUTHORS ChangeLog NEWS TODO README || die "dodoc failed" +} |