Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Jan 2024 03:06:16 GMT
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 45ce0001fe3e - main - x11-toolkits/wlroots: prefix local variable in override.mk
Message-ID:  <202401180306.40I36GR4039760@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=45ce0001fe3e1e35ccc5e5232db7149ca381c1ac

commit 45ce0001fe3e1e35ccc5e5232db7149ca381c1ac
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2024-01-18 03:04:00 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2024-01-18 03:05:58 +0000

    x11-toolkits/wlroots: prefix local variable in override.mk
    
    SOVERSION may be used in consumers for their own libraries.
---
 x11-toolkits/wlroots015/override.mk | 4 ++--
 x11-toolkits/wlroots016/override.mk | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/x11-toolkits/wlroots015/override.mk b/x11-toolkits/wlroots015/override.mk
index c94d1ab53853..9059bb8136d3 100644
--- a/x11-toolkits/wlroots015/override.mk
+++ b/x11-toolkits/wlroots015/override.mk
@@ -1,7 +1,7 @@
 WLR_SUFFIX=	015
-SOVERSION=	10
+WLR_SOVERSION=	10
 
-LIB_DEPENDS:=	${LIB_DEPENDS:S/wlroots.so/&.${SOVERSION}/:S/wlroots$/&${WLR_SUFFIX}/}
+LIB_DEPENDS:=	${LIB_DEPENDS:S/wlroots.so/&.${WLR_SOVERSION}/:S/wlroots$/&${WLR_SUFFIX}/}
 
 USES+=		localbase # -isystem
 CONFIGURE_ENV+=	PKG_CONFIG_PATH="${LOCALBASE}/wlroots${WLR_SUFFIX}/libdata/pkgconfig"
diff --git a/x11-toolkits/wlroots016/override.mk b/x11-toolkits/wlroots016/override.mk
index f690580b51dc..d193e843fa21 100644
--- a/x11-toolkits/wlroots016/override.mk
+++ b/x11-toolkits/wlroots016/override.mk
@@ -1,7 +1,7 @@
 WLR_SUFFIX=	016
-SOVERSION=	11
+WLR_SOVERSION=	11
 
-LIB_DEPENDS:=	${LIB_DEPENDS:S/wlroots.so/&.${SOVERSION}/:S/wlroots$/&${WLR_SUFFIX}/}
+LIB_DEPENDS:=	${LIB_DEPENDS:S/wlroots.so/&.${WLR_SOVERSION}/:S/wlroots$/&${WLR_SUFFIX}/}
 
 USES+=		localbase # -isystem
 CONFIGURE_ENV+=	PKG_CONFIG_PATH="${LOCALBASE}/wlroots${WLR_SUFFIX}/libdata/pkgconfig"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401180306.40I36GR4039760>