diff options
author | drochner <drochner@pkgsrc.org> | 2007-03-23 20:47:56 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2007-03-23 20:47:56 +0000 |
commit | 31a0d4ff14cb482c50674bf68102fdee3fdfc261 (patch) | |
tree | 31356dc18c72e87d71eb19b9c9a44e6347b915e6 /graphics/py-imagingtk/patches | |
parent | 1c33fcebc15541187e0271561f5f1d35e31baccc (diff) | |
download | pkgsrc-31a0d4ff14cb482c50674bf68102fdee3fdfc261.tar.gz |
update to 1.1.6
changes:
+ Added buffer interface support to the Path constructor
+ Added new ImageMath module.
+ Added pixel access object
+ Added support for duplex scanning to the Sane interface
+ Added save support for Spider images
+ Added float/double support to the TIFF loader
+ Added NumPy array interface support
+ Added experimental "floodfill" function to the ImageDraw module
+ Added threading support for the Sane driver
-bugfixes
Diffstat (limited to 'graphics/py-imagingtk/patches')
-rw-r--r-- | graphics/py-imagingtk/patches/patch-aa | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/graphics/py-imagingtk/patches/patch-aa b/graphics/py-imagingtk/patches/patch-aa index 9c6a1114d57..36e62569643 100644 --- a/graphics/py-imagingtk/patches/patch-aa +++ b/graphics/py-imagingtk/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.2 2005/10/12 14:48:44 drochner Exp $ +$NetBSD: patch-aa,v 1.3 2007/03/23 20:47:58 drochner Exp $ ---- setup.py.orig 2005-03-23 19:16:40.000000000 +0100 +--- setup.py.orig 2006-12-03 12:37:29.000000000 +0100 +++ setup.py -@@ -177,9 +177,6 @@ class pil_build_ext(build_ext): +@@ -193,9 +193,6 @@ class pil_build_ext(build_ext): # # add standard directories @@ -12,7 +12,7 @@ $NetBSD: patch-aa,v 1.2 2005/10/12 14:48:44 drochner Exp $ add_directory(library_dirs, "/usr/lib") add_directory(include_dirs, "/usr/include") -@@ -210,7 +207,7 @@ class pil_build_ext(build_ext): +@@ -226,7 +223,7 @@ class pil_build_ext(build_ext): if find_library_file(self, "tiff"): feature.tiff = "tiff" @@ -20,8 +20,8 @@ $NetBSD: patch-aa,v 1.2 2005/10/12 14:48:44 drochner Exp $ + if 0: # look for freetype2 include files freetype_version = 0 - for dir in include_dirs: -@@ -265,9 +262,10 @@ class pil_build_ext(build_ext): + for dir in self.compiler.include_dirs: +@@ -281,9 +278,10 @@ class pil_build_ext(build_ext): if struct.unpack("h", "\0\1")[0] == 1: defs.append(("WORDS_BIGENDIAN", None)) @@ -35,7 +35,7 @@ $NetBSD: patch-aa,v 1.2 2005/10/12 14:48:44 drochner Exp $ # # additional libraries -@@ -430,10 +428,10 @@ if __name__ == "__main__": +@@ -448,10 +446,10 @@ if __name__ == "__main__": license="Python (MIT style)", long_description=DESCRIPTION, name=NAME, |