blob: c3896003d3721663077d6b246affe74f251b72d7 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/primegen/primegen-0.97.ebuild,v 1.6 2004/07/01 11:54:26 eradicator Exp $
inherit gcc
DESCRIPTION="A small, fast library to generate primes in order"
HOMEPAGE="http://cr.yp.to/primegen.html"
SRC_URI="http://cr.yp.to/primegen/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
echo $(gcc-getCC) ${CFLAGS} > conf-cc
echo /usr > conf-home
echo $(gcc-getCC) ${CFLAGS} > conf-ld
emake || die
}
src_install() {
dobin primegaps primes primespeed || die "dobin failed"
doman primegaps.1 primes.1 primespeed.1
doman error.3 error_str.3 primegen.3
dolib.a primegen.a || die "dolib.a failed"
insinto /usr/include
doins primegen.h uint32.h uint64.h
dodoc BLURB CHANGES README
}
|