diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-03-03 12:06:20 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-03-03 12:06:20 +0000 |
commit | adc23fc75e664fe10b0d62ab1bed3ac88479ee1a (patch) | |
tree | dee5b5cb660ad39e46810c0f7000764012e5d104 /math/goblin/files | |
parent | Update distfiles (diff) |
add goblin 2.4a3
A Graph Object Library for Network Programming Problems
Notes
Notes:
svn path=/head/; revision=55478
Diffstat (limited to 'math/goblin/files')
-rw-r--r-- | math/goblin/files/patch-Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/math/goblin/files/patch-Makefile b/math/goblin/files/patch-Makefile new file mode 100644 index 000000000000..3d186f2e83e0 --- /dev/null +++ b/math/goblin/files/patch-Makefile @@ -0,0 +1,40 @@ +--- Makefile.orig Sat Feb 23 07:24:08 2002 ++++ Makefile Sun Mar 3 16:48:58 2002 +@@ -25,13 +25,13 @@ + + # GNU + +-cpp = g++ -c -g -Wall -pedantic -Iinclude $(vflags) ++cpp = g++ -c -Wall -pedantic -Iinclude $(vflags) %%CXXFLAGS%% + # To link with the static library libtcl.*.a +-link = g++ -lm -lpthread ++link = g++ -lm -lpthread %%LIBS%% + # To link with the shared object libtcl.*.so + # link = g++ -lm -Wl,-brtl -lpthreads + # To link shared object +-linkShared = g++ -lm -lpthread -Wl,-shared ++linkShared = g++ -lm -lpthread -Wl,-shared %%LIBS%% + + # xlC + +@@ -46,15 +46,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 + + + #------------------------------------------------------------------------ |