You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
751 B
29 lines
751 B
# Copyright 1999-2015 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.8.4.ebuild,v 1.2 2015/05/15 13:11:31 blueness Exp $
|
|
|
|
EAPI=5
|
|
|
|
inherit autotools-utils
|
|
|
|
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/2" # subslot = soname version
|
|
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
|
|
IUSE="static-libs test"
|
|
|
|
DEPEND="test? ( sys-process/time )"
|
|
|
|
# tests fail with separate build dir
|
|
AUTOTOOLS_IN_SOURCE_BUILD=1
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
--docdir="${EPREFIX}/usr/share/doc/${PF}"
|
|
)
|
|
autotools-utils_src_configure
|
|
}
|