commit: a6879406ac48246a96799e710176fcd8f0d3bca4 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Sep 24 17:44:00 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Sep 24 17:45:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6879406
net-misc/socat: drop (broken) 9999 Apparently I broke it (when syncing with release ebuilds) 9 months ago and nobody has noticed. Let's get rid of it. Fixes: df13bd514e0d04eb52593e0b43c40c422ce09ad4 Signed-off-by: Sam James <sam <AT> gentoo.org> net-misc/socat/socat-9999.ebuild | 64 ---------------------------------------- 1 file changed, 64 deletions(-) diff --git a/net-misc/socat/socat-9999.ebuild b/net-misc/socat/socat-9999.ebuild deleted file mode 100644 index e0872e55666..00000000000 --- a/net-misc/socat/socat-9999.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic toolchain-funcs - -DESCRIPTION="Multipurpose relay (SOcket CAT)" -HOMEPAGE="http://www.dest-unreach.org/socat/ https://repo.or.cz/socat.git" -EGIT_REPO_URI="https://repo.or.cz/${PN}.git" - -LICENSE="GPL-2" -SLOT="0" -IUSE="bindist ipv6 readline ssl tcpd" - -BDEPEND="app-text/yodl" -DEPEND=" - ssl? ( dev-libs/openssl:0= ) - readline? ( sys-libs/readline:= ) - tcpd? ( sys-apps/tcp-wrappers ) -" -RDEPEND="${DEPEND}" - -# Tests are a large bash script -# Hard to disable individual tests needing network or privileges -RESTRICT=" - test - ssl? ( readline? ( bindist ) ) -" - -DOCS=( BUGREPORTS CHANGES DEVELOPMENT EXAMPLES FAQ FILES PORTING README SECURITY ) - -pkg_setup() { - # bug #587740 - if use readline && use ssl ; then - elog "You are enabling both readline and openssl USE flags, the licenses" - elog "for these packages conflict. You may not be able to legally" - elog "redistribute the resulting binary." - fi -} - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # bug #293324 - filter-flags '-Wno-error*' - tc-export AR - - econf \ - $(use_enable ssl openssl) \ - $(use_enable readline) \ - $(use_enable ipv6 ip6) \ - $(use_enable tcpd libwrap) -} - -src_install() { - default - - docinto html - dodoc doc/*.html doc/*.css -}
