diff options
author | 2001-11-04 00:34:11 +0000 | |
---|---|---|
committer | 2001-11-04 00:34:11 +0000 | |
commit | 005567d5d525609ad03eaede06e1394d4621abcb (patch) | |
tree | e0241dbfcc46c876ebf7f0c108cbd9ea71575cdb /incoming | |
parent | Removed from incoming.. Version 1.00 in net-im. (diff) | |
download | historical-005567d5d525609ad03eaede06e1394d4621abcb.tar.gz historical-005567d5d525609ad03eaede06e1394d4621abcb.tar.bz2 historical-005567d5d525609ad03eaede06e1394d4621abcb.zip |
Added to incoming
Diffstat (limited to 'incoming')
-rw-r--r-- | incoming/gsl-1.0.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/incoming/gsl-1.0.ebuild b/incoming/gsl-1.0.ebuild new file mode 100644 index 000000000000..fd13084e5989 --- /dev/null +++ b/incoming/gsl-1.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Tod Neidt <tneidt@fidnet.com> +# /home/cvsroot/gentoo-x86/skel.build,v 1.7 2001/08/25 21:15:08 chadh 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" + +#RDEPEND="" + +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 + +} + |