# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ 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="x86 ~ppc" IUSE="" DEPEND=">=dev-libs/gmp-4.1-r1" src_compile() { cd src ./configure \ PREFIX=/usr \ NTL_GMP_LIP=on \ NTL_STD_CXX=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 }