# 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 }