Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CE12384E5A for ; Sat, 9 Sep 2023 18:20:05 +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 4K1jO5oQsqWO for ; Sat, 9 Sep 2023 18:20:05 +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 20FB184D3C for ; Sat, 9 Sep 2023 18:20:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0FEABFBDB; Sat, 9 Sep 2023 18:20:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169428360548580" MIME-Version: 1.0 Date: Sat, 9 Sep 2023 18:20:05 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/dunst To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230909182005.0FEABFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169428360548580 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Sep 9 18:20:04 UTC 2023 Modified Files: pkgsrc/x11/dunst: Makefile Log Message: dunst: fix some paths so this looks for icons in the right place Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 pkgsrc/x11/dunst/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169428360548580 Content-Disposition: inline Content-Length: 998 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/dunst/Makefile diff -u pkgsrc/x11/dunst/Makefile:1.28 pkgsrc/x11/dunst/Makefile:1.29 --- pkgsrc/x11/dunst/Makefile:1.28 Mon Apr 24 08:29:25 2023 +++ pkgsrc/x11/dunst/Makefile Sat Sep 9 18:20:04 2023 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.28 2023/04/24 08:29:25 wiz Exp $ +# $NetBSD: Makefile,v 1.29 2023/09/09 18:20:04 wiz Exp $ DISTNAME= dunst-1.9.2 +PKGREVISION= 1 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_GITHUB:=dunst-project/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -30,6 +31,9 @@ SUBST_STAGE.fix-paths= pre-configure SUBST_MESSAGE.fix-paths= Fixing absolute paths. SUBST_FILES.fix-paths= dunstrc docs/dunst.1.pod SUBST_FILES.fix-paths+= docs/dunst.5.pod +SUBST_FILES.fix-paths+= src/icon-lookup.c +SUBST_FILES.fix-paths+= src/settings_data.h +SUBST_SED.fix-paths+= -e 's,/usr/local/share/:/usr/share/,${PREFIX}/share,g' SUBST_SED.fix-paths+= -e 's,/usr/bin,${PREFIX}/bin,g' SUBST_SED.fix-paths+= -e 's,/usr/share,${PREFIX}/share,g' --_----------=_169428360548580--