| 1 |
# Copyright 1999-2013 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-libs/cyassl/cyassl-2.5.0.ebuild,v 1.9 2013/02/22 18:41:42 ago Exp $ |
| 4 |
|
| 5 |
EAPI="5" |
| 6 |
|
| 7 |
inherit eutils |
| 8 |
|
| 9 |
DESCRIPTION="Lightweight SSL/TLS library targeted at embedded and RTOS environments" |
| 10 |
HOMEPAGE="http://www.yassl.com/yaSSL/Home.html" |
| 11 |
SRC_URI="http://dev.gentoo.org/~blueness/${PN}/${P}.zip" |
| 12 |
|
| 13 |
LICENSE="GPL-2" |
| 14 |
SLOT="0" |
| 15 |
KEYWORDS="amd64 arm hppa ~mips ppc ppc64 s390 x86" |
| 16 |
|
| 17 |
#Add CRYPTO_OPTS=ecc when fixed |
| 18 |
CACHE_SIZE="small big +huge" |
| 19 |
CRYPTO_OPTS="aes-gcm aes-ccm aes-ni camellia +hc128 md2 +psk +ripemd sha512" |
| 20 |
CERT_OPTS="ocsp crl crl-monitor +sessioncerts +testcert" |
| 21 |
IUSE="debug -dtls ipv6 +httpd +sniffer static-libs threads +zlib cyassl-hardening ${CACHE_SIZE} ${CRYPTO_OPTS} ${CERT_OPTS} test" |
| 22 |
|
| 23 |
#You can only pick one cach size |
| 24 |
#sha512 is broken on x86 |
| 25 |
#Testing freezes with dtls |
| 26 |
REQUIRED_USE="^^ ( small big huge ) |
| 27 |
test? ( !dtls )" |
| 28 |
|
| 29 |
DEPEND="app-arch/unzip |
| 30 |
sniffer? ( net-libs/libpcap ) |
| 31 |
zlib? ( sys-libs/zlib )" |
| 32 |
RDEPEND="${DEPEND}" |
| 33 |
|
| 34 |
src_prepare() { |
| 35 |
epatch "${FILESDIR}"/${PN}-2.0.8-disable-testsuit-ifnothreads.patch |
| 36 |
} |
| 37 |
|
| 38 |
src_configure() { |
| 39 |
local myconf=() |
| 40 |
|
| 41 |
if use threads; then |
| 42 |
myconf+=( --disable-singleThreaded ) |
| 43 |
else |
| 44 |
myconf+=( --enable-singleThreaded ) |
| 45 |
fi |
| 46 |
|
| 47 |
if use amd64; then |
| 48 |
myconf+=( --enable-fastmath --enable-fasthugemath --enable-bump ) |
| 49 |
elif use x86; then |
| 50 |
#not pie friendly, sorry x86, no fast math for you :( |
| 51 |
myconf+=( --disable-fastmath --disable-fasthugemath --disable-bump ) |
| 52 |
fi |
| 53 |
|
| 54 |
#Bug #454300 |
| 55 |
export C_EXTRA_FLAGS=${CFLAGS} |
| 56 |
|
| 57 |
#There are lots of options, so we'll force a few reasonable |
| 58 |
#We may change this in the future, in particular ecc needs to be fixed |
| 59 |
econf \ |
| 60 |
--disable-silent-rules \ |
| 61 |
--enable-opensslExtra \ |
| 62 |
--enable-fortress \ |
| 63 |
--enable-keygen \ |
| 64 |
--enable-certgen \ |
| 65 |
--disable-debug \ |
| 66 |
--disable-ecc \ |
| 67 |
--disable-ntru \ |
| 68 |
--disable-noFilesystem \ |
| 69 |
--disable-noInline \ |
| 70 |
$(use_enable debug) \ |
| 71 |
$(use_enable small smallcache) \ |
| 72 |
$(use_enable big bigcache) \ |
| 73 |
$(use_enable huge hugecache) \ |
| 74 |
$(use_enable aes-gcm aesgcm) \ |
| 75 |
$(use_enable aes-ccm aesccm) \ |
| 76 |
$(use_enable aes-ni aesni) \ |
| 77 |
$(use_enable camellia) \ |
| 78 |
$(use_enable hc128) \ |
| 79 |
$(use_enable md2) \ |
| 80 |
$(use_enable psk) \ |
| 81 |
$(use_enable ripemd) \ |
| 82 |
$(use_enable sha512) \ |
| 83 |
$(use_enable dtls) \ |
| 84 |
$(use_enable ipv6) \ |
| 85 |
$(use_enable httpd webServer) \ |
| 86 |
$(use_enable ocsp) \ |
| 87 |
$(use_enable crl) \ |
| 88 |
$(use_enable crl-monitor) \ |
| 89 |
$(use_enable sessioncerts) \ |
| 90 |
$(use_enable sniffer) \ |
| 91 |
$(use_enable testcert) \ |
| 92 |
$(use_enable static-libs static) \ |
| 93 |
$(use_enable cyassl-hardening gcc-hardening) \ |
| 94 |
$(use_with zlib libz) \ |
| 95 |
"${myconf[@]}" |
| 96 |
} |
| 97 |
|
| 98 |
src_test() { |
| 99 |
"${S}"/tests/unit |
| 100 |
"${S}"/ctaocrypt/benchmark/benchmark |
| 101 |
} |
| 102 |
|
| 103 |
src_install() { |
| 104 |
default |
| 105 |
|
| 106 |
mv "${D}"/usr/share/doc/"${PN}"/* \ |
| 107 |
"${D}"/usr/share/doc/"${P}"/ |
| 108 |
rmdir "${D}"/usr/share/doc/"${PN}"/ |
| 109 |
} |