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