diff options
author | markd <markd@pkgsrc.org> | 2005-11-14 08:42:44 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2005-11-14 08:42:44 +0000 |
commit | c39be6bd328333616171bd4a7492832f9fc5b92a (patch) | |
tree | a7a7ebbb99c3cdac37198226f84badcf0cc6f13f /graphics/pixieplus | |
parent | ecaed34727d595f8eb3d80f7a22c539e2697e5e5 (diff) | |
download | pkgsrc-c39be6bd328333616171bd4a7492832f9fc5b92a.tar.gz |
Fix build when using latest tiff and make explicit the dependency on the
tiff package.
Diffstat (limited to 'graphics/pixieplus')
-rw-r--r-- | graphics/pixieplus/Makefile | 3 | ||||
-rw-r--r-- | graphics/pixieplus/distinfo | 3 | ||||
-rw-r--r-- | graphics/pixieplus/patches/patch-af | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/graphics/pixieplus/Makefile b/graphics/pixieplus/Makefile index 6e0d58c288e..ca9551fa261 100644 --- a/graphics/pixieplus/Makefile +++ b/graphics/pixieplus/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/05/22 20:08:07 jlam Exp $ +# $NetBSD: Makefile,v 1.18 2005/11/14 08:42:44 markd Exp $ # DISTNAME= pixieplus-0.5.4 @@ -20,6 +20,7 @@ GNU_CONFIGURE= YES .include "../../graphics/ImageMagick/buildlink3.mk" .include "../../graphics/kdegraphics3/buildlink3.mk" .include "../../graphics/libungif/buildlink3.mk" +.include "../../graphics/tiff/buildlink3.mk" .include "../../x11/kdelibs3/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/graphics/pixieplus/distinfo b/graphics/pixieplus/distinfo index 20bff8e2ffa..21196ada5e3 100644 --- a/graphics/pixieplus/distinfo +++ b/graphics/pixieplus/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2005/02/24 08:45:11 agc Exp $ +$NetBSD: distinfo,v 1.7 2005/11/14 08:42:44 markd Exp $ SHA1 (pixieplus-0.5.4.tar.gz) = bea6ce3e030fecb9ecceaaf85d155ccc9a4550d5 RMD160 (pixieplus-0.5.4.tar.gz) = 73c164e8bd66f045c09b9396e2ce777d6daca363 @@ -8,3 +8,4 @@ SHA1 (patch-ab) = 8b8530ad5d0827504947d9c798efda2e11e0f415 SHA1 (patch-ac) = 38824b02aba0695e025fe3995f31bc376dd44518 SHA1 (patch-ad) = 7deca58da1d8e181bf62c39f598f696584a1ed26 SHA1 (patch-ae) = e9d4ca1bede5f07d79d2d6a5bc5b2d97f298a93f +SHA1 (patch-af) = 42b4d4dfef5c286ae703ed6b4ce7813865142bf1 diff --git a/graphics/pixieplus/patches/patch-af b/graphics/pixieplus/patches/patch-af new file mode 100644 index 00000000000..acd0089ec7d --- /dev/null +++ b/graphics/pixieplus/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.1 2005/11/14 08:42:44 markd Exp $ + +--- app/imageheaders.cpp.orig 2005-11-14 20:44:06.000000000 +1300 ++++ app/imageheaders.cpp +@@ -90,7 +90,7 @@ bool checkTIFFThumbnail(const char *file + if(TIFFSetDirectory(t, thumbDir)){ + TIFFGetField(t, TIFFTAG_IMAGELENGTH, &height); + img.create(minWidth, height, 32); +- if(!TIFFReadRGBAImage(t, minWidth, height, (unsigned long*) ++ if(!TIFFReadRGBAImage(t, minWidth, height, (uint32*) + img.bits(), 0)) + img.reset(); + else{ |