summaryrefslogtreecommitdiff
path: root/graphics/py-imaging
AgeCommit message (Collapse)AuthorFilesLines
2005-10-12update to 1.1.5drochner5-240/+68
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
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digestsagc1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-07-22add python as categoryrecht1-2/+2
ok'd a while back at pkgsrcCon by agc and wiz
2004-05-23unusedrecht1-19/+0
2004-05-17Garbage collect BUILDLINK_PKGBASE.<pkg> from buildlink3: it is not anymoreseb1-2/+1
used since revision 1.139 of mk/buildlink3/bsd.buildlink3.mk.
2004-05-02Convert to buildlink3.snj1-3/+3
2004-03-29Add a BUILDLINK_PKGBASE.<pkg> definition where it's not equal to <pkg>,jlam1-2/+3
e.g. "BUILDLINK_PKGBASE.gtk?= gtk+". This is mandated by the example buildlink[23].mk files in bsd.buildlink[23].mk.
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-16If the ${PKGBASE} of a package doesn't match the token passed tojlam1-1/+2
BUILDLINK_PACKAGES, then set BUILDLINK_PKGBASE.<pkg> explicitly so that we can map from <pkg> to BUILDLINK_PKGBASE.<pkg>.
2004-03-12Added buildlink3.mk file. Used by new databases/gramps.reed1-0/+23
2004-02-26build libImaging.a with -fPIC, it goes into a dynamic objectdrochner2-8/+12
2003-09-14hange extension.mk to also install optimized files for distutils packages.recht1-1/+68
Inspired by FreeBSD "ports". Fix the PLISTs accordingly. Also, while at it, remove now obsolete compileall.py calls in post-install targets and insure that extension.mk is in included before builinlinks of other Python modules. Discussed with/ok'ed by drochner@.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-27update to 1.1.4drochner4-34/+167
changes: Version 1.1.4 adds improved build scripts, truetype/opentype font support, memory mapping support also for non-Windows platforms, screen and clipboard grabbing on Windows, support for CSS-style color strings, support for IPTC/NAA and EXIF metadata, and more. pkgsrc note: We don't build the truetype component yet -- this might go into a separate pkg to get more finegrained dependencies. (Py-Imaging is supposed to work offline to, ie w/o X11.)
2003-06-07Use @JPEGDIR@ in patch file instead of hardcoding /usr/pkg.jmmv2-4/+4
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-1/+1
2002-10-25forgot a dirrmdrochner1-1/+2
2002-10-24not needed anymoredrochner1-6/+0
2002-10-24install some header files (this got lost recently)drochner3-3/+23
and buildlink2ify them needed (at least) for graphics/sketch
2002-10-09buildlink1 -> buildlink2.wiz1-3/+3
2002-09-21Strip the ".buildlink" from the names of the python application andjlam1-2/+2
extension Makefile fragments, because they really don't have anything to do with the buildlink[12] frameworks. Change all the Makefiles that use application.buildlink.mk and extension.buildlink.mk to use application.mk and extension.mk instead.
2002-09-04-resort to old buildlink - BUILDLINK2 doesn't work yet with Pythondrochner2-132/+130
packages -fix hardwired python2.2 in PLIST
2002-09-03update to 1.1.3drochner6-58/+235
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.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam1-0/+7
buildlink2.mk files back into the main trunk.
2002-02-14update to 1.1.2drochner2-6/+6
Changes: + Adapted to Python 2.1. Among other things, all uses of the "regex" module has been repleased with "re". + Fixed attribute error when reading large PNG files (this bug was introduced in maintenance code released after the 1.1.1 release) + Ignore non-string objects in sys.path + Fixed Image.transform(EXTENT) for negative xoffsets + Fixed loading of image plugins if PIL is installed as a package. (The plugin loader now always looks in the directory where the Image.py module itself is found, even if that directory isn't on the standard search path) + The Png plugin has been added to the list of preloaded standard formats + Fixed bitmap/text drawing in fill mode. + Fixed "getextrema" to work also for multiband images. + Added transparency support for L and P images to the PNG codec. + Improved support for read-only images. The "load" method now sets the "readonly" attribute for memory-mapped images. Operations that modifies an image in place (such as "paste" and drawing operations) creates an in-memory copy of the image, if necessary. (before this change, any attempt to modify a memory-mapped image resulted in a core dump...) + Added special cases for lists everywhere PIL expects a sequence. This should speed up things like "putdata" and drawing operations. + The Image.offset method is deprecated. Use the ImageChops.offset function instead. + Changed ImageChops operators to copy palette and info dictionary from the first image argument.
2002-01-22add this for dependant packagesdrochner1-0/+6
2002-01-19use python buildlink filedrochner2-22/+30
2002-01-02Fer heaven's sake, if you call ${MAKE} manually, prepend ahubertf1-2/+2
"${SETENV} ${MAKE_ENV}" esp. if variables are needed to find includes. How did this work when tested???
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-1/+2
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-6/+4
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-10Update to 1.1.1, provided by Jarkko Torppa in pkg/10807.wiz6-18/+33
Major changes since 1.0b1: RGBa support, improved 16bit support, PCX support, improved GIF encoder, and lots of bugfixes.
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-12-28Update to use python 2.0.wiz2-8/+8
2000-01-02replaced some commands by their ${COMMAND} counterpartswiz1-3/+3
1999-09-20Fix include/library path of jpeglib.sakamoto3-2/+16
1999-04-14Uodate to 1.0b1 and for Python 1.5.2tsarna2-6/+6
1999-03-08s/make/${MAKE}/gagc1-3/+3
1998-12-27Install PIL include files in ${PREFIX}/include/PIL, since it seems sometsarna1-1/+5
other packages may want them.
1998-12-26PIL, the Python Imaging Librarytsarna6-0/+63