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 320217A271 for ; Tue, 3 Jan 2017 22:13:13 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9EA5E855B5; Tue, 3 Jan 2017 22:13:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 305B684D04 for ; Tue, 3 Jan 2017 22:13:12 +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 W06mnHKPYlaX for ; Tue, 3 Jan 2017 22:13:11 +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 8EDB484CBD for ; Tue, 3 Jan 2017 22:13:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 85A08FBA6; Tue, 3 Jan 2017 22:13:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1483481591182280" MIME-Version: 1.0 Date: Tue, 3 Jan 2017 22:13:11 +0000 From: "Roy Marples" Subject: CVS commit: pkgsrc/games/sl To: pkgsrc-changes@NetBSD.org Reply-To: roy@netbsd.org X-Mailer: log_accum Message-Id: <20170103221311.85A08FBA6@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. --_----------=_1483481591182280 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: roy Date: Tue Jan 3 22:13:11 UTC 2017 Modified Files: pkgsrc/games/sl: Makefile Log Message: Use the curses framework. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/games/sl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1483481591182280 Content-Disposition: inline Content-Length: 1019 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/sl/Makefile diff -u pkgsrc/games/sl/Makefile:1.21 pkgsrc/games/sl/Makefile:1.22 --- pkgsrc/games/sl/Makefile:1.21 Tue Aug 18 07:31:09 2015 +++ pkgsrc/games/sl/Makefile Tue Jan 3 22:13:11 2017 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.21 2015/08/18 07:31:09 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2017/01/03 22:13:11 roy Exp $ # DISTNAME= sl-5.02 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= games MASTER_SITES= -https://github.com/mtoyoda/sl/archive/${PKGVERSION_NOREV}${EXTRACT_SUFX} @@ -10,6 +10,7 @@ MAINTAINER= minoura@NetBSD.org HOMEPAGE= http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/ COMMENT= Animated SL that runs across the terminal when you type `sl' +FAKE_NCURSES= yes DIST_SUBDIR= ${PKGNAME_NOREV} BUILD_TARGET= sl @@ -23,5 +24,5 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/sl.1.ja \ ${DESTDIR}${PREFIX}/${PKGMANDIR}/ja_JP.EUC/man1/sl.1 -.include "../../devel/ncurses/buildlink3.mk" +.include "../../mk/curses.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1483481591182280--