openbsd-ports/mail/mutt/Makefile.inc
lebel d061257d93 added support for maildir header caching via a new flavour, named "hcache" in
the snapshot release of mutt.

For more info, see http://wwwcip.informatik.uni-erlangen.de/~sithglan/mutt/.

Thanks to Bernd Ahlers <b.ahlers AT ba-net.org> for the work.
(henning@ can spare me the 20 hours marathon of humppa now that this is in :))
2004-06-28 14:17:21 +00:00

91 lines
2.6 KiB
Makefile

# $OpenBSD: Makefile.inc,v 1.4 2004/06/28 14:17:21 lebel Exp $
DISTNAME= mutt-${VERSION}i
CATEGORIES= mail
MASTER_SITES_MUTT= ftp://ftp.fu-berlin.de/pub/unix/mail/mutt/ \
ftp://ftp.mutt.org/mutt/ \
ftp://ftp.gbnet.net/pub/mutt-international/ \
ftp://ftp.gwdg.de/pub/unix/mail/mutt/international/
MASTER_SITES0= http://www.spinnaker.de/mutt/compressed/
MASTER_SITES1= http://wwwcip.informatik.uni-erlangen.de/~sithglan/mutt/
HOMEPAGE= http://www.mutt.org/
MODULES= gettext
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
FLAVORS+= slang mixmaster compressed
FLAVOR?=
CONFIGURE_STYLE= autoconf old
CONFIGURE_ARGS= --with-sharedir="${PREFIX}/share/mutt" \
--with-docdir="${PREFIX}/share/doc/mutt" \
--enable-flock --disable-fcntl \
--enable-external_dotlock \
--enable-imap --enable-pop --with-ssl \
--with-gss --sysconfdir=${CONFDIR}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
ISPELL="${LOCALBASE}/bin/ispell"
.if ${FLAVOR:L:Mslang}
LIB_DEPENDS+= slang.14::devel/libslang
CONFIGURE_ARGS+= --with-slang="${PREFIX}"
.else
CONFIGURE_ARGS+= --with-curses
.endif
# compressed folder support provided by
# http://www.spinnaker.de/mutt/compressed/
.if ${FLAVOR:L:Mcompressed}
PATCHFILES+= patch-${VERSION}.rr.compressed.1.gz:0
PATCH_DIST_STRIP= -p1
CONFIGURE_ARGS+= --enable-compressed
CONFIGURE_STYLE+= automake
.else
SUPDISTFILES+= patch-${VERSION}.rr.compressed.1.gz:0
.endif
.if ${FLAVOR:L:Mmixmaster}
CONFIGURE_ARGS+= --with-mixmaster="${LOCALBASE}/sbin/mixmaster"
RUN_DEPENDS+= ::mail/mixmaster
.endif
.if ${FLAVOR:L:Mhcache}
PATCHFILES+= mutt-cvs-maildir-header-cache.18:1
PATCH_DIST_STRIP= -p1
AUTOCONF_VERSION= 2.52
CONFIGURE_ARGS+= --enable-hcache
BUILD_DEPENDS+= ::databases/gdbm
.else
SUPDISTFILES+= mutt-cvs-maildir-header-cache.18:1
.endif
.if defined(HOMESPOOL)
CONFIGURE_ARGS+= --with-homespool="${HOMESPOOL}"
.endif
.if defined(DOMAIN)
CONFIGURE_ARGS+= --with-domain="${DOMAIN}"
.endif
WRKDIST= ${WRKDIR}/${DISTNAME:S/i$//}
CONFDIR= ${SYSCONFDIR}/mutt
SUBST_VARS= CONFDIR
post-install:
@strip ${PREFIX}/bin/mutt
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mutt
${INSTALL_DATA} ${WRKSRC}/Muttrc \
${PREFIX}/share/examples/mutt/Muttrc.sample
${INSTALL_DATA} ${WRKSRC}/mime.types \
${PREFIX}/share/examples/mutt/mime.types.sample
@mv -f ${PREFIX}/share/doc/mutt/samples/* ${PREFIX}/share/examples/mutt
@perl -pi -e "s,/etc/Muttrc,${CONFDIR}/Muttrc," ${PREFIX}/man/man1/mutt.1
@perl -pi -e "s,/etc/mime.types,${CONFDIR}/mime.types," ${PREFIX}/man/man1/mutt.1