diff options
author | joerg <joerg@pkgsrc.org> | 2014-01-10 20:06:46 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-01-10 20:06:46 +0000 |
commit | f5ce16630e04a329038a45b5fe6a51e07426a3df (patch) | |
tree | 3ac86d3c88004b3f5b67e2b65b08dee78a52a28d /graphics/blender/Makefile | |
parent | be0e918ed905aac7a6e6b6c90e921e48386da5d7 (diff) | |
download | pkgsrc-f5ce16630e04a329038a45b5fe6a51e07426a3df.tar.gz |
Update to Blender 2.69. Add fixes for building with Clang, either from
upstream or submitted for upstream. Import changes:
A new hidden wire display option was added to help with retopology. Mesh
Bisect is a new tool to cut meshes in half. The Bridge, Edgenet fill,
Grid fill and Symmetrize tools were improved. New curve and lattice
editing tools were added too.
Hair rendering was improved with a new Hair shader and reorganized
settings. Subsurface scattering uses a new sampling algorithm and now
supports bump mapping and texture blurring. Sky rendering now uses a
more accurate sky model. New blackbody, vector transform and HSV nodes
were added. The non-progressive integrator was renamed to Branched Path
Integrator, and is now available for GPU rendering.
The Motion tracker now supports plane tracking, which can be used to
replace billboards, screens and other flat things in footage.
Lists in the user interface can now be resized, sorted and filtered.
Further there are small improvements for vertex parenting, empty
objects, the shrinkwrap modifier, mask editing, armatures, f-curves and
drivers.
FBX Import support has been added and FBX/OBJ can now export split
normals (without the need for the edge split modifier).
In addition to the new features, over 270 bugs that existed in previous
releases have been fixed.
Diffstat (limited to 'graphics/blender/Makefile')
-rw-r--r-- | graphics/blender/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index 2801e0f7066..ff82d411618 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.100 2013/12/27 01:59:42 dholland Exp $ +# $NetBSD: Makefile,v 1.101 2014/01/10 20:06:46 joerg Exp $ -DISTNAME= blender-2.68a -PKGREVISION= 3 +DISTNAME= blender-2.69 CATEGORIES= graphics MASTER_SITES= http://download.blender.org/source/ @@ -24,12 +23,9 @@ FIND_PREFIX:= SCONSDIR=scons INSTALLATION_DIRS= bin share/blender -.if ${OPSYS} == "NetBSD" -# This doesn't seem right... -.if !empty(OS_VERSION:M6.99.*) || !empty(OS_VERSION:M7.*) +.if ${OPSYS} == "NetBSD" && exists(/usr/include/execinfo.h) LDFLAGS+= -lexecinfo .endif -.endif # To pass LDFLAGS to compiler/linker MYLDFLAGS= `printf "'%s'," ${LDFLAGS} | sed -e 's:,$$::'` @@ -68,8 +64,8 @@ do-build: # build is done in install phase. do-install: - cd ${WRKSRC} && \ - ${SCONSDIR}/bin/scons ${SCONS_ARGS} + cd ${WRKSRC:Q} && ${PKGSRC_SETENV} ${MAKE_ENV} \ + ${SCONSDIR}/bin/scons ${SCONS_ARGS} ${_MAKE_JOBS} CHECK_INTERPRETER_SKIP= share/blender/${DISTNAME:S/blender-//:C/[a-z]//}/scripts/*.py share/blender/${DISTNAME:S/blender-//:C/[a-z]//}datafiles/*.py \ share/blender/${DISTNAME:S/blender-//:C/[a-z]//}/python/lib/python3.3/venv/scripts/posix/pydoc |