aboutsummaryrefslogtreecommitdiff
path: root/x11/libXcursor
diff options
context:
space:
mode:
authorGuido Falsi <madpilot@FreeBSD.org>2023-09-25 13:06:43 +0000
committerGuido Falsi <madpilot@FreeBSD.org>2023-09-25 13:06:43 +0000
commitffd7b6bd590ff4552e1f04c8004c723e296b669a (patch)
tree85431396199b5f1f2d58acaae44d585c99748cfe /x11/libXcursor
parent7453fb413ae68f256c4848ad642bee04293f3c28 (diff)
downloadports-ffd7b6bd590ff4552e1f04c8004c723e296b669a.tar.gz
ports-ffd7b6bd590ff4552e1f04c8004c723e296b669a.zip
x11/libXcursor: Avoid duplicates in cursor search path
The cursor search path extrapolated by the configure script contains duplicated paths. Work around this by providing the full correct search path to configure via --with-cursorpath PR: 273806, 273744 Reviewed by: arrowd Approved by: x11 (manu)
Diffstat (limited to 'x11/libXcursor')
-rw-r--r--x11/libXcursor/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/x11/libXcursor/Makefile b/x11/libXcursor/Makefile
index 08ceee71ca96..159efaed8ee5 100644
--- a/x11/libXcursor/Makefile
+++ b/x11/libXcursor/Makefile
@@ -1,5 +1,6 @@
PORTNAME= libXcursor
PORTVERSION= 1.2.0
+PORTREVISION= 1
CATEGORIES= x11
MAINTAINER= x11@FreeBSD.org
@@ -14,7 +15,8 @@ USE_XORG= xrender x11 xfixes xorgproto
CPE_VENDOR= x
CPE_PRODUCT= libxcursor
-CONFIGURE_ARGS= --with-icondir=${PREFIX}/share/icons
+CONFIGURE_ARGS= --with-icondir=${PREFIX}/share/icons \
+ --with-cursorpath="~/.local/share/icons:~/.icons:${PREFIX}/share/icons:${PREFIX}/share/pixmaps"
INSTALL_TARGET= install-strip
.include <bsd.port.mk>