Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/gloox: gloox-1.0.13.ebuild ChangeLog gloox-1.0.11.ebuild gloox-1.0.12.ebuild
Date: Mon, 09 Feb 2015 16:52:39
Message-Id: 20150209165234.7A07611679@oystercatcher.gentoo.org
1 mrueg 15/02/09 16:52:34
2
3 Modified: ChangeLog
4 Added: gloox-1.0.13.ebuild
5 Removed: gloox-1.0.11.ebuild gloox-1.0.12.ebuild
6 Log:
7 Version bump. Remove old.
8
9 (Portage version: 2.2.16/cvs/Linux x86_64, signed Manifest commit with key )
10
11 Revision Changes Path
12 1.30 net-libs/gloox/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/ChangeLog?rev=1.30&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/ChangeLog?rev=1.30&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/ChangeLog?r1=1.29&r2=1.30
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/gloox/ChangeLog,v
21 retrieving revision 1.29
22 retrieving revision 1.30
23 diff -u -r1.29 -r1.30
24 --- ChangeLog 26 Nov 2014 02:42:58 -0000 1.29
25 +++ ChangeLog 9 Feb 2015 16:52:34 -0000 1.30
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/gloox
28 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gloox/ChangeLog,v 1.29 2014/11/26 02:42:58 mrueg Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gloox/ChangeLog,v 1.30 2015/02/09 16:52:34 mrueg Exp $
32 +
33 +*gloox-1.0.13 (09 Feb 2015)
34 +
35 + 09 Feb 2015; Manuel RĂ¼ger <mrueg@g.o> +gloox-1.0.13.ebuild,
36 + -gloox-1.0.11.ebuild, -gloox-1.0.12.ebuild:
37 + Version bump. Remove old.
38
39 *gloox-1.0.12 (26 Nov 2014)
40
41
42
43
44 1.1 net-libs/gloox/gloox-1.0.13.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/gloox-1.0.13.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/gloox-1.0.13.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gloox-1.0.13.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-libs/gloox/gloox-1.0.13.ebuild,v 1.1 2015/02/09 16:52:34 mrueg Exp $
54
55 EAPI=5
56
57 inherit eutils
58
59 MY_P="${P/_/-}"
60 DESCRIPTION="A portable high-level Jabber/XMPP library for C++"
61 HOMEPAGE="http://camaya.net/gloox"
62 SRC_URI="http://camaya.net/download/${MY_P}.tar.bz2"
63
64 LICENSE="GPL-3"
65 SLOT="0/13"
66 KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~ia64 ~sparc ~x86"
67 IUSE="debug gnutls idn ssl static-libs test zlib"
68
69 DEPEND="idn? ( net-dns/libidn )
70 gnutls? ( net-libs/gnutls )
71 ssl? ( dev-libs/openssl )
72 zlib? ( sys-libs/zlib )"
73
74 RDEPEND="${DEPEND}"
75
76 S=${WORKDIR}/${MY_P}
77
78 src_prepare() {
79 epatch_user
80 }
81
82 src_configure() {
83 # Examples are not installed anyway, so - why should we build them?
84 econf \
85 --without-examples \
86 $(use debug && echo "--enable-debug") \
87 $(use_enable static-libs static) \
88 $(use_with idn libidn) \
89 $(use_with gnutls) \
90 $(use_with ssl openssl) \
91 $(use_with test tests) \
92 $(use_with zlib)
93 }
94
95 src_install() {
96 default
97 prune_libtool_files
98 }