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

(-)Makefile (-2 / +15 lines)
Lines 5-13 Link Here
5
#
5
#
6
# $FreeBSD: ports/mail/mutt-devel/Makefile,v 1.157 2002/03/09 20:23:25 clive Exp $
6
# $FreeBSD: ports/mail/mutt-devel/Makefile,v 1.157 2002/03/09 20:23:25 clive Exp $
7
#
7
#
8
9
# There are several knobs which are used to define additions to the core
8
# There are several knobs which are used to define additions to the core
10
# mutt functionality. The two most important are:
9
# mutt functionality.
10
#
11
# As all of the knobs have a unique name which should not interfere with
12
# other ports you can add them to /etc/make.conf, e.g. a line like
13
# "WITH_MUTT_HTML=yes" will enable mutt's HTML documentation.
14
#
15
# In addition to the knobs listed below you can enable other configuration
16
# options of mutt by adding them to the MUTT_CONFIGURE_ARGS variable. For
17
# example you could say "MUTT_CONFIGURE_ARGS=--with-homespool=MyMail" to
18
# configure a different directory for mutt's homespool.
19
#
20
# The two most important knobs are:
11
#
21
#
12
# In general you can choose between using the SLANG port (which is really
22
# In general you can choose between using the SLANG port (which is really
13
# recommended and is now the default) and ncurses (WITH_MUTT_NCURSES). If you
23
# recommended and is now the default) and ncurses (WITH_MUTT_NCURSES). If you
Lines 68-73 Link Here
68
		--with-docdir=${PREFIX}/share/doc/mutt \
78
		--with-docdir=${PREFIX}/share/doc/mutt \
69
		--sysconfdir=${PREFIX}/etc --enable-external-dotlock \
79
		--sysconfdir=${PREFIX}/etc --enable-external-dotlock \
70
		--with-libiconv-prefix=${PREFIX}
80
		--with-libiconv-prefix=${PREFIX}
81
.if defined(MUTT_CONFIGURE_ARGS)
82
CONFIGURE_ARGS+=	${MUTT_CONFIGURE_ARGS}
83
.endif
71
84
72
.include <bsd.port.pre.mk>
85
.include <bsd.port.pre.mk>

Return to bug 35731