summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2012-04-18 16:29:47 +0000
committerAlexey Shvetsov <alexxy@gentoo.org>2012-04-18 16:29:47 +0000
commit7075d80a8e57d31149c33b6079115c2bfe524ccb (patch)
tree2411ac083cc462384fdface9a6fc659f1b10c638 /eclass
parentInitial commit, ebuild by idella4 (diff)
downloadgentoo-2-7075d80a8e57d31149c33b6079115c2bfe524ccb.tar.gz
gentoo-2-7075d80a8e57d31149c33b6079115c2bfe524ccb.tar.bz2
gentoo-2-7075d80a8e57d31149c33b6079115c2bfe524ccb.zip
[eclass] Update openib eclass
Diffstat (limited to 'eclass')
-rw-r--r--eclass/openib.eclass35
1 files changed, 31 insertions, 4 deletions
diff --git a/eclass/openib.eclass b/eclass/openib.eclass
index 84b2570f7106..72dfae3739a6 100644
--- a/eclass/openib.eclass
+++ b/eclass/openib.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/openib.eclass,v 1.2 2011/08/22 04:46:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/openib.eclass,v 1.3 2012/04/18 16:29:47 alexxy Exp $
# @ECLASS: openib.eclass
# @AUTHOR:
@@ -13,7 +13,6 @@ EXPORT_FUNCTIONS src_unpack
HOMEPAGE="http://www.openfabrics.org/"
LICENSE="|| ( GPL-2 BSD-2 )"
-SLOT="0"
# @ECLASS-VARIABLE: OFED_VER
# @DESCRIPTION:
@@ -27,12 +26,35 @@ SLOT="0"
# @DESCRIPTION:
# Defines if src tarball is git snapshot
+SLOT="${OFED_VER}"
+
+OFED_VERSIONS=(
+ "1.5.1"
+ "1.5.2"
+ "1.5.3"
+ "1.5.3.1"
+ "1.5.3.2"
+ "1.5.4"
+ "1.5.4.1"
+ "3.2"
+ )
+
+block_other_ofed_versions() {
+ local slot
+ RDEPEND+=" !sys-infiniband/${PN}:0"
+ for slot in ${OFED_VERSIONS[@]}; do
+ if [[ ${slot} != ${SLOT} ]]; then
+ RDEPEDN+=" !sys-infiniband/${PN}:${slot}"
+ fi
+ done
+}
+
OFED_BASE_VER=$(get_version_component_range 1-3 ${OFED_VER})
SRC_URI="http://www.openfabrics.org/downloads/OFED/ofed-${OFED_BASE_VER}/OFED-${OFED_VER}.tgz"
case ${PN} in
- openib-files)
+ ofed)
MY_PN="ofa_kernel"
;;
*)
@@ -58,7 +80,12 @@ case ${MY_PN} in
;;
esac
-S="${WORKDIR}/${MY_PN}-${MY_PV}"
+# if its snapshot then S may be different
+if [ -z ${OFED_SNAPSHOT} ]; then
+ S="${WORKDIR}/${MY_PN}-${MY_PV}"
+else
+ S="${WORKDIR}/${MY_PN}-${MY_PV}-${OFED_SUFFIX}"
+fi
# @FUNCTION: openib_src_unpack
# @DESCRIPTION: