aboutsummaryrefslogtreecommitdiff
path: root/x11-themes
diff options
context:
space:
mode:
authorTobias Kortkamp <tobik@FreeBSD.org>2021-04-07 11:47:09 +0000
committerTobias Kortkamp <tobik@FreeBSD.org>2021-04-07 11:49:48 +0000
commitd27b286dc212485a817f5941964d59a07b00a17a (patch)
tree29831bbfc1b524ba75bc671f995bdfeceabeb3c3 /x11-themes
parent86fc557be0a913534306ca1451e9862b65a3f7dc (diff)
downloadports-d27b286dc212485a817f5941964d59a07b00a17a.tar.gz
ports-d27b286dc212485a817f5941964d59a07b00a17a.zip
x11-themes/gtk-arc-themes: Speed up build
The build is insanely slow. Inkscape tries to connect to 127.0.0.1:9090 (probably gtk3's broadway backend) which has to timeout first until the next inkscape call. If this would only happen a couple of times it would be ok but it happens >500 times. Disable all GDK backends to prevent that. Unable to init server: Could not connect to 127.0.0.1: Connection refused http://package18.nyi.freebsd.org/data/122amd64-default-foo/2021-04-05_21h03m50s/logs/errors/gtk-arc-themes-20210127.log
Diffstat (limited to 'x11-themes')
-rw-r--r--x11-themes/gtk-arc-themes/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/x11-themes/gtk-arc-themes/Makefile b/x11-themes/gtk-arc-themes/Makefile
index bb43909806f0..b19406c6caa2 100644
--- a/x11-themes/gtk-arc-themes/Makefile
+++ b/x11-themes/gtk-arc-themes/Makefile
@@ -31,5 +31,9 @@ MESON_ARGS= -Dthemes=cinnamon,gnome-shell,gtk2,gtk3,metacity,plank,unity,xfwm \
-Dcinnamon_version=4.8 \
-Dgnome_shell_version=3.38 \
-Dgtk3_version=3.24
+# Speed up build in Poudriere. It calls inkscape a bazillion times
+# and each instance tries to connect to 127.0.0.1:9090 which seems
+# to be because of gtk3's broadway backend. Disable all GDK backends.
+MAKE_ENV= GDK_BACKEND=""
.include <bsd.port.mk>