2017-05-03 20:28:34 -05:00
|
|
|
# Copyright 1999-2017 Gentoo Foundation
|
2016-09-30 14:29:56 -05:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2017-05-03 20:28:34 -05:00
|
|
|
EAPI=6
|
2016-09-30 14:29:56 -05:00
|
|
|
|
|
|
|
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"
|
|
|
|
# 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.
|
2017-05-03 20:28:34 -05:00
|
|
|
SLOT="0/43"
|
|
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
|
2016-09-30 14:29:56 -05:00
|
|
|
IUSE="+asm static-libs"
|
|
|
|
|
2017-05-03 20:28:34 -05:00
|
|
|
#RDEPEND="!dev-libs/openssl:0"
|
|
|
|
#DEPEND="${RDEPEND}"
|
2016-09-30 14:29:56 -05:00
|
|
|
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"
|
2017-05-03 20:28:34 -05:00
|
|
|
|
|
|
|
eapply_user
|
2016-09-30 14:29:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|