summaryrefslogtreecommitdiff
path: root/graphics/py-imaging/Makefile
diff options
context:
space:
mode:
authordrochner <drochner>2005-10-12 14:48:44 +0000
committerdrochner <drochner>2005-10-12 14:48:44 +0000
commit01554df697ad819f645c1da27df00faec33092ce (patch)
tree4f9ff0eb26270b990a48f8d6ae554b04aec542f1 /graphics/py-imaging/Makefile
parent73880608364ed434ac83f5029d38816bebbcce9f (diff)
downloadpkgsrc-01554df697ad819f645c1da27df00faec33092ce.tar.gz
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
Diffstat (limited to 'graphics/py-imaging/Makefile')
-rw-r--r--graphics/py-imaging/Makefile17
1 files changed, 4 insertions, 13 deletions
diff --git a/graphics/py-imaging/Makefile b/graphics/py-imaging/Makefile
index 27c5167b5b6..542afe657dd 100644
--- a/graphics/py-imaging/Makefile
+++ b/graphics/py-imaging/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.23 2005/04/11 21:46:08 tv Exp $
+# $NetBSD: Makefile,v 1.24 2005/10/12 14:48:44 drochner Exp $
-DISTNAME= Imaging-1.1.4
-PKGNAME= ${PYPKGPREFIX}-imaging-1.1.4
-PKGREVISION= 1
+DISTNAME= Imaging-1.1.5
+PKGNAME= ${PYPKGPREFIX}-imaging-1.1.5
CATEGORIES= graphics python
MASTER_SITES= http://effbot.org/downloads/
@@ -13,19 +12,11 @@ COMMENT= PIL, the Python Imaging Library
DIST_SUBDIR= python
PYDISTUTILSPKG= yes
PY_PATCHPLIST= yes
-GNU_CONFIGURE= yes
-
-do-configure:
- (cd ${WRKSRC}/libImaging && ${SETENV} ${CONFIGURE_ENV} ./configure \
- ${CONFIGURE_ARGS} && ${SETENV} ${MAKE_ENV} ${MAKE})
- ${SED} "s|@JPEGDIR@|${BUILDLINK_PREFIX.jpeg}|g" <${WRKSRC}/setup.py \
- >${WRKSRC}/setup.py.tmp && ${MV} -f ${WRKSRC}/setup.py.tmp \
- ${WRKSRC}/setup.py
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/${PYINC}/PIL
(cd ${WRKSRC}/libImaging; ${INSTALL_DATA} \
- ImConfig.h ImPlatform.h Imaging.h \
+ ImPlatform.h Imaging.h \
${PREFIX}/${PYINC}/PIL )
.include "../../lang/python/extension.mk"