diff options
author | jlam <jlam@pkgsrc.org> | 2003-09-28 09:13:55 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-09-28 09:13:55 +0000 |
commit | 2208a6acf9c4762c5094c7a32b330edbae677600 (patch) | |
tree | b1a9b04306449cc38e3d4129edeafafaad1022c1 /www | |
parent | 5334ed437bd19170c839b8c6e12d15837f88ce60 (diff) | |
download | pkgsrc-2208a6acf9c4762c5094c7a32b330edbae677600.tar.gz |
Back out last change related to moving ncurses/buildlink2.mk to
curses.buildlink2.mk. This was wrong because we _really_ do want to
express that we want _n_curses when we include the buildlink2.mk file.
We should have a better way to say that the NetBSD curses doesn't
quite work well enough. In fact, it's far better to depend on ncurses
by default, and exceptionally note when it's okay to use NetBSD curses
for specific packages. We will look into this again in the future.
Diffstat (limited to 'www')
-rw-r--r-- | www/lynx-current/Makefile | 4 | ||||
-rw-r--r-- | www/lynx/Makefile | 4 | ||||
-rw-r--r-- | www/wml/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/www/lynx-current/Makefile b/www/lynx-current/Makefile index 58e6a66fb4d..9fb1150b79f 100644 --- a/www/lynx-current/Makefile +++ b/www/lynx-current/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.46 2003/09/27 17:07:38 grant Exp $ +# $NetBSD: Makefile,v 1.47 2003/09/28 09:13:59 jlam Exp $ # DISTNAME= lynx2.8.5dev.7 @@ -66,7 +66,7 @@ post-install: . include "../../devel/libslang/buildlink2.mk" .elif (${LYNX_SCREEN_LIB} == ncurses) USE_NCURSES= color -. include "../../mk/curses.buildlink2.mk" +. include "../../devel/ncurses/buildlink2.mk" CONFIGURE_ARGS+= --enable-color-style .elif (${LYNX_SCREEN_LIB} == curses) . if ${MACHINE_PLATFORM:MNetBSD-1.5*-i386} != "" diff --git a/www/lynx/Makefile b/www/lynx/Makefile index 2251177a8ff..862a0ebb271 100644 --- a/www/lynx/Makefile +++ b/www/lynx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.59 2003/09/27 17:07:38 grant Exp $ +# $NetBSD: Makefile,v 1.60 2003/09/28 09:13:59 jlam Exp $ # DISTNAME= lynx2.8.4rel.1 @@ -78,7 +78,7 @@ post-install: . include "../../devel/libslang/buildlink2.mk" .elif (${LYNX_SCREEN_LIB} == ncurses) USE_NCURSES= color -. include "../../mk/curses.buildlink2.mk" +. include "../../devel/ncurses/buildlink2.mk" CONFIGURE_ARGS+= --enable-color-style .elif (${LYNX_SCREEN_LIB} != curses) pre-configure: diff --git a/www/wml/Makefile b/www/wml/Makefile index 82b99f39b43..3c5fce7c9d1 100644 --- a/www/wml/Makefile +++ b/www/wml/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2003/09/27 17:07:38 grant Exp $ +# $NetBSD: Makefile,v 1.12 2003/09/28 09:13:59 jlam Exp $ # DISTNAME= wml-2.0.3 @@ -42,6 +42,6 @@ post-install: ${MV} $${i}.7 $${i}.0 ; \ done -.include "../../mk/curses.buildlink2.mk" +.include "../../devel/ncurses/buildlink2.mk" .include "../../lang/perl5/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |