diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-01-08 10:10:55 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-01-08 10:10:55 +0000 |
commit | 5c29cf14fc3d121c67d7d28e686ef2576513a58a (patch) | |
tree | f8d558a27b95709c4f62823f7605ccace72eb6bd /net-analyzer/postal | |
parent | version bump as per bug #75193 (diff) | |
download | historical-5c29cf14fc3d121c67d7d28e686ef2576513a58a.tar.gz historical-5c29cf14fc3d121c67d7d28e686ef2576513a58a.tar.bz2 historical-5c29cf14fc3d121c67d7d28e686ef2576513a58a.zip |
Fixed invalid atoms in *DEPEND.
Diffstat (limited to 'net-analyzer/postal')
-rw-r--r-- | net-analyzer/postal/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/postal/Manifest | 14 | ||||
-rw-r--r-- | net-analyzer/postal/postal-0.62.ebuild | 6 |
3 files changed, 19 insertions, 6 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/Manifest b/net-analyzer/postal/Manifest index e77d76638c0a..b2c28ac18d7c 100644 --- a/net-analyzer/postal/Manifest +++ b/net-analyzer/postal/Manifest @@ -1,4 +1,14 @@ -MD5 274ba62816ccd5fe31e95af43253c30a postal-0.62.ebuild 676 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 11279f1b55a775c537384083edb53a5b postal-0.62.ebuild 695 +MD5 d80ff38a38ed0496b815077a36a7da73 ChangeLog 493 MD5 2169405288c432c981b23bc7965d15c9 metadata.xml 162 -MD5 1b923b352cfa97a1b38952d9afe56e25 ChangeLog 386 MD5 a58939d8e822b8c41dbd21436b29552f files/digest-postal-0.62 59 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.9.10 (GNU/Linux) + +iD8DBQFB37G4I1lqEGTUzyQRAkQpAJ47HwquMoB3FZoXXYrGgTavKAzSnwCgzaxy +Wts0OAYsRS3bJsCAv7yRO7I= +=lqU+ +-----END PGP SIGNATURE----- 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 } |