Date: Sat, 8 Apr 2023 05:45:30 GMT From: Dirk Meyer <dinoex@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 12ab24628f38 - main - sysutils/xen-guest-tools: fix shared libs Message-ID: <202304080545.3385jUPI035088@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by dinoex: URL: https://cgit.FreeBSD.org/ports/commit/?id=12ab24628f3838d01a9c907cec0f8b4e0794a9d4 commit 12ab24628f3838d01a9c907cec0f8b4e0794a9d4 Author: Dirk Meyer <dinoex@FreeBSD.org> AuthorDate: 2023-04-08 05:45:04 +0000 Commit: Dirk Meyer <dinoex@FreeBSD.org> CommitDate: 2023-04-08 05:45:04 +0000 sysutils/xen-guest-tools: fix shared libs PR: 270688 MFH: 2023Q2 --- sysutils/xen-guest-tools/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sysutils/xen-guest-tools/Makefile b/sysutils/xen-guest-tools/Makefile index f396858c417c..c31ceacfd24a 100644 --- a/sysutils/xen-guest-tools/Makefile +++ b/sysutils/xen-guest-tools/Makefile @@ -1,7 +1,7 @@ PORTNAME= xen-guest-tools #PORTVERSION= 4.14.0 PORTVERSION= 4.16.1 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://downloads.xenproject.org/release/xen/${PORTVERSION}/ DISTNAME= xen-${PORTVERSION} @@ -54,7 +54,9 @@ PLIST_FILES= bin/xen-detect \ bin/xenstore-watch \ bin/xenstore-write \ lib/libxenstore.so.4.0 \ - lib/libxentoolcore.so.1.0 + lib/libxenstore.so.4 \ + lib/libxentoolcore.so.1.0 \ + lib/libxentoolcore.so.1 post-patch: ${REINPLACE_CMD} -e 's;=xen tools stubdom docs;=tools;' \ @@ -79,5 +81,7 @@ do-install: cd ${STAGEDIR}${PREFIX}/bin/ && ${LN} -f xenstore xenstore-rm cd ${STAGEDIR}${PREFIX}/bin/ && ${LN} -f xenstore xenstore-watch cd ${STAGEDIR}${PREFIX}/bin/ && ${LN} -f xenstore xenstore-write + cd ${STAGEDIR}${PREFIX}/lib/ && ${LN} -f libxenstore.so.4.0 libxenstore.so.4 + cd ${STAGEDIR}${PREFIX}/lib/ && ${LN} -f libxentoolcore.so.1.0 libxentoolcore.so.1 .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202304080545.3385jUPI035088>