diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-11-24 20:46:42 -0500 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-11-24 20:46:54 -0500 |
commit | fa88061d730c6c84009dd813824863014ecf88f6 (patch) | |
tree | f85586c568494a70bae97a335a744f847d5ffc85 /dev-libs/libressl | |
parent | media-plugins/kodi-pvr-vuplus: 3.15.1 version bump (diff) | |
download | gentoo-fa88061d730c6c84009dd813824863014ecf88f6.tar.gz gentoo-fa88061d730c6c84009dd813824863014ecf88f6.tar.bz2 gentoo-fa88061d730c6c84009dd813824863014ecf88f6.zip |
dev-libs/libressl: drop vulnerable wrt bug #658158
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-libs/libressl')
-rw-r--r-- | dev-libs/libressl/libressl-2.6.4.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/dev-libs/libressl/libressl-2.6.4.ebuild b/dev-libs/libressl/libressl-2.6.4.ebuild deleted file mode 100644 index 89d0ddacb56c..000000000000 --- a/dev-libs/libressl/libressl-2.6.4.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools multilib-minimal - -DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL" -HOMEPAGE="https://www.libressl.org/" -SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz" - -LICENSE="ISC openssl" -# Reflects ABI of libcrypto.so and libssl.so. Since these can differ, -# we'll try to use the max of either. However, if either change between -# versions, we have to change the subslot to trigger rebuild of consumers. -SLOT="0/44" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86" -IUSE="+asm static-libs test" -REQUIRED_USE="test? ( static-libs )" - -RDEPEND="!dev-libs/openssl:0" -DEPEND="${RDEPEND}" -PDEPEND="app-misc/ca-certificates" - -PATCHES=( "${FILESDIR}/libressl-2.6.4-hppa-asm.patch" ) - -src_prepare() { - touch crypto/Makefile.in - - sed -i \ - -e '/^[ \t]*CFLAGS=/s#-g ##' \ - -e '/^[ \t]*CFLAGS=/s#-g"#"#' \ - -e '/^[ \t]*CFLAGS=/s#-O2 ##' \ - -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \ - -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \ - -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \ - configure || die "fixing CFLAGS failed" - - default - eautoreconf -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable asm) \ - $(use_enable static-libs static) -} - -multilib_src_test() { - emake check -} - -multilib_src_install_all() { - einstalldocs - find "${D}" -name '*.la' -exec rm -f {} + || die -} |