diff options
author | Michael Hanselmann <hansmi@gentoo.org> | 2005-01-08 16:33:32 +0000 |
---|---|---|
committer | Michael Hanselmann <hansmi@gentoo.org> | 2005-01-08 16:33:32 +0000 |
commit | 02e488c8691dbf6efce3b7210a986a5179bdf3ba (patch) | |
tree | 8fc48c945dfb4625f941edff3b5ad99f5593ca27 /net-analyzer/postal/postal-0.62.ebuild | |
parent | new release (Manifest recommit) (diff) | |
download | gentoo-2-02e488c8691dbf6efce3b7210a986a5179bdf3ba.tar.gz gentoo-2-02e488c8691dbf6efce3b7210a986a5179bdf3ba.tar.bz2 gentoo-2-02e488c8691dbf6efce3b7210a986a5179bdf3ba.zip |
Fixed broken use_enable
Diffstat (limited to 'net-analyzer/postal/postal-0.62.ebuild')
-rw-r--r-- | net-analyzer/postal/postal-0.62.ebuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/net-analyzer/postal/postal-0.62.ebuild b/net-analyzer/postal/postal-0.62.ebuild index 09c6a50b185f..075a3b7073ab 100644 --- a/net-analyzer/postal/postal-0.62.ebuild +++ b/net-analyzer/postal/postal-0.62.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/postal/postal-0.62.ebuild,v 1.2 2005/01/08 10:10:55 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/postal/postal-0.62.ebuild,v 1.3 2005/01/08 16:33:32 hansmi Exp $ DESCRIPTION="SMTP and POP mailserver benchmark - the mad postman. Supports SSL, randomized user accounts and more." HOMEPAGE="http://www.coker.com.au/postal/" @@ -12,7 +12,14 @@ IUSE="ssl" DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )" src_compile() { - econf $(use_enable ssl) || die + myconf= + + if use !ssl; then + # broken configure, use_enable doesn't work right + myconf="${myconf} --disable-ssl" + fi + + econf ${myconf} || die emake || die } |