diff options
author | agc <agc@pkgsrc.org> | 2000-01-28 10:16:54 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2000-01-28 10:16:54 +0000 |
commit | f9a9d449bccb71bff085413dae816fb02e3b1f17 (patch) | |
tree | 6d6ec9602a26073aea2d494ea3245e6746ab5388 /mail/mutt | |
parent | fa70d91ff28edaea06ee62e02367e9f404c0a47d (diff) | |
download | pkgsrc-f9a9d449bccb71bff085413dae816fb02e3b1f17.tar.gz |
Only DEPEND on ncurses in NetBSD - standard Solaris curses works fine.
Diffstat (limited to 'mail/mutt')
-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 |