# HG changeset patch # User John Donoghue # Date 1388951077 18000 # Node ID c43915b7e89114f431a8dd51fe359f45bc23b853 # Parent f79780bcc8437741435b49d9bc96328ff6cf4e16 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. diff -r f79780bcc843 -r c43915b7e891 Makefile.in --- 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) diff -r f79780bcc843 -r c43915b7e891 build_packages.m --- 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 diff -r f79780bcc843 -r c43915b7e891 dist-files.mk --- 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 \ diff -r f79780bcc843 -r c43915b7e891 index.html --- 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 @@ Octave Forge optim package + of-quaternion + 2.2.0 + Octave Forge quaternion package + + of-signal 1.2.2 Octave Forge signal package diff -r f79780bcc843 -r c43915b7e891 src/of-quaternion.mk --- /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