Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 65F0184E80 for ; Sun, 9 Jul 2023 09:08:37 +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 5MSXndtkptwa for ; Sun, 9 Jul 2023 09:08:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B72A284E68 for ; Sun, 9 Jul 2023 09:08:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B06F2FBDB; Sun, 9 Jul 2023 09:08:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688893716285930" MIME-Version: 1.0 Date: Sun, 9 Jul 2023 09:08:36 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/x11/deforaos-panel To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230709090836.B06F2FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688893716285930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 9 09:08:36 UTC 2023 Modified Files: pkgsrc/x11/deforaos-panel: Makefile Log Message: deforaos-panel: Requires alsa-lib on at minimum Linux. Don't understand the build system well enough to determine the exact conditions for volume.so to be built. To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 pkgsrc/x11/deforaos-panel/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688893716285930 Content-Disposition: inline Content-Length: 853 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/deforaos-panel/Makefile diff -u pkgsrc/x11/deforaos-panel/Makefile:1.48 pkgsrc/x11/deforaos-panel/Makefile:1.49 --- pkgsrc/x11/deforaos-panel/Makefile:1.48 Tue Jun 6 12:42:52 2023 +++ pkgsrc/x11/deforaos-panel/Makefile Sun Jul 9 09:08:36 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2023/06/06 12:42:52 riastradh Exp $ +# $NetBSD: Makefile,v 1.49 2023/07/09 09:08:36 nia Exp $ DISTNAME= Panel-0.4.3 PKGNAME= deforaos-panel-0.4.3 @@ -50,8 +50,10 @@ post-install: .endif .include "options.mk" - .include "../../devel/deforaos-configure/deforaos-configure.mk" +.if ${OPSYS} == "Linux" +. include "../../audio/alsa-lib/buildlink3.mk" +.endif .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../x11/deforaos-libdesktop/buildlink3.mk" .include "../../x11/libxkbfile/buildlink3.mk" --_----------=_1688893716285930--