summaryrefslogtreecommitdiff
path: root/graphics/SDL2_image
diff options
context:
space:
mode:
authorwiz <wiz>2016-05-05 11:12:14 +0000
committerwiz <wiz>2016-05-05 11:12:14 +0000
commitfe0d485ff6d641d78f3de96735e5a1508e72f22b (patch)
treef48efd98d660f3eda0a2a102b39ecf01658c760e /graphics/SDL2_image
parentef1cb3206cc8208976b2ecb621bbb0f50fc534ba (diff)
downloadpkgsrc-fe0d485ff6d641d78f3de96735e5a1508e72f22b.tar.gz
Updated SDL2_image to 2.0.1.
Fix pkgconfig file name in override. 2.0.1: Jeffrey Carpenter - Sat Nov 29 12:06:05 2014 * Fixed image colorspace issue on iOS and Mac OS X Sam Lantinga - Sun Jun 15 17:33:46 2014 * Fixed support for transparency in XPM files Davide Coppola - Thu Apr 17 17:30:12 2014 * Fixed building JPEG support on Android David Ludwig - Tue Apr 01 19:40:35 2014 * Added support for building for Windows RT and Windows Phone Timur - Wed Dec 11 21:24:36 2013 * Fixed memory leak in webp image loading Patrice Mandin - Thu Nov 07 19:15:28 2013 * Fixed loading BMP files with large BITMAPINFOHEADER structures Sam Lantinga - Fri Oct 11 21:54:20 2013 * Fixed building with libpng 1.4
Diffstat (limited to 'graphics/SDL2_image')
-rw-r--r--graphics/SDL2_image/Makefile7
-rw-r--r--graphics/SDL2_image/distinfo12
-rw-r--r--graphics/SDL2_image/patches/patch-configure6
3 files changed, 12 insertions, 13 deletions
diff --git a/graphics/SDL2_image/Makefile b/graphics/SDL2_image/Makefile
index 655588d2457..06a7d3c01f7 100644
--- a/graphics/SDL2_image/Makefile
+++ b/graphics/SDL2_image/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2016/01/06 10:46:52 adam Exp $
+# $NetBSD: Makefile,v 1.8 2016/05/05 11:12:14 wiz Exp $
-DISTNAME= SDL2_image-2.0.0
-PKGREVISION= 4
+DISTNAME= SDL2_image-2.0.1
CATEGORIES= graphics devel
MASTER_SITES= http://www.libsdl.org/projects/SDL_image/release/
@@ -16,7 +15,7 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS+= ac_cv_prog_ac_ct_OBJC=${CC:Q}
INSTALLATION_DIRS= bin
-PKGCONFIG_OVERRIDE= SDL_image.pc.in
+PKGCONFIG_OVERRIDE= SDL2_image.pc.in
CHECK_PORTABILITY_SKIP= external/tiff-4.0.3/configure
post-install:
diff --git a/graphics/SDL2_image/distinfo b/graphics/SDL2_image/distinfo
index f6fdf1c1a1e..6683cf272d4 100644
--- a/graphics/SDL2_image/distinfo
+++ b/graphics/SDL2_image/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.2 2015/11/03 21:33:52 agc Exp $
+$NetBSD: distinfo,v 1.3 2016/05/05 11:12:14 wiz Exp $
-SHA1 (SDL2_image-2.0.0.tar.gz) = 20b1b0db9dd540d6d5e40c7da8a39c6a81248865
-RMD160 (SDL2_image-2.0.0.tar.gz) = 1bd3e383bada30852fe1bcc4ac1f5d144a9158ca
-SHA512 (SDL2_image-2.0.0.tar.gz) = 300ff078c4c9a74ccc143692630e9c97e25a223bf80661cd5e7d684a25c6ad7760b20778d492d6cc41521dcd2a00e4a76947cf6dffc679fdbd54f430b3906ea6
-Size (SDL2_image-2.0.0.tar.gz) = 8398016 bytes
+SHA1 (SDL2_image-2.0.1.tar.gz) = 76c5da0a59a77e5160a65a1c8f53bef016bdc373
+RMD160 (SDL2_image-2.0.1.tar.gz) = d9ceaaa5f0e887b3d19986e4de6ef299f21c032b
+SHA512 (SDL2_image-2.0.1.tar.gz) = 99ed5f7b69966cea5fcf9173e7270167c24b55ab459774f10dbf90f26dcb9d5f118971ffd4e583a83148976f44ca166474669398a561169d24ffba80f852306f
+Size (SDL2_image-2.0.1.tar.gz) = 7797848 bytes
SHA1 (patch-Makefile.in) = dbe3c8578e6b2be2ab1ed82c170817417f30e021
-SHA1 (patch-configure) = 78123313737fe09eed0d80e5c30eef63e16e908b
+SHA1 (patch-configure) = db88780d385e4bbf8416f9ff01bf30e9ad09bba5
diff --git a/graphics/SDL2_image/patches/patch-configure b/graphics/SDL2_image/patches/patch-configure
index c85ccafd3e0..dd41e0b9d7a 100644
--- a/graphics/SDL2_image/patches/patch-configure
+++ b/graphics/SDL2_image/patches/patch-configure
@@ -1,13 +1,13 @@
-$NetBSD: patch-configure,v 1.1 2014/03/31 10:10:14 adam Exp $
+$NetBSD: patch-configure,v 1.2 2016/05/05 11:12:14 wiz Exp $
Add frameworks required to link under OS X.
---- configure.orig 2014-03-19 15:55:16.000000000 +0000
+--- configure.orig 2016-01-03 05:52:28.000000000 +0000
+++ configure
@@ -12024,6 +12024,7 @@ fi
if test x$enable_imageio = xyes; then
- IMG_LIBS="-Wl,-framework,ApplicationServices $IMG_LIBS"
+ IMG_LIBS="-Wl,-framework,ApplicationServices -lobjc $IMG_LIBS"
+ IMG_LIBS="-Wl,-framework,Cocoa -Wl,-framework,Carbon -Wl,-framework,IOKit -Wl,-framework,ForceFeedback $IMG_LIBS"
else
CFLAGS="$CFLAGS -DSDL_IMAGE_USE_COMMON_BACKEND"