changeset 3392:3010314a9747

Add octave forge data-smoothing package * Makefile.am: add data-smoothing to OCTAVE_FORGE_PACKAGES. * build_packages.m: dd data-smoothing package to install. * dist-files.mk: add of-data-smoothing.mk. * index.html: add of-data-smoothing-package. * src/data-smoothing.mk: New file.
author John Donoghue <john.donoghue@ieee.org>
date Fri, 03 Jan 2014 14:05:33 -0500
parents b5abbada6616
children 166294cad9f0
files Makefile.in build_packages.m dist-files.mk index.html src/of-data-smoothing.mk
diffstat 5 files changed, 28 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Fri Jan 03 10:22:33 2014 -0500
+++ b/Makefile.in	Fri Jan 03 14:05:33 2014 -0500
@@ -350,7 +350,7 @@
 endif
 
 OCTAVE_FORGE_BASE_URL := 'http://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases'
-OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows odepkg linear-algebra sockets zenity actuarial)
+OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows odepkg linear-algebra sockets zenity actuarial data-smoothing)
 
 MAKE_SHARED_FROM_STATIC := \
   $(TOP_DIR)/tools/make-shared-from-static $(MAKE_SHARED_FROM_STATIC_OPTIONS)
--- a/build_packages.m	Fri Jan 03 10:22:33 2014 -0500
+++ b/build_packages.m	Fri Jan 03 14:05:33 2014 -0500
@@ -18,4 +18,5 @@
 pkg install -global -auto sockets-1.0.8.tar.gz
 pkg install -global -auto zenity-0.5.7.tar.gz
 pkg install -global -auto actuarial-1.1.0.tar.gz
+pkg install -global -auto data-smoothing-1.3.0.tar.gz
 
--- a/dist-files.mk	Fri Jan 03 10:22:33 2014 -0500
+++ b/dist-files.mk	Fri Jan 03 14:05:33 2014 -0500
@@ -385,6 +385,7 @@
   of-actuarial.mk \
   of-communications.mk \
   of-control.mk \
+  of-data-smoothing.mk \
   of-general.mk \
   of-geometry.mk \
   of-image.mk \
--- a/index.html	Fri Jan 03 10:22:33 2014 -0500
+++ b/index.html	Fri Jan 03 14:05:33 2014 -0500
@@ -1958,6 +1958,11 @@
         <td id="of-control-website"><a href="http://octave.sf.net/">Octave Forge control package</a></td>
     </tr>
     <tr>
+        <td id="of-data-smoothing-package">of-control</td>
+        <td id="of-data-smoothing-version">1.3.0</td>
+        <td id="of-data-smoothing-website"><a href="http://octave.sf.net/">Octave Forge data-smoothing package</a></td>
+    </tr>
+    <tr>
         <td id="of-general-package">of-general</td>
         <td id="of-general-version">1.3.2</td>
         <td id="of-general-website"><a href="http://octave.sf.net/">Octave Forge general package</a></td>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/of-data-smoothing.mk	Fri Jan 03 14:05:33 2014 -0500
@@ -0,0 +1,20 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := of-data-smoothing
+$(PKG)_IGNORE   :=
+$(PKG)_CHECKSUM := 28fb1233f0db586bccac9317f0f0eff84bb9842e
+$(PKG)_REMOTE_SUBDIR := 
+$(PKG)_SUBDIR   := data-smoothing
+$(PKG)_FILE     := data-smoothing-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL      := http://$(SOURCEFORGE_MIRROR)/octave/$($(PKG)_FILE)?download
+$(PKG)_DEPS     := optim
+
+define $(PKG)_UPDATE
+    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
+    echo $($(PKG)_VERSION)
+endef
+
+define $(PKG)_BUILD
+    $(OCTAVE_FORGE_PKG_BUILD)
+endef