Received: by mail.netbsd.org (Postfix, from userid 605) id D97E784E9F; Mon, 21 May 2018 17:02:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6460C84E72 for ; Mon, 21 May 2018 17:02:43 +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 fuhDad7HLhYO for ; Mon, 21 May 2018 17:02:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C56AC84E44 for ; Mon, 21 May 2018 17:02:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BF5E2FBEC; Mon, 21 May 2018 17:02:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1526922162185550" MIME-Version: 1.0 Date: Mon, 21 May 2018 17:02:42 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/converters/utf8proc To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180521170242.BF5E2FBEC@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. --_----------=_1526922162185550 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon May 21 17:02:42 UTC 2018 Modified Files: pkgsrc/converters/utf8proc: Makefile Log Message: utf8proc: fix shared library name on Darwin To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/converters/utf8proc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1526922162185550 Content-Disposition: inline Content-Length: 985 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/utf8proc/Makefile diff -u pkgsrc/converters/utf8proc/Makefile:1.1 pkgsrc/converters/utf8proc/Makefile:1.2 --- pkgsrc/converters/utf8proc/Makefile:1.1 Mon Apr 30 19:31:47 2018 +++ pkgsrc/converters/utf8proc/Makefile Mon May 21 17:02:42 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2018/04/30 19:31:47 minskim Exp $ +# $NetBSD: Makefile,v 1.2 2018/05/21 17:02:42 adam Exp $ DISTNAME= utf8proc-2.1.1 CATEGORIES= converters @@ -22,9 +22,15 @@ INSTALLATION_DIRS+= include lib post-extract: ${MKDIR} ${WRKSRC} +.include "../../mk/bsd.prefs.mk" + do-install: ${INSTALL_DATA} ${WRKDIR}/${PKGNAME_NOREV}/utf8proc.h \ ${DESTDIR}${PREFIX}/include/ ${INSTALL_LIB} ${WRKSRC}/libutf8proc.* ${DESTDIR}${PREFIX}/lib/ +.if ${OPSYS} == "Darwin" + install_name_tool -id ${PREFIX}/lib/libutf8proc.${PKGVERSION_NOREV}.dylib \ + ${DESTDIR}${PREFIX}/lib/libutf8proc.${PKGVERSION_NOREV}.dylib +.endif .include "../../mk/bsd.pkg.mk" --_----------=_1526922162185550--