diff options
Diffstat (limited to 'net-analyzer/postal')
-rw-r--r-- | net-analyzer/postal/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/postal/postal-0.62.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-analyzer/postal/ChangeLog b/net-analyzer/postal/ChangeLog index 55a8c1ef5d6f..9ae316de448d 100644 --- a/net-analyzer/postal/ChangeLog +++ b/net-analyzer/postal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/postal # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/postal/ChangeLog,v 1.1 2005/01/08 00:35:45 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/postal/ChangeLog,v 1.2 2005/01/08 10:10:55 swegener Exp $ + + 08 Jan 2005; Sven Wegener <swegener@gentoo.org> postal-0.62.ebuild: + Fixed invalid atoms in *DEPEND. *postal-0.62 (08 Jan 2005) diff --git a/net-analyzer/postal/postal-0.62.ebuild b/net-analyzer/postal/postal-0.62.ebuild index 83c127864cef..09c6a50b185f 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.1 2005/01/08 00:35:45 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/postal/postal-0.62.ebuild,v 1.2 2005/01/08 10:10:55 swegener Exp $ DESCRIPTION="SMTP and POP mailserver benchmark - the mad postman. Supports SSL, randomized user accounts and more." HOMEPAGE="http://www.coker.com.au/postal/" @@ -9,10 +9,10 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~sparc ~ppc" IUSE="ssl" -DEPEND="ssl? ( >=openssl-0.9.6b )" +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )" src_compile() { - econf `use_enable ssl` + econf $(use_enable ssl) || die emake || die } |