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 "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 0F58A7A474 for ; Mon, 13 Jun 2016 22:40:28 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id B10C985EBC; Mon, 13 Jun 2016 22:40:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 41DB085E9A for ; Mon, 13 Jun 2016 22:40:27 +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 IDEOrKUsGHZD for ; Mon, 13 Jun 2016 22:40:26 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A3A9E84CEC for ; Mon, 13 Jun 2016 22:40:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9E8C0FBB5; Mon, 13 Jun 2016 22:40:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1465857626118920" MIME-Version: 1.0 Date: Mon, 13 Jun 2016 22:40:26 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/x11/dunst To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20160613224026.9E8C0FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1465857626118920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Mon Jun 13 22:40:26 UTC 2016 Modified Files: pkgsrc/x11/dunst: Makefile Log Message: Use pkgsrc-specific prefix in the example configuration Little effect for a user - no PKGREVISION bumped. Patch by Mateusz Poszwa To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/dunst/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1465857626118920 Content-Disposition: inline Content-Length: 906 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.1 pkgsrc/x11/dunst/Makefile:1.2 --- pkgsrc/x11/dunst/Makefile:1.1 Sat Jun 11 22:07:01 2016 +++ pkgsrc/x11/dunst/Makefile Mon Jun 13 22:40:26 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2016/06/11 22:07:01 kamil Exp $ +# $NetBSD: Makefile,v 1.2 2016/06/13 22:40:26 kamil Exp $ DISTNAME= dunst-1.1.0 CATEGORIES= x11 @@ -14,6 +14,13 @@ USE_TOOLS+= gmake MAKE_FLAGS+= MANPREFIX=${PREFIX}/${PKGMANDIR} +SUBST_CLASSES+= fix-paths +SUBST_STAGE.fix-paths= pre-configure +SUBST_MESSAGE.fix-paths= Fixing absolute paths. +SUBST_FILES.fix-paths= dunstrc +SUBST_SED.fix-paths+= -e 's,/usr/bin,${PREFIX}/bin,g' +SUBST_SED.fix-paths+= -e 's,/usr/share,${PREFIX}/share,g' + .include "../../devel/pango/buildlink3.mk" .include "../../sysutils/dbus/buildlink3.mk" .include "../../x11/libxdg-basedir/buildlink3.mk" --_----------=_1465857626118920--