Gentoo Archives: gentoo-commits

From: "Ian Whyman (thev00d00)" <thev00d00@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/pidgin-sipe: pidgin-sipe-1.17.1.ebuild ChangeLog pidgin-sipe-1.15.1.ebuild
Date: Thu, 21 Nov 2013 16:43:45
Message-Id: 20131121164341.B54342004B@flycatcher.gentoo.org
1 thev00d00 13/11/21 16:43:41
2
3 Modified: ChangeLog
4 Added: pidgin-sipe-1.17.1.ebuild
5 Removed: pidgin-sipe-1.15.1.ebuild
6 Log:
7 Bump to 1.17.1, thanks to Andrew Waters for reporting in #491878
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
10
11 Revision Changes Path
12 1.22 x11-plugins/pidgin-sipe/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog?rev=1.22&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog?rev=1.22&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog?r1=1.21&r2=1.22
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v
21 retrieving revision 1.21
22 retrieving revision 1.22
23 diff -u -r1.21 -r1.22
24 --- ChangeLog 18 Jul 2013 08:26:27 -0000 1.21
25 +++ ChangeLog 21 Nov 2013 16:43:41 -0000 1.22
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-plugins/pidgin-sipe
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v 1.21 2013/07/18 08:26:27 thev00d00 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v 1.22 2013/11/21 16:43:41 thev00d00 Exp $
31 +
32 +*pidgin-sipe-1.17.1 (21 Nov 2013)
33 +
34 + 21 Nov 2013; Ian Whyman <thev00d00@g.o> +pidgin-sipe-1.17.1.ebuild,
35 + -pidgin-sipe-1.15.1.ebuild:
36 + Bump to 1.17.1, thanks to Andrew Waters for reporting in #491878
37
38 *pidgin-sipe-1.16.1 (18 Jul 2013)
39
40
41
42
43 1.1 x11-plugins/pidgin-sipe/pidgin-sipe-1.17.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/pidgin-sipe-1.17.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/pidgin-sipe-1.17.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pidgin-sipe-1.17.1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/pidgin-sipe-1.17.1.ebuild,v 1.1 2013/11/21 16:43:41 thev00d00 Exp $
53
54 EAPI=5
55
56 inherit autotools eutils
57
58 DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
59 HOMEPAGE="http://sipe.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug kerberos ocs2005-message-hack voice"
66
67 RDEPEND=">=dev-libs/gmime-2.4.16
68 dev-libs/libxml2
69 dev-libs/nss
70 kerberos? ( virtual/krb5 )
71 voice? (
72 >=dev-libs/glib-2.28.0
73 >=net-libs/libnice-0.1.0
74 media-libs/gstreamer:0.10
75 >=net-im/pidgin-2.8.0[gnutls]
76 )
77 !voice? (
78 >=dev-libs/glib-2.12.0
79 net-im/pidgin[gnutls]
80 )
81 "
82
83 DEPEND="dev-util/intltool
84 virtual/pkgconfig
85 ${RDEPEND}
86 "
87
88 src_prepare() {
89 epatch "${FILESDIR}/${PN}-1.13.2-fix-sandbox-r1.patch"
90 eautoreconf
91 }
92
93 src_configure() {
94 econf \
95 --enable-purple \
96 --disable-quality-check \
97 --disable-telepathy \
98 $(use_enable debug) \
99 $(use_enable ocs2005-message-hack) \
100 $(use_with kerberos krb5) \
101 $(use_with voice vv)
102 }
103
104 src_install() {
105 emake install DESTDIR="${D}"
106 dodoc AUTHORS ChangeLog NEWS TODO README
107 }