2006-10-01 09:34:16 +02:00
|
|
|
# $NetBSD: Makefile,v 1.62 2006/10/01 07:34:16 dsainty Exp $
|
1997-11-19 14:55:05 +01:00
|
|
|
|
2000-08-02 08:35:43 +02:00
|
|
|
DISTNAME= nmh-1.0.4
|
2006-10-01 09:34:16 +02:00
|
|
|
PKGREVISION= 7
|
2000-08-02 08:35:43 +02:00
|
|
|
CATEGORIES= mail
|
|
|
|
MASTER_SITES= ftp://ftp.mhost.com/pub/nmh/ \
|
|
|
|
ftp://ftp.gw.com/pub/unix/mail/mh/nmh/
|
1997-11-19 14:55:05 +01:00
|
|
|
|
2000-08-02 08:35:43 +02:00
|
|
|
MAINTAINER= kim@tac.nyc.ny.us
|
2003-07-26 20:25:06 +02:00
|
|
|
HOMEPAGE= http://www.nongnu.org/nmh/
|
2001-02-17 18:52:59 +01:00
|
|
|
COMMENT= Cleaned up MH mailer suite
|
1998-07-12 23:29:46 +02:00
|
|
|
|
2001-09-28 01:17:41 +02:00
|
|
|
CONFLICTS= ja-mh-[0-9]*
|
|
|
|
CONFLICTS+= ja-mh6-[0-9]*
|
1999-10-29 21:19:41 +02:00
|
|
|
|
2006-10-01 09:34:16 +02:00
|
|
|
# Avoids SEGV in nmh's private version of strcasecmp() under gcc4
|
|
|
|
CFLAGS+= -O1
|
|
|
|
|
1999-03-07 00:18:51 +01:00
|
|
|
# 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"
|
2005-09-23 00:00:41 +02:00
|
|
|
.include "options.mk"
|
1999-03-07 00:18:51 +01:00
|
|
|
|
1998-02-09 01:00:57 +01:00
|
|
|
# Mail Transport Agent - either "smtp" or "sendmail"
|
2000-08-02 08:35:43 +02:00
|
|
|
NMH_MTA?= smtp
|
1998-01-18 00:50:09 +01:00
|
|
|
|
2005-09-23 00:00:41 +02:00
|
|
|
GNU_CONFIGURE= yes
|
2005-01-16 20:19:46 +01:00
|
|
|
|
2000-08-02 08:35:43 +02:00
|
|
|
CONFIGURE_ARGS+= --libdir=${PREFIX}/libexec/nmh
|
2005-12-06 00:55:01 +01:00
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
2000-08-02 08:35:43 +02:00
|
|
|
CONFIGURE_ARGS+= --enable-nmh-pop
|
2005-12-06 00:55:01 +01:00
|
|
|
CONFIGURE_ARGS+= --with-mts=${NMH_MTA:Q}
|
1997-11-19 14:55:05 +01:00
|
|
|
|
2005-12-05 21:49:47 +01:00
|
|
|
.if defined(NMH_EDITOR)
|
2005-12-06 00:55:01 +01:00
|
|
|
CONFIGURE_ARGS+= --with-editor=${NMH_EDITOR:Q}
|
1999-03-07 00:18:51 +01:00
|
|
|
.endif
|
|
|
|
|
2005-12-05 21:49:47 +01:00
|
|
|
.if defined(NMH_PAGER)
|
2005-12-06 00:55:01 +01:00
|
|
|
CONFIGURE_ARGS+= --with-pager=${NMH_PAGER:Q}
|
1999-03-07 00:18:51 +01:00
|
|
|
.endif
|
|
|
|
|
2001-03-04 04:26:50 +01:00
|
|
|
.if defined(KERBEROS)
|
2005-09-28 22:52:18 +02:00
|
|
|
PKG_USE_KERBEROS= yes
|
2003-05-09 16:07:29 +02:00
|
|
|
.if ${OPSYS} == "NetBSD"
|
2005-12-05 21:49:47 +01:00
|
|
|
LIBS+= -lroken -lcrypt -lcom_err
|
2003-05-09 16:07:29 +02:00
|
|
|
.endif
|
2000-08-02 08:35:43 +02:00
|
|
|
CONFIGURE_ARGS+= --with-krb4
|
1999-09-14 04:32:21 +02:00
|
|
|
.else
|
2000-08-02 08:35:43 +02:00
|
|
|
CONFIGURE_ARGS+= --without-krb4
|
1999-03-04 10:12:39 +01:00
|
|
|
.endif
|
|
|
|
|
2000-08-02 08:35:43 +02:00
|
|
|
DOCDIR= share/doc/nmh
|
2005-01-16 20:19:46 +01:00
|
|
|
EGDIR= ${PREFIX}/share/examples/nmh
|
1999-03-04 10:12:39 +01:00
|
|
|
|
2000-08-02 08:35:43 +02:00
|
|
|
BUILD_DEFS+= NMH_MTA NMH_EDITOR NMH_PAGER NMH_HASH_BACKUP
|
1999-08-18 10:46:53 +02:00
|
|
|
|
2005-01-16 20:19:46 +01:00
|
|
|
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 \
|
|
|
|
tmac.h
|
|
|
|
CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f}
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
# This hopefully makes sure the permissions and ownership are right.
|
|
|
|
pre-install:
|
|
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
2000-03-02 06:11:42 +01:00
|
|
|
|
1997-11-19 14:55:05 +01:00
|
|
|
post-install:
|
2000-08-02 08:35:43 +02:00
|
|
|
${INSTALL_DATA_DIR} ${PREFIX}/${DOCDIR}
|
|
|
|
for f in `${GREP} '^${DOCDIR}/' ${PKGDIR}/PLIST`; do \
|
2003-11-23 08:18:15 +01:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/`${BASENAME} $$f` ${PREFIX}/${DOCDIR}; \
|
1999-03-04 10:12:39 +01:00
|
|
|
done
|
2005-01-16 20:19:46 +01:00
|
|
|
${INSTALL_DATA} ${FILESDIR}/mhn.defaults.dist ${EGDIR}/mhn.defaults
|
1997-11-19 14:55:05 +01:00
|
|
|
|
1998-04-15 12:38:15 +02:00
|
|
|
.include "../../mk/bsd.pkg.mk"
|