summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-03-22 00:19:42 +0000
committerSam James <sam@gentoo.org>2021-03-22 00:19:42 +0000
commitecdb8802af3a726b11669d0657d05bc7e60e7a0c (patch)
tree8f68f1cfe9487e9f258e005365f11ce200b5060d /net-analyzer/ssldump
parentnet-analyzer/ssldump: Stabilize 1.1 ppc, #776553 (diff)
downloadgentoo-ecdb8802af3a726b11669d0657d05bc7e60e7a0c.tar.gz
gentoo-ecdb8802af3a726b11669d0657d05bc7e60e7a0c.tar.bz2
gentoo-ecdb8802af3a726b11669d0657d05bc7e60e7a0c.zip
net-analyzer/ssldump: drop 0.9_beta3
Closes: https://bugs.gentoo.org/776553 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/ssldump')
-rw-r--r--net-analyzer/ssldump/Manifest1
-rw-r--r--net-analyzer/ssldump/files/ssldump-0.9-DLT_LINUX_SLL.patch13
-rw-r--r--net-analyzer/ssldump/files/ssldump-0.9-configure-dylib.patch28
-rw-r--r--net-analyzer/ssldump/files/ssldump-0.9-declaration.patch11
-rw-r--r--net-analyzer/ssldump/files/ssldump-0.9-includes.patch30
-rw-r--r--net-analyzer/ssldump/files/ssldump-0.9-libpcap-header.patch10
-rw-r--r--net-analyzer/ssldump/files/ssldump-0.9-openssl-0.9.8.compile-fix.patch18
-rw-r--r--net-analyzer/ssldump/files/ssldump-0.9-prefix-fix.patch22
-rw-r--r--net-analyzer/ssldump/ssldump-0.9_beta3.ebuild66
9 files changed, 0 insertions, 199 deletions
diff --git a/net-analyzer/ssldump/Manifest b/net-analyzer/ssldump/Manifest
index b7ac5c7e1f83..03625580b154 100644
--- a/net-analyzer/ssldump/Manifest
+++ b/net-analyzer/ssldump/Manifest
@@ -1,3 +1,2 @@
-DIST ssldump-0.9b3.tar.gz 137435 BLAKE2B e42eeac4daa99a62537ac7ee5152428664fed40256ec10f7c61621f9bbd06476d280af1a6c517eaff253058e3720a282e88604b2f1de0c7ad1b5328597879449 SHA512 ea81558a243950ab43354c9f33c0a4feae0ae859bc2bd6e6b58838a01f4a1e7a6447f2a9ab1fa40bbe8dbd6c3630c489c17fc9c066cacfddfb64269b0cd5090a
DIST ssldump-1.1.tar.gz 187436 BLAKE2B 3cafd7263762a7a326fb30722a918bcfaae5b43eedca37a0b5c341efc510e935671dc7ebf71eb807fcacbfce5f77896f310b634028713deb5516390fcfc21f65 SHA512 00ff449d3818a27fbcb46316733428f6a623488e758a67fcb7ee4390835e3279e7242aa0134ddc158740cb8323f5fd9869bd50efb35189dce977d4768d9636c2
DIST ssldump-1.3.tar.gz 122819 BLAKE2B 8a96746939eb8d9ba33340ff112b1bc5b436a7eb5756fda494065c8f8fd7d6ec9c1c28d8f7f880d25856f24749fd8a8a98d4104753bb68772b2583dafef099b8 SHA512 6da4db890a30673278b17eb00201b6c2535ba476b769bed6ed4e31c06744f32e299d0f0dd6420aa7255e2c982a378cd721d7bf51dd0aeb23211ab678d1e5f26e
diff --git a/net-analyzer/ssldump/files/ssldump-0.9-DLT_LINUX_SLL.patch b/net-analyzer/ssldump/files/ssldump-0.9-DLT_LINUX_SLL.patch
deleted file mode 100644
index 9a58c6369929..000000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-DLT_LINUX_SLL.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/base/pcap-snoop.c
-+++ b/base/pcap-snoop.c
-@@ -157,6 +157,10 @@
- return;
-
- break;
-+ case DLT_LINUX_SLL:
-+ data+=16;
-+ len-=16;
-+ break;
- }
- network_process_packet(n,&hdr->ts,data,len);
- }
diff --git a/net-analyzer/ssldump/files/ssldump-0.9-configure-dylib.patch b/net-analyzer/ssldump/files/ssldump-0.9-configure-dylib.patch
deleted file mode 100644
index 941350e8c789..000000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-configure-dylib.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -102,14 +102,13 @@
- AC_MSG_CHECKING(for PCAP library)
- ac_found_pcap_lib_dir="no"
- for dir in $ac_pcap_lib_dir; do
-- if test -f $dir/libpcap.a; then
-+ if test -f $dir/libpcap.so -o -f $dir/libpcap.dylib; then
- dnl Ok, we think we've found them, but check that they
-- dnl actually ontain the right functions
-+ dnl actually contain the right functions
- save_LIBS=$LIBS
-- save_LDFLAGS=$LDFLAGS
- LIBS="-lpcap $LIBS"
- if test "$dir" != "/usr/lib"; then
-- LDFLAGS="-L$dir $LDFLAGS"
-+ LIBS="-L$dir $LIBS"
- fi
- AC_TRY_LINK_FUNC(pcap_open_live,ac_linked_libpcap="true",
- ac_linked_libpcap="false");
-@@ -118,7 +117,6 @@
- break
- fi
- LIBS=$save_LIBS
-- LDFLAGS=$save_LDFLAGS
- fi
- done
-
diff --git a/net-analyzer/ssldump/files/ssldump-0.9-declaration.patch b/net-analyzer/ssldump/files/ssldump-0.9-declaration.patch
deleted file mode 100644
index 836b52c84ab2..000000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-declaration.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/ssl/ssl_rec.h
-+++ b/ssl/ssl_rec.h
-@@ -54,6 +54,8 @@
- SSL_CipherSuite *cs,UCHAR *mk,UCHAR *sk,UCHAR *iv));
- int ssl_decode_rec_data PROTO_LIST((ssl_obj *ssl,ssl_rec_decoder *d,
- int ct,int version,UCHAR *in,int inl,UCHAR *out,int *outl));
-+int ssl3_check_mac(ssl_rec_decoder *d, int ct, int ver, UCHAR *data,
-+ UINT4 datalen, UCHAR *mac);
-
- #endif
-
diff --git a/net-analyzer/ssldump/files/ssldump-0.9-includes.patch b/net-analyzer/ssldump/files/ssldump-0.9-includes.patch
deleted file mode 100644
index 8ca06dcef449..000000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-includes.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- a/common/lib/r_assoc.c
-+++ b/common/lib/r_assoc.c
-@@ -57,6 +57,7 @@
- static char *RCSSTRING="$Id$";
-
- #include <r_common.h>
-+#include <string.h> /* memcpy() memcmp() */
- #include "r_assoc.h"
-
- typedef struct r_assoc_el_ {
---- a/common/lib/r_bitfield.c
-+++ b/common/lib/r_bitfield.c
-@@ -11,6 +11,7 @@
- static char *RCSSTRING="$Id$";
-
- #include <r_common.h>
-+#include <string.h> /* memcpy() memset() */
- #include "r_bitfield.h"
-
- int r_bitfield_create(setp,size)
---- a/common/lib/r_data.c
-+++ b/common/lib/r_data.c
-@@ -47,6 +47,7 @@
- static char *RCSSTRING="$Id$";
-
- #include <r_common.h>
-+#include <string.h> /* memcmp() memcpy() memset() */
- #include <r_data.h>
-
- int r_data_create(dp,d,l)
diff --git a/net-analyzer/ssldump/files/ssldump-0.9-libpcap-header.patch b/net-analyzer/ssldump/files/ssldump-0.9-libpcap-header.patch
deleted file mode 100644
index a9a724658ccf..000000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-libpcap-header.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/base/pcap-snoop.c
-+++ b/base/pcap-snoop.c
-@@ -49,7 +49,6 @@
-
- #include <pcap.h>
- #include <unistd.h>
--#include <net/bpf.h>
- #ifndef _WIN32
- #include <sys/param.h>
- #endif
diff --git a/net-analyzer/ssldump/files/ssldump-0.9-openssl-0.9.8.compile-fix.patch b/net-analyzer/ssldump/files/ssldump-0.9-openssl-0.9.8.compile-fix.patch
deleted file mode 100644
index 2ce16d54f168..000000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-openssl-0.9.8.compile-fix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/ssl/ssldecode.c
-+++ b/ssl/ssldecode.c
-@@ -51,6 +51,7 @@
- #include <openssl/ssl.h>
- #include <openssl/hmac.h>
- #include <openssl/evp.h>
-+#include <openssl/md5.h>
- #include <openssl/x509v3.h>
- #endif
- #include "ssldecode.h"
-@@ -131,6 +132,7 @@
- ssl_decode_ctx *d=0;
- int r,_status;
-
-+ SSL_library_init();
- SSLeay_add_all_algorithms();
- if(!(d=(ssl_decode_ctx *)malloc(sizeof(ssl_decode_ctx))))
- ABORT(R_NO_MEMORY);
diff --git a/net-analyzer/ssldump/files/ssldump-0.9-prefix-fix.patch b/net-analyzer/ssldump/files/ssldump-0.9-prefix-fix.patch
deleted file mode 100644
index 74d7ddcd6f68..000000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-prefix-fix.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-eliminates unused variable ROOT, which disturbs ld from Prefix. Bug #414335
-
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -46,13 +46,12 @@ BINDIR=@sbindir@
- MANDIR=@mandir@
- RM=rm -f
-
--ROOT=./
--ANALYZE_SRCDIR=$(ROOT)base/
-+ANALYZE_SRCDIR=base/
- COMMONDIR=common/
- COMMON_LIB_SRCDIR=$(COMMONDIR)lib/
--ANALYZE_NULL_SRCDIR=$(ROOT)null/
--ANALYZE_SSL_SRCDIR=$(ROOT)ssl/
--ANALYZE_RECORD_SRCDIR=$(ROOT)@RECORD_MOD@/
-+ANALYZE_NULL_SRCDIR=null/
-+ANALYZE_SSL_SRCDIR=ssl/
-+ANALYZE_RECORD_SRCDIR=@RECORD_MOD@/
- include rules.mk
-
- include $(COMMON_LIB_SRCDIR)/targets.mk
diff --git a/net-analyzer/ssldump/ssldump-0.9_beta3.ebuild b/net-analyzer/ssldump/ssldump-0.9_beta3.ebuild
deleted file mode 100644
index 0f7107da7d0b..000000000000
--- a/net-analyzer/ssldump/ssldump-0.9_beta3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-AUTOTOOLS_AUTORECONF=1
-inherit autotools eutils toolchain-funcs
-
-MY_PV=${PV/_beta/b}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="An SSLv3/TLS network protocol analyzer"
-HOMEPAGE="http://ssldump.sourceforge.net/"
-SRC_URI="
- http://downloads.sourceforge.net/project/${PN}/${PN}/${MY_PV}/${MY_P}.tar.gz
-"
-
-LICENSE="openssl"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="ssl"
-
-RDEPEND="
- net-libs/libpcap
- ssl? ( >=dev-libs/openssl-1:0= )
-"
-DEPEND="
- ${RDEPEND}
-"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.9-libpcap-header.patch
- "${FILESDIR}"/${PN}-0.9-configure-dylib.patch
- "${FILESDIR}"/${PN}-0.9-openssl-0.9.8.compile-fix.patch
- "${FILESDIR}"/${PN}-0.9-DLT_LINUX_SLL.patch
- "${FILESDIR}"/${PN}-0.9-prefix-fix.patch
- "${FILESDIR}"/${PN}-0.9-declaration.patch
- "${FILESDIR}"/${PN}-0.9-includes.patch
-)
-
-src_prepare() {
- default
-
- eapply_user
-
- eautoreconf
-}
-
-src_configure() {
- tc-export CC
-
- econf \
- --with-pcap-inc="${EPREFIX}/usr/include" \
- --with-pcap-lib="${EPREFIX}/usr/$(get_libdir)" \
- $(usex ssl --with-openssl-inc="${EPREFIX}/usr/include" '--without-openssl') \
- $(usex ssl --with-openssl-lib="${EPREFIX}/usr/$(get_libdir)" '--without-openssl')
-}
-
-src_install() {
- dosbin ssldump
- doman ssldump.1
- dodoc ChangeLog CREDITS README
-}