aboutsummaryrefslogtreecommitdiff
path: root/graphics/GIFgraph/files
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2001-01-27 15:52:40 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2001-01-27 15:52:40 +0000
commit9a9eb8a3700cbe9f23f1236612e0961e2fe4e3c1 (patch)
tree8f593134e88fe814f927dd4ac1e1bc757b6ed4e9 /graphics/GIFgraph/files
parentcdb9101891de5bd45a4421ed80f95cb91683a56f (diff)
downloadports-9a9eb8a3700cbe9f23f1236612e0961e2fe4e3c1.tar.gz
ports-9a9eb8a3700cbe9f23f1236612e0961e2fe4e3c1.zip
Notes
Diffstat (limited to 'graphics/GIFgraph/files')
-rw-r--r--graphics/GIFgraph/files/patch-aa42
1 files changed, 42 insertions, 0 deletions
diff --git a/graphics/GIFgraph/files/patch-aa b/graphics/GIFgraph/files/patch-aa
new file mode 100644
index 000000000000..427c516a837e
--- /dev/null
+++ b/graphics/GIFgraph/files/patch-aa
@@ -0,0 +1,42 @@
+--- GIFgraph./axestype.pm Wed Aug 26 03:37:14 1998
++++ GIFgraph/axestype.pm Tue Jan 23 19:21:04 2001
+@@ -116,7 +116,7 @@
+ $self->draw_data($self->{graph}, $data);
+ $self->draw_legend($self->{graph});
+
+- return $self->{graph}->gif
++ return $self->{graph}->png
+ }
+
+ sub set_x_label_font($) # (fontname)
+--- GIFgraph./pie.pm Wed Aug 26 03:28:51 1998
++++ GIFgraph/pie.pm Tue Jan 23 19:23:09 2001
+@@ -53,7 +53,7 @@
+ $self->draw_pie($self->{graph});
+ $self->draw_data($data, $self->{graph});
+
+- return $self->{graph}->gif;
++ return $self->{graph}->png;
+ }
+
+ sub set_label_font($) # (fontname)
+--- GIFgraph.pm. Wed Aug 26 03:28:48 1998
++++ GIFgraph.pm Tue Jan 23 19:31:49 2001
+@@ -373,7 +373,7 @@
+
+ open(GIFLOGO, $self->{logo}) || return;
+ binmode(GIFLOGO) if ($GIFgraph::needs_binmode);
+- unless ( $glogo = newFromGif GD::Image(\*GIFLOGO) )
++ unless ( $glogo = newFromPng GD::Image(\*GIFLOGO) )
+ {
+ warn "Problems reading $self->{logo}";
+ close(GIFLOGO);
+@@ -465,7 +465,7 @@
+ {
+ my $s = shift;
+
+- return $s->{graph}->gif;
++ return $s->{graph}->png;
+ }
+
+ } # End of package GIFgraph