summaryrefslogtreecommitdiff
path: root/mail/mutt/Makefile
blob: 10fa75adce795f5237b793572533b6046c585dd0 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# $NetBSD: Makefile,v 1.136.2.1 2006/06/20 11:00:56 ghen Exp $

DISTNAME=		mutt-1.4.2.1i
PKGNAME=		${DISTNAME:C/i$//}
PKGREVISION=		7
CATEGORIES=		mail
MASTER_SITES=		ftp://ftp.mutt.org/mutt/ \
			ftp://ftp.stealth.net/pub/mirrors/ftp.mutt.org/pub/mutt/ \
			ftp://gd.tuwien.ac.at/infosys/mail/mutt/ \
			ftp://ftp.fu-berlin.de/unix/mail/mutt/

MAINTAINER=		tron@NetBSD.org
HOMEPAGE=		http://www.mutt.org/
COMMENT=		Text-based MIME mail client with PGP support

PKG_INSTALLATION_TYPES=	overwrite pkgviews

.include "../../mk/bsd.prefs.mk"

WRKSRC=			${WRKDIR}/${DISTNAME:C/i$$//}
BUILD_USES_MSGFMT=	yes
USE_PKGLOCALEDIR=	yes

GNU_CONFIGURE=		yes
CONFIGURE_ARGS+=	--sysconfdir=${PKG_SYSCONFDIR:Q}			\
			--with-docdir=${PREFIX}/share/doc/mutt		\
			--without-included-gettext			\
			--enable-pop					\
			--enable-imap
MAKE_ENV+=		CHGRP=${CHGRP:Q}

.if ${OPSYS} == "SunOS"
CONFIGURE_ARGS+=	--without-wc-funcs
.endif

.if ${LOWER_OPSYS} == "irix5.3"
CONFIGURE_ENV+=		ac_cv_header_inttypes_h=no
.endif

.if ${OPSYS} == "Interix"
SUBST_CLASSES+=		mgroup
SUBST_MESSAGE.mgroup=	"Configuring mail group."
SUBST_STAGE.mgroup=	post-patch
SUBST_FILES.mgroup=	configure
SUBST_SED.mgroup=	-e "s,DOTLOCK_GROUP='mail',DOTLOCK_GROUP='+Administrators',"
CPPFLAGS+=		-D__BROKEN_INTERIX_FORK
.endif

# There is a problem using /bin/sh on old NetBSD releases, so use /bin/ksh
# there.
#
.if !empty(MACHINE_PLATFORM:MNetBSD-1.[0-5]*-*)
CONFIGURE_ARGS+=	--with-exec-shell=/bin/ksh
.endif

.include "options.mk"

LDFLAGS+=		${_STRIPFLAG_CC}

DEINSTALL_TEMPLATE+=	${PKGDIR}/INSTALL
DOCDIR=			${PREFIX}/share/doc/mutt
EGDIR=			${PREFIX}/share/examples/mutt
CONF_FILES=		${EGDIR}/Muttrc ${PKG_SYSCONFDIR}/Muttrc
CONF_FILES+=		${EGDIR}/mime.types ${PKG_SYSCONFDIR}/mime.types
FILES_SUBST+=		DOCDIR=${DOCDIR:Q}

.if exists(${WRKSRC}/mutt_dotlock)
PLIST_SUBST+=		MUTT_DOTLOCK=
.else
PLIST_SUBST+=		MUTT_DOTLOCK="@comment "
.endif
INSTALL_MAKE_FLAGS=	${MAKE_FLAGS} sysconfdir=${EGDIR}

.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"

# Fix some absolute paths in installed files.
post-build:
	for file in ${WRKSRC}/contrib/gpg.rc; do			\
		${MV} -f $$file $$file.save;				\
		${SED}	-e "s,/usr/bin/gpg,gpg,g"			\
			$$file.save > $$file;				\
	done
	for file in ${WRKSRC}/doc/mutt.man; do				\
		${MV} -f $$file $$file.save;				\
		${SED}	-e "s,/etc/,${PKG_SYSCONFDIR}/,g"		\
			-e "s,/usr/local/doc/mutt/,${DOCDIR}/,g"	\
			-e "s,/usr/local/,${PREFIX}/,g"			\
			$$file.save > $$file;				\
	done

# Pre-create some directories and symlinks used during the installation
# process.
#
pre-install:
	${INSTALL_DATA_DIR} ${EGDIR}
	${INSTALL_DATA_DIR} ${DOCDIR}
	${RM} -f ${DOCDIR}/samples
	${LN} -sf ${EGDIR} ${DOCDIR}/samples

.if (${PKG_INSTALLATION_TYPE} == "pkgviews")
post-install:
	${MV} ${PREFIX}/man/man5/mutt-mbox.5 ${PREFIX}/man/man5/mbox.5
.endif

.include "../../mk/bsd.pkg.mk"