summaryrefslogtreecommitdiff
path: root/graphics/threeDS
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2002-04-24 16:03:09 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2002-04-24 16:03:09 +0000
commit07390593853759547b543f09f93eb68584964b74 (patch)
tree7f944c62ff432645b91ad8a4854a08e724a547b8 /graphics/threeDS
parentThere is no giconv binary anymore. (diff)
Update to 0.3.1.
Notes
Notes: svn path=/head/; revision=58064
Diffstat (limited to 'graphics/threeDS')
-rw-r--r--graphics/threeDS/Makefile3
-rw-r--r--graphics/threeDS/distinfo2
-rw-r--r--graphics/threeDS/files/patch-threeDS.py24
3 files changed, 2 insertions, 27 deletions
diff --git a/graphics/threeDS/Makefile b/graphics/threeDS/Makefile
index 434fdf7f210e..8c8b7317fbb3 100644
--- a/graphics/threeDS/Makefile
+++ b/graphics/threeDS/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= threeDS
-PORTVERSION= 0.2
-PORTREVISION= 1
+PORTVERSION= 0.3.1
CATEGORIES= graphics python
MASTER_SITES= http://www.demonseed.net/~jp/code/threeDS/
diff --git a/graphics/threeDS/distinfo b/graphics/threeDS/distinfo
index 719655040277..86e4dfb50a0e 100644
--- a/graphics/threeDS/distinfo
+++ b/graphics/threeDS/distinfo
@@ -1 +1 @@
-MD5 (threeDS-0.2.tar.gz) = 0aa2e1d610f21208f08d328a6fbc2633
+MD5 (threeDS-0.3.1.tar.gz) = d615b23a12a0dd0bb9d91d4965ef47dc
diff --git a/graphics/threeDS/files/patch-threeDS.py b/graphics/threeDS/files/patch-threeDS.py
deleted file mode 100644
index a593642562c2..000000000000
--- a/graphics/threeDS/files/patch-threeDS.py
+++ /dev/null
@@ -1,24 +0,0 @@
-
-$FreeBSD$
-
---- threeDS.py 2001/01/18 19:26:14 1.1
-+++ threeDS.py 2001/01/18 19:26:19
-@@ -82,7 +82,7 @@
- self.imgfile = readStr(f)
- # print "texture: " + self.imgfile
- try:
-- from Imaging import Image
-+ from PIL import Image
- except:
- print 'Can\'t load texture without PIL!!'
- continue
-@@ -370,7 +370,8 @@
-
- def __init__(self, filename):
- (path, filename) = os.path.split(filename)
-- os.chdir(path)
-+ if path != '':
-+ os.chdir(path)
- f = open(filename, "rb")
- if f is None:
- print "error loading " + str(filename) + "."