From: Antoine Jacoutot Subject: Re: WANTLIB tweak apl-1.8 To: Rafael Sadowski Cc: ports@openbsd.org, Brian Callahan Date: Tue, 9 Jan 2024 09:59:18 +0100 On Tue, Jan 09, 2024 at 09:43:10AM +0100, Rafael Sadowski wrote: > As I am currently testing my fftw3 diff I found this WANTLIB update. I > don't see an option to disable wayland and I suspect it's not coming > from apl. Coming from gtk+3 probably. > > apl-1.8p2(lang/apl): > Missing: atspi.1 from at-spi2-core-2.50.1 (/usr/local/bin/Gtk_server) > Missing: dbus-1.11 from dbus-1.14.10v0 (/usr/local/bin/Gtk_server) > Missing: epoll-shim.0 from epoll-shim-0.0.20230411 (/usr/local/bin/Gtk_server) > Missing: wayland-client.0 from wayland-1.22.0p0 (/usr/local/bin/Gtk_server) > Missing: wayland-cursor.0 from wayland-1.22.0p0 (/usr/local/bin/Gtk_server) > Missing: wayland-egl.0 from wayland-1.22.0p0 (/usr/local/bin/Gtk_server) > Missing: xkbcommon.2 from libxkbcommon-1.6.0p0 (/usr/local/bin/Gtk_server) > WANTLIB += atspi dbus-1 epoll-shim wayland-client wayland-cursor > WANTLIB += wayland-egl xkbcommon > > Index: Makefile > =================================================================== > RCS file: /cvs/ports/lang/apl/Makefile,v > diff -u -p -u -p -r1.11 Makefile > --- Makefile 15 Nov 2023 19:52:44 -0000 1.11 > +++ Makefile 9 Jan 2024 08:38:43 -0000 > @@ -1,6 +1,6 @@ > COMMENT = interpreter for the programming language APL > DISTNAME = apl-1.8 > -REVISION = 2 > +REVISION = 3 > CATEGORIES = lang > > SHARED_LIBS += _sql 0.0 # 0.0 > @@ -12,14 +12,15 @@ MAINTAINER = Brian Callahan # GPLv3+ > PERMIT_PACKAGE = Yes > > -WANTLIB += ${COMPILER_LIBCXX} X11 Xcomposite Xcursor Xdamage Xext > -WANTLIB += Xfixes Xi Xinerama Xrandr Xrender atk-1.0 atk-bridge-2.0 > -WANTLIB += c cairo cairo-gobject curses epoxy execinfo expat ffi > -WANTLIB += fftw3 fontconfig freetype fribidi gdk-3 gdk_pixbuf-2.0 > -WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 graphite2 > -WANTLIB += gtk-3 harfbuzz iconv intl m pango-1.0 pangocairo-1.0 > -WANTLIB += pangoft2-1.0 pcre2-8 pcre2-32 pixman-1 png xcb xcb-render > -WANTLIB += xcb-shm z Xau Xdmcp jpeg > +WANTLIB += ${COMPILER_LIBCXX} X11 Xau Xcomposite Xcursor Xdamage > +WANTLIB += Xdmcp Xext Xfixes Xi Xinerama Xrandr Xrender atk-1.0 > +WANTLIB += atk-bridge-2.0 atspi c cairo cairo-gobject curses dbus-1 > +WANTLIB += epoll-shim epoxy execinfo expat ffi fftw3 fontconfig > +WANTLIB += freetype fribidi gdk-3 gdk_pixbuf-2.0 gio-2.0 glib-2.0 > +WANTLIB += gmodule-2.0 gobject-2.0 graphite2 gtk-3 harfbuzz iconv > +WANTLIB += intl jpeg m pango-1.0 pangocairo-1.0 pangoft2-1.0 pcre2-32 > +WANTLIB += pcre2-8 pixman-1 png wayland-client wayland-cursor > +WANTLIB += wayland-egl xcb xcb-render xcb-shm xkbcommon z > > DEBUG_PACKAGES = ${BUILD_PACKAGES} > > -- Antoine