blob: cf6f10d469865b26f6f5bd5220a6413f959c01aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtompoly/libtompoly-0.03.ebuild,v 1.4 2004/06/24 23:24:45 agriffis Exp $
DESCRIPTION="portable ISO C library for polynomial basis arithmetic"
HOMEPAGE="http://poly.libtomcrypt.org/"
SRC_URI="http://poly.libtomcrypt.org/files/ltp-${PV}.tar.bz2"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
src_compile() {
emake || die
}
src_install() {
emake install DESTDIR=${D} || die
dodoc changes.txt *.pdf
docinto demo ; dodoc demo/*
}
|