From 3d42224619ff9d6f5edeab9e3b0e4545027f7d56 Mon Sep 17 00:00:00 2001 From: Tiziano Müller Date: Tue, 5 Feb 2008 23:43:27 +0000 Subject: Dropped old version. (Portage version: 2.1.4.1) --- dev-cpp/asio/ChangeLog | 6 +++- dev-cpp/asio/asio-0.3.7.ebuild | 34 ---------------------- dev-cpp/asio/files/asio-0.3.7-recursive_init.patch | 17 ----------- 3 files changed, 5 insertions(+), 52 deletions(-) delete mode 100644 dev-cpp/asio/asio-0.3.7.ebuild delete mode 100644 dev-cpp/asio/files/asio-0.3.7-recursive_init.patch (limited to 'dev-cpp/asio') diff --git a/dev-cpp/asio/ChangeLog b/dev-cpp/asio/ChangeLog index cae5fe9992d0..56d69ca37aba 100644 --- a/dev-cpp/asio/ChangeLog +++ b/dev-cpp/asio/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-cpp/asio # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.13 2008/02/05 23:17:57 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.14 2008/02/05 23:43:27 dev-zero Exp $ + + 05 Feb 2008; Tiziano Müller + -files/asio-0.3.7-recursive_init.patch, -asio-0.3.7.ebuild: + Dropped old version. 05 Feb 2008; Christian Faulhammer asio-0.3.9.ebuild: stable x86, bug 209002 diff --git a/dev-cpp/asio/asio-0.3.7.ebuild b/dev-cpp/asio/asio-0.3.7.ebuild deleted file mode 100644 index 7f6b6f5d13b6..000000000000 --- a/dev-cpp/asio/asio-0.3.7.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-0.3.7.ebuild,v 1.4 2007/02/11 20:29:18 armin76 Exp $ - -inherit eutils - -KEYWORDS="~amd64 x86" - -DESCRIPTION="asynchronous network library" -HOMEPAGE="http://asio.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" -LICENSE="Boost-1.0" -SLOT="0" -IUSE="doc ssl" - -DEPEND="ssl? ( dev-libs/openssl ) - >=dev-libs/boost-1.33.0" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-recursive_init.patch" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - dodoc README - - if use doc ; then - dohtml -r doc/* - fi -} diff --git a/dev-cpp/asio/files/asio-0.3.7-recursive_init.patch b/dev-cpp/asio/files/asio-0.3.7-recursive_init.patch deleted file mode 100644 index 20f5e2aaba7a..000000000000 --- a/dev-cpp/asio/files/asio-0.3.7-recursive_init.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- ./include/asio/ssl/detail/openssl_init.hpp.orig 2006-11-15 00:10:08.000000000 +0100 -+++ ./include/asio/ssl/detail/openssl_init.hpp 2006-11-15 00:10:38.000000000 +0100 -@@ -45,13 +45,13 @@ - { - ::SSL_library_init(); - ::SSL_load_error_strings(); -+ ::OpenSSL_add_ssl_algorithms(); - - mutexes_.resize(::CRYPTO_num_locks()); - for (size_t i = 0; i < mutexes_.size(); ++i) - mutexes_[i].reset(new asio::detail::mutex); - ::CRYPTO_set_locking_callback(&do_init::openssl_locking_func); - -- ::OpenSSL_add_ssl_algorithms(); - } - } - -- cgit v1.2.3-65-gdbad