| 1 |
blueness |
1.1 |
# Copyright 1999-2012 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.2.0.ebuild,v 1.7 2012/07/24 14:16:16 jer Exp $ |
| 4 |
|
|
|
| 5 |
|
|
EAPI="4" |
| 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" |
| 16 |
|
|
|
| 17 |
|
|
#Add CRYPTO_OPTS=ecc when fixed |
| 18 |
|
|
CACHE_SIZE="small big +huge" |
| 19 |
|
|
CRYPTO_OPTS="aes-gcm aes-ni +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}" |
| 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 |
|
|
#Apply unconditionally, but only triggered if USE="aes-ni" |
| 38 |
|
|
epatch "${FILESDIR}"/${PN}-2.0.8-fix-gnustack.patch |
| 39 |
|
|
} |
| 40 |
|
|
|
| 41 |
|
|
src_configure() { |
| 42 |
|
|
local myconf=() |
| 43 |
|
|
|
| 44 |
|
|
if use threads; then |
| 45 |
|
|
myconf+=( --disable-singleThreaded ) |
| 46 |
|
|
else |
| 47 |
|
|
myconf+=( --enable-singleThreaded ) |
| 48 |
|
|
fi |
| 49 |
|
|
|
| 50 |
|
|
if use amd64; then |
| 51 |
|
|
myconf+=( --enable-fastmath --enable-fasthugemath --enable-bump ) |
| 52 |
|
|
elif use x86; then |
| 53 |
|
|
#not pie friendly, sorry x86, no fast math for you :( |
| 54 |
|
|
myconf+=( --disable-fastmath --disable-fasthugemath --disable-bump ) |
| 55 |
|
|
fi |
| 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 |
|
|
--enable-opensslExtra \ |
| 61 |
|
|
--enable-fortress \ |
| 62 |
|
|
--enable-keygen \ |
| 63 |
|
|
--enable-certgen \ |
| 64 |
|
|
--disable-debug \ |
| 65 |
|
|
--disable-ecc \ |
| 66 |
|
|
--disable-small \ |
| 67 |
|
|
--disable-ntru \ |
| 68 |
|
|
--disable-noFilesystem \ |
| 69 |
|
|
--disable-noInline \ |
| 70 |
|
|
--disable-gcc-lots-o-warnings \ |
| 71 |
|
|
$(use_enable debug) \ |
| 72 |
|
|
$(use_enable small smallcache) \ |
| 73 |
|
|
$(use_enable big bigcache) \ |
| 74 |
|
|
$(use_enable huge hugecache) \ |
| 75 |
|
|
$(use_enable aes-gcm aesgcm) \ |
| 76 |
|
|
$(use_enable aes-ni aesni) \ |
| 77 |
|
|
$(use_enable hc128) \ |
| 78 |
|
|
$(use_enable md2) \ |
| 79 |
|
|
$(use_enable psk) \ |
| 80 |
|
|
$(use_enable ripemd) \ |
| 81 |
|
|
$(use_enable sha512) \ |
| 82 |
|
|
$(use_enable dtls) \ |
| 83 |
|
|
$(use_enable ipv6) \ |
| 84 |
|
|
$(use_enable httpd webServer) \ |
| 85 |
|
|
$(use_enable ocsp) \ |
| 86 |
|
|
$(use_enable crl) \ |
| 87 |
|
|
$(use_enable crl-monitor) \ |
| 88 |
|
|
$(use_enable sessioncerts) \ |
| 89 |
|
|
$(use_enable sniffer) \ |
| 90 |
|
|
$(use_enable testcert) \ |
| 91 |
|
|
$(use_enable static-libs static) \ |
| 92 |
|
|
$(use_enable cyassl-hardening gcc-hardening) \ |
| 93 |
|
|
$(use_enable cyassl-hardening linker-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 |
|
|
} |