# HG changeset patch # User John Donoghue # Date 1388775933 18000 # Node ID 3010314a97475e07e0e309ed83ab64f7a5352545 # Parent b5abbada6616ed85afb5c4ce502563c5cb88df26 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. diff -r b5abbada6616 -r 3010314a9747 Makefile.in --- 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) diff -r b5abbada6616 -r 3010314a9747 build_packages.m --- 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 diff -r b5abbada6616 -r 3010314a9747 dist-files.mk --- 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 \ diff -r b5abbada6616 -r 3010314a9747 index.html --- 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 @@ Octave Forge control package + of-control + 1.3.0 + Octave Forge data-smoothing package + + of-general 1.3.2 Octave Forge general package diff -r b5abbada6616 -r 3010314a9747 src/of-data-smoothing.mk --- /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