blob: 9f59a3e2c592e133da29db37300dcedb351bac8d (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/nistp224/nistp224-0.75.ebuild,v 1.2 2008/06/26 07:57:55 bangert Exp $
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_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-asmfix.patch
epatch "${FILESDIR}"/${P}-declare-exit.patch
cd "${S}"
ht_fix_file Makefile print*.sh
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
}
|