31 lines
697 B
Bash
31 lines
697 B
Bash
# Copyright 1999-2011 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.6.7.ebuild,v 1.1 2011/12/29 10:34:50 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" "API.txt" "ChangeLog" )
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable static-libs static)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}" -name '*.la' -exec rm -f {} +
|
|
}
|