diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 16:30:16 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 16:30:16 +0000 |
commit | 0796276634a06d27896d7e09dbc58b8b54c69709 (patch) | |
tree | a0df3eeb6773851f3ba19418910a45c61762c744 /mail-client | |
parent | Initial import (diff) | |
download | gentoo-2-0796276634a06d27896d7e09dbc58b8b54c69709.tar.gz gentoo-2-0796276634a06d27896d7e09dbc58b8b54c69709.tar.bz2 gentoo-2-0796276634a06d27896d7e09dbc58b8b54c69709.zip |
QA - fix use invocation, and correct some errors in the process. [ use spell
-a ! use gtk2 ] generates errors in bash. Somebody wasn't paying any attention
when they committed that one.
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/sylpheed-claws/ChangeLog | 8 | ||||
-rw-r--r-- | mail-client/sylpheed-claws/sylpheed-claws-0.9.5-r1.ebuild | 8 |
2 files changed, 11 insertions, 5 deletions
diff --git a/mail-client/sylpheed-claws/ChangeLog b/mail-client/sylpheed-claws/ChangeLog index bb652a8e7a95..4382f0c450b0 100644 --- a/mail-client/sylpheed-claws/ChangeLog +++ b/mail-client/sylpheed-claws/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-mail/sylpheed-claws # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws/ChangeLog,v 1.3 2004/06/04 21:56:48 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws/ChangeLog,v 1.4 2004/06/24 16:30:16 agriffis Exp $ + + 24 Jun 2004; Aron Griffis <agriffis@gentoo.org> + sylpheed-claws-0.9.5-r1.ebuild: + QA - fix use invocation, and correct some errors in the process. [ use spell + -a ! use gtk2 ] generates errors in bash. Somebody wasn't paying any attention + when they committed that one. 04 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> sylpheed-claws-0.9.10.ebuild: diff --git a/mail-client/sylpheed-claws/sylpheed-claws-0.9.5-r1.ebuild b/mail-client/sylpheed-claws/sylpheed-claws-0.9.5-r1.ebuild index 909b17fd1da1..ca34e2d0a440 100644 --- a/mail-client/sylpheed-claws/sylpheed-claws-0.9.5-r1.ebuild +++ b/mail-client/sylpheed-claws/sylpheed-claws-0.9.5-r1.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/mail-client/sylpheed-claws/sylpheed-claws-0.9.5-r1.ebuild,v 1.1 2004/05/30 03:05:56 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws/sylpheed-claws-0.9.5-r1.ebuild,v 1.2 2004/06/24 16:30:16 agriffis Exp $ IUSE="nls gnome gtk2 xface gtkhtml crypt spell imlib ssl ldap ipv6 pda clamav pdflib" @@ -84,7 +84,7 @@ src_compile() { && myconf="${myconf} --enable-imlib" \ || myconf="${myconf} --disable-imlib" - [ use spell -a ! use gtk2 ] \ + use spell && ! use gtk2 \ && myconf="${myconf} --enable-aspell" \ || myconf="${myconf} --disable-aspell" @@ -125,7 +125,7 @@ src_compile() { emake || die # build the ghostscript-viewer plugin - if [ `use pdflib` -a -z `use gtk2` ]; then + if use pdflib && ! use gtk2; then cd ${S2} econf \ --with-sylpheed-dir=${S} || die @@ -161,7 +161,7 @@ src_install() { doexe launch_firebird tb2sylpheed update-po uudec # install the ghostscipt-viewer plugin - if [ `use pdflib` -a -z `use gtk2` ]; then + if use pdflib && ! use gtk2; then cd ${S2} make plugindir=${D}/usr/lib/${PN}/plugins install || die docinto ${MY_GS} |