diff options
author | tnn <tnn@pkgsrc.org> | 2007-12-22 19:42:01 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2007-12-22 19:42:01 +0000 |
commit | d244221946cdb810be567ad51742391dd3ebd311 (patch) | |
tree | 6b4061f73a571cb385873514c129d20a0744f119 /graphics/grap/patches | |
parent | 124723b3dedc9d4fd4a1f4d93df7eb6249cd7cc3 (diff) | |
download | pkgsrc-d244221946cdb810be567ad51742391dd3ebd311.tar.gz |
Update to grap-1.41. Summary of changes:
1.41: fix gcc-4.1/4.2 builds problems (this should include PR pkg/34378)
1.40: fixes regressions from 1.38
1.39: gcc-4.1 fixes
1.38: DESTDIR support (also enbled in pkgsrc)
1.37: fixes an EOF bug
1.36: grammar fixes
1.35: lex fixes
1.32: fixes parsing of color modifiers
Diffstat (limited to 'graphics/grap/patches')
-rw-r--r-- | graphics/grap/patches/patch-aa | 20 | ||||
-rw-r--r-- | graphics/grap/patches/patch-ae | 13 |
2 files changed, 10 insertions, 23 deletions
diff --git a/graphics/grap/patches/patch-aa b/graphics/grap/patches/patch-aa index 6221be23201..7c07ea53d5e 100644 --- a/graphics/grap/patches/patch-aa +++ b/graphics/grap/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.3 2003/07/14 07:12:14 jtb Exp $ +$NetBSD: patch-aa,v 1.4 2007/12/22 19:42:01 tnn Exp $ ---- Makefile.in.orig 2003-07-14 07:47:06.000000000 +0100 -+++ Makefile.in 2003-07-14 07:48:40.000000000 +0100 -@@ -31,7 +31,8 @@ +--- Makefile.in.orig 2007-12-18 07:20:38.000000000 +0100 ++++ Makefile.in +@@ -38,7 +38,8 @@ MKDEPFLAGS=@MKDEPFLAGS@; SOURCES=grap.cc grap_lex.cc *.cc DISTDIR=@PACKAGE_TARNAME@-@PACKAGE_VERSION@ @@ -12,7 +12,7 @@ $NetBSD: patch-aa,v 1.3 2003/07/14 07:12:14 jtb Exp $ # To suppress optimization of certain files under g++ where # optimization is costly at compilation time and of minimial use at -@@ -48,7 +49,7 @@ +@@ -55,7 +56,7 @@ SPOTLESSFILES=grap.1 grap.ps grap.man include Makefile.common grap: ${OBJS} @@ -21,7 +21,7 @@ $NetBSD: patch-aa,v 1.3 2003/07/14 07:12:14 jtb Exp $ .l.cc: ${LEX} -o$@ $< -@@ -67,7 +68,7 @@ +@@ -74,7 +75,7 @@ grap_lex.cc: grap_lex.l y.tab.h # that file under g++ by default. If --optimize-grap_tokenizer is # given to configure, no attempt to suppress optimization is made. grap_tokenizer.o: grap_tokenizer.cc @@ -30,11 +30,11 @@ $NetBSD: patch-aa,v 1.3 2003/07/14 07:12:14 jtb Exp $ # flex defines an unused static function. This rule supresses that # warning under g++. -@@ -89,7 +90,6 @@ +@@ -98,7 +99,6 @@ grap.1: grap.doc # The || true lines allow make to continue on systems where install -d # fails on existing directories. install: @INSTALL_DEPS@ - strip grap || true - ${INSTALL} -d ${BINDIR} || true - ${INSTALL} -d ${MANDIR} || true - ${INSTALL} -d ${DEFINESDIR} || true + ${INSTALL} -d ${DESTDIR}${BINDIR} || true + ${INSTALL} -d ${DESTDIR}${MANDIR} || true + ${INSTALL} -d ${DESTDIR}${DEFINESDIR} || true diff --git a/graphics/grap/patches/patch-ae b/graphics/grap/patches/patch-ae deleted file mode 100644 index 2319cc2c5ac..00000000000 --- a/graphics/grap/patches/patch-ae +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2006/12/10 04:53:24 smb Exp $ - ---- grap_draw.h.orig 2006-12-09 23:47:30.000000000 -0500 -+++ grap_draw.h 2006-12-09 23:47:39.000000000 -0500 -@@ -239,7 +239,7 @@ - int yautoscale; // True if the user has not given an explicit y range - string name; // Name of the coordinate system, if any - -- void coord::newpt(double x, double y) { -+ void newpt(double x, double y) { - newx(x); newy(y); - } - void newx(double); |