summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiziano Müller <dev-zero@gentoo.org>2008-02-05 23:43:27 +0000
committerTiziano Müller <dev-zero@gentoo.org>2008-02-05 23:43:27 +0000
commit3d42224619ff9d6f5edeab9e3b0e4545027f7d56 (patch)
tree95e376a48cd4b52540a9d710f6e73c2c49cc244b /dev-cpp/asio
parentversion bump (diff)
downloadgentoo-2-3d42224619ff9d6f5edeab9e3b0e4545027f7d56.tar.gz
gentoo-2-3d42224619ff9d6f5edeab9e3b0e4545027f7d56.tar.bz2
gentoo-2-3d42224619ff9d6f5edeab9e3b0e4545027f7d56.zip
Dropped old version.
(Portage version: 2.1.4.1)
Diffstat (limited to 'dev-cpp/asio')
-rw-r--r--dev-cpp/asio/ChangeLog6
-rw-r--r--dev-cpp/asio/asio-0.3.7.ebuild34
-rw-r--r--dev-cpp/asio/files/asio-0.3.7-recursive_init.patch17
3 files changed, 5 insertions, 52 deletions
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 <dev-zero@gentoo.org>
+ -files/asio-0.3.7-recursive_init.patch, -asio-0.3.7.ebuild:
+ Dropped old version.
05 Feb 2008; Christian Faulhammer <opfer@gentoo.org> 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();
- }
- }
-