diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-01-23 09:44:24 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-01-23 09:44:24 +0000 |
commit | 35b059bc55fa9f362e864a6eb3077dc698e98ca6 (patch) | |
tree | ba5e404882457b42453db02ae7d0dd5daea0c48c /eclass | |
parent | Remove unused version. (diff) | |
download | historical-35b059bc55fa9f362e864a6eb3077dc698e98ca6.tar.gz historical-35b059bc55fa9f362e864a6eb3077dc698e98ca6.tar.bz2 historical-35b059bc55fa9f362e864a6eb3077dc698e98ca6.zip |
Add support for license server, #447262
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/intel-sdp.eclass | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index abe458b051fd..8bb2054391dc 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.631 2013/01/21 19:28:16 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.632 2013/01/23 09:44:24 jlec Exp $ + + 23 Jan 2013; Justin Lecher <jlec@gentoo.org> intel-sdp.eclass: + Add support for license server, #447262 21 Jan 2013; Michał Górny <mgorny@gentoo.org> python-any-r1.eclass, python-r1.eclass, python-single-r1.eclass, python-utils-r1.eclass: diff --git a/eclass/intel-sdp.eclass b/eclass/intel-sdp.eclass index 2ae38d1c8d24..f39d6d09fdbf 100644 --- a/eclass/intel-sdp.eclass +++ b/eclass/intel-sdp.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.6 2013/01/18 15:00:31 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.7 2013/01/23 09:44:24 jlec Exp $ # @ECLASS: intel-sdp.eclass # @MAINTAINER: @@ -260,6 +260,12 @@ intel-sdp_pkg_pretend() { : ${CHECKREQS_DISK_BUILD:=256M} check-reqs_pkg_pretend + if [[ $(echo ${INTEL_LICENSE_FILE} | grep -q @) ]]; then + einfo "Looks like you are using following license server:" + einfo " ${INTEL_LICENSE_FILE}" + return 0 + fi + dirs=( "${INTEL_SDP_EDIR}/licenses" "${INTEL_SDP_EDIR}/Licenses" |