Received: by mail.netbsd.org (Postfix, from userid 605) id 22DC984D22; Sun, 2 Sep 2018 20:27:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2C9C584CDC for ; Sun, 2 Sep 2018 20:27:21 +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 mafUlyjfGfqa for ; Sun, 2 Sep 2018 20:27:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 79A9D84C82 for ; Sun, 2 Sep 2018 20:27:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 767FAFBF8; Sun, 2 Sep 2018 20:27:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1535920040198860" MIME-Version: 1.0 Date: Sun, 2 Sep 2018 20:27:20 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/xscreensaver To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20180902202720.767FAFBF8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1535920040198860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Sep 2 20:27:20 UTC 2018 Modified Files: pkgsrc/x11/xscreensaver: distinfo Added Files: pkgsrc/x11/xscreensaver/patches: patch-utils_Makefile.in Log Message: xscreensaver: fix one GNU make'ism More remain. To generate a diff of this commit: cvs rdiff -u -r1.76 -r1.77 pkgsrc/x11/xscreensaver/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/x11/xscreensaver/patches/patch-utils_Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1535920040198860 Content-Disposition: inline Content-Length: 1727 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/xscreensaver/distinfo diff -u pkgsrc/x11/xscreensaver/distinfo:1.76 pkgsrc/x11/xscreensaver/distinfo:1.77 --- pkgsrc/x11/xscreensaver/distinfo:1.76 Sun Sep 2 20:12:03 2018 +++ pkgsrc/x11/xscreensaver/distinfo Sun Sep 2 20:27:20 2018 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.76 2018/09/02 20:12:03 wiz Exp $ +$NetBSD: distinfo,v 1.77 2018/09/02 20:27:20 wiz Exp $ SHA1 (xscreensaver/xscreensaver-5.40.tar.gz) = 82c7433fe008e6ea9ab8683cf3325a673b8a8233 RMD160 (xscreensaver/xscreensaver-5.40.tar.gz) = 05dd6ff6fc607c4364adb9485b9888134ebaa56b @@ -6,3 +6,4 @@ SHA512 (xscreensaver/xscreensaver-5.40.t Size (xscreensaver/xscreensaver-5.40.tar.gz) = 12248135 bytes SHA1 (patch-ad) = ff03b044ca82964c3b9535b84a7dcca6d5f8f1bb SHA1 (patch-af) = 4ee300a205a0ac448939ac2776087db48d808ad8 +SHA1 (patch-utils_Makefile.in) = 1a493bc42689be5c03c54c97f316c2638dae25e3 Added files: Index: pkgsrc/x11/xscreensaver/patches/patch-utils_Makefile.in diff -u /dev/null pkgsrc/x11/xscreensaver/patches/patch-utils_Makefile.in:1.1 --- /dev/null Sun Sep 2 20:27:20 2018 +++ pkgsrc/x11/xscreensaver/patches/patch-utils_Makefile.in Sun Sep 2 20:27:20 2018 @@ -0,0 +1,15 @@ +$NetBSD: patch-utils_Makefile.in,v 1.1 2018/09/02 20:27:20 wiz Exp $ + +Fix a GNU make'ism. + +--- utils/Makefile.in.orig 2018-08-12 23:36:32.000000000 +0000 ++++ utils/Makefile.in +@@ -196,7 +196,7 @@ CCUTILS = $(INCLUDES) $(DEFS) $(CPPFLAGS + + # Two versions of this: driver/ does not link with Xft, but hacks/ does. + font-retry-xft.o: font-retry.c +- $(CC) -c $(CCUTILS) -DUSE_XFT $< -o $@ ++ $(CC) -c $(CCUTILS) -DUSE_XFT font-retry.c -o $@ + + + # Rules for generating the VMS makefiles on Unix, so that it doesn't have to --_----------=_1535920040198860--