pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/sysutils/fastfetch
Module Name: pkgsrc
Committed By: maya
Date: Sun Apr 5 21:08:04 UTC 2026
Modified Files:
pkgsrc/sysutils/fastfetch: options.mk
Log Message:
fastfetch: Disable libdrm option on Darwin
Pointed out in PR pkg/60131. Inspired by similar example in
devel/SDL3/options.mk.
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/sysutils/fastfetch/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/sysutils/fastfetch/options.mk
diff -u pkgsrc/sysutils/fastfetch/options.mk:1.15 pkgsrc/sysutils/fastfetch/options.mk:1.16
--- pkgsrc/sysutils/fastfetch/options.mk:1.15 Mon Jul 14 17:11:06 2025
+++ pkgsrc/sysutils/fastfetch/options.mk Sun Apr 5 21:08:04 2026
@@ -1,13 +1,18 @@
-# $NetBSD: options.mk,v 1.15 2025/07/14 17:11:06 vins Exp $
+# $NetBSD: options.mk,v 1.16 2026/04/05 21:08:04 maya Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fastfetch
PKG_OPTIONS_OPTIONAL_GROUPS= server sound
PKG_OPTIONS_GROUP.server= wayland x11
PKG_OPTIONS_GROUP.sound= oss pulseaudio
-PKG_SUPPORTED_OPTIONS= chafa dconf dbus glib2 imagemagick libdrm libelf opencl \
+PKG_SUPPORTED_OPTIONS= chafa dconf dbus glib2 imagemagick libelf opencl \
python sqlite3 threads xfce4-wm
-PKG_SUGGESTED_OPTIONS= glib2 libdrm x11
+PKG_SUGGESTED_OPTIONS= glib2 x11
+
+.if ${OPSYS} != "Darwin"
+PKG_SUPPORTED_OPTIONS+= libdrm
+PKG_SUGGESTED_OPTIONS+= libdrm
+.endif
CHECK_BUILTIN.pthread:= yes
.include "../../mk/pthread.builtin.mk"
Home |
Main Index |
Thread Index |
Old Index