git: 72db56440070 - 2023Q2 - sysutils/xen-guest-tools: fix shared libs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 08 Apr 2023 05:59:24 UTC
The branch 2023Q2 has been updated by dinoex: URL: https://cgit.FreeBSD.org/ports/commit/?id=72db5644007065a23e6880e969e9aa2c753cc461 commit 72db5644007065a23e6880e969e9aa2c753cc461 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:59:17 +0000 sysutils/xen-guest-tools: fix shared libs PR: 270688 MFH: 2023Q2 (cherry picked from commit 12ab24628f3838d01a9c907cec0f8b4e0794a9d4) --- 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>