* octavefront removed

* rna removed
* octave-2.1.57 added

svn path=/nixpkgs/trunk/; revision=1228
This commit is contained in:
Rob Vermaas
2004-08-05 13:05:38 +00:00
parent a53a262a0c
commit a4215841ac
7 changed files with 21 additions and 56 deletions

View File

@@ -0,0 +1,18 @@
set -x
buildinputs="$autoconf $g77 $texinfo $bison $flex $gperf"
. $stdenv/setup
g77orig=$(cat $g77/nix-support/orig-gcc)
export NIX_LDFLAGS="-rpath $g77orig/lib $NIX_LDFLAGS"
export NIX_STRIP_DEBUG=
export NIX_CFLAGS_COMPILE="-g $NIX_CFLAGS_COMPILE"
tar xvfz $src
cd octave-*
./autogen.sh
./configure --prefix=$out --disable-readline
make
make install
#strip -S $out/lib/*/*.a

View File

@@ -0,0 +1,15 @@
{ stdenv, fetchurl, autoconf, g77, texinfo, bison, flex, gperf }:
assert autoconf != null && texinfo != null
&& bison != null && flex != null && gperf != null;
assert g77.langF77;
stdenv.mkDerivation {
name = "octave-2.1.57";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.octave.org/pub/octave/bleeding-edge/octave-2.1.57.tar.gz ;
md5 = "a0171814e005ce6d77365e7d831eef45";
};
inherit autoconf g77 texinfo bison flex gperf;
}