summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2002-07-15 16:46:58 +0000
committerNick Hadaway <raker@gentoo.org>2002-07-15 16:46:58 +0000
commit3339528b8cf557e70b50b6d847c9d5fbd46b307b (patch)
tree3c923dd0b23373e3f8840984e625b18bcd373f06 /app-sci/octave
parentAdded octave unstable to portage. Closes bug #4933 (diff)
downloadhistorical-3339528b8cf557e70b50b6d847c9d5fbd46b307b.tar.gz
historical-3339528b8cf557e70b50b6d847c9d5fbd46b307b.tar.bz2
historical-3339528b8cf557e70b50b6d847c9d5fbd46b307b.zip
clean up old files
Diffstat (limited to 'app-sci/octave')
-rw-r--r--app-sci/octave/files/digest-octave-2.0.161
-rw-r--r--app-sci/octave/octave-2.0.16.ebuild45
2 files changed, 0 insertions, 46 deletions
diff --git a/app-sci/octave/files/digest-octave-2.0.16 b/app-sci/octave/files/digest-octave-2.0.16
deleted file mode 100644
index e4495104242d..000000000000
--- a/app-sci/octave/files/digest-octave-2.0.16
+++ /dev/null
@@ -1 +0,0 @@
-MD5 439e8e70706c875149836146d1ccebe0 octave-2.0.16.tar.bz2 3009214
diff --git a/app-sci/octave/octave-2.0.16.ebuild b/app-sci/octave/octave-2.0.16.ebuild
deleted file mode 100644
index 65dbf7d18cdf..000000000000
--- a/app-sci/octave/octave-2.0.16.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/app-sci/octave/octave-2.0.16.ebuild,v 1.2 2002/07/11 06:30:18 drobbins Exp $
-
-S=${WORKDIR}/${P}
-
-DESCRIPTION="GNU Octave is a high-level language (MatLab compatible) intended for numerical computations."
-
-SRC_URI="ftp://ftp.octave.org/pub/octave/${P}.tar.bz2"
-
-HOMEPAGE="http://www.octave.org/"
-
-DEPEND="virtual/glibc
- >=sys-libs/ncurses-5.2-r3
- >=media-gfx/gnuplot-3.7.1"
-
-PROVIDE="dev-lang/octave"
-
-src_compile() {
-
- local myconf="--enable-shared --enable-dl --enable-lite-kernel"
-
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- ${myconf} || die "./configure failed"
-
- emake || die
-
-}
-
-src_install () {
-
- make \
- prefix=${D}/usr \
- mandir=${D}/usr/share/man \
- infodir=${D}/usr/share/info \
- install || die
-
- dodoc BUGS COPYING ChangeLog* INSTALL* NEWS* PROJECTS README* ROADMAP \
- SENDING-PATCHES THANKS
-
-}