blob: 0fb3005a7db31769fc6ef3a67556299b526ec4f1 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/nistp224/nistp224-0.75-r1.ebuild,v 1.1 2009/03/16 11:14:03 bangert Exp $
EAPI="2"
inherit toolchain-funcs flag-o-matic fixheadtails
DESCRIPTION="nistp224 performs compressed Diffie-Hellman key exchange on the NIST P-224 elliptic curve"
HOMEPAGE="http://cr.yp.to/nistp224.html"
SRC_URI="http://cr.yp.to/${PN}/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND=${DEPEND}
S="${WORKDIR}/math/${P}/src"
src_prepare() {
epatch "${FILESDIR}"/${P}-asmfix.patch
epatch "${FILESDIR}"/${P}-declare-exit.patch
cd "${S}"
epatch "${FILESDIR}"/${P}-honour-CC.patch
ht_fix_file Makefile print*.sh
}
src_configure() {
append-flags -fPIC
echo -n "$(tc-getCC) ${CFLAGS}" > conf-cc
echo -n "$(tc-getCC) ${LDFLAGS}" > conf-ld
if use ppc; then
# untested
echo -n "powerpc" > conf-opt
elif use sparc; then
# untested
echo -n "sparc" > conf-opt
else
# optiminations for ppro and pentium fail
echo -n "idea64" > conf-opt
fi
}
src_compile() {
emake || die "emake failed"
}
src_install() {
dobin nistp224 nistp224-56
mv nistp224.a libnistp224.a
dolib.a libnistp224.a
insinto /usr/include
doins nistp224.h
}
|