NOTICE: This package has been removed from pkgsrc

Does not support DESTDIR; will be removed after 2013Q4
./math/octave-forge, Extensions to Octave

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 2006.03.17nb9, Package name: octave-forge-2006.03.17nb9, Maintainer: pkgsrc-users

The octave-forge project contains functions for Octave which are not in
the main distribution. While the main Octave distribution is
conservative about accepting new functions and changes, octave-forge is
very open. As a result, be prepared for some lower quality code and
more rapidly changing interfaces to the functions in octave-forge.


Required to run:
[graphics/png] [graphics/jpeg] [lang/g95] [math/octave] [math/gsl]

Required to build:
[pkgtools/x11-links] [devel/libtool-fortran]

Master sites:

SHA1: fca78a6eee1a2d44d2441c9ed9d3ffe3c51689de
RMD160: 0875f4ea9c7d4f3b9b0834decdbf590fe5166fa6
Filesize: 3639.914 KB

Version history: (Expand)


CVS history: (Expand)


   2013-12-31 18:08:11 by Thomas Klausner | Files touched by this commit (171) | Package removed
Log message:
Remove packages that were either BROKEN for more than a year or
BROKEN and explicitly scheduled to be removed after 2013Q4.
   2013-10-24 12:31:02 by Thomas Klausner | Files touched by this commit (13)
Log message:
Mark remaining packages not support DESTDIR as BROKEN as decided
by pkgsrc-pmc.

If you are interested in one of these, please fix it before 2013Q4.
   2013-09-01 14:14:07 by OBATA Akio | Files touched by this commit (33)
Log message:
recursive bump from hdf5 shlib major bump.
   2013-02-16 12:25:34 by Thomas Klausner | Files touched by this commit (1885)
Log message:
Recursive bump for png-1.6.
   2012-08-14 19:07:58 by Aleksej Saushev | Files touched by this commit (19)
Log message:
Mark packages with no staged installation support explicitly \ 
(PKG_DESTDIR_SUPPORT=none).
   2012-05-07 03:54:16 by David A. Holland | Files touched by this commit (473)
Log message:
Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)
It turns out there were a lot of these.
   2011-01-13 14:40:12 by Thomas Klausner | Files touched by this commit (1644)
Log message:
png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.
   2010-12-23 12:45:04 by David Sainty | Files touched by this commit (254)
Log message:
Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in */*; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" \ 
"$i"
    fi
  done
done