summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2004-03-03 17:19:17 +0000
committerMartin Holzer <mholzer@gentoo.org>2004-03-03 17:19:17 +0000
commit40b49ef64c33a3f7241aa010b0905a7b1348b9ef (patch)
tree0a961efd60691ec9e5c51a2293052b12453404dc /net-mail
parentAdding new version with updated patch to ~x86. (diff)
downloadhistorical-40b49ef64c33a3f7241aa010b0905a7b1348b9ef.tar.gz
historical-40b49ef64c33a3f7241aa010b0905a7b1348b9ef.tar.bz2
historical-40b49ef64c33a3f7241aa010b0905a7b1348b9ef.zip
cleanup
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/procmail/files/digest-procmail-3.22-r53
-rw-r--r--net-mail/procmail/files/gentoo-maildir.diff20
-rw-r--r--net-mail/procmail/procmail-3.22-r5.ebuild72
3 files changed, 0 insertions, 95 deletions
diff --git a/net-mail/procmail/files/digest-procmail-3.22-r5 b/net-mail/procmail/files/digest-procmail-3.22-r5
deleted file mode 100644
index 363ef49f9689..000000000000
--- a/net-mail/procmail/files/digest-procmail-3.22-r5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 cf77e1216e268b2b86ae18e4d2e35d30 /files/gentoo-maildir.diff 796
-MD5 12c8ed33af746b96e1e395a0b68da644 /procmail-3.22-r5.ebuild 1794
-MD5 1678ea99b973eb77eda4ecf6acae53f1 procmail-3.22.tar.gz 226817
diff --git a/net-mail/procmail/files/gentoo-maildir.diff b/net-mail/procmail/files/gentoo-maildir.diff
deleted file mode 100644
index 61ce308eb214..000000000000
--- a/net-mail/procmail/files/gentoo-maildir.diff
+++ /dev/null
@@ -1,20 +0,0 @@
---- procmail-3.22/src/authenticate.c.orig 2002-07-26 20:38:52.000000000 -0400
-+++ procmail-3.22/src/authenticate.c 2002-07-26 20:57:56.000000000 -0400
-@@ -39,7 +39,7 @@
- #include "authenticate.h"
-
- #ifndef MAILSPOOLDIR
--#define MAILSPOOLDIR "/var/spool/mail/" /* watch the trailing / */
-+#define MAILSPOOLDIR "" /* watch the trailing / */
- #endif
- #ifndef MAILSPOOLSUFFIX
- #define MAILSPOOLSUFFIX "" /* suffix to force maildir or MH style */
-@@ -47,7 +47,7 @@
- #ifndef MAILSPOOLHASH
- #define MAILSPOOLHASH 0 /* 2 would deliver to /var/spool/mail/b/a/bar */
- #endif
--/*#define MAILSPOOLHOME "/.mail" /* watch the leading / */
-+#define MAILSPOOLHOME "/.maildir" /* watch the leading / */
- /* delivers to $HOME/.mail */
- #define STRLEN(x) (sizeof(x)-1)
-
diff --git a/net-mail/procmail/procmail-3.22-r5.ebuild b/net-mail/procmail/procmail-3.22-r5.ebuild
deleted file mode 100644
index 9ea8d7fe8cb7..000000000000
--- a/net-mail/procmail/procmail-3.22-r5.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/procmail/procmail-3.22-r5.ebuild,v 1.15 2004/02/22 16:23:29 agriffis Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Mail delivery agent/filter"
-SRC_URI="http://www.procmail.org/${P}.tar.gz"
-HOMEPAGE="http://www.procmail.org/"
-
-IUSE=""
-
-DEPEND="virtual/glibc
- virtual/mta"
-
-RDEPEND="virtual/glibc"
-
-PROVIDE="virtual/mda"
-
-SLOT="0"
-LICENSE="Artistic | GPL-2"
-KEYWORDS="x86 ppc sparc alpha hppa"
-
-src_compile() {
-
- cp Makefile Makefile.orig
-# Added a -O2 at the end of CFLAGS to overcome what seems to be a
-# gcc-3.1 strstr() bug with more aggressive optimization flags
-# The order of the flags matters as the last flag passed clobbers
-# the first flag. i.e. if -O2 was placed before ${CFLAGS},
-# whatever optimization that is in ${CFLAGS} would clobber -O2
- sed -e "s:CFLAGS0 = -O:CFLAGS0 = ${CFLAGS} -O2:" \
- -e "s:LOCKINGTEST=__defaults__:#LOCKINGTEST=__defaults__:" \
- -e "s:#LOCKINGTEST=/tmp:LOCKINGTEST=/tmp:" Makefile.orig > Makefile
-
- if [ -z "`use mbox`" ];
- then
- echo "# Use maildir-style mailbox in user's home directory" > ${S}/procmailrc
- echo 'DEFAULT=$HOME/.maildir/' >> ${S}/procmailrc
- cd ${S}
- patch -p1 <${FILESDIR}/gentoo-maildir.diff
-
- else
- echo '# Use mbox-style mailbox in /var/spool/mail' > ${S}/procmail
- echo 'DEFAULT=/var/spool/mail/$LOGNAME' >> ${S}/procmailrc
- fi
-
- 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
-
- insinto /etc
- doins procmailrc
-
- docinto examples
- dodoc examples/*
-}
-