Received: by mail.netbsd.org (Postfix, from userid 605) id 96D6784E59; Tue, 25 Oct 2022 18:00:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C808C84D51 for ; Tue, 25 Oct 2022 18:00:36 +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 5mznN2SYCjqF for ; Tue, 25 Oct 2022 18:00:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3EDF384CF7 for ; Tue, 25 Oct 2022 18:00:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 38B3BFA90; Tue, 25 Oct 2022 18:00:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1666720836122080" MIME-Version: 1.0 Date: Tue, 25 Oct 2022 18:00:36 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/devel/ncursesw To: pkgsrc-changes@NetBSD.org Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20221025180036.38B3BFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1666720836122080 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Tue Oct 25 18:00:36 UTC 2022 Modified Files: pkgsrc/devel/ncursesw: Makefile PLIST Log Message: ncursesw: install missing includes chat/mcabber breaks when building with ncursesw since ncursesw/panel.h is missing. Might fix other packages too. Bump PKGREVISION due to PLIST change. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/ncursesw/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/ncursesw/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1666720836122080 Content-Disposition: inline Content-Length: 2066 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ncursesw/Makefile diff -u pkgsrc/devel/ncursesw/Makefile:1.21 pkgsrc/devel/ncursesw/Makefile:1.22 --- pkgsrc/devel/ncursesw/Makefile:1.21 Wed Mar 4 14:04:51 2020 +++ pkgsrc/devel/ncursesw/Makefile Tue Oct 25 18:00:36 2022 @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.21 2020/03/04 14:04:51 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2022/10/25 18:00:36 nros Exp $ .include "../../devel/ncurses/Makefile.common" PKGNAME= ${DISTNAME:S/ncurses/ncursesw/} +PKGREVISION= 1 COMMENT= Wide character CRT screen handling and optimization package PATCHDIR= ${.CURDIR}/../../devel/ncurses/patches @@ -28,8 +29,10 @@ post-build: cd ${WRKSRC}/misc && ${SH} gen-pkgconfig do-install: - cd ${WRKSRC}/include && \ - ${MAKE_ENV} ${MAKE_PROGRAM} ${INSTALL_MAKE_FLAGS} install + for DIR in c++ form include menu panel; do \ + cd ${WRKSRC}/$${DIR}; \ + ${RUN} ${MAKE_ENV} ${MAKE_PROGRAM} ${INSTALL_MAKE_FLAGS} install.includes; \ + done ${INSTALL_SCRIPT} ${WRKSRC}/misc/ncurses-config ${DESTDIR}${PREFIX}/bin/ncursesw${NC_VERS:R}-config for LIB in gnuform gnumenu ncurses++ ncurses gnupanel; do \ ${LIBTOOL} --mode=install ${INSTALL_PROGRAM} \ Index: pkgsrc/devel/ncursesw/PLIST diff -u pkgsrc/devel/ncursesw/PLIST:1.10 pkgsrc/devel/ncursesw/PLIST:1.11 --- pkgsrc/devel/ncursesw/PLIST:1.10 Tue Nov 16 15:20:38 2021 +++ pkgsrc/devel/ncursesw/PLIST Tue Oct 25 18:00:36 2022 @@ -1,9 +1,20 @@ -@comment $NetBSD: PLIST,v 1.10 2021/11/16 15:20:38 wiz Exp $ +@comment $NetBSD: PLIST,v 1.11 2022/10/25 18:00:36 nros Exp $ bin/ncursesw6-config include/ncursesw/curses.h +include/ncursesw/cursesapp.h +include/ncursesw/cursesf.h +include/ncursesw/cursesm.h +include/ncursesw/cursesp.h +include/ncursesw/cursesw.h +include/ncursesw/cursslk.h +include/ncursesw/eti.h +include/ncursesw/etip.h +include/ncursesw/form.h +include/ncursesw/menu.h include/ncursesw/nc_tparm.h include/ncursesw/ncurses.h include/ncursesw/ncurses_dll.h +include/ncursesw/panel.h include/ncursesw/term.h include/ncursesw/term_entry.h include/ncursesw/termcap.h --_----------=_1666720836122080--