Received: by mail.netbsd.org (Postfix, from userid 605) id DBCC984D50; Tue, 7 May 2019 14:24:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 603AD84D4D for ; Tue, 7 May 2019 14:24:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id KplmxuF7Al7X for ; Tue, 7 May 2019 14:24:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B155584D2A for ; Tue, 7 May 2019 14:24:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A7914FB16; Tue, 7 May 2019 14:24:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1557239043111840" MIME-Version: 1.0 Date: Tue, 7 May 2019 14:24:03 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/mail/ezmlm-idx To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20190507142403.A7914FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1557239043111840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Tue May 7 14:24:03 UTC 2019 Modified Files: pkgsrc/mail/ezmlm-idx: Makefile Log Message: Fix relative rpaths in installed libraries on Darwin. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/mail/ezmlm-idx/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1557239043111840 Content-Disposition: inline Content-Length: 1006 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/ezmlm-idx/Makefile diff -u pkgsrc/mail/ezmlm-idx/Makefile:1.49 pkgsrc/mail/ezmlm-idx/Makefile:1.50 --- pkgsrc/mail/ezmlm-idx/Makefile:1.49 Wed Apr 3 00:32:52 2019 +++ pkgsrc/mail/ezmlm-idx/Makefile Tue May 7 14:24:03 2019 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.49 2019/04/03 00:32:52 ryoon Exp $ +# $NetBSD: Makefile,v 1.50 2019/05/07 14:24:03 schmonz Exp $ # DISTNAME= ezmlm-idx-${IDXVERSION} -PKGREVISION= 8 +PKGREVISION= 9 CATEGORIES= mail IDXVERSION= 7.2.2 MASTER_SITES= http://untroubled.org/ezmlm/archive/${IDXVERSION}/ @@ -55,6 +55,15 @@ INSTALLATION_DIRS+= share/doc/${PKGBASE} post-extract: ${GREP} -v '^#' < cf-files.mk | ${CUT} -f2 | ${SED} -e 's|^|share/examples/ezmlm-idx/|g' > ${WRKDIR}/PLIST.idxcf +.include "../../mk/bsd.prefs.mk" + +post-build: +. if ${OPSYS} == Darwin + cd ${WRKSRC} && for lib in *.so; do \ + install_name_tool -id ${PREFIX}/lib/$${lib} $${lib}; \ + done +. endif + do-test: cd ${WRKSRC} && ./ezmlm-test --_----------=_1557239043111840--