Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=peOHuyr0; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=wN8drFtX Received: by mail.netbsd.org (Postfix, from userid 605) id 6AE6B84DA9; Sun, 31 Mar 2024 14:42:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1711896128; bh=NlJ7qG1pWYXl1RahrJf1PDXUSLDaCQGN+L1U2tLw6NU=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=peOHuyr05XsLkMWogXuXaJBBqWnwPH8YVjdzQEMRiwJaW8yoMTRx2hwhczx3Iv57E +CM4VtzjgUMA5gAJS/ajasFw+FWpzZ3dp7DmoRslWkjSI/DSVoOrV4014gdr78bjZj 0gs1R9ktO4GpjR2bUbbzH6K59ArwQyhpO7slUBn8= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 596DA84D6A for ; Sun, 31 Mar 2024 14:42:07 +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 ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id RHDFPZvqalDq for ; Sun, 31 Mar 2024 14:42:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9C74284CEB for ; Sun, 31 Mar 2024 14:42:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1711896126; bh=NlJ7qG1pWYXl1RahrJf1PDXUSLDaCQGN+L1U2tLw6NU=; h=Date:From:Subject:To:Reply-To; b=wN8drFtX0mNfwjVMYAW5wfS+MCEwHfz+zauOZPbQwD21o3wOAZlGeuRvRxCNxknJG fTPLozfNi/8ii8A8hINw6gIUL5nu27QMDR73xhaxdOdm8bKxyBgzivQowEqvuTuuGL wZDQ9o6Q4pyYHGFfl4KdBrHpMa7Fx4lOWOpBtltA= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9218AFA2C; Sun, 31 Mar 2024 14:41:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171189608062000" MIME-Version: 1.0 Date: Sun, 31 Mar 2024 14:41:20 +0000 From: "Jonathan Schleifer" Subject: CVS commit: pkgsrc/devel/p5-gettext To: pkgsrc-changes@NetBSD.org Reply-To: js@netbsd.org X-Mailer: log_accum Message-Id: <20240331144120.9218AFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171189608062000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: js Date: Sun Mar 31 14:41:20 UTC 2024 Modified Files: pkgsrc/devel/p5-gettext: Makefile Log Message: devel/p5-gettext: Fix build on QNX To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/devel/p5-gettext/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171189608062000 Content-Disposition: inline Content-Length: 1125 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-gettext/Makefile diff -u pkgsrc/devel/p5-gettext/Makefile:1.41 pkgsrc/devel/p5-gettext/Makefile:1.42 --- pkgsrc/devel/p5-gettext/Makefile:1.41 Thu Jul 6 09:40:28 2023 +++ pkgsrc/devel/p5-gettext/Makefile Sun Mar 31 14:41:20 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2023/07/06 09:40:28 wiz Exp $ +# $NetBSD: Makefile,v 1.42 2024/03/31 14:41:20 js Exp $ DISTNAME= gettext-1.07 PKGNAME= p5-${DISTNAME} @@ -15,11 +15,20 @@ WRKSRC= ${WRKDIR}/Locale-${DISTNAME} USE_LANGUAGES= c PERL5_PACKLIST= auto/Locale/gettext/.packlist +.include "../../mk/bsd.prefs.mk" + SUBST_CLASSES+= intlpath SUBST_FILES.intlpath= Makefile.PL +.if ${OPSYS} == "QNX" +SUBST_SED.intlpath+= -e 's,-lintl,-L${BUILDLINK_PREFIX.gettext}/lib -lintl -liconv,g' +.else SUBST_SED.intlpath+= -e 's,-lintl,-L${BUILDLINK_PREFIX.gettext}/lib -lintl,g' +.endif SUBST_STAGE.intlpath= pre-configure +.if ${OPSYS} == "QNX" +.include "../../converters/libiconv/buildlink3.mk" +.endif .include "../../devel/gettext-lib/buildlink3.mk" .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" --_----------=_171189608062000--