From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 08CF7138010 for ; Wed, 5 Sep 2012 15:51:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3818A21C030; Wed, 5 Sep 2012 15:49:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E9DF521C030 for ; Wed, 5 Sep 2012 15:48:59 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D82333D7C5 for ; Wed, 5 Sep 2012 15:48:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id BD631E5447 for ; Wed, 5 Sep 2012 15:48:56 +0000 (UTC) From: "Nirbheek Chauhan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nirbheek Chauhan" Message-ID: <1346860102.1effe4d4f8106b59f8056ec87a029532a561f964.nirbheek@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: net-libs/glib-networking/ X-VCS-Repository: proj/gnome X-VCS-Files: net-libs/glib-networking/glib-networking-2.33.12.ebuild X-VCS-Directories: net-libs/glib-networking/ X-VCS-Committer: nirbheek X-VCS-Committer-Name: Nirbheek Chauhan X-VCS-Revision: 1effe4d4f8106b59f8056ec87a029532a561f964 X-VCS-Branch: master Date: Wed, 5 Sep 2012 15:48:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4e493b51-78e8-46e7-b1db-89efb73769f2 X-Archives-Hash: 574b3ad68be851758fad84872227b205 commit: 1effe4d4f8106b59f8056ec87a029532a561f964 Author: Nirbheek Chauhan gentoo org> AuthorDate: Mon Sep 3 20:51:44 2012 +0000 Commit: Nirbheek Chauhan gentoo org> CommitDate: Wed Sep 5 15:48:22 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=1effe4d4 Add net-libs/glib-networking-2.33.12 --- .../glib-networking/glib-networking-2.33.12.ebuild | 76 ++++++++++++++++++++ 1 files changed, 76 insertions(+), 0 deletions(-) diff --git a/net-libs/glib-networking/glib-networking-2.33.12.ebuild b/net-libs/glib-networking/glib-networking-2.33.12.ebuild new file mode 100644 index 0000000..63c5f8a --- /dev/null +++ b/net-libs/glib-networking/glib-networking-2.33.12.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +inherit gnome2 virtualx +if [[ ${PV} = 9999 ]]; then + inherit gnome2-live +fi + +DESCRIPTION="Network-related giomodules for glib" +HOMEPAGE="http://git.gnome.org/browse/glib-networking/" + +LICENSE="LGPL-2" +SLOT="0" +IUSE="+gnome +libproxy smartcard +ssl test" +if [[ ${PV} = 9999 ]]; then + KEYWORDS="" +else + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +fi + +RDEPEND=">=dev-libs/glib-2.33.9:2 + gnome? ( gnome-base/gsettings-desktop-schemas ) + libproxy? ( >=net-libs/libproxy-0.4.6-r3 ) + smartcard? ( + >=app-crypt/p11-kit-0.8 + >=net-libs/gnutls-2.12.8[pkcs11] ) + ssl? ( + app-misc/ca-certificates + >=net-libs/gnutls-2.11.0 ) +" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.35.0 + virtual/pkgconfig + sys-devel/gettext + test? ( sys-apps/dbus[X] )" +# eautoreconf needs >=sys-devel/autoconf-2.65:2.5 + +pkg_setup() { + # AUTHORS, ChangeLog are empty + DOCS="NEWS README" + G2CONF="${G2CONF} + --disable-static + --with-ca-certificates="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt + $(use_with gnome gnome-proxy) + $(use_with libproxy) + $(use_with smartcard pkcs11) + $(use_with ssl gnutls)" +} + +src_prepare() { + gnome2_src_prepare + + if [[ ${PV} != 9999 ]]; then + # Drop DEPRECATED flags + sed -e 's:-D[A-Z_]*DISABLE_DEPRECATED *\\:\\:g' \ + -e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' \ + -i Makefile.{decl,in} \ + proxy/gnome/Makefile.in \ + proxy/libproxy/Makefile.in \ + proxy/tests/Makefile.in \ + tls/gnutls/Makefile.in \ + tls/pkcs11/Makefile.{am,in} \ + tls/tests/Makefile.in || die + sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' \ + tls/pkcs11/Makefile.{am,in} || die + fi +} + +src_test() { + Xemake check +}