aboutsummaryrefslogtreecommitdiff
path: root/graphics/ruby-graph
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-10-27 12:02:31 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-10-27 12:02:31 +0000
commite3d2c592b37f10fe219dce160c19c01d32e69790 (patch)
tree049b2fd07a050f34a881a9c47fba8ee1c126c1bf /graphics/ruby-graph
parentb519877a486351c2daa91e9fd3a34e38975b0b8e (diff)
downloadports-e3d2c592b37f10fe219dce160c19c01d32e69790.tar.gz
ports-e3d2c592b37f10fe219dce160c19c01d32e69790.zip
Notes
Diffstat (limited to 'graphics/ruby-graph')
-rw-r--r--graphics/ruby-graph/Makefile2
-rw-r--r--graphics/ruby-graph/distinfo2
-rw-r--r--graphics/ruby-graph/files/patch-install.rb16
3 files changed, 2 insertions, 18 deletions
diff --git a/graphics/ruby-graph/Makefile b/graphics/ruby-graph/Makefile
index 7b522244cb42..2e87a5710cc7 100644
--- a/graphics/ruby-graph/Makefile
+++ b/graphics/ruby-graph/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= graph
-PORTVERSION= 0.1.1
+PORTVERSION= 0.1.4
CATEGORIES= graphics ruby
MASTER_SITES= http://rockit.sourceforge.net/subprojects/graphr/
MASTER_SITE_SUBDIR= knu
diff --git a/graphics/ruby-graph/distinfo b/graphics/ruby-graph/distinfo
index ba1283dad823..329003617032 100644
--- a/graphics/ruby-graph/distinfo
+++ b/graphics/ruby-graph/distinfo
@@ -1 +1 @@
-MD5 (ruby/graphr-0-1-1.tar.gz) = 37700fd1085ab061181769b6e93d1873
+MD5 (ruby/graphr-0-1-4.tar.gz) = b06e1dbd7f0c89270bedc4a1e59436b6
diff --git a/graphics/ruby-graph/files/patch-install.rb b/graphics/ruby-graph/files/patch-install.rb
deleted file mode 100644
index 48e2d2ad877f..000000000000
--- a/graphics/ruby-graph/files/patch-install.rb
+++ /dev/null
@@ -1,16 +0,0 @@
---- install.rb.orig Tue Oct 23 23:42:01 2001
-+++ install.rb Wed Oct 24 00:52:40 2001
-@@ -18,12 +18,11 @@
- def install
- begin
- File.makedirs( DESTDIR )
-- Dir.chdir(SRC_BASE) do
-+ Dir.chdir(SRC_BASE)
- Find.find(SRC) do |file|
- dst = File.join( INSTDIR, file )
- File.install(file, dst, 0644, true) if file =~ /.rb$/
- end
-- end
- rescue
- puts $!
- end