diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-04-24 16:03:09 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-04-24 16:03:09 +0000 |
commit | 07390593853759547b543f09f93eb68584964b74 (patch) | |
tree | 7f944c62ff432645b91ad8a4854a08e724a547b8 /graphics | |
parent | 37b160b8ee59c5fc00986205fd38e8b28c6dba2e (diff) | |
download | ports-07390593853759547b543f09f93eb68584964b74.tar.gz ports-07390593853759547b543f09f93eb68584964b74.zip |
Notes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/threeDS/Makefile | 3 | ||||
-rw-r--r-- | graphics/threeDS/distinfo | 2 | ||||
-rw-r--r-- | graphics/threeDS/files/patch-threeDS.py | 24 |
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) + "." |