# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/userspace-rcu/userspace-rcu-0.7.3.ebuild,v 1.1 2012/06/12 13:41:28 scarabeus Exp $ EAPI=4 DESCRIPTION="userspace RCU (read-copy-update) library" HOMEPAGE="http://lttng.org/urcu" SRC_URI="http://lttng.org/files/urcu/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="static-libs test" RDEPEND="" DEPEND="${RDEPEND} test? ( sys-process/time ) " DOCS=( "README" "ChangeLog" ) src_configure() { econf \ --docdir="${EPREFIX}/usr/share/doc/${PF}" \ $(use_enable static-libs static) } src_install() { default find "${ED}" -name '*.la' -exec rm -f {} + }