openslide: Fix missing dependencies: gdk-pixbuf and perl-alien-libxml2 (#26620)
Add missing pkgconfig to openslide and its dep perl-alien-libxml2. Fix shared-mime-info to be a runtime dependency of gdk-pixbuf, Otherwise, configure cannot detect use gdk-pixbuf without error.
This commit is contained in:
parent
99200f91b7
commit
2c3ea68dd1
3 changed files with 4 additions and 2 deletions
|
@ -32,8 +32,8 @@ class GdkPixbuf(Package):
|
||||||
depends_on('meson@0.46.0:', type='build', when='@2.37.92:')
|
depends_on('meson@0.46.0:', type='build', when='@2.37.92:')
|
||||||
depends_on('meson@0.45.0:', type='build', when='@2.37.0:')
|
depends_on('meson@0.45.0:', type='build', when='@2.37.0:')
|
||||||
depends_on('ninja', type='build', when='@2.37.0:')
|
depends_on('ninja', type='build', when='@2.37.0:')
|
||||||
depends_on('shared-mime-info', type='build', when='@2.36.8: platform=linux')
|
depends_on('shared-mime-info', when='@2.36.8: platform=linux')
|
||||||
depends_on('shared-mime-info', type='build', when='@2.36.8: platform=cray')
|
depends_on('shared-mime-info', when='@2.36.8: platform=cray')
|
||||||
depends_on('pkgconfig', type='build')
|
depends_on('pkgconfig', type='build')
|
||||||
# Building the man pages requires libxslt and the Docbook stylesheets
|
# Building the man pages requires libxslt and the Docbook stylesheets
|
||||||
depends_on('libxslt', type='build', when='+man')
|
depends_on('libxslt', type='build', when='+man')
|
||||||
|
|
|
@ -14,6 +14,7 @@ class Openslide(AutotoolsPackage):
|
||||||
|
|
||||||
version('3.4.1', sha256='9938034dba7f48fadc90a2cdf8cfe94c5613b04098d1348a5ff19da95b990564')
|
version('3.4.1', sha256='9938034dba7f48fadc90a2cdf8cfe94c5613b04098d1348a5ff19da95b990564')
|
||||||
|
|
||||||
|
depends_on('pkgconfig', type='build')
|
||||||
depends_on('openjpeg')
|
depends_on('openjpeg')
|
||||||
depends_on('jpeg')
|
depends_on('jpeg')
|
||||||
depends_on('libtiff')
|
depends_on('libtiff')
|
||||||
|
|
|
@ -16,3 +16,4 @@ class PerlAlienLibxml2(PerlPackage):
|
||||||
|
|
||||||
depends_on('libxml2')
|
depends_on('libxml2')
|
||||||
depends_on('perl-alien-build', type=('build', 'run'))
|
depends_on('perl-alien-build', type=('build', 'run'))
|
||||||
|
depends_on('pkgconfig', type=('build'))
|
||||||
|
|
Loading…
Reference in a new issue