Port changes: * Change LICENSE to GPLv3: LGPL3+ combined with GPLv1+ yields GPLv3 * Remove some unnecessary patches, also correct patch, binaries don't change
23 lines
810 B
Plaintext
23 lines
810 B
Plaintext
--- makefile.orig 2018-08-17 17:13:08 UTC
|
|
+++ makefile
|
|
@@ -10,7 +10,9 @@ ROOT := $(PWD)
|
|
.PHONY: default misc all
|
|
default: dftb+ modes waveplot
|
|
misc: misc_skderivs misc_slakovalue
|
|
-all: default misc
|
|
+all: print-WITH_DFTD3 print-WITH_MPI print-WITH_SOCKETS print-WITH_ARPACK default misc
|
|
+
|
|
+print-% : ; @echo "Build variable: " $* = $($*)
|
|
|
|
.PHONY: install install_misc install_all
|
|
install: install_dftb+ install_modes install_waveplot install_dptools
|
|
@@ -127,7 +129,7 @@ PYTHON := python
|
|
.PHONY: install_dptools
|
|
install_dptools:
|
|
cd $(ROOT)/tools/dptools \
|
|
- && $(PYTHON) setup.py install --prefix $(INSTALLDIR)
|
|
+ && $(PYTHON) setup.py install $(FREEBSD_PYDISTUTILS_INSTALLARGS)
|
|
|
|
################################################################################
|
|
# Check targets
|