diff options
Diffstat (limited to 'math/ploticus/files/patch-Makefile')
-rw-r--r-- | math/ploticus/files/patch-Makefile | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/math/ploticus/files/patch-Makefile b/math/ploticus/files/patch-Makefile deleted file mode 100644 index 6a51610e9335..000000000000 --- a/math/ploticus/files/patch-Makefile +++ /dev/null @@ -1,82 +0,0 @@ ---- Makefile.orig Wed Dec 11 22:24:51 2002 -+++ Makefile Sat Dec 14 01:30:46 2002 -@@ -12,7 +12,7 @@ - ######## Covered by GPL; see the file ./Copyright for details. - - # defaults.. --CC = gcc -+CC ?= gcc - PLATFORM = UNIX - RMCOM = rm -f - XOBJ = x11.o interact.o -@@ -25,14 +25,15 @@ - ######## Choose one of the following. All others should be commented out. - - #### For Solaris 2.x uncomment the following.. --XLIBS = -L/usr/openwin/lib -lX11 --XINCLUDEDIR = -I/usr/openwin/include -+# XLIBS = -L/usr/openwin/lib -lX11 -+# XINCLUDEDIR = -I/usr/openwin/include - - #### For Linux and FreeBSD uncomment the following.. --# XLIBS = -L/usr/X11R6/lib -lX11 --# XINCLUDEDIR = -I/usr/X11R6/include -+XLIBS = -L${X11BASE}/lib -lX11 -+XINCLUDEDIR = -I${X11BASE}/include - #### For FreeBSD uncomment the following and find GD16H or GD18H below and set to -I/usr/local/include --# ADDLIBS = -L/usr/local/lib -+FLAGS = -I${LOCALBASE}/include -+ADDLIBS = -L${LOCALBASE}/lib - - #### For Cygwin uncomment the following.. - # PLATFORM = WIN32 -@@ -79,7 +80,7 @@ - ######## Choose ONE of the following. All others should be commented out. - - #### For pseudo-GIF (only) uncomment the following.. (no libs required) --ploticus: pl -+# ploticus: pl - - #### For PNG (only) uncomment the following.. (you must have libpng and zlib) - # ploticus: plpng -@@ -104,11 +105,11 @@ - #### For JPEG, WBMP, PNG, with FreeType2, using your copy of GD 1.84 or higher, - #### uncomment the following.. (you must have gd 1.84+, libpng, zlib, libjpeg, libfreetype) - #### (set environment var GDFONTPATH to directory containing .ttf files) --# ploticus: plgd18 --# GD18LIBS = -lgd -lpng -lz -ljpeg -lfreetype --# GD18H = --# GDFREETYPE = -DGDFREETYPE --# ZFLAG = -DWZ -+ploticus: plgd18 -+GD18LIBS = -lgd -lpng -lz -ljpeg -lfreetype -+GD18H = -I${LOCALBASE}/include/gd -+GDFREETYPE = -DGDFREETYPE -+ZFLAG = -DWZ - - #### To disable all GD image support (no GIF, PNG, JPEG, etc) uncomment the following.. - # ploticus: plnogd -@@ -126,11 +127,11 @@ - #### To set a hard-coded directory for prefabs files, uncomment & edit the following.. - #### If done, users won't be required to have PLOTICUS_PREFABS environment variable defined. - #### This option not available for win32 --# PREFABS_DIR = "/usr/lib/ploticus" -+PREFABS_DIR = "${PREFIX}/share/ploticus" - - #### For LOCALE support (non-roman alphabets & collation), uncomment the following.. --# LOCALEOBJ = localef.o --# LOCALE_FLAG = -DLOCALE -+LOCALEOBJ = localef.o -+LOCALE_FLAG = -DLOCALE - - #### If you want compressed svg (.svgz), and you selected "GIF only", "GIF & PNG", or "disable GD" above, - #### uncomment the following. You need to have zlib. If necessary change -lz to location of zlib. -@@ -165,7 +166,7 @@ - - LIBS = $(XLIBS) -lm $(ADDLIBS) - --CFLAGS = -DPLOTICUS -D$(PLATFORM) -DTDH_NOREC $(ZFLAG) $(FLAGS) $(LOCALE_FLAG) \ -+CFLAGS += -DPLOTICUS -D$(PLATFORM) -DTDH_NOREC $(ZFLAG) $(FLAGS) $(LOCALE_FLAG) \ - $(NOGDFLAG) $(NOXFLAG) $(XINCLUDEDIR) $(NORLIMFLAG) -DPREFABS_DIR=\"$(PREFABS_DIR)\" - - OBJ = proc_annotate.o proc_areadef.o proc_axis.o proc_bars.o proc_rect.o proc_breakaxis.o \ |