blob: 9a5c3f4984f93711c361c0cc6e400e9e09034de8 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-infiniband/libibvpp/libibvpp-0.1.ebuild,v 1.2 2011/07/02 20:30:16 alexxy Exp $
EAPI="4"
SLOT="0"
LICENSE="NOSA BSD-2"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
DESCRIPTION="libibvpp is a C++ wrapper around libibverbs, which is part of OpenIB."
HOMEPAGE="http://opensource.arc.nasa.gov/software/libibvpp/"
SRC_URI="http://opensource.arc.nasa.gov/static/opensource/downloads/${P}.tar.gz"
IUSE=""
DEPEND="
sys-infiniband/libibverbs"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc README AUTHORS ChangeLog
}
|