* [gentoo-commits] dev/wschlich:master commit in: mail-filter/dovecot-antispam/
@ 2016-01-28 8:49 Wolfram Schlich
0 siblings, 0 replies; only message in thread
From: Wolfram Schlich @ 2016-01-28 8:49 UTC (permalink / raw
To: gentoo-commits
commit: 202941966d797e654ac9f389000fe703cef96ab9
Author: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 28 08:49:19 2016 +0000
Commit: Wolfram Schlich <wschlich <AT> gentoo <DOT> org>
CommitDate: Thu Jan 28 08:49:19 2016 +0000
URL: https://gitweb.gentoo.org/dev/wschlich.git/commit/?id=20294196
mail-filter/dovecot-antispam: removed.
mail-filter/dovecot-antispam/ChangeLog | 12 ----
mail-filter/dovecot-antispam/Manifest | 2 -
.../dovecot-antispam/dovecot-antispam-9999.ebuild | 80 ----------------------
3 files changed, 94 deletions(-)
diff --git a/mail-filter/dovecot-antispam/ChangeLog b/mail-filter/dovecot-antispam/ChangeLog
deleted file mode 100644
index 83df1f3..0000000
--- a/mail-filter/dovecot-antispam/ChangeLog
+++ /dev/null
@@ -1,12 +0,0 @@
-# ChangeLog for mail-filter/dovecot-antispam
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
- 01 Jun 2008; Wolfram Schlich <wschlich@gentoo.org>
- dovecot-antispam-9999.ebuild:
- added debug CFLAGS
-
- 27 Apr 2008; Wolfram Schlich <wschlich@gentoo.org>
- +dovecot-antispam-9999.ebuild:
- initial import
-
diff --git a/mail-filter/dovecot-antispam/Manifest b/mail-filter/dovecot-antispam/Manifest
deleted file mode 100644
index 7a4eadb..0000000
--- a/mail-filter/dovecot-antispam/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD dovecot-antispam-9999.ebuild 2145 RMD160 0b9573768b7a56808d6083a64999bcee9acc4da4 SHA1 f545fff6ba503b9853b11625afe3d3390a8dba96 SHA256 1a53cee4be2de15e0daddd000116374f3a60f1bb07cee58f491d937d12097b5d
-MISC ChangeLog 340 RMD160 3efc4216a0f8aeab9440d0aa68ebf780f5524c0b SHA1 1872f008894039a561349c514b00ce6780d6a0cd SHA256 7e35f295a3d32dfe017fd02427f3b0de508b3bf221108859e856215df5baa54c
diff --git a/mail-filter/dovecot-antispam/dovecot-antispam-9999.ebuild b/mail-filter/dovecot-antispam/dovecot-antispam-9999.ebuild
deleted file mode 100644
index 11b0699..0000000
--- a/mail-filter/dovecot-antispam/dovecot-antispam-9999.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/dovecot-antispam/dovecot-antispam-20080424.ebuild,v 1.1 2008/04/24 11:46:40 hollow Exp $
-
-inherit confutils eutils autotools flag-o-matic git multilib
-
-EGIT_REPO_URI="http://git.sipsolutions.net/dovecot-antispam.git"
-
-DESCRIPTION="A dovecot antispam plugin supporting multiple backends"
-HOMEPAGE="http://johannes.sipsolutions.net/Projects/dovecot-antispam"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug dspam crm114 mailtrain signature-log syslog"
-
-DEPEND="net-mail/dovecot
- dspam? ( mail-filter/dspam )
- crm114? ( app-text/crm114 )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"/${PN}
-
-# we need this to prevent errors from dovecot-config
-top_builddir() {
- return
-}
-
-pkg_setup() {
- confutils_require_one dspam signature-log mailtrain crm114
- confutils_use_depend_all syslog debug
-}
-
-src_unpack() {
- git_src_unpack
- cd "${S}"
- sed -e 's/$(INSTALLDIR)/$(DESTDIR)$(INSTALLDIR)/' -i Makefile
-}
-
-src_compile() {
- source "${ROOT}"/usr/lib/dovecot/dovecot-config || \
- die "cannot find dovecot-config"
-
- echo DOVECOT=${dovecot_incdir} > .config
- if has_version '=net-mail/dovecot-1.0*'; then
- echo DOVECOT_VERSION=1.0 >> .config
- elif has_version '=net-mail/dovecot-1.1*'; then
- echo DOVECOT_VERSION=1.1 >> .config
- fi
- echo INSTALLDIR=${moduledir}/imap/ >> .config
- echo PLUGINNAME=antispam >> .config
- echo USER=root >> .config
- echo GROUP=root >> .config
-
- use dspam && echo BACKEND=dspam-exec >> .config
- use signature-log && echo BACKEND=signature-log >> .config
- use mailtrain && echo BACKEND=mailtrain >> .config
- use crm114 && echo BACKEND=crm114-exec >> .config
-
- if use debug; then
- echo CFLAGS+=-g3 >> .config
- if use syslog; then
- echo DEBUG=syslog >> .config
- else
- echo DEBUG=stderr >> .config
- fi
- fi
-
- emake || die "make failed"
-}
-
-src_install() {
- source "${ROOT}"/usr/lib/dovecot/dovecot-config || \
- die "cannot find dovecot-config"
-
- dodir "${moduledir}"/imap/
- make DESTDIR="${D}" install || die "make install failed"
-
- newman antispam.7 dovecot-antispam.7
-}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-01-28 8:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-28 8:49 [gentoo-commits] dev/wschlich:master commit in: mail-filter/dovecot-antispam/ Wolfram Schlich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox