diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-01-04 16:01:01 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-01-04 17:25:36 -0500 |
commit | c6cca10a3d2219c64ef0bfba54fb82526223c252 (patch) | |
tree | bdc872cefde6d6b43b708764207786669e70aa49 /sys-firmware/seabios/seabios-1.8.2.ebuild | |
parent | x11-libs/vte: drop old revisions (diff) | |
download | gentoo-c6cca10a3d2219c64ef0bfba54fb82526223c252.tar.gz gentoo-c6cca10a3d2219c64ef0bfba54fb82526223c252.tar.bz2 gentoo-c6cca10a3d2219c64ef0bfba54fb82526223c252.zip |
sys-firmware/seabios: fix binary logic #570876#7
Previous commit here incorrectly nested the amd64 & x86 flags.
Reported-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-firmware/seabios/seabios-1.8.2.ebuild')
-rw-r--r-- | sys-firmware/seabios/seabios-1.8.2.ebuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys-firmware/seabios/seabios-1.8.2.ebuild b/sys-firmware/seabios/seabios-1.8.2.ebuild index 02b9e6f0fb29..bc072f1ed64e 100644 --- a/sys-firmware/seabios/seabios-1.8.2.ebuild +++ b/sys-firmware/seabios/seabios-1.8.2.ebuild @@ -38,11 +38,14 @@ REQUIRED_USE="debug? ( !binary ) !amd64? ( !x86? ( binary ) )" # The amd64/x86 check is needed to workaround #570892. +SOURCE_DEPEND=" + >=sys-power/iasl-20060912 + ${PYTHON_DEPS}" DEPEND=" - amd64? ( x86? ( !binary? ( - >=sys-power/iasl-20060912 - ${PYTHON_DEPS} - ) ) )" + !binary? ( + amd64? ( ${SOURCE_DEPEND} ) + x86? ( ${SOURCE_DEPEND} ) + )" RDEPEND="" pkg_pretend() { |