diff options
author | spz <spz@pkgsrc.org> | 2014-03-23 15:16:35 +0000 |
---|---|---|
committer | spz <spz@pkgsrc.org> | 2014-03-23 15:16:35 +0000 |
commit | b7dbda7a0b2cc0115040b0e319321896256cd043 (patch) | |
tree | c947bc43b2636b0b1458d4f7173bc4ecc1374d87 /graphics | |
parent | 2e0bf835259b7b97a026a1602c294bc85140e260 (diff) | |
download | pkgsrc-b7dbda7a0b2cc0115040b0e319321896256cd043.tar.gz |
build fix following the freetype2 update
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/darktable/distinfo | 3 | ||||
-rw-r--r-- | graphics/darktable/patches/patch-cmake_modules_FindFreetype.cmake | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/graphics/darktable/distinfo b/graphics/darktable/distinfo index 7c9d49ded86..6ef37bda57e 100644 --- a/graphics/darktable/distinfo +++ b/graphics/darktable/distinfo @@ -1,9 +1,10 @@ -$NetBSD: distinfo,v 1.21 2013/12/04 13:02:08 drochner Exp $ +$NetBSD: distinfo,v 1.22 2014/03/23 15:16:35 spz Exp $ SHA1 (darktable-1.2.3.tar.xz) = dbd7545d1fbb5f67862f62ae39c7e6ba008d1c10 RMD160 (darktable-1.2.3.tar.xz) = 3148a7f9063c372b3477525cacf518750c88766d Size (darktable-1.2.3.tar.xz) = 2348864 bytes SHA1 (patch-aa) = 7b6987512bdac0477ab724ade75785802903dfd8 +SHA1 (patch-cmake_modules_FindFreetype.cmake) = fb69e7a413f455490649d4b2b39cce74408dd332 SHA1 (patch-cmake_modules_FindGTK2.cmake) = de1273594801ab82da31b624845e0b36a77b53b3 SHA1 (patch-src_LibRaw_libraw_libraw__alloc.h) = 8227a7180383cd4379313b07ff964bb7fb9ce694 SHA1 (patch-src_common_imageio__exr.hh) = 8bef7fab739dfdd0688371b08d6f31503eaf04af diff --git a/graphics/darktable/patches/patch-cmake_modules_FindFreetype.cmake b/graphics/darktable/patches/patch-cmake_modules_FindFreetype.cmake new file mode 100644 index 00000000000..0a4b3aedf55 --- /dev/null +++ b/graphics/darktable/patches/patch-cmake_modules_FindFreetype.cmake @@ -0,0 +1,15 @@ +$NetBSD: patch-cmake_modules_FindFreetype.cmake,v 1.1 2014/03/23 15:16:35 spz Exp $ + +make it deal gracefully with both freetype 2.4.* and 2.5.* + +--- cmake/modules/FindFreetype.cmake.orig 2013-09-10 12:25:47.000000000 +0000 ++++ cmake/modules/FindFreetype.cmake +@@ -12,7 +12,7 @@ libfind_pkg_check_modules(Freetype_PKGCO + + # Include dir + find_path(Freetype_INCLUDE_DIR +- NAMES freetype/freetype.h ++ NAMES ft2build.h + PATHS ${Freetype_PKGCONF_INCLUDE_DIRS} + PATH_SUFFIXES freetype2 + ) |