head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.38 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.36 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.34 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.32 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.30 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.28 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.26 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.24 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.22 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.20 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.18 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.5.0.16 pkgsrc-2007Q3-base:1.5 pkgsrc-2007Q2:1.5.0.14 pkgsrc-2007Q2-base:1.5 pkgsrc-2007Q1:1.5.0.12 pkgsrc-2007Q1-base:1.5 pkgsrc-2006Q4:1.5.0.10 pkgsrc-2006Q4-base:1.5 pkgsrc-2006Q3:1.5.0.8 pkgsrc-2006Q3-base:1.5 pkgsrc-2006Q2:1.5.0.6 pkgsrc-2006Q2-base:1.5 pkgsrc-2006Q1:1.5.0.4 pkgsrc-2006Q1-base:1.5 pkgsrc-2005Q4:1.5.0.2 pkgsrc-2005Q4-base:1.5 pkgsrc-2005Q3:1.4.0.14 pkgsrc-2005Q3-base:1.4 pkgsrc-2005Q2:1.4.0.12 pkgsrc-2005Q2-base:1.4 pkgsrc-2005Q1:1.4.0.10 pkgsrc-2005Q1-base:1.4 pkgsrc-2004Q4:1.4.0.8 pkgsrc-2004Q4-base:1.4 pkgsrc-2004Q3:1.4.0.6 pkgsrc-2004Q3-base:1.4 pkgsrc-2004Q2:1.4.0.4 pkgsrc-2004Q2-base:1.4 pkgsrc-2004Q1:1.4.0.2 pkgsrc-2004Q1-base:1.4 pkgsrc-2003Q4:1.3.0.4 pkgsrc-2003Q4-base:1.3 netbsd-1-6-1:1.3.0.2 netbsd-1-6-1-base:1.3 netbsd-1-6:1.2.0.8 netbsd-1-6-RELEASE-base:1.2 pkgviews:1.2.0.4 pkgviews-base:1.2 buildlink2:1.2.0.2 buildlink2-base:1.2 netbsd-1-5-PATCH003:1.2 netbsd-1-5-PATCH001:1.2 netbsd-1-5-RELEASE:1.1 netbsd-1-4-PATCH003:1.1 netbsd-1-4-PATCH002:1.1 comdex-fall-1999:1.1; locks; strict; comment @# @; 1.5 date 2005.10.12.14.48.44; author drochner; state dead; branches; next 1.4; 1.4 date 2004.02.26.17.43.21; author drochner; state Exp; branches; next 1.3; 1.3 date 2002.09.03.20.31.03; author drochner; state Exp; branches; next 1.2; 1.2 date 2001.03.10.13.46.30; author wiz; state Exp; branches; next 1.1; 1.1 date 99.09.20.04.58.32; author sakamoto; state Exp; branches; next ; desc @@ 1.5 log @update to 1.1.5 changes: + Runs under Python 1.5.2 and newer, including 2.4. You may need additional libraries to build under 1.5.2; see instructions below. + New build procedure. The setup.py file now configures and builds the core library as well as the bindings, in one step. + Added stub drivers for BUFR, FITS, GRIB, HDF5, and WMF files. Stub drivers can identify the file format, but relies on application-provided drivers to read or write images in that format. + Added experimental "LA" mode support. An "LA" image is an "L" image with an attached transparency layer. + Added "RankFilter", "MinFilter", "MedianFilter", and "MaxFilter" classes to the ImageFilter module. + Improved support for applications using multiple threads on systems with multiple processors and/or hyperthreading processors. + Added EXIF GPSInfo read support for JPEG files. + Lots of bug fixes and performance tweaks. pkgsrc note: freetype and tiff support isn't built yet, should be separate pkgs @ text @$NetBSD: patch-aa,v 1.4 2004/02/26 17:43:21 drochner Exp $ --- libImaging/Makefile.in.orig 2003-04-22 18:11:26.000000000 +0200 +++ libImaging/Makefile.in 2004-02-26 18:38:30.000000000 +0100 @@@@ -30,10 +30,10 @@@@ # Other things that are customizable but not by configure INCLDIR= $(srcdir)/. -JPEGINCLUDE= /usr/local/include +JPEGINCLUDE= $(PREFIX)/include OPT= @@OPT@@ #OPT= -g -CFLAGS= $(OPT) -I$(INCLDIR) -I$(JPEGINCLUDE) $(DEFS) +CFLAGS= $(OPT) -I$(INCLDIR) -I$(JPEGINCLUDE) $(DEFS) -fPIC MKDEP= mkdep SHELL= /bin/sh @@@@ -82,7 +82,7 @@@@ all: coretest $(LIB) coretest: coretest.o $(LIB) - $(CC) -o coretest coretest.o $(LIB) $(LIBS) + $(CC) $(LDFLAGS) -o coretest coretest.o $(LIB) $(LIBS) $(LIB): $& $(OBJS) -rm -f $(LIB) @ 1.4 log @build libImaging.a with -fPIC, it goes into a dynamic object @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @update to 1.1.3 changes: + Adapted to Python 1.6, 2.0, 2.1 and 2.2. This version also runs under 1.5.2, but probably not under versions older than that. + To reduce module dependencies, the Tkinter support has been moved to a separate binary module. + The JPEG decoder is more tolerant for broken files. As long as all image data can be read, it won't complain. + An ANTIALIAS downsampling filter has been added. + Includes distutils build script (setup.py) for 2.0 and later. + The usual crop of bug fixes and performance tweaks. @ text @d3 3 a5 3 --- libImaging/Makefile.in.orig Sun Mar 10 17:57:40 2002 +++ libImaging/Makefile.in Tue Sep 3 21:16:00 2002 @@@@ -30,7 +30,7 @@@@ d13 6 a18 2 CFLAGS= $(OPT) -I$(INCLDIR) -I$(JPEGINCLUDE) $(DEFS) @@@@ -81,7 +81,7 @@@@ @ 1.2 log @Update to 1.1.1, provided by Jarkko Torppa in pkg/10807. Major changes since 1.0b1: RGBa support, improved 16bit support, PCX support, improved GIF encoder, and lots of bugfixes. @ text @d3 2 a4 2 --- libImaging/Makefile.in.org Thu Dec 28 00:47:57 2000 +++ libImaging/Makefile.in Thu Dec 28 00:49:51 2000 d14 9 @ 1.1 log @Fix include/library path of jpeglib. @ text @d3 4 a6 3 --- ./libImaging/Makefile.in.orig Sun Jan 10 05:00:22 1999 +++ ./libImaging/Makefile.in Mon Sep 20 09:02:53 1999 @@@@ -31,5 +31,5 @@@@ d13 1 @