diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-05-23 00:40:37 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-05-23 00:40:37 +0000 |
commit | 035f7da111b6a257602213a5756f0ff36ee3af40 (patch) | |
tree | 2c96f30384e9b31799414af4d9365dab1eba5898 /net-analyzer | |
parent | Remove old. (diff) | |
download | gentoo-2-035f7da111b6a257602213a5756f0ff36ee3af40.tar.gz gentoo-2-035f7da111b6a257602213a5756f0ff36ee3af40.tar.bz2 gentoo-2-035f7da111b6a257602213a5756f0ff36ee3af40.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/postal/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/postal/postal-0.70.ebuild | 49 |
2 files changed, 5 insertions, 51 deletions
diff --git a/net-analyzer/postal/ChangeLog b/net-analyzer/postal/ChangeLog index e2c7f0036545..6e5c65a75cdd 100644 --- a/net-analyzer/postal/ChangeLog +++ b/net-analyzer/postal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/postal -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/postal/ChangeLog,v 1.10 2014/08/10 21:00:36 slyfox Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/postal/ChangeLog,v 1.11 2015/05/23 00:40:37 mrueg Exp $ + + 23 May 2015; Manuel Rüger <mrueg@gentoo.org> -postal-0.70.ebuild: + Remove old. 10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> postal-0.70.ebuild, postal-0.72.ebuild: diff --git a/net-analyzer/postal/postal-0.70.ebuild b/net-analyzer/postal/postal-0.70.ebuild deleted file mode 100644 index 5d65c3f515ce..000000000000 --- a/net-analyzer/postal/postal-0.70.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/postal/postal-0.70.ebuild,v 1.4 2014/08/10 21:00:36 slyfox Exp $ - -inherit autotools eutils - -DESCRIPTION="SMTP and POP mailserver benchmark. Supports SSL, randomized user accounts and more" -HOMEPAGE="http://www.coker.com.au/postal/" -SRC_URI="http://www.coker.com.au/postal/${P}.tgz" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" -IUSE="ssl gnutls" -#ssl is an alias for openssl. If both ssl and gnutls are enabled, automagic will -#enable only gnutls. -DEPEND="ssl? ( - !gnutls? ( >=dev-libs/openssl-0.9.8g ) - gnutls? ( >=net-libs/gnutls-2.2.2 ) - )" -RDEPEND="${DEPEND}" - -pkg_setup() { - myconf=" --disable-stripping - $(use_enable ssl openssl) - $(use_enable gnutls gnutls)" - -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/01_${P}-gcc43.patch" - epatch "${FILESDIR}/02_${P}-nossl.patch" - epatch "${FILESDIR}/03_${P}-c++0x-integrated.patch" - epatch "${FILESDIR}/04_${P}-warnings.patch" - epatch "${FILESDIR}/05_${P}-openssl-1.patch" - epatch "${FILESDIR}/06_${P}-ldflags.patch" - eautoreconf -} - -src_compile() { - econf ${myconf} || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - -} |