pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/editors/nano
Module Name: pkgsrc
Committed By: nia
Date: Sat Mar 2 10:33:07 UTC 2024
Modified Files:
pkgsrc/editors/nano: Makefile options.mk
Log Message:
nano: force use of ncurses until PR pkg/57749 is resolved
To generate a diff of this commit:
cvs rdiff -u -r1.106 -r1.107 pkgsrc/editors/nano/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/editors/nano/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/editors/nano/Makefile
diff -u pkgsrc/editors/nano/Makefile:1.106 pkgsrc/editors/nano/Makefile:1.107
--- pkgsrc/editors/nano/Makefile:1.106 Thu Feb 2 16:54:20 2023
+++ pkgsrc/editors/nano/Makefile Sat Mar 2 10:33:07 2024
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.106 2023/02/02 16:54:20 schwarz Exp $
+# $NetBSD: Makefile,v 1.107 2024/03/02 10:33:07 nia Exp $
DISTNAME= nano-7.2
+PKGREVISION= 1
CATEGORIES= editors
MASTER_SITES= https://www.nano-editor.org/dist/v${PKGVERSION_NOREV:C/\..*$//}/
EXTRACT_SUFX= .tar.xz
@@ -44,5 +45,4 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/doc/sample.nanorc ${DESTDIR}${PREFIX}/share/examples/nano/nanorc
.include "../../devel/gettext-lib/buildlink3.mk"
-.include "../../mk/curses.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/editors/nano/options.mk
diff -u pkgsrc/editors/nano/options.mk:1.6 pkgsrc/editors/nano/options.mk:1.7
--- pkgsrc/editors/nano/options.mk:1.6 Tue Nov 24 18:21:38 2020
+++ pkgsrc/editors/nano/options.mk Sat Mar 2 10:33:07 2024
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.6 2020/11/24 18:21:38 nia Exp $
+# $NetBSD: options.mk,v 1.7 2024/03/02 10:33:07 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.nano
PKG_SUPPORTED_OPTIONS= wide-curses
@@ -9,7 +9,10 @@ PKG_OPTIONS_LEGACY_OPTS+= ncursesw:wide-
###
### Wide curses support; otherwise, default to using narrow curses.
+### XXX netbsd curses is unacceptable due to PR pkg/57749
###
.if !empty(PKG_OPTIONS:Mwide-curses)
-# Handled by curses.mk.
+. include "../../devel/ncursesw/buildlink3.mk"
+.else
+. include "../../devel/ncurses/buildlink3.mk"
.endif
Home |
Main Index |
Thread Index |
Old Index