diff options
author | 2014-08-05 08:43:28 +0000 | |
---|---|---|
committer | 2014-08-05 08:43:28 +0000 | |
commit | eba00ce463c9fb162fc4b1f56345ec3a77a8474b (patch) | |
tree | 73ed7e88feaa3e5a4fe05df9e6eb36cc7de03d31 /app-arch/lz4/lz4-0_p120.ebuild | |
parent | Add USE=infiniband to control librdma automagic dep. (diff) | |
download | historical-eba00ce463c9fb162fc4b1f56345ec3a77a8474b.tar.gz historical-eba00ce463c9fb162fc4b1f56345ec3a77a8474b.tar.bz2 historical-eba00ce463c9fb162fc4b1f56345ec3a77a8474b.zip |
Add USE=valgrind, bring back ~alpha ~hppa ~ia64 (bug #519084).
Package-Manager: portage-2.2.11/cvs/Linux x86_64
Manifest-Sign-Key: 0xA792A613
Diffstat (limited to 'app-arch/lz4/lz4-0_p120.ebuild')
-rw-r--r-- | app-arch/lz4/lz4-0_p120.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/app-arch/lz4/lz4-0_p120.ebuild b/app-arch/lz4/lz4-0_p120.ebuild index 00cb57857fb1..c2e925c99e89 100644 --- a/app-arch/lz4/lz4-0_p120.ebuild +++ b/app-arch/lz4/lz4-0_p120.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lz4/lz4-0_p120.ebuild,v 1.1 2014/07/31 17:41:30 ryao Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lz4/lz4-0_p120.ebuild,v 1.2 2014/08/05 08:43:26 jer Exp $ EAPI=5 @@ -14,7 +14,7 @@ else MY_PV="r${PV##0_p}" MY_P="${PN}-${MY_PV}" SRC_URI="https://github.com/Cyan4973/lz4/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~mips ~s390 ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~s390 ~x86 ~amd64-linux ~x86-linux" S="${WORKDIR}/${MY_P}" fi @@ -23,12 +23,14 @@ HOMEPAGE="https://code.google.com/p/lz4/" LICENSE="BSD-2 GPL-2" SLOT="0" -IUSE="test" +IUSE="test valgrind" -RDEPEND="" -DEPEND="test? ( dev-util/valgrind )" +DEPEND="test? ( valgrind? ( dev-util/valgrind ) )" src_prepare() { + if ! use valgrind; then + sed -i -e '/^test:/s|test-mem||g' programs/Makefile || die + fi multilib_copy_sources } |