diff options
author | Alastair Tse <liquidx@gentoo.org> | 2004-03-23 10:22:30 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2004-03-23 10:22:30 +0000 |
commit | c8f2378837f32f94018d02c97ce125f522d5e178 (patch) | |
tree | 23207c17c0a63dad0b6cfb66e206374b982a654c /net-mail | |
parent | This package has a qt dep, and for mips, qt needs some testing and issues res... (diff) | |
download | historical-c8f2378837f32f94018d02c97ce125f522d5e178.tar.gz historical-c8f2378837f32f94018d02c97ce125f522d5e178.tar.bz2 historical-c8f2378837f32f94018d02c97ce125f522d5e178.zip |
fix amd64 dep and also fix configure flag passing in src_compile for amd64
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/evolution/ChangeLog | 5 | ||||
-rw-r--r-- | net-mail/evolution/Manifest | 4 | ||||
-rw-r--r-- | net-mail/evolution/evolution-1.4.6.ebuild | 6 |
3 files changed, 9 insertions, 6 deletions
diff --git a/net-mail/evolution/ChangeLog b/net-mail/evolution/ChangeLog index 9ba2b5508205..97806073223f 100644 --- a/net-mail/evolution/ChangeLog +++ b/net-mail/evolution/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-mail/evolution # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/evolution/ChangeLog,v 1.92 2004/03/22 10:15:50 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/evolution/ChangeLog,v 1.93 2004/03/23 10:22:30 liquidx Exp $ + + 23 Mar 2004; Alastair Tse <liquidx@gentoo.org> evolution-1.4.6.ebuild: + fix amd64 dep and also fix configure flag passing in src_compile for amd64 *evolution-1.4.6 (22 Mar 2004) diff --git a/net-mail/evolution/Manifest b/net-mail/evolution/Manifest index 29ea99291b2e..ed108eb18a13 100644 --- a/net-mail/evolution/Manifest +++ b/net-mail/evolution/Manifest @@ -1,9 +1,9 @@ -MD5 81c09f42d102cd86501597c1209355c7 ChangeLog 14934 +MD5 a0d8c65d2cb953706a70238303360906 ChangeLog 15085 MD5 93de36abe29ac7efb2ce14a7d9a2055c evolution-1.2.3.ebuild 5918 MD5 50d77498b1d4cda6fe831dc8619d132e evolution-1.2.4.ebuild 6387 MD5 ab88d1bec9aa5bd6fc5b82a05ef0acf7 evolution-1.4.5.ebuild 5735 MD5 80850151bae2bd61c4ac796f83656ef6 metadata.xml 217 -MD5 9684b447393e892695d6b6685b3b57a8 evolution-1.4.6.ebuild 5564 +MD5 11988b8f44bd7ef38b919401cb0f4e8f evolution-1.4.6.ebuild 5582 MD5 f17beebbd2d9ff5d49f48352be1b359c files/digest-evolution-1.2.3 131 MD5 3137288dd17e357d0972dab00e4f6b6d files/digest-evolution-1.2.4 1230 MD5 49463c08f32ee1df0970196b6c4cef2b files/digest-evolution-1.4.5 132 diff --git a/net-mail/evolution/evolution-1.4.6.ebuild b/net-mail/evolution/evolution-1.4.6.ebuild index 4522d6eb26f8..08130095821f 100644 --- a/net-mail/evolution/evolution-1.4.6.ebuild +++ b/net-mail/evolution/evolution-1.4.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/evolution/evolution-1.4.6.ebuild,v 1.1 2004/03/22 10:15:50 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/evolution/evolution-1.4.6.ebuild,v 1.2 2004/03/23 10:22:30 liquidx Exp $ # kde before gnome2, otherwise kde_src_install will override gnome2_src_install use kde && inherit kde @@ -47,7 +47,7 @@ RDEPEND=">=gnome-extra/libgtkhtml-3.0.10 ) ) ssl? ( !mozilla? ( >=dev-libs/openssl-0.9.5 ) ) ldap? ( >=net-nds/openldap-2.0 ) - amd64? ( ) : ( kerberos? ( >=app-crypt/mit-krb5-1.2.5 ) ) + !amd64? ( kerberos? ( >=app-crypt/mit-krb5-1.2.5 ) ) doc? ( >=app-text/scrollkeeper-0.3.10-r1 )" DEPEND="${RDEPEND} @@ -125,7 +125,7 @@ src_compile() { && myconf="${myconf} --with-openldap=yes --with-static-ldap=no" \ || myconf="${myconf} --with-openldap=no" - use kerberos \ + [ `use kerberos` -a ! `use amd64` ] \ && myconf="${myconf} --with-krb5=/usr" \ || myconf="${myconf} --without-krb5" |