diff options
-rw-r--r-- | net-mail/exim/ChangeLog | 12 | ||||
-rw-r--r-- | net-mail/exim/exim-4.04-r1.ebuild | 8 |
2 files changed, 13 insertions, 7 deletions
diff --git a/net-mail/exim/ChangeLog b/net-mail/exim/ChangeLog index 822eeccbd552..7d6c6ecae007 100644 --- a/net-mail/exim/ChangeLog +++ b/net-mail/exim/ChangeLog @@ -1,33 +1,35 @@ # ChangeLog for net-mail/exim # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/ChangeLog,v 1.4 2002/04/19 02:21:34 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/ChangeLog,v 1.5 2002/08/15 20:04:41 raker Exp $ + +*exim-4.04-r1 (15 Aug 2002) + + 15 Aug 2002; Nick Hadaway <raker@gentoo.org> exim-4.04-r1.ebuild : + Updated ebuild to add LOOKUP_DSEARCH support. This allows more + functionality to exim with virual hosts. *exim-3.36-r1 (18 Apr 2002) 18 Apr 2002; Ryan Phillips <rphillips@gentoo.org> exim-3.36-r1.ebuild files/digest-exim-3.36-r1 : - Updated due to security exploit in exim-3.34 *exim-3.34-r2 (15 Apr 2002) 15 Apr 2002; Seemant Kulleen <seemant@gentoo.org> exim-3.34-r2.ebuild files/digest-exim-3.34-r2 : - Updated the USE flags from mta-ldap, mta-tls and mta-mysql to the more general and widely used ldap, ssl and mysql flags respectively. *exim-3.34-r1 (1 Apr 2002) 1 Apr 2002; Grant Goodyear <g2boojum@gentoo.org> : - Applied jnelson patches (bug #1444) to solve "missing exim binary" problem. *exim-3.34 (1 Feb 2002) 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - Added initial ChangeLog which should be updated whenever the package is updated in any way. This changelog is targetted to users. This means that the comments should well explained and written in clean English. The details about diff --git a/net-mail/exim/exim-4.04-r1.ebuild b/net-mail/exim/exim-4.04-r1.ebuild index 5d6e22e14e8a..c5abf4271157 100644 --- a/net-mail/exim/exim-4.04-r1.ebuild +++ b/net-mail/exim/exim-4.04-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Updated to exim-4 by Ben Lutgens <lamer@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/exim-4.04-r1.ebuild,v 1.5 2002/08/14 12:05:25 murphy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/exim-4.04-r1.ebuild,v 1.6 2002/08/15 20:04:41 raker Exp $ S=${WORKDIR}/${P} DESCRIPTION="A highly configurable, drop-in replacement for sendmail" @@ -90,9 +90,13 @@ src_unpack() { sed -e "s:# LOOKUP_MYSQL=yes:LOOKUP_MYSQL=yes:" \ -e "s:# LOOKUP_LIBS=-L/usr/local/lib -lldap -llber -lmysqlclient -lpq:LOOKUP_LIBS=-L/usr/lib -lldap -llber -lmysqlclient -lpq:" Local/Makefile.tmp >| Local/Makefile fi + cat Makefile | sed -e 's/^buildname=.*/buildname=exim-gentoo/g' > Makefile.gentoo && mv -f Makefile.gentoo Makefile -} + # uncomment LOOKUP_DSEARCH + cp Local/Makefile Local/Makefile.tmp + sed -e "s:# LOOKUP_DSEARCH=yes:LOOKUP_DSEARCH=yes:" Local/Makefile.tmp >| Local/Makefile +} src_compile() { make || die |