diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-05-08 12:20:46 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-05-08 12:20:46 +0000 |
commit | 92c434df32be4725f44f49bcfb8455bf915971ad (patch) | |
tree | eed90a677d702aa7bbf1d07b883a095a4576cf12 /eclass | |
parent | stable x86, bug 366329 (diff) | |
download | historical-92c434df32be4725f44f49bcfb8455bf915971ad.tar.gz historical-92c434df32be4725f44f49bcfb8455bf915971ad.tar.bz2 historical-92c434df32be4725f44f49bcfb8455bf915971ad.zip |
All input drivers require inputproto so just handle it in eclass.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xorg-2.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/xorg-2.eclass b/eclass/xorg-2.eclass index ead506d29ac1..040e07bb0b01 100644 --- a/eclass/xorg-2.eclass +++ b/eclass/xorg-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.41 2011/04/20 12:48:38 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.42 2011/05/08 12:20:46 scarabeus Exp $ # # @ECLASS: xorg-2.eclass # @MAINTAINER: @@ -216,6 +216,11 @@ if [[ -n "${DRIVER}" ]]; then " fi if [[ -n "${DRIVER}" && ${PN} == xf86-video-* ]]; then + DEPEND+=" + x11-proto/inputproto + " +fi +if [[ -n "${DRIVER}" && ${PN} == xf86-video-* ]]; then COMMON_DEPEND+=" x11-libs/libpciaccess " |