some missing X11 "*proto" dependencies (#6158)

* fix xinput deps

* adding other x11 proto missing deps, see #6157
This commit is contained in:
Luigi Calori 2017-11-06 22:02:05 +01:00 committed by Todd Gamblin
parent 436ebc4490
commit f0d33df3a9
4 changed files with 8 additions and 0 deletions

View File

@ -49,5 +49,6 @@ class Libxtst(AutotoolsPackage):
depends_on('recordproto@1.13.99.1:', type='build')
depends_on('xextproto@7.0.99.3:', type='build')
depends_on('inputproto', type='build')
depends_on('fixesproto', type='build')
depends_on('pkg-config@0.9.0:', type='build')
depends_on('util-macros', type='build')

View File

@ -44,5 +44,8 @@ class Xdpyinfo(AutotoolsPackage):
depends_on('libxcb')
depends_on('xproto@7.0.22:', type='build')
depends_on('recordproto', type='build')
depends_on('inputproto', type='build')
depends_on('fixesproto', type='build')
depends_on('pkg-config@0.9.0:', type='build')
depends_on('util-macros', type='build')

View File

@ -37,6 +37,7 @@ class Xfs(AutotoolsPackage):
depends_on('font-util')
depends_on('xproto@7.0.17:', type='build')
depends_on('fontsproto', type='build')
depends_on('xtrans', type='build')
depends_on('pkg-config@0.9.0:', type='build')
depends_on('util-macros', type='build')

View File

@ -40,5 +40,8 @@ class Xinput(AutotoolsPackage):
depends_on('libxinerama')
depends_on('inputproto@2.1.99.1:', type='build')
depends_on('fixesproto', type='build')
depends_on('randrproto', type='build')
depends_on('xineramaproto', type='build')
depends_on('pkg-config@0.9.0:', type='build')
depends_on('util-macros', type='build')