diff options
author | 2008-05-29 00:54:53 +0000 | |
---|---|---|
committer | 2008-05-29 00:54:53 +0000 | |
commit | 425ec696eda800afa6a31b565419fd8ab8aa561d (patch) | |
tree | d51fdd9f8155cbeafdaa5788417304705c3f4de7 | |
parent | Major ebuild cleanup. Disabled failing tests and added patched from (diff) | |
download | sci-425ec696eda800afa6a31b565419fd8ab8aa561d.tar.gz sci-425ec696eda800afa6a31b565419fd8ab8aa561d.tar.bz2 sci-425ec696eda800afa6a31b565419fd8ab8aa561d.zip |
new package: libibvpp
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@1108 32389bae-6d03-0410-99cf-db05cde120eb
-rw-r--r-- | sys-cluster/libibvpp/ChangeLog | 10 | ||||
-rw-r--r-- | sys-cluster/libibvpp/libibvpp-0.1.ebuild | 28 | ||||
-rw-r--r-- | sys-cluster/libibvpp/metadata.xml | 8 |
3 files changed, 46 insertions, 0 deletions
diff --git a/sys-cluster/libibvpp/ChangeLog b/sys-cluster/libibvpp/ChangeLog new file mode 100644 index 000000000..4e1714d5d --- /dev/null +++ b/sys-cluster/libibvpp/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sys_cluster/libibvpp +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*libibvpp-0.1 (28 May 2008) + + 28 May 2008; Bryan Green <bryan.d.green@nasa.gov> + +libibverbs-0.1.ebuild: + Initial import + diff --git a/sys-cluster/libibvpp/libibvpp-0.1.ebuild b/sys-cluster/libibvpp/libibvpp-0.1.ebuild new file mode 100644 index 000000000..e8c4e19e3 --- /dev/null +++ b/sys-cluster/libibvpp/libibvpp-0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +SLOT="0" +LICENSE="NOSA BSD-2" + +KEYWORDS="~amd64 ~x86" + +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/downloads/libibvpp-${PV}.tar.gz" + +IUSE="" + +DEPEND="|| ( sys-cluster/libibverbs sys-cluster/openib-userspace )" +RDEPEND="${DEPEND}" + +src_compile() { + econf || die "could not configure" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc README AUTHORS COPYING ChangeLog +} + diff --git a/sys-cluster/libibvpp/metadata.xml b/sys-cluster/libibvpp/metadata.xml new file mode 100644 index 000000000..401e270ed --- /dev/null +++ b/sys-cluster/libibvpp/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>cluster</herd> +<longdescription> +libibvpp is a C++ wrapper around libibverbs, which is part of OpenIB. +</longdescription> +</pkgmetadata> |