Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/gloox: gloox-1.0.10-r1.ebuild ChangeLog gloox-1.0.10.ebuild
Date: Sun, 29 Jun 2014 12:08:27
Message-Id: 20140629120823.461782004E@flycatcher.gentoo.org
1 pinkbyte 14/06/29 12:08:23
2
3 Modified: ChangeLog
4 Added: gloox-1.0.10-r1.ebuild
5 Removed: gloox-1.0.10.ebuild
6 Log:
7 Revision bump: add support for user patches, do not build examples, prune unneeded libtool files, conditionally build static library, set proper condition on debug builds, build tests only when it's needed. Drop old revision
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
10
11 Revision Changes Path
12 1.24 net-libs/gloox/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/gloox/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 29 Jun 2014 11:15:19 -0000 1.23
25 +++ ChangeLog 29 Jun 2014 12:08:23 -0000 1.24
26 @@ -1,6 +1,15 @@
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.23 2014/06/29 11:15:19 pinkbyte Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gloox/ChangeLog,v 1.24 2014/06/29 12:08:23 pinkbyte Exp $
31 +
32 +*gloox-1.0.10-r1 (29 Jun 2014)
33 +
34 + 29 Jun 2014; Sergey Popov <pinkbyte@g.o> -gloox-1.0.10.ebuild,
35 + +gloox-1.0.10-r1.ebuild:
36 + Revision bump: add support for user patches, do not build examples, prune
37 + unneeded libtool files, conditionally build static library, set proper
38 + condition on debug builds, build tests only when it's needed. Drop old
39 + revision
40
41 29 Jun 2014; Sergey Popov <pinkbyte@g.o> gloox-1.0.9.ebuild:
42 Stable on x86, wrt bug #495850
43
44
45
46 1.1 net-libs/gloox/gloox-1.0.10-r1.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/gloox-1.0.10-r1.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gloox/gloox-1.0.10-r1.ebuild?rev=1.1&content-type=text/plain
50
51 Index: gloox-1.0.10-r1.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/net-libs/gloox/gloox-1.0.10-r1.ebuild,v 1.1 2014/06/29 12:08:23 pinkbyte Exp $
56
57 EAPI=5
58
59 inherit eutils
60
61 MY_P="${P/_/-}"
62 DESCRIPTION="A portable high-level Jabber/XMPP library for C++"
63 HOMEPAGE="http://camaya.net/gloox"
64 SRC_URI="http://camaya.net/download/${MY_P}.tar.bz2"
65
66 LICENSE="GPL-3"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~arm ~x86"
69 IUSE="debug gnutls idn ssl static-libs test zlib"
70
71 DEPEND="idn? ( net-dns/libidn )
72 gnutls? ( net-libs/gnutls )
73 ssl? ( dev-libs/openssl )
74 zlib? ( sys-libs/zlib )"
75
76 RDEPEND="${DEPEND}"
77
78 S="${WORKDIR}/${MY_P}"
79
80 src_prepare() {
81 epatch_user
82 }
83
84 src_configure() {
85 # Examples are not installed anyway, so - why should we build them?
86 econf \
87 --without-examples \
88 $(use debug && echo "--enable-debug") \
89 $(use_enable static-libs static) \
90 $(use_with idn libidn) \
91 $(use_with gnutls) \
92 $(use_with ssl openssl) \
93 $(use_with test tests) \
94 $(use_with zlib)
95 }
96
97 src_install() {
98 default
99 prune_libtool_files
100 }