diff options
author | Rene Ladan <rene@FreeBSD.org> | 2019-09-05 11:40:24 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2019-09-05 11:40:24 +0000 |
commit | fc31075d85494a429c83dc15560c42efdfe3245d (patch) | |
tree | c57ed201463e2fa5875d2c2ce896968f3d74c56d /math/octave-forge-linear-algebra/files/patch-Makefile | |
parent | mail/mailscanner: drop CLAMAVMODULE support depending on expired mail/p5-Mail... (diff) |
Remove expired ports:
2019-09-04 devel/ace+tao-doc: Broken for more than 6 months
2019-09-04 devel/dfmt: Broken for more than 6 months
2019-09-04 devel/ignition-transport: Broken for more than 6 months
2019-09-04 devel/spin: Broken for more than 6 months
2019-09-04 editors/dexed: Depends on expiring devel/dfmt
2019-09-04 editors/p5-Padre: Depends on expiring x11-toolkits/p5-Wx
2019-09-04 emulators/qemu2: Latest 3.X branch is in ports tree
2019-09-04 games/asc: Broken for more than 6 months
2019-09-04 games/slade: Broken for more than 6 months
2019-09-04 graphics/gimp-wavelet-decompose-plugin: Broken for more than 6 months
2019-09-04 graphics/py-pyembree: Depends on expiring graphics/embree
2019-09-04 irc/irssi-otr: Broken for more than 6 months
2019-09-04 mail/p5-Mail-ClamAV: Broken for more than 6 months
2019-09-04 mail/qmail-ldap: Broken for more than 6 months
2019-09-04 math/fityk: Broken for more than 6 months
2019-09-04 math/octave-forge-econometrics: Broken for more than 6 months
2019-09-04 math/octave-forge-fits: Broken for more than 6 months
2019-09-04 math/octave-forge-linear-algebra: Broken for more than 6 months
2019-09-04 math/octave-forge-mechanics: Broken for more than 6 months
2019-09-04 math/octave-forge-parallel: Broken for more than 6 months
2019-09-04 math/octave-forge-strings: Broken for more than 6 months
2019-09-04 math/octave-forge-tisean: Broken for more than 6 months
2019-09-04 math/octave-forge-video: Broken for more than 6 months
2019-09-04 math/py-yt: Depends on expiring graphics/embree
2019-09-04 misc/gnustep-examples: Broken for more than 6 months
2019-09-04 net/turses: Depends on expiring net/py-tweepy
2019-09-04 security/clamcour: Broken for more than 6 months
2019-09-04 security/honeybadger: Broken for more than 6 months
2019-09-04 sysutils/freefilesync: Broken for more than 6 months
2019-09-04 sysutils/log-courier: Broken for more than 6 months
2019-09-04 textproc/py-orange3-text: Broken for more than 6 months
2019-09-05 www/feedjack: Upstream gone
2019-09-04 www/havp: Broken for more than 6 months
2019-07-31 www/rubygem-webpack-rails-rails5: Upstream no longer maintained, use devel/rubygem-webpacker-rails* instead
2019-09-04 x11-toolkits/p5-Wx-GLCanvas: Depends on expiring x11-toolkits/p5-Wx
2019-09-04 x11-toolkits/p5-Wx-Perl-ProcessStream: Depends on expiring x11-toolkits/p5-Wx
2019-09-04 x11-wm/golem: Broken for more than 6 months
2019-09-04 x11-wm/pawm: Broken for more than 6 months
Notes
Notes:
svn path=/head/; revision=511180
Diffstat (limited to 'math/octave-forge-linear-algebra/files/patch-Makefile')
-rw-r--r-- | math/octave-forge-linear-algebra/files/patch-Makefile | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/math/octave-forge-linear-algebra/files/patch-Makefile b/math/octave-forge-linear-algebra/files/patch-Makefile deleted file mode 100644 index 9619a1f0b1b6..000000000000 --- a/math/octave-forge-linear-algebra/files/patch-Makefile +++ /dev/null @@ -1,83 +0,0 @@ ---- Makefile.orig 2015-01-24 19:54:11 UTC -+++ Makefile -@@ -1,66 +1,24 @@ --sinclude Makeconf -- --ifndef OCTAVE_FORGE --MKOCTFILE = mkoctfile --endif -- --ifndef LAPACK_LIBS --LAPACK_LIBS := $(shell $(MKOCTFILE) -p LAPACK_LIBS) --endif --ifndef BLAS_LIBS --BLAS_LIBS := $(shell $(MKOCTFILE) -p BLAS_LIBS) --endif --LFLAGS := $(shell $(MKOCTFILE) -p LFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) --export LFLAGS -- --DEFINES = -DHAVE_CONFIG_H -Wall --GSVD_OBJECTS = gsvd.o dbleGSVD.o CmplxGSVD.o --GSVD_TARGET = gsvd.oct --GSVD_TEST = gsvd --GSVD_DEPENDS = gsvd.d dbleGSVD.d CmplxGSVD.d -- --OBJECTS = $(GSVD_OBJECTS) --TARGETS = $(GSVD_TARGET) --DEPENDS = $(GSVD_DEPENDS) -- --.PHONY: all test clean count -- --.SUFFIXES: -- --.PRECIOUS: %.d %.o -- --all : $(TARGETS) pgmres.oct -- --$(GSVD_TARGET) : $(GSVD_DEPENDS) $(GSVD_OBJECTS) -- $(MKOCTFILE) $(DEFINES) $(GSVD_OBJECTS) -o $@ ${LAPACK_LIBS} -+MKOCTFILE ?= mkoctfile - --$(GSVD_TEST) : $(GSVD_TARGET) -+OCT_FILES := gsvd.oct pgmres.oct - --ifneq (,$(DEPENDS)) -- sinclude $(DEPENDS) --endif -+GSVD_DEPENDS := dbleGSVD.o CmplxGSVD.o - --%.d:%.cc -- $(MKOCTFILE) $(DEFINES) -M $< -+LAPACK_LIBS ?= $(shell $(MKOCTFILE) -p LAPACK_LIBS) -+BLAS_LIBS ?= $(shell $(MKOCTFILE) -p BLAS_LIBS) - --%.o:%.cc --%.o:%.cc %.d -- $(MKOCTFILE) $(DEFINES) -c $< -+.PHONY: all clean - --%.o:%.f -- $(MKOCTFILE) $(DEFINES) -c $< --%.oct:%.o -- $(MKOCTFILE) $(DEFINES) $< -o $@ -+all: $(OCT_FILES) - - %.oct: %.cc -- mkoctfile $(DEFINES) $< -o $@ ${LAPACK_LIBS} -+ $(MKOCTFILE) $^ - --.phony: test --test: $(GSVD_TEST) -- for i in $^; do echo "test $$i"; done | octave --silent -+%.o: %.cc %.h -+ $(MKOCTFILE) -c $< - --clean: -- rm -f $(TARGETS) $(DEPENDS) $(OBJECTS) octave-core -+gsvd.oct: gsvd.cc $(GSVD_DEPENDS) -+ $(MKOCTFILE) -c $< $(LAPACK_LIBS) $(BLAS_LIBS) - --count: -- wc *{.cc,.h,.f} -+clean: -+ $(RM) *.o *.oct octave-core octave-workspace |