pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/editors



Module Name:    pkgsrc
Committed By:   ktnb
Date:           Tue Jan 14 18:50:15 UTC 2025

Modified Files:
        pkgsrc/editors/ait: Makefile
        pkgsrc/editors/mle: Makefile

Log Message:
exclude termbox-based editors from building on unsupported systems


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/editors/ait/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/editors/mle/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/editors/ait/Makefile
diff -u pkgsrc/editors/ait/Makefile:1.2 pkgsrc/editors/ait/Makefile:1.3
--- pkgsrc/editors/ait/Makefile:1.2     Fri Dec  6 16:31:13 2024
+++ pkgsrc/editors/ait/Makefile Tue Jan 14 18:50:14 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2024/12/06 16:31:13 ktnb Exp $
+# $NetBSD: Makefile,v 1.3 2025/01/14 18:50:14 ktnb Exp $
 
 DISTNAME=      1.10
 PKGNAME=       ait-${DISTNAME}
@@ -11,6 +11,10 @@ HOMEPAGE=    https://notabug.org/nuclearkev
 COMMENT=       Small but mighty GNU Emacs style editor
 LICENSE=       modified-bsd
 
+# termbox doesn't compile on these systems
+BROKEN_ON_PLATFORM=    SmartOS-*-*
+BROKEN_ON_PLATFORM+=   OpenBSD-*-*
+
 WRKSRC=                ${WRKDIR}/ait
 MAKE_FILE=     makefile
 

Index: pkgsrc/editors/mle/Makefile
diff -u pkgsrc/editors/mle/Makefile:1.2 pkgsrc/editors/mle/Makefile:1.3
--- pkgsrc/editors/mle/Makefile:1.2     Wed Apr  3 00:55:28 2024
+++ pkgsrc/editors/mle/Makefile Tue Jan 14 18:50:15 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2024/04/03 00:55:28 ktnb Exp $
+# $NetBSD: Makefile,v 1.3 2025/01/14 18:50:15 ktnb Exp $
 
 DISTNAME=      mle-1.7.2
 CATEGORIES=    editors
@@ -10,6 +10,10 @@ HOMEPAGE=    https://github.com/adsr/mle/
 COMMENT=       Termbox-based text editor
 LICENSE=       apache-2.0
 
+# termbox doesn't compile on these systems
+BROKEN_ON_PLATFORM=    SmartOS-*-*
+BROKEN_ON_PLATFORM+=   OpenBSD-*-*
+
 USE_TOOLS+=    pkg-config gmake
 USE_LANGUAGES= c c++
 



Home | Main Index | Thread Index | Old Index