pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/ncurses On platforms that have neither a builtin...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6a1be2f5df08
branches:  trunk
changeset: 530581:6a1be2f5df08
user:      tnn <tnn%pkgsrc.org@localhost>
date:      Mon Jul 02 02:08:20 2007 +0000

description:
On platforms that have neither a builtin groff nor builtin curses
we can end up with a circular dependency:

ncurses -> groff -> netpbm -> flex -> bison -> gtexinfo -> ncurses

ncurses may depend on groff because of USE_TOOLS+=tbl.
Break the circular dependency by using --without-manpage-tbl
if there is no tbl(1) available and we're unable to build
groff because of missing curses.

diffstat:

 devel/ncurses/Makefile.common |  14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diffs (28 lines):

diff -r 2189011de88b -r 6a1be2f5df08 devel/ncurses/Makefile.common
--- a/devel/ncurses/Makefile.common     Sun Jul 01 23:27:43 2007 +0000
+++ b/devel/ncurses/Makefile.common     Mon Jul 02 02:08:20 2007 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.5 2007/02/06 14:34:54 rillig Exp $
+# $NetBSD: Makefile.common,v 1.6 2007/07/02 02:08:20 tnn Exp $
 
 DISTNAME=      ncurses-${NC_VERS}
 NC_VERS=       5.6
@@ -31,6 +31,18 @@
 MAKE_JOBS_SAFE=                no
 
 .include "../../mk/bsd.prefs.mk"
+.if !defined(TOOLS_TBL)
+# This means that groff needs to be built to get tbl(1).
+# We can only build groff if there is a builtin implementation of curses,
+# otherwise we get a circular dependency problem.
+# Additionally, Interix is special, see ../../mk/curses.buildlink3.mk
+. if !(exists(/usr/include/curses.h) || exists(/usr/include/ncurses.h)) || \
+       ${OPSYS} == "Interix"
+# None was available, so disable use of tbl(1)
+USE_TOOLS:=            ${USE_TOOLS:Ntbl}
+CONFIGURE_ARGS+=       --without-manpage-tbl
+. endif
+.endif
 
 .if ${OPSYS} == "SunOS"
 PLIST_SUBST+=  NOT_SUNOS="@comment "



Home | Main Index | Thread Index | Old Index