summaryrefslogtreecommitdiffstats
path: root/graphics/povray/files
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-12-05 12:45:59 +0000
committerjkh <jkh@FreeBSD.org>1996-12-05 12:45:59 +0000
commitc4445b8819142588185a18af797ca313ec889c04 (patch)
treebe801fb6e682e91d530072ecd55df7682d450f96 /graphics/povray/files
parent9a8fac28af3cda0581f90ea8a25a41df42a9e815 (diff)
downloadFreeBSD-ports-c4445b8819142588185a18af797ca313ec889c04.zip
FreeBSD-ports-c4445b8819142588185a18af797ca313ec889c04.tar.gz
Update to version 3.0
Submitted-By: Paulo Menezes <paulo@lapa.isr.uc.pt>
Diffstat (limited to 'graphics/povray/files')
-rw-r--r--graphics/povray/files/patch-a22
-rw-r--r--graphics/povray/files/patch-b80
2 files changed, 72 insertions, 30 deletions
diff --git a/graphics/povray/files/patch-a b/graphics/povray/files/patch-a
index 3032690..45f1174 100644
--- a/graphics/povray/files/patch-a
+++ b/graphics/povray/files/patch-a
@@ -1,21 +1,21 @@
-*** source/frame.h Thu Feb 3 10:23:12 1994
---- newsource/frame.h Wed Dec 28 03:28:23 1994
+*** sourceold/optout.h Tue Sep 3 08:55:55 1996
+--- source/optout.h Tue Dec 3 22:51:16 1996
***************
-*** 36,43 ****
- #define POV_RAY_VERSION "2.2"
+*** 37,44 ****
/* This message is for the personal distribution release. */
+
! #define DISTRIBUTION_MESSAGE_1 "This is an unofficial version compiled by:"
! #define DISTRIBUTION_MESSAGE_2 "FILL IN NAME HERE........................."
- #define DISTRIBUTION_MESSAGE_3 "The POV-Ray Team is not responsible for supporting this version."
+ #define DISTRIBUTION_MESSAGE_3 "The POV-Ray Team(tm) is not responsible for supporting this version."
- #ifndef READ_ENV_VAR_BEFORE
---- 36,43 ----
- #define POV_RAY_VERSION "2.2"
+ /* Number of help pages (numbered 0 to MAX_HELP_PAGE). */
+--- 37,44 ----
/* This message is for the personal distribution release. */
+
! #define DISTRIBUTION_MESSAGE_1 "This is an unofficial version compiled for"
-! #define DISTRIBUTION_MESSAGE_2 "FreeBSD."
- #define DISTRIBUTION_MESSAGE_3 "The POV-Ray Team is not responsible for supporting this version."
+! #define DISTRIBUTION_MESSAGE_2 "FreeBSD"
+ #define DISTRIBUTION_MESSAGE_3 "The POV-Ray Team(tm) is not responsible for supporting this version."
- #ifndef READ_ENV_VAR_BEFORE
+ /* Number of help pages (numbered 0 to MAX_HELP_PAGE). */
diff --git a/graphics/povray/files/patch-b b/graphics/povray/files/patch-b
index 082697b..247503c 100644
--- a/graphics/povray/files/patch-b
+++ b/graphics/povray/files/patch-b
@@ -1,24 +1,66 @@
-*** machine/unix/xwindows.mak Sat Oct 9 12:39:46 1993
---- newmachine/unix/xwindows.mak Wed Dec 28 03:27:46 1994
+*** sourceold/unix/makefile Tue Sep 3 08:48:13 1996
+--- source/unix/makefile Tue Dec 3 22:49:24 1996
***************
-*** 16,25 ****
+*** 28,44 ****
+ # Use libXXX.a if you want to force static linking of the libraries.
+ # Use -Llibdir -lXXX if you want to use shared libraries (if they are
+ # available). It doesn't matter if you only have libXXX.a libraries.
+! PNGDIR = $(SRCDIR)/libpng
+! LIBPNGINC = -I$(PNGDIR)
+ #LIBPNGLIB = $(PNGDIR)/libpng.a
+! LIBPNGLIB = -L$(PNGDIR) -lpng
+! #LIBPNGLIB = -L/usr/local/lib -lpng
- # Added for colorx addition. You _do_ have $X11 defined by your .cshrc,
- # don't you?
-! X11 = /usr
- CFLAGS= -c -O
-! LFLAGS = -O $(X11)/lib/libXt.a $(X11)/lib/libXext.a -lX11 \
-! -o povray
- CC = cc
+! ZLIBDIR = $(SRCDIR)/zlib
+! ZLIBINC = -I$(ZLIBDIR)
+ #ZLIBLIB = $(ZLIBDIR)/libz.a
+! ZLIBLIB = -L$(ZLIBDIR) -lz
+! #ZLIBLIB = -L/usr/local/lib -lz
- OBJ = o
---- 16,24 ----
+ # This is the suffix for object files.
+ OBJ = .o
+--- 28,44 ----
+ # Use libXXX.a if you want to force static linking of the libraries.
+ # Use -Llibdir -lXXX if you want to use shared libraries (if they are
+ # available). It doesn't matter if you only have libXXX.a libraries.
+! PNGDIR = #$(SRCDIR)/libpng
+! LIBPNGINC = -I/usr/local/include
+ #LIBPNGLIB = $(PNGDIR)/libpng.a
+! #LIBPNGLIB = -L$(PNGDIR) -lpng
+! LIBPNGLIB = -L/usr/local/lib -lpng
- # Added for colorx addition. You _do_ have $X11 defined by your .cshrc,
- # don't you?
-! X11 = ${X11BASE}
- CFLAGS= -c -O
-! LFLAGS = -O -L${X11}/lib -lXt -lXext -lX11 -o povray
- CC = cc
+! #ZLIBDIR = $(SRCDIR)/zlib
+! #ZLIBINC = -I$(ZLIBDIR)
+ #ZLIBLIB = $(ZLIBDIR)/libz.a
+! #ZLIBLIB = -L$(ZLIBDIR) -lz
+! ZLIBLIB = -lz
- OBJ = o
+ # This is the suffix for object files.
+ OBJ = .o
+***************
+*** 55,61 ****
+ #X11 = /usr/local/X11R6
+ #X11 = /usr/openwin # for some SunOS systems
+ #X11 = /usr/lpp/X11 # for some AIX systems
+! X11 = /usr/X11
+
+ # You probably won't need to change these if you have the X11 variable
+ # above set properly...
+--- 55,61 ----
+ #X11 = /usr/local/X11R6
+ #X11 = /usr/openwin # for some SunOS systems
+ #X11 = /usr/lpp/X11 # for some AIX systems
+! X11 = /usr/X11R6
+
+ # You probably won't need to change these if you have the X11 variable
+ # above set properly...
+***************
+*** 901,907 ****
+ config.h \
+ $(SRCDIR)/frame.h \
+ $(SRCDIR)/optout.h \
+- $(PNGDIR)/png.h \
+ $(SRCDIR)/png_pov.h \
+ $(SRCDIR)/point.h \
+ $(SRCDIR)/povproto.h \
+--- 901,906 ----
OpenPOWER on IntegriCloud