# HG changeset patch # User John Donoghue # Date 1456404041 18000 # Node ID 513a335905f0789f5dba9b756123f0402055ddab # Parent 6c7d570cd9ff4ad489df9a9055632babaaf12387 of-zermoq: added package * added src/of-zeromq.mk: new file * Makefile.in: added of-zeromq to octave forge build list * build_packages.m: added zermoq to build * index.html: added of-zermoq target * dist-files.m: added of-zeromq.mk diff -r 6c7d570cd9ff -r 513a335905f0 Makefile.in --- a/Makefile.in Mon Mar 07 10:23:59 2016 -0500 +++ b/Makefile.in Thu Feb 25 07:40:41 2016 -0500 @@ -430,7 +430,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 linear-algebra sockets zenity data-smoothing fuzzy-logic-toolkit quaternion fits fl-core tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings octcdf financial stk splines dataframe lssa queueing ga odepkg interval nan ocs mapping tisean sparsersb video) +OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows linear-algebra sockets zenity data-smoothing fuzzy-logic-toolkit quaternion fits fl-core tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings octcdf financial stk splines dataframe lssa queueing ga odepkg interval nan ocs mapping tisean sparsersb video zeromq) # get ALL deps for all of- packages, regardless of whethe building the actual forge package in the installer OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(wildcard $(TOP_DIR)/src/of-*.mk),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p))) diff -r 6c7d570cd9ff -r 513a335905f0 build_packages.m --- a/build_packages.m Mon Mar 07 10:23:59 2016 -0500 +++ b/build_packages.m Thu Feb 25 07:40:41 2016 -0500 @@ -66,4 +66,5 @@ try_install tisean-0.2.3.tar.gz try_install sparsersb-1.0.0.tar.gz try_install video-1.2.2.tar.gz +try_install zeromq-1.1.0.tar.gz diff -r 6c7d570cd9ff -r 513a335905f0 dist-files.mk --- a/dist-files.mk Mon Mar 07 10:23:59 2016 -0500 +++ b/dist-files.mk Thu Feb 25 07:40:41 2016 -0500 @@ -511,6 +511,7 @@ of-video.mk \ of-windows.mk \ of-zenity.mk \ + of-zeromq.mk \ ogg.mk \ old.mk \ openal-1-fixes.patch \ diff -r 6c7d570cd9ff -r 513a335905f0 index.html --- a/index.html Mon Mar 07 10:23:59 2016 -0500 +++ b/index.html Thu Feb 25 07:40:41 2016 -0500 @@ -2038,6 +2038,10 @@ Octave Forge zenity package + of-zeromq + Octave Forge zeromq package + + stable-octave Octave diff -r 6c7d570cd9ff -r 513a335905f0 src/of-zeromq.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/of-zeromq.mk Thu Feb 25 07:40:41 2016 -0500 @@ -0,0 +1,22 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := of-zeromq +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.1.0 +$(PKG)_CHECKSUM := 7f515820bde522dd1d81b3de4f216c3473410f18 +$(PKG)_REMOTE_SUBDIR := +$(PKG)_SUBDIR := zeromq +$(PKG)_FILE := zeromq-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download' +$(PKG)_DEPS := zeromq + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://$(SOURCEFORGE_MIRROR)/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/' | \ + $(SED) -n 's,.*title="zeromq-\([0-9][^"]*\).tar.gz".*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + $(OCTAVE_FORGE_PKG_BUILD) +endef