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.18.5.ebuild ChangeLog pidgin-sipe-1.18.4.ebuild
Date: Tue, 30 Dec 2014 08:50:01
Message-Id: 20141230084956.D523BE7B3@oystercatcher.gentoo.org
1 thev00d00 14/12/30 08:49:56
2
3 Modified: ChangeLog
4 Added: pidgin-sipe-1.18.5.ebuild
5 Removed: pidgin-sipe-1.18.4.ebuild
6 Log:
7 Version bump
8
9 (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
10
11 Revision Changes Path
12 1.34 x11-plugins/pidgin-sipe/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog?rev=1.34&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog?rev=1.34&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog?r1=1.33&r2=1.34
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v
21 retrieving revision 1.33
22 retrieving revision 1.34
23 diff -u -r1.33 -r1.34
24 --- ChangeLog 22 Oct 2014 16:33:56 -0000 1.33
25 +++ ChangeLog 30 Dec 2014 08:49:56 -0000 1.34
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-plugins/pidgin-sipe
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v 1.33 2014/10/22 16:33:56 thev00d00 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v 1.34 2014/12/30 08:49:56 thev00d00 Exp $
31 +
32 +*pidgin-sipe-1.18.5 (30 Dec 2014)
33 +
34 + 30 Dec 2014; Ian Whyman <thev00d00@g.o> +pidgin-sipe-1.18.5.ebuild,
35 + -pidgin-sipe-1.18.4.ebuild:
36 + Version bump
37
38 *pidgin-sipe-1.18.4 (22 Oct 2014)
39
40
41
42
43 1.1 x11-plugins/pidgin-sipe/pidgin-sipe-1.18.5.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/pidgin-sipe-1.18.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/pidgin-sipe-1.18.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pidgin-sipe-1.18.5.ebuild
49 ===================================================================
50 # Copyright 1999-2014 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.18.5.ebuild,v 1.1 2014/12/30 08:49:56 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
66 IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
67
68 RDEPEND=">=dev-libs/gmime-2.4.16
69 dev-libs/libxml2
70 openssl? ( dev-libs/openssl )
71 !openssl? ( dev-libs/nss )
72 kerberos? ( virtual/krb5 )
73 voice? (
74 >=dev-libs/glib-2.28.0
75 >=net-libs/libnice-0.1.0
76 media-libs/gstreamer:0.10
77 >=net-im/pidgin-2.8.0
78 )
79 !voice? (
80 >=dev-libs/glib-2.12.0:2
81 net-im/pidgin
82 )
83 telepathy? (
84 >=sys-apps/dbus-1.1.0
85 >=dev-libs/dbus-glib-0.61
86 >=dev-libs/glib-2.28:2
87 >=net-libs/telepathy-glib-0.18.0
88 )
89 "
90
91 DEPEND="dev-util/intltool
92 virtual/pkgconfig
93 ${RDEPEND}
94 "
95
96 src_prepare() {
97 eautoreconf
98 }
99
100 src_configure() {
101 econf \
102 --enable-purple \
103 --disable-quality-check \
104 $(use_enable telepathy) \
105 $(use_enable debug) \
106 $(use_enable ocs2005-message-hack) \
107 $(use_with kerberos krb5) \
108 $(use_with voice vv) \
109 $(use_enable !openssl nss) \
110 $(use_enable openssl)
111 }
112
113 src_install() {
114 emake install DESTDIR="${D}"
115 dodoc AUTHORS ChangeLog NEWS TODO README
116 }