diff options
-rw-r--r-- | net-libs/nghttp2/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/nghttp2/nghttp2-0.7.15.ebuild | 8 | ||||
-rw-r--r-- | net-libs/nghttp2/nghttp2-1.0.1.ebuild | 8 |
3 files changed, 19 insertions, 3 deletions
diff --git a/net-libs/nghttp2/ChangeLog b/net-libs/nghttp2/ChangeLog index 14d1dea345bf..0825c98bad6d 100644 --- a/net-libs/nghttp2/ChangeLog +++ b/net-libs/nghttp2/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/nghttp2 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/ChangeLog,v 1.1 2015/05/24 13:55:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/ChangeLog,v 1.2 2015/06/04 04:13:59 vapier Exp $ + + 04 Jun 2015; Mike Frysinger <vapier@gentoo.org> nghttp2-0.7.15.ebuild, + nghttp2-1.0.1.ebuild: + Fix bashism in configure test #550962 by Mikael Magnusson. *nghttp2-9999 (24 May 2015) *nghttp2-1.0.1 (24 May 2015) diff --git a/net-libs/nghttp2/nghttp2-0.7.15.ebuild b/net-libs/nghttp2/nghttp2-0.7.15.ebuild index 384172c36b56..c26919d95b52 100644 --- a/net-libs/nghttp2/nghttp2-0.7.15.ebuild +++ b/net-libs/nghttp2/nghttp2-0.7.15.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-0.7.15.ebuild,v 1.1 2015/05/24 13:55:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-0.7.15.ebuild,v 1.2 2015/06/04 04:13:59 vapier Exp $ # TODO: Add python support. @@ -37,6 +37,12 @@ DEPEND="${RDEPEND} virtual/pkgconfig test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )" +src_prepare() { + sed -i \ + -e '/test.*have_jansson/s:==:=:' \ + configure || die #550962 +} + multilib_src_configure() { ECONF_SOURCE=${S} \ econf \ diff --git a/net-libs/nghttp2/nghttp2-1.0.1.ebuild b/net-libs/nghttp2/nghttp2-1.0.1.ebuild index 6019f25807c5..57dbc1596fa3 100644 --- a/net-libs/nghttp2/nghttp2-1.0.1.ebuild +++ b/net-libs/nghttp2/nghttp2-1.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-1.0.1.ebuild,v 1.1 2015/05/24 13:55:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-1.0.1.ebuild,v 1.2 2015/06/04 04:13:59 vapier Exp $ # TODO: Add python support. @@ -38,6 +38,12 @@ DEPEND="${RDEPEND} virtual/pkgconfig test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )" +src_prepare() { + sed -i \ + -e '/test.*have_jansson/s:==:=:' \ + configure || die #550962 +} + multilib_src_configure() { ECONF_SOURCE=${S} \ econf \ |