Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5B93C84EA2 for ; Mon, 16 Oct 2023 13:18:11 +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 cA1iwlrb2qWK for ; Mon, 16 Oct 2023 13:18:10 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AD60B84D24 for ; Mon, 16 Oct 2023 13:18:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A72D0FADC; Mon, 16 Oct 2023 13:18:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169746229055290" MIME-Version: 1.0 Date: Mon, 16 Oct 2023 13:18:10 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/audio/festival To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20231016131810.A72D0FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169746229055290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Mon Oct 16 13:18:10 UTC 2023 Modified Files: pkgsrc/audio/festival: Makefile Log Message: festival: Do not hardcode ncurses * Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.84 -r1.85 pkgsrc/audio/festival/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169746229055290 Content-Disposition: inline Content-Length: 959 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/festival/Makefile diff -u pkgsrc/audio/festival/Makefile:1.84 pkgsrc/audio/festival/Makefile:1.85 --- pkgsrc/audio/festival/Makefile:1.84 Tue Jun 28 11:30:54 2022 +++ pkgsrc/audio/festival/Makefile Mon Oct 16 13:18:10 2023 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.84 2022/06/28 11:30:54 wiz Exp $ +# $NetBSD: Makefile,v 1.85 2023/10/16 13:18:10 ryoon Exp $ DISTNAME= festival-2.5.0-release PKGNAME= ${DISTNAME:S/-release//} -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= audio MASTER_SITES= http://festvox.org/packed/festival/2.5/ DISTFILES= ${DISTNAME}.tar.gz \ @@ -116,6 +116,6 @@ do-install: ${INSTALL_MAN} ${FESTIVAL}/doc/festival_client.1 \ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/festival_client.1 -.include "../../devel/ncurses/buildlink3.mk" -.include "../../mk/termcap.buildlink3.mk" +.include "../../mk/curses.buildlink3.mk" +.include "../../mk/terminfo.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_169746229055290--