diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-11-11 17:34:27 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-11-11 17:34:27 +0000 |
commit | c34fa4f6181eafe920c2a4f6375626eac1dd233a (patch) | |
tree | 4589161ba5b21574dcb40de7f198b9d444b2903e /mail | |
parent | Add SuperServer build (diff) |
add bogofilter 0.8.0
Fast, teachable, learning spam detector
PR: 45190
Submitted by: Matthias Andree <matthias.andree@web.de>
Notes
Notes:
svn path=/head/; revision=69905
Diffstat (limited to 'mail')
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/bogofilter-current/Makefile | 39 | ||||
-rw-r--r-- | mail/bogofilter-current/distinfo | 1 | ||||
-rw-r--r-- | mail/bogofilter-current/pkg-comment | 1 | ||||
-rw-r--r-- | mail/bogofilter-current/pkg-descr | 5 | ||||
-rw-r--r-- | mail/bogofilter-current/pkg-plist | 20 | ||||
-rw-r--r-- | mail/bogofilter/Makefile | 39 | ||||
-rw-r--r-- | mail/bogofilter/distinfo | 1 | ||||
-rw-r--r-- | mail/bogofilter/pkg-comment | 1 | ||||
-rw-r--r-- | mail/bogofilter/pkg-descr | 5 | ||||
-rw-r--r-- | mail/bogofilter/pkg-plist | 20 |
11 files changed, 133 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index ed07c221c4de..5c72ca80e312 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -16,6 +16,7 @@ SUBDIR += bbmail SUBDIR += biabam SUBDIR += biffer + SUBDIR += bogofilter SUBDIR += bsmtp SUBDIR += bulk_mailer SUBDIR += cclient diff --git a/mail/bogofilter-current/Makefile b/mail/bogofilter-current/Makefile new file mode 100644 index 000000000000..da27e5a2fbab --- /dev/null +++ b/mail/bogofilter-current/Makefile @@ -0,0 +1,39 @@ +# ports collection Makefile for: bogofilter +# Whom: Matthias Andree <matthias.andree@web.de> +# Date created: 2002-10-17 +# +# $FreeBSD$ +# + +PORTNAME= bogofilter +PORTVERSION= 0.8.0 +CATEGORIES= mail +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= matthias.andree@web.de + +LIB_DEPENDS= db4.0:${PORTSDIR}/databases/db4 + +# This port needs PERL5 at run time, but not for the build. +USE_PERL5= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${PREFIX}/include/db4" \ + LDFLAGS="-L${PREFIX}/lib" + +MAN1= bogofilter.1 bogoutil.1 bogoupgrade.1 bogolexer.1 + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} +.for i in AUTHORS COPYING INSTALL NEWS README TODO UPGRADE \ + doc/integrating-with-qmail contrib/README.unbase64 \ + README.freebsd README.hp-ux README.solaris + ${INSTALL_MAN} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.for i in bogo.R contrib/bogofilter-qfe contrib/unbase64 + ${INSTALL_SCRIPT} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/mail/bogofilter-current/distinfo b/mail/bogofilter-current/distinfo new file mode 100644 index 000000000000..ae1d8d4bf9ee --- /dev/null +++ b/mail/bogofilter-current/distinfo @@ -0,0 +1 @@ +MD5 (bogofilter-0.8.0.tar.gz) = 447d6045f0268c0f6f36c59176c08137 diff --git a/mail/bogofilter-current/pkg-comment b/mail/bogofilter-current/pkg-comment new file mode 100644 index 000000000000..e03981d2cfc2 --- /dev/null +++ b/mail/bogofilter-current/pkg-comment @@ -0,0 +1 @@ +Fast, teachable, learning spam detector diff --git a/mail/bogofilter-current/pkg-descr b/mail/bogofilter-current/pkg-descr new file mode 100644 index 000000000000..df478ae026dc --- /dev/null +++ b/mail/bogofilter-current/pkg-descr @@ -0,0 +1,5 @@ +Bogofilter takes an email message or other text on standard input, does a +statistical check against lists of "good" and "bad" words, and returns a status +code indicating whether or not the message is spam. + +WWW: http://bogofilter.sourceforge.net/ diff --git a/mail/bogofilter-current/pkg-plist b/mail/bogofilter-current/pkg-plist new file mode 100644 index 000000000000..fcd3b5c09f6f --- /dev/null +++ b/mail/bogofilter-current/pkg-plist @@ -0,0 +1,20 @@ +bin/bogofilter +bin/bogolexer +bin/bogoutil +bin/bogoupgrade +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/README.freebsd +%%PORTDOCS%%%%DOCSDIR%%/README.hp-ux +%%PORTDOCS%%%%DOCSDIR%%/README.solaris +%%PORTDOCS%%%%DOCSDIR%%/README.unbase64 +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/UPGRADE +%%PORTDOCS%%%%DOCSDIR%%/bogo.R +%%PORTDOCS%%%%DOCSDIR%%/bogofilter-qfe +%%PORTDOCS%%%%DOCSDIR%%/integrating-with-qmail +%%PORTDOCS%%%%DOCSDIR%%/unbase64 +%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/mail/bogofilter/Makefile b/mail/bogofilter/Makefile new file mode 100644 index 000000000000..da27e5a2fbab --- /dev/null +++ b/mail/bogofilter/Makefile @@ -0,0 +1,39 @@ +# ports collection Makefile for: bogofilter +# Whom: Matthias Andree <matthias.andree@web.de> +# Date created: 2002-10-17 +# +# $FreeBSD$ +# + +PORTNAME= bogofilter +PORTVERSION= 0.8.0 +CATEGORIES= mail +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= matthias.andree@web.de + +LIB_DEPENDS= db4.0:${PORTSDIR}/databases/db4 + +# This port needs PERL5 at run time, but not for the build. +USE_PERL5= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${PREFIX}/include/db4" \ + LDFLAGS="-L${PREFIX}/lib" + +MAN1= bogofilter.1 bogoutil.1 bogoupgrade.1 bogolexer.1 + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} +.for i in AUTHORS COPYING INSTALL NEWS README TODO UPGRADE \ + doc/integrating-with-qmail contrib/README.unbase64 \ + README.freebsd README.hp-ux README.solaris + ${INSTALL_MAN} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.for i in bogo.R contrib/bogofilter-qfe contrib/unbase64 + ${INSTALL_SCRIPT} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/mail/bogofilter/distinfo b/mail/bogofilter/distinfo new file mode 100644 index 000000000000..ae1d8d4bf9ee --- /dev/null +++ b/mail/bogofilter/distinfo @@ -0,0 +1 @@ +MD5 (bogofilter-0.8.0.tar.gz) = 447d6045f0268c0f6f36c59176c08137 diff --git a/mail/bogofilter/pkg-comment b/mail/bogofilter/pkg-comment new file mode 100644 index 000000000000..e03981d2cfc2 --- /dev/null +++ b/mail/bogofilter/pkg-comment @@ -0,0 +1 @@ +Fast, teachable, learning spam detector diff --git a/mail/bogofilter/pkg-descr b/mail/bogofilter/pkg-descr new file mode 100644 index 000000000000..df478ae026dc --- /dev/null +++ b/mail/bogofilter/pkg-descr @@ -0,0 +1,5 @@ +Bogofilter takes an email message or other text on standard input, does a +statistical check against lists of "good" and "bad" words, and returns a status +code indicating whether or not the message is spam. + +WWW: http://bogofilter.sourceforge.net/ diff --git a/mail/bogofilter/pkg-plist b/mail/bogofilter/pkg-plist new file mode 100644 index 000000000000..fcd3b5c09f6f --- /dev/null +++ b/mail/bogofilter/pkg-plist @@ -0,0 +1,20 @@ +bin/bogofilter +bin/bogolexer +bin/bogoutil +bin/bogoupgrade +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/README.freebsd +%%PORTDOCS%%%%DOCSDIR%%/README.hp-ux +%%PORTDOCS%%%%DOCSDIR%%/README.solaris +%%PORTDOCS%%%%DOCSDIR%%/README.unbase64 +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/UPGRADE +%%PORTDOCS%%%%DOCSDIR%%/bogo.R +%%PORTDOCS%%%%DOCSDIR%%/bogofilter-qfe +%%PORTDOCS%%%%DOCSDIR%%/integrating-with-qmail +%%PORTDOCS%%%%DOCSDIR%%/unbase64 +%%PORTDOCS%%@dirrm %%DOCSDIR%% |