diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-09-03 09:59:02 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-09-03 09:59:02 +0000 |
commit | 15fb66e5621ac122418f6f16d555756c0d372717 (patch) | |
tree | d8b5a562e1610a4d8a071bf9bd66915af6d881f4 /net-mail | |
parent | apply Brandy's patch for bug #27517 (diff) | |
download | historical-15fb66e5621ac122418f6f16d555756c0d372717.tar.gz historical-15fb66e5621ac122418f6f16d555756c0d372717.tar.bz2 historical-15fb66e5621ac122418f6f16d555756c0d372717.zip |
add fix for bug #27528, and add a few comments about the last fix too
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/courier-imap/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/courier-imap/Manifest | 4 | ||||
-rw-r--r-- | net-mail/courier-imap/courier-imap-2.1.1.ebuild | 9 |
3 files changed, 13 insertions, 6 deletions
diff --git a/net-mail/courier-imap/ChangeLog b/net-mail/courier-imap/ChangeLog index cde6c133b72c..a46c079ca60c 100644 --- a/net-mail/courier-imap/ChangeLog +++ b/net-mail/courier-imap/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/courier-imap # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/courier-imap/ChangeLog,v 1.41 2003/09/03 09:49:34 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/courier-imap/ChangeLog,v 1.42 2003/09/03 09:58:59 robbat2 Exp $ + + 03 Sep 2003; Robin H. Johnson <robbat2@gentoo.org> + courier-imap-2.1.1.ebuild: + add fix for bug #27528, and add a few comments about the last fix too 03 Sep 2003; Robin H. Johnson <robbat2@gentoo.org> courier-imap-2.1.1.ebuild, files/courier-imap-2.1.1-db40vs41.patch: diff --git a/net-mail/courier-imap/Manifest b/net-mail/courier-imap/Manifest index d01201dede77..dd86dea893cf 100644 --- a/net-mail/courier-imap/Manifest +++ b/net-mail/courier-imap/Manifest @@ -4,8 +4,8 @@ MD5 c6bc519510721ac4af838457798367e3 courier-imap-1.6.2-r1.ebuild 4813 MD5 e399aedb51a23ab288d5f2d2d2be868c courier-imap-1.7.3.ebuild 6856 MD5 7a974af8a51e0f760d3fcb108f349fdb courier-imap-1.7.0.ebuild 4954 MD5 3ceeec6646001e4da5a2e32051f19267 courier-imap-1.7.2.ebuild 6696 -MD5 ddbe48bb03f1434f3c65d0e7e0d2d03f courier-imap-2.1.1.ebuild 6670 -MD5 6d23b67c64d033f550ccdd0578cfe5ed ChangeLog 7279 +MD5 0369925937ff6d863eaa85a1c960fa94 courier-imap-2.1.1.ebuild 6828 +MD5 a074046c78e24dede9be1793b5b95b0d ChangeLog 7434 MD5 6b964abdc013cf2bb64040e8e33215ae metadata.xml 242 MD5 fba567e34491b014536e1ee20da7bdc9 courier-imap-2.0.0.ebuild 6598 MD5 f959e38175d1fd8f8e7a977a14f7265f files/gentoo-pop3d-1.7.3-r1.rc 1018 diff --git a/net-mail/courier-imap/courier-imap-2.1.1.ebuild b/net-mail/courier-imap/courier-imap-2.1.1.ebuild index 3ce65c429b18..c76b64d6ba41 100644 --- a/net-mail/courier-imap/courier-imap-2.1.1.ebuild +++ b/net-mail/courier-imap/courier-imap-2.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/courier-imap/courier-imap-2.1.1.ebuild,v 1.2 2003/09/03 09:49:34 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/courier-imap/courier-imap-2.1.1.ebuild,v 1.3 2003/09/03 09:58:59 robbat2 Exp $ DESCRIPTION="An IMAP daemon designed specifically for maildirs" SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" @@ -35,11 +35,10 @@ src_unpack() { unpack ${A} # patch to fix db4.0 detection as db4.1 + # bug #27517, patch needs to go upstream epatch ${FILESDIR}/courier-imap-2.1.1-db40vs41.patch cd ${S} - - # explicitly use db3 over db4 if use berkdb; then sed -i -e 's,-ldb,-ldb-3.2,g' configure @@ -92,6 +91,10 @@ src_compile() { CXXFLAGS=`echo ${CXXFLAGS} | xargs` LDFLAGS=`echo ${LDFLAGS} | xargs` + # fix for bug #27528 + # they really should use a better way to detect redhat + myconf="${myconf} --without-redhat" + # Do the actual build now LDFLAGS="${LDFLAGS}" econf \ --disable-root-check \ |