diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-08-18 00:22:47 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-08-18 00:22:47 +0000 |
commit | 8681c336334c9b9acfb3c74dcfeb1a2d9b6401ef (patch) | |
tree | d96777bd32a7342e6834305e2043b01c087f021e /net-mail/uw-imap/uw-imap-2001a-r2.ebuild | |
parent | Updated ChangeLog. (diff) | |
download | historical-8681c336334c9b9acfb3c74dcfeb1a2d9b6401ef.tar.gz historical-8681c336334c9b9acfb3c74dcfeb1a2d9b6401ef.tar.bz2 historical-8681c336334c9b9acfb3c74dcfeb1a2d9b6401ef.zip |
Reverted mailsubdir change as it may break many client installs.
Changed login timeout from 3 minutes to 1 minute. Updated SSL
configuration options. Disabled reverse dns lookups.
Diffstat (limited to 'net-mail/uw-imap/uw-imap-2001a-r2.ebuild')
-rw-r--r-- | net-mail/uw-imap/uw-imap-2001a-r2.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net-mail/uw-imap/uw-imap-2001a-r2.ebuild b/net-mail/uw-imap/uw-imap-2001a-r2.ebuild index eb09ec482744..630e1394021c 100644 --- a/net-mail/uw-imap/uw-imap-2001a-r2.ebuild +++ b/net-mail/uw-imap/uw-imap-2001a-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2001a-r2.ebuild,v 1.4 2002/08/17 02:34:05 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2001a-r2.ebuild,v 1.5 2002/08/18 00:22:47 raker Exp $ PN0=imap S=${WORKDIR}/${PN0}-${PV} @@ -20,14 +20,14 @@ src_unpack() { cd ${S}/src/osdep/unix/ sed "s:-g -fno-omit-frame-pointer -O6:${CFLAGS}:" Makefile > Makefile.bak mv Makefile.bak Makefile + cd ${S} + patch -p1 < ${FILESDIR}/gentoo.diff || die } src_compile() { if use ssl; then - make lnp SPECIALAUTHENTICATORS=ssl \ - SSLTYPE=unix SSLDIR=/usr/ssl \ - SSLINCLUDE=/usr/include/openssl \ - EXTRACFLAGS=-DMAILSUBDIR="mail" || die + cd ${S} + make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix || die # I was SO tempted to add -DY4KBUGFIX to the EXTRACFLAGS... # but I didn't. S0meday s00n. @@ -54,7 +54,7 @@ EOF umask 022 done else - make lnp || die + make lnp EXTRACFLAGS=-DMAILSUBDIR=\"mail\" || die fi } |