Gentoo Archives: gentoo-commits

From: Priit Laes <plaes@×××××.org>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: net-libs/glib-networking/
Date: Sun, 29 Jan 2012 08:26:35
Message-Id: 48ee6bcb62b6088d38f3bcf8b43e2a6ed50bc377.plaes@gentoo
1 commit: 48ee6bcb62b6088d38f3bcf8b43e2a6ed50bc377
2 Author: Priit Laes <plaes <AT> plaes <DOT> org>
3 AuthorDate: Sun Jan 29 08:18:59 2012 +0000
4 Commit: Priit Laes <plaes <AT> plaes <DOT> org>
5 CommitDate: Sun Jan 29 08:19:18 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=48ee6bcb
7
8 net-libs/glib-networking: Add 2.31.6 to overlay
9
10 ---
11 .../glib-networking/glib-networking-2.31.6.ebuild | 49 ++++++++++++++++++++
12 1 files changed, 49 insertions(+), 0 deletions(-)
13
14 diff --git a/net-libs/glib-networking/glib-networking-2.31.6.ebuild b/net-libs/glib-networking/glib-networking-2.31.6.ebuild
15 new file mode 100644
16 index 0000000..cf94aa7
17 --- /dev/null
18 +++ b/net-libs/glib-networking/glib-networking-2.31.6.ebuild
19 @@ -0,0 +1,49 @@
20 +# Copyright 1999-2012 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: /var/cvsroot/gentoo-x86/net-libs/glib-networking/glib-networking-2.30.2.ebuild,v 1.2 2012/01/18 06:48:45 tetromino Exp $
23 +
24 +EAPI="4"
25 +GCONF_DEBUG="no"
26 +GNOME2_LA_PUNT="yes"
27 +
28 +inherit gnome2 virtualx
29 +
30 +DESCRIPTION="Network-related giomodules for glib"
31 +HOMEPAGE="http://git.gnome.org/browse/glib-networking/"
32 +
33 +LICENSE="LGPL-2"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
36 +IUSE="+gnome +libproxy +ssl test" # pkcs11
37 +
38 +# pkcs support requires gnutls-2.12.8, p11-kit-0.8
39 +RDEPEND=">=dev-libs/glib-2.31.6:2
40 + gnome? ( gnome-base/gsettings-desktop-schemas )
41 + libproxy? ( >=net-libs/libproxy-0.4.6-r3 )
42 + ssl? (
43 + app-misc/ca-certificates
44 + >=net-libs/gnutls-2.11.0 )
45 +"
46 +DEPEND="${RDEPEND}
47 + >=dev-util/intltool-0.35.0
48 + >=dev-util/pkgconfig-0.9
49 + sys-devel/gettext
50 + test? ( sys-apps/dbus[X] )"
51 +# eautoreconf needs >=sys-devel/autoconf-2.65:2.5
52 +
53 +pkg_setup() {
54 + # AUTHORS, ChangeLog are empty
55 + DOCS="NEWS README"
56 + G2CONF="${G2CONF}
57 + --disable-static
58 + --with-ca-certificates="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt
59 + $(use_with gnome gnome-proxy)
60 + $(use_with libproxy)
61 + $(use_with ssl gnutls)
62 + --without-pkcs11"
63 + #$(use_with pkcs11 pkcs11)
64 +}
65 +
66 +src_test() {
67 + Xemake check
68 +}