Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=18Inafrm; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=oGWoOVAB Received: by mail.netbsd.org (Postfix, from userid 605) id D7E8284EA4; Wed, 20 Mar 2024 13:30:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710941427; bh=fEyq55L3OdAQzcEnQI0+3XojoGB8iKvqvRzSGb8CF/g=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=18InafrmcZCPVoMHhcVILQN3V7Seb4agcnNFLFuR0c7pOChSKPAlRHZKY1OR1lf4L 65oYn6kRnMXLXpPASCEmLciL6/uiex9+lob7hFwxby3Zt1dnnaxnKTwZerguhncNIa 5NiuZTmOdzPnKVmq6pbYDqH4piR6k/koLclNDdHA= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C80FC84D24 for ; Wed, 20 Mar 2024 13:30:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 MGvGt-vw4BGh for ; Wed, 20 Mar 2024 13:30:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2357284D07 for ; Wed, 20 Mar 2024 13:30:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710941425; bh=fEyq55L3OdAQzcEnQI0+3XojoGB8iKvqvRzSGb8CF/g=; h=Date:From:Subject:To:Reply-To; b=oGWoOVAB2sIvVkSW/W47B2egnY9r6ABLwyAyqWKtgLKBlodKHXq0n/D9d+U4qFXNM T2Vyytv+3hL6oPJqrfuwbJ+w8UT4aMbgU7XX+sRKHnJpzeVbm6pagORPsQKClrqNHR gTIWzgM2cSx7EqGHjeXupER8KikG6LQLA3vJ/8Eo= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1A646FA2C; Wed, 20 Mar 2024 13:30:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1710941425247250" MIME-Version: 1.0 Date: Wed, 20 Mar 2024 13:30:25 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/security/ccid To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240320133025.1A646FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1710941425247250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Mar 20 13:30:25 UTC 2024 Modified Files: pkgsrc/security/ccid: Makefile Log Message: ccid: on Darwin, change dylib id using install_name_tool To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/security/ccid/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1710941425247250 Content-Disposition: inline Content-Length: 1103 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/ccid/Makefile diff -u pkgsrc/security/ccid/Makefile:1.43 pkgsrc/security/ccid/Makefile:1.44 --- pkgsrc/security/ccid/Makefile:1.43 Sat Jan 6 13:48:35 2024 +++ pkgsrc/security/ccid/Makefile Wed Mar 20 13:30:24 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2024/01/06 13:48:35 gdt Exp $ +# $NetBSD: Makefile,v 1.44 2024/03/20 13:30:24 adam Exp $ DISTNAME= ccid-1.5.5 CATEGORIES= security @@ -40,6 +40,15 @@ REPLACE_PERL= src/convert_version.pl sr INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man8 INSTALLATION_DIRS+= sbin share/doc/ccid +.if ${OPSYS} == "Darwin" +.PHONY: fix-darwin-install-name +post-install: fix-darwin-install-name +fix-darwin-install-name: + install_name_tool -id \ + ${PREFIX}/lib/pcsc-lite/drivers/ifd-ccid.bundle/Contents/MacOS/libccid.dylib \ + ${DESTDIR}${PREFIX}/lib/pcsc-lite/drivers/ifd-ccid.bundle/Contents/MacOS/libccid.dylib +.endif + post-install: ${INSTALL_DATA} ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/share/doc/ccid/README.md ${INSTALL_PROGRAM} ${WRKSRC}/contrib/RSA_SecurID/RSA_SecurID_getpasswd \ --_----------=_1710941425247250--