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.0-r1.ebuild ChangeLog pidgin-sipe-1.18.0.ebuild
Date: Sat, 01 Feb 2014 15:25:13
Message-Id: 20140201152509.DF7042004C@flycatcher.gentoo.org
1 thev00d00 14/02/01 15:25:09
2
3 Modified: ChangeLog
4 Added: pidgin-sipe-1.18.0-r1.ebuild
5 Removed: pidgin-sipe-1.18.0.ebuild
6 Log:
7 Drop required use and default to nss
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
10
11 Revision Changes Path
12 1.27 x11-plugins/pidgin-sipe/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog?rev=1.27&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog?rev=1.27&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog?r1=1.26&r2=1.27
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v
21 retrieving revision 1.26
22 retrieving revision 1.27
23 diff -u -r1.26 -r1.27
24 --- ChangeLog 30 Jan 2014 22:09:01 -0000 1.26
25 +++ ChangeLog 1 Feb 2014 15:25:09 -0000 1.27
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.26 2014/01/30 22:09:01 thev00d00 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-sipe/ChangeLog,v 1.27 2014/02/01 15:25:09 thev00d00 Exp $
31 +
32 +*pidgin-sipe-1.18.0-r1 (01 Feb 2014)
33 +
34 + 01 Feb 2014; Ian Whyman <thev00d00@g.o> +pidgin-sipe-1.18.0-r1.ebuild,
35 + -pidgin-sipe-1.18.0.ebuild:
36 + Drop required use and default to nss
37
38 *pidgin-sipe-1.18.0 (30 Jan 2014)
39
40
41
42
43 1.1 x11-plugins/pidgin-sipe/pidgin-sipe-1.18.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/pidgin-sipe-1.18.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-sipe/pidgin-sipe-1.18.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pidgin-sipe-1.18.0-r1.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.0-r1.ebuild,v 1.1 2014/02/01 15:25:09 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 epatch "${FILESDIR}/${PN}-1.13.2-fix-sandbox-r1.patch"
98 eautoreconf
99 }
100
101 src_configure() {
102 econf \
103 --enable-purple \
104 --disable-quality-check \
105 $(use_enable telepathy) \
106 $(use_enable debug) \
107 $(use_enable ocs2005-message-hack) \
108 $(use_with kerberos krb5) \
109 $(use_with voice vv) \
110 $(use_enable !openssl nss) \
111 $(use_enable openssl)
112 }
113
114 src_install() {
115 emake install DESTDIR="${D}"
116 dodoc AUTHORS ChangeLog NEWS TODO README
117 }