# HG changeset patch # User John Donoghue # Date 1614886305 18000 # Node ID 28e6261e50745574d9b6de7619ed24499a9dafe4 # Parent e657c83a14826f583d709941a8a2bc06e00b1e43 Add of-octproj (Bug #60170) * src/of-octproj.mk: new file * Makefile.in, dist-files.mk, index.html: add ref to new package (grafted from cb435a71f36ce7538829a757eb342adc2ea69250) diff -r e657c83a1482 -r 28e6261e5074 Makefile.in --- 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))) diff -r e657c83a1482 -r 28e6261e5074 dist-files.mk --- a/dist-files.mk Wed Feb 24 07:44:38 2021 -0500 +++ b/dist-files.mk Thu Mar 04 14:31:45 2021 -0500 @@ -506,6 +506,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 \ diff -r e657c83a1482 -r 28e6261e5074 index.html --- a/index.html Wed Feb 24 07:44:38 2021 -0500 +++ b/index.html Thu Mar 04 14:31:45 2021 -0500 @@ -2330,6 +2330,10 @@ Octave Forge octcdf package + of-octproj + Octave Forge octproj package + + of-odepkg Octave Forge odepkg package diff -r e657c83a1482 -r 28e6261e5074 src/of-octproj.mk --- /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