diff options
author | 2004-06-10 21:15:20 +0000 | |
---|---|---|
committer | 2004-06-10 21:15:20 +0000 | |
commit | aff6eedf4dd0aed99150c9845a31e38429832e19 (patch) | |
tree | 31344375b12ea7fa12ee91eae55eb9a70629b384 /net-mail/cyrus-imapd/cyrus-imapd-2.2.3.ebuild | |
parent | fixed typo in warning (Manifest recommit) (diff) | |
download | gentoo-2-aff6eedf4dd0aed99150c9845a31e38429832e19.tar.gz gentoo-2-aff6eedf4dd0aed99150c9845a31e38429832e19.tar.bz2 gentoo-2-aff6eedf4dd0aed99150c9845a31e38429832e19.zip |
Fix use invocation, and fix nasty typo [ use ssl ] (somebody accidentally used normal single quotes instead of back-quotes, so that condition would always be true)
Diffstat (limited to 'net-mail/cyrus-imapd/cyrus-imapd-2.2.3.ebuild')
-rw-r--r-- | net-mail/cyrus-imapd/cyrus-imapd-2.2.3.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net-mail/cyrus-imapd/cyrus-imapd-2.2.3.ebuild b/net-mail/cyrus-imapd/cyrus-imapd-2.2.3.ebuild index 95bb006aa86a..7a8321f1ef47 100644 --- a/net-mail/cyrus-imapd/cyrus-imapd-2.2.3.ebuild +++ b/net-mail/cyrus-imapd/cyrus-imapd-2.2.3.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/cyrus-imapd/cyrus-imapd-2.2.3.ebuild,v 1.6 2004/05/30 08:30:18 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imapd/cyrus-imapd-2.2.3.ebuild,v 1.7 2004/06/10 21:15:20 agriffis Exp $ inherit eutils ssl-cert @@ -35,12 +35,12 @@ src_unpack() { unpack ${A} && cd "${S}" # Add drac database support. - if [ "`use drac`" ] ; then + if use drac ; then epatch "${S}/contrib/drac_auth.patch" fi # Add libwrap defines as we don't have a dynamicly linked library. - if [ "`use tcpd`" ] ; then + if use tcpd ; then epatch "${FILESDIR}/${PN}-libwrap.patch" fi @@ -119,12 +119,12 @@ src_install() { exeinto /etc/init.d newexe "${FILESDIR}/cyrus.rc6" cyrus - if [ "`use pam`" ] ; then + if use pam ; then insinto /etc/pam.d newins "${FILESDIR}/imap.pam" imap fi - if [ "`use ssl`" ] ; then + if use ssl ; then SSL_ORGANIZATION="${SSL_ORGANIZATION:-Cyrus IMAP Server}" insinto /etc/ssl/cyrus docert server |