--- /dev/null
+# ChangeLog for dev-libs/atlas
+# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/atlas/ChangeLog,v 1.1 2004/12/28 22:05:21 ribosome Exp $
+
+*atlas-3.4.2 (28 Dec 2004)
+
+ 28 Dec 2004; Olivier Fisette <ribosome@gentoo.org> +metadata.xml,
+ +atlas-3.4.2.ebuild, +atlas-3.5.11.ebuild, +atlas-3.6.0.ebuild:
+ Moved from dev-libs/atlas to sci-libs/atlas.
+
+ 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> atlas-3.4.2.ebuild,
+ atlas-3.5.11.ebuild, atlas-3.6.0.ebuild:
+ virtual/glibc -> virtual/libc
+
+ 24 Apr 2004; Danny van Dyk <kugelfang@gentoo.org> atlas-3.6.0.ebuild:
+ Marked atlas-3.6.0 -amd64. It can be replaced by app-sci/blas and
+ app-sci/lapack, which are updated to work properly on amd64.
+
+ 01 Apr 2004; Patrick Kursawe <phosphan@gentoo.org> atlas-3.2.1-r1.ebuild,
+ atlas-3.2.1.ebuild, atlas-3.4.1.ebuild, atlas-3.4.2.ebuild,
+ atlas-3.5.11.ebuild, atlas-3.6.0.ebuild:
+ Cleanup, adding hint about keyword changing
+
+*atlas-3.6.0 (25 Feb 2004)
+
+ 25 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> atlas-3.6.0.ebuild:
+ Add new version that as real amd64 support. Closing #37446.
+
+*atlas-3.5.11 (30 Sep 2003)
+
+ 30 Sep 2003; George Shapovalov <george@gentoo.org> atlas-3.5.11.ebuild :
+ added latest development version.
+ Note to possible maintainers: this ebuild apparently should stay keymasked!
+ Moved 3.4.2 to stable.
+
+
+*atlas-3.4.2 (12 Aug 2003)
+
+ 12 Aug 2003; George Shapovalov <george@gentoo.org> atlas-3.4.2.ebuild :
+ new version (#26348), this one builds with gcc-3.3
+ thanks to giggles1 <bevdv@yahoo.com> for notification
+ Also added metadata.xml
+
+*atlas-3.4.1 (12 Mar 2003)
+
+ 12 Mar 2003; George Shapovalov <george@gentoo.org> atlas-3.4.1.ebuild :
+ new version (#16218)
+ some cleanups, also removed Maintainer field from the ebuild and moved it here:
+ ebuild submitted by Nathaniel C. Domingo <nathaniel.domingo@up.edu.ph>
+ Also removed the "initial ChangeLog" block of text from the bottom of file,
+ as that only belongs to skel.ChangeLog (and contains no usefull inormation)
+
+ 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
+
+*atlas-3.2.1-r1 (17 Oct 2002)
+
+ 17 Oct 2002; Seemant Kulleen <seemant@gentoo.org> atlas-3.2.1-r1.ebuild
+ files/digest-atlas-3.2.1-r1 :
+
+ liblapack.a is now in /usr/lib where it belongs, instead of /usr/share/
+ Thanks to: stephen@theboulets.net (Stephen Boulet) in bug #9081.
+
+*atlas-3.2.1 (1 Feb 2002)
+
--- /dev/null
+MD5 5bece91e4fb0d7a006363df2788a75b0 ChangeLog 2259
+MD5 f5d73b0930526c884632fc1ab75615c5 atlas-3.4.2.ebuild 1914
+MD5 5956f674848e2f2f9d68f53ec9a56768 atlas-3.5.11.ebuild 1917
+MD5 6505ca1d849997663502667647a8f9dd atlas-3.6.0.ebuild 1480
+MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156
+MD5 e4430c91578bb055dad2d25c1d880cfa files/digest-atlas-3.4.2 64
+MD5 122116eaa0dea87473680f693552d2df files/digest-atlas-3.5.11 65
+MD5 00df9ae0786ae95b433dcbc355fe46ec files/digest-atlas-3.6.0 64
--- /dev/null
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/atlas/atlas-3.4.2.ebuild,v 1.1 2004/12/28 22:05:21 ribosome Exp $
+
+IUSE=""
+
+DESCRIPTION="Automatically Tuned Linear Algebra Software (BLAS implementation)"
+HOMEPAGE="http://math-atlas.sourceforge.net/"
+SRC_URI="mirror://sourceforge/math-atlas/${PN}${PV}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+# if you change keywords here, please check dev-lang/R
+KEYWORDS="x86 sparc"
+
+DEPEND="virtual/libc"
+
+S=${WORKDIR}/ATLAS
+
+src_compile() {
+ # create a file answer to be redirected to make
+ echo "023" > answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ # the architecture of the processor is determined from the CFLAGS
+ case $CFLAGS in
+ *athlon*)
+ echo "AMD Athlon Processor Identified"
+ echo 2 >> answer;;
+ *pentiumpro*)
+ echo "Pentium Pro Processor Identified"
+ echo 3 >> answer;;
+ *pentium2*)
+ echo "Pentium II Processor Identified"
+ echo 4 >> answer;;
+ *pentium3*)
+ echo "Pentium III Processor Identified"
+ echo 5 >> answer;;
+ *pentium4*)
+ echo "Pentium IV Processor Identified"
+ echo 6 >> answer;;
+ *)
+ echo "Unknown Processor"
+ echo 1 >> answer;;
+ esac
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+
+ make < answer || die
+ TMPSTR=$(ls Make.Linux*)
+ ATLAS_ARCH=${TMPSTR#'Make.'}
+ make install arch=${ATLAS_ARCH} || die
+}
+
+src_install () {
+ # almost completely copied from the atlas-3.2.1-r1 ebuild
+ cd ${S}/lib/${ATLAS_ARCH}
+
+ insinto /usr/lib
+ dolib.a libatlas.a libcblas.a libf77blas.a liblapack.a
+
+ cd ${S}/include
+ insinto /usr/include
+ doins cblas.h clapack.h
+
+ cd ${S}
+
+ dodoc README INSTALL.txt
+ dodoc doc/*.txt
+ insinto /usr/share/doc/${PN}-${PV}
+ doins doc/*.ps
+ dodoc bin/${ATLAS_ARCH}/INSTALL_LOG/SUMMARY.LOG
+}
--- /dev/null
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/atlas/atlas-3.5.11.ebuild,v 1.1 2004/12/28 22:05:21 ribosome Exp $
+
+IUSE=""
+
+DESCRIPTION="Automatically Tuned Linear Algebra Software (BLAS implementation)"
+HOMEPAGE="http://math-atlas.sourceforge.net/"
+SRC_URI="mirror://sourceforge/math-atlas/${PN}${PV}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+# if you change keywords here, please check dev-lang/R
+KEYWORDS="~x86 ~sparc"
+
+DEPEND="virtual/libc"
+
+S=${WORKDIR}/ATLAS
+
+src_compile() {
+ # create a file answer to be redirected to make
+ echo "023" > answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ # the architecture of the processor is determined from the CFLAGS
+ case $CFLAGS in
+ *athlon*)
+ echo "AMD Athlon Processor Identified"
+ echo 2 >> answer;;
+ *pentiumpro*)
+ echo "Pentium Pro Processor Identified"
+ echo 3 >> answer;;
+ *pentium2*)
+ echo "Pentium II Processor Identified"
+ echo 4 >> answer;;
+ *pentium3*)
+ echo "Pentium III Processor Identified"
+ echo 5 >> answer;;
+ *pentium4*)
+ echo "Pentium IV Processor Identified"
+ echo 6 >> answer;;
+ *)
+ echo "Unknown Processor"
+ echo 1 >> answer;;
+ esac
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+
+ make < answer || die
+ TMPSTR=$(ls Make.Linux*)
+ ATLAS_ARCH=${TMPSTR#'Make.'}
+ make install arch=${ATLAS_ARCH} || die
+}
+
+src_install () {
+ # almost completely copied from the atlas-3.2.1-r1 ebuild
+ cd ${S}/lib/${ATLAS_ARCH}
+
+ insinto /usr/lib
+ dolib.a libatlas.a libcblas.a libf77blas.a liblapack.a
+
+ cd ${S}/include
+ insinto /usr/include
+ doins cblas.h clapack.h
+
+ cd ${S}
+
+ dodoc README INSTALL.txt
+ dodoc doc/*.txt
+ insinto /usr/share/doc/${PN}-${PV}
+ doins doc/*.ps
+ dodoc bin/${ATLAS_ARCH}/INSTALL_LOG/SUMMARY.LOG
+}
--- /dev/null
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/atlas/atlas-3.6.0.ebuild,v 1.1 2004/12/28 22:05:21 ribosome Exp $
+
+IUSE=""
+
+DESCRIPTION="Automatically Tuned Linear Algebra Software (BLAS implementation)"
+HOMEPAGE="http://math-atlas.sourceforge.net/"
+SRC_URI="mirror://sourceforge/math-atlas/${PN}${PV}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+# if you change keywords here, please check dev-lang/R
+KEYWORDS="~x86 ~sparc -amd64"
+
+DEPEND="virtual/libc"
+
+S=${WORKDIR}/ATLAS
+
+src_compile() {
+ # create a file answer to be redirected to make
+ echo "023" > answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+ echo "" >> answer
+
+ make < answer || die
+ TMPSTR=$(ls Make.Linux*)
+ ATLAS_ARCH=${TMPSTR#'Make.'}
+ make install arch=${ATLAS_ARCH} CCFLAG0="${CFLAGS}" \
+ MMFLAGS="${CFLAGS}" XCCFLAGS='$(CDEFS) $(CCFLAG0)' || die
+}
+
+src_install () {
+ # almost completely copied from the atlas-3.2.1-r1 ebuild
+ cd ${S}/lib/${ATLAS_ARCH}
+
+ insinto /usr/lib
+ dolib.a libatlas.a libcblas.a libf77blas.a liblapack.a
+
+ cd ${S}/include
+ insinto /usr/include
+ doins cblas.h clapack.h
+
+ cd ${S}
+
+ dodoc README INSTALL.txt
+ dodoc doc/*.txt
+ insinto /usr/share/doc/${PN}-${PV}
+ doins doc/*.ps
+ dodoc bin/${ATLAS_ARCH}/INSTALL_LOG/SUMMARY.LOG
+}
--- /dev/null
+MD5 db586b509821e0441cfd3b142b11c8ce atlas3.4.2.tar.bz2 1588614
--- /dev/null
+MD5 8d8e5ac75c1d17acca8586d5fe78d26e atlas3.5.11.tar.bz2 1715299
--- /dev/null
+MD5 df2ee2eb65d1c08ee93d04370172c262 atlas3.6.0.tar.bz2 1687723
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+</pkgmetadata>