blob: 3d19045bd1e7cd2c6deb3e2bf07f747b49b9e86b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# $NetBSD: Makefile,v 1.238 2020/11/20 18:10:45 tron Exp $
DISTNAME= mutt-2.0.2
CATEGORIES= mail
MASTER_SITES= http://ftp.mutt.org/pub/mutt/
MAINTAINER= tonio@NetBSD.org
HOMEPAGE= http://www.mutt.org/
COMMENT= Text-based MIME mail client with PGP & S/MIME support
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # or newer
DEPENDS+= mime-types-[0-9]*:../../misc/mime-types
BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl
BUILD_DEPENDS+= lynx-[0-9]*:../../www/lynx
.include "../../mk/bsd.prefs.mk"
USE_PKGLOCALEDIR= yes
USE_TOOLS+= gmake msgfmt perl
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/mutt
CONFIGURE_ARGS+= --without-included-gettext
CONFIGURE_ARGS+= --enable-external-dotlock
CONFIGURE_ARGS+= --enable-pop
CONFIGURE_ARGS+= --enable-imap
CONFIGURE_ARGS.SunOS+= --disable-filemonitor
INFO_FILES= yes
PYTHON_FOR_BUILD_ONLY= tool
REPLACE_PYTHON+= contrib/markdown2html
.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "OpenBSD"
# Force sendmail to /usr/sbin to avoid postfix's
# ${LOCALBASE}/sbin/sendmail. Should be enabled on all platforms which
# support mailwrapper.
CONFIGURE_ENV+= SENDMAIL=/usr/sbin/sendmail
.endif
CONFIGURE_ARGS.SunOS+= --without-wc-funcs
.include "options.mk"
LDFLAGS+= ${_STRIPFLAG_CC}
DOCDIR= ${PREFIX}/share/doc/mutt
EGDIR= ${PREFIX}/share/examples/mutt
CONF_FILES= ${EGDIR}/Muttrc ${PKG_SYSCONFDIR}/Muttrc
FILES_SUBST+= DOCDIR=${DOCDIR}
INSTALLATION_DIRS+= ${DOCDIR} ${EGDIR}
SUBST_CLASSES+= paths
SUBST_FILES.paths+= contrib/sample.muttrc
SUBST_FILES.paths+= contrib/sample.muttrc-starter
SUBST_FILES.paths+= doc/configuration.html
SUBST_FILES.paths+= doc/gettingstarted.html
SUBST_FILES.paths+= doc/instdoc.sh.in
SUBST_FILES.paths+= doc/manual.html
SUBST_FILES.paths+= doc/manual.xml.head
SUBST_FILES.paths+= doc/mimesupport.html
SUBST_FILES.paths+= doc/mutt.info
SUBST_FILES.paths+= doc/mutt.texi
SUBST_FILES.paths+= doc/muttrc.man
SUBST_FILES.paths+= doc/reference.html
SUBST_SED.paths+= -e "s,/usr/local,${PREFIX},g"
SUBST_STAGE.paths= pre-configure
SPECIAL_PERMS+= bin/mutt_dotlock ${REAL_ROOT_USER} mail 2551
INSTALL_MAKE_FLAGS= ${MAKE_FLAGS} sysconfdir=${EGDIR}
.include "../../devel/zlib/buildlink3.mk"
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../textproc/libxslt/xsltproc-nonet.mk"
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"
|