diff options
author | krion <krion@FreeBSD.org> | 2003-09-03 22:20:58 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-09-03 22:20:58 +0800 |
commit | d43241c7fada0eb5cd939d72bae8725d10ca1141 (patch) | |
tree | e47043978f9e8ef4699bbea211bd7c8a143d99bf /math/goblin/files | |
parent | e20ea946fccbe81bcbc55966b46a669c24ba02ef (diff) | |
download | freebsd-ports-gnome-d43241c7fada0eb5cd939d72bae8725d10ca1141.tar.gz freebsd-ports-gnome-d43241c7fada0eb5cd939d72bae8725d10ca1141.tar.zst freebsd-ports-gnome-d43241c7fada0eb5cd939d72bae8725d10ca1141.zip |
- Update to version 2.6.1
PR: 56322
Submitted by: Ports Fury
Diffstat (limited to 'math/goblin/files')
-rw-r--r-- | math/goblin/files/patch-Makefile | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/math/goblin/files/patch-Makefile b/math/goblin/files/patch-Makefile deleted file mode 100644 index df7bc7a172b9..000000000000 --- a/math/goblin/files/patch-Makefile +++ /dev/null @@ -1,58 +0,0 @@ ---- Makefile.orig Fri May 2 03:21:48 2003 -+++ Makefile Mon May 12 15:32:38 2003 -@@ -26,13 +26,13 @@ -
- # GNU
-
--cpp = g++ -c -g -O5 -Wall -pedantic -Iinclude
-+cpp = $(CXX) -c $(CXXFLAGS) -pedantic -Iinclude
- # To link with the static library libtcl.*.a
--link = g++ -lm
-+link = $(CXX) -lm $(LDFLAGS)
- # To link with the shared object libtcl.*.so
- # link = g++ -lm -Wl,-brtl -bbigtoc
- # To link shared object
--linkShared = g++ -lm -Wl,-shared
-+linkShared = $(CXX) -lm -Wl,-shared $(LDFLAGS)
-
- # xlC
-
-@@ -47,15 +47,15 @@ -
- # Tcl/Tk Release
-
--libtcl = 8.3
--libtk = 8.3
-+libtcl = 83
-+libtk = 83
-
-
- # System Installation
-
--goblin_include_path = /usr/include
--goblin_lib_path = /usr/lib
--goblin_bin_path = /usr/bin
-+goblin_include_path = $(PREFIX)/include
-+goblin_lib_path = $(PREFIX)/lib
-+goblin_bin_path = $(PREFIX)/bin
-
-
- #------------------------------------------------------------------------
-@@ -683,7 +683,7 @@ -
- shared: $(objects) goshMain.o goshGraph.o goshLin.o message.o
- $(linkShared) $(objects) goshMain.o goshGraph.o goshLin.o message.o \
-- -lpthread -o libgoblin.so
-+ -o libgoblin.so
-
-
-
-@@ -691,7 +691,7 @@ -
- gosh: goblin $(gosh_objects)
- $(link) $(gosh_objects) goblin.a \
-- -lpthread -ltcl$(libtcl) -ltk$(libtk) -o gosh
-+ -ltcl$(libtcl) -ltk$(libtk) -o gosh
-
-
-
|