diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-08-17 02:34:05 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-08-17 02:34:05 +0000 |
commit | d3469ccbf905542ff213af673d67efe77da80198 (patch) | |
tree | b922485880001bd3267d69eb7df8d68acd361c11 /net-mail | |
parent | updated the license for dev-lang/clean (diff) | |
download | historical-d3469ccbf905542ff213af673d67efe77da80198.tar.gz historical-d3469ccbf905542ff213af673d67efe77da80198.tar.bz2 historical-d3469ccbf905542ff213af673d67efe77da80198.zip |
Updated ebuild to include support for the mailsubdir by default set to
~/mail. ALMOST added support for the Y4K leap year fix...
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/uw-imap/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/uw-imap/uw-imap-2001a-r2.ebuild | 11 |
2 files changed, 15 insertions, 4 deletions
diff --git a/net-mail/uw-imap/ChangeLog b/net-mail/uw-imap/ChangeLog index 9d21799cf406..9ce6b0f31719 100644 --- a/net-mail/uw-imap/ChangeLog +++ b/net-mail/uw-imap/ChangeLog @@ -1,8 +1,14 @@ # ChangeLog for net-mail/uw-imap # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.3 2002/06/07 02:01:38 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.4 2002/08/17 02:34:05 raker Exp $ *uw-imap-2001a-r2 (6 Jun 2002) + + 16 Aug 2002; Nick Hadaway <raker@gentoo.org> uw-imap-2001a-r2.ebuild : + Added support for the default mailsubdir to be ~/mail. Almost + added in support for the Y4K leap year bug fix, just in case the + maintainer of uw-imap disappears for a millenia or two. + 6 Jun 2002; Donny Davies <woodchip@gentoo.org> uw-imap-2001a-r2.ebuild, uw-imap.pam, uw-imap.pam-system-auth, uw-imap.xinetd, uw-imaps.xinetd, uw-ipop2.xinetd, uw-ipop3.xinetd : diff --git a/net-mail/uw-imap/uw-imap-2001a-r2.ebuild b/net-mail/uw-imap/uw-imap-2001a-r2.ebuild index 0b4f44109e2c..eb09ec482744 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.3 2002/08/14 12:05:25 murphy Exp $ +# $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 $ PN0=imap S=${WORKDIR}/${PN0}-${PV} @@ -24,8 +24,13 @@ src_unpack() { src_compile() { if use ssl; then - make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix SSLDIR=/usr/ssl \ - SSLINCLUDE=/usr/include/openssl || die + make lnp SPECIALAUTHENTICATORS=ssl \ + SSLTYPE=unix SSLDIR=/usr/ssl \ + SSLINCLUDE=/usr/include/openssl \ + EXTRACFLAGS=-DMAILSUBDIR="mail" || die + # I was SO tempted to add -DY4KBUGFIX to the EXTRACFLAGS... + # but I didn't. S0meday s00n. + local i for i in imapd ipop3d; do umask 077 |