blob: fe8a7d2864d0ce98833affa734e805269535d0b3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ntl/ntl-5.3.ebuild,v 1.7 2005/08/07 13:02:00 hansmi Exp $
DESCRIPTION="high-performance, portable C++ ci-computational ibrar"
HOMEPAGE="http://shoup.net/ntl/"
SRC_URI="http://www.shoup.net/ntl/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
DEPEND=">=dev-libs/gmp-4.1-r1"
src_compile() {
cd src
./configure \
PREFIX=/usr \
NTL_GMP_LIP=on \
"CFLAGS=$CFLAGS -Wno-deprecated" || die "./configure failed"
make || die "make failed"
make check || die "make check failed - make did not make something good..."
}
src_install() {
cd src
make PREFIX=${D}/usr/ install || die
#now somewhat clean-up docs
cd ${S}
dodoc README
cd ${S}/doc
dodoc *.txt
dohtml *.html *.gif
rm -rf ${D}/usr/doc
}
|