diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2012-04-18 18:20:56 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2012-04-18 18:20:56 +0000 |
commit | 1d03b0c89f936e228d1f39b1f0dad3e2875cf22e (patch) | |
tree | ca7a7d637dda52c53f7a7d66f74f3d6e1178131c /sys-infiniband | |
parent | [eclass] Document some vars in openib (diff) | |
download | gentoo-2-1d03b0c89f936e228d1f39b1f0dad3e2875cf22e.tar.gz gentoo-2-1d03b0c89f936e228d1f39b1f0dad3e2875cf22e.tar.bz2 gentoo-2-1d03b0c89f936e228d1f39b1f0dad3e2875cf22e.zip |
[sys-infiniband/ofed] fix use usage
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'sys-infiniband')
-rw-r--r-- | sys-infiniband/ofed/ChangeLog | 5 | ||||
-rw-r--r-- | sys-infiniband/ofed/ofed-1.5.4.1.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/sys-infiniband/ofed/ChangeLog b/sys-infiniband/ofed/ChangeLog index 9ac80bc4b13f..42e89fd06144 100644 --- a/sys-infiniband/ofed/ChangeLog +++ b/sys-infiniband/ofed/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-infiniband/ofed # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-infiniband/ofed/ChangeLog,v 1.1 2012/04/18 16:45:04 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-infiniband/ofed/ChangeLog,v 1.2 2012/04/18 18:20:56 alexxy Exp $ + + 18 Apr 2012; Alexey Shvetsov <alexxy@gentoo.org> ofed-1.5.4.1.ebuild: + [sys-infiniband/ofed] fix use usage *ofed-1.5.4.1 (18 Apr 2012) diff --git a/sys-infiniband/ofed/ofed-1.5.4.1.ebuild b/sys-infiniband/ofed/ofed-1.5.4.1.ebuild index 6fdcc4739e1c..ece72c79cddd 100644 --- a/sys-infiniband/ofed/ofed-1.5.4.1.ebuild +++ b/sys-infiniband/ofed/ofed-1.5.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-infiniband/ofed/ofed-1.5.4.1.ebuild,v 1.1 2012/04/18 16:45:04 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-infiniband/ofed/ofed-1.5.4.1.ebuild,v 1.2 2012/04/18 18:20:56 alexxy Exp $ EAPI="4" @@ -85,17 +85,17 @@ src_install() { echo >> ${IB_CONF_DIR}/openib.conf echo "# Load MTHCA" >> ${IB_CONF_DIR}/openib.conf echo "MTHCA_LOAD=yes" >> ${IB_CONF_DIR}/openib.conf - if use ipath; then + if use ofed_drivers_ipath; then echo >> ${IB_CONF_DIR}/openib.conf echo "# Load IPATH" >> ${IB_CONF_DIR}/openib.conf echo "IPATH_LOAD=yes" >> ${IB_CONF_DIR}/openib.conf fi - if use ehca; then + if use ofed_drivers_ehca; then echo >> ${IB_CONF_DIR}/openib.conf echo "# Load eHCA" >> ${IB_CONF_DIR}/openib.conf echo "EHCA_LOAD=yes" >> ${IB_CONF_DIR}/openib.conf fi - if use mlx4; then + if use ofed_drivers_mlx4; then echo >> ${IB_CONF_DIR}/openib.conf echo "# Load MLX4 modules" >> ${IB_CONF_DIR}/openib.conf echo "MLX4_LOAD=yes" >> ${IB_CONF_DIR}/openib.conf |