diff options
author | ryoon <ryoon@pkgsrc.org> | 2012-12-03 13:15:50 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2012-12-03 13:15:50 +0000 |
commit | f7e6a57806cf1f42081aebb9981c667548d4c6ab (patch) | |
tree | 0895af6d7edb3ea327aace35e60ea83e74a13658 /graphics/blender | |
parent | ffc67f768e289a879a57da490d2f0feaebff2978 (diff) | |
download | pkgsrc-f7e6a57806cf1f42081aebb9981c667548d4c6ab.tar.gz |
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
Diffstat (limited to 'graphics/blender')
33 files changed, 1989 insertions, 597 deletions
diff --git a/graphics/blender/MESSAGE b/graphics/blender/MESSAGE deleted file mode 100644 index 4f467dfee99..00000000000 --- a/graphics/blender/MESSAGE +++ /dev/null @@ -1,25 +0,0 @@ -=========================================================================== -$NetBSD: MESSAGE,v 1.2 2006/01/22 22:27:22 reinoud Exp $ - -Due to oddities in the blender package, running `blender' will soft-link -the global blender directory to your home directory as ~/.blender to run -properly with all scripts attached. - -Customisation can be done individually by copying the directory ~/.blender -points to to your own homedirectory : - rm -rf ~/.blender - cp -R ${PREFIX}/share/blender ~/.blender - -and customise/add your own stuff like scripts etc. in it. - -To revert to `factory' settings and site-setup files, just remove the -~/.blender directory/link and the script will add the softlink again. - -Note that blender will create a ~/.B.blend file that serves as the empty or -startup file with all settings in it. A file called ~/.Blog will hold the -last file edited with blender. - -Executing ${PREFIX}/bin/blender-bin will bypass the convenience script -${PREFIX}/bin/blender - -=========================================================================== diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index a20dae3a457..9045298241e 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.81 2012/10/06 14:10:42 asau Exp $ +# $NetBSD: Makefile,v 1.82 2012/12/03 13:15:50 ryoon Exp $ -DISTNAME= blender-2.49b -PKGREVISION= 10 +DISTNAME= blender-2.64a CATEGORIES= graphics MASTER_SITES= http://download.blender.org/source/ @@ -12,59 +11,85 @@ LICENSE= gnu-gpl-v2 USE_TOOLS+= gmake USE_LANGUAGES= c c++ -USE_CMAKE= yes -CMAKE_ARG_PATH= .. -CONFIGURE_DIRS= _build -MAKE_JOBS_SAFE= no +PYTHON_VERSIONS_ACCEPTED= 32 -LDFLAGS+= -lcrypto -LDFLAGS.DragonFly= -lX11 +BUILD_DEPENDS+= scons-[0-9]*:../../devel/scons -.include "options.mk" - -INSTALLATION_DIRS= bin +FIND_PREFIX:= SCONSDIR=scons +.include "../../mk/find-prefix.mk" -CMAKE_ARGS+= -DFREETYPE_INC:PATH=${BUILDLINK_PREFIX.freetype2}/include/freetype2 -CMAKE_ARGS+= -DSDL_INCLUDE_DIR:PATH=${BUILDLINK_PREFIX.SDL}/include/SDL +.include "options.mk" -CHECK_INTERPRETER_SKIP= share/blender/scripts/*.py share/blender/scripts/*/*.py +INSTALLATION_DIRS= bin share/blender +# To pass LDFLAGS to compiler/linker +MYLDFLAGS= `printf "'%s'," ${LDFLAGS} | sed -e 's:,$$::'` pre-configure: - ${MKDIR} ${WRKSRC}/_build + ${CP} -f ${WRKSRC}/user-config.py ${WRKSRC}/user-config.py.1 + ${SED} \ + -e "s|@MYLDFLAGS@|${MYLDFLAGS}|g" \ + < ${WRKSRC}/user-config.py.1 > ${WRKSRC}/user-config.py + ${RM} -f ${WRKSRC}/user-config.py.1 + +SCONS_ARGS+= WITH_BF_JACK=False +SCONS_ARGS+= WITH_BF_OPENAL=False +SCONS_ARGS+= WITH_BF_SNDFILE=False +SCONS_ARGS+= WITH_BF_FFMPEG=False + +SCONS_ARGS+= BF_PYTHON=${PREFIX} +SCONS_ARGS+= BF_SDL=${BUILDLINK_PREFIX.SDL} +SCONS_ARGS+= BF_OPENEXR=${BUILDLINK_PREFIX.openexr} +SCONS_ARGS+= BF_JPEG=${BUILDLINK_PREFIX.jpeg} +SCONS_ARGS+= BF_PNG=${BUILDLINK_PREFIX.png} +SCONS_ARGS+= BF_TIFF=${BUILDLINK_PREFIX.tiff} +SCONS_ARGS+= BF_GETTEXT=${BUILDLINK_PREFIX.gettext-tools} +SCONS_ARGS+= BF_FREETYPE=${BUILDLINK_PREFIX.freetype2} +SCONS_ARGS+= BF_OPENJPEG=${BUILDLINK_PREFIX.openjpeg} +SCONS_ARGS+= BF_OPENGL=${BUILDLINK_PREFIX.Mesa} +SCONS_ARGS+= BF_PCRE=${BUILDLINK_PREFIX.pcre} +#SCONS_ARGS+= BF_FFMPEG=${BUILDLINK_PREFIX.ffmpeg010} +#SCONS_ARGS+= BF_FFMPEG_INC=${BUILDLINK_PREFIX.ffmpeg010}/include/ffmpeg010 +#SCONS_ARGS+= BF_FFMPEG_LIBPATH='${BUILDLINK_PREFIX.ffmpeg010}/lib/ffmpeg010' +SCONS_ARGS+= BF_FFTW3=${BUILDLINK_PREFIX.fftw} +SCONS_ARGS+= BF_INSTALLDIR=${DESTDIR}${PREFIX}/share/blender + +# I cannot separate build and install... +do-build: + +# build is done in install phase. +do-install: + cd ${WRKSRC} && \ + ${SCONSDIR}/bin/scons ${SCONS_ARGS} -WRKSRCBIN= ${WRKSRC}/_build/bin +.if !empty(MACHINE_PLATFORM:MNetBSD-6.*-*) +BFINSTALLDIR= netbsd6 +.elif !empty(MACHINE_PLATFORM:MLinux-*-*) +BFINSTALLDIR= linux +.endif -post-build: - ${CP} -f ${WRKSRCBIN}/blender ${WRKSRCBIN}/blender-bin - ${SED} -e "s|__PREFIX__|${PREFIX}|g" files/blender > ${WRKSRCBIN}/blender - ${CHMOD} +x ${WRKSRCBIN}/blender - ${CHMOD} -x ${WRKSRCBIN}/.blender/scripts/*.py - ${CHMOD} -x ${WRKSRCBIN}/.blender/scripts/*/*.py +CHECK_INTERPRETER_SKIP= share/blender/${DISTNAME:S/blender-//:C/[a-z]//}/scripts/*.py share/blender/${DISTNAME:S/blender-//:C/[a-z]//}datafiles/*.py -do-install: - ${INSTALL_PROGRAM} ${WRKSRCBIN}/blender-bin ${DESTDIR}${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRCBIN}/blender ${DESTDIR}${PREFIX}/bin - ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/blender - ${CP} -R ${WRKSRCBIN}/.blender/scripts \ - ${DESTDIR}${PREFIX}/share/blender/ - ${CP} -R ${WRKSRCBIN}/.blender/locale \ - ${DESTDIR}${PREFIX}/share/blender/ - ${INSTALL_DATA} ${WRKSRCBIN}/.blender/.Blanguages \ - ${DESTDIR}${PREFIX}/share/blender - ${INSTALL_DATA} ${WRKSRCBIN}/.blender/.bfont.ttf \ - ${DESTDIR}${PREFIX}/share/blender - ${INSTALL_DATA} ${WRKSRC}/release/text/BlenderQuickStart.pdf \ - ${DESTDIR}${PREFIX}/share/blender +post-install: + ${LN} -sf ${PREFIX}/share/blender/blender \ + ${DESTDIR}${PREFIX}/bin .include "../../devel/SDL/buildlink3.mk" +.include "../../devel/boost-libs/buildlink3.mk" +.include "../../devel/gettext-tools/buildlink3.mk" +.include "../../devel/pcre/buildlink3.mk" .include "../../graphics/Mesa/buildlink3.mk" .include "../../graphics/freetype2/buildlink3.mk" +#.include "../../graphics/glew/buildlink3.mk" .include "../../graphics/openexr/buildlink3.mk" +.include "../../graphics/openimageio/buildlink3.mk" +.include "../../graphics/openjpeg/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" .include "../../graphics/tiff/buildlink3.mk" +.include "../../math/fftw/buildlink3.mk" +#.include "../../multimedia/ffmpeg010/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" -.include "../../lang/python/pyversion.mk" +.include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" diff --git a/graphics/blender/PLIST b/graphics/blender/PLIST index 6c4801d3130..528c919fe10 100644 --- a/graphics/blender/PLIST +++ b/graphics/blender/PLIST @@ -1,217 +1,1302 @@ -@comment $NetBSD: PLIST,v 1.9 2009/09/22 13:23:25 hasso Exp $ +@comment $NetBSD: PLIST,v 1.10 2012/12/03 13:15:50 ryoon Exp $ bin/blender -bin/blender-bin -share/blender/.Blanguages -share/blender/.bfont.ttf -share/blender/BlenderQuickStart.pdf -share/blender/locale/ar/LC_MESSAGES/blender.mo -share/blender/locale/bg/LC_MESSAGES/blender.mo -share/blender/locale/ca/LC_MESSAGES/blender.mo -share/blender/locale/cs/LC_MESSAGES/blender.mo -share/blender/locale/de/LC_MESSAGES/blender.mo -share/blender/locale/el/LC_MESSAGES/blender.mo -share/blender/locale/es/LC_MESSAGES/blender.mo -share/blender/locale/fi/LC_MESSAGES/blender.mo -share/blender/locale/fr/LC_MESSAGES/blender.mo -share/blender/locale/hr/LC_MESSAGES/blender.mo -share/blender/locale/hr_HR/LC_MESSAGES/blender.mo -share/blender/locale/it/LC_MESSAGES/blender.mo -share/blender/locale/ja/LC_MESSAGES/blender.mo -share/blender/locale/ko/LC_MESSAGES/blender.mo -share/blender/locale/nl/LC_MESSAGES/blender.mo -share/blender/locale/pl/LC_MESSAGES/blender.mo -share/blender/locale/pt_BR/LC_MESSAGES/blender.mo -share/blender/locale/ro/LC_MESSAGES/blender.mo -share/blender/locale/ru/LC_MESSAGES/blender.mo -share/blender/locale/sr/LC_MESSAGES/blender.mo -share/blender/locale/sr@Latn/LC_MESSAGES/blender.mo -share/blender/locale/sv/LC_MESSAGES/blender.mo -share/blender/locale/uk/LC_MESSAGES/blender.mo -share/blender/locale/zh_CN/LC_MESSAGES/blender.mo -share/blender/scripts/3ds_export.py -share/blender/scripts/3ds_import.py -share/blender/scripts/Axiscopy.py -share/blender/scripts/DirectX8Exporter.py -share/blender/scripts/DirectX8Importer.py -share/blender/scripts/IDPropBrowser.py -share/blender/scripts/ac3d_export.py -share/blender/scripts/ac3d_import.py -share/blender/scripts/add_mesh_empty.py -share/blender/scripts/add_mesh_torus.py -share/blender/scripts/animation_bake_constraints.py -share/blender/scripts/animation_clean.py -share/blender/scripts/animation_trajectory.py -share/blender/scripts/armature_symmetry.py -share/blender/scripts/bevel_center.py -share/blender/scripts/blenderLipSynchro.py -share/blender/scripts/bpydata/KUlang.txt -share/blender/scripts/bpydata/config/readme.txt -share/blender/scripts/bpydata/readme.txt -share/blender/scripts/bpymodules/BPyAddMesh.py -share/blender/scripts/bpymodules/BPyArmature.py -share/blender/scripts/bpymodules/BPyBlender.py -share/blender/scripts/bpymodules/BPyCurve.py -share/blender/scripts/bpymodules/BPyImage.py -share/blender/scripts/bpymodules/BPyMathutils.py -share/blender/scripts/bpymodules/BPyMesh.py -share/blender/scripts/bpymodules/BPyMesh_redux.py -share/blender/scripts/bpymodules/BPyMessages.py -share/blender/scripts/bpymodules/BPyNMesh.py -share/blender/scripts/bpymodules/BPyObject.py -share/blender/scripts/bpymodules/BPyRegistry.py -share/blender/scripts/bpymodules/BPyRender.py -share/blender/scripts/bpymodules/BPySys.py -share/blender/scripts/bpymodules/BPyTextPlugin.py -share/blender/scripts/bpymodules/BPyWindow.py -share/blender/scripts/bpymodules/blend2renderinfo.py -share/blender/scripts/bpymodules/colladaImEx/__init__.py -share/blender/scripts/bpymodules/colladaImEx/collada.py -share/blender/scripts/bpymodules/colladaImEx/cstartup.py -share/blender/scripts/bpymodules/colladaImEx/cutils.py -share/blender/scripts/bpymodules/colladaImEx/helperObjects.py -share/blender/scripts/bpymodules/colladaImEx/logo.png -share/blender/scripts/bpymodules/colladaImEx/translator.py -share/blender/scripts/bpymodules/colladaImEx/xmlUtils.py -share/blender/scripts/bpymodules/defaultdoodads.py -share/blender/scripts/bpymodules/dxfColorMap.py -share/blender/scripts/bpymodules/dxfLibrary.py -share/blender/scripts/bpymodules/dxfReader.py -share/blender/scripts/bpymodules/mesh_gradient.py -share/blender/scripts/bpymodules/meshtools.py -share/blender/scripts/bpymodules/paths_ai2obj.py -share/blender/scripts/bpymodules/paths_eps2obj.py -share/blender/scripts/bpymodules/paths_gimp2obj.py -share/blender/scripts/bpymodules/paths_svg2obj.py -share/blender/scripts/bvh_import.py -share/blender/scripts/c3d_import.py -share/blender/scripts/camera_changer.py -share/blender/scripts/colladaExport14.py -share/blender/scripts/colladaImport14.py -share/blender/scripts/collada_export.py -share/blender/scripts/collada_import.py -share/blender/scripts/config.py -share/blender/scripts/console.py -share/blender/scripts/discombobulator.py -share/blender/scripts/envelope_symmetry.py -share/blender/scripts/export-iv-0.1.py -share/blender/scripts/export_dxf.py -share/blender/scripts/export_fbx.py -share/blender/scripts/export_lightwave_motion.py -share/blender/scripts/export_m3g.py -share/blender/scripts/export_map.py -share/blender/scripts/export_mdd.py -share/blender/scripts/export_obj.py -share/blender/scripts/faceselect_same_weights.py -share/blender/scripts/flt_defaultp.py -share/blender/scripts/flt_dofedit.py -share/blender/scripts/flt_export.py -share/blender/scripts/flt_filewalker.py -share/blender/scripts/flt_import.py -share/blender/scripts/flt_lodedit.py -share/blender/scripts/flt_palettemanager.py -share/blender/scripts/flt_properties.py -share/blender/scripts/flt_toolbar.py -share/blender/scripts/help_bpy_api.py -share/blender/scripts/help_browser.py -share/blender/scripts/help_getting_started.py -share/blender/scripts/help_manual.py -share/blender/scripts/help_release_notes.py -share/blender/scripts/help_tutorials.py -share/blender/scripts/help_web_blender.py -share/blender/scripts/help_web_devcomm.py -share/blender/scripts/help_web_eshop.py -share/blender/scripts/help_web_usercomm.py -share/blender/scripts/hotkeys.py -share/blender/scripts/image_2d_cutout.py -share/blender/scripts/image_auto_layout.py -share/blender/scripts/image_billboard.py -share/blender/scripts/image_edit.py -share/blender/scripts/import_dxf.py -share/blender/scripts/import_edl.py -share/blender/scripts/import_lightwave_motion.py -share/blender/scripts/import_mdd.py -share/blender/scripts/import_obj.py -share/blender/scripts/import_web3d.py -share/blender/scripts/lightwave_export.py -share/blender/scripts/lightwave_import.py -share/blender/scripts/md2_export.py -share/blender/scripts/md2_import.py -share/blender/scripts/mesh_boneweight_copy.py -share/blender/scripts/mesh_cleanup.py -share/blender/scripts/mesh_edges2curves.py -share/blender/scripts/mesh_mirror_tool.py -share/blender/scripts/mesh_poly_reduce.py -share/blender/scripts/mesh_poly_reduce_grid.py -share/blender/scripts/mesh_skin.py -share/blender/scripts/mesh_solidify.py -share/blender/scripts/mesh_unfolder.py -share/blender/scripts/mesh_wire.py -share/blender/scripts/ms3d_import.py -share/blender/scripts/ms3d_import_ascii.py -share/blender/scripts/obdatacopier.py -share/blender/scripts/object_active_to_other.py -share/blender/scripts/object_apply_def.py -share/blender/scripts/object_batch_name_edit.py -share/blender/scripts/object_cookie_cutter.py -share/blender/scripts/object_drop.py -share/blender/scripts/object_find.py -share/blender/scripts/object_random_loc_sz_rot.py -share/blender/scripts/object_sel2dupgroup.py -share/blender/scripts/object_timeofs_follow_act.py -share/blender/scripts/off_export.py -share/blender/scripts/off_import.py -share/blender/scripts/paths_import.py -share/blender/scripts/ply_export.py -share/blender/scripts/ply_import.py -share/blender/scripts/raw_export.py -share/blender/scripts/raw_import.py -share/blender/scripts/renameobjectbyblock.py -share/blender/scripts/render_save_layers.py -share/blender/scripts/rvk1_torvk2.py -share/blender/scripts/save_theme.py -share/blender/scripts/scripttemplate_background_job.py -share/blender/scripts/scripttemplate_camera_object.py -share/blender/scripts/scripttemplate_gamelogic.py -share/blender/scripts/scripttemplate_gamelogic_basic.py -share/blender/scripts/scripttemplate_gamelogic_module.py -share/blender/scripts/scripttemplate_ipo_gen.py -share/blender/scripts/scripttemplate_mesh_edit.py -share/blender/scripts/scripttemplate_metaball_create.py -share/blender/scripts/scripttemplate_object_edit.py -share/blender/scripts/scripttemplate_pyconstraint.py -share/blender/scripts/scripttemplate_text_plugin.py -share/blender/scripts/slp_import.py -share/blender/scripts/sysinfo.py -share/blender/scripts/textplugin_convert_ge.py -share/blender/scripts/textplugin_functiondocs.py -share/blender/scripts/textplugin_imports.py -share/blender/scripts/textplugin_membersuggest.py -share/blender/scripts/textplugin_outliner.py -share/blender/scripts/textplugin_suggest.py -share/blender/scripts/textplugin_templates.py -share/blender/scripts/unweld.py -share/blender/scripts/uv_export.py -share/blender/scripts/uv_seams_from_islands.py -share/blender/scripts/uvcalc_follow_active_coords.py -share/blender/scripts/uvcalc_lightmap.py -share/blender/scripts/uvcalc_quad_clickproj.py -share/blender/scripts/uvcalc_smart_project.py -share/blender/scripts/uvcopy.py -share/blender/scripts/vertexpaint_from_material.py -share/blender/scripts/vertexpaint_gradient.py -share/blender/scripts/vertexpaint_selfshadow_ao.py -share/blender/scripts/vrml97_export.py -share/blender/scripts/weightpaint_average.py -share/blender/scripts/weightpaint_clean.py -share/blender/scripts/weightpaint_copy.py -share/blender/scripts/weightpaint_envelope_assign.py -share/blender/scripts/weightpaint_gradient.py -share/blender/scripts/weightpaint_grow_shrink.py -share/blender/scripts/weightpaint_invert.py -share/blender/scripts/weightpaint_normalize.py -share/blender/scripts/widgetwizard.py -share/blender/scripts/wizard_bolt_factory.py -share/blender/scripts/wizard_curve2tree.py -share/blender/scripts/wizard_landscape_ant.py -share/blender/scripts/x3d_export.py -share/blender/scripts/xsi_export.py +share/blender/2.64/datafiles/fonts/droidsans.ttf.gz +share/blender/2.64/datafiles/locale/ar/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/bg/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/ca/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/cs/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/de/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/el/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/es/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/es_ES/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/fa/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/fi/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/fr/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/he/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/hr/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/hu/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/id/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/it/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/ja/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/ky/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/ne/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/nl/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/pl/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/pt/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/pt_BR/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/ru/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/sr/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/sr@latin/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/sv/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/tr/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/uk/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/zh_CN/LC_MESSAGES/blender.mo +share/blender/2.64/datafiles/locale/zh_TW/LC_MESSAGES/blender.mo +share/blender/2.64/python/lib/python3.2/LICENSE.txt +share/blender/2.64/python/lib/python3.2/__future__.py +share/blender/2.64/python/lib/python3.2/__phello__.foo.py +share/blender/2.64/python/lib/python3.2/_abcoll.py +share/blender/2.64/python/lib/python3.2/_compat_pickle.py +share/blender/2.64/python/lib/python3.2/_dummy_thread.py +share/blender/2.64/python/lib/python3.2/_markupbase.py +share/blender/2.64/python/lib/python3.2/_pyio.py +share/blender/2.64/python/lib/python3.2/_strptime.py +share/blender/2.64/python/lib/python3.2/_threading_local.py +share/blender/2.64/python/lib/python3.2/_weakrefset.py +share/blender/2.64/python/lib/python3.2/abc.py +share/blender/2.64/python/lib/python3.2/aifc.py +share/blender/2.64/python/lib/python3.2/antigravity.py +share/blender/2.64/python/lib/python3.2/argparse.py +share/blender/2.64/python/lib/python3.2/ast.py +share/blender/2.64/python/lib/python3.2/asynchat.py +share/blender/2.64/python/lib/python3.2/asyncore.py +share/blender/2.64/python/lib/python3.2/base64.py +share/blender/2.64/python/lib/python3.2/bdb.py +share/blender/2.64/python/lib/python3.2/binhex.py +share/blender/2.64/python/lib/python3.2/bisect.py +share/blender/2.64/python/lib/python3.2/cProfile.py +share/blender/2.64/python/lib/python3.2/calendar.py +share/blender/2.64/python/lib/python3.2/cgi.py +share/blender/2.64/python/lib/python3.2/cgitb.py +share/blender/2.64/python/lib/python3.2/chunk.py +share/blender/2.64/python/lib/python3.2/cmd.py +share/blender/2.64/python/lib/python3.2/code.py +share/blender/2.64/python/lib/python3.2/codecs.py +share/blender/2.64/python/lib/python3.2/codeop.py +share/blender/2.64/python/lib/python3.2/collections.py +share/blender/2.64/python/lib/python3.2/colorsys.py +share/blender/2.64/python/lib/python3.2/compileall.py +share/blender/2.64/python/lib/python3.2/concurrent/__init__.py +share/blender/2.64/python/lib/python3.2/concurrent/futures/__init__.py +share/blender/2.64/python/lib/python3.2/concurrent/futures/_base.py +share/blender/2.64/python/lib/python3.2/concurrent/futures/process.py +share/blender/2.64/python/lib/python3.2/concurrent/futures/thread.py +share/blender/2.64/python/lib/python3.2/configparser.py +share/blender/2.64/python/lib/python3.2/contextlib.py +share/blender/2.64/python/lib/python3.2/copy.py +share/blender/2.64/python/lib/python3.2/copyreg.py +share/blender/2.64/python/lib/python3.2/csv.py +share/blender/2.64/python/lib/python3.2/ctypes/__init__.py +share/blender/2.64/python/lib/python3.2/ctypes/_endian.py +share/blender/2.64/python/lib/python3.2/ctypes/macholib/README.ctypes +share/blender/2.64/python/lib/python3.2/ctypes/macholib/__init__.py +share/blender/2.64/python/lib/python3.2/ctypes/macholib/dyld.py +share/blender/2.64/python/lib/python3.2/ctypes/macholib/dylib.py +share/blender/2.64/python/lib/python3.2/ctypes/macholib/fetch_macholib +share/blender/2.64/python/lib/python3.2/ctypes/macholib/fetch_macholib.bat +share/blender/2.64/python/lib/python3.2/ctypes/macholib/framework.py +share/blender/2.64/python/lib/python3.2/ctypes/util.py +share/blender/2.64/python/lib/python3.2/ctypes/wintypes.py +share/blender/2.64/python/lib/python3.2/curses/__init__.py +share/blender/2.64/python/lib/python3.2/curses/ascii.py +share/blender/2.64/python/lib/python3.2/curses/has_key.py +share/blender/2.64/python/lib/python3.2/curses/panel.py +share/blender/2.64/python/lib/python3.2/curses/textpad.py +share/blender/2.64/python/lib/python3.2/curses/wrapper.py +share/blender/2.64/python/lib/python3.2/datetime.py +share/blender/2.64/python/lib/python3.2/dbm/__init__.py +share/blender/2.64/python/lib/python3.2/dbm/dumb.py +share/blender/2.64/python/lib/python3.2/dbm/gnu.py +share/blender/2.64/python/lib/python3.2/dbm/ndbm.py +share/blender/2.64/python/lib/python3.2/decimal.py +share/blender/2.64/python/lib/python3.2/difflib.py +share/blender/2.64/python/lib/python3.2/dis.py +share/blender/2.64/python/lib/python3.2/doctest.py +share/blender/2.64/python/lib/python3.2/dummy_threading.py +share/blender/2.64/python/lib/python3.2/email/__init__.py +share/blender/2.64/python/lib/python3.2/email/_parseaddr.py +share/blender/2.64/python/lib/python3.2/email/base64mime.py +share/blender/2.64/python/lib/python3.2/email/charset.py +share/blender/2.64/python/lib/python3.2/email/encoders.py +share/blender/2.64/python/lib/python3.2/email/errors.py +share/blender/2.64/python/lib/python3.2/email/feedparser.py +share/blender/2.64/python/lib/python3.2/email/generator.py +share/blender/2.64/python/lib/python3.2/email/header.py +share/blender/2.64/python/lib/python3.2/email/iterators.py +share/blender/2.64/python/lib/python3.2/email/message.py +share/blender/2.64/python/lib/python3.2/email/mime/__init__.py +share/blender/2.64/python/lib/python3.2/email/mime/application.py +share/blender/2.64/python/lib/python3.2/email/mime/audio.py +share/blender/2.64/python/lib/python3.2/email/mime/base.py +share/blender/2.64/python/lib/python3.2/email/mime/image.py +share/blender/2.64/python/lib/python3.2/email/mime/message.py +share/blender/2.64/python/lib/python3.2/email/mime/multipart.py +share/blender/2.64/python/lib/python3.2/email/mime/nonmultipart.py +share/blender/2.64/python/lib/python3.2/email/mime/text.py +share/blender/2.64/python/lib/python3.2/email/parser.py +share/blender/2.64/python/lib/python3.2/email/quoprimime.py +share/blender/2.64/python/lib/python3.2/email/utils.py +share/blender/2.64/python/lib/python3.2/encodings/__init__.py +share/blender/2.64/python/lib/python3.2/encodings/aliases.py +share/blender/2.64/python/lib/python3.2/encodings/ascii.py +share/blender/2.64/python/lib/python3.2/encodings/base64_codec.py +share/blender/2.64/python/lib/python3.2/encodings/big5.py +share/blender/2.64/python/lib/python3.2/encodings/big5hkscs.py +share/blender/2.64/python/lib/python3.2/encodings/bz2_codec.py +share/blender/2.64/python/lib/python3.2/encodings/charmap.py +share/blender/2.64/python/lib/python3.2/encodings/cp037.py +share/blender/2.64/python/lib/python3.2/encodings/cp1006.py +share/blender/2.64/python/lib/python3.2/encodings/cp1026.py +share/blender/2.64/python/lib/python3.2/encodings/cp1140.py +share/blender/2.64/python/lib/python3.2/encodings/cp1250.py +share/blender/2.64/python/lib/python3.2/encodings/cp1251.py +share/blender/2.64/python/lib/python3.2/encodings/cp1252.py +share/blender/2.64/python/lib/python3.2/encodings/cp1253.py +share/blender/2.64/python/lib/python3.2/encodings/cp1254.py +share/blender/2.64/python/lib/python3.2/encodings/cp1255.py +share/blender/2.64/python/lib/python3.2/encodings/cp1256.py +share/blender/2.64/python/lib/python3.2/encodings/cp1257.py +share/blender/2.64/python/lib/python3.2/encodings/cp1258.py +share/blender/2.64/python/lib/python3.2/encodings/cp424.py +share/blender/2.64/python/lib/python3.2/encodings/cp437.py +share/blender/2.64/python/lib/python3.2/encodings/cp500.py +share/blender/2.64/python/lib/python3.2/encodings/cp720.py +share/blender/2.64/python/lib/python3.2/encodings/cp737.py +share/blender/2.64/python/lib/python3.2/encodings/cp775.py +share/blender/2.64/python/lib/python3.2/encodings/cp850.py +share/blender/2.64/python/lib/python3.2/encodings/cp852.py +share/blender/2.64/python/lib/python3.2/encodings/cp855.py +share/blender/2.64/python/lib/python3.2/encodings/cp856.py +share/blender/2.64/python/lib/python3.2/encodings/cp857.py +share/blender/2.64/python/lib/python3.2/encodings/cp858.py +share/blender/2.64/python/lib/python3.2/encodings/cp860.py +share/blender/2.64/python/lib/python3.2/encodings/cp861.py +share/blender/2.64/python/lib/python3.2/encodings/cp862.py +share/blender/2.64/python/lib/python3.2/encodings/cp863.py +share/blender/2.64/python/lib/python3.2/encodings/cp864.py +share/blender/2.64/python/lib/python3.2/encodings/cp865.py +share/blender/2.64/python/lib/python3.2/encodings/cp866.py +share/blender/2.64/python/lib/python3.2/encodings/cp869.py +share/blender/2.64/python/lib/python3.2/encodings/cp874.py +share/blender/2.64/python/lib/python3.2/encodings/cp875.py +share/blender/2.64/python/lib/python3.2/encodings/cp932.py +share/blender/2.64/python/lib/python3.2/encodings/cp949.py +share/blender/2.64/python/lib/python3.2/encodings/cp950.py +share/blender/2.64/python/lib/python3.2/encodings/euc_jis_2004.py +share/blender/2.64/python/lib/python3.2/encodings/euc_jisx0213.py +share/blender/2.64/python/lib/python3.2/encodings/euc_jp.py +share/blender/2.64/python/lib/python3.2/encodings/euc_kr.py +share/blender/2.64/python/lib/python3.2/encodings/gb18030.py +share/blender/2.64/python/lib/python3.2/encodings/gb2312.py +share/blender/2.64/python/lib/python3.2/encodings/gbk.py +share/blender/2.64/python/lib/python3.2/encodings/hex_codec.py +share/blender/2.64/python/lib/python3.2/encodings/hp_roman8.py +share/blender/2.64/python/lib/python3.2/encodings/hz.py +share/blender/2.64/python/lib/python3.2/encodings/idna.py +share/blender/2.64/python/lib/python3.2/encodings/iso2022_jp.py +share/blender/2.64/python/lib/python3.2/encodings/iso2022_jp_1.py +share/blender/2.64/python/lib/python3.2/encodings/iso2022_jp_2.py +share/blender/2.64/python/lib/python3.2/encodings/iso2022_jp_2004.py +share/blender/2.64/python/lib/python3.2/encodings/iso2022_jp_3.py +share/blender/2.64/python/lib/python3.2/encodings/iso2022_jp_ext.py +share/blender/2.64/python/lib/python3.2/encodings/iso2022_kr.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_1.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_10.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_11.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_13.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_14.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_15.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_16.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_2.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_3.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_4.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_5.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_6.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_7.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_8.py +share/blender/2.64/python/lib/python3.2/encodings/iso8859_9.py +share/blender/2.64/python/lib/python3.2/encodings/johab.py +share/blender/2.64/python/lib/python3.2/encodings/koi8_r.py +share/blender/2.64/python/lib/python3.2/encodings/koi8_u.py +share/blender/2.64/python/lib/python3.2/encodings/latin_1.py +share/blender/2.64/python/lib/python3.2/encodings/mac_arabic.py +share/blender/2.64/python/lib/python3.2/encodings/mac_centeuro.py +share/blender/2.64/python/lib/python3.2/encodings/mac_croatian.py +share/blender/2.64/python/lib/python3.2/encodings/mac_cyrillic.py +share/blender/2.64/python/lib/python3.2/encodings/mac_farsi.py +share/blender/2.64/python/lib/python3.2/encodings/mac_greek.py +share/blender/2.64/python/lib/python3.2/encodings/mac_iceland.py +share/blender/2.64/python/lib/python3.2/encodings/mac_latin2.py +share/blender/2.64/python/lib/python3.2/encodings/mac_roman.py +share/blender/2.64/python/lib/python3.2/encodings/mac_romanian.py +share/blender/2.64/python/lib/python3.2/encodings/mac_turkish.py +share/blender/2.64/python/lib/python3.2/encodings/mbcs.py +share/blender/2.64/python/lib/python3.2/encodings/palmos.py +share/blender/2.64/python/lib/python3.2/encodings/ptcp154.py +share/blender/2.64/python/lib/python3.2/encodings/punycode.py +share/blender/2.64/python/lib/python3.2/encodings/quopri_codec.py +share/blender/2.64/python/lib/python3.2/encodings/raw_unicode_escape.py +share/blender/2.64/python/lib/python3.2/encodings/rot_13.py +share/blender/2.64/python/lib/python3.2/encodings/shift_jis.py +share/blender/2.64/python/lib/python3.2/encodings/shift_jis_2004.py +share/blender/2.64/python/lib/python3.2/encodings/shift_jisx0213.py +share/blender/2.64/python/lib/python3.2/encodings/tis_620.py +share/blender/2.64/python/lib/python3.2/encodings/undefined.py +share/blender/2.64/python/lib/python3.2/encodings/unicode_escape.py +share/blender/2.64/python/lib/python3.2/encodings/unicode_internal.py +share/blender/2.64/python/lib/python3.2/encodings/utf_16.py +share/blender/2.64/python/lib/python3.2/encodings/utf_16_be.py +share/blender/2.64/python/lib/python3.2/encodings/utf_16_le.py +share/blender/2.64/python/lib/python3.2/encodings/utf_32.py +share/blender/2.64/python/lib/python3.2/encodings/utf_32_be.py +share/blender/2.64/python/lib/python3.2/encodings/utf_32_le.py +share/blender/2.64/python/lib/python3.2/encodings/utf_7.py +share/blender/2.64/python/lib/python3.2/encodings/utf_8.py +share/blender/2.64/python/lib/python3.2/encodings/utf_8_sig.py +share/blender/2.64/python/lib/python3.2/encodings/uu_codec.py +share/blender/2.64/python/lib/python3.2/encodings/zlib_codec.py +share/blender/2.64/python/lib/python3.2/filecmp.py +share/blender/2.64/python/lib/python3.2/fileinput.py +share/blender/2.64/python/lib/python3.2/fnmatch.py +share/blender/2.64/python/lib/python3.2/formatter.py +share/blender/2.64/python/lib/python3.2/fractions.py +share/blender/2.64/python/lib/python3.2/ftplib.py +share/blender/2.64/python/lib/python3.2/functools.py +share/blender/2.64/python/lib/python3.2/genericpath.py +share/blender/2.64/python/lib/python3.2/getopt.py +share/blender/2.64/python/lib/python3.2/getpass.py +share/blender/2.64/python/lib/python3.2/gettext.py +share/blender/2.64/python/lib/python3.2/glob.py +share/blender/2.64/python/lib/python3.2/gzip.py +share/blender/2.64/python/lib/python3.2/hashlib.py +share/blender/2.64/python/lib/python3.2/heapq.py +share/blender/2.64/python/lib/python3.2/hmac.py +share/blender/2.64/python/lib/python3.2/html/__init__.py +share/blender/2.64/python/lib/python3.2/html/entities.py +share/blender/2.64/python/lib/python3.2/html/parser.py +share/blender/2.64/python/lib/python3.2/http/__init__.py +share/blender/2.64/python/lib/python3.2/http/client.py +share/blender/2.64/python/lib/python3.2/http/cookiejar.py +share/blender/2.64/python/lib/python3.2/http/cookies.py +share/blender/2.64/python/lib/python3.2/http/server.py +share/blender/2.64/python/lib/python3.2/imaplib.py +share/blender/2.64/python/lib/python3.2/imghdr.py +share/blender/2.64/python/lib/python3.2/importlib/__init__.py +share/blender/2.64/python/lib/python3.2/importlib/_bootstrap.py +share/blender/2.64/python/lib/python3.2/importlib/abc.py +share/blender/2.64/python/lib/python3.2/importlib/machinery.py +share/blender/2.64/python/lib/python3.2/importlib/util.py +share/blender/2.64/python/lib/python3.2/inspect.py +share/blender/2.64/python/lib/python3.2/io.py +share/blender/2.64/python/lib/python3.2/json/__init__.py +share/blender/2.64/python/lib/python3.2/json/decoder.py +share/blender/2.64/python/lib/python3.2/json/encoder.py +share/blender/2.64/python/lib/python3.2/json/scanner.py +share/blender/2.64/python/lib/python3.2/json/tool.py +share/blender/2.64/python/lib/python3.2/keyword.py +share/blender/2.64/python/lib/python3.2/lib-dynload/Python-3.2.3-py3.2.egg-info +share/blender/2.64/python/lib/python3.2/lib-dynload/_bisect.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_codecs_cn.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_codecs_hk.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_codecs_iso2022.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_codecs_jp.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_codecs_kr.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_codecs_tw.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_csv.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_ctypes.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_ctypes_test.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_datetime.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_dbm.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_hashlib.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_heapq.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_json.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_lsprof.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_multibytecodec.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_multiprocessing.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_pickle.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_posixsubprocess.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_random.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_socket.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_ssl.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_struct.so +share/blender/2.64/python/lib/python3.2/lib-dynload/_testcapi.so +share/blender/2.64/python/lib/python3.2/lib-dynload/array.so +share/blender/2.64/python/lib/python3.2/lib-dynload/atexit.so +share/blender/2.64/python/lib/python3.2/lib-dynload/audioop.so +share/blender/2.64/python/lib/python3.2/lib-dynload/binascii.so +share/blender/2.64/python/lib/python3.2/lib-dynload/bz2.so +share/blender/2.64/python/lib/python3.2/lib-dynload/cmath.so +share/blender/2.64/python/lib/python3.2/lib-dynload/crypt.so +share/blender/2.64/python/lib/python3.2/lib-dynload/fcntl.so +share/blender/2.64/python/lib/python3.2/lib-dynload/grp.so +share/blender/2.64/python/lib/python3.2/lib-dynload/math.so +share/blender/2.64/python/lib/python3.2/lib-dynload/mmap.so +share/blender/2.64/python/lib/python3.2/lib-dynload/nis.so +share/blender/2.64/python/lib/python3.2/lib-dynload/parser.so +share/blender/2.64/python/lib/python3.2/lib-dynload/resource.so +share/blender/2.64/python/lib/python3.2/lib-dynload/select.so +share/blender/2.64/python/lib/python3.2/lib-dynload/syslog.so +share/blender/2.64/python/lib/python3.2/lib-dynload/termios.so +share/blender/2.64/python/lib/python3.2/lib-dynload/time.so +share/blender/2.64/python/lib/python3.2/lib-dynload/unicodedata.so +share/blender/2.64/python/lib/python3.2/lib-dynload/zlib.so +share/blender/2.64/python/lib/python3.2/linecache.py +share/blender/2.64/python/lib/python3.2/locale.py +share/blender/2.64/python/lib/python3.2/logging/__init__.py +share/blender/2.64/python/lib/python3.2/logging/config.py +share/blender/2.64/python/lib/python3.2/logging/handlers.py +share/blender/2.64/python/lib/python3.2/macpath.py +share/blender/2.64/python/lib/python3.2/macurl2path.py +share/blender/2.64/python/lib/python3.2/mailbox.py +share/blender/2.64/python/lib/python3.2/mailcap.py +share/blender/2.64/python/lib/python3.2/mimetypes.py +share/blender/2.64/python/lib/python3.2/modulefinder.py +share/blender/2.64/python/lib/python3.2/multiprocessing/__init__.py +share/blender/2.64/python/lib/python3.2/multiprocessing/connection.py +share/blender/2.64/python/lib/python3.2/multiprocessing/dummy/__init__.py +share/blender/2.64/python/lib/python3.2/multiprocessing/dummy/connection.py +share/blender/2.64/python/lib/python3.2/multiprocessing/forking.py +share/blender/2.64/python/lib/python3.2/multiprocessing/heap.py +share/blender/2.64/python/lib/python3.2/multiprocessing/managers.py +share/blender/2.64/python/lib/python3.2/multiprocessing/pool.py +share/blender/2.64/python/lib/python3.2/multiprocessing/process.py +share/blender/2.64/python/lib/python3.2/multiprocessing/queues.py +share/blender/2.64/python/lib/python3.2/multiprocessing/reduction.py +share/blender/2.64/python/lib/python3.2/multiprocessing/sharedctypes.py +share/blender/2.64/python/lib/python3.2/multiprocessing/synchronize.py +share/blender/2.64/python/lib/python3.2/multiprocessing/util.py +share/blender/2.64/python/lib/python3.2/netrc.py +share/blender/2.64/python/lib/python3.2/nntplib.py +share/blender/2.64/python/lib/python3.2/ntpath.py +share/blender/2.64/python/lib/python3.2/nturl2path.py +share/blender/2.64/python/lib/python3.2/numbers.py +share/blender/2.64/python/lib/python3.2/opcode.py +share/blender/2.64/python/lib/python3.2/optparse.py +share/blender/2.64/python/lib/python3.2/os.py +share/blender/2.64/python/lib/python3.2/os2emxpath.py +share/blender/2.64/python/lib/python3.2/pdb.py +share/blender/2.64/python/lib/python3.2/pickle.py +share/blender/2.64/python/lib/python3.2/pickletools.py +share/blender/2.64/python/lib/python3.2/pipes.py +share/blender/2.64/python/lib/python3.2/pkgutil.py +share/blender/2.64/python/lib/python3.2/plat-${LOWER_OPSYS}6/IN.py +share/blender/2.64/python/lib/python3.2/plat-${LOWER_OPSYS}6/regen +share/blender/2.64/python/lib/python3.2/platform.py +share/blender/2.64/python/lib/python3.2/plistlib.py +share/blender/2.64/python/lib/python3.2/poplib.py +share/blender/2.64/python/lib/python3.2/posixpath.py +share/blender/2.64/python/lib/python3.2/pprint.py +share/blender/2.64/python/lib/python3.2/profile.py +share/blender/2.64/python/lib/python3.2/pstats.py +share/blender/2.64/python/lib/python3.2/pty.py +share/blender/2.64/python/lib/python3.2/py_compile.py +share/blender/2.64/python/lib/python3.2/pyclbr.py +share/blender/2.64/python/lib/python3.2/pydoc.py +share/blender/2.64/python/lib/python3.2/pydoc_data/__init__.py +share/blender/2.64/python/lib/python3.2/pydoc_data/_pydoc.css +share/blender/2.64/python/lib/python3.2/pydoc_data/topics.py +share/blender/2.64/python/lib/python3.2/queue.py +share/blender/2.64/python/lib/python3.2/quopri.py +share/blender/2.64/python/lib/python3.2/random.py +share/blender/2.64/python/lib/python3.2/re.py +share/blender/2.64/python/lib/python3.2/reprlib.py +share/blender/2.64/python/lib/python3.2/rlcompleter.py +share/blender/2.64/python/lib/python3.2/runpy.py +share/blender/2.64/python/lib/python3.2/sched.py +share/blender/2.64/python/lib/python3.2/shelve.py +share/blender/2.64/python/lib/python3.2/shlex.py +share/blender/2.64/python/lib/python3.2/shutil.py +share/blender/2.64/python/lib/python3.2/site.py +share/blender/2.64/python/lib/python3.2/smtpd.py +share/blender/2.64/python/lib/python3.2/smtplib.py +share/blender/2.64/python/lib/python3.2/sndhdr.py +share/blender/2.64/python/lib/python3.2/socket.py +share/blender/2.64/python/lib/python3.2/socketserver.py +share/blender/2.64/python/lib/python3.2/sqlite3/__init__.py +share/blender/2.64/python/lib/python3.2/sqlite3/dbapi2.py +share/blender/2.64/python/lib/python3.2/sqlite3/dump.py +share/blender/2.64/python/lib/python3.2/sre_compile.py +share/blender/2.64/python/lib/python3.2/sre_constants.py +share/blender/2.64/python/lib/python3.2/sre_parse.py +share/blender/2.64/python/lib/python3.2/ssl.py +share/blender/2.64/python/lib/python3.2/stat.py +share/blender/2.64/python/lib/python3.2/string.py +share/blender/2.64/python/lib/python3.2/stringprep.py +share/blender/2.64/python/lib/python3.2/struct.py +share/blender/2.64/python/lib/python3.2/subprocess.py +share/blender/2.64/python/lib/python3.2/sunau.py +share/blender/2.64/python/lib/python3.2/symbol.py +share/blender/2.64/python/lib/python3.2/symtable.py +share/blender/2.64/python/lib/python3.2/sysconfig.py +share/blender/2.64/python/lib/python3.2/tabnanny.py +share/blender/2.64/python/lib/python3.2/tarfile.py +share/blender/2.64/python/lib/python3.2/telnetlib.py +share/blender/2.64/python/lib/python3.2/tempfile.py +share/blender/2.64/python/lib/python3.2/textwrap.py +share/blender/2.64/python/lib/python3.2/this.py +share/blender/2.64/python/lib/python3.2/threading.py +share/blender/2.64/python/lib/python3.2/timeit.py +share/blender/2.64/python/lib/python3.2/token.py +share/blender/2.64/python/lib/python3.2/tokenize.py +share/blender/2.64/python/lib/python3.2/trace.py +share/blender/2.64/python/lib/python3.2/traceback.py +share/blender/2.64/python/lib/python3.2/tty.py +share/blender/2.64/python/lib/python3.2/types.py +share/blender/2.64/python/lib/python3.2/unittest/__init__.py +share/blender/2.64/python/lib/python3.2/unittest/__main__.py +share/blender/2.64/python/lib/python3.2/unittest/case.py +share/blender/2.64/python/lib/python3.2/unittest/loader.py +share/blender/2.64/python/lib/python3.2/unittest/main.py +share/blender/2.64/python/lib/python3.2/unittest/result.py +share/blender/2.64/python/lib/python3.2/unittest/runner.py +share/blender/2.64/python/lib/python3.2/unittest/signals.py +share/blender/2.64/python/lib/python3.2/unittest/suite.py +share/blender/2.64/python/lib/python3.2/unittest/util.py +share/blender/2.64/python/lib/python3.2/urllib/__init__.py +share/blender/2.64/python/lib/python3.2/urllib/error.py +share/blender/2.64/python/lib/python3.2/urllib/parse.py +share/blender/2.64/python/lib/python3.2/urllib/request.py +share/blender/2.64/python/lib/python3.2/urllib/response.py +share/blender/2.64/python/lib/python3.2/urllib/robotparser.py +share/blender/2.64/python/lib/python3.2/uu.py +share/blender/2.64/python/lib/python3.2/uuid.py +share/blender/2.64/python/lib/python3.2/warnings.py +share/blender/2.64/python/lib/python3.2/wave.py +share/blender/2.64/python/lib/python3.2/weakref.py +share/blender/2.64/python/lib/python3.2/webbrowser.py +share/blender/2.64/python/lib/python3.2/wsgiref.egg-info +share/blender/2.64/python/lib/python3.2/wsgiref/__init__.py +share/blender/2.64/python/lib/python3.2/wsgiref/handlers.py +share/blender/2.64/python/lib/python3.2/wsgiref/headers.py +share/blender/2.64/python/lib/python3.2/wsgiref/simple_server.py +share/blender/2.64/python/lib/python3.2/wsgiref/util.py +share/blender/2.64/python/lib/python3.2/wsgiref/validate.py +share/blender/2.64/python/lib/python3.2/xdrlib.py +share/blender/2.64/python/lib/python3.2/xml/__init__.py +share/blender/2.64/python/lib/python3.2/xml/dom/NodeFilter.py +share/blender/2.64/python/lib/python3.2/xml/dom/__init__.py +share/blender/2.64/python/lib/python3.2/xml/dom/domreg.py +share/blender/2.64/python/lib/python3.2/xml/dom/expatbuilder.py +share/blender/2.64/python/lib/python3.2/xml/dom/minicompat.py +share/blender/2.64/python/lib/python3.2/xml/dom/minidom.py +share/blender/2.64/python/lib/python3.2/xml/dom/pulldom.py +share/blender/2.64/python/lib/python3.2/xml/dom/xmlbuilder.py +share/blender/2.64/python/lib/python3.2/xml/etree/ElementInclude.py +share/blender/2.64/python/lib/python3.2/xml/etree/ElementPath.py +share/blender/2.64/python/lib/python3.2/xml/etree/ElementTree.py +share/blender/2.64/python/lib/python3.2/xml/etree/__init__.py +share/blender/2.64/python/lib/python3.2/xml/etree/cElementTree.py +share/blender/2.64/python/lib/python3.2/xml/parsers/__init__.py +share/blender/2.64/python/lib/python3.2/xml/parsers/expat.py +share/blender/2.64/python/lib/python3.2/xml/sax/__init__.py +share/blender/2.64/python/lib/python3.2/xml/sax/_exceptions.py +share/blender/2.64/python/lib/python3.2/xml/sax/expatreader.py +share/blender/2.64/python/lib/python3.2/xml/sax/handler.py +share/blender/2.64/python/lib/python3.2/xml/sax/saxutils.py +share/blender/2.64/python/lib/python3.2/xml/sax/xmlreader.py +share/blender/2.64/python/lib/python3.2/xmlrpc/__init__.py +share/blender/2.64/python/lib/python3.2/xmlrpc/client.py +share/blender/2.64/python/lib/python3.2/xmlrpc/server.py +share/blender/2.64/python/lib/python3.2/zipfile.py +share/blender/2.64/scripts/addons/add_curve_extra_objects/__init__.py +share/blender/2.64/scripts/addons/add_curve_extra_objects/add_curve_aceous_galore.py +share/blender/2.64/scripts/addons/add_curve_extra_objects/add_curve_spirals.py +share/blender/2.64/scripts/addons/add_curve_extra_objects/add_curve_torus_knots.py +share/blender/2.64/scripts/addons/add_curve_ivygen.py +share/blender/2.64/scripts/addons/add_curve_sapling/__init__.py +share/blender/2.64/scripts/addons/add_curve_sapling/presets/black_tupelo.py +share/blender/2.64/scripts/addons/add_curve_sapling/presets/ca_black_oak.py +share/blender/2.64/scripts/addons/add_curve_sapling/presets/quaking_aspen.py +share/blender/2.64/scripts/addons/add_curve_sapling/presets/weeping_willow.py +share/blender/2.64/scripts/addons/add_curve_sapling/utils.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/Boltfactory.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/__init__.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/createMesh.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/preset_utils.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/presets/M10.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/presets/M12.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/presets/M3.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/presets/M4.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/presets/M5.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/presets/M6.py +share/blender/2.64/scripts/addons/add_mesh_BoltFactory/presets/M8.py +share/blender/2.64/scripts/addons/add_mesh_ant_landscape.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/__init__.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_3d_function_surface.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_extra_objects.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_gears.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_gemstones.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_honeycomb.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_polysphere.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_pyramid.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_supertoroid.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_teapot.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_torusknot.py +share/blender/2.64/scripts/addons/add_mesh_extra_objects/add_mesh_twisted_torus.py +share/blender/2.64/scripts/addons/add_mesh_pipe_joint.py +share/blender/2.64/scripts/addons/add_mesh_solid.py +share/blender/2.64/scripts/addons/animation_add_corrective_shape_key.py +share/blender/2.64/scripts/addons/animation_animall.py +share/blender/2.64/scripts/addons/curve_simplify.py +share/blender/2.64/scripts/addons/cycles/__init__.py +share/blender/2.64/scripts/addons/cycles/engine.py +share/blender/2.64/scripts/addons/cycles/enums.py +share/blender/2.64/scripts/addons/cycles/kernel/SConscript +share/blender/2.64/scripts/addons/cycles/kernel/kernel.cl +share/blender/2.64/scripts/addons/cycles/kernel/kernel.cu +share/blender/2.64/scripts/addons/cycles/kernel/kernel.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_accumulate.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_attribute.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_bvh.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_camera.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_compat_cpu.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_compat_cuda.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_compat_opencl.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_differential.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_displace.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_emission.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_film.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_globals.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_light.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_math.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_mbvh.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_montecarlo.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_object.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_optimized.cpp +share/blender/2.64/scripts/addons/cycles/kernel/kernel_passes.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_path.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_projection.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_qbvh.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_random.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_shader.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_textures.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_triangle.h +share/blender/2.64/scripts/addons/cycles/kernel/kernel_types.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf_ashikhmin_velvet.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf_diffuse.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf_microfacet.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf_oren_nayar.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf_reflection.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf_refraction.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf_transparent.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf_ward.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/bsdf_westin.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/emissive.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_attribute.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_brick.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_brightness.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_bsdf.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_camera.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_checker.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_closure.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_convert.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_displace.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_fresnel.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_gamma.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_geometry.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_gradient.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_hsv.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_image.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_invert.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_light_path.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_magic.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_mapping.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_math.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_mix.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_musgrave.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_noise.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_noisetex.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_normal.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_ramp.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_sepcomb_rgb.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_sky.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_tex_coord.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_texture.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_types.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_value.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_voronoi.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/svm_wave.h +share/blender/2.64/scripts/addons/cycles/kernel/svm/volume.h +share/blender/2.64/scripts/addons/cycles/kernel/util_color.h +share/blender/2.64/scripts/addons/cycles/kernel/util_math.h +share/blender/2.64/scripts/addons/cycles/kernel/util_transform.h +share/blender/2.64/scripts/addons/cycles/kernel/util_types.h +share/blender/2.64/scripts/addons/cycles/license/Apache_2.0.txt +share/blender/2.64/scripts/addons/cycles/license/Blender.txt +share/blender/2.64/scripts/addons/cycles/license/Boost.txt +share/blender/2.64/scripts/addons/cycles/license/GPL.txt +share/blender/2.64/scripts/addons/cycles/license/ILM.txt +share/blender/2.64/scripts/addons/cycles/license/NVidia.txt +share/blender/2.64/scripts/addons/cycles/license/OSL.txt +share/blender/2.64/scripts/addons/cycles/license/Sobol.txt +share/blender/2.64/scripts/addons/cycles/license/readme.txt +share/blender/2.64/scripts/addons/cycles/presets.py +share/blender/2.64/scripts/addons/cycles/properties.py +share/blender/2.64/scripts/addons/cycles/ui.py +share/blender/2.64/scripts/addons/development_api_navigator.py +share/blender/2.64/scripts/addons/development_icon_get.py +share/blender/2.64/scripts/addons/game_engine_save_as_runtime.py +share/blender/2.64/scripts/addons/io_anim_acclaim/__init__.py +share/blender/2.64/scripts/addons/io_anim_bvh/__init__.py +share/blender/2.64/scripts/addons/io_anim_bvh/export_bvh.py +share/blender/2.64/scripts/addons/io_anim_bvh/import_bvh.py +share/blender/2.64/scripts/addons/io_anim_c3d/__init__.py +share/blender/2.64/scripts/addons/io_anim_c3d/import_c3d.py +share/blender/2.64/scripts/addons/io_anim_camera.py +share/blender/2.64/scripts/addons/io_anim_nuke_chan/__init__.py +share/blender/2.64/scripts/addons/io_anim_nuke_chan/export_nuke_chan.py +share/blender/2.64/scripts/addons/io_anim_nuke_chan/import_nuke_chan.py +share/blender/2.64/scripts/addons/io_coat3D/__init__.py +share/blender/2.64/scripts/addons/io_coat3D/coat.py +share/blender/2.64/scripts/addons/io_coat3D/tex.py +share/blender/2.64/scripts/addons/io_convert_image_to_mesh_img/__init__.py +share/blender/2.64/scripts/addons/io_convert_image_to_mesh_img/import_img.py +share/blender/2.64/scripts/addons/io_curve_svg/__init__.py +share/blender/2.64/scripts/addons/io_curve_svg/import_svg.py +share/blender/2.64/scripts/addons/io_curve_svg/svg_colors.py +share/blender/2.64/scripts/addons/io_export_after_effects.py +share/blender/2.64/scripts/addons/io_export_directx_x.py +share/blender/2.64/scripts/addons/io_export_dxf/__init__.py +share/blender/2.64/scripts/addons/io_export_dxf/draw_blenders/__init__.py +share/blender/2.64/scripts/addons/io_export_dxf/export_dxf.py +share/blender/2.64/scripts/addons/io_export_dxf/model/__init__.py +share/blender/2.64/scripts/addons/io_export_dxf/model/dxfLibrary.py +share/blender/2.64/scripts/addons/io_export_dxf/model/migiusModel.py +share/blender/2.64/scripts/addons/io_export_dxf/model/model.py +share/blender/2.64/scripts/addons/io_export_dxf/operator.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/__init__.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/base_exporter.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/camera_exporter.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/curve_exporter.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/empty_exporter.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/insert_exporter.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/lamp_exporter.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/mesh_exporter.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/text_exporter.py +share/blender/2.64/scripts/addons/io_export_dxf/primitive_exporters/viewborder_exporter.py +share/blender/2.64/scripts/addons/io_export_pc2.py +share/blender/2.64/scripts/addons/io_export_unreal_psk_psa.py +share/blender/2.64/scripts/addons/io_import_gimp_image_to_scene.py +share/blender/2.64/scripts/addons/io_import_images_as_planes.py +share/blender/2.64/scripts/addons/io_import_scene_dxf.py +share/blender/2.64/scripts/addons/io_import_scene_lwo.py +share/blender/2.64/scripts/addons/io_import_scene_mhx.py +share/blender/2.64/scripts/addons/io_import_scene_unreal_psk.py +share/blender/2.64/scripts/addons/io_mesh_pdb/__init__.py +share/blender/2.64/scripts/addons/io_mesh_pdb/atom_info.dat +share/blender/2.64/scripts/addons/io_mesh_pdb/export_pdb.py +share/blender/2.64/scripts/addons/io_mesh_pdb/import_pdb.py +share/blender/2.64/scripts/addons/io_mesh_ply/__init__.py +share/blender/2.64/scripts/addons/io_mesh_ply/export_ply.py +share/blender/2.64/scripts/addons/io_mesh_ply/import_ply.py +share/blender/2.64/scripts/addons/io_mesh_raw/__init__.py +share/blender/2.64/scripts/addons/io_mesh_raw/export_raw.py +share/blender/2.64/scripts/addons/io_mesh_raw/import_raw.py +share/blender/2.64/scripts/addons/io_mesh_stl/__init__.py +share/blender/2.64/scripts/addons/io_mesh_stl/blender_utils.py +share/blender/2.64/scripts/addons/io_mesh_stl/stl_utils.py +share/blender/2.64/scripts/addons/io_mesh_uv_layout/__init__.py +share/blender/2.64/scripts/addons/io_mesh_uv_layout/export_uv_eps.py +share/blender/2.64/scripts/addons/io_mesh_uv_layout/export_uv_png.py +share/blender/2.64/scripts/addons/io_mesh_uv_layout/export_uv_svg.py +share/blender/2.64/scripts/addons/io_scene_3ds/__init__.py +share/blender/2.64/scripts/addons/io_scene_3ds/export_3ds.py +share/blender/2.64/scripts/addons/io_scene_3ds/import_3ds.py +share/blender/2.64/scripts/addons/io_scene_fbx/__init__.py +share/blender/2.64/scripts/addons/io_scene_fbx/export_fbx.py +share/blender/2.64/scripts/addons/io_scene_map/__init__.py +share/blender/2.64/scripts/addons/io_scene_map/export_map.py +share/blender/2.64/scripts/addons/io_scene_obj/__init__.py +share/blender/2.64/scripts/addons/io_scene_obj/export_obj.py +share/blender/2.64/scripts/addons/io_scene_obj/import_obj.py +share/blender/2.64/scripts/addons/io_scene_x3d/__init__.py +share/blender/2.64/scripts/addons/io_scene_x3d/export_x3d.py +share/blender/2.64/scripts/addons/io_scene_x3d/import_x3d.py +share/blender/2.64/scripts/addons/io_shape_mdd/__init__.py +share/blender/2.64/scripts/addons/io_shape_mdd/export_mdd.py +share/blender/2.64/scripts/addons/io_shape_mdd/import_mdd.py +share/blender/2.64/scripts/addons/light_field_tools/__init__.py +share/blender/2.64/scripts/addons/light_field_tools/light_field_tools.py +share/blender/2.64/scripts/addons/mesh_bsurfaces.py +share/blender/2.64/scripts/addons/mesh_inset/__init__.py +share/blender/2.64/scripts/addons/mesh_inset/geom.py +share/blender/2.64/scripts/addons/mesh_inset/model.py +share/blender/2.64/scripts/addons/mesh_inset/offset.py +share/blender/2.64/scripts/addons/mesh_inset/triquad.py +share/blender/2.64/scripts/addons/mesh_looptools.py +share/blender/2.64/scripts/addons/mesh_relax.py +share/blender/2.64/scripts/addons/mocap/__init__.py +share/blender/2.64/scripts/addons/mocap/mocap_constraints.py +share/blender/2.64/scripts/addons/mocap/mocap_tools.py +share/blender/2.64/scripts/addons/mocap/retarget.py +share/blender/2.64/scripts/addons/modules/constants_utils.py +share/blender/2.64/scripts/addons/modules/cursor_utils.py +share/blender/2.64/scripts/addons/modules/extensions_framework/__init__.py +share/blender/2.64/scripts/addons/modules/extensions_framework/ui.py +share/blender/2.64/scripts/addons/modules/extensions_framework/util.py +share/blender/2.64/scripts/addons/modules/extensions_framework/validate.py +share/blender/2.64/scripts/addons/modules/geometry_utils.py +share/blender/2.64/scripts/addons/modules/misc_utils.py +share/blender/2.64/scripts/addons/modules/rna_wiki_reference.py +share/blender/2.64/scripts/addons/modules/selection_utils.py +share/blender/2.64/scripts/addons/modules/ui_utils.py +share/blender/2.64/scripts/addons/netrender/__init__.py +share/blender/2.64/scripts/addons/netrender/baking.py +share/blender/2.64/scripts/addons/netrender/balancing.py +share/blender/2.64/scripts/addons/netrender/client.py +share/blender/2.64/scripts/addons/netrender/css/images/themes-preview.gif +share/blender/2.64/scripts/addons/netrender/css/images/themes.gif +share/blender/2.64/scripts/addons/netrender/css/images/ui-bg_flat_30_cccccc_40x100.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-bg_flat_50_5c5c5c_40x100.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-bg_glass_20_555555_1x400.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-bg_glass_40_0078a3_1x400.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-bg_glass_40_ffc73d_1x400.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-bg_gloss-wave_25_333333_500x100.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-bg_inset-soft_25_000000_1x100.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-bg_inset-soft_30_f58400_1x100.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-icons_222222_256x240.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-icons_4b8e0b_256x240.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-icons_a83300_256x240.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-icons_cccccc_256x240.png +share/blender/2.64/scripts/addons/netrender/css/images/ui-icons_ffffff_256x240.png +share/blender/2.64/scripts/addons/netrender/css/jquery-ui.css +share/blender/2.64/scripts/addons/netrender/css/jquery.themes.css +share/blender/2.64/scripts/addons/netrender/js/jquery-ui.js +share/blender/2.64/scripts/addons/netrender/js/jquery.js +share/blender/2.64/scripts/addons/netrender/js/jquery.themes.js +share/blender/2.64/scripts/addons/netrender/js/netrender-action.js +share/blender/2.64/scripts/addons/netrender/js/netrender-widget.js +share/blender/2.64/scripts/addons/netrender/js/netrender.js +share/blender/2.64/scripts/addons/netrender/js/netrender_balance.js +share/blender/2.64/scripts/addons/netrender/master.py +share/blender/2.64/scripts/addons/netrender/master_html.py +share/blender/2.64/scripts/addons/netrender/model.py +share/blender/2.64/scripts/addons/netrender/netrender.css +share/blender/2.64/scripts/addons/netrender/netrender.js +share/blender/2.64/scripts/addons/netrender/newui.html +share/blender/2.64/scripts/addons/netrender/operators.py +share/blender/2.64/scripts/addons/netrender/repath.py +share/blender/2.64/scripts/addons/netrender/slave.py +share/blender/2.64/scripts/addons/netrender/thumbnail.py +share/blender/2.64/scripts/addons/netrender/ui.py +share/blender/2.64/scripts/addons/netrender/utils.py +share/blender/2.64/scripts/addons/netrender/versioning.py +share/blender/2.64/scripts/addons/object_add_chain.py +share/blender/2.64/scripts/addons/object_animrenderbake.py +share/blender/2.64/scripts/addons/object_cloud_gen.py +share/blender/2.64/scripts/addons/object_fracture/__init__.py +share/blender/2.64/scripts/addons/object_fracture/data.blend +share/blender/2.64/scripts/addons/object_fracture/fracture_ops.py +share/blender/2.64/scripts/addons/object_fracture/fracture_setup.py +share/blender/2.64/scripts/addons/object_fracture_cell/__init__.py +share/blender/2.64/scripts/addons/object_fracture_cell/fracture_cell_calc.py +share/blender/2.64/scripts/addons/object_fracture_cell/fracture_cell_setup.py +share/blender/2.64/scripts/addons/object_grease_scatter.py +share/blender/2.64/scripts/addons/paint_palette.py +share/blender/2.64/scripts/addons/render_copy_settings/__init__.py +share/blender/2.64/scripts/addons/render_copy_settings/operator.py +share/blender/2.64/scripts/addons/render_copy_settings/panel.py +share/blender/2.64/scripts/addons/render_copy_settings/presets.py +share/blender/2.64/scripts/addons/render_povray/__init__.py +share/blender/2.64/scripts/addons/render_povray/render.py +share/blender/2.64/scripts/addons/render_povray/ui.py +share/blender/2.64/scripts/addons/render_povray/update_files.py +share/blender/2.64/scripts/addons/render_renderfarmfi/__init__.py +share/blender/2.64/scripts/addons/render_renderfarmfi/exceptions.py +share/blender/2.64/scripts/addons/render_renderfarmfi/operators.py +share/blender/2.64/scripts/addons/render_renderfarmfi/ore_session.py +share/blender/2.64/scripts/addons/render_renderfarmfi/panels.py +share/blender/2.64/scripts/addons/render_renderfarmfi/prepare.py +share/blender/2.64/scripts/addons/render_renderfarmfi/rpc.py +share/blender/2.64/scripts/addons/render_renderfarmfi/upload.py +share/blender/2.64/scripts/addons/render_renderfarmfi/utils.py +share/blender/2.64/scripts/addons/rigify/CREDITS +share/blender/2.64/scripts/addons/rigify/README +share/blender/2.64/scripts/addons/rigify/__init__.py +share/blender/2.64/scripts/addons/rigify/generate.py +share/blender/2.64/scripts/addons/rigify/metarig_menu.py +share/blender/2.64/scripts/addons/rigify/metarigs/__init__.py +share/blender/2.64/scripts/addons/rigify/metarigs/human.py +share/blender/2.64/scripts/addons/rigify/rig_ui_template.py +share/blender/2.64/scripts/addons/rigify/rigs/__init__.py +share/blender/2.64/scripts/addons/rigify/rigs/basic/__init__.py +share/blender/2.64/scripts/addons/rigify/rigs/basic/copy.py +share/blender/2.64/scripts/addons/rigify/rigs/basic/copy_chain.py +share/blender/2.64/scripts/addons/rigify/rigs/biped/__init__.py +share/blender/2.64/scripts/addons/rigify/rigs/biped/arm/__init__.py +share/blender/2.64/scripts/addons/rigify/rigs/biped/arm/deform.py +share/blender/2.64/scripts/addons/rigify/rigs/biped/arm/fk.py +share/blender/2.64/scripts/addons/rigify/rigs/biped/arm/ik.py +share/blender/2.64/scripts/addons/rigify/rigs/biped/leg/__init__.py +share/blender/2.64/scripts/addons/rigify/rigs/biped/leg/deform.py +share/blender/2.64/scripts/addons/rigify/rigs/biped/leg/fk.py +share/blender/2.64/scripts/addons/rigify/rigs/biped/leg/ik.py +share/blender/2.64/scripts/addons/rigify/rigs/finger.py +share/blender/2.64/scripts/addons/rigify/rigs/misc/__init__.py +share/blender/2.64/scripts/addons/rigify/rigs/misc/delta.py +share/blender/2.64/scripts/addons/rigify/rigs/neck_short.py +share/blender/2.64/scripts/addons/rigify/rigs/palm.py +share/blender/2.64/scripts/addons/rigify/rigs/spine.py +share/blender/2.64/scripts/addons/rigify/ui.py +share/blender/2.64/scripts/addons/rigify/utils.py +share/blender/2.64/scripts/addons/space_view3d_3d_navigation.py +share/blender/2.64/scripts/addons/space_view3d_copy_attributes.py +share/blender/2.64/scripts/addons/space_view3d_materials_utils.py +share/blender/2.64/scripts/addons/space_view3d_math_vis/__init__.py +share/blender/2.64/scripts/addons/space_view3d_math_vis/draw.py +share/blender/2.64/scripts/addons/space_view3d_math_vis/utils.py +share/blender/2.64/scripts/addons/space_view3d_panel_measure.py +share/blender/2.64/scripts/addons/space_view3d_screencast_keys.py +share/blender/2.64/scripts/addons/space_view3d_spacebar_menu.py +share/blender/2.64/scripts/addons/system_blend_info.py +share/blender/2.64/scripts/addons/system_demo_mode/__init__.py +share/blender/2.64/scripts/addons/system_demo_mode/config.py +share/blender/2.64/scripts/addons/system_demo_mode/demo_mode.py +share/blender/2.64/scripts/addons/system_property_chart.py +share/blender/2.64/scripts/addons/texture_paint_layer_manager.py +share/blender/2.64/scripts/addons/ui_translate/__init__.py +share/blender/2.64/scripts/addons/ui_translate/utils.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/Blocks.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/Wallfactory.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/__init__.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/add_mesh_balcony.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/add_mesh_beam_builder.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/add_mesh_sove.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/add_mesh_window.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/general.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/post.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/rail.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/retainer.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/stairbuilder.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/stringer.py +share/blender/2.64/scripts/addons_contrib/add_mesh_building_objects/tread.py +share/blender/2.64/scripts/addons_contrib/add_mesh_chain_rope/__init__.py +share/blender/2.64/scripts/addons_contrib/add_mesh_chain_rope/oscurart_chain_maker.py +share/blender/2.64/scripts/addons_contrib/add_mesh_chain_rope/oscurart_rope_maker.py +share/blender/2.64/scripts/addons_contrib/add_mesh_clusters/__init__.py +share/blender/2.64/scripts/addons_contrib/add_mesh_clusters/add_mesh_cluster.py +share/blender/2.64/scripts/addons_contrib/add_mesh_rocks/__init__.py +share/blender/2.64/scripts/addons_contrib/add_mesh_rocks/add_mesh_rocks.xml +share/blender/2.64/scripts/addons_contrib/add_mesh_rocks/factory.xml +share/blender/2.64/scripts/addons_contrib/add_mesh_rocks/rockgen.py +share/blender/2.64/scripts/addons_contrib/add_mesh_rocks/settings.py +share/blender/2.64/scripts/addons_contrib/add_mesh_rocks/utils.py +share/blender/2.64/scripts/addons_contrib/add_scene_elements/__init__.py +share/blender/2.64/scripts/addons_contrib/add_scene_elements/scene_camera.py +share/blender/2.64/scripts/addons_contrib/add_scene_elements/scene_lighting.py +share/blender/2.64/scripts/addons_contrib/add_scene_elements/scene_materials.py +share/blender/2.64/scripts/addons_contrib/add_scene_elements/scene_objects.py +share/blender/2.64/scripts/addons_contrib/add_scene_elements/scene_objects_cycles.py +share/blender/2.64/scripts/addons_contrib/anim_selection_sets.py +share/blender/2.64/scripts/addons_contrib/animation_motion_trail.py +share/blender/2.64/scripts/addons_contrib/btrace/__init__.py +share/blender/2.64/scripts/addons_contrib/btrace/bTrace.py +share/blender/2.64/scripts/addons_contrib/cmu_mocap_browser/__init__.py +share/blender/2.64/scripts/addons_contrib/cmu_mocap_browser/library.py +share/blender/2.64/scripts/addons_contrib/cursor_control/__init__.py +share/blender/2.64/scripts/addons_contrib/cursor_control/data.py +share/blender/2.64/scripts/addons_contrib/cursor_control/history.py +share/blender/2.64/scripts/addons_contrib/cursor_control/memory.py +share/blender/2.64/scripts/addons_contrib/cursor_control/operators.py +share/blender/2.64/scripts/addons_contrib/cursor_control/ui.py +share/blender/2.64/scripts/addons_contrib/curve_tools.py +share/blender/2.64/scripts/addons_contrib/development_class_viewer.py +share/blender/2.64/scripts/addons_contrib/game_engine_ragdolls_kit/__init__.py +share/blender/2.64/scripts/addons_contrib/game_engine_ragdolls_kit/brik.py +share/blender/2.64/scripts/addons_contrib/game_engine_ragdolls_kit/brik_funcs.py +share/blender/2.64/scripts/addons_contrib/game_engine_ragdolls_kit/templates/brik_init_ragdoll.py +share/blender/2.64/scripts/addons_contrib/game_engine_ragdolls_kit/templates/brik_load.py +share/blender/2.64/scripts/addons_contrib/game_engine_ragdolls_kit/templates/brik_spawn.py +share/blender/2.64/scripts/addons_contrib/geodesic_domes/__init__.py +share/blender/2.64/scripts/addons_contrib/geodesic_domes/add_shape_geodesic.py +share/blender/2.64/scripts/addons_contrib/geodesic_domes/forms_259.py +share/blender/2.64/scripts/addons_contrib/geodesic_domes/geodesic_classes_259.py +share/blender/2.64/scripts/addons_contrib/geodesic_domes/read_me.txt +share/blender/2.64/scripts/addons_contrib/geodesic_domes/third_domes_panel.py +share/blender/2.64/scripts/addons_contrib/geodesic_domes/tmp/GD_0.GD +share/blender/2.64/scripts/addons_contrib/geodesic_domes/tmp/GD_start.GD +share/blender/2.64/scripts/addons_contrib/geodesic_domes/vefm_259.py +share/blender/2.64/scripts/addons_contrib/gpencil_retopo/__init__.py +share/blender/2.64/scripts/addons_contrib/gpencil_retopo/retopo.py +share/blender/2.64/scripts/addons_contrib/gyes/__init__.py +share/blender/2.64/scripts/addons_contrib/gyes/random_material_generator.py +share/blender/2.64/scripts/addons_contrib/gyes/random_texture_generator.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/README +share/blender/2.64/scripts/addons_contrib/io_directx_bel/__init__.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/bel/__init__.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/bel/fs.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/bel/image.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/bel/material.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/bel/mesh.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/bel/ob.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/bel/uv.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/import_x.py +share/blender/2.64/scripts/addons_contrib/io_directx_bel/templates_x.py +share/blender/2.64/scripts/addons_contrib/io_export_marmalade.py +share/blender/2.64/scripts/addons_contrib/io_export_md3.py +share/blender/2.64/scripts/addons_contrib/io_import_BrushSet.py +share/blender/2.64/scripts/addons_contrib/io_import_LRO_Lola_MGS_Mola_img.py +share/blender/2.64/scripts/addons_contrib/io_import_fbx.py +share/blender/2.64/scripts/addons_contrib/io_import_lipSync_Importer.py +share/blender/2.64/scripts/addons_contrib/io_import_voodoo_camera.py +share/blender/2.64/scripts/addons_contrib/io_mesh_xyz/__init__.py +share/blender/2.64/scripts/addons_contrib/io_mesh_xyz/atom_info.dat +share/blender/2.64/scripts/addons_contrib/io_mesh_xyz/import_xyz.py +share/blender/2.64/scripts/addons_contrib/io_points_pcd/__init__.py +share/blender/2.64/scripts/addons_contrib/io_points_pcd/pcd_utils.py +share/blender/2.64/scripts/addons_contrib/io_points_pcd/pcdparser.py +share/blender/2.64/scripts/addons_contrib/io_points_pcd/test.pcd +share/blender/2.64/scripts/addons_contrib/io_scene_cod/__init__.py +share/blender/2.64/scripts/addons_contrib/io_scene_cod/export_xanim.py +share/blender/2.64/scripts/addons_contrib/io_scene_cod/export_xmodel.py +share/blender/2.64/scripts/addons_contrib/io_scene_cod/import_xanim.py +share/blender/2.64/scripts/addons_contrib/io_scene_cod/import_xmodel.py +share/blender/2.64/scripts/addons_contrib/io_scene_m3/__init__.py +share/blender/2.64/scripts/addons_contrib/io_scene_m3/import_m3.py +share/blender/2.64/scripts/addons_contrib/io_scene_ms3d/__README__.txt +share/blender/2.64/scripts/addons_contrib/io_scene_ms3d/__init__.py +share/blender/2.64/scripts/addons_contrib/io_scene_ms3d/ms3d_export.py +share/blender/2.64/scripts/addons_contrib/io_scene_ms3d/ms3d_import.py +share/blender/2.64/scripts/addons_contrib/io_scene_ms3d/ms3d_spec.py +share/blender/2.64/scripts/addons_contrib/io_scene_ms3d/ms3d_strings.py +share/blender/2.64/scripts/addons_contrib/io_scene_ms3d/ms3d_ui.py +share/blender/2.64/scripts/addons_contrib/io_scene_ms3d/ms3d_utils.py +share/blender/2.64/scripts/addons_contrib/io_scene_open_street_map.py +share/blender/2.64/scripts/addons_contrib/io_scene_x/__init__.py +share/blender/2.64/scripts/addons_contrib/io_scene_x/export_x.py +share/blender/2.64/scripts/addons_contrib/io_sequencer_edl/import_edl.py +share/blender/2.64/scripts/addons_contrib/lamp_geographical_sun.py +share/blender/2.64/scripts/addons_contrib/mesh_copy_uvs_from_joined.py +share/blender/2.64/scripts/addons_contrib/mesh_discombobulator.py +share/blender/2.64/scripts/addons_contrib/mesh_edge_intersection_tools.py +share/blender/2.64/scripts/addons_contrib/mesh_edgetools.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/__init__.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/face_inset_fillet.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/mesh_bevel_round.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/mesh_bevel_witold.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/mesh_bump.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/mesh_extras.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/mesh_filletplus.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/mesh_mextrude_plus.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/mesh_normal_smooth.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/mesh_polyredux.py +share/blender/2.64/scripts/addons_contrib/mesh_extra_tools/mesh_vertex_chamfer.py +share/blender/2.64/scripts/addons_contrib/mesh_extrude_along_curve.py +share/blender/2.64/scripts/addons_contrib/mesh_face_info_select.py +share/blender/2.64/scripts/addons_contrib/mesh_fiber.py +share/blender/2.64/scripts/addons_contrib/mesh_insert_edge_ring.py +share/blender/2.64/scripts/addons_contrib/mesh_select_vertex_groups.py +share/blender/2.64/scripts/addons_contrib/mesh_show_vgroup_weights.py +share/blender/2.64/scripts/addons_contrib/mesh_vertex_slide.py +share/blender/2.64/scripts/addons_contrib/object_batch_rename_datablocks.py +share/blender/2.64/scripts/addons_contrib/object_creaprim.py +share/blender/2.64/scripts/addons_contrib/object_drop_to_ground.py +share/blender/2.64/scripts/addons_contrib/object_edit_linked.py +share/blender/2.64/scripts/addons_contrib/object_laplace_lightning.py +share/blender/2.64/scripts/addons_contrib/object_mangle_tools.py +share/blender/2.64/scripts/addons_contrib/object_powerlib.py +share/blender/2.64/scripts/addons_contrib/object_render_wire.py +share/blender/2.64/scripts/addons_contrib/oscurart_futurism.py +share/blender/2.64/scripts/addons_contrib/oscurart_mesh_thread.py +share/blender/2.64/scripts/addons_contrib/oscurart_tools.py +share/blender/2.64/scripts/addons_contrib/particle_hair_lab.py +share/blender/2.64/scripts/addons_contrib/presets/interface_theme/3ds_max.xml +share/blender/2.64/scripts/addons_contrib/presets/interface_theme/default.xml +share/blender/2.64/scripts/addons_contrib/presets/interface_theme/maya.xml +share/blender/2.64/scripts/addons_contrib/presets/interface_theme/modo.xml +share/blender/2.64/scripts/addons_contrib/presets/interface_theme/pinkified.xml +share/blender/2.64/scripts/addons_contrib/presets/interface_theme/softblend.xml +share/blender/2.64/scripts/addons_contrib/presets/interface_theme/softdefault.xml +share/blender/2.64/scripts/addons_contrib/presets/interface_theme/toxic.xml +share/blender/2.64/scripts/addons_contrib/presets/interface_theme/zbrush.xml +share/blender/2.64/scripts/addons_contrib/presets/keyconfig/blender_2012_experimental.py +share/blender/2.64/scripts/addons_contrib/render_auto_save.py +share/blender/2.64/scripts/addons_contrib/render_clay.py +share/blender/2.64/scripts/addons_contrib/render_time.py +share/blender/2.64/scripts/addons_contrib/render_to_print.py +share/blender/2.64/scripts/addons_contrib/sequencer_extra_actions/__init__.py +share/blender/2.64/scripts/addons_contrib/sequencer_extra_actions/functions.py +share/blender/2.64/scripts/addons_contrib/sequencer_extra_actions/operators_extra_actions.py +share/blender/2.64/scripts/addons_contrib/sequencer_extra_actions/operators_recursive.py +share/blender/2.64/scripts/addons_contrib/sequencer_extra_actions/ui.py +share/blender/2.64/scripts/addons_contrib/sequencer_jumptocut.py +share/blender/2.64/scripts/addons_contrib/sequencer_tools/__init__.py +share/blender/2.64/scripts/addons_contrib/sequencer_tools/export_strips.py +share/blender/2.64/scripts/addons_contrib/space_view3d_add_surround_cameras.py +share/blender/2.64/scripts/addons_contrib/space_view3d_enhanced_3d_cursor.py +share/blender/2.64/scripts/addons_contrib/space_view3d_game_props_visualiser.py +share/blender/2.64/scripts/addons_contrib/space_view3d_library_hide.py +share/blender/2.64/scripts/addons_contrib/space_view3d_manipulator_Menu.py +share/blender/2.64/scripts/addons_contrib/space_view3d_multiselect_menu.py +share/blender/2.64/scripts/addons_contrib/space_view3d_objects_panel.py +share/blender/2.64/scripts/addons_contrib/space_view3d_paint_bprojection.py +share/blender/2.64/scripts/addons_contrib/space_view3d_quickPrefs.py +share/blender/2.64/scripts/addons_contrib/space_view3d_simple_align.py +share/blender/2.64/scripts/addons_contrib/system_keyboard_svg.py +share/blender/2.64/scripts/addons_contrib/system_project_folder.py +share/blender/2.64/scripts/addons_contrib/text_editor_pasteall.py +share/blender/2.64/scripts/addons_contrib/text_intellisense.py +share/blender/2.64/scripts/addons_contrib/ui_layer_manager.py +share/blender/2.64/scripts/addons_contrib/uv_bake_texture_to_vcols.py +share/blender/2.64/scripts/addons_contrib/wetted_mesh.py +share/blender/2.64/scripts/modules/addon_utils.py +share/blender/2.64/scripts/modules/animsys_refactor.py +share/blender/2.64/scripts/modules/bl_i18n_utils/__init__.py +share/blender/2.64/scripts/modules/bl_i18n_utils/bl_process_msg.py +share/blender/2.64/scripts/modules/bl_i18n_utils/check_po.py +share/blender/2.64/scripts/modules/bl_i18n_utils/clean_po.py +share/blender/2.64/scripts/modules/bl_i18n_utils/import_po_from_branches.py +share/blender/2.64/scripts/modules/bl_i18n_utils/merge_po.py +share/blender/2.64/scripts/modules/bl_i18n_utils/rtl_preprocess.py +share/blender/2.64/scripts/modules/bl_i18n_utils/settings.py +share/blender/2.64/scripts/modules/bl_i18n_utils/spell_check_utils.py +share/blender/2.64/scripts/modules/bl_i18n_utils/update_branches.py +share/blender/2.64/scripts/modules/bl_i18n_utils/update_mo.py +share/blender/2.64/scripts/modules/bl_i18n_utils/update_msg.py +share/blender/2.64/scripts/modules/bl_i18n_utils/update_po.py +share/blender/2.64/scripts/modules/bl_i18n_utils/update_pot.py +share/blender/2.64/scripts/modules/bl_i18n_utils/update_trunk.py +share/blender/2.64/scripts/modules/bl_i18n_utils/user_settings.py +share/blender/2.64/scripts/modules/bl_i18n_utils/utils.py +share/blender/2.64/scripts/modules/blend_render_info.py +share/blender/2.64/scripts/modules/bpy/__init__.py +share/blender/2.64/scripts/modules/bpy/ops.py +share/blender/2.64/scripts/modules/bpy/path.py +share/blender/2.64/scripts/modules/bpy/utils.py +share/blender/2.64/scripts/modules/bpy_extras/__init__.py +share/blender/2.64/scripts/modules/bpy_extras/anim_utils.py +share/blender/2.64/scripts/modules/bpy_extras/image_utils.py +share/blender/2.64/scripts/modules/bpy_extras/io_utils.py +share/blender/2.64/scripts/modules/bpy_extras/keyconfig_utils.py +share/blender/2.64/scripts/modules/bpy_extras/mesh_utils.py +share/blender/2.64/scripts/modules/bpy_extras/object_utils.py +share/blender/2.64/scripts/modules/bpy_extras/view3d_utils.py +share/blender/2.64/scripts/modules/bpy_types.py +share/blender/2.64/scripts/modules/bpyml.py +share/blender/2.64/scripts/modules/bpyml_ui.py +share/blender/2.64/scripts/modules/console/__init__.py +share/blender/2.64/scripts/modules/console/complete_calltip.py +share/blender/2.64/scripts/modules/console/complete_import.py +share/blender/2.64/scripts/modules/console/complete_namespace.py +share/blender/2.64/scripts/modules/console/intellisense.py +share/blender/2.64/scripts/modules/console_python.py +share/blender/2.64/scripts/modules/console_shell.py +share/blender/2.64/scripts/modules/graphviz_export.py +share/blender/2.64/scripts/modules/keyingsets_utils.py +share/blender/2.64/scripts/modules/rna_info.py +share/blender/2.64/scripts/modules/rna_prop_ui.py +share/blender/2.64/scripts/modules/rna_xml.py +share/blender/2.64/scripts/modules/sys_info.py +share/blender/2.64/scripts/presets/camera/APS-C_DSLR.py +share/blender/2.64/scripts/presets/camera/Blender.py +share/blender/2.64/scripts/presets/camera/Canon_1100D.py +share/blender/2.64/scripts/presets/camera/Canon_1D.py +share/blender/2.64/scripts/presets/camera/Canon_1DS.py +share/blender/2.64/scripts/presets/camera/Canon_500D.py +share/blender/2.64/scripts/presets/camera/Canon_550D.py +share/blender/2.64/scripts/presets/camera/Canon_5D.py +share/blender/2.64/scripts/presets/camera/Canon_600D.py +share/blender/2.64/scripts/presets/camera/Canon_60D.py +share/blender/2.64/scripts/presets/camera/Canon_7D.py +share/blender/2.64/scripts/presets/camera/Nikon_D300S.py +share/blender/2.64/scripts/presets/camera/Nikon_D3100.py +share/blender/2.64/scripts/presets/camera/Nikon_D3S.py +share/blender/2.64/scripts/presets/camera/Nikon_D5000.py +share/blender/2.64/scripts/presets/camera/Nikon_D5100.py +share/blender/2.64/scripts/presets/camera/Nikon_D7000.py +share/blender/2.64/scripts/presets/camera/Nikon_D90.py +share/blender/2.64/scripts/presets/camera/Red_Epic.py +share/blender/2.64/scripts/presets/camera/Red_One_2K.py +share/blender/2.64/scripts/presets/camera/Red_One_3K.py +share/blender/2.64/scripts/presets/camera/Red_One_4K.py +share/blender/2.64/scripts/presets/camera/Sony_A55.py +share/blender/2.64/scripts/presets/camera/full_frame_35mm_film.py +share/blender/2.64/scripts/presets/camera/micro_four_thirds.py +share/blender/2.64/scripts/presets/camera/super_16_film.py +share/blender/2.64/scripts/presets/camera/super_35_film.py +share/blender/2.64/scripts/presets/cloth/cotton.py +share/blender/2.64/scripts/presets/cloth/denim.py +share/blender/2.64/scripts/presets/cloth/leather.py +share/blender/2.64/scripts/presets/cloth/rubber.py +share/blender/2.64/scripts/presets/cloth/silk.py +share/blender/2.64/scripts/presets/cycles/integrator/direct_light.py +share/blender/2.64/scripts/presets/cycles/integrator/full_global_illumination.py +share/blender/2.64/scripts/presets/cycles/integrator/limited_global_illumination.py +share/blender/2.64/scripts/presets/ffmpeg/DV.py +share/blender/2.64/scripts/presets/ffmpeg/DVD.py +share/blender/2.64/scripts/presets/ffmpeg/SVCD.py +share/blender/2.64/scripts/presets/ffmpeg/VCD.py +share/blender/2.64/scripts/presets/ffmpeg/h264.py +share/blender/2.64/scripts/presets/ffmpeg/theora.py +share/blender/2.64/scripts/presets/ffmpeg/xvid.py +share/blender/2.64/scripts/presets/fluid/honey.py +share/blender/2.64/scripts/presets/fluid/oil.py +share/blender/2.64/scripts/presets/fluid/water.py +share/blender/2.64/scripts/presets/framerate/23.98.py +share/blender/2.64/scripts/presets/framerate/24.py +share/blender/2.64/scripts/presets/framerate/25.py +share/blender/2.64/scripts/presets/framerate/29.97.py +share/blender/2.64/scripts/presets/framerate/30.py +share/blender/2.64/scripts/presets/framerate/50.py +share/blender/2.64/scripts/presets/framerate/59.94.py +share/blender/2.64/scripts/presets/framerate/60.py +share/blender/2.64/scripts/presets/framerate/Custom.py +share/blender/2.64/scripts/presets/interaction/blender.py +share/blender/2.64/scripts/presets/interaction/maya.py +share/blender/2.64/scripts/presets/interface_theme/back_to_black.xml +share/blender/2.64/scripts/presets/interface_theme/blender_24x.xml +share/blender/2.64/scripts/presets/interface_theme/elsyiun.xml +share/blender/2.64/scripts/presets/interface_theme/hexagon.xml +share/blender/2.64/scripts/presets/interface_theme/ubuntu_ambiance.xml +share/blender/2.64/scripts/presets/keyconfig/maya.py +share/blender/2.64/scripts/presets/operator/wm.collada_export/second_life_rigged.py +share/blender/2.64/scripts/presets/operator/wm.collada_export/second_life_static.py +share/blender/2.64/scripts/presets/render/DVCPRO_HD_1080p.py +share/blender/2.64/scripts/presets/render/DVCPRO_HD_720p.py +share/blender/2.64/scripts/presets/render/HDTV_1080p.py +share/blender/2.64/scripts/presets/render/HDTV_720p.py +share/blender/2.64/scripts/presets/render/HDV_1080p.py +share/blender/2.64/scripts/presets/render/HDV_NTSC_1080p.py +share/blender/2.64/scripts/presets/render/HDV_PAL_1080p.py +share/blender/2.64/scripts/presets/render/TV_NTSC_16_colon_9.py +share/blender/2.64/scripts/presets/render/TV_NTSC_4_colon_3.py +share/blender/2.64/scripts/presets/render/TV_PAL_16_colon_9.py +share/blender/2.64/scripts/presets/render/TV_PAL_4_colon_3.py +share/blender/2.64/scripts/presets/sss/apple.py +share/blender/2.64/scripts/presets/sss/chicken.py +share/blender/2.64/scripts/presets/sss/cream.py +share/blender/2.64/scripts/presets/sss/ketchup.py +share/blender/2.64/scripts/presets/sss/marble.py +share/blender/2.64/scripts/presets/sss/potato.py +share/blender/2.64/scripts/presets/sss/skim_milk.py +share/blender/2.64/scripts/presets/sss/skin1.py +share/blender/2.64/scripts/presets/sss/skin2.py +share/blender/2.64/scripts/presets/sss/whole_milk.py +share/blender/2.64/scripts/presets/sunsky/classic.py +share/blender/2.64/scripts/presets/sunsky/desert.py +share/blender/2.64/scripts/presets/sunsky/mountain.py +share/blender/2.64/scripts/presets/tracking_camera/Blender.py +share/blender/2.64/scripts/presets/tracking_camera/Canon_1100D.py +share/blender/2.64/scripts/presets/tracking_camera/Canon_1D.py +share/blender/2.64/scripts/presets/tracking_camera/Canon_1DS.py +share/blender/2.64/scripts/presets/tracking_camera/Canon_500D.py +share/blender/2.64/scripts/presets/tracking_camera/Canon_550D.py +share/blender/2.64/scripts/presets/tracking_camera/Canon_5D.py +share/blender/2.64/scripts/presets/tracking_camera/Canon_600D.py +share/blender/2.64/scripts/presets/tracking_camera/Canon_60D.py +share/blender/2.64/scripts/presets/tracking_camera/Canon_7D.py +share/blender/2.64/scripts/presets/tracking_camera/Nikon_D300S.py +share/blender/2.64/scripts/presets/tracking_camera/Nikon_D3100.py +share/blender/2.64/scripts/presets/tracking_camera/Nikon_D35.py +share/blender/2.64/scripts/presets/tracking_camera/Nikon_D5000.py +share/blender/2.64/scripts/presets/tracking_camera/Nikon_D5100.py +share/blender/2.64/scripts/presets/tracking_camera/Nikon_D7000.py +share/blender/2.64/scripts/presets/tracking_camera/Nikon_D90.py +share/blender/2.64/scripts/presets/tracking_camera/Red_Epic.py +share/blender/2.64/scripts/presets/tracking_camera/Red_One_2K.py +share/blender/2.64/scripts/presets/tracking_camera/Red_One_3K.py +share/blender/2.64/scripts/presets/tracking_camera/Red_One_4K.py +share/blender/2.64/scripts/presets/tracking_camera/Sony_A55.py +share/blender/2.64/scripts/presets/tracking_settings/blurry_footage.py +share/blender/2.64/scripts/presets/tracking_settings/default.py +share/blender/2.64/scripts/presets/tracking_settings/fast_motion.py +share/blender/2.64/scripts/presets/tracking_settings/planar.py +share/blender/2.64/scripts/presets/tracking_track_color/default.py +share/blender/2.64/scripts/presets/tracking_track_color/far_plane.py +share/blender/2.64/scripts/presets/tracking_track_color/near_plane.py +share/blender/2.64/scripts/presets/tracking_track_color/object.py +share/blender/2.64/scripts/startup/bl_operators/__init__.py +share/blender/2.64/scripts/startup/bl_operators/add_mesh_torus.py +share/blender/2.64/scripts/startup/bl_operators/anim.py +share/blender/2.64/scripts/startup/bl_operators/clip.py +share/blender/2.64/scripts/startup/bl_operators/console.py +share/blender/2.64/scripts/startup/bl_operators/image.py +share/blender/2.64/scripts/startup/bl_operators/mesh.py +share/blender/2.64/scripts/startup/bl_operators/node.py +share/blender/2.64/scripts/startup/bl_operators/object.py +share/blender/2.64/scripts/startup/bl_operators/object_align.py +share/blender/2.64/scripts/startup/bl_operators/object_quick_effects.py +share/blender/2.64/scripts/startup/bl_operators/object_randomize_transform.py +share/blender/2.64/scripts/startup/bl_operators/presets.py +share/blender/2.64/scripts/startup/bl_operators/screen_play_rendered_anim.py +share/blender/2.64/scripts/startup/bl_operators/sequencer.py +share/blender/2.64/scripts/startup/bl_operators/uvcalc_follow_active.py +share/blender/2.64/scripts/startup/bl_operators/uvcalc_lightmap.py +share/blender/2.64/scripts/startup/bl_operators/uvcalc_smart_project.py +share/blender/2.64/scripts/startup/bl_operators/vertexpaint_dirt.py +share/blender/2.64/scripts/startup/bl_operators/view3d.py +share/blender/2.64/scripts/startup/bl_operators/wm.py +share/blender/2.64/scripts/startup/bl_ui/__init__.py +share/blender/2.64/scripts/startup/bl_ui/properties_animviz.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_armature.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_bone.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_camera.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_curve.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_empty.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_lamp.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_lattice.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_mesh.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_metaball.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_modifier.py +share/blender/2.64/scripts/startup/bl_ui/properties_data_speaker.py +share/blender/2.64/scripts/startup/bl_ui/properties_game.py +share/blender/2.64/scripts/startup/bl_ui/properties_mask_common.py +share/blender/2.64/scripts/startup/bl_ui/properties_material.py +share/blender/2.64/scripts/startup/bl_ui/properties_object.py +share/blender/2.64/scripts/startup/bl_ui/properties_object_constraint.py +share/blender/2.64/scripts/startup/bl_ui/properties_paint_common.py +share/blender/2.64/scripts/startup/bl_ui/properties_particle.py +share/blender/2.64/scripts/startup/bl_ui/properties_physics_cloth.py +share/blender/2.64/scripts/startup/bl_ui/properties_physics_common.py +share/blender/2.64/scripts/startup/bl_ui/properties_physics_dynamicpaint.py +share/blender/2.64/scripts/startup/bl_ui/properties_physics_field.py +share/blender/2.64/scripts/startup/bl_ui/properties_physics_fluid.py +share/blender/2.64/scripts/startup/bl_ui/properties_physics_smoke.py +share/blender/2.64/scripts/startup/bl_ui/properties_physics_softbody.py +share/blender/2.64/scripts/startup/bl_ui/properties_render.py +share/blender/2.64/scripts/startup/bl_ui/properties_scene.py +share/blender/2.64/scripts/startup/bl_ui/properties_texture.py +share/blender/2.64/scripts/startup/bl_ui/properties_world.py +share/blender/2.64/scripts/startup/bl_ui/space_clip.py +share/blender/2.64/scripts/startup/bl_ui/space_console.py +share/blender/2.64/scripts/startup/bl_ui/space_dopesheet.py +share/blender/2.64/scripts/startup/bl_ui/space_filebrowser.py +share/blender/2.64/scripts/startup/bl_ui/space_graph.py +share/blender/2.64/scripts/startup/bl_ui/space_image.py +share/blender/2.64/scripts/startup/bl_ui/space_info.py +share/blender/2.64/scripts/startup/bl_ui/space_logic.py +share/blender/2.64/scripts/startup/bl_ui/space_nla.py +share/blender/2.64/scripts/startup/bl_ui/space_node.py +share/blender/2.64/scripts/startup/bl_ui/space_outliner.py +share/blender/2.64/scripts/startup/bl_ui/space_sequencer.py +share/blender/2.64/scripts/startup/bl_ui/space_text.py +share/blender/2.64/scripts/startup/bl_ui/space_time.py +share/blender/2.64/scripts/startup/bl_ui/space_userpref.py +share/blender/2.64/scripts/startup/bl_ui/space_userpref_keymap.py +share/blender/2.64/scripts/startup/bl_ui/space_view3d.py +share/blender/2.64/scripts/startup/bl_ui/space_view3d_toolbar.py +share/blender/2.64/scripts/startup/keyingsets_builtins.py +share/blender/2.64/scripts/templates/addon_add_object.py +share/blender/2.64/scripts/templates/background_job.py +share/blender/2.64/scripts/templates/batch_export.py +share/blender/2.64/scripts/templates/bmesh_simple.py +share/blender/2.64/scripts/templates/builtin_keyingset.py +share/blender/2.64/scripts/templates/driver_functions.py +share/blender/2.64/scripts/templates/gamelogic.py +share/blender/2.64/scripts/templates/gamelogic_module.py +share/blender/2.64/scripts/templates/gamelogic_simple.py +share/blender/2.64/scripts/templates/operator_file_export.py +share/blender/2.64/scripts/templates/operator_file_import.py +share/blender/2.64/scripts/templates/operator_mesh_add.py +share/blender/2.64/scripts/templates/operator_modal.py +share/blender/2.64/scripts/templates/operator_modal_draw.py +share/blender/2.64/scripts/templates/operator_modal_timer.py +share/blender/2.64/scripts/templates/operator_modal_view3d.py +share/blender/2.64/scripts/templates/operator_modal_view3d_raycast.py +share/blender/2.64/scripts/templates/operator_node.py +share/blender/2.64/scripts/templates/operator_simple.py +share/blender/2.64/scripts/templates/operator_uv.py +share/blender/2.64/scripts/templates/ui_menu.py +share/blender/2.64/scripts/templates/ui_menu_simple.py +share/blender/2.64/scripts/templates/ui_panel.py +share/blender/2.64/scripts/templates/ui_panel_simple.py +share/blender/GPL-license.txt +share/blender/Python-license.txt +share/blender/blender +share/blender/blenderplayer +share/blender/copyright.txt +share/blender/readme.html +@pkgdir share/blender/2.64/python/lib/python3.2/site-packages diff --git a/graphics/blender/distinfo b/graphics/blender/distinfo index 6c2f79b0ff4..5faa6692c6f 100644 --- a/graphics/blender/distinfo +++ b/graphics/blender/distinfo @@ -1,21 +1,20 @@ -$NetBSD: distinfo,v 1.32 2012/10/20 22:10:18 joerg Exp $ +$NetBSD: distinfo,v 1.33 2012/12/03 13:15:50 ryoon Exp $ -SHA1 (blender-2.49b.tar.gz) = 43f71e7de4efe79c518d45f4b5a04e03c28d5fc5 -RMD160 (blender-2.49b.tar.gz) = 5b641de7b41af5e4186c9721b66eddc6870f9fbc -Size (blender-2.49b.tar.gz) = 22918377 bytes -SHA1 (patch-ab) = 6779022a78e895154e6e95cecf16e5465ffab637 -SHA1 (patch-ac) = dcfa14519404915a69bd626c8a5a6029d2535ca2 -SHA1 (patch-ad) = ee070c6e61585c5ee657f8aa0cd210c15f73bcc9 -SHA1 (patch-ah) = b45f534b4c5850da13e9b421f73e33c8d079696f -SHA1 (patch-ai) = 31f94e8dcdabbe043d94a7fd53bfbdaa9d35fc99 -SHA1 (patch-aj) = 59c935bc84101e3a57af5231d6f1153897bbbb03 -SHA1 (patch-ak) = 98c93b7ee12e60aff0d8890cd1cdc7213515d270 -SHA1 (patch-al) = 8589d359484351766bfb99e58debf075bebbfd66 -SHA1 (patch-am) = 6da69ace1e9da706124621f6721fd4d4f804cc6f -SHA1 (patch-extern_bullet2_src_BulletSoftBody_btSoftBodyInternals.h) = 00d32551c63b68bedfab73f88e8b26a9a3a2adf3 -SHA1 (patch-extern_solid_include_MT_Quaternion.h) = 7dda79b1ec874268f7cf38d846e7ad30aa8c2d88 -SHA1 (patch-extern_solid_src_complex_DT__BBoxTree.h) = dbf724c1933c756fd61c68bf1acccee569b817d6 -SHA1 (patch-extern_solid_src_complex_DT__Complex.cpp) = 7d53b7ceaedd0d1c467718037fb63395cbeb4559 -SHA1 (patch-intern_elbeem_intern_ntl__vector3dim.h) = 3aabccfa0040e43829841270f32e0263bfa236f1 -SHA1 (patch-intern_elbeem_intern_utilities.h) = 3d5a158b0c2fdaddc5897a3e8aa41a090c3a514c -SHA1 (patch-source_blender_python_BPY__interface.c) = 9cc72c2fea93e9bfdf9b2f9cc147be90c044d53d +SHA1 (blender-2.64a.tar.gz) = 23aca6dc15e2ff149f51b54f008d0a1620436cdd +RMD160 (blender-2.64a.tar.gz) = b2c78814441be92f1197c5d7ebc2c9fccb7acd4d +Size (blender-2.64a.tar.gz) = 31388178 bytes +SHA1 (patch-SConstruct) = 4e3e81d3f4d8bf53a26102cb489ad507d14dd086 +SHA1 (patch-ab) = 8d101a8b780f3c1a41214db9dd295f2565f2e61c +SHA1 (patch-am) = d023b35fe2355e2e53e11a3c91730ebe21da6de8 +SHA1 (patch-build__files_scons_config_netbsd6-config.py) = 3a39966108612f2dc895ff8f9fe25f03517e2175 +SHA1 (patch-build__files_scons_tools_btools.py) = 09fe67666091daafcf586aa70dc19fa6964b2098 +SHA1 (patch-doc_python__api_sphinx__doc__gen.sh) = e50c9f7e36d219a789d027a5044846b105a662b0 +SHA1 (patch-extern_libmv_libmv_numeric_numeric.h) = fe674deb97e1ff8604b7fe505c715621b9fee5ee +SHA1 (patch-extern_libmv_libmv_tracking_brute__region__tracker.cc) = 3d09eb0821a628c15e898b6fa432fe1d787f0eb8 +SHA1 (patch-extern_libmv_third__party_glog_src_config.h) = d889d56d47167222ab54fad1c8f87c7ddb02852a +SHA1 (patch-extern_libmv_third__party_glog_src_config__netbsd.h) = 31fa525721adb920149186101f3662af2f4f8c08 +SHA1 (patch-extern_libmv_third__party_glog_src_utilities.h) = 32fea10d935621ef0529fe56b3e857685fbc5d1f +SHA1 (patch-intern_ghost_SConscript) = 84dad76663e6dfc3bd6636fe8924921fe04caa2f +SHA1 (patch-intern_guardedalloc_MEM__sys__types.h) = 7b3ee6dc5d1b66a785a838c07507b8d93f7f1d1d +SHA1 (patch-intern_opennl_superlu_superlu__sys__types.h) = 99fa9ffa655914067173481d5fe6c498ad069717 +SHA1 (patch-user-config.py) = a3cf1a22185496f13b068a31d4b9638c8821f941 diff --git a/graphics/blender/patches/patch-SConstruct b/graphics/blender/patches/patch-SConstruct new file mode 100644 index 00000000000..54b97cb6235 --- /dev/null +++ b/graphics/blender/patches/patch-SConstruct @@ -0,0 +1,26 @@ +$NetBSD: patch-SConstruct,v 1.1 2012/12/03 13:15:50 ryoon Exp $ + +--- SConstruct.orig 2012-10-09 18:43:46.000000000 +0000 ++++ SConstruct +@@ -140,20 +140,7 @@ else: + B.quickie=[] + + toolset = B.arguments.get('BF_TOOLSET', None) +-if toolset: +- print "Using " + toolset +- if toolset=='mstoolkit': +- env = BlenderEnvironment(ENV = os.environ) +- env.Tool('mstoolkit', [toolpath]) +- else: +- env = BlenderEnvironment(tools=[toolset], ENV = os.environ) +- if env: +- btools.SetupSpawn(env) +-else: +- if bitness==64 and platform=='win32': +- env = BlenderEnvironment(ENV = os.environ, MSVS_ARCH='amd64') +- else: +- env = BlenderEnvironment(ENV = os.environ) ++env = BlenderEnvironment(ENV = os.environ) + + if not env: + print "Could not create a build environment" diff --git a/graphics/blender/patches/patch-ab b/graphics/blender/patches/patch-ab index 3497a8784c9..020eeb0ba78 100644 --- a/graphics/blender/patches/patch-ab +++ b/graphics/blender/patches/patch-ab @@ -1,45 +1,31 @@ -$NetBSD: patch-ab,v 1.8 2009/11/03 19:06:51 markd Exp $ +$NetBSD: patch-ab,v 1.9 2012/12/03 13:15:50 ryoon Exp $ ---- source/blender/blenlib/intern/storage.c.orig 2009-05-25 19:46:22 +0300 -+++ source/blender/blenlib/intern/storage.c 2009-08-28 21:32:31 +0300 -@@ -47,7 +47,7 @@ +--- source/blender/blenlib/intern/storage.c.orig 2012-10-09 18:40:29.000000000 +0000 ++++ source/blender/blenlib/intern/storage.c +@@ -43,7 +43,7 @@ #include <time.h> #include <sys/stat.h> --#if defined (__sun__) || defined (__sun) || defined (__sgi) -+#if defined (__sun__) || defined (__sun) || defined (__sgi) || defined(__DragonFly__) || defined (__NetBSD__) +-#if defined(__sun__) || defined(__sun) || defined(__NetBSD__) ++#if defined(__sun__) || defined(__sun) || defined(__NetBSD__) || defined(__DragonFly__) #include <sys/statvfs.h> /* Other modern unix os's should probably use this also */ #elif !defined(__FreeBSD__) && !defined(linux) && (defined(__sparc) || defined(__sparc__)) #include <sys/statfs.h> -@@ -88,10 +88,6 @@ struct statfs { - #include <pwd.h> - #endif - --#if !defined(__FreeBSD__) && !defined(__APPLE__) --#include <malloc.h> --#endif -- - /* lib includes */ - #include "MEM_guardedalloc.h" - -@@ -179,7 +175,7 @@ double BLI_diskfree(char *dir) - return (double) (freec*bytesps*sectorspc); +@@ -163,7 +163,7 @@ double BLI_dir_free_space(const char *di + return (double) (freec * bytesps * sectorspc); #else --#if defined (__sun__) || defined (__sun) || defined (__sgi) -+#if defined (__sun__) || defined (__sun) || defined (__sgi) || defined(__DragonFly__) || defined (__NetBSD__) +-#if defined(__sun__) || defined(__sun) || defined(__NetBSD__) ++#if defined(__sun__) || defined(__sun) || defined(__NetBSD__) || defined(__DragonFly__) struct statvfs disk; #else struct statfs disk; -@@ -204,9 +200,9 @@ double BLI_diskfree(char *dir) - return -1; +@@ -186,7 +186,7 @@ double BLI_dir_free_space(const char *di + if (statfs(name, &disk)) return(-1); #endif --#if defined (__sun__) || defined (__sun) || defined (__sgi) -+#if defined (__sun__) || defined (__sun) || defined (__sgi) || defined(__DragonFly__) || defined (__NetBSD__) +-#if defined(__sun__) || defined(__sun) || defined(__NetBSD__) ++#if defined(__sun__) || defined(__sun) || defined(__NetBSD__) || defined(__DragonFly__) if (statvfs(name, &disk)) return(-1); --#elif !defined(__FreeBSD__) && !defined(linux) && (defined(__sparc) || defined(__sparc__)) -+#elif !defined(__FreeBSD__) && !defined(linux) && !defined (__OpenBSD__) && !defined (__NetBSD__) && (defined(__sparc) || defined(__sparc__)) + #elif !defined(__FreeBSD__) && !defined(linux) && (defined(__sparc) || defined(__sparc__)) /* WARNING - This may not be supported by geeneric unix os's - Campbell */ - if (statfs(name, &disk, sizeof(struct statfs), 0)) return(-1); - #endif diff --git a/graphics/blender/patches/patch-ac b/graphics/blender/patches/patch-ac deleted file mode 100644 index 6e2b5723870..00000000000 --- a/graphics/blender/patches/patch-ac +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2005/02/26 20:34:43 reinoud Exp $ - ---- source/nan_warn.mk.orig 2004-09-01 14:09:22.000000000 +0200 -+++ source/nan_warn.mk -@@ -35,11 +35,11 @@ - # - - # Force the correct redefinition --LEVEL_1_C_WARNINGS = -FIX_NAN_WARN --LEVEL_1_CPP_WARNINGS = -FIX_NAN_WARN --LEVEL_2_C_WARNINGS = -FIX_NAN_WARN --LEVEL_2_CPP_WARNINGS = -FIX_NAN_WARN --FIX_STUBS_WARNINGS = -FIX_NAN_WARN -+LEVEL_1_C_WARNINGS = -DFIX_NAN_WARN -+LEVEL_1_CPP_WARNINGS = -DFIX_NAN_WARN -+LEVEL_2_C_WARNINGS = -DFIX_NAN_WARN -+LEVEL_2_CPP_WARNINGS = -DFIX_NAN_WARN -+FIX_STUBS_WARNINGS = -DFIX_NAN_WARN - - ######################################################################## - # Level 1: basic C warnings. diff --git a/graphics/blender/patches/patch-ad b/graphics/blender/patches/patch-ad deleted file mode 100644 index d30cfaaa999..00000000000 --- a/graphics/blender/patches/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ad,v 1.5 2009/08/28 20:46:19 hasso Exp $ - ---- extern/bFTGL/src/FTVectoriser.cpp.orig 2007-11-05 15:05:58 +0200 -+++ extern/bFTGL/src/FTVectoriser.cpp 2009-08-28 21:34:45 +0300 -@@ -11,7 +11,7 @@ - #else - typedef GLvoid (*GLUTesselatorFunction)(...); - #endif --#elif defined( __mips ) || defined( __linux__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __sun ) || defined (__CYGWIN__) -+#elif defined( __mips ) || defined( __linux__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __sun ) || defined (__CYGWIN__) || defined( __NetBSD__ ) || defined(__DragonFly__) - typedef GLvoid (*GLUTesselatorFunction)(); - #elif defined ( WIN32) - typedef GLvoid (CALLBACK *GLUTesselatorFunction)( ); diff --git a/graphics/blender/patches/patch-ah b/graphics/blender/patches/patch-ah deleted file mode 100644 index 615bb2b5542..00000000000 --- a/graphics/blender/patches/patch-ah +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-ah,v 1.1 2007/08/08 17:39:09 joerg Exp $ - ---- intern/SoundSystem/intern/SND_WaveCache.cpp.orig 2007-08-08 17:01:35.000000000 +0000 -+++ intern/SoundSystem/intern/SND_WaveCache.cpp -@@ -44,16 +44,7 @@ - - #include "SND_WaveCache.h" - #include <stdio.h> -- --#ifdef __APPLE__ --# include <sys/malloc.h> --#else --# ifdef __FreeBSD__ --# include <stdlib.h> --# else --# include <malloc.h> --# endif --#endif -+#include <stdlib.h> - - SND_WaveCache::SND_WaveCache() - { diff --git a/graphics/blender/patches/patch-ai b/graphics/blender/patches/patch-ai deleted file mode 100644 index 91618403c43..00000000000 --- a/graphics/blender/patches/patch-ai +++ /dev/null @@ -1,43 +0,0 @@ -$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 diff --git a/graphics/blender/patches/patch-aj b/graphics/blender/patches/patch-aj deleted file mode 100644 index 03afa1f73c3..00000000000 --- a/graphics/blender/patches/patch-aj +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-aj,v 1.1 2008/06/21 21:14:48 joerg Exp $ - ---- source/creator/CMakeLists.txt.orig 2008-06-21 14:38:11.000000000 +0000 -+++ source/creator/CMakeLists.txt -@@ -269,6 +269,7 @@ IF(UNIX) - ENDIF(REMLIB) - ENDFOREACH(SORTLIB) - TARGET_LINK_LIBRARIES(blender ${BLENDER_SORTED_LIBS}) -+ SET_TARGET_PROPERTIES(blender PROPERTIES SKIP_BUILD_RPATH ON ) - ELSE(UNIX) - TARGET_LINK_LIBRARIES(blender ${BLENDER_LINK_LIBS}) - ENDIF(UNIX) diff --git a/graphics/blender/patches/patch-ak b/graphics/blender/patches/patch-ak deleted file mode 100644 index c056c557226..00000000000 --- a/graphics/blender/patches/patch-ak +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ak,v 1.1 2009/11/03 19:06:51 markd Exp $ - ---- intern/guardedalloc/BLO_sys_types.h.orig 2009-09-02 03:20:29.000000000 +1200 -+++ intern/guardedalloc/BLO_sys_types.h -@@ -109,7 +109,7 @@ typedef unsigned long uintptr_t; - #ifndef ntohl - #define ntohl(x) correctByteOrder(x) - #endif --#elif defined (__FreeBSD__) || defined (__OpenBSD__) -+#elif defined (__FreeBSD__) || defined (__OpenBSD__) || defined (__NetBSD__) - #include <sys/param.h> - #elif defined (__APPLE__) - #include <sys/types.h> diff --git a/graphics/blender/patches/patch-al b/graphics/blender/patches/patch-al deleted file mode 100644 index 21feddf9b0a..00000000000 --- a/graphics/blender/patches/patch-al +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-al,v 1.1 2009/11/03 19:06:51 markd Exp $ - ---- intern/opennl/superlu/BLO_sys_types.h.orig 2009-09-02 03:20:33.000000000 +1200 -+++ intern/opennl/superlu/BLO_sys_types.h -@@ -111,7 +111,7 @@ typedef unsigned long uintptr_t; - #ifndef ntohl - #define ntohl(x) correctByteOrder(x) - #endif --#elif defined (__FreeBSD__) || defined (__OpenBSD__) -+#elif defined (__FreeBSD__) || defined (__OpenBSD__) || defined (__NetBSD__) - #include <sys/param.h> - #elif defined (__APPLE__) - #include <sys/types.h> diff --git a/graphics/blender/patches/patch-am b/graphics/blender/patches/patch-am index c9977dcd4cc..5734ada947b 100644 --- a/graphics/blender/patches/patch-am +++ b/graphics/blender/patches/patch-am @@ -1,13 +1,13 @@ -$NetBSD: patch-am,v 1.1 2009/11/03 19:06:51 markd Exp $ +$NetBSD: patch-am,v 1.2 2012/12/03 13:15:51 ryoon Exp $ ---- source/blender/blenloader/BLO_sys_types.h.orig 2009-09-02 03:21:51.000000000 +1200 +--- source/blender/blenloader/BLO_sys_types.h.orig 2012-10-09 18:40:21.000000000 +0000 +++ source/blender/blenloader/BLO_sys_types.h -@@ -102,7 +102,7 @@ typedef unsigned long uintptr_t; - #ifdef _WIN32 - #define htonl(x) correctByteOrder(x) +@@ -123,7 +123,7 @@ unsigned long __attribute__((__stdcall__ #define ntohl(x) correctByteOrder(x) --#elif defined (__FreeBSD__) || defined (__OpenBSD__) -+#elif defined (__FreeBSD__) || defined (__OpenBSD__) || defined (__NetBSD__) + #endif + #endif +-#elif defined(__FreeBSD__) || defined(__OpenBSD__) ++#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined (__NetBSD__) #include <sys/param.h> - #elif defined (__APPLE__) + #elif defined(__APPLE__) #include <sys/types.h> diff --git a/graphics/blender/patches/patch-build__files_scons_config_netbsd6-config.py b/graphics/blender/patches/patch-build__files_scons_config_netbsd6-config.py new file mode 100644 index 00000000000..2ea15152640 --- /dev/null +++ b/graphics/blender/patches/patch-build__files_scons_config_netbsd6-config.py @@ -0,0 +1,233 @@ +$NetBSD: patch-build__files_scons_config_netbsd6-config.py,v 1.1 2012/12/03 13:15:51 ryoon Exp $ + +* config file for NetBSD 6 + +--- build_files/scons/config/netbsd6-config.py.orig 2012-12-03 06:03:04.000000000 +0000 ++++ build_files/scons/config/netbsd6-config.py +@@ -0,0 +1,226 @@ ++CC = 'gcc' ++CXX = 'g++' ++ ++LCGDIR = '../lib/netbsd6' ++LIBDIR = "${LCGDIR}" ++ ++BF_PYTHON_ABI_FLAGS = '' ++BF_PYTHON = '/usr/local' ++BF_PYTHON_LIBPATH = '${BF_PYTHON}/lib' ++BF_PYTHON_VERSION = '3.2' ++WITH_BF_STATICPYTHON = False ++BF_PYTHON_INC = '${BF_PYTHON}/include/python${BF_PYTHON_VERSION}${BF_PYTHON_ABI_FLAGS}' ++BF_PYTHON_BINARY = '${BF_PYTHON}/bin/python${BF_PYTHON_VERSION}' ++BF_PYTHON_LIB = 'python${BF_PYTHON_VERSION}${BF_PYTHON_ABI_FLAGS}' ++BF_PYTHON_LIB_STATIC = '${BF_PYTHON}/lib/libpython${BF_PYTHON_VERSION}${BF_PYTHON_ABI_FLAGS}.a' ++ ++WITH_BF_OPENAL = True ++WITH_BF_STATICOPENAL = False ++BF_OPENAL = '/usr/local' ++BF_OPENAL_INC = '${BF_OPENAL}/include' ++BF_OPENAL_LIB = 'openal' ++BF_OPENAL_LIB_STATIC = '${BF_OPENAL}/lib/libopenal.a' ++ ++BF_CXX = '/usr/local' ++WITH_BF_STATICCXX = False ++BF_CXX_LIB_STATIC = '${BF_CXX}/lib/libstdc++.a' ++ ++WITH_BF_JACK = True ++BF_JACK = '/usr/local' ++BF_JACK_INC = '${BF_JACK}/include/jack' ++BF_JACK_LIB = 'jack' ++BF_JACK_LIBPATH = '${BF_JACK}/lib' ++ ++WITH_BF_SNDFILE = True ++BF_SNDFILE = '/usr/local' ++BF_SNDFILE_INC = '${BF_SNDFILE}/include/sndfile' ++BF_SNDFILE_LIB = 'sndfile' ++BF_SNDFILE_LIBPATH = '${BF_SNDFILE}/lib' ++ ++WITH_BF_SDL = True ++BF_SDL = '/usr/local' #$(shell sdl-config --prefix) ++BF_SDL_INC = '${BF_SDL}/include/SDL' #$(shell $(BF_SDL)/bin/sdl-config --cflags) ++BF_SDL_LIB = 'SDL' #BF_SDL #$(shell $(BF_SDL)/bin/sdl-config --libs) -lSDL_mixer ++ ++WITH_BF_OPENEXR = True ++WITH_BF_STATICOPENEXR = False ++BF_OPENEXR = '/usr/local' ++# when compiling with your own openexr lib you might need to set... ++# BF_OPENEXR_INC = '${BF_OPENEXR}/include/OpenEXR ${BF_OPENEXR}/include' ++ ++BF_OPENEXR_INC = '${BF_OPENEXR}/include/OpenEXR' ++BF_OPENEXR_LIB = 'Half IlmImf Iex Imath ' ++BF_OPENEXR_LIB_STATIC = '${BF_OPENEXR}/lib/libHalf.a ${BF_OPENEXR}/lib/libIlmImf.a ${BF_OPENEXR}/lib/libIex.a ${BF_OPENEXR}/lib/libImath.a ${BF_OPENEXR}/lib/libIlmThread.a' ++# BF_OPENEXR_LIBPATH = '${BF_OPENEXR}/lib' ++ ++WITH_BF_DDS = True ++ ++WITH_BF_JPEG = True ++BF_JPEG = '/usr/local' ++BF_JPEG_INC = '${BF_JPEG}/include' ++BF_JPEG_LIB = 'jpeg' ++ ++WITH_BF_PNG = True ++BF_PNG = '/usr/local' ++BF_PNG_INC = '${BF_PNG}/include' ++BF_PNG_LIB = 'png' ++ ++WITH_BF_TIFF = True ++BF_TIFF = '/usr/local' ++BF_TIFF_INC = '${BF_TIFF}/include' ++BF_TIFF_LIB = 'tiff' ++ ++WITH_BF_ZLIB = True ++BF_ZLIB = '/usr' ++BF_ZLIB_INC = '${BF_ZLIB}/include' ++BF_ZLIB_LIB = 'z' ++ ++WITH_BF_INTERNATIONAL = True ++ ++BF_GETTEXT = '/usr/local' ++BF_GETTEXT_INC = '${BF_GETTEXT}/include' ++BF_GETTEXT_LIB = 'gettextlib' ++BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' ++ ++WITH_BF_GAMEENGINE = False ++WITH_BF_PLAYER = True ++WITH_BF_OCEANSIM = True ++ ++WITH_BF_BULLET = True ++BF_BULLET = '#extern/bullet2/src' ++BF_BULLET_INC = '${BF_BULLET}' ++BF_BULLET_LIB = 'extern_bullet' ++ ++BF_FREETYPE = '/usr/local' ++BF_FREETYPE_INC = '${BF_FREETYPE}/include ${BF_FREETYPE}/include/freetype2' ++BF_FREETYPE_LIB = 'freetype' ++ ++### XXX Find what this actually wants; it doesn't want libquicktime. ++WITH_BF_QUICKTIME = False ++BF_QUICKTIME = '/usr/local' ++BF_QUICKTIME_INC = '${BF_QUICKTIME}/include' ++ ++WITH_BF_ICONV = True ++BF_ICONV = LIBDIR + "/iconv" ++BF_ICONV_INC = '${BF_ICONV}/include' ++BF_ICONV_LIB = 'iconv' ++BF_ICONV_LIBPATH = '${BF_ICONV}/lib' ++ ++WITH_BF_BINRELOC = True ++ ++# enable ffmpeg support ++WITH_BF_FFMPEG = True ++BF_FFMPEG = '/usr/local' ++BF_FFMPEG_LIB = 'avformat avcodec swscale avutil avdevice' ++BF_FFMPEG_INC = '${BF_FFMPEG}/include' ++BF_FFMPEG_LIBPATH='${BF_FFMPEG}/lib' ++ ++# enable ogg, vorbis and theora in ffmpeg ++WITH_BF_OGG = True ++BF_OGG = '/usr/local' ++BF_OGG_INC = '${BF_OGG}/include' ++BF_OGG_LIB = 'ogg vorbis vorbisenc theoraenc theoradec' ++ ++WITH_BF_OPENJPEG = True ++BF_OPENJPEG = '#extern/libopenjpeg' ++BF_OPENJPEG_LIB = '' ++BF_OPENJPEG_INC = '${BF_OPENJPEG}' ++BF_OPENJPEG_LIBPATH='${BF_OPENJPEG}/lib' ++ ++WITH_BF_FFTW3 = True ++BF_FFTW3 = LIBDIR + '/usr/local' ++BF_FFTW3_INC = '${BF_FFTW3}/include' ++BF_FFTW3_LIB = 'fftw3' ++BF_FFTW3_LIBPATH = '${BF_FFTW3}/lib' ++ ++WITH_BF_REDCODE = False ++BF_REDCODE = '#extern/libredcode' ++BF_REDCODE_LIB = '' ++# BF_REDCODE_INC = '${BF_REDCODE}/include' ++BF_REDCODE_INC = '${BF_REDCODE}/../' #C files request "libredcode/format.h" which is in "#extern/libredcode/format.h", stupid but compiles for now. ++BF_REDCODE_LIBPATH='${BF_REDCODE}/lib' ++ ++# Mesa Libs should go here if your using them as well.... ++WITH_BF_STATICOPENGL = False ++BF_OPENGL = '/usr/local' ++BF_OPENGL_INC = '${BF_OPENGL}/include' ++BF_OPENGL_LIB = 'GL GLU X11 Xi' ++BF_OPENGL_LIBPATH = '/usr/X11R6/lib' ++BF_OPENGL_LIB_STATIC = '${BF_OPENGL_LIBPATH}/libGL.a ${BF_OPENGL_LIBPATH}/libGLU.a ${BF_OPENGL_LIBPATH}/libXxf86vm.a ${BF_OPENGL_LIBPATH}/libX11.a ${BF_OPENGL_LIBPATH}/libXi.a ${BF_OPENGL_LIBPATH}/libXext.a ${BF_OPENGL_LIBPATH}/libXxf86vm.a' ++ ++WITH_BF_COLLADA = False ++BF_COLLADA = '#source/blender/collada' ++BF_COLLADA_INC = '${BF_COLLADA}' ++BF_COLLADA_LIB = 'bf_collada' ++BF_OPENCOLLADA = '/usr' ++BF_OPENCOLLADA_INC = '${BF_OPENCOLLADA}' ++BF_OPENCOLLADA_LIB = 'OpenCOLLADAStreamWriter OpenCOLLADASaxFrameworkLoader OpenCOLLADAFramework OpenCOLLADABaseUtils GeneratedSaxParser UTF MathMLSolver pcre buffer ftoa' ++BF_OPENCOLLADA_LIBPATH = '${BF_OPENCOLLADA}/lib' ++BF_PCRE = '/usr/local' ++BF_PCRE_LIB = 'pcre' ++BF_PCRE_LIBPATH = '${BF_PCRE}/lib' ++BF_EXPAT = '/usr/local' ++BF_EXPAT_LIB = 'expat' ++BF_EXPAT_LIBPATH = '${BF_EXPAT}/lib' ++ ++WITH_BF_OIIO = True ++WITH_BF_STATICOIIO = False ++BF_OIIO = LIBDIR + '/oiio' ++BF_OIIO_INC = BF_OIIO + '/include' ++BF_OIIO_LIB = 'OpenImageIO' ++BF_OIIO_LIBPATH = BF_OIIO + '/lib' ++ ++WITH_BF_BOOST = True ++WITH_BF_STATICBOOST = False ++BF_BOOST = LIBDIR + '/boost' ++BF_BOOST_INC = BF_BOOST + '/include' ++BF_BOOST_LIB = 'boost_date_time boost_filesystem boost_regex boost_system boost_thread' ++BF_BOOST_LIBPATH = BF_BOOST + '/lib' ++ ++WITH_BF_OPENMP = True ++ ++WITH_GHOST_XDND = False ++ ++#Ray trace optimization ++WITH_BF_RAYOPTIMIZATION = True ++BF_RAYOPTIMIZATION_SSE_FLAGS = ['-msse','-pthread'] ++ ++CCFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing','-D_LARGEFILE_SOURCE','-D_FILE_OFFSET_BITS=64','-D_LARGEFILE64_SOURCE'] ++CXXFLAGS = [] ++ ++CPPFLAGS = [] ++if WITH_BF_FFMPEG: ++ # libavutil needs UINT64_C() ++ CXXFLAGS += ['-D__STDC_CONSTANT_MACROS', ] ++REL_CFLAGS = [] ++REL_CXXFLAGS = [] ++REL_CCFLAGS = ['-DNDEBUG', '-O2'] ++##BF_DEPEND = True ++## ++##AR = ar ++##ARFLAGS = ruv ++##ARFLAGSQUIET = ru ++## ++C_WARN = ['-Wno-char-subscripts', '-Wdeclaration-after-statement', '-Wstrict-prototypes'] ++CC_WARN = ['-Wall'] ++CXX_WARN = ['-Wno-invalid-offsetof', '-Wno-sign-compare'] ++ ++ ++##FIX_STUBS_WARNINGS = -Wno-unused ++ ++LLIBS = ['util', 'c', 'm', 'pthread', 'stdc++'] ++##LOPTS = --dynamic ++##DYNLDFLAGS = -shared $(LDFLAGS) ++ ++BF_PROFILE = False ++BF_PROFILE_CCFLAGS = ['-pg','-g'] ++BF_PROFILE_LINKFLAGS = ['-pg'] ++ ++BF_DEBUG = False ++BF_DEBUG_CCFLAGS = ['-g', '-D_DEBUG'] ++ ++BF_BUILDDIR = '../build/netbsd6' ++BF_INSTALLDIR='../install/netbsd6' ++ ++#Link against pthread ++PLATFORM_LINKFLAGS = ['-pthread'] diff --git a/graphics/blender/patches/patch-build__files_scons_tools_btools.py b/graphics/blender/patches/patch-build__files_scons_tools_btools.py new file mode 100644 index 00000000000..09dc9d7f21a --- /dev/null +++ b/graphics/blender/patches/patch-build__files_scons_tools_btools.py @@ -0,0 +1,16 @@ +$NetBSD: patch-build__files_scons_tools_btools.py,v 1.1 2012/12/03 13:15:51 ryoon Exp $ + +From Gentoo's 2.64a/0300-scons-failure.patch + +--- build_files/scons/tools/btools.py.orig 2012-10-09 18:41:53.000000000 +0000 ++++ build_files/scons/tools/btools.py +@@ -482,7 +482,9 @@ def read_opts(env, cfg, args): + ('BF_3DMOUSE_LIB', '3d mouse library', ''), + ('BF_3DMOUSE_LIBPATH', '3d mouse library path', ''), + ('BF_3DMOUSE_LIB_STATIC', '3d mouse static library', ''), ++ ) # end of opts.AddOptions() + ++ localopts.AddVariables( + ('CFLAGS', 'C only flags', []), + ('CCFLAGS', 'Generic C and C++ flags', []), + ('CXXFLAGS', 'C++ only flags', []), diff --git a/graphics/blender/patches/patch-doc_python__api_sphinx__doc__gen.sh b/graphics/blender/patches/patch-doc_python__api_sphinx__doc__gen.sh new file mode 100644 index 00000000000..3c0cf91449f --- /dev/null +++ b/graphics/blender/patches/patch-doc_python__api_sphinx__doc__gen.sh @@ -0,0 +1,15 @@ +$NetBSD: patch-doc_python__api_sphinx__doc__gen.sh,v 1.1 2012/12/03 13:15:51 ryoon Exp $ + +* Improve portability + +--- doc/python_api/sphinx_doc_gen.sh.orig 2012-10-09 18:42:01.000000000 +0000 ++++ doc/python_api/sphinx_doc_gen.sh +@@ -32,7 +32,7 @@ blender_version_char=$(grep BLENDER_VERS + blender_version_cycle=$(grep BLENDER_VERSION_CYCLE $blender_srcdir/source/blender/blenkernel/BKE_blender.h | awk '{print $3}') + blender_subversion=$(grep BLENDER_SUBVERSION $blender_srcdir/source/blender/blenkernel/BKE_blender.h | awk '{print $3}') + +-if [ "$blender_version_cycle" == "release" ] ++if [ "$blender_version_cycle" = "release" ] + then + BLENDER_VERSION=$(expr $blender_version / 100)_$(expr $blender_version % 100)$blender_version_char"_release" + else diff --git a/graphics/blender/patches/patch-extern_bullet2_src_BulletSoftBody_btSoftBodyInternals.h b/graphics/blender/patches/patch-extern_bullet2_src_BulletSoftBody_btSoftBodyInternals.h deleted file mode 100644 index 7ffcf16df73..00000000000 --- a/graphics/blender/patches/patch-extern_bullet2_src_BulletSoftBody_btSoftBodyInternals.h +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-extern_bullet2_src_BulletSoftBody_btSoftBodyInternals.h,v 1.1 2012/10/20 22:10:18 joerg Exp $ - -Some instanciations don't have a user-defined default constructor, -so make sure to use plain initialisation. - ---- extern/bullet2/src/BulletSoftBody/btSoftBodyInternals.h.orig 2012-10-20 10:52:46.000000000 +0000 -+++ extern/bullet2/src/BulletSoftBody/btSoftBodyInternals.h -@@ -171,7 +171,7 @@ public:
- template <typename T>
- static inline void ZeroInitialize(T& value)
- {
-- static const T zerodummy;
-+ static T zerodummy;
- value=zerodummy;
- }
- //
diff --git a/graphics/blender/patches/patch-extern_libmv_libmv_numeric_numeric.h b/graphics/blender/patches/patch-extern_libmv_libmv_numeric_numeric.h new file mode 100644 index 00000000000..f79907f7197 --- /dev/null +++ b/graphics/blender/patches/patch-extern_libmv_libmv_numeric_numeric.h @@ -0,0 +1,13 @@ +$NetBSD: patch-extern_libmv_libmv_numeric_numeric.h,v 1.1 2012/12/03 13:15:51 ryoon Exp $ + +--- extern/libmv/libmv/numeric/numeric.h.orig 2012-10-09 18:42:49.000000000 +0000 ++++ extern/libmv/libmv/numeric/numeric.h +@@ -33,7 +33,7 @@ + #include <Eigen/QR> + #include <Eigen/SVD> + +-#if (defined(_WIN32) || defined(__APPLE__) || defined(__FreeBSD__)) && !defined(__MINGW64__) ++#if (defined(_WIN32) || defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__)) && !defined(__MINGW64__) + void static sincos (double x, double *sinx, double *cosx) { + *sinx = sin(x); + *cosx = cos(x); diff --git a/graphics/blender/patches/patch-extern_libmv_libmv_tracking_brute__region__tracker.cc b/graphics/blender/patches/patch-extern_libmv_libmv_tracking_brute__region__tracker.cc new file mode 100644 index 00000000000..0cdac25a66c --- /dev/null +++ b/graphics/blender/patches/patch-extern_libmv_libmv_tracking_brute__region__tracker.cc @@ -0,0 +1,22 @@ +$NetBSD: patch-extern_libmv_libmv_tracking_brute__region__tracker.cc,v 1.1 2012/12/03 13:15:51 ryoon Exp $ + +--- extern/libmv/libmv/tracking/brute_region_tracker.cc.orig 2012-10-09 18:42:52.000000000 +0000 ++++ extern/libmv/libmv/tracking/brute_region_tracker.cc +@@ -24,7 +24,7 @@ + #include <emmintrin.h> + #endif + +-#if !defined(__APPLE__) && !defined(__FreeBSD__) ++#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__NetBSD__) + // Needed for memalign on Linux and _aligned_alloc on Windows. + #ifdef FREE_WINDOWS + /* make sure _aligned_malloc is included */ +@@ -60,7 +60,7 @@ void *aligned_malloc(int size, int align + // they work natively with SSE types with no further work. + CHECK_EQ(alignment, 16); + return malloc(size); +-#elif __FreeBSD__ ++#elif defined(__FreeBSD__) || defined(__NetBSD__) + void *result; + + if(posix_memalign(&result, alignment, size)) { diff --git a/graphics/blender/patches/patch-extern_libmv_third__party_glog_src_config.h b/graphics/blender/patches/patch-extern_libmv_third__party_glog_src_config.h new file mode 100644 index 00000000000..34ffd540a6e --- /dev/null +++ b/graphics/blender/patches/patch-extern_libmv_third__party_glog_src_config.h @@ -0,0 +1,15 @@ +$NetBSD: patch-extern_libmv_third__party_glog_src_config.h,v 1.1 2012/12/03 13:15:51 ryoon Exp $ + +* Load NetBSD config file + +--- extern/libmv/third_party/glog/src/config.h.orig 2012-10-09 18:43:15.000000000 +0000 ++++ extern/libmv/third_party/glog/src/config.h +@@ -6,6 +6,8 @@ + #include "config_mac.h" + #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + #include "config_freebsd.h" ++#elif defined(__NetBSD__) ++ #include "config_netbsd.h" + #elif defined(__MINGW32__) + #include "windows/config.h" + #elif defined(__linux__) diff --git a/graphics/blender/patches/patch-extern_libmv_third__party_glog_src_config__netbsd.h b/graphics/blender/patches/patch-extern_libmv_third__party_glog_src_config__netbsd.h new file mode 100644 index 00000000000..fa29c5d5dd2 --- /dev/null +++ b/graphics/blender/patches/patch-extern_libmv_third__party_glog_src_config__netbsd.h @@ -0,0 +1,178 @@ +$NetBSD: patch-extern_libmv_third__party_glog_src_config__netbsd.h,v 1.1 2012/12/03 13:15:51 ryoon Exp $ + +* config file for NetBSD + +--- extern/libmv/third_party/glog/src/config_netbsd.h.orig 2012-12-03 06:03:04.000000000 +0000 ++++ extern/libmv/third_party/glog/src/config_netbsd.h +@@ -0,0 +1,171 @@ ++/* src/config.h. Generated from config.h.in by configure. */ ++/* src/config.h.in. Generated from configure.ac by autoheader. */ ++ ++/* Namespace for Google classes */ ++#define GOOGLE_NAMESPACE google ++ ++/* Define if you have the `dladdr' function */ ++/* #undef HAVE_DLADDR */ ++ ++/* Define to 1 if you have the <dlfcn.h> header file. */ ++#define HAVE_DLFCN_H 1 ++ ++#include <sys/param.h> ++/* Define to 1 if you have the <execinfo.h> header file. */ ++#if __NetBSD_Version__ < 699001500 ++#define HAVE_EXECINFO_H 1 ++#else ++#undef HAVE_EXECINFO_H ++#endif ++ ++/* Define if you have the `fcntl' function */ ++#define HAVE_FCNTL 1 ++ ++/* Define to 1 if you have the <glob.h> header file. */ ++#define HAVE_GLOB_H 1 ++ ++/* Define to 1 if you have the <inttypes.h> header file. */ ++#define HAVE_INTTYPES_H 1 ++ ++/* Define to 1 if you have the `pthread' library (-lpthread). */ ++#define HAVE_LIBPTHREAD 1 ++ ++/* Define to 1 if you have the <libunwind.h> header file. */ ++/* #undef HAVE_LIBUNWIND_H */ ++ ++/* define if you have google gflags library */ ++#define HAVE_LIB_GFLAGS 1 ++ ++/* define if you have google gmock library */ ++/* #undef HAVE_LIB_GMOCK */ ++ ++/* define if you have google gtest library */ ++/* #undef HAVE_LIB_GTEST */ ++ ++/* define if you have libunwind */ ++/* #undef HAVE_LIB_UNWIND */ ++ ++/* Define to 1 if you have the <memory.h> header file. */ ++#define HAVE_MEMORY_H 1 ++ ++/* define if the compiler implements namespaces */ ++#define HAVE_NAMESPACES 1 ++ ++/* Define if you have POSIX threads libraries and header files. */ ++#define HAVE_PTHREAD 1 ++ ++/* Define to 1 if you have the <pwd.h> header file. */ ++#define HAVE_PWD_H 1 ++ ++/* define if the compiler implements pthread_rwlock_* */ ++#define HAVE_RWLOCK 1 ++ ++/* Define if you have the `sigaltstack' function */ ++#define HAVE_SIGALTSTACK 1 ++ ++/* Define to 1 if you have the <stdint.h> header file. */ ++#define HAVE_STDINT_H 1 ++ ++/* Define to 1 if you have the <stdlib.h> header file. */ ++#define HAVE_STDLIB_H 1 ++ ++/* Define to 1 if you have the <strings.h> header file. */ ++#define HAVE_STRINGS_H 1 ++ ++/* Define to 1 if you have the <string.h> header file. */ ++#define HAVE_STRING_H 1 ++ ++/* Define to 1 if you have the <syscall.h> header file. */ ++/* #undef HAVE_SYSCALL_H */ ++ ++/* Define to 1 if you have the <syslog.h> header file. */ ++#define HAVE_SYSLOG_H 1 ++ ++/* Define to 1 if you have the <sys/stat.h> header file. */ ++#define HAVE_SYS_STAT_H 1 ++ ++/* Define to 1 if you have the <sys/syscall.h> header file. */ ++#define HAVE_SYS_SYSCALL_H 1 ++ ++/* Define to 1 if you have the <sys/time.h> header file. */ ++#define HAVE_SYS_TIME_H 1 ++ ++/* Define to 1 if you have the <sys/types.h> header file. */ ++#define HAVE_SYS_TYPES_H 1 ++ ++/* Define to 1 if you have the <sys/ucontext.h> header file. */ ++#define HAVE_SYS_UCONTEXT_H 1 ++ ++/* Define to 1 if you have the <sys/utsname.h> header file. */ ++#define HAVE_SYS_UTSNAME_H 1 ++ ++/* Define to 1 if you have the <ucontext.h> header file. */ ++#define HAVE_UCONTEXT_H 1 ++ ++/* Define to 1 if you have the <unistd.h> header file. */ ++#define HAVE_UNISTD_H 1 ++ ++/* define if the compiler supports using expression for operator */ ++#define HAVE_USING_OPERATOR 1 ++ ++/* define if your compiler has __attribute__ */ ++#define HAVE___ATTRIBUTE__ 1 ++ ++/* define if your compiler has __builtin_expect */ ++#define HAVE___BUILTIN_EXPECT 1 ++ ++/* define if your compiler has __sync_val_compare_and_swap */ ++/* #undef HAVE___SYNC_VAL_COMPARE_AND_SWAP */ ++ ++/* Name of package */ ++#define PACKAGE "glog" ++ ++/* Define to the address where bug reports for this package should be sent. */ ++#define PACKAGE_BUGREPORT "opensource@google.com" ++ ++/* Define to the full name of this package. */ ++#define PACKAGE_NAME "glog" ++ ++/* Define to the full name and version of this package. */ ++#define PACKAGE_STRING "glog 0.3.2" ++ ++/* Define to the one symbol short name of this package. */ ++#define PACKAGE_TARNAME "glog" ++ ++/* Define to the version of this package. */ ++#define PACKAGE_VERSION "0.3.2" ++ ++/* How to access the PC from a struct ucontext */ ++/* #define PC_FROM_UCONTEXT uc_mcontext.gregs[REG_RIP] */ ++ ++/* Define to necessary symbol if this constant uses a non-standard name on ++ your system. */ ++/* #undef PTHREAD_CREATE_JOINABLE */ ++ ++/* The size of `void *', as computed by sizeof. */ ++#define SIZEOF_VOID_P 8 ++ ++/* Define to 1 if you have the ANSI C header files. */ ++/* #undef STDC_HEADERS */ ++ ++#define STDC_HEADERS 1 ++/* the namespace where STL code like vector<> is defined */ ++#define STL_NAMESPACE std ++ ++/* location of source code */ ++#define TEST_SRC_DIR "." ++ ++/* Version number of package */ ++#define VERSION "0.3.2" ++ ++/* Stops putting the code inside the Google namespace */ ++#define _END_GOOGLE_NAMESPACE_ } ++ ++/* Puts following code inside the Google namespace */ ++#define _START_GOOGLE_NAMESPACE_ namespace google { ++ ++/* isn't getting defined by configure script when clang compilers are used ++ and cuases compilation errors in stactrace/unwind modules */ ++#ifdef __clang__ ++# define NO_FRAME_POINTER ++#endif diff --git a/graphics/blender/patches/patch-extern_libmv_third__party_glog_src_utilities.h b/graphics/blender/patches/patch-extern_libmv_third__party_glog_src_utilities.h new file mode 100644 index 00000000000..52d18a4f5e4 --- /dev/null +++ b/graphics/blender/patches/patch-extern_libmv_third__party_glog_src_utilities.h @@ -0,0 +1,15 @@ +$NetBSD: patch-extern_libmv_third__party_glog_src_utilities.h,v 1.1 2012/12/03 13:15:51 ryoon Exp $ + +* NetBSD has no unwind + +--- extern/libmv/third_party/glog/src/utilities.h.orig 2012-10-09 18:43:15.000000000 +0000 ++++ extern/libmv/third_party/glog/src/utilities.h +@@ -101,7 +101,7 @@ + // correctly when GetStackTrace() is called with max_depth == 0. + // Some code may do that. + +-#if defined(__MINGW32__) || defined(__FreeBSD__) ++#if defined(__MINGW32__) || defined(__FreeBSD__) || defined(__NetBSD__) + # undef STACKTRACE_H + #elif defined(HAVE_LIB_UNWIND) + # define STACKTRACE_H "stacktrace_libunwind-inl.h" diff --git a/graphics/blender/patches/patch-extern_solid_include_MT_Quaternion.h b/graphics/blender/patches/patch-extern_solid_include_MT_Quaternion.h deleted file mode 100644 index 52ddfb45889..00000000000 --- a/graphics/blender/patches/patch-extern_solid_include_MT_Quaternion.h +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-extern_solid_include_MT_Quaternion.h,v 1.1 2012/07/03 18:10:03 joerg Exp $ - ---- extern/solid/include/MT/Quaternion.h.orig 2012-07-03 13:16:43.000000000 +0000 -+++ extern/solid/include/MT/Quaternion.h -@@ -158,7 +158,7 @@ namespace MT { - - Quaternion<Scalar> inverse() const - { -- return conjugate / length2(); -+ return conjugate() / length2(); - } - - Quaternion<Scalar> slerp(const Quaternion<Scalar>& q, const Scalar& t) const diff --git a/graphics/blender/patches/patch-extern_solid_src_complex_DT__BBoxTree.h b/graphics/blender/patches/patch-extern_solid_src_complex_DT__BBoxTree.h deleted file mode 100644 index d29bce9aaae..00000000000 --- a/graphics/blender/patches/patch-extern_solid_src_complex_DT__BBoxTree.h +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-extern_solid_src_complex_DT__BBoxTree.h,v 1.1 2012/10/20 22:10:18 joerg Exp $ - ---- extern/solid/src/complex/DT_BBoxTree.h.orig 2012-10-20 10:46:59.000000000 +0000 -+++ extern/solid/src/complex/DT_BBoxTree.h -@@ -95,6 +95,15 @@ public: - const Shape *m_leaves; - }; - -+inline DT_CBox computeCBox(MT_Scalar margin, const MT_Transform& xform) -+{ -+ const MT_Matrix3x3& basis = xform.getBasis(); -+ return DT_CBox(MT_Point3(MT_Scalar(0.0), MT_Scalar(0.0), MT_Scalar(0.0)), -+ MT_Vector3(basis[0].length() * margin, -+ basis[1].length() * margin, -+ basis[2].length() * margin)); -+} -+ - template <typename Shape1, typename Shape2> - class DT_ObjectData : public DT_RootData<Shape1> { - public: diff --git a/graphics/blender/patches/patch-extern_solid_src_complex_DT__Complex.cpp b/graphics/blender/patches/patch-extern_solid_src_complex_DT__Complex.cpp deleted file mode 100644 index 72ef076af26..00000000000 --- a/graphics/blender/patches/patch-extern_solid_src_complex_DT__Complex.cpp +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-extern_solid_src_complex_DT__Complex.cpp,v 1.1 2012/10/20 22:10:18 joerg Exp $ - ---- extern/solid/src/complex/DT_Complex.cpp.orig 2012-10-20 10:47:02.000000000 +0000 -+++ extern/solid/src/complex/DT_Complex.cpp -@@ -123,15 +123,6 @@ inline DT_CBox computeCBox(const DT_Conv - return DT_CBox(p->bbox()); - } - --inline DT_CBox computeCBox(MT_Scalar margin, const MT_Transform& xform) --{ -- const MT_Matrix3x3& basis = xform.getBasis(); -- return DT_CBox(MT_Point3(MT_Scalar(0.0), MT_Scalar(0.0), MT_Scalar(0.0)), -- MT_Vector3(basis[0].length() * margin, -- basis[1].length() * margin, -- basis[2].length() * margin)); --} -- - void DT_Complex::refit() - { - DT_RootData<const DT_Convex *> rd(m_nodes, m_leaves); diff --git a/graphics/blender/patches/patch-intern_elbeem_intern_ntl__vector3dim.h b/graphics/blender/patches/patch-intern_elbeem_intern_ntl__vector3dim.h deleted file mode 100644 index 1c237de998d..00000000000 --- a/graphics/blender/patches/patch-intern_elbeem_intern_ntl__vector3dim.h +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-intern_elbeem_intern_ntl__vector3dim.h,v 1.1 2012/07/03 18:10:03 joerg Exp $ - ---- intern/elbeem/intern/ntl_vector3dim.h.orig 2012-07-03 13:12:36.000000000 +0000 -+++ intern/elbeem/intern/ntl_vector3dim.h -@@ -24,6 +24,12 @@ - #include <stdio.h> - #include <stdlib.h> - -+/* absolute value */ -+template < class T > -+inline T -+ABS( T a ) -+{ return (0 < a) ? a : -a ; } -+ - // hack for MSVC6.0 compiler - #ifdef _MSC_VER - #if _MSC_VER < 1300 diff --git a/graphics/blender/patches/patch-intern_elbeem_intern_utilities.h b/graphics/blender/patches/patch-intern_elbeem_intern_utilities.h deleted file mode 100644 index 720d6239eee..00000000000 --- a/graphics/blender/patches/patch-intern_elbeem_intern_utilities.h +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-intern_elbeem_intern_utilities.h,v 1.1 2012/07/03 18:10:03 joerg Exp $ - ---- intern/elbeem/intern/utilities.h.orig 2012-07-03 13:09:45.000000000 +0000 -+++ intern/elbeem/intern/utilities.h -@@ -171,12 +171,6 @@ inline T - MAX( T a, T b ) - { return (a < b) ? b : a ; } - --/* absolute value */ --template < class T > --inline T --ABS( T a ) --{ return (0 < a) ? a : -a ; } -- - /* sign of the value */ - template < class T > - inline T diff --git a/graphics/blender/patches/patch-intern_ghost_SConscript b/graphics/blender/patches/patch-intern_ghost_SConscript new file mode 100644 index 00000000000..00c67b2cc44 --- /dev/null +++ b/graphics/blender/patches/patch-intern_ghost_SConscript @@ -0,0 +1,15 @@ +$NetBSD: patch-intern_ghost_SConscript,v 1.1 2012/12/03 13:15:51 ryoon Exp $ + +* Add window system support on NetBSD + +--- intern/ghost/SConscript.orig 2012-10-09 18:33:16.000000000 +0000 ++++ intern/ghost/SConscript +@@ -26,7 +26,7 @@ if env['WITH_GHOST_SDL']: + pass + incs += ' ' + env['BF_SDL_INC'] + defs += ['WITH_GHOST_SDL'] +-elif window_system in ('linux', 'openbsd3', 'sunos5', 'freebsd7', 'freebsd8', 'freebsd9', 'aix4', 'aix5'): ++elif window_system in ('linux', 'openbsd3', 'sunos5', 'freebsd7', 'freebsd8', 'freebsd9', 'aix4', 'aix5', 'netbsd6'): + for f in pf: + try: + sources.remove('intern' + os.sep + f + 'Win32.cpp') diff --git a/graphics/blender/patches/patch-intern_guardedalloc_MEM__sys__types.h b/graphics/blender/patches/patch-intern_guardedalloc_MEM__sys__types.h new file mode 100644 index 00000000000..79e8637a460 --- /dev/null +++ b/graphics/blender/patches/patch-intern_guardedalloc_MEM__sys__types.h @@ -0,0 +1,13 @@ +$NetBSD: patch-intern_guardedalloc_MEM__sys__types.h,v 1.1 2012/12/03 13:15:52 ryoon Exp $ + +--- intern/guardedalloc/MEM_sys_types.h.orig 2012-10-09 18:34:13.000000000 +0000 ++++ intern/guardedalloc/MEM_sys_types.h +@@ -131,7 +131,7 @@ unsigned long __attribute__((__stdcall__ + #define ntohl(x) correctByteOrder(x) + #endif + #endif +-#elif defined (__FreeBSD__) || defined (__OpenBSD__) ++#elif defined (__FreeBSD__) || defined (__OpenBSD__) || defined (__NetBSD__) + #include <sys/param.h> + #elif defined (__APPLE__) + #include <sys/types.h> diff --git a/graphics/blender/patches/patch-intern_opennl_superlu_superlu__sys__types.h b/graphics/blender/patches/patch-intern_opennl_superlu_superlu__sys__types.h new file mode 100644 index 00000000000..74b79082d35 --- /dev/null +++ b/graphics/blender/patches/patch-intern_opennl_superlu_superlu__sys__types.h @@ -0,0 +1,13 @@ +$NetBSD: patch-intern_opennl_superlu_superlu__sys__types.h,v 1.1 2012/12/03 13:15:52 ryoon Exp $ + +--- intern/opennl/superlu/superlu_sys_types.h.orig 2012-10-09 18:34:26.000000000 +0000 ++++ intern/opennl/superlu/superlu_sys_types.h +@@ -119,7 +119,7 @@ unsigned long __attribute__((__stdcall__ + #define ntohl(x) correctByteOrder(x) + #endif + #endif +-#elif defined (__FreeBSD__) || defined (__OpenBSD__) ++#elif defined (__FreeBSD__) || defined (__OpenBSD__) || defined (__NetBSD__) + #include <sys/param.h> + #elif defined (__APPLE__) + #include <sys/types.h> diff --git a/graphics/blender/patches/patch-source_blender_python_BPY__interface.c b/graphics/blender/patches/patch-source_blender_python_BPY__interface.c deleted file mode 100644 index be05a7c993a..00000000000 --- a/graphics/blender/patches/patch-source_blender_python_BPY__interface.c +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-source_blender_python_BPY__interface.c,v 1.1 2011/04/01 11:31:56 wiz Exp $ - -Fix http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-4863 -using patch from James Vega via -http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=503632 - ---- source/blender/python/BPY_interface.c.orig 2009-09-01 15:21:12.000000000 +0000 -+++ source/blender/python/BPY_interface.c -@@ -236,6 +236,12 @@ void BPY_start_python( int argc, char ** - Py_Initialize( ); - - PySys_SetArgv( argc_copy, argv_copy ); -+ -+ /* Sanitize sys.path to prevent relative imports loading modules in -+ * the current working directory -+ */ -+ PyRun_SimpleString("import sys; sys.path = filter(None, sys.path)"); -+ - /* Initialize thread support (also acquires lock) */ - PyEval_InitThreads(); - diff --git a/graphics/blender/patches/patch-user-config.py b/graphics/blender/patches/patch-user-config.py new file mode 100644 index 00000000000..7d93f4fb0e5 --- /dev/null +++ b/graphics/blender/patches/patch-user-config.py @@ -0,0 +1,9 @@ +$NetBSD: patch-user-config.py,v 1.1 2012/12/03 13:15:52 ryoon Exp $ + +From Gentoo's ebuild + +--- user-config.py.orig 2012-12-03 06:03:04.000000000 +0000 ++++ user-config.py +@@ -0,0 +1,2 @@ ++LINKFLAGS=[@MYLDFLAGS@] ++PLATFORM_LINKFLAGS=[@MYLDFLAGS@] |