diff options
author | brook <brook@pkgsrc.org> | 2020-02-25 04:29:36 +0000 |
---|---|---|
committer | brook <brook@pkgsrc.org> | 2020-02-25 04:29:36 +0000 |
commit | 4c20479fabb51169d5c98511175858ad6934bd05 (patch) | |
tree | 2d9f2e08edbe0292519d1dbb32fe5992e82eecb7 /graphics/gegl/PLIST | |
parent | 86413535c8fa46f221f3075cb2e73eb033b2c8b1 (diff) | |
download | pkgsrc-4c20479fabb51169d5c98511175858ad6934bd05.tar.gz |
Fix build breakage on Darwin.
Darwin uses a different extension (.dylib) than other Unixes (.so) for
shared libraries that applications must link against. However, Gnome
applications expect plugins to use the same extension (.so) on all platforms,
including Darwin. Consequently, on Darwin some shared libraries must be
renamed, both on the filesystem and internally, and others must use the
correct extension in PLIST. This is partially mentioned in PR #54824, but
that missed the need for internal renaming of the libraries. It also
introduced a dependency on the Apple OpenCL framework, which does not seem
to be necessary.
Finally, all the references to Apple-specific OpenCL code must be removed;
previously only some of them were.
Diffstat (limited to 'graphics/gegl/PLIST')
-rw-r--r-- | graphics/gegl/PLIST | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/graphics/gegl/PLIST b/graphics/gegl/PLIST index add7b6fed1d..1fe5afdac3f 100644 --- a/graphics/gegl/PLIST +++ b/graphics/gegl/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.24 2019/11/02 14:05:46 nia Exp $ +@comment $NetBSD: PLIST,v 1.25 2020/02/25 04:29:36 brook Exp $ bin/gegl bin/gegl-imgcmp include/gegl-0.4/gegl-apply.h @@ -116,11 +116,11 @@ lib/gegl-0.4/vector-fill.so lib/gegl-0.4/vector-stroke.so lib/gegl-0.4/webp-load.so lib/gegl-0.4/webp-save.so -lib/libgegl-0.4.so -lib/libgegl-0.4.so.0 -lib/libgegl-0.4.so.0.417.1 -lib/libgegl-npd-0.4.so -lib/libgegl-sc-0.4.so +lib/libgegl-0.4.${SOEXT} +${PLIST.Darwin}lib/libgegl-0.4.0.${SOEXT} +${PLIST.not_Darwin}lib/libgegl-0.4.${SOEXT}.0.417.1 +lib/libgegl-npd-0.4.${SOEXT} +lib/libgegl-sc-0.4.${SOEXT} lib/pkgconfig/gegl-0.4.pc lib/pkgconfig/gegl-sc-0.4.pc share/locale/bs/LC_MESSAGES/gegl-0.4.mo |