changeset 3404:c43915b7e891

Add octave forge quaternion package * Makefile.am: add quaternion to OCTAVE_FORGE_PACKAGES. * build_packages.m: add quaternion package to install. * dist-files.mk: add of-quaternion.mk. * index.html: add of-quaternion-package. * src/quaternion.mk: New file.
author John Donoghue <john.donoghue@ieee.org>
date Sun, 05 Jan 2014 14:44:37 -0500
parents f79780bcc843
children d87f9dcc59e8
files Makefile.in build_packages.m dist-files.mk index.html src/of-quaternion.mk
diffstat 5 files changed, 28 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Sun Jan 05 13:53:15 2014 -0500
+++ b/Makefile.in	Sun Jan 05 14:44:37 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 data-smoothing fuzzy-logic-toolkit)
+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 fuzzy-logic-toolkit quaternion)
 
 MAKE_SHARED_FROM_STATIC := \
   $(TOP_DIR)/tools/make-shared-from-static $(MAKE_SHARED_FROM_STATIC_OPTIONS)
--- a/build_packages.m	Sun Jan 05 13:53:15 2014 -0500
+++ b/build_packages.m	Sun Jan 05 14:44:37 2014 -0500
@@ -20,4 +20,5 @@
 pkg install -global -auto actuarial-1.1.0.tar.gz
 pkg install -global -auto data-smoothing-1.3.0.tar.gz
 pkg install -global fuzzy-logic-toolkit-0.4.2.tar.gz
+pkg install -global quaternion-2.2.0.tar.gz
 
--- a/dist-files.mk	Sun Jan 05 13:53:15 2014 -0500
+++ b/dist-files.mk	Sun Jan 05 14:44:37 2014 -0500
@@ -396,6 +396,7 @@
   of-odepkg.mk \
   of-optim-1-fixes.patch \
   of-optim.mk \
+  of-quaternion.mk \
   of-signal.mk \
   of-sockets.mk \
   of-sockets-1-fixes.patch \
--- a/index.html	Sun Jan 05 13:53:15 2014 -0500
+++ b/index.html	Sun Jan 05 14:44:37 2014 -0500
@@ -2008,6 +2008,11 @@
         <td id="of-optim-website"><a href="http://octave.sf.net/">Octave Forge optim package</a></td>
     </tr>
     <tr>
+        <td id="of-quaternion-package">of-quaternion</td>
+        <td id="of-quaternion-version">2.2.0</td>
+        <td id="of-quaternion-website"><a href="http://octave.sf.net/">Octave Forge quaternion package</a></td>
+    </tr>
+    <tr>
         <td id="of-signal-package">of-signal</td>
         <td id="of-signal-version">1.2.2</td>
         <td id="of-signal-website"><a href="http://octave.sf.net/">Octave Forge signal package</a></td>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/of-quaternion.mk	Sun Jan 05 14:44:37 2014 -0500
@@ -0,0 +1,20 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := of-quaternion
+$(PKG)_IGNORE   :=
+$(PKG)_CHECKSUM := a0812bb1891913dc51e1285f18c4350f662799cf
+$(PKG)_REMOTE_SUBDIR := 
+$(PKG)_SUBDIR   := quaternion
+$(PKG)_FILE     := quaternion-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL      := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download'
+$(PKG)_DEPS     := 
+
+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