head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.4 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.2 pkgsrc-2012Q4-base:1.3 pkgsrc-2012Q3:1.2.0.26 pkgsrc-2012Q3-base:1.2 pkgsrc-2012Q2:1.2.0.24 pkgsrc-2012Q2-base:1.2 pkgsrc-2012Q1:1.2.0.22 pkgsrc-2012Q1-base:1.2 pkgsrc-2011Q4:1.2.0.20 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q3:1.2.0.18 pkgsrc-2011Q3-base:1.2 pkgsrc-2011Q2:1.2.0.16 pkgsrc-2011Q2-base:1.2 pkgsrc-2011Q1:1.2.0.14 pkgsrc-2011Q1-base:1.2 pkgsrc-2010Q4:1.2.0.12 pkgsrc-2010Q4-base:1.2 pkgsrc-2010Q3:1.2.0.10 pkgsrc-2010Q3-base:1.2 pkgsrc-2010Q2:1.2.0.8 pkgsrc-2010Q2-base:1.2 pkgsrc-2010Q1:1.2.0.6 pkgsrc-2010Q1-base:1.2 pkgsrc-2009Q4:1.2.0.4 pkgsrc-2009Q4-base:1.2 pkgsrc-2009Q3:1.2.0.2 pkgsrc-2009Q3-base:1.2 pkgsrc-2009Q2:1.1.0.16 pkgsrc-2009Q2-base:1.1 pkgsrc-2009Q1:1.1.0.14 pkgsrc-2009Q1-base:1.1 pkgsrc-2008Q4:1.1.0.12 pkgsrc-2008Q4-base:1.1 pkgsrc-2008Q3:1.1.0.10 pkgsrc-2008Q3-base:1.1 cube-native-xorg:1.1.0.8 cube-native-xorg-base:1.1 pkgsrc-2008Q2:1.1.0.6 pkgsrc-2008Q2-base:1.1 cwrapper:1.1.0.4 pkgsrc-2008Q1:1.1.0.2 pkgsrc-2008Q1-base:1.1; locks; strict; comment @# @; 1.3 date 2012.12.03.13.15.51; author ryoon; state dead; branches; next 1.2; 1.2 date 2009.08.28.20.46.19; author hasso; state Exp; branches; next 1.1; 1.1 date 2008.01.04.19.56.46; author markd; state Exp; branches; next ; desc @@ 1.3 log @Update to 2.64a XXX This revision may build on NetBSD 6.* and Linux only. * Convert to scons build * Remove MESSAGE file, we need not to copy files to ~/.blender Changelog: * Add cycles engine * New features and bugfixes @ text @$NetBSD: patch-ai,v 1.2 2009/08/28 20:46:19 hasso Exp $ --- CMakeLists.txt.orig 2009-05-18 22:14:15 +0300 +++ CMakeLists.txt 2009-08-28 22:04:18 +0300 @@@@ -102,6 +102,7 @@@@ IF(UNIX) FIND_LIBRARY(INTL_LIBRARY NAMES intl PATHS + "${_CMAKE_INSTALL_DIR}/lib" /usr/local/lib /usr/lib /sw/lib @@@@ -112,6 +113,7 @@@@ IF(UNIX) FIND_LIBRARY(ICONV_LIBRARY NAMES iconv PATHS + "${_CMAKE_INSTALL_DIR}/lib" /usr/local/lib /usr/lib /sw/lib @@@@ -121,11 +123,14 @@@@ IF(UNIX) ) IF(INTL_LIBRARY AND ICONV_LIBRARY) SET(GETTEXT_LIB ${INTL_LIBRARY} ${ICONV_LIBRARY}) + ELSEIF(INTL_LIBRARY) + SET(GETTEXT_LIB ${INTL_LIBRARY}) ENDIF(INTL_LIBRARY AND ICONV_LIBRARY) FIND_PATH(FREETYPE_INC freetype PATHS + "${_CMAKE_INSTALL_DIR}/include/freetype2" /usr/local/include/freetype2 /usr/include/freetype2 /sw/include/freetype2 @@@@ -150,6 +155,7 @@@@ IF(UNIX) FIND_PATH(OPENEXR_INC ImfXdr.h PATHS + "${_CMAKE_INSTALL_DIR}/include/OpenEXR" /usr/local/include/OpenEXR /usr/include/OpenEXR /sw/include/OpenEXR @ 1.2 log @Update to 2.49a. Upstream changelog is of course too massive, you can look at http://www.blender.org/development/release-logs/ for info about new features and fixes. While here, sort PLIST correctly. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Update blender to version 2.45 pkgsrc changes: use cmake rather than SCons to build. DESTDIR support 2.45 The 2.45 is a bugfix release, to stabilize the 2.4x series. No new feature have been added, but serious effort has been put in tracking bugs and fixing them. Some performance issues have also been addressed. 2.44 This release adds subsurface scattering, improved sculpting tools, ffmpeg support for additional platforms, a number of animation tool improvements, and a huge number of Python scripts and API enhancements. 2.43 This release features sculpting meshes that work as if they were clay, render passes, retopology painting, multi-resolution meshes, texture map and light map baking, support for multiple uv sets, fast 3D painting, defocus blur node, multi-layer image read/write, painting in video sequences, matte, key, and difference composite nodes, a number of improved 3D animation tools such as proxy objects, walk cycles, simulation tool improvements for fluid dynamics, hard body dynamics, and cloth and softbody dynamics. There were also additional compositing and video editing improvements. 2.42 This release is the result of work done for the Elephants Dream short film. It includes major feature additions such as node based materials, node based compositing, a renderer rewrite, improved UV tools, improved character tools, an array modifier, and a host of other improvements. @ text @d3 19 a21 3 --- CMakeLists.txt.orig 2007-12-07 15:07:16.000000000 +1300 +++ CMakeLists.txt @@@@ -133,6 +133,8 @@@@ IF(UNIX) d30 14 @