codes, dia, nest: fix pkg-config dependency (#9498)
pkgconfig is the virtual provider, pkg-config is a specific implementation.
This commit is contained in:
parent
cfd0b46941
commit
24c75d39e4
3 changed files with 3 additions and 3 deletions
|
@ -42,7 +42,7 @@ class Codes(AutotoolsPackage):
|
||||||
depends_on('automake', type='build')
|
depends_on('automake', type='build')
|
||||||
depends_on('libtool', type='build')
|
depends_on('libtool', type='build')
|
||||||
depends_on('m4', type='build')
|
depends_on('m4', type='build')
|
||||||
depends_on('pkg-config', type='build')
|
depends_on('pkgconfig', type='build')
|
||||||
depends_on('bison', type='build')
|
depends_on('bison', type='build')
|
||||||
depends_on('flex', type='build')
|
depends_on('flex', type='build')
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ class Dia(Package):
|
||||||
|
|
||||||
depends_on('intltool', type='build')
|
depends_on('intltool', type='build')
|
||||||
depends_on('gettext', type='build')
|
depends_on('gettext', type='build')
|
||||||
depends_on('pkg-config', type='build')
|
depends_on('pkgconfig', type='build')
|
||||||
depends_on('gtkplus@2.6.0:')
|
depends_on('gtkplus@2.6.0:')
|
||||||
depends_on('libxslt')
|
depends_on('libxslt')
|
||||||
depends_on('python')
|
depends_on('python')
|
||||||
|
|
|
@ -77,7 +77,7 @@ class Nest(CMakePackage):
|
||||||
depends_on('gsl', when='+gsl')
|
depends_on('gsl', when='+gsl')
|
||||||
depends_on('readline')
|
depends_on('readline')
|
||||||
depends_on('libtool')
|
depends_on('libtool')
|
||||||
depends_on('pkg-config', type='build')
|
depends_on('pkgconfig', type='build')
|
||||||
|
|
||||||
extends('python', when='+python')
|
extends('python', when='+python')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue