Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libdexter: libdexter-0.2.1-r1.ebuild ChangeLog
Date: Wed, 01 Jan 2014 19:21:08
Message-Id: 20140101192104.C9BC42004C@flycatcher.gentoo.org
1 pacho 14/01/01 19:21:04
2
3 Modified: ChangeLog
4 Added: libdexter-0.2.1-r1.ebuild
5 Log:
6 Disable gnutls support due bug #456306 to stop blocking gnutls-3 stabilization
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.6 net-libs/libdexter/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdexter/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdexter/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdexter/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libdexter/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 17 Jan 2013 17:37:20 -0000 1.5
24 +++ ChangeLog 1 Jan 2014 19:21:04 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-libs/libdexter
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libdexter/ChangeLog,v 1.5 2013/01/17 17:37:20 pacho Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libdexter/ChangeLog,v 1.6 2014/01/01 19:21:04 pacho Exp $
31 +
32 +*libdexter-0.2.1-r1 (01 Jan 2014)
33 +
34 + 01 Jan 2014; Pacho Ramos <pacho@g.o> +libdexter-0.2.1-r1.ebuild:
35 + Disable gnutls support due bug #456306 to stop blocking gnutls-3 stabilization
36
37 *libdexter-0.2.1 (17 Jan 2013)
38
39
40
41
42 1.1 net-libs/libdexter/libdexter-0.2.1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdexter/libdexter-0.2.1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdexter/libdexter-0.2.1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libdexter-0.2.1-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libdexter/libdexter-0.2.1-r1.ebuild,v 1.1 2014/01/01 19:21:04 pacho Exp $
52
53 EAPI=5
54 inherit gnome2-utils eutils
55
56 DESCRIPTION="A plugin-based, distributed sampling library"
57 HOMEPAGE="http://libdexter.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/libdexter/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63
64 # gnutls disabled as will break with gnutls-3, bug #456306
65 IUSE="tcpd" #gnutls
66
67 #gnutls? ( >=net-libs/gnutls-1.4.4:= )
68 RDEPEND="
69 tcpd? ( sys-apps/tcp-wrappers:= )
70 "
71 DEPEND="${RDEPEND}
72 virtual/pkgconfig
73 >=dev-libs/glib-2.30:2
74 "
75
76 src_prepare() {
77 gnome2_disable_deprecation_warning
78 }
79
80 src_configure() {
81 econf \
82 $(use_enable tcpd tcp-wrappers) \
83 --disable-tls
84 # $(use_enable gnutls tls)
85 }
86
87 src_install() {
88 default
89 prune_libtool_files --modules
90 }