On Wed, 02 May 2012 13:37:59 -0400, Brian Callahan wrote: > Hi -- > > Blender now broken on mips64el. > > During build, at 95%, I get the following error: > cc1plus: out of memory allocating 199488 bytes after a total of 0 bytes > *** Error code 1 > > So blender joins firefox and some others as being too big to compile on > loongson at the current ulimit hard cap of 1G.
That's kind of sad. :/ But it also means I can delete the ffmpeg flavour and merge it into the default. New diff below. > Additionally, I found a binutils error on mips64el with audio/openal (ld > fails) while building blender 2.63 Yes, mips64el badly needs binutils 2.17. Index: Makefile =================================================================== RCS file: /cvs/ports/graphics/blender/Makefile,v retrieving revision 1.41 diff -u -p -r1.41 Makefile --- Makefile 16 Apr 2012 12:03:25 -0000 1.41 +++ Makefile 2 May 2012 18:10:33 -0000 @@ -2,8 +2,7 @@ COMMENT = 3D creation software -DISTNAME = blender-2.62 -REVISION = 2 +DISTNAME = blender-2.63 CATEGORIES = graphics @@ -31,7 +30,8 @@ MODPY_VERSION = ${MODPY_DEFAULT_VERSION_ CONFIGURE_ARGS = -DPYTHON_LIBRARY="${LOCALBASE}/lib/libpython${MODPY_VERSION}m.so" \ -DPYTHON_INCLUDE_DIR="${MODPY_INCDIR}" \ -DPYTHON_VERSION=${MODPY_VERSION} \ - -DWITH_BUILTIN_GLEW=OFF + -DWITH_BUILTIN_GLEW=OFF \ + -DWITH_CODEC_FFMPEG=ON BUILD_DEPENDS = devel/gflags LIB_DEPENDS = graphics/png \ @@ -43,6 +43,7 @@ LIB_DEPENDS = graphics/png \ devel/sdl \ audio/openal \ graphics/openjpeg \ + graphics/ffmpeg>=20111126 \ ${MODPY_LIB_DEPENDS} RUN_DEPENDS = devel/desktop-file-utils \ x11/gnome/librsvg @@ -51,16 +52,7 @@ WANTLIB += GL GLEW GLU Half Iex IlmImf I WANTLIB += Xi Xxf86vm boost_filesystem-mt boost_regex-mt boost_system-mt WANTLIB += boost_thread-mt c freetype jpeg m openal openjpeg png WANTLIB += pthread ${MODPY_WANTLIB} stdc++ tiff util z - -# until ffmpeg works on mips64el, make it a FLAVOR -FLAVORS = ffmpeg -FLAVOR ?= - -.if ${FLAVOR:L:Mffmpeg} -CONFIGURE_ARGS += -DWITH_CODEC_FFMPEG=ON -LIB_DEPENDS += graphics/ffmpeg>=20111126 -WANTLIB += avcodec avdevice avformat avutil -.endif +WANTLIB += avcodec avdevice avformat avutil swscale NO_REGRESS = Yes Index: distinfo =================================================================== RCS file: /cvs/ports/graphics/blender/distinfo,v retrieving revision 1.11 diff -u -p -r1.11 distinfo --- distinfo 26 Feb 2012 20:37:25 -0000 1.11 +++ distinfo 2 May 2012 18:10:33 -0000 @@ -1,5 +1,5 @@ -MD5 (blender-2.62.tar.gz) = 8jV1hKUIGwP25guj7+KmEA== -RMD160 (blender-2.62.tar.gz) = KgBnrHdln1B7FBoKJSIddBDfnfc= -SHA1 (blender-2.62.tar.gz) = WdU40XVpUBT8D4thZRJ9UZA3hBU= -SHA256 (blender-2.62.tar.gz) = eJTbAHJJmvcPfK0SRLwacBFn/Lz0XWzhuOQa03fJrqc= -SIZE (blender-2.62.tar.gz) = 26309220 +MD5 (blender-2.63.tar.gz) = HMGKkHS6YzE6VxGIfedsVA== +RMD160 (blender-2.63.tar.gz) = JcRFPslmeSxU5MrkOob1IfC8Rlg= +SHA1 (blender-2.63.tar.gz) = jXNZqG1xbMIZj3dvKLrGYlpF1q0= +SHA256 (blender-2.63.tar.gz) = 7HDMP9UzcBIVP+B9u0FXKMxaSOupPJiIxmDQ+9wilPw= +SIZE (blender-2.63.tar.gz) = 27361289 Index: patches/patch-extern_libmv_libmv_numeric_numeric_h =================================================================== RCS file: /cvs/ports/graphics/blender/patches/patch-extern_libmv_libmv_numeric_numeric_h,v retrieving revision 1.1 diff -u -p -r1.1 patch-extern_libmv_libmv_numeric_numeric_h --- patches/patch-extern_libmv_libmv_numeric_numeric_h 26 Feb 2012 20:37:26 -0000 1.1 +++ patches/patch-extern_libmv_libmv_numeric_numeric_h 2 May 2012 18:10:33 -0000 @@ -1,12 +1,12 @@ $OpenBSD: patch-extern_libmv_libmv_numeric_numeric_h,v 1.1 2012/02/26 20:37:26 pascal Exp $ ---- extern/libmv/libmv/numeric/numeric.h.orig Thu Dec 15 12:05:36 2011 -+++ extern/libmv/libmv/numeric/numeric.h Thu Dec 15 12:05:50 2011 +--- extern/libmv/libmv/numeric/numeric.h.orig Thu Apr 26 22:57:02 2012 ++++ extern/libmv/libmv/numeric/numeric.h Mon Apr 30 23:10:49 2012 @@ -33,7 +33,7 @@ #include <Eigen/QR> #include <Eigen/SVD> --#if _WIN32 || __APPLE__ || __FreeBSD__ -+#if _WIN32 || __APPLE__ || __FreeBSD__ || __OpenBSD__ +-#if (defined(_WIN32) || defined(__APPLE__) || defined(__FreeBSD__)) && !defined(__MINGW64__) ++#if (defined(_WIN32) || defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__)) && !defined(__MINGW64__) void static sincos (double x, double *sinx, double *cosx) { *sinx = sin(x); *cosx = cos(x); Index: patches/patch-extern_libmv_libmv_tracking_brute_region_tracker_cc =================================================================== RCS file: /cvs/ports/graphics/blender/patches/patch-extern_libmv_libmv_tracking_brute_region_tracker_cc,v retrieving revision 1.1 diff -u -p -r1.1 patch-extern_libmv_libmv_tracking_brute_region_tracker_cc --- patches/patch-extern_libmv_libmv_tracking_brute_region_tracker_cc 26 Feb 2012 20:37:26 -0000 1.1 +++ patches/patch-extern_libmv_libmv_tracking_brute_region_tracker_cc 2 May 2012 18:10:33 -0000 @@ -1,6 +1,6 @@ $OpenBSD: patch-extern_libmv_libmv_tracking_brute_region_tracker_cc,v 1.1 2012/02/26 20:37:26 pascal Exp $ ---- extern/libmv/libmv/tracking/brute_region_tracker.cc.orig Thu Dec 15 12:11:36 2011 -+++ extern/libmv/libmv/tracking/brute_region_tracker.cc Thu Dec 15 12:12:38 2011 +--- extern/libmv/libmv/tracking/brute_region_tracker.cc.orig Thu Apr 26 22:57:04 2012 ++++ extern/libmv/libmv/tracking/brute_region_tracker.cc Mon Apr 30 23:03:52 2012 @@ -24,7 +24,7 @@ #include <emmintrin.h> #endif @@ -10,7 +10,7 @@ $OpenBSD: patch-extern_libmv_libmv_track // Needed for memalign on Linux and _aligned_alloc on Windows. #ifdef FREE_WINDOWS /* make sure _aligned_malloc is included */ -@@ -59,7 +59,7 @@ void *aligned_malloc(int size, int alignment) { +@@ -60,7 +60,7 @@ void *aligned_malloc(int size, int alignment) { // they work natively with SSE types with no further work. CHECK_EQ(alignment, 16); return malloc(size); Index: patches/patch-source_blender_blenkernel_intern_blender_c =================================================================== RCS file: /cvs/ports/graphics/blender/patches/patch-source_blender_blenkernel_intern_blender_c,v retrieving revision 1.6 diff -u -p -r1.6 patch-source_blender_blenkernel_intern_blender_c --- patches/patch-source_blender_blenkernel_intern_blender_c 26 Feb 2012 20:37:26 -0000 1.6 +++ patches/patch-source_blender_blenkernel_intern_blender_c 2 May 2012 18:10:33 -0000 @@ -1,12 +1,12 @@ $OpenBSD: patch-source_blender_blenkernel_intern_blender_c,v 1.6 2012/02/26 20:37:26 pascal Exp $ ---- source/blender/blenkernel/intern/blender.c.orig Tue Dec 13 20:49:12 2011 -+++ source/blender/blenkernel/intern/blender.c Thu Dec 15 11:37:07 2011 -@@ -717,7 +717,7 @@ void BKE_undo_save_quit(void) +--- source/blender/blenkernel/intern/blender.c.orig Thu Apr 26 22:49:26 2012 ++++ source/blender/blenkernel/intern/blender.c Mon Apr 30 23:05:07 2012 +@@ -722,7 +722,7 @@ void BKE_undo_save_quit(void) BLI_make_file_string("/", str, BLI_temporary_dir(), "quit.blend"); -- file = open(str,O_BINARY+O_WRONLY+O_CREAT+O_TRUNC, 0666); -+ file = open(str,O_WRONLY|O_CREAT|O_TRUNC, 0666); - if(file == -1) { +- file = BLI_open(str,O_BINARY+O_WRONLY+O_CREAT+O_TRUNC, 0666); ++ file = BLI_open(str,O_BINARY|O_WRONLY|O_CREAT|O_TRUNC, 0666); + if (file == -1) { //XXX error("Unable to save %s, check you have permissions", str); return; Index: patches/patch-source_blender_blenkernel_intern_packedFile_c =================================================================== RCS file: /cvs/ports/graphics/blender/patches/patch-source_blender_blenkernel_intern_packedFile_c,v retrieving revision 1.4 diff -u -p -r1.4 patch-source_blender_blenkernel_intern_packedFile_c --- patches/patch-source_blender_blenkernel_intern_packedFile_c 26 Feb 2012 20:37:26 -0000 1.4 +++ patches/patch-source_blender_blenkernel_intern_packedFile_c 2 May 2012 18:10:33 -0000 @@ -1,12 +1,12 @@ $OpenBSD: patch-source_blender_blenkernel_intern_packedFile_c,v 1.4 2012/02/26 20:37:26 pascal Exp $ ---- source/blender/blenkernel/intern/packedFile.c.orig Tue Dec 13 20:49:12 2011 -+++ source/blender/blenkernel/intern/packedFile.c Thu Dec 15 11:37:07 2011 -@@ -292,7 +292,7 @@ int writePackedFile(ReportList *reports, const char *f +--- source/blender/blenkernel/intern/packedFile.c.orig Thu Apr 26 22:49:26 2012 ++++ source/blender/blenkernel/intern/packedFile.c Mon Apr 30 23:05:50 2012 +@@ -297,7 +297,7 @@ int writePackedFile(ReportList *reports, const char *f // make sure the path to the file exists... BLI_make_existing_file(name); -- file = open(name, O_BINARY + O_WRONLY + O_CREAT + O_TRUNC, 0666); -+ file = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0666); +- file = BLI_open(name, O_BINARY + O_WRONLY + O_CREAT + O_TRUNC, 0666); ++ file = BLI_open(name, O_BINARY | O_WRONLY | O_CREAT | O_TRUNC, 0666); if (file >= 0) { if (write(file, pf->data, pf->size) != pf->size) { BKE_reportf(reports, RPT_ERROR, "Error writing file: %s", name); Index: patches/patch-source_blender_blenlib_intern_storage_c =================================================================== RCS file: /cvs/ports/graphics/blender/patches/patch-source_blender_blenlib_intern_storage_c,v retrieving revision 1.5 diff -u -p -r1.5 patch-source_blender_blenlib_intern_storage_c --- patches/patch-source_blender_blenlib_intern_storage_c 16 Apr 2012 12:03:25 -0000 1.5 +++ patches/patch-source_blender_blenlib_intern_storage_c 2 May 2012 18:10:33 -0000 @@ -1,6 +1,6 @@ $OpenBSD: patch-source_blender_blenlib_intern_storage_c,v 1.5 2012/04/16 12:03:25 naddy Exp $ ---- source/blender/blenlib/intern/storage.c.orig Sun Apr 15 23:46:30 2012 -+++ source/blender/blenlib/intern/storage.c Sun Apr 15 23:49:16 2012 +--- source/blender/blenlib/intern/storage.c.orig Thu Apr 26 22:51:28 2012 ++++ source/blender/blenlib/intern/storage.c Mon Apr 30 23:03:52 2012 @@ -43,13 +43,13 @@ #include <time.h> #include <sys/stat.h> @@ -17,7 +17,7 @@ $OpenBSD: patch-source_blender_blenlib_i #include <sys/param.h> #include <sys/mount.h> #endif -@@ -162,7 +162,7 @@ double BLI_dir_free_space(const char *dir) +@@ -166,7 +166,7 @@ double BLI_dir_free_space(const char *dir) return (double) (freec*bytesps*sectorspc); #else @@ -26,9 +26,9 @@ $OpenBSD: patch-source_blender_blenlib_i struct statvfs disk; #else struct statfs disk; -@@ -180,11 +180,11 @@ double BLI_dir_free_space(const char *dir) - if (slash) slash[1] = 0; - } else strcpy(name,"/"); +@@ -185,11 +185,11 @@ double BLI_dir_free_space(const char *dir) + } + else strcpy(name,"/"); -#if defined (__FreeBSD__) || defined (linux) || defined (__OpenBSD__) || defined (__APPLE__) || defined(__GNU__) || defined(__GLIBC__) +#if defined (__FreeBSD__) || defined (linux) || defined (__APPLE__) || defined(__GNU__) || defined(__GLIBC__) Index: patches/patch-source_blender_blenloader_intern_writefile_c =================================================================== RCS file: /cvs/ports/graphics/blender/patches/patch-source_blender_blenloader_intern_writefile_c,v retrieving revision 1.5 diff -u -p -r1.5 patch-source_blender_blenloader_intern_writefile_c --- patches/patch-source_blender_blenloader_intern_writefile_c 26 Feb 2012 20:37:26 -0000 1.5 +++ patches/patch-source_blender_blenloader_intern_writefile_c 2 May 2012 18:10:33 -0000 @@ -1,12 +1,12 @@ $OpenBSD: patch-source_blender_blenloader_intern_writefile_c,v 1.5 2012/02/26 20:37:26 pascal Exp $ ---- source/blender/blenloader/intern/writefile.c.orig Wed Feb 15 20:35:39 2012 -+++ source/blender/blenloader/intern/writefile.c Fri Feb 17 19:00:29 2012 -@@ -2758,7 +2758,7 @@ int BLO_write_file(Main *mainvar, const char *filepath +--- source/blender/blenloader/intern/writefile.c.orig Thu Apr 26 22:51:10 2012 ++++ source/blender/blenloader/intern/writefile.c Mon Apr 30 23:06:32 2012 +@@ -2895,7 +2895,7 @@ int BLO_write_file(Main *mainvar, const char *filepath /* open temporary file, so we preserve the original in case we crash */ BLI_snprintf(tempname, sizeof(tempname), "%s@", filepath); -- file = open(tempname,O_BINARY+O_WRONLY+O_CREAT+O_TRUNC, 0666); -+ file = open(tempname,O_WRONLY|O_CREAT|O_TRUNC, 0666); - if(file == -1) { +- file = BLI_open(tempname,O_BINARY+O_WRONLY+O_CREAT+O_TRUNC, 0666); ++ file = BLI_open(tempname,O_BINARY|O_WRONLY|O_CREAT|O_TRUNC, 0666); + if (file == -1) { BKE_reportf(reports, RPT_ERROR, "Can't open file %s for writing: %s.", tempname, strerror(errno)); return 0; Index: patches/patch-source_blender_imbuf_intern_jp2_c =================================================================== RCS file: patches/patch-source_blender_imbuf_intern_jp2_c diff -N patches/patch-source_blender_imbuf_intern_jp2_c --- patches/patch-source_blender_imbuf_intern_jp2_c 30 Mar 2012 14:51:55 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,12 +0,0 @@ -$OpenBSD: patch-source_blender_imbuf_intern_jp2_c,v 1.1 2012/03/30 14:51:55 sthen Exp $ ---- source/blender/imbuf/intern/jp2.c.orig Fri Mar 30 12:46:13 2012 -+++ source/blender/imbuf/intern/jp2.c Fri Mar 30 12:55:51 2012 -@@ -329,7 +329,7 @@ static int initialise_4K_poc(opj_poc_t *POC, int numre - - static void cinema_parameters(opj_cparameters_t *parameters) - { -- parameters->tile_size_on = false; -+ parameters->tile_size_on = OPJ_FALSE; - parameters->cp_tdx=1; - parameters->cp_tdy=1; - Index: patches/patch-source_blender_render_intern_source_shadbuf_c =================================================================== RCS file: /cvs/ports/graphics/blender/patches/patch-source_blender_render_intern_source_shadbuf_c,v retrieving revision 1.5 diff -u -p -r1.5 patch-source_blender_render_intern_source_shadbuf_c --- patches/patch-source_blender_render_intern_source_shadbuf_c 26 Feb 2012 20:37:26 -0000 1.5 +++ patches/patch-source_blender_render_intern_source_shadbuf_c 2 May 2012 18:10:33 -0000 @@ -1,7 +1,7 @@ $OpenBSD: patch-source_blender_render_intern_source_shadbuf_c,v 1.5 2012/02/26 20:37:26 pascal Exp $ ---- source/blender/render/intern/source/shadbuf.c.orig Tue Nov 15 22:12:47 2011 -+++ source/blender/render/intern/source/shadbuf.c Tue Nov 15 22:15:15 2011 -@@ -1036,7 +1036,7 @@ static float readshadowbuf(ShadBuf *shb, ShadSampleBuf +--- source/blender/render/intern/source/shadbuf.c.orig Thu Apr 26 22:48:08 2012 ++++ source/blender/render/intern/source/shadbuf.c Mon Apr 30 23:03:53 2012 +@@ -1038,7 +1038,7 @@ static float readshadowbuf(ShadBuf *shb, ShadSampleBuf { float temp; int *rz, ofs; @@ -10,8 +10,8 @@ $OpenBSD: patch-source_blender_render_in char *ct, *cz; /* simpleclip */ -@@ -1065,7 +1065,7 @@ static float readshadowbuf(ShadBuf *shb, ShadSampleBuf - else if(*ct==2) { +@@ -1067,7 +1067,7 @@ static float readshadowbuf(ShadBuf *shb, ShadSampleBuf + else if (*ct==2) { ct= ((char *)rz); ct+= 4+2*16*(ys & 15)+2*(xs & 15); - zsamp= *rz; @@ -19,8 +19,8 @@ $OpenBSD: patch-source_blender_render_in cz= (char *)&zsamp; cz[BCOMP]= ct[0]; -@@ -1074,7 +1074,7 @@ static float readshadowbuf(ShadBuf *shb, ShadSampleBuf - else if(*ct==1) { +@@ -1076,7 +1076,7 @@ static float readshadowbuf(ShadBuf *shb, ShadSampleBuf + else if (*ct==1) { ct= ((char *)rz); ct+= 4+16*(ys & 15)+(xs & 15); - zsamp= *rz; @@ -28,7 +28,7 @@ $OpenBSD: patch-source_blender_render_in cz= (char *)&zsamp; cz[GCOMP]= ct[0]; -@@ -1223,7 +1223,8 @@ static float readshadowbuf_halo(ShadBuf *shb, ShadSamp +@@ -1225,7 +1225,8 @@ static float readshadowbuf_halo(ShadBuf *shb, ShadSamp { float temp; int *rz, ofs; @@ -38,8 +38,8 @@ $OpenBSD: patch-source_blender_render_in char *ct, *cz; /* negative! The other side is more important */ -@@ -1249,7 +1250,7 @@ static float readshadowbuf_halo(ShadBuf *shb, ShadSamp - else if(*ct==2) { +@@ -1251,7 +1252,7 @@ static float readshadowbuf_halo(ShadBuf *shb, ShadSamp + else if (*ct==2) { ct= ((char *)rz); ct+= 4+2*16*(ys & 15)+2*(xs & 15); - zsamp= *rz; @@ -47,8 +47,8 @@ $OpenBSD: patch-source_blender_render_in cz= (char *)&zsamp; cz[BCOMP]= ct[0]; -@@ -1258,7 +1259,7 @@ static float readshadowbuf_halo(ShadBuf *shb, ShadSamp - else if(*ct==1) { +@@ -1260,7 +1261,7 @@ static float readshadowbuf_halo(ShadBuf *shb, ShadSamp + else if (*ct==1) { ct= ((char *)rz); ct+= 4+16*(ys & 15)+(xs & 15); - zsamp= *rz; Index: patches/patch-source_gameengine_VideoTexture_VideoFFmpeg_h =================================================================== RCS file: patches/patch-source_gameengine_VideoTexture_VideoFFmpeg_h diff -N patches/patch-source_gameengine_VideoTexture_VideoFFmpeg_h --- patches/patch-source_gameengine_VideoTexture_VideoFFmpeg_h 2 Apr 2012 07:11:46 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ -$OpenBSD: patch-source_gameengine_VideoTexture_VideoFFmpeg_h,v 1.1 2012/04/02 07:11:46 pascal Exp $ ---- source/gameengine/VideoTexture/VideoFFmpeg.h.orig Sat Mar 31 16:36:14 2012 -+++ source/gameengine/VideoTexture/VideoFFmpeg.h Sat Mar 31 16:36:19 2012 -@@ -29,7 +29,6 @@ http://www.gnu.org/copyleft/lesser.txt. - - #ifdef WITH_FFMPEG - extern "C" { --#undef __cplusplus - #include <pthread.h> - - #include "ffmpeg_compat.h" Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/graphics/blender/pkg/PLIST,v retrieving revision 1.11 diff -u -p -r1.11 PLIST --- pkg/PLIST 2 Apr 2012 07:11:46 -0000 1.11 +++ pkg/PLIST 2 May 2012 18:10:34 -0000 @@ -1,4 +1,5 @@ @comment $OpenBSD: PLIST,v 1.11 2012/04/02 07:11:46 pascal Exp $ +@pkgpath graphics/blender,ffmpeg bin/blender @bin bin/blender-bin bin/blender-thumbnailer @@ -18,6 +19,7 @@ share/blender/datafiles/brushicons/add.p share/blender/datafiles/brushicons/blob.png share/blender/datafiles/brushicons/blur.png share/blender/datafiles/brushicons/clay.png +share/blender/datafiles/brushicons/claystrips.png share/blender/datafiles/brushicons/clone.png share/blender/datafiles/brushicons/crease.png share/blender/datafiles/brushicons/darken.png @@ -71,9 +73,6 @@ share/blender/datafiles/locale/es/LC_MES share/blender/datafiles/locale/es_ES/ share/blender/datafiles/locale/es_ES/LC_MESSAGES/ share/blender/datafiles/locale/es_ES/LC_MESSAGES/blender.mo -share/blender/datafiles/locale/es_MX/ -share/blender/datafiles/locale/es_MX/LC_MESSAGES/ -share/blender/datafiles/locale/es_MX/LC_MESSAGES/blender.mo share/blender/datafiles/locale/fa/ share/blender/datafiles/locale/fa/LC_MESSAGES/ share/blender/datafiles/locale/fa/LC_MESSAGES/blender.mo @@ -83,6 +82,9 @@ share/blender/datafiles/locale/fi/LC_MES share/blender/datafiles/locale/fr/ share/blender/datafiles/locale/fr/LC_MESSAGES/ share/blender/datafiles/locale/fr/LC_MESSAGES/blender.mo +share/blender/datafiles/locale/hr/ +share/blender/datafiles/locale/hr/LC_MESSAGES/ +share/blender/datafiles/locale/hr/LC_MESSAGES/blender.mo share/blender/datafiles/locale/id/ share/blender/datafiles/locale/id/LC_MESSAGES/ share/blender/datafiles/locale/id/LC_MESSAGES/blender.mo @@ -101,9 +103,9 @@ share/blender/datafiles/locale/ne/LC_MES share/blender/datafiles/locale/pl/ share/blender/datafiles/locale/pl/LC_MESSAGES/ share/blender/datafiles/locale/pl/LC_MESSAGES/blender.mo -share/blender/datafiles/locale/pt_BR/ -share/blender/datafiles/locale/pt_BR/LC_MESSAGES/ -share/blender/datafiles/locale/pt_BR/LC_MESSAGES/blender.mo +share/blender/datafiles/locale/pt/ +share/blender/datafiles/locale/pt/LC_MESSAGES/ +share/blender/datafiles/locale/pt/LC_MESSAGES/blender.mo share/blender/datafiles/locale/ru/ share/blender/datafiles/locale/ru/LC_MESSAGES/ share/blender/datafiles/locale/ru/LC_MESSAGES/blender.mo @@ -116,6 +118,12 @@ share/blender/datafiles/locale/sr@latin/ share/blender/datafiles/locale/sv/ share/blender/datafiles/locale/sv/LC_MESSAGES/ share/blender/datafiles/locale/sv/LC_MESSAGES/blender.mo +share/blender/datafiles/locale/tr/ +share/blender/datafiles/locale/tr/LC_MESSAGES/ +share/blender/datafiles/locale/tr/LC_MESSAGES/blender.mo +share/blender/datafiles/locale/uk/ +share/blender/datafiles/locale/uk/LC_MESSAGES/ +share/blender/datafiles/locale/uk/LC_MESSAGES/blender.mo share/blender/datafiles/locale/zh_CN/ share/blender/datafiles/locale/zh_CN/LC_MESSAGES/ share/blender/datafiles/locale/zh_CN/LC_MESSAGES/blender.mo @@ -209,6 +217,7 @@ share/blender/scripts/addons/io_import_s share/blender/scripts/addons/io_mesh_pdb/ share/blender/scripts/addons/io_mesh_pdb/__init__.py share/blender/scripts/addons/io_mesh_pdb/atom_info.dat +share/blender/scripts/addons/io_mesh_pdb/export_pdb.py share/blender/scripts/addons/io_mesh_pdb/import_pdb.py share/blender/scripts/addons/io_mesh_ply/ share/blender/scripts/addons/io_mesh_ply/__init__.py @@ -262,7 +271,6 @@ share/blender/scripts/addons/mesh_inset/ share/blender/scripts/addons/mesh_inset/model.py share/blender/scripts/addons/mesh_inset/offset.py share/blender/scripts/addons/mesh_inset/triquad.py -share/blender/scripts/addons/mesh_looptools.py share/blender/scripts/addons/mesh_relax.py share/blender/scripts/addons/mocap/ share/blender/scripts/addons/mocap/__init__.py @@ -270,7 +278,6 @@ share/blender/scripts/addons/mocap/mocap share/blender/scripts/addons/mocap/mocap_tools.py share/blender/scripts/addons/mocap/retarget.py share/blender/scripts/addons/modules/ -share/blender/scripts/addons/modules/add_utils.py share/blender/scripts/addons/modules/constants_utils.py share/blender/scripts/addons/modules/cursor_utils.py share/blender/scripts/addons/modules/extensions_framework/ @@ -404,7 +411,18 @@ share/blender/scripts/addons/system_demo share/blender/scripts/addons/system_property_chart.py share/blender/scripts/addons/texture_paint_layer_manager.py share/blender/scripts/addons_contrib/ +share/blender/scripts/addons_contrib/add_curve_objects/ +share/blender/scripts/addons_contrib/add_curve_objects/__init__.py +share/blender/scripts/addons_contrib/add_curve_objects/add_curve_rectangle_259.py +share/blender/scripts/addons_contrib/add_curve_objects/add_curve_spirals.py +share/blender/scripts/addons_contrib/add_curve_objects/cotejrp1_particle_tracer.py +share/blender/scripts/addons_contrib/add_curve_objects/cotejrp1_string_it.py +share/blender/scripts/addons_contrib/add_curve_objects/curve_simplify.py share/blender/scripts/addons_contrib/add_mesh_beam_builder.py +share/blender/scripts/addons_contrib/add_mesh_chain_rope/ +share/blender/scripts/addons_contrib/add_mesh_chain_rope/__init__.py +share/blender/scripts/addons_contrib/add_mesh_chain_rope/oscurart_chain_maker.py +share/blender/scripts/addons_contrib/add_mesh_chain_rope/oscurart_rope_maker.py share/blender/scripts/addons_contrib/add_mesh_column.py share/blender/scripts/addons_contrib/add_mesh_rocks/ share/blender/scripts/addons_contrib/add_mesh_rocks/__init__.py @@ -503,6 +521,7 @@ share/blender/scripts/addons_contrib/io_ share/blender/scripts/addons_contrib/io_export_dxf/primitive_exporters/mesh_exporter.py share/blender/scripts/addons_contrib/io_export_dxf/primitive_exporters/text_exporter.py share/blender/scripts/addons_contrib/io_export_dxf/primitive_exporters/viewborder_exporter.py +share/blender/scripts/addons_contrib/io_export_marmalade.py share/blender/scripts/addons_contrib/io_export_md3.py share/blender/scripts/addons_contrib/io_import_BrushSet.py share/blender/scripts/addons_contrib/io_import_LRO_Lola_MGS_Mola_img.py @@ -518,6 +537,12 @@ share/blender/scripts/addons_contrib/io_ share/blender/scripts/addons_contrib/io_points_pcd/pcd_utils.py share/blender/scripts/addons_contrib/io_points_pcd/pcdparser.py share/blender/scripts/addons_contrib/io_points_pcd/test.pcd +share/blender/scripts/addons_contrib/io_scene_cod/ +share/blender/scripts/addons_contrib/io_scene_cod/__init__.py +share/blender/scripts/addons_contrib/io_scene_cod/export_xanim.py +share/blender/scripts/addons_contrib/io_scene_cod/export_xmodel.py +share/blender/scripts/addons_contrib/io_scene_cod/import_xanim.py +share/blender/scripts/addons_contrib/io_scene_cod/import_xmodel.py share/blender/scripts/addons_contrib/io_scene_ms3d/ share/blender/scripts/addons_contrib/io_scene_ms3d/__README__.txt share/blender/scripts/addons_contrib/io_scene_ms3d/__init__.py @@ -525,30 +550,47 @@ share/blender/scripts/addons_contrib/io_ share/blender/scripts/addons_contrib/io_scene_ms3d/ms3d_import.py share/blender/scripts/addons_contrib/io_scene_ms3d/ms3d_spec.py share/blender/scripts/addons_contrib/io_scene_ms3d/ms3d_utils.py +share/blender/scripts/addons_contrib/io_scene_open_street_map.py share/blender/scripts/addons_contrib/io_sequencer_edl/ share/blender/scripts/addons_contrib/io_sequencer_edl/import_edl.py share/blender/scripts/addons_contrib/lamp_geographical_sun.py +share/blender/scripts/addons_contrib/mesh_bevel_round.py share/blender/scripts/addons_contrib/mesh_edge_intersection_tools.py +share/blender/scripts/addons_contrib/mesh_face_info_select.py share/blender/scripts/addons_contrib/mesh_inset_extrude.py +share/blender/scripts/addons_contrib/mesh_looptools.py +share/blender/scripts/addons_contrib/mesh_mextrude.py share/blender/scripts/addons_contrib/mesh_normal_smooth.py share/blender/scripts/addons_contrib/mesh_seam_from_uv_isles.py share/blender/scripts/addons_contrib/mesh_select_vertex_groups.py +share/blender/scripts/addons_contrib/mesh_show_vgroup_weights.py +share/blender/scripts/addons_contrib/mesh_solidify_wireframe.py share/blender/scripts/addons_contrib/mesh_vertex_slide.py share/blender/scripts/addons_contrib/object_batch_rename_datablocks.py share/blender/scripts/addons_contrib/object_drop_to_ground.py +share/blender/scripts/addons_contrib/object_edit_linked.py share/blender/scripts/addons_contrib/object_laplace_lightning.py +share/blender/scripts/addons_contrib/object_mangle_tools.py +share/blender/scripts/addons_contrib/object_render_wire.py share/blender/scripts/addons_contrib/oscurart_futurism.py +share/blender/scripts/addons_contrib/oscurart_mesh_thread.py +share/blender/scripts/addons_contrib/oscurart_tools.py +share/blender/scripts/addons_contrib/particle_hair_lab.py share/blender/scripts/addons_contrib/presets/ share/blender/scripts/addons_contrib/presets/interface_theme/ -share/blender/scripts/addons_contrib/presets/interface_theme/default_theme.xml -share/blender/scripts/addons_contrib/presets/interface_theme/theme_3ds_max.xml -share/blender/scripts/addons_contrib/presets/interface_theme/theme_blender_25x.xml -share/blender/scripts/addons_contrib/presets/interface_theme/theme_maya.xml -share/blender/scripts/addons_contrib/presets/interface_theme/theme_pinkified.xml -share/blender/scripts/addons_contrib/presets/interface_theme/theme_softblend.xml -share/blender/scripts/addons_contrib/presets/interface_theme/theme_softdefault.xml -share/blender/scripts/addons_contrib/presets/interface_theme/theme_zbrush.xml +share/blender/scripts/addons_contrib/presets/interface_theme/3ds_max.xml +share/blender/scripts/addons_contrib/presets/interface_theme/default.xml +share/blender/scripts/addons_contrib/presets/interface_theme/maya.xml +share/blender/scripts/addons_contrib/presets/interface_theme/modo.xml +share/blender/scripts/addons_contrib/presets/interface_theme/pinkified.xml +share/blender/scripts/addons_contrib/presets/interface_theme/softblend.xml +share/blender/scripts/addons_contrib/presets/interface_theme/softdefault.xml +share/blender/scripts/addons_contrib/presets/interface_theme/toxic.xml +share/blender/scripts/addons_contrib/presets/interface_theme/zbrush.xml +share/blender/scripts/addons_contrib/presets/keyconfig/ +share/blender/scripts/addons_contrib/presets/keyconfig/blender_2012_experimental.py share/blender/scripts/addons_contrib/render_clay.py +share/blender/scripts/addons_contrib/render_time.py share/blender/scripts/addons_contrib/render_to_print.py share/blender/scripts/addons_contrib/space_view3d_add_surround_cameras.py share/blender/scripts/addons_contrib/space_view3d_enhanced_3d_cursor.py @@ -556,9 +598,12 @@ share/blender/scripts/addons_contrib/spa share/blender/scripts/addons_contrib/space_view3d_manipulator_Menu.py share/blender/scripts/addons_contrib/space_view3d_multiselect_menu.py share/blender/scripts/addons_contrib/space_view3d_objects_panel.py +share/blender/scripts/addons_contrib/space_view3d_paint_bprojection.py share/blender/scripts/addons_contrib/space_view3d_simple_align.py share/blender/scripts/addons_contrib/system_keyboard_svg.py +share/blender/scripts/addons_contrib/system_project_folder.py share/blender/scripts/addons_contrib/text_editor_pasteall.py +share/blender/scripts/addons_contrib/text_intellisense.py share/blender/scripts/addons_contrib/wetted_mesh.py share/blender/scripts/modules/ share/blender/scripts/modules/addon_utils.py @@ -643,6 +688,10 @@ share/blender/scripts/presets/ffmpeg/VCD share/blender/scripts/presets/ffmpeg/h264.py share/blender/scripts/presets/ffmpeg/theora.py share/blender/scripts/presets/ffmpeg/xvid.py +share/blender/scripts/presets/fluid/ +share/blender/scripts/presets/fluid/honey.py +share/blender/scripts/presets/fluid/oil.py +share/blender/scripts/presets/fluid/water.py share/blender/scripts/presets/framerate/ share/blender/scripts/presets/framerate/23.98.py share/blender/scripts/presets/framerate/24.py @@ -799,12 +848,14 @@ share/blender/scripts/templates/ share/blender/scripts/templates/addon_add_object.py share/blender/scripts/templates/background_job.py share/blender/scripts/templates/batch_export.py +share/blender/scripts/templates/bmesh_simple.py share/blender/scripts/templates/builtin_keyingset.py share/blender/scripts/templates/driver_functions.py share/blender/scripts/templates/gamelogic.py -share/blender/scripts/templates/gamelogic_basic.py share/blender/scripts/templates/gamelogic_module.py -share/blender/scripts/templates/operator_export.py +share/blender/scripts/templates/gamelogic_simple.py +share/blender/scripts/templates/operator_file_export.py +share/blender/scripts/templates/operator_file_import.py share/blender/scripts/templates/operator_mesh_add.py share/blender/scripts/templates/operator_modal.py share/blender/scripts/templates/operator_modal_draw.py @@ -819,6 +870,7 @@ share/doc/blender/ share/doc/blender/GPL-license.txt share/doc/blender/Python-license.txt share/doc/blender/copyright.txt +share/pixmaps/ share/pixmaps/blender.svg @exec %D/bin/update-desktop-database @unexec-delete %D/bin/update-desktop-database