git: d252f6f04111 - main - mail/dovecot-fts-xapian: Fix pkg-plist after update to 1.9.3

From: Marius Strobl <marius_at_FreeBSD.org>
Date: Thu, 19 Mar 2026 12:04:56 UTC
The branch main has been updated by marius:

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

commit d252f6f04111d157dc3824ff6520417e14fea920
Author:     Marius Strobl <marius@FreeBSD.org>
AuthorDate: 2026-03-19 11:55:09 +0000
Commit:     Marius Strobl <marius@FreeBSD.org>
CommitDate: 2026-03-19 12:02:48 +0000

    mail/dovecot-fts-xapian: Fix pkg-plist after update to 1.9.3
    
    The update missed the settings libraries added for dovecot 2.4.
    
    Reported by:    fluffy
    Approved by:    otis (maintainer, implicit)
    Fixes:  3b00cc395220 mail/dovecot-fts-xapian: Update to 1.9.3
---
 mail/dovecot-fts-xapian/Makefile | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/mail/dovecot-fts-xapian/Makefile b/mail/dovecot-fts-xapian/Makefile
index a873cafc37b0..0954eb42ba64 100644
--- a/mail/dovecot-fts-xapian/Makefile
+++ b/mail/dovecot-fts-xapian/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	fts-xapian
 DISTVERSION=	1.9.3
-PORTREVISION?=	0
+PORTREVISION?=	1
 CATEGORIES=	mail
 MASTER_SITES=	https://github.com/grosjo/fts-xapian/releases/download/${DISTVERSIONFULL}/
 PKGNAMEPREFIX=	dovecot-
@@ -23,10 +23,16 @@ GNU_CONFIGURE=	yes
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-${DISTVERSIONFULL}
 
-PLIST_FILES=	lib/dovecot/lib21_fts_xapian_plugin.a \
+PLIST_FILES=	lib/dovecot/settings/lib21_fts_xapian_settings.a \
+		lib/dovecot/settings/lib21_fts_xapian_settings.so \
+		lib/dovecot/settings/lib21_fts_xapian_settings.so.0 \
+		lib/dovecot/settings/lib21_fts_xapian_settings.so.0.0.0 \
+		lib/dovecot/lib21_fts_xapian_plugin.a \
 		lib/dovecot/lib21_fts_xapian_plugin.so
 
 post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/dovecot/settings/lib21_fts_xapian_settings.so
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/dovecot/settings/lib21_fts_xapian_settings.so.0.0.0
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/dovecot/lib21_fts_xapian_plugin.so
 
 .include <bsd.port.mk>