5b216c9f17
with changes by me to share some logic with our ezmlm package. This is an addition and patch to ezmlm-0.53 [(c) Dan J. Bernstein]. Ezmlm-idx uses Dan's libraries and heavily relies on ezmlm-0.53 code. ezmlm-idx does not function without ezmlm-0.53. ezmlm-0.53 provides basic message distribution, subscriber address handling, message archiving (single quoted message retrieval only), and bounce handling. ezmlm-idx adds multi-message threaded archive retrieval, digests, remote administration, message and subscription moderation, subscriber-only restrictions, message trailer, subject prefix, subscriber name storage, customizable setup, multi-language and MIME support and more. In addition, improved bounce handling, case-insensitive subscriber address storage, and support for distributed lists (main + sublist transparent to the subscriber). Ezmlm-idx can now be compiled with MySQL or Postgres support.
25 lines
648 B
Makefile
25 lines
648 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2002/07/23 08:49:46 schmonz Exp $
|
|
#
|
|
|
|
.include "../../mail/ezmlm/Makefile.common"
|
|
|
|
DISTNAME= ezmlm-idx-0.40
|
|
MASTER_SITES+= http://gd.tuwien.ac.at/infosys/mail/qmail/ezmlm-patches/ \
|
|
ftp://ftp.ezmlm.org/pub/patches/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.ezmlm.org/
|
|
COMMENT= ezmlm with enhancements by third parties
|
|
|
|
CONFLICTS= ezmlm-[0-9]*
|
|
|
|
DISTFILES+= ${EZMLM_VERS}.tar.gz
|
|
PLIST_SRC+= PLIST.idx
|
|
|
|
do-patch:
|
|
@${MV} ${WRKSRC}/* ${WRKDIR}/${EZMLM_VERS}
|
|
@${RMDIR} ${WRKSRC}
|
|
@${MV} ${WRKDIR}/${EZMLM_VERS} ${WRKSRC}
|
|
@cd ${WRKSRC}; ${PATCH} ${PATCH_DIST_ARGS} < idx.patch
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|