diff options
author | joerg <joerg@pkgsrc.org> | 2007-01-20 15:17:20 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-01-20 15:17:20 +0000 |
commit | d8fb9913786a45c82ff97d5e590bb1feb432f25f (patch) | |
tree | 3d933f6bd3ce12da35a22552c19158ebd71d1de9 /graphics | |
parent | 845b21f53edb7960b58e9dd02393ce305d4f30fa (diff) | |
download | pkgsrc-d8fb9913786a45c82ff97d5e590bb1feb432f25f.tar.gz |
Include the FreeType2 component of PIL. Bump revision.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/py-imaging/Makefile | 5 | ||||
-rw-r--r-- | graphics/py-imaging/PLIST | 3 | ||||
-rw-r--r-- | graphics/py-imaging/distinfo | 4 | ||||
-rw-r--r-- | graphics/py-imaging/patches/patch-ab | 11 |
4 files changed, 8 insertions, 15 deletions
diff --git a/graphics/py-imaging/Makefile b/graphics/py-imaging/Makefile index 76cdf4076b0..fdbf6d1149a 100644 --- a/graphics/py-imaging/Makefile +++ b/graphics/py-imaging/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.26 2006/06/20 23:32:36 minskim Exp $ +# $NetBSD: Makefile,v 1.27 2007/01/20 15:17:20 joerg Exp $ DISTNAME= Imaging-1.1.5 PKGNAME= ${PYPKGPREFIX}-imaging-1.1.5 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= graphics python MASTER_SITES= http://effbot.org/downloads/ @@ -21,6 +21,7 @@ post-install: ${PREFIX}/${PYINC}/PIL ) .include "../../devel/zlib/buildlink3.mk" +.include "../../graphics/freetype2/buildlink3.mk" .include "../../lang/python/extension.mk" .include "../../graphics/jpeg/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/graphics/py-imaging/PLIST b/graphics/py-imaging/PLIST index b4ffe5a6334..ac121d9e8c6 100644 --- a/graphics/py-imaging/PLIST +++ b/graphics/py-imaging/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2005/10/12 14:48:44 drochner Exp $ +@comment $NetBSD: PLIST,v 1.8 2007/01/20 15:17:20 joerg Exp $ ${PYINC}/PIL/ImPlatform.h ${PYINC}/PIL/Imaging.h ${PYSITELIB}/PIL.pth @@ -225,5 +225,6 @@ ${PYSITELIB}/PIL/__init__.py ${PYSITELIB}/PIL/__init__.pyc ${PYSITELIB}/PIL/__init__.pyo ${PYSITELIB}/PIL/_imaging.so +${PYSITELIB}/PIL/_imagingft.so @dirrm ${PYINC}/PIL @dirrm ${PYSITELIB}/PIL diff --git a/graphics/py-imaging/distinfo b/graphics/py-imaging/distinfo index a0895f77a51..3deb98d216d 100644 --- a/graphics/py-imaging/distinfo +++ b/graphics/py-imaging/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2005/10/12 14:48:44 drochner Exp $ +$NetBSD: distinfo,v 1.10 2007/01/20 15:17:20 joerg Exp $ SHA1 (python/Imaging-1.1.5.tar.gz) = 06705b31b534a15aef827bccc87dceb9ebc51b9f RMD160 (python/Imaging-1.1.5.tar.gz) = 99ca581f2f96d1112f6c36eccdf96da1ac014a04 Size (python/Imaging-1.1.5.tar.gz) = 429570 bytes -SHA1 (patch-ab) = ccf70356bba6d5628d8cc40c1101dc4338bb6a55 +SHA1 (patch-ab) = 8f2738dd72765490ea124e508331c2b7596d687e diff --git a/graphics/py-imaging/patches/patch-ab b/graphics/py-imaging/patches/patch-ab index 7e269e566df..b67e66a795c 100644 --- a/graphics/py-imaging/patches/patch-ab +++ b/graphics/py-imaging/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.4 2005/10/12 14:48:44 drochner Exp $ +$NetBSD: patch-ab,v 1.5 2007/01/20 15:17:20 joerg Exp $ --- setup.py.orig 2005-03-23 19:16:40.000000000 +0100 +++ setup.py @@ -24,15 +24,6 @@ $NetBSD: patch-ab,v 1.4 2005/10/12 14:48:44 drochner Exp $ add_directory(library_dirs, "/usr/lib") add_directory(include_dirs, "/usr/include") -@@ -210,7 +204,7 @@ class pil_build_ext(build_ext): - if find_library_file(self, "tiff"): - feature.tiff = "tiff" - -- if find_library_file(self, "freetype"): -+ if 0: - # look for freetype2 include files - freetype_version = 0 - for dir in include_dirs: @@ -433,7 +427,7 @@ if __name__ == "__main__": package_dir={"": "PIL"}, packages=[""], |