diff options
author | agc <agc> | 2000-01-28 10:16:54 +0000 |
---|---|---|
committer | agc <agc> | 2000-01-28 10:16:54 +0000 |
commit | 1041b7fc9ee1fa2e6a47b72ff901da26d8962c5f (patch) | |
tree | 6d6ec9602a26073aea2d494ea3245e6746ab5388 /mail/mutt | |
parent | 6f9f325dd896f283fe9b21535b56ba0572fc905f (diff) | |
download | pkgsrc-1041b7fc9ee1fa2e6a47b72ff901da26d8962c5f.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 |