changeset 5691:cb435a71f36c

Add of-octproj (Bug #60170) * src/of-octproj.mk: new file * Makefile.in, dist-files.mk, index.html: add ref to new package
author John Donoghue <john.donoghue@ieee.org>
date Thu, 04 Mar 2021 14:31:45 -0500
parents 56861485bfcb
children 2e13db1e70ce
files Makefile.in dist-files.mk index.html src/of-octproj.mk
diffstat 4 files changed, 29 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Wed Feb 24 07:44:38 2021 -0500
+++ b/Makefile.in	Thu Mar 04 14:31:45 2021 -0500
@@ -532,7 +532,7 @@
 OCTAVE_FORGE_BASE_URL := 'https://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases'
 ## Packages removed from list because build is broken:
 ## None.
-OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim general signal communications image io statistics control geometry windows linear-algebra sockets data-smoothing fuzzy-logic-toolkit quaternion fits tsa netcdf ltfat database instrument-control generate_html nurbs strings financial stk splines dataframe lssa queueing ga interval nan ocs mapping tisean video zeromq gsl optiminterp dicom sparsersb audio symbolic matgeom)
+OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim general signal communications image io statistics control geometry windows linear-algebra sockets data-smoothing fuzzy-logic-toolkit quaternion fits tsa netcdf ltfat database instrument-control generate_html nurbs strings financial stk splines dataframe lssa queueing ga interval nan ocs mapping tisean video zeromq gsl optiminterp dicom sparsersb audio symbolic matgeom octproj)
 # get ALL deps for all of- packages, regardless of whether building the actual forge package in the installer
 OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(addprefix $(TOP_DIR)/src/,$(addsuffix .mk,$(OCTAVE_FORGE_PACKAGES))),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p)))
 
--- a/dist-files.mk	Wed Feb 24 07:44:38 2021 -0500
+++ b/dist-files.mk	Thu Mar 04 14:31:45 2021 -0500
@@ -510,6 +510,7 @@
   of-ocs-5-no-odepkg.patch \
   of-ocs.mk \
   of-octcdf.mk \
+  of-octproj.mk \
   of-odepkg-1-fixes.patch \
   of-odepkg-2-fixes.patch \
   of-odepkg-3-deprecated.patch \
--- a/index.html	Wed Feb 24 07:44:38 2021 -0500
+++ b/index.html	Thu Mar 04 14:31:45 2021 -0500
@@ -2334,6 +2334,10 @@
         <td class="website"><a href="https://octave.sourceforge.io/">Octave Forge octcdf package</a></td>
     </tr>
     <tr>
+        <td class="package">of-octproj</td>
+        <td class="website"><a href="https://octave.sourceforge.io/">Octave Forge octproj package</a></td>
+    </tr>
+    <tr>
         <td class="package">of-odepkg</td>
         <td class="website"><a href="https://octave.sourceforge.io/">Octave Forge odepkg package</a></td>
     </tr>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/of-octproj.mk	Thu Mar 04 14:31:45 2021 -0500
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := of-octproj
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 2.0.1
+$(PKG)_CHECKSUM := 898747c494b0d0677cb29b3610378b63fbc98206
+$(PKG)_SUBDIR   := octproj-$($(PKG)_VERSION)
+$(PKG)_FILE     := $($(PKG)_SUBDIR).tar.gz
+$(PKG)_URL      := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download'
+$(PKG)_DEPS     := proj
+
+ifeq ($(ENABLE_BINARY_PACKAGES),yes)
+    $(PKG)_DEPS += $(OCTAVE_TARGET)
+endif
+
+define $(PKG)_UPDATE
+    $(OCTAVE_FORGE_PKG_UPDATE)
+endef
+
+define $(PKG)_BUILD
+    $(OCTAVE_FORGE_PKG_BUILD)
+endef