Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 668680
Collapse All | Expand All

(-)a/eclass/cargo.eclass (-4 / +3 lines)
Lines 1-4 Link Here
1
# Copyright 1999-2016 Gentoo Foundation
1
# Copyright 1999-2018 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
3
4
# @ECLASS: cargo.eclass
4
# @ECLASS: cargo.eclass
Lines 16-23 CARGO_DEPEND="" Link Here
16
[[ ${CATEGORY}/${PN} != dev-util/cargo ]] && CARGO_DEPEND="virtual/cargo"
16
[[ ${CATEGORY}/${PN} != dev-util/cargo ]] && CARGO_DEPEND="virtual/cargo"
17
17
18
case ${EAPI} in
18
case ${EAPI} in
19
	6) : DEPEND="${DEPEND} ${CARGO_DEPEND}";;
19
	6) DEPEND="${CARGO_DEPEND}";;
20
	7) : BDEPEND="${BDEPEND} ${CARGO_DEPEND}";;
20
	7) BDEPEND="${CARGO_DEPEND}";;
21
	*) die "EAPI=${EAPI:-0} is not supported" ;;
21
	*) die "EAPI=${EAPI:-0} is not supported" ;;
22
esac
22
esac
23
23
24
- 

Return to bug 668680