summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEray Aslan <eras@gentoo.org>2012-03-09 13:44:44 +0000
committerEray Aslan <eras@gentoo.org>2012-03-09 13:44:44 +0000
commit1e8dd0a0309c0bd506fb15d3edd34b5ded254889 (patch)
tree8ba1b2bb2cc027a3f9b69c4b8b30a5ef250b2a2f /mail-filter/postgrey
parentversion bump (diff)
downloadgentoo-2-1e8dd0a0309c0bd506fb15d3edd34b5ded254889.tar.gz
gentoo-2-1e8dd0a0309c0bd506fb15d3edd34b5ded254889.tar.bz2
gentoo-2-1e8dd0a0309c0bd506fb15d3edd34b5ded254889.zip
remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'mail-filter/postgrey')
-rw-r--r--mail-filter/postgrey/ChangeLog6
-rw-r--r--mail-filter/postgrey/postgrey-1.32.ebuild93
-rw-r--r--mail-filter/postgrey/postgrey-1.33-r1.ebuild96
-rw-r--r--mail-filter/postgrey/postgrey-1.33.ebuild86
4 files changed, 5 insertions, 276 deletions
diff --git a/mail-filter/postgrey/ChangeLog b/mail-filter/postgrey/ChangeLog
index 9b265bfca568..5b30d0e3e570 100644
--- a/mail-filter/postgrey/ChangeLog
+++ b/mail-filter/postgrey/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for mail-filter/postgrey
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/postgrey/ChangeLog,v 1.72 2012/03/08 14:55:41 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/postgrey/ChangeLog,v 1.73 2012/03/09 13:44:44 eras Exp $
+
+ 09 Mar 2012; Eray Aslan <eras@gentoo.org> -postgrey-1.32.ebuild,
+ -postgrey-1.33.ebuild, -postgrey-1.33-r1.ebuild:
+ remove old
08 Mar 2012; Brent Baude <ranger@gentoo.org> postgrey-1.34.ebuild:
Marking postgrey-1.34 ppc64 for bug 391135
diff --git a/mail-filter/postgrey/postgrey-1.32.ebuild b/mail-filter/postgrey/postgrey-1.32.ebuild
deleted file mode 100644
index 692e46396f9a..000000000000
--- a/mail-filter/postgrey/postgrey-1.32.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/postgrey/postgrey-1.32.ebuild,v 1.10 2012/02/05 14:24:51 armin76 Exp $
-
-inherit eutils
-
-DESCRIPTION="Postgrey is a Postfix policy server implementing greylisting"
-SRC_URI="http://postgrey.schweikert.ch/pub/${P}.tar.gz
- http://postgrey.schweikert.ch/pub/old/${P}.tar.gz
- targrey? ( http://k2net.hakuba.jp/pub/targrey-0.31-${P}.patch )"
-HOMEPAGE="http://postgrey.schweikert.ch/"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="targrey"
-DEPEND=""
-RDEPEND=">=dev-lang/perl-5.6.0
- dev-perl/net-server
- dev-perl/IO-Multiplex
- dev-perl/BerkeleyDB
- dev-perl/Net-DNS
- dev-perl/Parse-Syslog
- dev-perl/Net-RBLClient
- >=sys-libs/db-4.1"
-
-KEYWORDS="amd64 hppa ~ppc ppc64 x86"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 /dev/null ${PN}
-}
-
-src_compile() {
- if use targrey ; then
- epatch "${DISTDIR}/targrey-0.31-${P}.patch"
- fi
-}
-
-src_install() {
- # postgrey data/DB in /var
- diropts -m0770 -o ${PN} -g ${PN}
- dodir /var/spool/postfix/${PN}
- keepdir /var/spool/postfix/${PN}
- fowners postgrey:postgrey /var/spool/postfix/${PN}
- fperms 0770 /var/spool/postfix/${PN}
-
- # postgrey binary
- dosbin ${PN}
- dosbin contrib/postgreyreport
-
- # policy-test script
- dosbin policy-test
-
- # postgrey data in /etc/postfix
- insinto /etc/postfix
- insopts -o root -g ${PN} -m 0640
- doins postgrey_whitelist_clients postgrey_whitelist_recipients
-
- # documentation
- dodoc Changes README
-
- # init.d + conf.d files
- insopts -o root -g root -m 755
- newinitd "${FILESDIR}"/${PN}.rc.new ${PN}
- insopts -o root -g root -m 640
- newconfd "${FILESDIR}"/${PN}.conf.new ${PN}
-}
-
-pkg_postinst() {
- echo
- elog "To make use of greylisting, please update your postfix config:"
- elog
-
- elog "In order to start using postgrey, edit /etc/conf.d/postgrey, add following lines"
- elog "to smtpd_recipient restrictions setting in your /etc/postfix/main.cf:"
- elog "\t\"check_policy_service inet:127.0.0.1:10030\", if you're using TCP socket"
- elog "\t\"check_policy_service unix:private/postgrey\", if you're using UNIX socket"
- elog "Then, start postgrey and restart postfix."
-
- elog "Also remember to make the daemon start durig system boot:"
- elog " rc-update add postgrey default"
-
- if use targrey ; then
- elog "The targrey patch has been applied, read the"
- elog "documentation for more info at"
- elog "\thttp://k2net.hakuba.jp/targrey/index.en.html"
- elog
- elog "Activate targrey and set options using POSTGREY_OPTS in"
- elog "/etc/conf.d/postgrey"
- elog
- fi
-
- elog "Read postgrey documentation for more info (perldoc postgrey)."
-}
diff --git a/mail-filter/postgrey/postgrey-1.33-r1.ebuild b/mail-filter/postgrey/postgrey-1.33-r1.ebuild
deleted file mode 100644
index ce5a02f9671a..000000000000
--- a/mail-filter/postgrey/postgrey-1.33-r1.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/postgrey/postgrey-1.33-r1.ebuild,v 1.2 2012/02/05 14:24:51 armin76 Exp $
-
-EAPI=3
-
-inherit eutils
-
-DESCRIPTION="Postgrey is a Postfix policy server implementing greylisting"
-HOMEPAGE="http://postgrey.schweikert.ch/"
-SRC_URI="http://postgrey.schweikert.ch/pub/${P}.tar.gz
- http://postgrey.schweikert.ch/pub/old/${P}.tar.gz
- targrey? ( http://k2net.hakuba.jp/pub/targrey-0.31-${P}.patch )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-IUSE="targrey"
-
-DEPEND=""
-RDEPEND=">=dev-lang/perl-5.6.0
- dev-perl/net-server
- dev-perl/IO-Multiplex
- dev-perl/BerkeleyDB
- dev-perl/Net-DNS
- dev-perl/Parse-Syslog
- dev-perl/Net-RBLClient
- >=sys-libs/db-4.1"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 /dev/null ${PN}
-}
-
-src_prepare() {
- if use targrey ; then
- epatch "${DISTDIR}/targrey-0.31-${P}.patch"
- fi
-}
-
-src_install() {
- # postgrey data/DB in /var
- diropts -m0770 -o ${PN} -g ${PN}
- dodir /var/spool/postfix/${PN}
- keepdir /var/spool/postfix/${PN}
- fowners postgrey:postgrey /var/spool/postfix/${PN}
- fperms 0770 /var/spool/postfix/${PN}
-
- # postgrey binary
- dosbin ${PN}
- dosbin contrib/postgreyreport
-
- # policy-test script
- dosbin policy-test
-
- # postgrey data in /etc/postfix
- insinto /etc/postfix
- insopts -o root -g ${PN} -m 0640
- doins postgrey_whitelist_clients postgrey_whitelist_recipients
-
- # documentation
- dodoc Changes README
-
- # init.d + conf.d files
- insopts -o root -g root -m 755
- newinitd "${FILESDIR}"/${PN}.rc.new ${PN}
- insopts -o root -g root -m 640
- newconfd "${FILESDIR}"/${PN}.conf.new ${PN}
-}
-
-pkg_postinst() {
- echo
- elog "To make use of greylisting, please update your postfix config:"
- elog
-
- elog "In order to start using postgrey, edit /etc/conf.d/postgrey, add following lines"
- elog "to smtpd_recipient restrictions setting in your /etc/postfix/main.cf:"
- elog "\t\"check_policy_service inet:127.0.0.1:10030\", if you're using TCP socket"
- elog "\t\"check_policy_service unix:private/postgrey\", if you're using UNIX socket"
- elog "Then, start postgrey and restart postfix."
-
- elog "Also remember to make the daemon start durig system boot:"
- elog " rc-update add postgrey default"
-
- if use targrey ; then
- elog "The targrey patch has been applied, read the"
- elog "documentation for more info at"
- elog "\thttp://k2net.hakuba.jp/targrey/index.en.html"
- elog
- elog "Activate targrey and set options using POSTGREY_OPTS in"
- elog "/etc/conf.d/postgrey"
- elog
- fi
-
- elog "Read postgrey documentation for more info (perldoc postgrey)."
-}
diff --git a/mail-filter/postgrey/postgrey-1.33.ebuild b/mail-filter/postgrey/postgrey-1.33.ebuild
deleted file mode 100644
index 27665c7baa5c..000000000000
--- a/mail-filter/postgrey/postgrey-1.33.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/postgrey/postgrey-1.33.ebuild,v 1.3 2012/02/05 14:24:51 armin76 Exp $
-
-inherit eutils
-
-DESCRIPTION="Postgrey is a Postfix policy server implementing greylisting"
-SRC_URI="http://postgrey.schweikert.ch/pub/${P}.tar.gz
- http://postgrey.schweikert.ch/pub/old/${P}.tar.gz"
-HOMEPAGE="http://postgrey.schweikert.ch/"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-DEPEND=""
-RDEPEND=">=dev-lang/perl-5.6.0
- dev-perl/net-server
- dev-perl/IO-Multiplex
- dev-perl/BerkeleyDB
- dev-perl/Net-DNS
- dev-perl/Parse-Syslog
- dev-perl/Net-RBLClient
- >=sys-libs/db-4.1"
-
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 /dev/null ${PN}
-}
-
-src_install() {
- # postgrey data/DB in /var
- diropts -m0770 -o ${PN} -g ${PN}
- dodir /var/spool/postfix/${PN}
- keepdir /var/spool/postfix/${PN}
- fowners postgrey:postgrey /var/spool/postfix/${PN}
- fperms 0770 /var/spool/postfix/${PN}
-
- # postgrey binary
- dosbin ${PN}
- dosbin contrib/postgreyreport
-
- # policy-test script
- dosbin policy-test
-
- # postgrey data in /etc/postfix
- insinto /etc/postfix
- insopts -o root -g ${PN} -m 0640
- doins postgrey_whitelist_clients postgrey_whitelist_recipients
-
- # documentation
- dodoc Changes README
-
- # init.d + conf.d files
- insopts -o root -g root -m 755
- newinitd "${FILESDIR}"/${PN}.rc.new ${PN}
- insopts -o root -g root -m 640
- newconfd "${FILESDIR}"/${PN}.conf.new ${PN}
-}
-
-pkg_postinst() {
- echo
- elog "To make use of greylisting, please update your postfix config:"
- elog
-
- elog "In order to start using postgrey, edit /etc/conf.d/postgrey, add following lines"
- elog "to smtpd_recipient restrictions setting in your /etc/postfix/main.cf:"
- elog "\t\"check_policy_service inet:127.0.0.1:10030\", if you're using TCP socket"
- elog "\t\"check_policy_service unix:private/postgrey\", if you're using UNIX socket"
- elog "Then, start postgrey and restart postfix."
-
- elog "Also remember to make the daemon start durig system boot:"
- elog " rc-update add postgrey default"
-
- if use targrey ; then
- elog "The targrey patch has been applied, read the"
- elog "documentation for more info at"
- elog "\thttp://k2net.hakuba.jp/targrey/index.en.html"
- elog
- elog "Activate targrey and set options using POSTGREY_OPTS in"
- elog "/etc/conf.d/postgrey"
- elog
- fi
-
- elog "Read postgrey documentation for more info (perldoc postgrey)."
-}