Received: by mail.netbsd.org (Postfix, from userid 605) id 7524684E7B; Tue, 28 Jun 2022 11:11:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AF51084E58 for ; Tue, 28 Jun 2022 11:11:08 +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 kI6zTxMG-Hvy for ; Tue, 28 Jun 2022 11:11:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 05A5384CED for ; Tue, 28 Jun 2022 11:11:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8C347FB1A; Tue, 28 Jun 2022 11:13:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1656414800211040" MIME-Version: 1.0 Date: Tue, 28 Jun 2022 11:13:20 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/sysutils/upower To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220628111320.8C347FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1656414800211040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Jun 28 11:13:20 UTC 2022 Modified Files: pkgsrc/sysutils/upower: Makefile Removed Files: pkgsrc/sysutils/upower: options.mk Log Message: upower: Remove introspection option. https://marc.info/?l=pkgsrc-users&m=165444158600671&w=2 To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/sysutils/upower/Makefile cvs rdiff -u -r1.2 -r0 pkgsrc/sysutils/upower/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1656414800211040 Content-Disposition: inline Content-Length: 1323 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/upower/Makefile diff -u pkgsrc/sysutils/upower/Makefile:1.20 pkgsrc/sysutils/upower/Makefile:1.21 --- pkgsrc/sysutils/upower/Makefile:1.20 Wed Dec 8 16:02:40 2021 +++ pkgsrc/sysutils/upower/Makefile Tue Jun 28 11:13:20 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2021/12/08 16:02:40 adam Exp $ +# $NetBSD: Makefile,v 1.21 2022/06/28 11:13:20 nia Exp $ DISTNAME= upower-0.99.13 PKGREVISION= 1 @@ -21,6 +21,7 @@ BUILD_DEPENDS+= docbook-xsl-[0-9]*:../.. CONFIGURE_ARGS+= --localstatedir=${VARBASE} CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --with-libintl-prefix=${BUILDLINK_PREFIX.gettext} +CONFIGURE_ARGS+= --enable-introspection PKG_SYSCONFSUBDIR= UPower INSTALL_MAKE_FLAGS+= configdir=${EGDIR} dbusconfdir=${EGDIR} @@ -40,10 +41,10 @@ TEST_TARGET= check # with --nonet, xsltproc needs a helping hand finding some dtds XSLTPROC_PATH= ${PREFIX}/share/doc/dbus -.include "options.mk" - .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk" +BUILDLINK_DEPMETHOD.gobject-introspection+= build +.include "../../devel/gobject-introspection/buildlink3.mk" .include "../../sysutils/dbus/buildlink3.mk" .include "../../sysutils/dbus-glib/buildlink3.mk" .include "../../textproc/libxslt/xsltproc-nonet.mk" --_----------=_1656414800211040--