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

(-)./Makefile (-3 / +20 lines)
Lines 20-28 Link Here
20
# The two most important knobs are:
20
# The two most important knobs are:
21
#
21
#
22
# In general you can choose between using ncurses (WITH_MUTT_NCURSES)
22
# In general you can choose between using ncurses (WITH_MUTT_NCURSES)
23
# and SLANG (WITH_MUTT_SLANG) which is the default. Note that you may
23
# and SLANG (WITH_MUTT_SLANG). Note that you may have to set the variables
24
# have to set the variables COLORTERM=yes and COLORFGBG="color1;color2" in your
24
# COLORTERM=yes and COLORFGBG="color1;color2" in your environment to get slang
25
# environment to get slang function properly.
25
# function properly.
26
# The default version for slang is 1.x. Define WITH_MUTT_SLANG2 if you want
26
# The default version for slang is 1.x. Define WITH_MUTT_SLANG2 if you want
27
# to use the slang version 2.x
27
# to use the slang version 2.x
28
# The default version for ncurses is that which comes with the operating
28
# The default version for ncurses is that which comes with the operating
Lines 104-109 Link Here
104
# If you want to enable the `greeting' option define:
104
# If you want to enable the `greeting' option define:
105
#  WITH_MUTT_GREETING_PATCH
105
#  WITH_MUTT_GREETING_PATCH
106
#
106
#
107
# If you want to enable the internal SMTP relay support define:
108
#  WITH_MUTT_SMTP
109
#
107
110
108
PORTNAME=	mutt-devel
111
PORTNAME=	mutt-devel
109
PORTVERSION=	1.5.16
112
PORTVERSION=	1.5.16
Lines 203-208 Link Here
203
IGNORE=	cannot install: the WITH_MUTT_SIDEBAR_PATCH and WITH_MUTT_NNTP are not compatible
206
IGNORE=	cannot install: the WITH_MUTT_SIDEBAR_PATCH and WITH_MUTT_NNTP are not compatible
204
.endif
207
.endif
205
.endif
208
.endif
209
.if ${OSVERSION} >= 700033 || (${OSVERSION} < 700000 && ${OSVERSION} >= 602107)
210
NCURSES_IS_DEFAULT=	yes
211
.else
212
SLANG_IS_DEFAULT=	yes
213
.endif
206
214
207
.if defined (MUTT_LITE)
215
.if defined (MUTT_LITE)
208
WITHOUT_MUTT_XML=			yes
216
WITHOUT_MUTT_XML=			yes
Lines 261-268 Link Here
261
MUTT_USES_NCURSES=	yes
269
MUTT_USES_NCURSES=	yes
262
.endif
270
.endif
263
.if !defined(MUTT_USES_SLANG) && !defined(WITHOUT_MUTT_SLANG) && !defined(MUTT_USES_NCURSES)
271
.if !defined(MUTT_USES_SLANG) && !defined(WITHOUT_MUTT_SLANG) && !defined(MUTT_USES_NCURSES)
272
.if defined(SLANG_IS_DEFAULT)
264
MUTT_USES_SLANG=	yes
273
MUTT_USES_SLANG=	yes
265
MUTT_USES_SLANG1=	yes
274
MUTT_USES_SLANG1=	yes
275
.elif defined(NCURSES_IS_DEFAULT)
276
MUTT_USES_NCURSES=	yes
277
.endif
266
.endif
278
.endif
267
.if defined(WITHOUT_MUTT_SGMLFORMAT)
279
.if defined(WITHOUT_MUTT_SGMLFORMAT)
268
XML_USED=	no
280
XML_USED=	no
Lines 382-387 Link Here
382
USE_KRB5_SYS=YES
394
USE_KRB5_SYS=YES
383
.endif
395
.endif
384
.endif
396
.endif
397
.if defined(WITH_MUTT_SMTP)
398
CONFIGURE_ARGS+= --enable-smtp
399
.else
400
CONFIGURE_ARGS+= --disable-smtp
401
.endif
385
402
386
PATCH_DIST_STRIP=	-p1
403
PATCH_DIST_STRIP=	-p1

Return to bug 115109