summaryrefslogtreecommitdiff
path: root/mail/postfix-gps
diff options
context:
space:
mode:
Diffstat (limited to 'mail/postfix-gps')
-rw-r--r--mail/postfix-gps/Makefile45
-rw-r--r--mail/postfix-gps/distinfo2
-rw-r--r--mail/postfix-gps/files/patch-configure.in12
-rw-r--r--mail/postfix-gps/files/patch-src__pmatcher.h10
-rw-r--r--mail/postfix-gps/files/pkg-message.in30
-rw-r--r--mail/postfix-gps/pkg-descr11
6 files changed, 0 insertions, 110 deletions
diff --git a/mail/postfix-gps/Makefile b/mail/postfix-gps/Makefile
deleted file mode 100644
index d63c0a4fcb9b..000000000000
--- a/mail/postfix-gps/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-# Created by: Xin LI <delphij@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= gps
-PORTVERSION= 1.005
-PORTREVISION= 6
-CATEGORIES= mail security
-MASTER_SITES= SF/greylist/greylist/${PORTVERSION}-bugfix
-PKGNAMEPREFIX= postfix-
-DISTNAME= gps-${PORTVERSION}-bugfix
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Greylist Policy Service for postfix
-
-LIB_DEPENDS= libdbi.so:${PORTSDIR}/databases/libdbi
-RUN_DEPENDS= ${LOCALBASE}/lib/dbd:${PORTSDIR}/databases/libdbi-drivers \
- p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql
-
-SCRIPT_FILES= gps-maintain.pl gps-db-update.pl
-PLIST_FILES= etc/gps.conf-dist libexec/gps libexec/gps-maintain.pl libexec/gps-db-update.pl
-SUB_FILES= pkg-message
-
-WRKSRC= ${WRKDIR}/release-${PORTVERSION}
-
-USE_AUTOTOOLS= automake autoconf
-AUTOMAKE_ARGS= --add-missing
-CONFIGURE_ARGS= --bindir=${PREFIX}/libexec --includedir=${PREFIX}/include
-CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib
-CXXFLAGS+= -I${LOCALBASE}/include
-
-NO_STAGE= yes
-pre-configure:
- @cd ${WRKSRC} && ${ACLOCAL}
-
-post-install:
- @${INSTALL_DATA} ${WRKSRC}/etc/gps.conf ${PREFIX}/etc/gps.conf-dist
-.for f in ${SCRIPT_FILES}
- @${INSTALL_SCRIPT} ${WRKSRC}/${f} ${PREFIX}/libexec
-.endfor
-.if !defined(BATCH)
- @${CAT} ${PKGMESSAGE}
-.endif
-
-.include <bsd.port.mk>
diff --git a/mail/postfix-gps/distinfo b/mail/postfix-gps/distinfo
deleted file mode 100644
index 3d0bcd8911a7..000000000000
--- a/mail/postfix-gps/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (gps-1.005-bugfix.tar.gz) = 42473432028587dc3a403a23484baaa32beada8e4726caadbe693a0dd496740d
-SIZE (gps-1.005-bugfix.tar.gz) = 260085
diff --git a/mail/postfix-gps/files/patch-configure.in b/mail/postfix-gps/files/patch-configure.in
deleted file mode 100644
index 3acc301971c1..000000000000
--- a/mail/postfix-gps/files/patch-configure.in
+++ /dev/null
@@ -1,12 +0,0 @@
---- ./configure.in.orig 2007-04-25 05:08:13.000000000 -0700
-+++ ./configure.in 2008-01-27 23:50:41.970446154 -0800
-@@ -20,9 +20,6 @@
-
- AC_LANG_CPLUSPLUS
- AC_PROG_CXX
--AM_PROG_LIBTOOL
--AC_PROG_LD
--AM_PROG_LD
- dnl AC_CHECK_LIB(dbi, libdbi)
-
- dnl freebsd compile requires AF_INET from sys/sockets.h
diff --git a/mail/postfix-gps/files/patch-src__pmatcher.h b/mail/postfix-gps/files/patch-src__pmatcher.h
deleted file mode 100644
index 4f51f97f4227..000000000000
--- a/mail/postfix-gps/files/patch-src__pmatcher.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- ./src/pmatcher.h.orig 2007-04-25 05:08:10.000000000 -0700
-+++ ./src/pmatcher.h 2008-01-27 23:50:41.973446276 -0800
-@@ -24,6 +24,7 @@
- #include <string>
- //getnameinfo
- #include <netdb.h>
-+#include <sys/socket.h>
- //
- #include "regexcpp.h"
- #include "triplet.h"
diff --git a/mail/postfix-gps/files/pkg-message.in b/mail/postfix-gps/files/pkg-message.in
deleted file mode 100644
index 1e61bd1e1225..000000000000
--- a/mail/postfix-gps/files/pkg-message.in
+++ /dev/null
@@ -1,30 +0,0 @@
-========================================================================
-Configuration Instructions
-
-You should now create a database for gps, and grant a dedicated database
-user appropriate privilege to access it. Please copy gps.conf-dist found
-in your local etc directory to gps.conf and do some changes to reflect
-the database and user. gps will automatically create the tables that
-is needed for greylisting.
-
-After you have all these done, modify the postfix master.cf and include
-gps as policy server. We recommend that you use Unix domain socket
-since this can be used even within a jail(8) environment. An example
-entry is:
-
-policy unix - n n - - spawn
- user=nobody argv=%%PREFIX%%/libexec/gps -v %%PREFIX%%/etc/gps.conf
-
-In order to make policy server effect on your postfix installation,
-you should add something like:
-
- check_policy_service unix:private/policy
-
-Into your smtpd_sender_restrictions configuration in postfix's main.cf.
-
-Also, you may want to include the following line into your crontab so
-system will automatically do daily cleanup of the greylist table:
-
-27 * * * * %%PREFIX%%/libexec/gps-maintain.pl -delete -eq 0 -age 86400 %%PREFIX%%/etc/gps.conf
-55 3 * * * %%PREFIX%%/libexec/gps-maintain.pl -delete -age 3110400 %%PREFIX%%/etc/gps.conf
-========================================================================
diff --git a/mail/postfix-gps/pkg-descr b/mail/postfix-gps/pkg-descr
deleted file mode 100644
index 03ce142dab64..000000000000
--- a/mail/postfix-gps/pkg-descr
+++ /dev/null
@@ -1,11 +0,0 @@
-This program is an implementation of a greylist policy service for
-postfix (2.1.0 and later). Greylisting is a concept to reduce the
-amount of UCE ('spam') by technical means. Tests on production
-systems show that greylisting is hugely effective.
-
-Read more about greylisting on:
-WWW: http://www.greylisting.org and
-WWW: http://projects.puremagic.com/greylisting/whitepaper.html
-
-Also, please consult homepage of this program:
-WWW: http://mimo.gn.apc.org/gps/