mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 04:19:17 -04:00
This port generates a makefile and then passes it to "make" via stdin, which makes it different to troubleshoot. When I finally saw the file in order to figure out why several internal static libraries weren't getting built leading to some programs not getting built, I saw a generic static library target made up of variables. fmake likes it; bmake does not. I tried USES+= fmake along with some patching but I must have missed some hardcoded "make" commands because bmake got called again. This software is 20 years old so I finally gave it. It got a stay of execution by getting staged. If somebody wants to study a target that bmake just doesn't get, this is a good place to start.
18 lines
651 B
Text
18 lines
651 B
Text
--- spice3f5/common/conf/defaults.orig 1994-01-29 19:15:53 UTC
|
|
+++ spice3f5/common/conf/defaults
|
|
@@ -105,12 +105,12 @@ OBJ_TOP = $(SYS_DIR)/obj
|
|
# identified as and SYSTEM is the name of the per-system definitions
|
|
# file listed on the "build" command line.
|
|
|
|
-SPICE_DIR = $(TOP1)/$(SYSTEM)
|
|
-SPICE_LIB_DIR = $(SPICE_DIR)/lib
|
|
+SPICE_DIR = ${PREFIX}
|
|
+SPICE_LIB_DIR = $(SPICE_DIR)/share/spice3
|
|
SPICE_EXEC_DIR = $(SPICE_DIR)/bin
|
|
|
|
S_SPICE_DIR = $(SPICE_DIR)
|
|
-S_SPICE_LIB_DIR = $(S_SPICE_DIR)/lib
|
|
+S_SPICE_LIB_DIR = $(S_SPICE_DIR)/share/spice3
|
|
S_SPICE_EXEC_DIR= $(S_SPICE_DIR)/bin
|
|
|
|
# INSTALL_DIRS lists the directories that need to be created before
|