Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-11-18Better handing of llvm version (now we can be sure to use the same for osl ↵Bastien Montagne
and blender - and the latest one available!). And more cosmetic cleanups...
2012-11-18Fix own stupid mistake for threads count, and edits to user messages (mostly ↵Bastien Montagne
adding the ldconfig trick for dynamic boost libs).
2012-11-17Install dependencies: added check for minimal version of x264Sergey Sharybin
Also fixed parsing of package version with epoch
2012-11-17Mono-core platform seem to not output the cores field in /proc/cpuinfo :/Bastien Montagne
Also adding gawk packages (gnu awk), looks like some distro do not have that one by default!
2012-11-17Install dependencies: workaround for SHA linking issuesSergey Sharybin
2012-11-17Install dependencies: abort script if compilation of some component failedSergey Sharybin
2012-11-17Install dependencies: disable OSL for nowSergey Sharybin
It's really horror even for me to compile it on release environment, i do not want anybody to spend time trying to support this lib in automatic script or make it so user's are easily frustrated by some hack added to OSL repository. If you REALLY want to build OSL with this script, set BUILD_OSL to truth (it's in the top of the script).
2012-11-17Install dependencies: dead links should not occurSergey Sharybin
2012-11-17Install dependencies: use OIIO 1.1.1 where SHA crap seems to be solvedSergey Sharybin
2012-11-17Made sure open OIIO does not use system's boost in cases it was compiled ↵Sergey Sharybin
from sources
2012-11-17Install dependencies: made it sure llvm-3.1 or llvm-3.0 is installingSergey Sharybin
llvm-dev could be a meta-package for older version of llvm
2012-11-17quiet scons deprecation warnings and correct --with_filesystem --> ↵Campbell Barton
--with-filesystem in install_deps.sh
2012-11-16More fixes and cleanup...Bastien Montagne
Now OSL should work for DEB-like systems with CMake (not yet tested with scones, nor fedora). Fedora version-checking bug should be fixed. Also simplified a bit compile_FOO funcs code.
2012-11-16First atempt to add OSL.Bastien Montagne
DEB only for now: installs needed deps (LLVM & co), downloads OSL source and compiles the lib. However, blender linking fails currently... :/
2012-11-15Another nuch of fixes/improvements to install_deps script, among which:Bastien Montagne
*New $INST variable to easily change the installation root dir of compiled libs. *Better handling of versions for debian (DEB) too (and fix a bug for fedora (RPM) ones). *Enhancements/fixes to compile_FOO funcs: **Most notable, we now can force a recompile when we change something into these funcs, so user will always have latest-instructions compiled libs (else, he would have have to manually remove lib dirs under $INST...) *General naming cleanup inside script (still wip). Also adding boost date_time lib to linux in cmake file (why wasn't it there???).
2012-11-15looks like we need those libs as well to compile with static ffmpeg on ↵Bastien Montagne
fedora (by why in hell librt???)...
2012-11-15Fixes, mostly for RPM (tested on fedora17):Bastien Montagne
*Better handling of optional libs for ffmpeg, and is now able to check and give user additional link libs for ffmpeg. *Added two helpers (only used by RPM for now) to: **check whether a version number is greater or equal than another one, and... **check whether a version number is "included" into another one (eg 3.3.2 is included into more general 3.3). *Added date-time as target when building our own boost. *Removed apt-get upgrade action for DEB (let the user decide when he wants to globally upgrade its system!).
2012-11-13Fixes for sconsBastien Montagne
2012-11-13Adding an escape for '/' char inside the regex's char classe, looks like it ↵Bastien Montagne
is needed for ubuntu 's awk but not mandatory for debian's awk??? Anyway, does not arm... ;)
2012-11-13Add more info to make ffmpeg work "out of the box" for DEB systems:Bastien Montagne
*For CMake, enable ffmpeg (it is disabled by default...) *Give the full list a librairies to link. Tested on Debian for CMake (did not test scons at all for now, anyway). Not yet implemented for RPM/SUSE distribs, but this should not be too hard.
2012-11-13More fixes:Bastien Montagne
*Unset LANG envar for the script execution time, because commands like "apt-cache policy" will return translated messages, which would not be grep'ed crrectly... *Disable using distrib's ffmpeg for DEB distribs too, as e.g. official debian features libav under ffmpeg name, which is not that much compatible with current Blender code. *Also check for libxvidcore-dev .deb package, debian has no libxvidcore4-dev ;)
2012-11-13Hopefully now suse will just work :)Sergey Sharybin
2012-11-13Install dependencies script: added support of OpenSUSESergey Sharybin
Currently it'll install basic packages only and will compile all python, boost, oiio, ocio and ffmpeg.
2012-11-13fix for boost (symlink was buggy, and better to only build needed boost libs).Bastien Montagne
Note; we might also want to add the --without-icu option later...
2012-11-12Initial implementation of a script for automatic dependencies installer/builderSergey Sharybin
This script will install all packages from the repositories and will compile missing in repositories libraries. It is supposed to replace pre-compiled libraries from our svn. Tested script on Fedora 14 and 17, Ubuntu 10.04 and 12.10. All the dependencies and manually built libraries seems to be fine. However, it's really annoying to build blender in virtual machine to ensure there's no linking errors, i would hope community will help testing and making needed tweaks to the script :) To use the script, simple run it from your user name. It'll run installation commands from a sudo, so you would likely be requested to type a password. I've made tweaks to CMake FindLibs, so it should find OIIO, OCIO and python libraries compiled by this script. Boost and FFmpeg would need to be specified manually. SCons currently would require manual paths specifications as well. Perhaps we could make SCons smarter in the future. All the parameters you need to pass to CMake/SCons would be printed when script finishes to run. Pretty much sure it's not production-ready script, but we need to start testing at some point :)
2012-11-06Release environment script: make python linking to openssl staticallySergey Sharybin
2012-11-05Release environment script: correction to python shm checkSergey Sharybin
2012-11-05Script to configure release build environmentSergey Sharybin
This script was used to initialize build environment currently used for glibc-2.11 builds. It's supposed to be used on debian-based distros. Usage is described in the top comment of the script. It is highly recommended to use this script in the virtual machine to prevent possible conflicts with your own configuration. TODO: - Add OSL configuration - Script requires manual copying of some scripts still (see comments at the top of the script) I would prefer this script be edited only in cases when it's really needed, meaning i wouldn't be fan of changes like "just use latest version of library XXX". It's not so safe to do such changes and it's easy to upgrade libraries after environment was set up.