net-p2p/dclib: Remove last-rited pkg, #618950
authorMichał Górny <mgorny@gentoo.org>
Mon, 14 Aug 2017 07:36:31 +0000 (09:36 +0200)
committerMichał Górny <mgorny@gentoo.org>
Mon, 14 Aug 2017 07:47:09 +0000 (09:47 +0200)
net-p2p/dclib/Manifest [deleted file]
net-p2p/dclib/dclib-0.3.23.ebuild [deleted file]
net-p2p/dclib/files/dclib-0.3.23-asneeded.patch [deleted file]
net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch [deleted file]
net-p2p/dclib/metadata.xml [deleted file]
profiles/package.mask

diff --git a/net-p2p/dclib/Manifest b/net-p2p/dclib/Manifest
deleted file mode 100644 (file)
index 0e023a2..0000000
+++ /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 (file)
index d8b67d5..0000000
+++ /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 (file)
index d3634c4..0000000
+++ /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 (file)
index f8b4a4b..0000000
+++ /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 (file)
index a5c91c8..0000000
+++ /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>
index 6c8b32599dfece19e0a86f4c7b055b11a6430f32..2f40960ed60262107f9ee82dcd939c351a0f02d4 100644 (file)
@@ -409,10 +409,6 @@ dev-util/pida
 # Not compatible with guile2, bug #617794. Removal in a month.
 net-irc/bobotpp
 
-# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
-# Fails to build (#618950), dead for a long time. Removal in a month.
-net-p2p/dclib
-
 # Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
 # Dead for ages, relies on dead libs (#622010), you can move to moserial, cutecom or
 # minicom. Removal in 2 months.