diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2005-05-08 15:37:47 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2005-05-08 15:37:47 +0000 |
commit | b2cc914be90291938d2bc8e5d310ce61c527d3ee (patch) | |
tree | c3c61b135eb28e82f0d19c58ad7e20af6ce83a40 /mail/mutt14 | |
parent | 219fafe44587db9fdc2b2dd665dbe5a2811a47c3 (diff) | |
download | ports-b2cc914be90291938d2bc8e5d310ce61c527d3ee.tar.gz ports-b2cc914be90291938d2bc8e5d310ce61c527d3ee.zip |
Notes
Diffstat (limited to 'mail/mutt14')
-rw-r--r-- | mail/mutt14/Makefile | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/mail/mutt14/Makefile b/mail/mutt14/Makefile index 29817493e003..f2a78a145166 100644 --- a/mail/mutt14/Makefile +++ b/mail/mutt14/Makefile @@ -30,18 +30,21 @@ COMMENT?= The Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, etc.) CONFLICTS= mutt-devel-* -.if defined(PACKAGE_BUILDING) +RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support +.if defined(PACKAGE_BUILDING) && !defined (MUTT_LITE) WITH_SLANG= yes BUILD_DEPENDS= ispell:${PORTSDIR}/textproc/ispell -RUN_DEPENDS= ispell:${PORTSDIR}/textproc/ispell \ - urlview:${PORTSDIR}/textproc/urlview \ - ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support +RUN_DEPENDS+= ispell:${PORTSDIR}/textproc/ispell \ + urlview:${PORTSDIR}/textproc/urlview .endif -.if ${MACHINE_ARCH} != "alpha" +.if defined (MUTT_LITE) +WITH_SGML_DOCS:=no +.elif ${MACHINE_ARCH} != "alpha" # coredump in sgmls WITH_SGML_DOCS?=yes .endif +.if !defined (MUTT_LITE) .if !defined(WITHOUT_NLS) USE_GETTEXT= yes USE_ICONV= yes @@ -49,15 +52,17 @@ USE_ICONV= yes .error the WITHOUT_MUTT_ICONV knob of the mutt port only works if \ WITHOUT_NLS is also given .endif -.elif !defined(WITHOUT_MUTT_ICONV) +.elif !defined(WITHOUT_MUTT_ICONV) && !defined (MUTT_LITE) USE_ICONV= yes .endif +.endif .if defined(WITH_SLANG) LIB_DEPENDS+= slang.1:${PORTSDIR}/devel/libslang .elif defined(WITH_NCURSES_PORT) LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses .endif +.if !defined (MUTT_LITE) .if defined(WITH_MUTT_CYRUS_SASL) LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl .endif @@ -68,6 +73,7 @@ BUILD_DEPENDS+= sgmlfmt:${PORTSDIR}/textproc/sgmlformat PATCH_DEPENDS+= ${NONEXISTENT}:${PORTSDIR}/news/slrnface:extract RUN_DEPENDS+= slrnface:${PORTSDIR}/news/slrnface .endif +.endif DIST_SUBDIR= mutt WRKSRC= ${WRKDIR}/${DISTNAME:S/i$//} |