summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorDirk Froemberg <dirk@FreeBSD.org>1998-12-30 11:48:35 +0000
committerDirk Froemberg <dirk@FreeBSD.org>1998-12-30 11:48:35 +0000
commitd534314e0d2281d1bbcc9f3cb4cde48c19e0315b (patch)
tree2286b2ff7364f2d72362fe01245f3915ee6c33f8 /graphics
parentUse GNU poll implementation instead of system poll. We don't yet (diff)
- Upgrade to 3.0.1
- set MAINTAINER to kkennawa@physics.adelaide.edu.au - honor CFLAGS CHANGES not included in PR ports/9240: - add USE_XLIB - remove version string from pkg/COMMENT PR: ports/9240 Submitted by: Kris Kennaway <kkennawa@physics.adelaide.edu.au>
Notes
Notes: svn path=/head/; revision=15730
Diffstat (limited to 'graphics')
-rw-r--r--graphics/povray/Makefile24
-rw-r--r--graphics/povray/distinfo2
-rw-r--r--graphics/povray/files/patch-b21
-rw-r--r--graphics/povray/pkg-comment2
-rw-r--r--graphics/povray36/Makefile24
-rw-r--r--graphics/povray36/distinfo2
-rw-r--r--graphics/povray36/files/patch-b21
-rw-r--r--graphics/povray36/pkg-comment2
-rw-r--r--graphics/povray37/Makefile24
-rw-r--r--graphics/povray37/distinfo2
-rw-r--r--graphics/povray37/files/patch-b21
-rw-r--r--graphics/povray37/pkg-comment2
12 files changed, 105 insertions, 42 deletions
diff --git a/graphics/povray/Makefile b/graphics/povray/Makefile
index 70f772740654..1b3fc2014880 100644
--- a/graphics/povray/Makefile
+++ b/graphics/povray/Makefile
@@ -1,25 +1,25 @@
# New ports collection makefile for: POV-Ray
-# Version required: 3.3
+# Version required: 3.0.1
# Date created: 3 Dec 1996
# Whom: paulo@isr.uc.pt
#
-# $Id: Makefile,v 1.10 1998/09/15 11:57:42 asami Exp $
+# $Id: Makefile,v 1.11 1998/09/17 00:50:48 asami Exp $
#
-DISTNAME= povray3
-PKGNAME= povray-3.0
+DISTNAME= povray3
+PKGNAME= povray-3.0.1
CATEGORIES= graphics
-MASTER_SITES= ftp://povray.cdrom.com/pub/povray/Official-3.0/Unix/ \
- ftp://www.hensa.ac.uk/mirrors/povray/povray/Official-3.0/Unix/\
- ftp://ftp.univ-lille1.fr/pub/povray/Official-3.0/Unix/
-DISTFILES= povuni_s.tgz povuni_d.tgz
+MASTER_SITES= ftp://ftp.povray.org/pub/povray/Old-Versions/Official-3.0/Unix/ \
+ ftp://www.hensa.ac.uk/mirrors/povray/Old-Versions/Official-3.0/Unix/\
+ ftp://ftp.fh-aachen.de/pub/Graphics/mirror/ftp.povray.org/povray/Old-Versions/Official-3.0/Unix/ \
+ ftp://ftp.kappa.ro/pub/Linux/Graphics/Editors/povray/
+DISTFILES= povuni_s.tgz povuni_d.tgz
-MAINTAINER= ports@freebsd.org
+MAINTAINER= kkennawa@physics.adelaide.edu.au
-LIB_DEPENDS= png.2:${PORTSDIR}/graphics/png
-
-BROKEN= checksum
+LIB_DEPENDS= png.2:${PORTSDIR}/graphics/png
+USE_XLIB= yes
MAN1= povray.1
POVLIB= ${PREFIX}/lib/povray3
diff --git a/graphics/povray/distinfo b/graphics/povray/distinfo
index 1bd8c197a915..b1cc6519ea01 100644
--- a/graphics/povray/distinfo
+++ b/graphics/povray/distinfo
@@ -1,2 +1,2 @@
-MD5 (povuni_s.tgz) = d4abb22e4d90dda2c58c507bf7e1575c
MD5 (povuni_d.tgz) = 8b0d2663b9d1f2989f1233d35133a32a
+MD5 (povuni_s.tgz) = d4abb22e4d90dda2c58c507bf7e1575c
diff --git a/graphics/povray/files/patch-b b/graphics/povray/files/patch-b
index 247503c48f7b..2e9f944620b7 100644
--- a/graphics/povray/files/patch-b
+++ b/graphics/povray/files/patch-b
@@ -64,3 +64,24 @@
$(SRCDIR)/point.h \
$(SRCDIR)/povproto.h \
--- 901,906 ----
+*** source/unix/makefile~ Wed Dec 30 16:07:40 1998
+--- source/unix/makefile Wed Dec 30 16:09:21 1998
+***************
+*** 79,85 ****
+ # for compiles unless you are debugging new code, as it slows things down.
+ # The option -DPOV_COMMENTS enables informational comments in PNG and PPM
+ # format output files (see png_pov.c and ppm.c for more info).
+! CFLAGS = -O2 -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" $(SRCINC) $(LIBPNGINC) $(ZLIBINC) $(XLIBINC)
+ LFLAGS = $(LIBPNGLIB) $(ZLIBLIB) -lm
+
+ # Linux compiler flags
+--- 79,87 ----
+ # for compiles unless you are debugging new code, as it slows things down.
+ # The option -DPOV_COMMENTS enables informational comments in PNG and PPM
+ # format output files (see png_pov.c and ppm.c for more info).
+! CFLAGS ?= -O2
+! CFLAGS += -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" $(SRCINC) $(LIBPNGINC) $(ZLIBINC) $(XLIBINC)
+!
+ LFLAGS = $(LIBPNGLIB) $(ZLIBLIB) -lm
+
+ # Linux compiler flags
diff --git a/graphics/povray/pkg-comment b/graphics/povray/pkg-comment
index b3970abf9f04..3de72a33187b 100644
--- a/graphics/povray/pkg-comment
+++ b/graphics/povray/pkg-comment
@@ -1 +1 @@
-Persistence of Vision Ray Tracer Version 3.0
+Persistence of Vision Ray Tracer
diff --git a/graphics/povray36/Makefile b/graphics/povray36/Makefile
index 70f772740654..1b3fc2014880 100644
--- a/graphics/povray36/Makefile
+++ b/graphics/povray36/Makefile
@@ -1,25 +1,25 @@
# New ports collection makefile for: POV-Ray
-# Version required: 3.3
+# Version required: 3.0.1
# Date created: 3 Dec 1996
# Whom: paulo@isr.uc.pt
#
-# $Id: Makefile,v 1.10 1998/09/15 11:57:42 asami Exp $
+# $Id: Makefile,v 1.11 1998/09/17 00:50:48 asami Exp $
#
-DISTNAME= povray3
-PKGNAME= povray-3.0
+DISTNAME= povray3
+PKGNAME= povray-3.0.1
CATEGORIES= graphics
-MASTER_SITES= ftp://povray.cdrom.com/pub/povray/Official-3.0/Unix/ \
- ftp://www.hensa.ac.uk/mirrors/povray/povray/Official-3.0/Unix/\
- ftp://ftp.univ-lille1.fr/pub/povray/Official-3.0/Unix/
-DISTFILES= povuni_s.tgz povuni_d.tgz
+MASTER_SITES= ftp://ftp.povray.org/pub/povray/Old-Versions/Official-3.0/Unix/ \
+ ftp://www.hensa.ac.uk/mirrors/povray/Old-Versions/Official-3.0/Unix/\
+ ftp://ftp.fh-aachen.de/pub/Graphics/mirror/ftp.povray.org/povray/Old-Versions/Official-3.0/Unix/ \
+ ftp://ftp.kappa.ro/pub/Linux/Graphics/Editors/povray/
+DISTFILES= povuni_s.tgz povuni_d.tgz
-MAINTAINER= ports@freebsd.org
+MAINTAINER= kkennawa@physics.adelaide.edu.au
-LIB_DEPENDS= png.2:${PORTSDIR}/graphics/png
-
-BROKEN= checksum
+LIB_DEPENDS= png.2:${PORTSDIR}/graphics/png
+USE_XLIB= yes
MAN1= povray.1
POVLIB= ${PREFIX}/lib/povray3
diff --git a/graphics/povray36/distinfo b/graphics/povray36/distinfo
index 1bd8c197a915..b1cc6519ea01 100644
--- a/graphics/povray36/distinfo
+++ b/graphics/povray36/distinfo
@@ -1,2 +1,2 @@
-MD5 (povuni_s.tgz) = d4abb22e4d90dda2c58c507bf7e1575c
MD5 (povuni_d.tgz) = 8b0d2663b9d1f2989f1233d35133a32a
+MD5 (povuni_s.tgz) = d4abb22e4d90dda2c58c507bf7e1575c
diff --git a/graphics/povray36/files/patch-b b/graphics/povray36/files/patch-b
index 247503c48f7b..2e9f944620b7 100644
--- a/graphics/povray36/files/patch-b
+++ b/graphics/povray36/files/patch-b
@@ -64,3 +64,24 @@
$(SRCDIR)/point.h \
$(SRCDIR)/povproto.h \
--- 901,906 ----
+*** source/unix/makefile~ Wed Dec 30 16:07:40 1998
+--- source/unix/makefile Wed Dec 30 16:09:21 1998
+***************
+*** 79,85 ****
+ # for compiles unless you are debugging new code, as it slows things down.
+ # The option -DPOV_COMMENTS enables informational comments in PNG and PPM
+ # format output files (see png_pov.c and ppm.c for more info).
+! CFLAGS = -O2 -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" $(SRCINC) $(LIBPNGINC) $(ZLIBINC) $(XLIBINC)
+ LFLAGS = $(LIBPNGLIB) $(ZLIBLIB) -lm
+
+ # Linux compiler flags
+--- 79,87 ----
+ # for compiles unless you are debugging new code, as it slows things down.
+ # The option -DPOV_COMMENTS enables informational comments in PNG and PPM
+ # format output files (see png_pov.c and ppm.c for more info).
+! CFLAGS ?= -O2
+! CFLAGS += -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" $(SRCINC) $(LIBPNGINC) $(ZLIBINC) $(XLIBINC)
+!
+ LFLAGS = $(LIBPNGLIB) $(ZLIBLIB) -lm
+
+ # Linux compiler flags
diff --git a/graphics/povray36/pkg-comment b/graphics/povray36/pkg-comment
index b3970abf9f04..3de72a33187b 100644
--- a/graphics/povray36/pkg-comment
+++ b/graphics/povray36/pkg-comment
@@ -1 +1 @@
-Persistence of Vision Ray Tracer Version 3.0
+Persistence of Vision Ray Tracer
diff --git a/graphics/povray37/Makefile b/graphics/povray37/Makefile
index 70f772740654..1b3fc2014880 100644
--- a/graphics/povray37/Makefile
+++ b/graphics/povray37/Makefile
@@ -1,25 +1,25 @@
# New ports collection makefile for: POV-Ray
-# Version required: 3.3
+# Version required: 3.0.1
# Date created: 3 Dec 1996
# Whom: paulo@isr.uc.pt
#
-# $Id: Makefile,v 1.10 1998/09/15 11:57:42 asami Exp $
+# $Id: Makefile,v 1.11 1998/09/17 00:50:48 asami Exp $
#
-DISTNAME= povray3
-PKGNAME= povray-3.0
+DISTNAME= povray3
+PKGNAME= povray-3.0.1
CATEGORIES= graphics
-MASTER_SITES= ftp://povray.cdrom.com/pub/povray/Official-3.0/Unix/ \
- ftp://www.hensa.ac.uk/mirrors/povray/povray/Official-3.0/Unix/\
- ftp://ftp.univ-lille1.fr/pub/povray/Official-3.0/Unix/
-DISTFILES= povuni_s.tgz povuni_d.tgz
+MASTER_SITES= ftp://ftp.povray.org/pub/povray/Old-Versions/Official-3.0/Unix/ \
+ ftp://www.hensa.ac.uk/mirrors/povray/Old-Versions/Official-3.0/Unix/\
+ ftp://ftp.fh-aachen.de/pub/Graphics/mirror/ftp.povray.org/povray/Old-Versions/Official-3.0/Unix/ \
+ ftp://ftp.kappa.ro/pub/Linux/Graphics/Editors/povray/
+DISTFILES= povuni_s.tgz povuni_d.tgz
-MAINTAINER= ports@freebsd.org
+MAINTAINER= kkennawa@physics.adelaide.edu.au
-LIB_DEPENDS= png.2:${PORTSDIR}/graphics/png
-
-BROKEN= checksum
+LIB_DEPENDS= png.2:${PORTSDIR}/graphics/png
+USE_XLIB= yes
MAN1= povray.1
POVLIB= ${PREFIX}/lib/povray3
diff --git a/graphics/povray37/distinfo b/graphics/povray37/distinfo
index 1bd8c197a915..b1cc6519ea01 100644
--- a/graphics/povray37/distinfo
+++ b/graphics/povray37/distinfo
@@ -1,2 +1,2 @@
-MD5 (povuni_s.tgz) = d4abb22e4d90dda2c58c507bf7e1575c
MD5 (povuni_d.tgz) = 8b0d2663b9d1f2989f1233d35133a32a
+MD5 (povuni_s.tgz) = d4abb22e4d90dda2c58c507bf7e1575c
diff --git a/graphics/povray37/files/patch-b b/graphics/povray37/files/patch-b
index 247503c48f7b..2e9f944620b7 100644
--- a/graphics/povray37/files/patch-b
+++ b/graphics/povray37/files/patch-b
@@ -64,3 +64,24 @@
$(SRCDIR)/point.h \
$(SRCDIR)/povproto.h \
--- 901,906 ----
+*** source/unix/makefile~ Wed Dec 30 16:07:40 1998
+--- source/unix/makefile Wed Dec 30 16:09:21 1998
+***************
+*** 79,85 ****
+ # for compiles unless you are debugging new code, as it slows things down.
+ # The option -DPOV_COMMENTS enables informational comments in PNG and PPM
+ # format output files (see png_pov.c and ppm.c for more info).
+! CFLAGS = -O2 -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" $(SRCINC) $(LIBPNGINC) $(ZLIBINC) $(XLIBINC)
+ LFLAGS = $(LIBPNGLIB) $(ZLIBLIB) -lm
+
+ # Linux compiler flags
+--- 79,87 ----
+ # for compiles unless you are debugging new code, as it slows things down.
+ # The option -DPOV_COMMENTS enables informational comments in PNG and PPM
+ # format output files (see png_pov.c and ppm.c for more info).
+! CFLAGS ?= -O2
+! CFLAGS += -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" $(SRCINC) $(LIBPNGINC) $(ZLIBINC) $(XLIBINC)
+!
+ LFLAGS = $(LIBPNGLIB) $(ZLIBLIB) -lm
+
+ # Linux compiler flags
diff --git a/graphics/povray37/pkg-comment b/graphics/povray37/pkg-comment
index b3970abf9f04..3de72a33187b 100644
--- a/graphics/povray37/pkg-comment
+++ b/graphics/povray37/pkg-comment
@@ -1 +1 @@
-Persistence of Vision Ray Tracer Version 3.0
+Persistence of Vision Ray Tracer