summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2011-09-04 11:24:07 +0000
committerTorsten Veller <tove@gentoo.org>2011-09-04 11:24:07 +0000
commited1835f95ac005061c92cae46366aa03deeb7aa6 (patch)
treebf4cd51e2a39ff64b8d4e986cbb7f9ecc8220b61 /dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing
parentVersion bump to latest release. (diff)
downloadgentoo-2-ed1835f95ac005061c92cae46366aa03deeb7aa6.tar.gz
gentoo-2-ed1835f95ac005061c92cae46366aa03deeb7aa6.tar.bz2
gentoo-2-ed1835f95ac005061c92cae46366aa03deeb7aa6.zip
Cleanup
(Portage version: 2.2.0_alpha52/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing')
-rw-r--r--dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog6
-rw-r--r--dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild46
2 files changed, 5 insertions, 47 deletions
diff --git a/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog b/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog
index ba912bc26876..6ddaa1b86374 100644
--- a/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog
+++ b/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v 1.5 2011/08/30 10:42:46 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v 1.6 2011/09/04 11:23:22 tove Exp $
+
+ 04 Sep 2011; Torsten Veller <tove@gentoo.org>
+ -Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild:
+ Cleanup
*Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0 (30 Aug 2011)
diff --git a/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild b/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild
deleted file mode 100644
index eb5ab349b74b..000000000000
--- a/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild,v 1.2 2010/04/23 11:47:31 tove Exp $
-
-MODULE_AUTHOR="DANBORN"
-inherit perl-module
-
-DESCRIPTION="SpamAssassin plugin to score mail based on Google blocklists."
-
-IUSE="test"
-
-SLOT="0"
-LICENSE="Apache-2.0"
-KEYWORDS="~amd64 ~x86 ~ppc"
-RDEPEND="dev-perl/Net-Google-SafeBrowsing-Blocklist
- dev-perl/Net-Google-SafeBrowsing-UpdateRequest
- mail-filter/spamassassin"
-DEPEND="${RDEPEND}
- test? ( dev-perl/Test-Pod )"
-
-SRC_TEST="do"
-
-src_install() {
- perl-module_src_install
- insinto /etc/mail/spamassassin
- doins "${FILESDIR}"/init_google_safebrowsing.pre
- doins "${FILESDIR}"/24_google_safebrowsing.cf
- insinto /etc/cron.d/
- newins "${FILESDIR}"/update_google_safebrowsing.cron update_google_safebrowsing
- dosbin "${FILESDIR}"/update_google_safebrowsing.sh
- keepdir /var/lib/spamassassin/google_safebrowsing/
-}
-
-pkg_postinst() {
- if [[ -f ${ROOT}/etc/cron.d/update_google_safebrowsing.sh ]]; then
- ewarn "You MUST remove ${ROOT}/etc/cron.d/update_google_safebrowsing.sh"
- fi
- elog "To use this package:"
- elog "1. You MUST apply for a free apikey at:"
- elog " http://code.google.com/apis/safebrowsing/key_signup.html"
- elog "2. Place the key into /etc/mail/spamassassin/24_google_safebrowsing.cf"
- elog "3. Manually run the script /usr/sbin/update_google_safebrowsing.sh"
- elog "4. Enable the plugin by uncommenting the loadplugin entry in"
- elog " /etc/mail/spamassassin/init_google_safebrowsing.pre"
- elog "5. Restart spamd"
-}