blob: 351196012fa1d419c075dea943ed1c8cba656af8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-0.12.0.ebuild,v 1.3 2010/01/23 09:21:25 cla Exp $
inherit eutils
DESCRIPTION="Cryptographic library for embedded systems"
HOMEPAGE="http://polarssl.org/"
SRC_URI="http://polarssl.org/code/download/${P}-gpl.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="examples sse2"
DEPEND=""
RDEPEND=${DEPEND}
src_compile() {
cd "${S}/library"
if use sse2 ; then
sed -i '15iCFLAGS += -DHAVE_SSE2 -fPIC' Makefile
else
sed -i '15iCFLAGS += -fPIC' Makefile
fi
epatch "${FILESDIR}"/${P}-makefile.patch
emake libpolarssl.a || die "emake failed"
emake libpolarssl.so || die "emake failed"
if use examples ; then
cd "${S}"/programs
emake all || die "emake failed"
fi
}
src_test() {
cd "${S}"/programs
emake test/selftest || die "emake selftest failed"
./test/selftest || die "selftest failed"
}
src_install() {
insinto /usr/include/polarssl
doins include/polarssl/*.h || die
dolib.so library/libpolarssl.so || die
dolib.a library/libpolarssl.a || die
if use examples ; then
for p in programs/*/* ; do
if [[ -x "${p}" && ! -d "${p}" ]] ; then
f=polarssl_`basename "${p}"`
newbin "${p}" "${f}" || die
fi
done
for e in aes hash pkey ssl test ; do
docinto "${e}"
dodoc programs/"${e}"/*.c || die
dodoc programs/"${e}"/*.txt || die
done
fi
}
|