# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="A suite of programs for integer factorization." HOMEPAGE="http://www.thorstenreinecke.de/qsieve/" SRC_URI="http://www.thorstenreinecke.de/downloads/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" IUSE="doc gmp" DEPEND="dev-libs/gmp" src_compile() { econf \ --prefix=/usr \ $(use_enable doc reference-manual) \ emake || die } src_install() { emake DESTDIR="${D}" install || die dodoc ChangeLog README AUTHORS NEWS }