diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2002-01-12 15:24:19 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2002-01-12 15:24:19 +0000 |
commit | 08cd4fbb2e0330d9185a87667e11fdc408ad1c46 (patch) | |
tree | fbdd88a0d95a94dff2f5f063b5fd1d4765915d21 /dev-libs/gsl/gsl-1.0.ebuild | |
parent | Updated to 0.7 (diff) | |
download | historical-08cd4fbb2e0330d9185a87667e11fdc408ad1c46.tar.gz historical-08cd4fbb2e0330d9185a87667e11fdc408ad1c46.tar.bz2 historical-08cd4fbb2e0330d9185a87667e11fdc408ad1c46.zip |
added gsl 1.0, initial ebuild
Diffstat (limited to 'dev-libs/gsl/gsl-1.0.ebuild')
-rw-r--r-- | dev-libs/gsl/gsl-1.0.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/dev-libs/gsl/gsl-1.0.ebuild b/dev-libs/gsl/gsl-1.0.ebuild new file mode 100644 index 000000000000..a1dc0aa35a8a --- /dev/null +++ b/dev-libs/gsl/gsl-1.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Tod Neidt <tneidt@fidnet.com> +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gsl/gsl-1.0.ebuild,v 1.1 2002/01/12 15:24:19 verwilst Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="The GNU Scientific Library" + +SRC_URI="http://mirrors.rcn.net/pub/sourceware/gsl/${P}.tar.gz" + +HOMEPAGE="http://sources.redhat.com/gsl/" + +DEPEND="virtual/glibc" + +src_compile() { + +#Avoid locking (can break parallel builds) + local myconf + myconf="--disable-libtool-lock" + + ./configure --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --prefix=/usr \ + --host=${CHOST} \ + ${myconf} || die + + emake || die + +#Uncomment the 'make check ...' line if you want to run the test suite. +#Note that the check.log file will be several megabytes in size. +# make check > check.log 2>&1 || die + +} + +src_install () { + + make prefix=${D}/usr \ + infodir=${D}/usr/share/info \ + mandir=${D}/usr/share/man \ + install || die + + dodoc AUTHORS COPYING ChangeLog INSTALL KNOWN-PROBLEMS MACHINES +NEWS + +} + + + |