blob: cc46a50ac54ddbffcc890aa74f7fd09d55c98951 (
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
107
108
109
110
111
112
|
# $NetBSD: Makefile,v 1.80 2013/02/06 23:22:46 jperkin Exp $
DISTNAME= nmh-1.5
PKGREVISION= 3
CATEGORIES= mail
MASTER_SITES= http://savannah.nongnu.org/download/nmh/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.nongnu.org/nmh/
COMMENT= Cleaned up MH mailer suite
LICENSE= modified-bsd
MAKE_JOBS_SAFE= no
CONFLICTS= ja-mh-[0-9]*
CONFLICTS+= ja-mh6-[0-9]*
USE_TOOLS+= lex
# We choose DOT_LOCKING in our patches because ".lock" files are
# the most common locking mechanism supported by mail software.
# It also works well over NFS.
# Locks supported by `mail.local' are ".lock" and flock(2).
.include "../../mk/bsd.prefs.mk"
# Avoids SEGV in nmh's private version of strcasecmp() under gcc4
.if !empty(PKGSRC_COMPILER:Mgcc*)
CFLAGS+= -O1
.endif
.include "options.mk"
# Mail Transport Agent - either "smtp" or "sendmail"
NMH_MTA?= smtp
GNU_CONFIGURE= yes
GNU_CONFIGURE_LIBDIR= ${PREFIX}/libexec/nmh
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
CONFIGURE_ARGS+= --enable-nmh-pop
CONFIGURE_ARGS+= --with-mts=${NMH_MTA:Q}
.if defined(NMH_EDITOR)
CONFIGURE_ARGS+= --with-editor=${NMH_EDITOR:Q}
.endif
.if defined(NMH_PAGER)
CONFIGURE_ARGS+= --with-pager=${NMH_PAGER:Q}
.endif
.if defined(KERBEROS)
PKG_USE_KERBEROS= yes
.if ${OPSYS} == "NetBSD"
LIBS+= -lroken -lcrypt -lcom_err
.endif
CONFIGURE_ARGS+= --with-krb4
.else
CONFIGURE_ARGS+= --without-krb4
.endif
DOCDIR= share/doc/nmh
EGDIR= ${PREFIX}/share/examples/nmh
INSTALLATION_DIRS= ${DOCDIR} ${EGDIR}
BUILD_DEFS+= NMH_MTA NMH_EDITOR NMH_PAGER NMH_HASH_BACKUP
PKG_SYSCONFSUBDIR= nmh
CONF_FILES= # empty
.for f in MailAliases \
components \
digestcomps \
distcomps \
forwcomps \
mhl.body \
mhl.digest \
mhl.format \
mhl.forward \
mhl.headers \
mhl.reply \
mhn.defaults \
mts.conf \
rcvdistcomps \
rcvdistcomps.outbox \
replcomps \
replgroupcomps \
scan.MMDDYY \
scan.YYYYMMDD \
scan.default \
scan.mailx \
scan.nomime \
scan.size \
scan.time \
scan.timely \
scan.unseen
CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f}
.endfor
post-install:
${INSTALL_DATA} ${FILESDIR}/mhn.defaults.dist \
${DESTDIR}${EGDIR}/mhn.defaults
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Linux"
.include "../../databases/gdbm_compat/buildlink3.mk"
CONFIGURE_ARGS+= --with-ndbm='gdbm_compat -lgdbm'
CONFIGURE_ARGS+= --with-ndbmheader=ndbm.h
.endif
.include "../../mk/termcap.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|