Skip to content

Commit

Permalink
add libheif dependency to libgd
Browse files Browse the repository at this point in the history
  • Loading branch information
jfgrimm committed Nov 26, 2024
1 parent 04fc78d commit fa37813
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 8 deletions.
12 changes: 10 additions & 2 deletions easybuild/easyconfigs/l/libgd/libgd-2.3.1-GCCcore-10.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,21 @@ builddependencies = [

dependencies = [
('fontconfig', '2.13.93'),
('libheif', '1.12.0'),
('libjpeg-turbo', '2.0.6'),
('libpng', '1.6.37'),
('zlib', '1.2.11'),
]

configopts = "--with-fontconfig=$EBROOTFONTCONFIG --with-jpeg=$EBROOTLIBJPEGMINTURBO "
configopts += "--with-png=$EBROOTLIBPNG --with-zlib=$EBROOTZLIB"
_copts = [
"--with-fontconfig=$EBROOTFONTCONFIG",
"--with-heif=$EBROOTLIBHEIF",
"--with-jpeg=$EBROOTLIBJPEGMINTURBO",
"--with-png=$EBROOTLIBPNG",
"--with-zlib=$EBROOTZLIB",
]

configopts = ' '.join(_copts)

sanity_check_paths = {
'files': ["lib/libgd.a", "lib/libgd.%s" % SHLIB_EXT],
Expand Down
12 changes: 10 additions & 2 deletions easybuild/easyconfigs/l/libgd/libgd-2.3.3-GCCcore-11.2.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,21 @@ builddependencies = [

dependencies = [
('fontconfig', '2.13.94'),
('libheif', '1.12.0'),
('libjpeg-turbo', '2.0.6'),
('libpng', '1.6.37'),
('zlib', '1.2.11'),
]

configopts = "--with-fontconfig=$EBROOTFONTCONFIG --with-jpeg=$EBROOTLIBJPEGMINTURBO "
configopts += "--with-png=$EBROOTLIBPNG --with-zlib=$EBROOTZLIB"
_copts = [
"--with-fontconfig=$EBROOTFONTCONFIG",
"--with-heif=$EBROOTLIBHEIF",
"--with-jpeg=$EBROOTLIBJPEGMINTURBO",
"--with-png=$EBROOTLIBPNG",
"--with-zlib=$EBROOTZLIB",
]

configopts = ' '.join(_copts)

sanity_check_paths = {
'files': ['lib/libgd.a', 'lib/libgd.%s' % SHLIB_EXT],
Expand Down
12 changes: 10 additions & 2 deletions easybuild/easyconfigs/l/libgd/libgd-2.3.3-GCCcore-11.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,21 @@ builddependencies = [

dependencies = [
('fontconfig', '2.14.0'),
('libheif', '1.16.2'),
('libjpeg-turbo', '2.1.3'),
('libpng', '1.6.37'),
('zlib', '1.2.12'),
]

configopts = "--with-fontconfig=$EBROOTFONTCONFIG --with-jpeg=$EBROOTLIBJPEGMINTURBO "
configopts += "--with-png=$EBROOTLIBPNG --with-zlib=$EBROOTZLIB"
_copts = [
"--with-fontconfig=$EBROOTFONTCONFIG",
"--with-heif=$EBROOTLIBHEIF",
"--with-jpeg=$EBROOTLIBJPEGMINTURBO",
"--with-png=$EBROOTLIBPNG",
"--with-zlib=$EBROOTZLIB",
]

configopts = ' '.join(_copts)

sanity_check_paths = {
'files': ['lib/libgd.a', 'lib/libgd.%s' % SHLIB_EXT],
Expand Down
12 changes: 10 additions & 2 deletions easybuild/easyconfigs/l/libgd/libgd-2.3.3-GCCcore-12.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,21 @@ builddependencies = [

dependencies = [
('fontconfig', '2.14.2'),
('libheif', '1.17.6'),
('libjpeg-turbo', '2.1.5.1'),
('libpng', '1.6.39'),
('zlib', '1.2.13'),
]

configopts = "--with-fontconfig=$EBROOTFONTCONFIG --with-jpeg=$EBROOTLIBJPEGMINTURBO "
configopts += "--with-png=$EBROOTLIBPNG --with-zlib=$EBROOTZLIB"
_copts = [
"--with-fontconfig=$EBROOTFONTCONFIG",
"--with-heif=$EBROOTLIBHEIF",
"--with-jpeg=$EBROOTLIBJPEGMINTURBO",
"--with-png=$EBROOTLIBPNG",
"--with-zlib=$EBROOTZLIB",
]

configopts = ' '.join(_copts)

sanity_check_paths = {
'files': ['lib/libgd.a', 'lib/libgd.%s' % SHLIB_EXT],
Expand Down

0 comments on commit fa37813

Please sign in to comment.