pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/R-tcltk2



Module Name:    pkgsrc
Committed By:   tnn
Date:           Sat Jun 18 09:07:37 UTC 2022

Modified Files:
        pkgsrc/devel/R-tcltk2: Makefile

Log Message:
R-tcltk2: PR pkg/56696: conditionally set PKG_FAIL_REASON instead of BROKEN

Reports on IRC that the package does not infinite loop if $DISPLAY is set.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/R-tcltk2/Makefile

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

Modified files:

Index: pkgsrc/devel/R-tcltk2/Makefile
diff -u pkgsrc/devel/R-tcltk2/Makefile:1.5 pkgsrc/devel/R-tcltk2/Makefile:1.6
--- pkgsrc/devel/R-tcltk2/Makefile:1.5  Mon Mar 28 15:51:46 2022
+++ pkgsrc/devel/R-tcltk2/Makefile      Sat Jun 18 09:07:37 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2022/03/28 15:51:46 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2022/06/18 09:07:37 tnn Exp $
 
 R_PKGNAME=     tcltk2
 R_PKGVER=      1.2-11
@@ -9,7 +9,9 @@ MAINTAINER=     pkgsrc-users%NetBSD.org@localhost
 COMMENT=       Tcl/Tk additions
 LICENSE=       gnu-lgpl-v3     # + file LICENSE
 
-BROKEN=                "Infinite loop during build, see pkg/56696"
+.if empty(DISPLAY)
+PKG_FAIL_REASON=       "PR pkg/56696: DISPLAY must be set to a working X11 display."
+.endif
 
 USE_LANGUAGES= # none
 



Home | Main Index | Thread Index | Old Index