changeset 4100:513a335905f0

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
author John Donoghue
date Thu, 25 Feb 2016 07:40:41 -0500
parents 6c7d570cd9ff
children 29456c29200c
files Makefile.in build_packages.m dist-files.mk index.html src/of-zeromq.mk
diffstat 5 files changed, 29 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)))
 
--- 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
 
--- 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 \
--- 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 @@
         <td class="website"><a href="http://octave.sf.net/">Octave Forge zenity package</a></td>
     </tr>
     <tr>
+        <td class="package">of-zeromq</td>
+        <td class="website"><a href="http://octave.sf.net/">Octave Forge zeromq package</a></td>
+    </tr>
+    <tr>
         <td class="package">stable-octave</td>
         <td class="website"><a href="http://octave.org/">Octave</a></td>
     </tr>
--- /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