summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Goodyear <g2boojum@gentoo.org>2001-10-23 14:00:19 +0000
committerGrant Goodyear <g2boojum@gentoo.org>2001-10-23 14:00:19 +0000
commitd700c81745695dad4697b7d01b5fdadc2dfb8b6a (patch)
treec29e4e3caadf08752c648b96116e60e2c0aa86c9
parentNew procmail version; Maildir users should update. (diff)
downloadhistorical-d700c81745695dad4697b7d01b5fdadc2dfb8b6a.tar.gz
historical-d700c81745695dad4697b7d01b5fdadc2dfb8b6a.tar.bz2
historical-d700c81745695dad4697b7d01b5fdadc2dfb8b6a.zip
Removed procmail-3.21; not entirely Maildir safe.
-rw-r--r--net-mail/procmail/files/digest-procmail-3.211
-rw-r--r--net-mail/procmail/procmail-3.21.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/net-mail/procmail/files/digest-procmail-3.21 b/net-mail/procmail/files/digest-procmail-3.21
deleted file mode 100644
index 4179aa89d137..000000000000
--- a/net-mail/procmail/files/digest-procmail-3.21
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2a0491030e7bff3292257d02a93cbe91 procmail-3.21.tar.gz
diff --git a/net-mail/procmail/procmail-3.21.ebuild b/net-mail/procmail/procmail-3.21.ebuild
deleted file mode 100644
index 5171c373c77c..000000000000
--- a/net-mail/procmail/procmail-3.21.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Jerry Alexandratos <jerry@gentoo.org>
-# Modified by $HOME/.maildir by Craig Joly <craig@taipan.mudshark.org>
-# $Header: /var/cvsroot/gentoo-x86/net-mail/procmail/procmail-3.21.ebuild,v 1.1 2001/08/28 22:32:13 lamer Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="Mail delivery agent/filter"
-SRC_URI="http://www.procmail.org/${A}"
-HOMEPAGE="http://www.procmail.org/"
-
-DEPEND="virtual/glibc
- virtual/mta"
-
-src_compile() {
-
- cp Makefile Makefile.orig
- sed -e "s:CFLAGS0 = -O:CFLAGS0 = ${CFLAGS}:" \
- -e "s:LOCKINGTEST=__defaults__:#LOCKINGTEST=__defaults__:" \
- -e "s:#LOCKINGTEST=/tmp:LOCKINGTEST=/tmp:" Makefile.orig > Makefile
- cd ${S}/src
- cp authenticate.c authenticate.c.orig
- sed -e "s:/\*#define MAILSPOOLHOME \"/.mail\":#define MAILSPOOLHOME \"/.maildir/\":" authenticate.c.orig > authenticate.c
- cd ${S}
- emake || die
-}
-
-src_install () {
- cd ${S}/new
- insinto /usr/bin
- insopts -m 6755
- doins procmail
-
- insopts -m 2755
- doins lockfile
-
- dobin formail mailstat
-
- doman *.1 *.5
-
- cd ${S}
- dodoc Artistic COPYING FAQ FEATURES HISTORY INSTALL KNOWN_BUGS README
-
- docinto examples
- dodoc examples/*
-}
-