Received: by mail.netbsd.org (Postfix, from userid 605) id 3294184D8D; Thu, 5 Jan 2023 16:00:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6215F84D69 for ; Thu, 5 Jan 2023 15:59:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id WngqiN9AThBh for ; Thu, 5 Jan 2023 15:59:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B3B3A84D26 for ; Thu, 5 Jan 2023 15:59:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ACCD7FA90; Thu, 5 Jan 2023 15:59:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1672934398220340" MIME-Version: 1.0 Date: Thu, 5 Jan 2023 15:59:58 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/x11/gtk3 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20230105155958.ACCD7FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1672934398220340 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Jan 5 15:59:58 UTC 2023 Modified Files: pkgsrc/x11/gtk3: Makefile Log Message: gtk3: Fix PKGLOCALEDIR and SunOS ld args. Also no need to set PKGREVISION twice. To generate a diff of this commit: cvs rdiff -u -r1.180 -r1.181 pkgsrc/x11/gtk3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1672934398220340 Content-Disposition: inline Content-Length: 1016 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/gtk3/Makefile diff -u pkgsrc/x11/gtk3/Makefile:1.180 pkgsrc/x11/gtk3/Makefile:1.181 --- pkgsrc/x11/gtk3/Makefile:1.180 Tue Jan 3 17:36:35 2023 +++ pkgsrc/x11/gtk3/Makefile Thu Jan 5 15:59:58 2023 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.180 2023/01/03 17:36:35 wiz Exp $ +# $NetBSD: Makefile,v 1.181 2023/01/05 15:59:58 jperkin Exp $ DISTNAME= gtk+-3.24.36 -PKGREVISION= 1 PKGNAME= ${DISTNAME:S/gtk/gtk3/} PKGREVISION= 1 CATEGORIES= x11 gnome @@ -24,13 +23,15 @@ PTHREAD_AUTO_VARS= yes MESON_ARGS+= -Dgtk_doc=true MESON_ARGS+= -Dman=true +MESON_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale MESON_ARGS+= --sysconfdir=${PREFIX}/libdata +BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,--export-dynamic + # There is no logic in gettext.mk to detect the native version of xgettext, # and we do need it to be compiled with Glade support. _TOOLS_USE_PKGSRC.xgettext= yes -MAKE_ENV+= PKGLOCALEDIR=${PKGLOCALEDIR} TEST_TARGET= check PKGCONFIG_OVERRIDE+= gdk-3.0.pc.in --_----------=_1672934398220340--