- Remove some patches and post-patch.
- Remove USE_AUTOTOOLS=autoconf and patch configure script directly.
- Replace BROKEN with BROKEN_${ARCH}.
- Staging (add DESTDIR support to the makefiles).
- Make sure the port uses its own arpack, blas, lapack and superlu.
14 lines
405 B
Plaintext
14 lines
405 B
Plaintext
--- tools/Makefile.in.orig
|
|
+++ tools/Makefile.in
|
|
@@ -47,8 +47,8 @@
|
|
# ========================== Installation =========================
|
|
|
|
install: tools.algae
|
|
- for f in *.A; do $(INSTALL_DATA) $$f $(tooldir); done
|
|
- $(INSTALL_DATA) tools.algae $(tooldir)
|
|
+ for f in *.A; do $(INSTALL_DATA) $$f $(DESTDIR)$(tooldir); done
|
|
+ $(INSTALL_DATA) tools.algae $(DESTDIR)$(tooldir)
|
|
.PHONY: install
|
|
|
|
uninstall:
|