Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 583D085B73 for ; Wed, 1 Nov 2023 01:05:55 +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 nNzFyMFK2AfO for ; Wed, 1 Nov 2023 01:05:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id CD54785935 for ; Wed, 1 Nov 2023 01:05:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C077BFADC; Wed, 1 Nov 2023 01:05:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169880075442760" MIME-Version: 1.0 Date: Wed, 1 Nov 2023 01:05:54 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/sysutils/caja To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20231101010554.C077BFADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169880075442760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Wed Nov 1 01:05:54 UTC 2023 Modified Files: pkgsrc/sysutils/caja: options.mk Added Files: pkgsrc/sysutils/caja: PLIST.introspection Log Message: caja: restore introspection support (no default change) This was evidently lost many updates ago. Use a potentially more resilient and obvious means of recording these components. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/caja/PLIST.introspection cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/caja/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169880075442760 Content-Disposition: inline Content-Length: 1374 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/caja/options.mk diff -u pkgsrc/sysutils/caja/options.mk:1.2 pkgsrc/sysutils/caja/options.mk:1.3 --- pkgsrc/sysutils/caja/options.mk:1.2 Mon Jun 13 22:31:25 2016 +++ pkgsrc/sysutils/caja/options.mk Wed Nov 1 01:05:54 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2016/06/13 22:31:25 youri Exp $ +# $NetBSD: options.mk,v 1.3 2023/11/01 01:05:54 gutteridge Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.caja PKG_SUPPORTED_OPTIONS= introspection @@ -6,14 +6,14 @@ PKG_SUGGESTED_OPTIONS= .include "../../mk/bsd.options.mk" -PLIST_VARS+= introspection +PLIST_SRC+= PLIST .if !empty(PKG_OPTIONS:Mintrospection) BUILDLINK_DEPMETHOD.gobject-introspection+= build .include "../../devel/gobject-introspection/buildlink3.mk" .include "../../graphics/cairo-gobject/buildlink3.mk" CONFIGURE_ARGS+= --enable-introspection -PLIST.introspection= yes +PLIST_SRC+= PLIST.introspection .else CONFIGURE_ARGS+= --disable-introspection .endif Added files: Index: pkgsrc/sysutils/caja/PLIST.introspection diff -u /dev/null pkgsrc/sysutils/caja/PLIST.introspection:1.1 --- /dev/null Wed Nov 1 01:05:54 2023 +++ pkgsrc/sysutils/caja/PLIST.introspection Wed Nov 1 01:05:54 2023 @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST.introspection,v 1.1 2023/11/01 01:05:54 gutteridge Exp $ +lib/girepository-1.0/Caja-2.0.typelib +share/gir-1.0/Caja-2.0.gir --_----------=_169880075442760--