View | Details | Raw Unified | Return to bug 88125
Collapse All | Expand All

(-)./Makefile (-1 / +11 lines)
Lines 23-28 Link Here
23
# and SLANG (WITH_MUTT_SLANG) which is the default. Note that you may
23
# and SLANG (WITH_MUTT_SLANG) which is the default. Note that you may
24
# have to set the variables COLORTERM=yes and COLORFGBG="color1;color2" in your
24
# have to set the variables COLORTERM=yes and COLORFGBG="color1;color2" in your
25
# environment to get slang function properly.
25
# environment to get slang function properly.
26
# The default version for slang is 1.x. Define WITH_MUTT_SLANG2 if you want
27
# to use the slang version 2.x
26
#
28
#
27
# If you want to install the mutt documentation in html and ps format define:
29
# If you want to install the mutt documentation in html and ps format define:
28
#  WITH_MUTT_HTML
30
#  WITH_MUTT_HTML
Lines 237-248 Link Here
237
.endif
239
.endif
238
.if defined(WITH_MUTT_SLANG)
240
.if defined(WITH_MUTT_SLANG)
239
MUTT_USES_SLANG=	yes
241
MUTT_USES_SLANG=	yes
242
MUTT_USES_SLANG1=	yes
243
.endif
244
.if defined(WITH_MUTT_SLANG2)
245
MUTT_USES_SLANG=	yes
246
MUTT_USES_SLANG2=	yes
240
.endif
247
.endif
241
.if defined(WITH_MUTT_NCURSES) && !defined(MUTT_USES_SLANG)
248
.if defined(WITH_MUTT_NCURSES) && !defined(MUTT_USES_SLANG)
242
MUTT_USES_NCURSES=	yes
249
MUTT_USES_NCURSES=	yes
243
.endif
250
.endif
244
.if !defined(MUTT_USES_SLANG) && !defined(WITHOUT_MUTT_SLANG) && !defined(MUTT_USES_NCURSES)
251
.if !defined(MUTT_USES_SLANG) && !defined(WITHOUT_MUTT_SLANG) && !defined(MUTT_USES_NCURSES)
245
MUTT_USES_SLANG=	yes
252
MUTT_USES_SLANG=	yes
253
MUTT_USES_SLANG1=	yes
246
.endif
254
.endif
247
.if defined(WITHOUT_MUTT_SGMLFORMAT)
255
.if defined(WITHOUT_MUTT_SGMLFORMAT)
248
XML_USED=	no
256
XML_USED=	no
Lines 265-272 Link Here
265
.if defined(MUTT_USES_NCURSES) && ${OSVERSION} < 400000
273
.if defined(MUTT_USES_NCURSES) && ${OSVERSION} < 400000
266
LIB_DEPENDS+=	ncurses.5:${PORTSDIR}/devel/ncurses
274
LIB_DEPENDS+=	ncurses.5:${PORTSDIR}/devel/ncurses
267
CFLAGS+=	-I${LOCALBASE}/include/ncurses -I${LOCALBASE}/include
275
CFLAGS+=	-I${LOCALBASE}/include/ncurses -I${LOCALBASE}/include
268
.elif defined(MUTT_USES_SLANG)
276
.elif defined(MUTT_USES_SLANG1)
269
LIB_DEPENDS+=	slang.1:${PORTSDIR}/devel/libslang
277
LIB_DEPENDS+=	slang.1:${PORTSDIR}/devel/libslang
278
.elif defined(MUTT_USES_SLANG2)
279
LIB_DEPENDS+=	slang.2:${PORTSDIR}/devel/libslang2
270
.endif
280
.endif
271
.if defined(WITH_MUTT_CYRUS_SASL2)
281
.if defined(WITH_MUTT_CYRUS_SASL2)
272
LIB_DEPENDS+=	sasl2.2:${PORTSDIR}/security/cyrus-sasl2
282
LIB_DEPENDS+=	sasl2.2:${PORTSDIR}/security/cyrus-sasl2

Return to bug 88125