diff options
author | Don Lewis <truckman@FreeBSD.org> | 2025-06-17 06:23:13 +0000 |
---|---|---|
committer | Don Lewis <truckman@FreeBSD.org> | 2025-06-17 06:29:11 +0000 |
commit | 4765ce804cca8dff967d20b33826d65943cf8591 (patch) | |
tree | 12f87edd6672c59cc25e1ad811373b28713e8346 | |
parent | f798e02a7169e25e002ca00daa839faa03a67f24 (diff) |
mutter installs some shared libraries under PREFIX/lib/mutter-15, so
point USE_LDCONFIG there. Without this, pkg install gnome-shell fails,
which causes gnome-shell-extensions and gnome-tweaks package builds
to fail with RUN_DEPENDS errors.
-rw-r--r-- | x11-wm/mutter/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-wm/mutter/Makefile b/x11-wm/mutter/Makefile index 9e761f3cb3c4..13bde8009466 100644 --- a/x11-wm/mutter/Makefile +++ b/x11-wm/mutter/Makefile @@ -1,6 +1,6 @@ PORTNAME= mutter PORTVERSION= 47.8.1 -PORTREvISION= 1 +PORTREVISION= 2 CATEGORIES= x11-wm MASTER_SITES= GNOME DIST_SUBDIR= gnome @@ -48,7 +48,7 @@ USE_GL= egl gbm USE_GNOME= atk cairo gdkpixbuf gnomedesktop4 gtk40 introspection:build USE_XORG= ice pixman sm x11 xcb xcomposite xcursor xdamage xext \ xfixes xi xinerama xrandr xrender xtst -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib ${PREFIX}/lib/mutter-15 CFLAGS+= -Wno-unknown-warning-option -Wno-format-nonliteral CPPFLAGS+= -fno-omit-frame-pointer MESON_ARGS= -Dlibdisplay_info=enabled \ |