Open Octave MIDI
Click the above image to view in fullscreen.
Although Open Octave MIDI is in steep development at the moment, we've posted a link, giving users the opportunity to try our application for themselves. We're steadily working towards a Version 1 alpha release, with continued work on the matrix editor, and port structure, as well as other components.....
Get the code:
Temporary git repo:
git clone git://68.150.160.199:9418/var/git/openoctave.git
When compiling please cd into the root of the project and do the following.
QT3 Note
It's important to ensure you have the qt3 path defined. For most users, the compile and build will work without a problem. For those who need to define the path because you have a "qt3 not found" error, you can add this in the root project directory, using your own path, with the following command, before you run cmake . :
(as user):$ export QTDIR=/path/to/your/qt3/dir
For Gentoo users with a normal install, you are likely to find the correct directory path at:
/usr/qt/3/include
so your export command might look something like:
(as user)$ export QTDIR=/usr/qt/3/include
KDE3 Note
It's important to ensure you have the kde3 path defined. For most users, the compile and build will work without a problem. For those who need to define the path because you have a "Could NOT find everything required for compiling KDE 3 programs" error, you can add this in the root project directory, using your own path, with the following command, before you run cmake . :
(as user):$ export KDEDIR=/path/to/your/kde/3.5/dir
For Gentoo users with a normal install, you are likely to find the correct directory path at:
/usr/kde/3.5
so your export command might look something like:
(as user)$ export KDEDIR=/usr/kde/3.5