aboutsummaryrefslogtreecommitdiff
blob: 76c03573e365de9aff470fe223ec274cb76e708d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

SLOT="0"
LICENSE="|| ( GPL-2 BSD-2 )"

KEYWORDS="~x86 ~amd64"

DESCRIPTION="a library for using InfiniBand 'verbs' for direct access to IB hardware from userspace"
SRC_URI="http://www.openfabrics.org/downloads/${P}.tar.gz"
HOMEPAGE="http://www.openfabrics.org/"

IUSE=""

DEPEND="sys-fs/sysfsutils"
RDEPEND="${DEPEND}
	!sys-cluster/openib-userspace"

src_compile() {
	econf || die "could not configure"
	emake || die "emake failed"
}

src_install() {
	make DESTDIR="${D}" install || die "install failed"
	dodoc README AUTHORS ChangeLog
	docinto examples
	dodoc examples/*.[ch]
}