Gentoo Archives: gentoo-commits

From: Ian Whyman <thev00d00@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-sipe/
Date: Sat, 02 Jul 2016 12:18:06
Message-Id: 1467461859.7febe53cdb5f59beda844fac7d13e285b336eec5.thev00d00@gentoo
1 commit: 7febe53cdb5f59beda844fac7d13e285b336eec5
2 Author: Ian Whyman <thev00d00 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 12:17:39 2016 +0000
4 Commit: Ian Whyman <thev00d00 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 12:17:39 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7febe53c
7
8 x11-plugins/pidgin-sipe: Version bump (#585820)
9
10 Package-Manager: portage-2.3.0
11
12 x11-plugins/pidgin-sipe/Manifest | 1 +
13 x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild | 67 +++++++++++++++++++++++
14 2 files changed, 68 insertions(+)
15
16 diff --git a/x11-plugins/pidgin-sipe/Manifest b/x11-plugins/pidgin-sipe/Manifest
17 index ee5e2bf..4685f07 100644
18 --- a/x11-plugins/pidgin-sipe/Manifest
19 +++ b/x11-plugins/pidgin-sipe/Manifest
20 @@ -1,2 +1,3 @@
21 DIST pidgin-sipe-1.18.0.tar.gz 1090904 SHA256 f1388799e3d250fe43643ee8748a6769f67f9c544e3b91fbb25af76b30675efc SHA512 f7d50b26656cd83f13ee24412ca97ab5ffe325c13d32855f9e8c788d5c8a11cb942c12d6888c4992c037320500265441eba9bc8e4eb5c21190eb372abd6b4451 WHIRLPOOL c97693bf54b0dba3f583891714edb63971b2669d1fc0ed41eb94009cfa2b78e37fdee42db325c74f4e4fc76cf29af5fd7cc67b598a3d672623ec1c392561ba86
22 DIST pidgin-sipe-1.20.1.tar.gz 1142762 SHA256 a3538f3eed3a5e9a7f2e12622d9283ddbba88d752b4e6c3c2cd5774a3bc48717 SHA512 26363937ca4d2a3e3c759a4ba2e8039f0e90f25e9fa66f3e1a4cc976c037d9878a1c777a24ddea9d5ce308908e92cd5c80f0e90a574e03ff40e09f863e6d6755 WHIRLPOOL 40e043eca221e4bbd961bbfaf7c2369408f42b97cddf727e0e45ea516049a4fddd08a4481d75dea25870b87f2d367d01c578cbb3e4288c01af71ea0a145f8cbb
23 +DIST pidgin-sipe-1.21.1.tar.gz 1212621 SHA256 92cc5bc581e7b500ffcce51707e003608d5f471c2785500facf63fcab62d7336 SHA512 d9b5ad67967c35e29d6742d9d09346c7702a339450de7522aad73f0b379505f24104a306292ee91960c679498073376081479b335eab8eba090e492f444b5378 WHIRLPOOL 730d4bc6bf0007ec2d52cfd25e9b96a4e0cb2dfdef528b98971416e67b2242a7d72ce41de32bf58bb52591ea85f46174a83091d75a6dc4fcefe4522c83f3e678
24
25 diff --git a/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild b/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
26 new file mode 100644
27 index 0000000..83758ba
28 --- /dev/null
29 +++ b/x11-plugins/pidgin-sipe/pidgin-sipe-1.21.1.ebuild
30 @@ -0,0 +1,67 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +inherit autotools eutils
38 +
39 +DESCRIPTION="Pidgin Plug-in SIPE (Sip Exchange Protocol)"
40 +HOMEPAGE="http://sipe.sourceforge.net/"
41 +SRC_URI="mirror://sourceforge/sipe/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +IUSE="debug kerberos ocs2005-message-hack openssl telepathy voice"
48 +
49 +RDEPEND=">=dev-libs/gmime-2.4.16
50 + dev-libs/libxml2
51 + openssl? ( dev-libs/openssl:= )
52 + !openssl? ( dev-libs/nss )
53 + kerberos? ( virtual/krb5 )
54 + voice? (
55 + >=dev-libs/glib-2.28.0
56 + >=net-libs/libnice-0.1.0
57 + media-libs/gstreamer:0.10
58 + >=net-im/pidgin-2.8.0
59 + )
60 + !voice? (
61 + >=dev-libs/glib-2.12.0:2
62 + net-im/pidgin
63 + )
64 + telepathy? (
65 + >=sys-apps/dbus-1.1.0
66 + >=dev-libs/dbus-glib-0.61
67 + >=dev-libs/glib-2.28:2
68 + >=net-libs/telepathy-glib-0.18.0
69 + )
70 +"
71 +
72 +DEPEND="dev-util/intltool
73 + virtual/pkgconfig
74 + ${RDEPEND}
75 +"
76 +
77 +src_prepare() {
78 + eautoreconf
79 +}
80 +
81 +src_configure() {
82 + econf \
83 + --enable-purple \
84 + --disable-quality-check \
85 + $(use_enable telepathy) \
86 + $(use_enable debug) \
87 + $(use_enable ocs2005-message-hack) \
88 + $(use_with kerberos krb5) \
89 + $(use_with voice vv) \
90 + $(use_enable !openssl nss) \
91 + $(use_enable openssl)
92 +}
93 +
94 +src_install() {
95 + emake install DESTDIR="${D}"
96 + dodoc AUTHORS ChangeLog NEWS TODO README
97 +}