diff options
author | Ben Lutgens <blutgens@gentoo.org> | 2001-08-28 22:32:13 +0000 |
---|---|---|
committer | Ben Lutgens <blutgens@gentoo.org> | 2001-08-28 22:32:13 +0000 |
commit | e52f1ff85a0049122c7294f402fe0259d74016ce (patch) | |
tree | a2ab89d5ac4d18bc3b29063f9733df537022e02c /net-mail/procmail | |
parent | fixing digest for fixed archive (diff) | |
download | historical-e52f1ff85a0049122c7294f402fe0259d74016ce.tar.gz historical-e52f1ff85a0049122c7294f402fe0259d74016ce.tar.bz2 historical-e52f1ff85a0049122c7294f402fe0259d74016ce.zip |
added new category x11-misc and updated portage.py to reflect that.
changed "try make" to "make || die" in xinetd.
The rest got moved out of incomming and into main tree. fakeidentd has a shitty init script, and leafnode don't have one at
all yet.
Diffstat (limited to 'net-mail/procmail')
-rw-r--r-- | net-mail/procmail/files/digest-procmail-3.21 | 1 | ||||
-rw-r--r-- | net-mail/procmail/procmail-3.21.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/net-mail/procmail/files/digest-procmail-3.21 b/net-mail/procmail/files/digest-procmail-3.21 new file mode 100644 index 000000000000..4179aa89d137 --- /dev/null +++ b/net-mail/procmail/files/digest-procmail-3.21 @@ -0,0 +1 @@ +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 new file mode 100644 index 000000000000..5171c373c77c --- /dev/null +++ b/net-mail/procmail/procmail-3.21.ebuild @@ -0,0 +1,48 @@ +# 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/* +} + |