bed0260f04
Nearly all of today's mail system administrators face spam as their first threat. Because of this, EnderUNIX team has written this small application to automagically monitor malicious spammer activity in your mail server logs. spamGuard is written purely in C, to stop spammers hanging around. The program supports nearly all mostly used MTAs; qmail (both multilog and splogger), sendmail and Postfix. WWW: http://www.enderunix.org/spamguard PR: 58499 Submitted by: Omer Faruk Sen <ofsen@enderunix.org>
36 lines
1 KiB
Makefile
36 lines
1 KiB
Makefile
# New ports collection makefile for: spamguard
|
|
# Date created: 21 Oct 2003
|
|
# Whom: Omer Faruk Sen <ofsen@enderunix.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= spamguard
|
|
PORTVERSION= 1.6
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.enderunix.org/spamguard/
|
|
|
|
MAINTAINER= ofsen@enderunix.org
|
|
COMMENT= MTA spam prevention program for qmail/postfix/sendmail
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
DOCS= AUTHORS CHANGELOG COPYING INSTALL \
|
|
POST-INSTALL README THANKS
|
|
DOCS_TR= BENIOKU COPYING DEGISIKLIKLER KURULUM \
|
|
KURULUM-SONRASI YAPILACAKLAR YAZARLAR
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/spamguard ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/*.sample ${PREFIX}/etc
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}/tr
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
cd ${WRKSRC}/tr && ${INSTALL_DATA} ${DOCS_TR} ${DOCSDIR}/tr
|
|
.endif
|
|
@${SED} -e 's,%%PREFIX%%,${PREFIX},g' pkg-message > ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|