pkgsrc/mail/fetchmail/Makefile
frueauf 9360c0d5e6 Update fetchmail to 5.2.3.
fetchmail-5.2.3 (Tue Jan  4 01:56:11 EST 2000), 18421 lines:
* Ken Estes's patch to check for unreachable UIDL file due to bad NFS mount.
* Jorge Godoy's replacement pt_BR.po and various minor translation fixes.
* Javier Kohen's replacement for es.po.
* Munechika SUMIKAWA's patch to make IPv6 version build when POP2 is enabled.
* Russian translation removed; it was badly garbled.
* Added Rick van Rein's fetchmaildistrib script to the contrib directory.
* Gunther Leber's cleanup patches.
* Note to translators: The bodies of the login-error and timeout-error
  form letters have been changed in driver.c.

fetchmail-5.2.2 (Sun Dec 26 09:31:07 EST 1999), 18365 lines:
* Arrange for fetchmail to restart itself quietly when the rc file is touched.
* Improvements to IPv6 code from Jun-ichiro itojun Hagino <itojun@iijlab.net>.
* Drastic simplification of UIDL code, suggested by Ken Estes.

fetchmail-5.2.1 (Sun Dec 19 23:08:53 EST 1999), 18330 lines:
* Added FAQ item R10 on timeouts during messages.
* Fixed indentation problem in fetchmailconf.
* Federico Schwindt's patch to fix broken SSL configuration.
* Fixes to use fetchmail with IPv6 enabled on glibc without inet6-apps
  installed; thanks to Arkadiusz Mis'kiewicz.
* Interpret IMAP PREAUTH tag correctly (from Joerg Dorchain).
* Upgraded to version 0.21 of smbutil.c.  FAQ item S2 now documents
  how to set a domain name.
2000-01-10 22:50:16 +00:00

54 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.61 2000/01/10 22:50:16 frueauf Exp $
#
DISTNAME= fetchmail-5.2.3
CATEGORIES= mail
MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ \
http://www.tuxedo.org/~esr/fetchmail/ \
http://sunsite.unc.edu/pub/Linux/system/mail/pop/
MAINTAINER= mycroft@netbsd.org
HOMEPAGE= http://www.tuxedo.org/~esr/fetchmail/
BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf
GNU_CONFIGURE= yes
CONFIGURE_ENV= LDFLAGS="${CFLAGS}"
BUILD_DEFS+= USE_INET6
.include "../../mk/bsd.prefs.mk"
.if defined(KERBEROS) && ${KERBEROS} == 4
USE_KERBEROS= yes
CONFIGURE_ARGS+=--with-kerberos=yes
.else
CONFIGURE_ARGS+=--with-kerberos=no
.endif
.if defined(USE_INET6) && ${USE_INET6} == YES
CONFIGURE_ARGS+=--enable-inet6
.endif
FDOC= ${PREFIX}/share/doc/fetchmail
post-extract:
.if ${OPSYS} == "NetBSD"
@${RM} -f ${WRKSRC}/md5.h
.endif
@${MV} ${WRKSRC}/fetchmail.man ${WRKSRC}/fetchmail.tbl
pre-configure:
(cd ${WRKSRC}; autoreconf)
post-build:
tbl ${WRKSRC}/fetchmail.tbl >${WRKSRC}/fetchmail.man
post-install:
${INSTALL} -d -m 555 -o ${DOCOWN} -g ${DOCGRP} ${FDOC}
cd ${WRKSRC} && ${INSTALL_DATA} \
sample.rcfile FAQ NOTES FEATURES README COPYING \
fetchmail-FAQ.html fetchmail-features.html \
design-notes.html ${FDOC}
.include "../../mk/bsd.pkg.mk"