Received: by mail.netbsd.org (Postfix, from userid 605) id E6A1284D47; Fri, 13 Sep 2019 10:54:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6E4FA84CE3 for ; Fri, 13 Sep 2019 10:54:48 +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 1MI0nYiBSc-f for ; Fri, 13 Sep 2019 10:54:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C668984C6C for ; Fri, 13 Sep 2019 10:54:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C0C1AFBF4; Fri, 13 Sep 2019 10:54:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1568372087184690" MIME-Version: 1.0 Date: Fri, 13 Sep 2019 10:54:47 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/festival To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190913105447.C0C1AFBF4@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. --_----------=_1568372087184690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Sep 13 10:54:47 UTC 2019 Modified Files: pkgsrc/audio/festival: Makefile Log Message: festival: restore the old termcap handling until I understand this better. To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 pkgsrc/audio/festival/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1568372087184690 Content-Disposition: inline Content-Length: 921 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.79 pkgsrc/audio/festival/Makefile:1.80 --- pkgsrc/audio/festival/Makefile:1.79 Mon Sep 9 09:55:29 2019 +++ pkgsrc/audio/festival/Makefile Fri Sep 13 10:54:47 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.79 2019/09/09 09:55:29 nia Exp $ +# $NetBSD: Makefile,v 1.80 2019/09/13 10:54:47 nia Exp $ DISTNAME= festival-2.5.0-release PKGNAME= ${DISTNAME:S/-release//} @@ -116,9 +116,9 @@ do-install: ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/festival_client.1 .include "../../mk/termcap.buildlink3.mk" -.if ${TERMCAP_TYPE} != "curses" -BUILDLINK_TRANSFORM+= rm:-lcurses -BUILDLINK_TRANSFORM+= rm:-lncurses +.if ${OPSYS} == "Linux" +# See DebianGNULinux.mak +.include "../../mk/curses.buildlink3.mk" .endif MAKE_ENV+= BUILDLINK_CPPFLAGS=${BUILDLINK_CPPFLAGS:Q} MAKE_ENV+= BUILDLINK_LDFLAGS=${BUILDLINK_LDADD.termcap:Q} --_----------=_1568372087184690--