diff options
Diffstat (limited to 'dev-libs/ccmath/ccmath-2.2.1.ebuild')
-rw-r--r-- | dev-libs/ccmath/ccmath-2.2.1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-libs/ccmath/ccmath-2.2.1.ebuild b/dev-libs/ccmath/ccmath-2.2.1.ebuild new file mode 100644 index 000000000000..7e8e6bbc8ded --- /dev/null +++ b/dev-libs/ccmath/ccmath-2.2.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ccmath/ccmath-2.2.1.ebuild,v 1.1 2003/02/24 02:27:43 george Exp $ + +IUSE="" + +S=${WORKDIR}/${P} +DESCRIPTION="CCMATH is a mathematics library, coded in C, that contains functions for linear algebra, numerical integration, + geometry and trigonometry, curve fitting, roots and optimization, Fourier analysis, simulation generation, statistics, + special functions, sorts and searches, time series models, complex arithmetic, and high precision computations." + +SRC_URI="http://www.ibiblio.org/pub/Linux/libs/${P}.tar.gz" +HOMEPAGE="http://freshmeat.net/projects/ccmath/" + +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="~x86 ~ppc ~sparc " + +DEPEND="virtual/glibc" + +src_compile() { + + yes | ./makelibs.sh + +} + +src_install() { + + dolib.so tmp/libccm.so + dolib.a tmp/libccm.a + insinto /usr/include + doins ccmath.h + dodoc CHANGES INSTALL README manual/* + +} |