2004-03-01 13:13:44 +01:00
|
|
|
# $NetBSD: Makefile,v 1.114 2004/03/01 12:13:44 tron Exp $
|
2001-06-20 09:31:58 +02:00
|
|
|
|
2004-02-11 16:21:57 +01:00
|
|
|
DISTNAME= mutt-1.4.2i
|
2003-03-20 05:38:22 +01:00
|
|
|
PKGNAME= ${DISTNAME:C/i$//}
|
2001-06-20 09:31:58 +02:00
|
|
|
CATEGORIES= mail
|
2003-03-20 05:38:22 +01:00
|
|
|
MASTER_SITES= ftp://ftp.mutt.org/mutt/ \
|
Update "mutt" package to version 1.4. Visible changes since version
1.2.5.1 include:
- Better mh support: Mutt now supports .mh_sequences files.
Currently, the "unseen", "flagged", and "replied" sequences are
used to store mutt flags (the names are configurable using the
$mh_seq_unseen, $mh_seq_flagged, and $mh_seq_replied configuration
variables). As a side effect, messages in MH folders are no longer
rewritten upon status changes.
- The "trashed" flag is supported for maildir folders. See
$maildir_trash.
- POP folder support. You can now access a POP mailbox just like an
IMAP folder (with obvious restrictions due to the protocol).
- URL syntax for remote folders. You can pass things like
pop://account@host and imap://account@host/folder as arguments for
the -f command line flag.
- STARTTLS support. If $ssl_starttls is set (the default), mutt
will attempt to use STARTTLS on servers advertising that
capability.
- $preconnect. If set, a shell command to be executed if mutt fails
to establish a connection to the server. This is useful for
setting up secure connections; see the muttrc(5) for details.
- $tunnel. Use a pipe to a command instead of a raw socket. See
muttrc(5) for details. (Basically, it's another way for setting
up secure connections.)
- More new IMAP/POP-related variables (see muttrc(5) for details):
$connect_timeout, $imap_authenticators, $imap_delim_chars,
$imap_peek, $pop_authenticators, $pop_auth_try_all,
$pop_checkinterval, $pop_delete, $pop_reconnect, $use_ipv6.
- The following IMAP/POP-related variables are gone:
$imap_checkinterval, $imap_cramkey, $pop_port.
- There's a new imap-fetch-mail function, which forces a check for
new messages on an IMAP server.
- The new-mailbox function was renamed to create-mailbox, and is
bound to C instead of n by default.
For a complete overview of all new features look in the "NEWS" file.
2002-05-29 14:13:52 +02:00
|
|
|
ftp://ftp.stealth.net/pub/mirrors/ftp.mutt.org/pub/mutt/ \
|
|
|
|
ftp://gd.tuwien.ac.at/infosys/mail/mutt/ \
|
2003-09-05 21:00:57 +02:00
|
|
|
ftp://ftp.fu-berlin.de/unix/mail/mutt/
|
2001-06-20 09:31:58 +02:00
|
|
|
|
2003-07-17 23:41:05 +02:00
|
|
|
MAINTAINER= tron@NetBSD.org
|
2001-06-20 09:31:58 +02:00
|
|
|
HOMEPAGE= http://www.mutt.org/
|
2003-07-21 18:56:41 +02:00
|
|
|
COMMENT= Text-based MIME mail client with PGP support
|
1998-02-02 11:48:30 +01:00
|
|
|
|
2003-01-28 23:03:00 +01:00
|
|
|
BUILD_USES_MSGFMT= yes
|
1998-02-02 11:48:30 +01:00
|
|
|
|
2004-01-20 13:18:15 +01:00
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:C/i$$//}
|
2004-02-15 14:13:52 +01:00
|
|
|
USE_BUILDLINK3= yes
|
2003-01-28 23:03:00 +01:00
|
|
|
USE_PKGINSTALL= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_PKGLOCALEDIR= yes
|
2002-01-31 00:05:45 +01:00
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} \
|
|
|
|
--with-docdir=${PREFIX}/share/doc/mutt \
|
|
|
|
--without-included-gettext \
|
|
|
|
--enable-pop --enable-imap
|
1998-02-02 11:48:30 +01:00
|
|
|
|
2002-03-23 18:45:50 +01:00
|
|
|
LDFLAGS+= ${_STRIPFLAG_CC}
|
2003-12-11 08:15:18 +01:00
|
|
|
PLIST_SRC= ${WRKDIR}/PLIST
|
2000-05-20 20:39:45 +02:00
|
|
|
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
2002-06-15 17:32:27 +02:00
|
|
|
.if ${MUTT_USE_SLANG} == YES
|
2004-02-15 14:13:52 +01:00
|
|
|
. include "../../devel/libslang/buildlink3.mk"
|
2002-08-26 01:06:15 +02:00
|
|
|
CONFIGURE_ARGS+= --with-slang=${BUILDLINK_PREFIX.libslang}
|
Update "mutt" package to version 1.4. Visible changes since version
1.2.5.1 include:
- Better mh support: Mutt now supports .mh_sequences files.
Currently, the "unseen", "flagged", and "replied" sequences are
used to store mutt flags (the names are configurable using the
$mh_seq_unseen, $mh_seq_flagged, and $mh_seq_replied configuration
variables). As a side effect, messages in MH folders are no longer
rewritten upon status changes.
- The "trashed" flag is supported for maildir folders. See
$maildir_trash.
- POP folder support. You can now access a POP mailbox just like an
IMAP folder (with obvious restrictions due to the protocol).
- URL syntax for remote folders. You can pass things like
pop://account@host and imap://account@host/folder as arguments for
the -f command line flag.
- STARTTLS support. If $ssl_starttls is set (the default), mutt
will attempt to use STARTTLS on servers advertising that
capability.
- $preconnect. If set, a shell command to be executed if mutt fails
to establish a connection to the server. This is useful for
setting up secure connections; see the muttrc(5) for details.
- $tunnel. Use a pipe to a command instead of a raw socket. See
muttrc(5) for details. (Basically, it's another way for setting
up secure connections.)
- More new IMAP/POP-related variables (see muttrc(5) for details):
$connect_timeout, $imap_authenticators, $imap_delim_chars,
$imap_peek, $pop_authenticators, $pop_auth_try_all,
$pop_checkinterval, $pop_delete, $pop_reconnect, $use_ipv6.
- The following IMAP/POP-related variables are gone:
$imap_checkinterval, $imap_cramkey, $pop_port.
- There's a new imap-fetch-mail function, which forces a check for
new messages on an IMAP server.
- The new-mailbox function was renamed to create-mailbox, and is
bound to C instead of n by default.
For a complete overview of all new features look in the "NEWS" file.
2002-05-29 14:13:52 +02:00
|
|
|
.else
|
2002-06-15 17:32:27 +02:00
|
|
|
. if ${MUTT_USE_NCURSES} == YES
|
2003-01-28 23:03:00 +01:00
|
|
|
USE_NCURSES= yes
|
2002-06-15 17:32:27 +02:00
|
|
|
. endif
|
2004-02-15 14:13:52 +01:00
|
|
|
. include "../../devel/ncurses/buildlink3.mk"
|
2002-08-26 01:06:15 +02:00
|
|
|
CONFIGURE_ARGS+= --with-curses=${BUILDLINK_PREFIX.ncurses}
|
Update "mutt" package to version 1.4. Visible changes since version
1.2.5.1 include:
- Better mh support: Mutt now supports .mh_sequences files.
Currently, the "unseen", "flagged", and "replied" sequences are
used to store mutt flags (the names are configurable using the
$mh_seq_unseen, $mh_seq_flagged, and $mh_seq_replied configuration
variables). As a side effect, messages in MH folders are no longer
rewritten upon status changes.
- The "trashed" flag is supported for maildir folders. See
$maildir_trash.
- POP folder support. You can now access a POP mailbox just like an
IMAP folder (with obvious restrictions due to the protocol).
- URL syntax for remote folders. You can pass things like
pop://account@host and imap://account@host/folder as arguments for
the -f command line flag.
- STARTTLS support. If $ssl_starttls is set (the default), mutt
will attempt to use STARTTLS on servers advertising that
capability.
- $preconnect. If set, a shell command to be executed if mutt fails
to establish a connection to the server. This is useful for
setting up secure connections; see the muttrc(5) for details.
- $tunnel. Use a pipe to a command instead of a raw socket. See
muttrc(5) for details. (Basically, it's another way for setting
up secure connections.)
- More new IMAP/POP-related variables (see muttrc(5) for details):
$connect_timeout, $imap_authenticators, $imap_delim_chars,
$imap_peek, $pop_authenticators, $pop_auth_try_all,
$pop_checkinterval, $pop_delete, $pop_reconnect, $use_ipv6.
- The following IMAP/POP-related variables are gone:
$imap_checkinterval, $imap_cramkey, $pop_port.
- There's a new imap-fetch-mail function, which forces a check for
new messages on an IMAP server.
- The new-mailbox function was renamed to create-mailbox, and is
bound to C instead of n by default.
For a complete overview of all new features look in the "NEWS" file.
2002-05-29 14:13:52 +02:00
|
|
|
.endif
|
|
|
|
|
2004-03-01 13:13:44 +01:00
|
|
|
# There is a problem using NetBSD's /bin/sh under old NetBSD releases,
|
|
|
|
# so use /bin/ksh there.
|
|
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-1.[0-5]*-*)
|
2001-06-20 09:09:49 +02:00
|
|
|
CONFIGURE_ARGS+= --with-exec-shell=/bin/ksh
|
2000-11-02 04:15:14 +01:00
|
|
|
.endif
|
|
|
|
|
2002-06-15 17:32:27 +02:00
|
|
|
.if ${MUTT_USE_SSL} == YES
|
2004-02-15 14:13:52 +01:00
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
2002-08-26 01:06:15 +02:00
|
|
|
CONFIGURE_ARGS+= --with-ssl=${SSLBASE}
|
2000-05-20 20:39:45 +02:00
|
|
|
.else
|
2001-06-20 09:09:49 +02:00
|
|
|
CONFIGURE_ARGS+= --without-ssl
|
2000-05-20 19:39:20 +02:00
|
|
|
.endif
|
|
|
|
|
2002-10-28 22:09:18 +01:00
|
|
|
.if defined(USE_SASL) && ${USE_SASL} == "YES"
|
2004-02-15 14:13:52 +01:00
|
|
|
.include "../../security/cyrus-sasl/buildlink3.mk"
|
2002-10-28 22:09:18 +01:00
|
|
|
CONFIGURE_ARGS+= --with-sasl=${BUILDLINK_PREFIX.cyrus-sasl}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
BUILD_DEFS+= MUTT_USE_NCURSES MUTT_USE_SLANG MUTT_USE_SSL USE_SASL
|
2001-06-20 09:09:49 +02:00
|
|
|
|
2002-11-27 20:05:39 +01:00
|
|
|
EGDIR= ${PREFIX}/share/examples/mutt
|
2002-01-31 00:05:45 +01:00
|
|
|
CONF_FILES= ${EGDIR}/Muttrc ${PKG_SYSCONFDIR}/Muttrc
|
|
|
|
SUPPORT_FILES= ${EGDIR}/mime.types ${PKG_SYSCONFDIR}/mime.types
|
2001-06-20 09:09:49 +02:00
|
|
|
|
2002-12-03 22:21:57 +01:00
|
|
|
post-extract:
|
|
|
|
${MV} ${WRKSRC}/doc/mutt.man ${WRKSRC}/doc/mutt.man.in
|
|
|
|
|
|
|
|
pre-build:
|
|
|
|
${SED} -e "s|@PREFIX@|${PREFIX}|g" \
|
|
|
|
-e "s|@PKG_SYSCONFDIR@|${PKG_SYSCONFDIR}|g" \
|
|
|
|
< ${WRKSRC}/doc/mutt.man.in > ${WRKSRC}/doc/mutt.man
|
|
|
|
|
2001-06-20 09:09:49 +02:00
|
|
|
post-install:
|
2003-12-12 11:45:18 +01:00
|
|
|
${RM} -f ${PREFIX}/share/doc/mutt/samples
|
2003-12-11 23:23:23 +01:00
|
|
|
${LN} -f -s ${EGDIR} ${PREFIX}/share/doc/mutt/samples
|
2003-12-11 08:15:18 +01:00
|
|
|
${CP} ${PKGDIR}/PLIST ${PLIST_SRC}
|
2003-09-25 10:36:16 +02:00
|
|
|
@if [ -f ${PREFIX}/bin/mutt_dotlock ]; then \
|
2003-12-11 08:15:18 +01:00
|
|
|
${ECHO} "bin/mutt_dotlock" >> ${PLIST_SRC}; \
|
2003-09-25 10:36:16 +02:00
|
|
|
fi
|
2000-01-04 18:12:59 +01:00
|
|
|
|
2004-02-15 14:13:52 +01:00
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
2000-07-28 12:33:56 +02:00
|
|
|
.include "../../mk/bsd.pkg.mk"
|