Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --- pkgsrc/mail/nmh/Makefile 2005/09/22 22:00:41 1.57 +++ pkgsrc/mail/nmh/Makefile 2020/01/18 23:32:48 1.107 @@ -1,60 +1,40 @@ -# $NetBSD: Makefile,v 1.57 2005/09/22 22:00:41 jlam Exp $ +# $NetBSD: Makefile,v 1.107 2020/01/18 23:32:48 rillig Exp $ -DISTNAME= nmh-1.0.4 -PKGREVISION= 6 +DISTNAME= nmh-1.7.1 +PKGREVISION= 9 CATEGORIES= mail -MASTER_SITES= ftp://ftp.mhost.com/pub/nmh/ \ - ftp://ftp.gw.com/pub/unix/mail/mh/nmh/ +MASTER_SITES= https://download.savannah.nongnu.org/releases/nmh/ -MAINTAINER= kim@tac.nyc.ny.us -HOMEPAGE= http://www.nongnu.org/nmh/ +MAINTAINER= leot@NetBSD.org +HOMEPAGE= https://www.nongnu.org/nmh/ COMMENT= Cleaned up MH mailer suite +LICENSE= modified-bsd CONFLICTS= ja-mh-[0-9]* CONFLICTS+= ja-mh6-[0-9]* -# 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). +USE_TOOLS+= lex +USE_FEATURES+= strnlen .include "../../mk/bsd.prefs.mk" + .include "options.mk" # Mail Transport Agent - either "smtp" or "sendmail" NMH_MTA?= smtp GNU_CONFIGURE= yes -USE_PKGINSTALL= yes -CONFIGURE_ARGS+= --libdir=${PREFIX}/libexec/nmh -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} -CONFIGURE_ARGS+= --enable-nmh-pop -CONFIGURE_ARGS+= --with-mts=${NMH_MTA} - -.ifdef NMH_EDITOR -CONFIGURE_ARGS+= --with-editor=${NMH_EDITOR} -.endif - -.ifdef NMH_PAGER -CONFIGURE_ARGS+= --with-pager=${NMH_PAGER} -.endif - -.if defined(KERBEROS) -PKG_USE_KERBEROS= # defined -.if ${OPSYS} == "NetBSD" -LIBS= -lroken -lcrypt -lcom_err -.endif -CONFIGURE_ARGS+= --with-krb4 -.else -CONFIGURE_ARGS+= --without-krb4 -.endif +GNU_CONFIGURE_LIBDIR= ${PREFIX}/libexec/nmh +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASE} +CONFIGURE_ARGS+= --with-mts=${NMH_MTA:Q} +CONFIGURE_ARGS+= --without-readline DOCDIR= share/doc/nmh -EGDIR= ${PREFIX}/share/examples/nmh +EGDIR= ${PREFIX}/share/examples/nmh +INSTALLATION_DIRS= ${DOCDIR} ${EGDIR} -BUILD_DEFS+= NMH_MTA NMH_EDITOR NMH_PAGER NMH_HASH_BACKUP +BUILD_DEFS+= NMH_MTA NMH_EDITOR NMH_PAGER NMH_HASH_BACKUP PKG_SYSCONFBASE PKG_SYSCONFSUBDIR= nmh CONF_FILES= # empty @@ -63,41 +43,59 @@ CONF_FILES= # empty digestcomps \ distcomps \ forwcomps \ + mhical.12hour \ + mhical.24hour \ mhl.body \ mhl.digest \ mhl.format \ mhl.forward \ mhl.headers \ mhl.reply \ + mhl.replywithoutbody \ mhn.defaults \ + mhshow.marker \ mts.conf \ rcvdistcomps \ rcvdistcomps.outbox \ replcomps \ replgroupcomps \ + rmmproc.messageid \ scan.MMDDYY \ scan.YYYYMMDD \ + scan.curses \ scan.default \ + scan.highlighted \ scan.mailx \ scan.nomime \ scan.size \ scan.time \ scan.timely \ - scan.unseen \ - tmac.h + scan.unseen CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f} .endfor -.undef f -# This hopefully makes sure the permissions and ownership are right. -pre-install: - ${INSTALL_DATA_DIR} ${EGDIR} +# The configure script checks for arc4random(), but the program uses +# arc4random_buf(); netbsd-5 (and presumably earlier) and some Darwin +# versions has the one but not the other. Just disable it, because all +# it's using the randomness for is message-ids. +.if !empty(MACHINE_PLATFORM:MNetBSD-[1-5].*-*) || \ + !empty(MACHINE_PLATFORM:MDarwin-[1-9].*-*) || \ + !empty(MACHINE_PLATFORM:MDarwin-1[0-2].*-*) +CONFIGURE_ENV+= ac_cv_func_arc4random=no +.endif + +TEST_TARGET= check post-install: - ${INSTALL_DATA_DIR} ${PREFIX}/${DOCDIR} - for f in `${GREP} '^${DOCDIR}/' ${PKGDIR}/PLIST`; do \ - ${INSTALL_DATA} ${WRKSRC}/`${BASENAME} $$f` ${PREFIX}/${DOCDIR}; \ - done - ${INSTALL_DATA} ${FILESDIR}/mhn.defaults.dist ${EGDIR}/mhn.defaults + ${INSTALL_DATA} ${FILESDIR}/mhn.defaults.dist \ + ${DESTDIR}${EGDIR}/mhn.defaults + +.if ${OPSYS} == "Linux" +.include "../../databases/gdbm_compat/buildlink3.mk" +CONFIGURE_ARGS+= --with-ndbm='gdbm_compat -lgdbm' +CONFIGURE_ARGS+= --with-ndbmheader=ndbm.h +.endif +.include "../../converters/libiconv/buildlink3.mk" +.include "../../mk/terminfo.buildlink3.mk" .include "../../mk/bsd.pkg.mk"