2012-01-11 06:55:54 +01:00
|
|
|
Dependencies
|
2013-10-07 04:41:19 +02:00
|
|
|
============
|
|
|
|
|
:Author: core-devs
|
2015-05-28 00:24:25 +02:00
|
|
|
:Date: 5/2015
|
2013-10-07 04:41:19 +02:00
|
|
|
:toc:
|
2012-01-11 06:55:54 +01:00
|
|
|
|
|
|
|
|
|
2015-05-28 00:24:25 +02:00
|
|
|
_Lumiera is written for GNU/Linux._ +
|
|
|
|
|
We try to get the best out of modern system programming
|
|
|
|
|
techniques to reach a solid performance and good throughput.
|
|
|
|
|
Lumiera shall scale with the provided Hardware,
|
2012-01-11 06:55:54 +01:00
|
|
|
the more RAM and the more/faster CPU's you have the better.
|
|
|
|
|
Nevertheless lower end 32bit machines are supported too.
|
|
|
|
|
|
|
|
|
|
Secondary targets will be other free operating systems which offer a decent Posix API. +
|
|
|
|
|
Porting to other more or less similar platforms will be possible, if -- by coincidence --
|
|
|
|
|
Someone(TM) helps with porting.
|
|
|
|
|
|
|
|
|
|
Having said that -- for the time being, the core team won't spend much effort on porting.
|
|
|
|
|
|
|
|
|
|
Platform
|
|
|
|
|
--------
|
2015-05-28 00:24:25 +02:00
|
|
|
We develop and test on standard PC hardware, 32 and 64 bit.
|
|
|
|
|
It is intended to target other platforms running run GNU/Linux eventually.
|
|
|
|
|
Lumiera expects a `standard' desktop installation running a XServer.
|
2012-01-11 06:55:54 +01:00
|
|
|
|
|
|
|
|
Graphics::
|
|
|
|
|
There are no special requirements for the graphic system.
|
2013-10-06 05:20:22 +02:00
|
|
|
Hardware acceleration will likely be added later through extensions,
|
2015-05-28 00:24:25 +02:00
|
|
|
but will remain strictly optional.footnote:[For the time being, we'll watch
|
|
|
|
|
the evolution in that area and might revisit that topic when there are more
|
|
|
|
|
compelling and widely supported solutions available]
|
2012-01-11 06:55:54 +01:00
|
|
|
|
|
|
|
|
Disks::
|
2013-10-06 05:20:22 +02:00
|
|
|
No special requirements. Video editing requires decent disk speed though,
|
|
|
|
|
so it is suggested to use a fast/big array of disks configured as raid.
|
2012-01-11 06:55:54 +01:00
|
|
|
|
|
|
|
|
Special Hardware::
|
2013-10-06 05:20:22 +02:00
|
|
|
Support for special hardware would be possible, but depends on certain conditions
|
2012-01-11 06:55:54 +01:00
|
|
|
+
|
|
|
|
|
* we need access / donations for the hardware
|
2015-05-28 00:24:25 +02:00
|
|
|
* Specs and APIs must be open.
|
2012-01-11 06:55:54 +01:00
|
|
|
* someone to do the actual interfacing and support needs to join the team
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Languages and Tools
|
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
|
|
* C / C++
|
|
|
|
|
|
2015-08-15 21:50:00 +02:00
|
|
|
- a C99 / C++14 compatible compiler footnote:[in practice, we build using GCC and
|
2013-10-06 05:20:22 +02:00
|
|
|
occasionally we check using Clang]
|
2015-08-15 21:50:00 +02:00
|
|
|
- GCC *4.9* or Clang *3.5* should be fine footnote:[basically we try to use just the stock language.
|
2015-05-28 00:24:25 +02:00
|
|
|
On rare occasions in the past, we _did_ use some GCC extensions, like `typeof()`, but we care for
|
2013-10-06 05:20:22 +02:00
|
|
|
workarounds, in case this becomes a problem].
|
2012-01-11 06:55:54 +01:00
|
|
|
|
2013-10-06 05:20:22 +02:00
|
|
|
* BOOST (listed below are the Debian package names)
|
2014-04-29 09:51:00 +02:00
|
|
|
- libboost-dev (at least *1.55*)
|
2012-01-11 06:55:54 +01:00
|
|
|
- libboost-program-options-dev
|
|
|
|
|
- libboost-program-options-dev
|
|
|
|
|
- libboost-filesystem-dev
|
|
|
|
|
- libboost-regex-dev
|
|
|
|
|
|
|
|
|
|
* Script languages
|
2015-08-15 21:50:00 +02:00
|
|
|
- Python (*2.7*) for build scripts
|
2012-01-11 06:55:54 +01:00
|
|
|
- bash (some test scripts use bash specific extensions)
|
|
|
|
|
|
|
|
|
|
Build Tools
|
|
|
|
|
~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* Git
|
2013-10-06 05:20:22 +02:00
|
|
|
* SCons *2.0* footnote:[we build with SCons >= 2.0 since a long time. Previously the buildsystem used to work with 1.0
|
|
|
|
|
In addition, we use some SCons plug-ins, which are all shipped in-tree (`admin/scons`)]
|
2012-01-11 06:55:54 +01:00
|
|
|
* pkg-config
|
|
|
|
|
* Doxygen
|
|
|
|
|
|
2013-10-06 05:20:22 +02:00
|
|
|
We maintain a link:/documentation/technical/infra/debianDepot.html[Debian/Ubuntu package] (relying on debhelper, CDBS, git-buildpackage)
|
2012-01-11 06:55:54 +01:00
|
|
|
|
|
|
|
|
Libraries
|
|
|
|
|
~~~~~~~~~
|
|
|
|
|
|
2015-08-15 21:50:00 +02:00
|
|
|
* BOOST
|
2013-10-06 05:20:22 +02:00
|
|
|
* link:http://nobug.pipapo.org/[NoBug]
|
|
|
|
|
* http://gmerlin.sourceforge.net/gavl.html[GAVL] (for raw media support)
|
|
|
|
|
* ALSA: libasound2-dev
|
2015-05-28 00:24:25 +02:00
|
|
|
* for the GUI: (*GTK-3*) gtkmm-3.0 gdlmm-3.0 glibmm-2.4 cairomm-1.0 xv
|
|
|
|
|
- libgtkmm-3.0-dev
|
2012-01-11 06:55:54 +01:00
|
|
|
- libcairomm-1.0-dev
|
2015-05-28 00:24:25 +02:00
|
|
|
- libglibmm-2.4-dev, requiring at least glib2.0 and gthread-2.0
|
|
|
|
|
- libxv-dev footnote:[for the XV viewer widget `gui/output/xvdisplayer.cpp`
|
|
|
|
|
-- currently obsolete as of [yellow-background]#5/2015#][yellow-background]#TODO 5/2015# and X-lib
|
2012-01-11 06:55:54 +01:00
|
|
|
- librsvg-2.0 and librsvg2-dev for rendering Icons
|
2015-05-28 00:24:25 +02:00
|
|
|
- libgdl-3-0 or better through libgdlmm-3.0-2 -- the »Gnome Docking Library«footnote:[GDL isn't directly related to GNOME any more.
|
2013-10-28 00:19:03 +01:00
|
|
|
We contributed to the improvement of this library in the past. These improvements went upstream
|
2015-05-28 00:24:25 +02:00
|
|
|
with GDL-2.27. At times, we used to ship our own GDL package. Right now, a recent upstream version
|
|
|
|
|
together with the corresponding *mm-bindings will do]
|
2012-01-11 06:55:54 +01:00
|
|
|
|
|
|
|
|
|