summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2016-08-01 18:39:47 -0400
committerAnthony G. Basile <blueness@gentoo.org>2016-08-01 18:40:03 -0400
commit116b1670c7888c1163761ce473b9ca0041180b41 (patch)
treedcd2d5bc9dcc8260a70410e7a4d091e7c24ccf6e /dev-libs/libressl/libressl-2.2.9.ebuild
parentnet-misc/freerdp: drop the onoff function (diff)
downloadgentoo-116b1670c7888c1163761ce473b9ca0041180b41.tar.gz
gentoo-116b1670c7888c1163761ce473b9ca0041180b41.tar.bz2
gentoo-116b1670c7888c1163761ce473b9ca0041180b41.zip
dev-libs/libressl: version bump to 2.3.7 and 2.4.2, remove older
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-libs/libressl/libressl-2.2.9.ebuild')
-rw-r--r--dev-libs/libressl/libressl-2.2.9.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-libs/libressl/libressl-2.2.9.ebuild b/dev-libs/libressl/libressl-2.2.9.ebuild
deleted file mode 100644
index 1dcdc69e6f00..000000000000
--- a/dev-libs/libressl/libressl-2.2.9.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="http://www.libressl.org/"
-SRC_URI="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"
-
-LICENSE="ISC openssl"
-SLOT="0/35" # reflects ABI of libcrypto.so and libssl.so
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
-IUSE="+asm static-libs"
-
-RDEPEND="!dev-libs/openssl:0"
-DEPEND="${RDEPEND}"
-PDEPEND="app-misc/ca-certificates"
-
-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"
-}
-
-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
- prune_libtool_files
-}