commit:     02852d00c62091127bbca8889720845c1db78a05
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 14 07:36:31 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Aug 14 07:47:09 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02852d00

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 ----
 profiles/package.mask                            |  4 --
 6 files changed, 119 deletions(-)

diff --git a/net-p2p/dclib/Manifest b/net-p2p/dclib/Manifest
deleted file mode 100644
index 0e023a2c13c..00000000000
--- 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 d8b67d59aea..00000000000
--- 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 d3634c424c2..00000000000
--- 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 f8b4a4bc2af..00000000000
--- 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 a5c91c8cb4c..00000000000
--- a/net-p2p/dclib/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <!-- maintainer-needed -->
-       <upstream>
-               <remote-id type="sourceforge">wxdcgui</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index 6c8b32599df..2f40960ed60 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -410,10 +410,6 @@ dev-util/pida
 net-irc/bobotpp
 
 # Pacho Ramos <[email protected]> (14 Jul 2017)
-# Fails to build (#618950), dead for a long time. Removal in a month.
-net-p2p/dclib
-
-# Pacho Ramos <[email protected]> (14 Jul 2017)
 # Dead for ages, relies on dead libs (#622010), you can move to moserial, 
cutecom or
 # minicom. Removal in 2 months.
 net-dialup/gtkterm

Reply via email to