Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id B83E51A921F for ; Mon, 16 Nov 2020 12:32:54 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0584784DD4; Mon, 16 Nov 2020 12:32:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 411A384DBD for ; Mon, 16 Nov 2020 12:32:53 +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 grJ2uFuOSAis for ; Mon, 16 Nov 2020 12:32:52 +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 BC00984CE3 for ; Mon, 16 Nov 2020 12:32:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B5B90FA9D; Mon, 16 Nov 2020 12:32:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1605529972271810" MIME-Version: 1.0 Date: Mon, 16 Nov 2020 12:32:52 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/libwnck3 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201116123252.B5B90FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1605529972271810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Nov 16 12:32:52 UTC 2020 Modified Files: pkgsrc/devel/libwnck3: Makefile Log Message: libwnck3: Clean up. Fix tools / pkgconfig file. Attempt to fix build on SunOS/Darwin by stripping GNU linker arguments. This package was converted to meson incorrectly, see: http://wiki.netbsd.org/pkgsrc/how_to_convert_autotools_to_meson/ To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/libwnck3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1605529972271810 Content-Disposition: inline Content-Length: 1488 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libwnck3/Makefile diff -u pkgsrc/devel/libwnck3/Makefile:1.31 pkgsrc/devel/libwnck3/Makefile:1.32 --- pkgsrc/devel/libwnck3/Makefile:1.31 Thu Oct 1 11:58:16 2020 +++ pkgsrc/devel/libwnck3/Makefile Mon Nov 16 12:32:52 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2020/10/01 11:58:16 prlw1 Exp $ +# $NetBSD: Makefile,v 1.32 2020/11/16 12:32:52 nia Exp $ DISTNAME= libwnck-3.36.0 PKGNAME= ${DISTNAME:S/libwnck/libwnck3/} @@ -11,17 +11,21 @@ HOMEPAGE= https://www.gnome.org/ COMMENT= Library to write pagers and tasklists LICENSE= gnu-lgpl-v2 -#GNU_CONFIGURE= yes -#USE_PKGLOCALEDIR= yes -#USE_TOOLS+= gmake msgfmt pkg-config -USE_TOOLS+= pkg-config -#USE_LIBTOOL= yes - -PKGCONFIG_OVERRIDE= libwnck-3.0.pc.in +USE_TOOLS+= pkg-config xgettext # wnckutils conflict with devel/libwnck, but also probably aren't used MESON_ARGS+= -Dinstall_tools=false +# Remove unsupported linker arguments. +# Apply removals to post-wrapper transformed arguments. +BUILDLINK_TRANSFORM.Darwin+= rm:-Wl,--version-script +BUILDLINK_TRANSFORM.Darwin+= rm:-Wl,${WRKSRC}/libwnck/libwnck-3.map +BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,--version-script +BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,${WRKSRC}/libwnck/libwnck-3.map + +PKGCONFIG_OVERRIDE_STAGE= pre-install +PKGCONFIG_OVERRIDE= output/libwnck-3.0.pc + .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk" .include "../../devel/gobject-introspection/buildlink3.mk" --_----------=_1605529972271810--