summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2005-01-08 10:10:55 +0000
committerSven Wegener <swegener@gentoo.org>2005-01-08 10:10:55 +0000
commit7bc39ac091112a5e46294496f394fb2a2099e6a4 (patch)
treee31f7bf5e39ac3de03dadb75e5ebf0cba0d49f0e /net-analyzer/postal
parentversion bump as per bug #75193 (Manifest recommit) (diff)
downloadgentoo-2-7bc39ac091112a5e46294496f394fb2a2099e6a4.tar.gz
gentoo-2-7bc39ac091112a5e46294496f394fb2a2099e6a4.tar.bz2
gentoo-2-7bc39ac091112a5e46294496f394fb2a2099e6a4.zip
Fixed invalid atoms in *DEPEND.
Diffstat (limited to 'net-analyzer/postal')
-rw-r--r--net-analyzer/postal/ChangeLog5
-rw-r--r--net-analyzer/postal/postal-0.62.ebuild6
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
}