diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-11-15 20:13:27 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-11-15 20:13:27 +0000 |
commit | 86a1616a8112a3db887e6a439f01a40b3d11ec9a (patch) | |
tree | ce0e2837cacc4756d0a36d2e88c215f7157a41ac /net-libs/libsoup | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-86a1616a8112a3db887e6a439f01a40b3d11ec9a.tar.gz gentoo-2-86a1616a8112a3db887e6a439f01a40b3d11ec9a.tar.bz2 gentoo-2-86a1616a8112a3db887e6a439f01a40b3d11ec9a.zip |
Version bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-libs/libsoup')
-rw-r--r-- | net-libs/libsoup/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libsoup/libsoup-2.42.3.1.ebuild | 65 |
2 files changed, 71 insertions, 1 deletions
diff --git a/net-libs/libsoup/ChangeLog b/net-libs/libsoup/ChangeLog index 7457169e074e..2ced4d743bb5 100644 --- a/net-libs/libsoup/ChangeLog +++ b/net-libs/libsoup/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/libsoup # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.311 2013/10/17 20:38:30 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.312 2013/11/15 20:13:27 pacho Exp $ + +*libsoup-2.42.3.1 (15 Nov 2013) + + 15 Nov 2013; Pacho Ramos <pacho@gentoo.org> +libsoup-2.42.3.1.ebuild: + Version bump 17 Oct 2013; Markus Meier <maekke@gentoo.org> libsoup-2.40.3.ebuild: arm stable, bug #476364 diff --git a/net-libs/libsoup/libsoup-2.42.3.1.ebuild b/net-libs/libsoup/libsoup-2.42.3.1.ebuild new file mode 100644 index 000000000000..89848aca9610 --- /dev/null +++ b/net-libs/libsoup/libsoup-2.42.3.1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.42.3.1.ebuild,v 1.1 2013/11/15 20:13:27 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="yes" +GNOME2_LA_PUNT="yes" +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit gnome2 python-any-r1 + +DESCRIPTION="An HTTP library implementation in C" +HOMEPAGE="https://wiki.gnome.org/LibSoup" + +LICENSE="LGPL-2+" +SLOT="2.4" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="debug +introspection samba ssl test" + +RDEPEND=" + >=dev-libs/glib-2.36.0:2 + >=dev-libs/libxml2-2:2 + dev-db/sqlite:3 + >=net-libs/glib-networking-2.30.0[ssl?] + introspection? ( >=dev-libs/gobject-introspection-0.9.5 ) + samba? ( net-fs/samba ) +" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + >=dev-util/intltool-0.35 + >=dev-util/gtk-doc-am-1.10 + sys-devel/gettext + virtual/pkgconfig" +# test? ( www-servers/apache[ssl,apache2_modules_auth_digest,apache2_modules_alias,apache2_modules_auth_basic, +# apache2_modules_authn_file,apache2_modules_authz_host,apache2_modules_authz_user,apache2_modules_dir, +# apache2_modules_mime,apache2_modules_proxy,apache2_modules_proxy_http,apache2_modules_proxy_connect] +# dev-lang/php[apache2,xmlrpc] +# net-misc/curl +# net-libs/glib-networking[ssl])" + +src_prepare() { + if ! use test; then + # don't waste time building tests (bug #226271) + sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \ + || die "sed failed" + fi + + gnome2_src_prepare +} + +src_configure() { + # FIXME: we need addpredict to workaround bug #324779 until + # root cause (bug #249496) is solved + addpredict /usr/share/snmp/mibs/.index + + # Disable apache tests until they are usable on Gentoo, bug #326957 + gnome2_src_configure \ + --disable-more-warnings \ + --disable-static \ + --disable-tls-check \ + --without-gnome \ + --without-apache-httpd \ + $(use_enable introspection) \ + $(use_with samba ntlm-auth '${EPREFIX}'/usr/bin/ntlm_auth) +} |