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 C43F27A2DE for ; Wed, 4 Jan 2017 16:50:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6AA9D855C2; Wed, 4 Jan 2017 16:50:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F1305855B6 for ; Wed, 4 Jan 2017 16:50:31 +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 34Ya9cg1XhGo for ; Wed, 4 Jan 2017 16:50:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5CB828556C for ; Wed, 4 Jan 2017 16:50:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 58265FBA6; Wed, 4 Jan 2017 16:50:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1483548631202040" MIME-Version: 1.0 Date: Wed, 4 Jan 2017 16:50:31 +0000 From: "Roy Marples" Subject: CVS commit: pkgsrc/audio/juke To: pkgsrc-changes@NetBSD.org Reply-To: roy@netbsd.org X-Mailer: log_accum Message-Id: <20170104165031.58265FBA6@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. --_----------=_1483548631202040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: roy Date: Wed Jan 4 16:50:31 UTC 2017 Modified Files: pkgsrc/audio/juke: Makefile Log Message: Use the curses framework. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/audio/juke/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1483548631202040 Content-Disposition: inline Content-Length: 965 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/juke/Makefile diff -u pkgsrc/audio/juke/Makefile:1.17 pkgsrc/audio/juke/Makefile:1.18 --- pkgsrc/audio/juke/Makefile:1.17 Wed Apr 20 12:10:27 2016 +++ pkgsrc/audio/juke/Makefile Wed Jan 4 16:50:31 2017 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.17 2016/04/20 12:10:27 nros Exp $ +# $NetBSD: Makefile,v 1.18 2017/01/04 16:50:31 roy Exp $ # DISTNAME= juke-0.7 -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= audio MASTER_SITES= http://www.moll.no/oyvind/distfiles/ @@ -12,6 +12,7 @@ COMMENT= Simple ncurses based jukebox LICENSE= gnu-gpl-v2 GNU_CONFIGURE= YES +FAKE_NCURSES= yes EGDIR= ${PREFIX}/share/examples/juke @@ -28,5 +29,5 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/juke.conf ${DESTDIR}${EGDIR}/juke.conf.default ${INSTALL_DATA} ${WRKSRC}/MANUAL ${DESTDIR}${PREFIX}/share/doc/juke/ -.include "../../devel/ncurses/buildlink3.mk" +.include "../../mk/curses.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1483548631202040--