diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2023-06-17 21:21:06 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2023-06-17 21:24:04 +0000 |
commit | 592d3df5c0bf52862398041cbc55e5e1d83c8102 (patch) | |
tree | 164f5bc399b9a709524946ec07490c14d94c0375 | |
parent | eae054e7d4d915832335d754e8f955b95897b4d9 (diff) |
x11/grim: pacify stage-qa after ab18f9711a3f
====> Running Q/A tests (stage-qa)
Error: /usr/local/bin/grim is linked to /usr/local/lib/libpixman-1.so.0 from x11/pixman but it is not declared as a dependency
Warning: you need USE_XORG+=pixman
Error: /usr/local/bin/grim is linked to /usr/local/lib/libpng16.so.16 from graphics/png but it is not declared as a dependency
Warning: you need LIB_DEPENDS+=libpng16.so:graphics/png
https://github.com/emersion/grim/commit/af000f990061
https://github.com/emersion/grim/commit/fcaba96aab42
-rw-r--r-- | x11/grim/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/x11/grim/Makefile b/x11/grim/Makefile index daf13f1fa8ff..06907e7e830b 100644 --- a/x11/grim/Makefile +++ b/x11/grim/Makefile @@ -1,6 +1,7 @@ PORTNAME= grim DISTVERSIONPREFIX= v DISTVERSION= 1.4.0 +PORTREVISION= 1 CATEGORIES= x11 wayland MASTER_SITES= https://git.sr.ht/~emersion/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ @@ -15,10 +16,12 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= wayland-protocols>=1.14:graphics/wayland-protocols -LIB_DEPENDS= libwayland-client.so:graphics/wayland +LIB_DEPENDS= libpng.so:graphics/png \ + libwayland-client.so:graphics/wayland -USES= compiler:c11 gnome meson pkgconfig +USES= compiler:c11 gnome meson pkgconfig xorg USE_GNOME= cairo +USE_XORG= pixman PLIST_FILES= bin/${PORTNAME} OPTIONS_DEFINE= JPEG MANPAGES |