Source: netkit-telnet-ssl
Source-Version: 0.17.24+0.1-22
Severity: important
Tags: patch
Hi!
It seems the libssl dependency is hardcoded, and now that the package
has been binNMUed to link against libssl 1.0.0 it's pulling both shared
libraries. There should be no need to hardcode such dependencies,
dpkg-shlibdeps should be taking care of that automatically. It will
also make it more difficult to get rid of openssl 0.9.8 from the
archive. Attached patch fixes this.
thanks,
guillem
diff --git a/debian/control b/debian/control
index 02778da..6ea4c21 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Build-Depends: debhelper (>= 6.0.7~), libncurses-dev, libssl-dev (>= 0.9.8g-9)
Package: telnet-ssl
Architecture: any
-Depends: libssl0.9.8 (>= 0.9.8g-9), ${shlibs:Depends}
+Depends: ${shlibs:Depends}
Replaces: netstd
Conflicts: telnet, ssltelnet (<< 0.12)
Provides: telnet-client
@@ -29,7 +29,7 @@ Description: The telnet client with SSL encryption support
Package: telnetd-ssl
Architecture: any
-Depends: adduser, openbsd-inetd | inet-superserver, passwd, openssl (>= 0.9.8g-9), libssl0.9.8 (>= 0.9.8g-9), ${shlibs:Depends}, ${misc:Depends}
+Depends: adduser, openbsd-inetd | inet-superserver, passwd, openssl (>= 0.9.8g-9), ${shlibs:Depends}, ${misc:Depends}
Replaces: netstd
Provides: telnet-server
Conflicts: suidmanager (<< 0.50), telnetd, ssltelnet (<< 0.12)