diff options
author | 2013-10-13 09:55:57 +0000 | |
---|---|---|
committer | 2013-10-13 09:55:57 +0000 | |
commit | 1655bd576f55546ea91584eb9cdd9b04d5212af4 (patch) | |
tree | 1415b865e44d0227ea2eddda2aa5e212452785c2 /net-libs | |
parent | Also compatible with python3_3 (diff) | |
download | gentoo-2-1655bd576f55546ea91584eb9cdd9b04d5212af4.tar.gz gentoo-2-1655bd576f55546ea91584eb9cdd9b04d5212af4.tar.bz2 gentoo-2-1655bd576f55546ea91584eb9cdd9b04d5212af4.zip |
Fix zlib support in tests, bug 487432
(Portage version: 2.2.6-r1/cvs/Linux x86_64, signed Manifest commit with key 0x35899067)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/polarssl/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/polarssl/polarssl-1.3.0.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/net-libs/polarssl/ChangeLog b/net-libs/polarssl/ChangeLog index 893b19b8f63c..23ce59bfbeb2 100644 --- a/net-libs/polarssl/ChangeLog +++ b/net-libs/polarssl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/polarssl # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.61 2013/10/09 17:10:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.62 2013/10/13 09:55:57 tommy Exp $ + + 13 Oct 2013; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> + polarssl-1.3.0.ebuild: + Fix zlib support in tests, bug 487432 09 Oct 2013; Agostino Sarubbo <ago@gentoo.org> polarssl-1.3.0.ebuild: Stable for sparc, wrt bug #487170 diff --git a/net-libs/polarssl/polarssl-1.3.0.ebuild b/net-libs/polarssl/polarssl-1.3.0.ebuild index 9efab70ecad8..ec59eb08e67e 100644 --- a/net-libs/polarssl/polarssl-1.3.0.ebuild +++ b/net-libs/polarssl/polarssl-1.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.3.0.ebuild,v 1.5 2013/10/09 17:10:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.3.0.ebuild,v 1.6 2013/10/13 09:55:57 tommy Exp $ EAPI=5 @@ -47,10 +47,10 @@ src_compile() { src_test() { cd programs || die - emake test/selftest || die "emake selftest failed" + emake test/selftest $(usex zlib "ZLIB=1" "") || die "emake selftest failed" LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../library" ./test/selftest || die "selftest failed" cd "${S}" || die - LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../library" emake check + LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../library" emake check $(usex zlib "ZLIB=1" "") } src_install() { |