pkgsrc/mail/teapop/Makefile
zuntum 8e6f20546a Update teapop to version 0.3.8
* Changes since previous pkgsrc version - 0.3.5:

0.3.8   + Allow port to listen to in standalone to be changed with -P.
          (Patch by: "Malte S. Stretz" <msquadrat.nospamplease@gmx.net>)
        ! Reduce memory footprint
          (Idea from: "Malte S. Stretz" <msquadrat.nospamplease@gmx.net>)
        + Warn when teapop.passwd isn't found and default authentication
          is used.
        + Introduce softlock, which gives the client an empty mailbox
          instead of an error.
        - Proper handling of CRLF in Maildirs.
          (Found by: Matthew Sayler <sayler@speedsite.com>)
        * Release date: 25-Nov-2003

0.3.7   - The configure script was broken under certain circumstances.
        * Release date: 22-Jul-2003

0.3.6   + Attempt to handle broken maildelivery programs that doesn't
          quote From_ lines.
        + Support to delete messages older then a certain expire date.
        + Support for tcpwrapper.
        ! Better cleanup of MySQL connections
          (Patch by: Ross West <westr@connection.ca>)
        ! Improved NULL handling on long lines
          (Pointed out by: Ross West <westr@connection.ca>)
        - Possible buffer underflow fixed.
        - Unbreak APOP with database authentication
          (Found by: "Toru Hosaka" <hosaka@kt.rim.or.jp>)
        ! Restrict max value for hashing.
        + Mailspool hashing is now availble for all authentication types.
          (Based on patch by: Robert Gomu?ka <carramba@pf.pl>)
        + Escape userdata for database authenticaion
          (Patch by: Robert Gomu?ka <carramba@pf.pl>)
        + Support for ia64.
        + Support for special logging in SSL-mode.
        + IPv6 support when running in inetd-mode.
        * Release date: 21-Jul-2003

  * Superfluous MESSAGE file mentioning rc.d script was removed, as it was
    too generic and not really useful.
2004-07-23 14:08:41 +00:00

50 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.17 2004/07/23 14:08:41 zuntum Exp $
DISTNAME= teapop-0.3.8
CATEGORIES= mail
MASTER_SITES= ftp://ftp.toontown.org/pub/teapop/ \
http://www.toontown.org/pub/teapop/
MAINTAINER= dawszy@arhea.net
HOMEPAGE= http://www.toontown.org/teapop/
COMMENT= Yet another RFC1939 compliant POP3 server
USE_BUILDLINK3= YES
USE_PKGINSTALL= YES
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --enable-flock
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
EGDIR= ${PREFIX}/share/examples/teapop
CONF_FILES= ${EGDIR}/teapop.passwd ${PKG_SYSCONFDIR}/teapop.passwd
RCD_SCRIPTS= teapop
.include "../../mk/bsd.prefs.mk"
.if defined(POP_WITH_DRAC)
.include "../../mail/drac/buildlink3.mk"
CONFIGURE_ARGS+= --with-drac=${BUILDLINK_PREFIX.drac}/lib
CONFIGURE_ARGS+= --with-dracinc=${BUILDLINK_PREFIX.drac}/include
.endif
.if defined(TEAPOP_WITHOUT_APOP)
CONFIGURE_ARGS+=--disable-apop
.endif
.if defined(TEAPOP_WITHOUT_VPOP)
CONFIGURE_ARGS+=--disable-vpop
.endif
.if defined(TEAPOP_WITH_MYSQL)
.include "../../databases/mysql-client/buildlink3.mk"
CONFIGURE_ARGS+= --with-mysql=${BUILDLINK_PREFIX.mysql-client}
LDFLAGS+= ${BUILDLINK_LDFLAGS.mysql-client}
.endif
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${WRKSRC}/etc/teapop.passwd ${EGDIR}
.include "../../mk/bsd.pkg.mk"