diff options
author | agc <agc> | 2000-01-28 10:16:54 +0000 |
---|---|---|
committer | agc <agc> | 2000-01-28 10:16:54 +0000 |
commit | 54f8e984ea35b1685809d84263376bf93ad5aee8 (patch) | |
tree | 6d6ec9602a26073aea2d494ea3245e6746ab5388 /mail | |
parent | 394d7448e75a9d6d069848bdcc737c597f26e13f (diff) | |
download | pkgsrc-54f8e984ea35b1685809d84263376bf93ad5aee8.tar.gz |
Only DEPEND on ncurses in NetBSD - standard Solaris curses works fine.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index 945e6ae22c9..f5991b1713a 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2000/01/19 11:15:07 tron Exp $ +# $NetBSD: Makefile,v 1.39 2000/01/28 10:16:54 agc Exp $ DISTNAME= mutt-${MUTT_VERSION} CATEGORIES= mail @@ -13,7 +13,6 @@ HOMEPAGE= http://www.mutt.org/ BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake -DEPENDS+= ncurses>=4.2:../../devel/ncurses GNU_CONFIGURE= yes USE_GMAKE= yes @@ -30,6 +29,10 @@ PLIST_SUBST+= LOCALEBASE=lib PLIST_SUBST+= LOCALEBASE=share .endif +.if ${OPSYS} == "NetBSD" +DEPENDS+= ncurses>=4.2:../../devel/ncurses +.endif + MUTT_BASE_VERSION= 1.0.1 .if defined(MUTT_INTERNATIONAL) && ${MUTT_INTERNATIONAL} == YES MUTT_VERSION= ${MUTT_BASE_VERSION}i |