8d27ddb9bd
If a ports is linked against ncurses from base or from the ports, it should then add: USE_NCURSES=yes it is also possible to specify the hard dependency on the ports ncurses or one the base one adding the following macros: WITH_NCURSES_PORT=yes or WITH_NCURSES_BASE=yes PR: ports/155269 Submitted by: me Reviwed by: pav@ Approved by: portmgr (pav@) Exp-run by: portmgr (pav@)
227 lines
6.9 KiB
Makefile
227 lines
6.9 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: mutt w/pgp hooks
|
|
# Date created: Thur July 25, 1996
|
|
# Whom: David O'Brien (obrien@NUXI.com)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mutt
|
|
PORTVERSION= 1.4.2.3
|
|
PORTREVISION= 5
|
|
CATEGORIES+= mail ipv6
|
|
MASTER_SITES= ftp://ftp.mutt.org/mutt/ \
|
|
ftp://ftp.fu-berlin.de/pub/unix/mail/mutt/ \
|
|
ftp://ftp.demon.co.uk/pub/mirrors/mutt/ \
|
|
ftp://ftp.parodius.com/pub/mutt/
|
|
|
|
PATCHVERSION?= ${PORTVERSION}
|
|
PATCHVERSION= 1.4.2.2
|
|
PATCH_SITES= http://www.mutt.org.ua/download/mutt-${PATCHVERSION}/:vvv \
|
|
http://www2.mutt.org.ua/download/mutt-${PATCHVERSION}/:vvv \
|
|
http://www3.mutt.org.ua/download/mutt-${PATCHVERSION}/:vvv \
|
|
ftp://ftp.mutt.org.ua/pub/mutt/mutt-${PATCHVERSION}/:vvv \
|
|
ftp://ftp3.mutt.org.ua/pub/mutt/mutt-${PATCHVERSION}/:vvv
|
|
PATCHFILES= patch-${PATCHVERSION}.rr.compressed.gz:vvv \
|
|
patch-${PATCHVERSION}.vvv.initials.gz:vvv
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
MAINTAINER?= udo.schweigert@siemens.com
|
|
COMMENT?= The Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, etc.)
|
|
|
|
CONFLICTS= mutt-devel-*
|
|
|
|
OPTIONS= NLS "Native Language Support via gettext utilities" on \
|
|
SLANG "Adds display/screen management via S-Lang" off \
|
|
NCURSES "Adds ncurses console graphics support" off \
|
|
SGML_DOCS "Enable mutt SGML documentation" off \
|
|
LOCALES_FIX "Enable locales fixes" off \
|
|
MUTT_XFACE "Adds mutt X-Face" off \
|
|
MUTT_FLOCK "Enable mutt flock" on \
|
|
MUTT_ICONV "Enable mutt iconv" on \
|
|
GSSAPI "GSSAPI (Kerberos) support" on
|
|
|
|
USE_OPENSSL= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support
|
|
.if defined(PACKAGE_BUILDING) && !defined (MUTT_LITE)
|
|
WITH_SLANG= yes
|
|
BUILD_DEPENDS= ispell:${PORTSDIR}/textproc/ispell
|
|
RUN_DEPENDS+= ispell:${PORTSDIR}/textproc/ispell \
|
|
urlview:${PORTSDIR}/textproc/urlview
|
|
USE_GMAKE= yes
|
|
USE_NCURSES= yes
|
|
|
|
.endif
|
|
.if defined (MUTT_LITE)
|
|
PKGNAMESUFFIX= -lite
|
|
WITH_SGML_DOCS:=no
|
|
.elif ${ARCH} == "alpha"
|
|
# coredump in sgmls
|
|
WITH_SGML_DOCS:=no
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
USE_ICONV= yes
|
|
.if defined(WITHOUT_MUTT_ICONV)
|
|
IGNORE= the WITHOUT_MUTT_ICONV knob of the mutt port only works if \
|
|
WITHOUT_NLS is also given
|
|
.endif
|
|
.elif !defined(WITHOUT_MUTT_ICONV)
|
|
USE_ICONV= yes
|
|
.endif
|
|
|
|
.if defined(WITH_SLANG)
|
|
LIB_DEPENDS+= slang.2:${PORTSDIR}/devel/libslang2
|
|
.elif defined(WITH_NCURSES)
|
|
WITH_NCURSES_PORT= yes
|
|
.endif
|
|
.if !defined (MUTT_LITE)
|
|
.if defined(WITH_MUTT_CYRUS_SASL)
|
|
IGNORE= the SASL support for mutt has been withdrawn. Please use the mutt-devel port instead
|
|
.endif
|
|
.if defined(WITH_SGML_DOCS) && ${WITH_SGML_DOCS} != "no"
|
|
BUILD_DEPENDS+= sgmlfmt:${PORTSDIR}/textproc/sgmlformat
|
|
.endif
|
|
.if defined(WITH_MUTT_XFACE)
|
|
PATCH_DEPENDS+= ${NONEXISTENT}:${PORTSDIR}/news/slrnface:extract
|
|
RUN_DEPENDS+= slrnface:${PORTSDIR}/news/slrnface
|
|
.endif
|
|
.endif
|
|
|
|
DIST_SUBDIR= mutt
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/i$//}
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= automake autoconf
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS= --enable-pop --enable-imap --disable-fcntl \
|
|
--with-ssl=${OPENSSLBASE} --sysconfdir=${PREFIX}/etc \
|
|
--with-sharedir=${PREFIX}/share/mutt \
|
|
--with-docdir=${DOCSDIR} --with-charmaps \
|
|
--enable-compressed
|
|
.if defined(MUTT_CONFIGURE_ARGS)
|
|
CONFIGURE_ARGS+= ${MUTT_CONFIGURE_ARGS}
|
|
.endif
|
|
.if defined(WITHOUT_MUTT_FLOCK)
|
|
CONFIGURE_ARGS+= --disable-flock
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-flock
|
|
.endif
|
|
.if defined(WITH_LOCALES_FIX)
|
|
CONFIGURE_ARGS+= --enable-locales-fix
|
|
.endif
|
|
.if defined(WITHOUT_NLS)
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.else
|
|
PLIST_SUB+= NLS=""
|
|
.endif
|
|
.if defined(WITHOUT_MUTT_ICONV) && defined(WITHOUT_NLS)
|
|
CONFIGURE_ARGS+= --disable-iconv
|
|
.else
|
|
CONFIGURE_ARGS+= --with-libiconv-prefix=${PREFIX}
|
|
.endif
|
|
.if defined(WITH_SLANG)
|
|
CONFIGURE_ARGS+= --with-slang=${PREFIX}
|
|
.elif defined(WITH_NCURSES)
|
|
CONFIGURE_ARGS+= --with-curses=${NCURSESBASE}
|
|
CFLAGS+= -I${NCURSESINC}
|
|
.endif
|
|
.if !defined(WITHOUT_GSSAPI)
|
|
.if exists(${LOCALBASE}/bin/gss-client)
|
|
LIB_DEPENDS+= gssapi_krb5:${PORTSDIR}/security/krb5
|
|
CONFIGURE_ARGS+= --with-gss=${LOCALBASE}
|
|
.elif (defined(MAKE_KERBEROS5)) || exists(/usr/lib/libkrb5.a)
|
|
CONFIGURE_ARGS+= --with-gss
|
|
USE_KRB5_SYS=YES
|
|
.endif
|
|
.endif
|
|
MAN1= mutt.1 mutt_dotlock.1
|
|
MAN5= mbox.5 muttrc.5
|
|
|
|
post-patch::
|
|
@${REINPLACE_CMD} -e 's,/usr/bin/gpg,${LOCALBASE}/bin/gpg,g' \
|
|
${WRKSRC}/contrib/gpg.rc
|
|
@${REINPLACE_CMD} -e 's,pgp6,pgp,g' \
|
|
${WRKSRC}/contrib/pgp6.rc
|
|
@${REINPLACE_CMD} -E -e 's|@samplesdir@|${EXAMPLESDIR}|g' \
|
|
${WRKSRC}/contrib/Makefile.in
|
|
|
|
.if defined(WITH_MUTT_XFACE)
|
|
post-patch::
|
|
@${ECHO} "===> Applying XFACE patch"
|
|
slrnface_dir=`${FIND} ${PORTSDIR}/news/slrnface/work -type d \
|
|
-name slrnface-\*`; \
|
|
cd ${BUILD_WRKSRC}; ${PATCH} ${PATCH_ARGS} < $$slrnface_dir/mutt.patch
|
|
.endif
|
|
|
|
pre-configure::
|
|
@(cd ${WRKSRC}; ${SETENV} ${AUTOMAKE_ENV} ${ACLOCAL} -I m4)
|
|
.if defined(USE_KRB5_SYS)
|
|
@${ECHO_CMD} "#define HAVE_HEIMDAL" >> ${WRKSRC}/config.h.in
|
|
@${REINPLACE_CMD} -e 's|<gssapi/gssapi\.h>|<gssapi.h>|' \
|
|
${WRKSRC}/imap/auth_gss.c
|
|
.endif
|
|
|
|
# XXX
|
|
# this should be done automagically by aclocal but ....
|
|
# for now, this will have to do
|
|
pre-build:
|
|
@${REINPLACE_CMD} -E -e "s|^(ACLOCAL = ).+|\1${ACLOCAL}|" \
|
|
-e "s|^(AUTOCONF = ).+|\1${AUTOCONF}|" \
|
|
-e "s|^(AUTOMAKE = ).+|\1${AUTOMAKE}|" \
|
|
-e "s|^(AUTOHEADER = ).+|\1${AUTOHEADER}|" \
|
|
${BUILD_WRKSRC}/Makefile
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-build:
|
|
@${TOUCH} ${WRKSRC}/doc/mutt.man ${WRKSRC}/doc/manual.sgml
|
|
@${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-doc-ref
|
|
@${REINPLACE_CMD} -E -e 's|\$$\{PREFIX\}|${PREFIX}|g' \
|
|
-e 's|\$$\{DOCSDIR\}|${DOCSDIR}|g' \
|
|
-e 's|\$$\{EXAMPLESDIR\}|${EXAMPLESDIR}|g' \
|
|
${WRKSRC}/doc/mutt.man
|
|
@${REINPLACE_CMD} -E -e 's|\$$\{PREFIX\}|${PREFIX}|g' \
|
|
-e 's|\$$\{DOCSDIR\}|${DOCSDIR}|g' \
|
|
-e 's|\$$\{EXAMPLESDIR\}|${EXAMPLESDIR}|g' \
|
|
${WRKSRC}/doc/muttrc.man
|
|
.if defined(WITH_SGML_DOCS) && ${WITH_SGML_DOCS} != "no"
|
|
PLIST:= ${WRKDIR}/PLIST
|
|
pre-install:
|
|
@${CAT} ${PKGDIR}/pkg-plist.htmlfiles > ${PLIST}
|
|
@${CAT} ${PKGDIR}/pkg-plist >> ${PLIST}
|
|
.endif
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/Muttrc ${PREFIX}/etc/Muttrc.dist
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO} "===> Installing Mutt documentation"
|
|
@${MKDIR} ${DOCSDIR} && ${CHMOD} a+rx ${DOCSDIR}
|
|
@cd ${WRKSRC}/doc ; ${INSTALL_MAN} manual.txt PGP-Notes.txt \
|
|
${DOCSDIR}
|
|
.if defined(WITH_SGML_DOCS) && ${WITH_SGML_DOCS} != "no"
|
|
${INSTALL} ${COPY} -o ${MANOWN} -g ${MANGRP} -m 0755 \
|
|
-d ${DOCSDIR}/html
|
|
${INSTALL_MAN} ${WRKSRC}/doc/*.html ${DOCSDIR}/html
|
|
${INSTALL_MAN} ${WRKSRC}/doc/*.latin1 ${DOCSDIR}
|
|
.endif
|
|
.endif
|
|
|
|
.if defined(WITH_MUTT_XFACE)
|
|
@${ECHO} ""
|
|
@${ECHO} "************************************************************"
|
|
@${ECHO} " To enable the XFACE support in mutt you also have to add"
|
|
@${ECHO} " set xface=yes"
|
|
@${ECHO} " to your ~/.muttrc"
|
|
@${ECHO} " Additional information is provided by news/slrnface"
|
|
@${ECHO} "************************************************************"
|
|
@${ECHO} ""
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|