forked from Lainports/freebsd-ports
to write their own email processing tools.
Whether you want to process incoming and outgoing emails,
or just analyze a message,
this package is intended to aid in that endeavor.
Features
* Written in C
* API is documented
* Fast and efficient
Usage
How we use EPS and how others use EPS
* Tracking incoming and outgoing email messages based on threads
* Archiving and searching against threads
* Demographics collection via email
* Email client
* Create custom autoresponders
* We even used it to parse simple LDIF files!
WWW: http://www.inter7.com/index.php?page=eps
PR: ports/83818
Submitted by: Ismail YENIGUL <ismail@enderunix.org>
Approved by: flz (mentor)
36 lines
718 B
Makefile
36 lines
718 B
Makefile
# New ports collection makefile for: eps
|
|
# Date created: 21 Jul 2005
|
|
# Whom: ismail@enderunix.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= eps
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.inter7.com/eps/
|
|
|
|
MAINTAINER= ismail@EnderUNIX.org
|
|
COMMENT= EPS is a Email Parsing System
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
PORTDOCS= howto
|
|
|
|
MAKE_ENV+= DEFS="${CFLAGS}"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^CC =|CC \?=|' \
|
|
-e 's|^DEFS =|DEFS \?=|' \
|
|
${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/libeps.a ${PREFIX}/lib
|
|
${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|