From 02852d00c62091127bbca8889720845c1db78a05 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Mon, 14 Aug 2017 09:36:31 +0200 Subject: net-p2p/dclib: Remove last-rited pkg, #618950 --- net-p2p/dclib/Manifest | 1 - net-p2p/dclib/dclib-0.3.23.ebuild | 38 ----------------- net-p2p/dclib/files/dclib-0.3.23-asneeded.patch | 16 -------- net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch | 52 ------------------------ net-p2p/dclib/metadata.xml | 8 ---- 5 files changed, 115 deletions(-) delete mode 100644 net-p2p/dclib/Manifest delete mode 100644 net-p2p/dclib/dclib-0.3.23.ebuild delete mode 100644 net-p2p/dclib/files/dclib-0.3.23-asneeded.patch delete mode 100644 net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch delete mode 100644 net-p2p/dclib/metadata.xml (limited to 'net-p2p') diff --git a/net-p2p/dclib/Manifest b/net-p2p/dclib/Manifest deleted file mode 100644 index 0e023a2c13c0..000000000000 --- a/net-p2p/dclib/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST dclib-0.3.23.tar.bz2 517251 SHA256 757b67cb1158a93fd826ef358ec094f59ba9dca0dde94a1d7325833f222e4dd0 SHA512 5e5dfa3875a26d8b55af2434dc4cb351c3446ec4a003082dad699bd22e1f0e108d19ae913e09894d5234c3b359dc1f6eb74dbbe34edb87bb20927b8fecb4502e WHIRLPOOL e898f24fc33df7f6f2b5933673a36fb6dd1ece4b68986fe92a1827c489e86a8e7fb7cf051d1372df99a51b0f6505989aa44cf63fcc2359243160028c2e8e46ab diff --git a/net-p2p/dclib/dclib-0.3.23.ebuild b/net-p2p/dclib/dclib-0.3.23.ebuild deleted file mode 100644 index d8b67d59aead..000000000000 --- a/net-p2p/dclib/dclib-0.3.23.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 -inherit autotools eutils - -DESCRIPTION="DirectConnect client library" -HOMEPAGE="https://sourceforge.net/projects/wxdcgui" -SRC_URI="mirror://sourceforge/wxdcgui/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 hppa ppc ppc64 x86" -IUSE="socks5 ssl" - -DEPEND="app-arch/bzip2 - sys-libs/zlib - dev-libs/libxml2 - socks5? ( net-proxy/dante ) - ssl? ( dev-libs/openssl )" - -src_prepare() { - epatch "${FILESDIR}"/${P}-asneeded.patch \ - "${FILESDIR}"/${P}-openssl-1.patch - eautoreconf -} - -src_configure() { - econf \ - --disable-dependency-tracking \ - $(use_enable socks5 socks) \ - $(use_enable ssl) -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README TODO -} diff --git a/net-p2p/dclib/files/dclib-0.3.23-asneeded.patch b/net-p2p/dclib/files/dclib-0.3.23-asneeded.patch deleted file mode 100644 index d3634c424c2e..000000000000 --- a/net-p2p/dclib/files/dclib-0.3.23-asneeded.patch +++ /dev/null @@ -1,16 +0,0 @@ -Changing order allows ACX_PHTREAD to find -lthread -before trying to use -pthread - -http://bugs.gentoo.org/show_bug.cgi?id=282426 - ---- m4/acx_pthread.m4 -+++ m4/acx_pthread.m4 -@@ -123,7 +123,7 @@ - # which indicates that we try without any flags at all, and "pthread-config" - # which is a program returning the flags for the Pth emulation library. - --acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" -+acx_pthread_flags="pthreads none -Kthread -kthread lthread pthread -pthread -pthreads -mthreads --thread-safe -mt pthread-config" - - # The ordering *is* (sometimes) important. Some notes on the - # individual items follow: diff --git a/net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch b/net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch deleted file mode 100644 index f8b4a4bc2af2..000000000000 --- a/net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch +++ /dev/null @@ -1,52 +0,0 @@ -http://bugs.gentoo.org/330291 - ---- dclib/core/cssl.cpp -+++ dclib/core/cssl.cpp -@@ -86,7 +86,11 @@ - /** */ - SSL_CTX * CSSL::InitClientCTX() - { -+ #if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_METHOD *method; -+ #else - SSL_METHOD *method; -+ #endif - SSL_CTX *ctx = NULL; - - method = SSLv23_client_method(); /* Create new client-method instance */ -@@ -109,7 +113,11 @@ - /** */ - SSL_CTX * CSSL::InitServerCTX() - { -+ #if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_METHOD *method; -+ #else - SSL_METHOD *method; -+ #endif - SSL_CTX *ctx = NULL; - - method = SSLv23_server_method(); /* Create new client-method instance */ -@@ -130,7 +138,11 @@ - /** */ - SSL_CTX * CSSL::NewTLSv1ClientCTX() - { -+ #if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_METHOD * method = TLSv1_client_method(); -+ #else - SSL_METHOD * method = TLSv1_client_method(); -+ #endif - SSL_CTX * ctx = NULL; - - if ( method != NULL ) -@@ -149,7 +161,11 @@ - /** */ - SSL_CTX * CSSL::NewTLSv1ServerCTX() - { -+ #if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_METHOD * method = TLSv1_server_method(); -+ #else - SSL_METHOD * method = TLSv1_server_method(); -+ #endif - SSL_CTX * ctx = NULL; - - if ( method != NULL ) diff --git a/net-p2p/dclib/metadata.xml b/net-p2p/dclib/metadata.xml deleted file mode 100644 index a5c91c8cb4c8..000000000000 --- a/net-p2p/dclib/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - wxdcgui - - -- cgit v1.2.3-65-gdbad