/[svn]/web/trunk/www.linuxsampler.org/downloads.html
ViewVC logotype

Diff of /web/trunk/www.linuxsampler.org/downloads.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 682 by schoenebeck, Thu Jun 23 23:27:40 2005 UTC revision 1589 by schoenebeck, Tue Dec 11 20:22:26 2007 UTC
# Line 157  Line 157 
157   name="credits" src="gfx/mcredits.png" alt="credits"></a> </td>   name="credits" src="gfx/mcredits.png" alt="credits"></a> </td>
158        <td valign="top" width="100%">        <td valign="top" width="100%">
159        <div id="contents">        <div id="contents">
160    
161          <h2>Licenses</h2>
162          <p class="default">
163          There are several subprojects, each having its own license terms, as follows:
164          </p>
165          <table class="default">
166          <tbody>
167            <tr>
168              <td class="bordered">
169                <a class="info" href=#gigedit>gigedit<span class='info'>An instrument editor for gig files (written in C++, based on the gtk(mm) toolkit).</span></a>
170              </td>
171              <td> -> (pure) <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a></td>
172            </tr>
173            <tr>
174              <td class="bordered">
175                 <a class="info" href=#jlscp>jlscp<span class='info'>A java LinuxSampler control protocol API.</span></a>
176              </td>
177              <td> -> (pure) <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a> v2</td>
178            </tr>
179            <tr>
180              <td class="bordered">
181                  <a class="info" href=#jsampler>JSampler<span class='info'>A graphical frontend to LinuxSampler, written in Java.</span></a>
182              </td>
183              <td> -> (pure) <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a> v2</td>
184            </tr>
185            <tr>
186              <td class="bordered">
187                <a class="info" href=#libgig>libgig<span class='info'>Gigasampler file access library (C++), for loading, modifying and creating gig files.</span></a>
188              </td>
189              <td> -> (pure) <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a></td>
190            </tr>
191            <tr>
192              <td class="bordered">
193                <a class="info" href=#liblscp>liblscp<span class='info'>LinuxSampler Control Protocol (LSCP) wrapper C library.</span></a>
194              </td>
195              <td> -> (pure) <a href="http://www.gnu.org/licenses/lgpl.html">LGPL</a></td>
196            </tr>
197            <tr>
198              <td class="bordered">
199                <a class="info" href=#linuxsampler>LinuxSampler<span class='info'>Sampler backend, including sampler engine, audio and MIDI drivers, network layer (LSCP) API and native C++ API.</span></a>
200              </td>
201              <td> -> <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a> with <a href="#exception"><u><i>commercial exception</i></u>*</a></td>
202            </tr>
203            <tr>
204              <td class="bordered">
205                <a class="info" href=#qsampler>QSampler<span class='info'>Graphical frontend to LinuxSampler (written in C++, based on the Qt toolkit).</span></a>
206              </td>
207              <td> -> (pure) <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a></td>
208            </tr>
209          </tbody>
210          </table>
211    
212          <a name="exception"></a>
213          <p class="caution">
214          [*] LinuxSampler is licensed under the GNU GPL license with the exception that
215          <b>USAGE</b> of the source code, libraries and applications
216          <b>FOR COMMERCIAL HARDWARE OR SOFTWARE PRODUCTS IS NOT ALLOWED</b>
217          without prior written permission by the LinuxSampler authors.
218          If you have questions on the subject, that are not yet covered by the
219          <a href="faq.html#commercial_products">FAQ</a>,
220          please <a href="developers.html">contact us</a>.
221          </p>
222    
223        <h2>Dependencies</h2>        <h2>Dependencies</h2>
224        <p class="default"> The following figure illustrates the compile        <p class="default"> The following figure illustrates the compile
225  time / linker dependencies. </p>  time / linker dependencies.</p>
226        <div style="line-height: 1.2em;">        <div style="line-height: 1.2em;">
227        <pre>       <strong>QSampler</strong> ~~~(optional)~~~&gt; <strong>libgig</strong>        <pre class="figure">                                  <strong>gigedit</strong>
228             |                         A                                       |
229             |                         |                                  (mandatory)
230        (mandatory)               (mandatory)                                       |
231             |                         |                                       V
232             V                         |         <strong>QSampler</strong> ~~~(optional)~~~&gt; <strong>libgig</strong>         <strong>JSampler</strong>
233          <strong>liblscp</strong>                 <strong>LinuxSampler</strong>             |                         A              |
234                            </pre>             |                         |              |
235          (mandatory)               (mandatory)    (mandatory)
236               |                         |              |
237               V                         |              V
238            <strong>liblscp</strong>                 <strong>LinuxSampler</strong>      <strong>jlscp</strong></pre>
239        </div>        </div>
240        <p class="default"> Or again in words: you have to compile and        <p class="default"> Or again in words: you have to compile and
241  install libgig before being able to compile and use LinuxSampler. You  install libgig before being able to compile and use LinuxSampler. You
# Line 176  don't need libgig for compiling and usin Line 243  don't need libgig for compiling and usin
243  recommended. You cannot compile nor use QSampler without liblscp  recommended. You cannot compile nor use QSampler without liblscp
244  though. As QSampler is communicating with LinuxSampler via TCP, there  though. As QSampler is communicating with LinuxSampler via TCP, there
245  is no linker dependency between them, but of course you still need to  is no linker dependency between them, but of course you still need to
246  have LinuxSampler installed to be able to use QSampler. </p>  have LinuxSampler installed to be able to use QSampler (either locally
247        <h2>Source Packages</h2>  or on any other computer in your network). JSampler is also communicating
248        <table class="default">  with LinuxSampler via TCP, so there is no linker dependency between them
249          <tbody>  either. JSampler requires jlscp though. You have to compile and install
250    libgig before being able to compile and use gigedit.</p>
251    
252          <h2>Binary Packages</h2>
253          <p class="default">
254            We currently provide pre-compiled binaries for the following operating systems:
255          </p>
256          <table class="decorated">
257            <thead>
258            <tr>            <tr>
259              <td> <a              <td class="decorated_header">Operating System</td>
260   href="http://download.linuxsampler.org/packages/libgig-2.0.1.tar.bz2">              <td class="decorated_header">Description</td>
 libgig-2.0.1.tar.bz2 </a> </td>  
             <td> --&gt; </td>  
             <td> Gigasampler file loader library </td>  
261            </tr>            </tr>
262            </thead>
263            <tbody>
264            <tr>            <tr>
265              <td> <a              <td class="decorated">
266   href="http://download.linuxsampler.org/packages/liblscp-0.3.0.tar.gz">                <a href="http://download.linuxsampler.org/packages/debian/">
267  liblscp-0.3.0.tar.gz </a> </td>                  <img src="gfx/logos/debian.png">Debian
268              <td> --&gt; </td>                </a>
269              <td> LinuxSampler Control Protocol (LSCP) wrapper library </td>              </td>
270                <td class="decorated"> Individual Debian (.deb) binary package for each software component, compiled for x86 (Debian <i>stable</i>, a.k.a "Etch"). </td>
271            </tr>            </tr>
272            <tr>            <tr>
273              <td> <a              <td class="decorated">
274   href="http://download.linuxsampler.org/packages/linuxsampler-0.3.2.tar.bz2">                <a href="http://download.linuxsampler.org/packages/gentoo/">
275  linuxsampler-0.3.2.tar.bz2 </a> </td>                  <img src="gfx/logos/gentoo.png">Gentoo
276              <td> --&gt; </td>                </a>
277              <td> sampler backend </td>              </td>
278                <td class="decorated"> Bleeding edge Gentoo ebuild for each software component, which can be used to conveniently emerge the latest versions directly from CVS. </td>
279            </tr>            </tr>
280            <tr>            <tr>
281              <td> <a              <td class="decorated">
282   href="http://download.linuxsampler.org/packages/qsampler-0.1.1.tar.gz">                <a href="http://download.linuxsampler.org/packages/rpms/">
283  qsampler-0.1.1.tar.gz </a> </td>                  <img src="gfx/logos/suse.png">Suse
284              <td> --&gt; </td>                </a>
285              <td> graphical frontend to LinuxSampler </td>              </td>
286                <td class="decorated"> Individual RPM package for each software component, compiled for i586. </td>
287            </tr>            </tr>
288            <tr>            <tr>
289              <td> <a              <td class="decorated">
290   href="http://prdownloads.sourceforge.net/jlscp/jlscp-0.2a.tar.bz2?download">                <a href="http://download.linuxsampler.org/packages/win32/linuxsampler_20071207_setup.exe">
291  jlscp-0.2a.tar.bz2 </a> </td>                  <img src="gfx/logos/windows.png">Windows
292              <td> --&gt; </td>                </a>
293              <td> a java LinuxSampler control protocol API </td>              </td>
294                <td class="decorated"> Self-extracting all-in-one installer for the latest official releases of all software components. Download, execute, enjoy!</td>
295            </tr>            </tr>
296          </tbody>          </tbody>
297        </table>        </table>
298        <h2>Binary Packages</h2>        <p class="default">
299        <p class="default"> There are currently <a          Additionally there are the following platform independent packages (note: "Fantasia" is already included with the Windows installer):
300   href="http://download.linuxsampler.org/packages/debian/">Debian        </p>
301  packages</a> and <a        <table class="decorated">
302   href="http://download.linuxsampler.org/packages/rpms/">RPM packages</a>          <thead>
303  for i386 only. </p>            <tr>
304        <h2>CVS</h2>              <td class="decorated_header">File Name</td>
305        <p class="default"> This project's CVS repository can be checked              <td class="decorated_header">Description</td>
306  out through anonymous (pserver) CVS with the following instruction set.            </tr>
307  When prompted for a password for anonymous, simply press the Enter key.          </thead>
 There are currently five subprojects in the LinuxSampler project, pick  
 the line of the respective subproject you want to checkout from below: </p>  
       <table class="default" border="0" cellpadding="1" cellspacing="5">  
308          <tbody>          <tbody>
309            <tr>            <tr>
310              <td>              <td class="decorated">
311              <pre class="code">1<br>2<br>3<br>4<br>5</pre>                <a href="http://downloads.sourceforge.net/jsampler/Fantasia-0.8a.jar">
312                    <img src="gfx/logos/java.png">Fantasia-0.8a.jar
313                  </a>
314              </td>              </td>
315              <td width="100%">              <td class="decorated"> a frontend to LinuxSampler, modern skin-based distribution </td>
316              <pre class="code">cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler co libgig<br>cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler co liblscp<br>cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler co linuxsampler<br>cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler co qsampler<br>cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler co jlscp</pre>            </tr>
317              <tr>
318                <td class="decorated">
319                  <a href="http://downloads.sourceforge.net/jsampler/JS_Classic-0.8a.jar">
320                    <img src="gfx/logos/java.png">JS_Classic-0.8a.jar
321                  </a>
322              </td>              </td>
323                <td class="decorated"> a frontend to LinuxSampler, classic distribution </td>
324            </tr>            </tr>
325          </tbody>          </tbody>
326        </table>        </table>
327          <br>
328    
329          <h2>Source Packages</h2>
330          <p class="default">
331            Source code packages of the latest official releases:
332          </p>
333          <table class="decorated">
334            <thead>
335              <tr>
336                <td class="decorated_header">File Name</td>
337                <td class="decorated_header">Description</td>
338              </tr>
339            </thead>
340            <tbody>
341              <tr>
342                <td class="decorated"> <a
343     href="http://download.linuxsampler.org/packages/libgig-3.2.1.tar.bz2">
344    libgig-3.2.1.tar.bz2 </a> </td>
345                <td class="decorated"> Gigasampler file access library (C++) </td>
346              </tr>
347              <tr>
348                <td class="decorated"> <a
349     href="http://download.linuxsampler.org/packages/liblscp-0.5.5.tar.gz">
350    liblscp-0.5.5.tar.gz </a> </td>
351                <td class="decorated"> LinuxSampler Control Protocol (LSCP) wrapper library </td>
352              </tr>
353              <tr>
354                <td class="decorated"> <a
355     href="http://download.linuxsampler.org/packages/linuxsampler-0.5.1.tar.bz2">
356    linuxsampler-0.5.1.tar.bz2 </a> </td>
357                <td class="decorated"> sampler engine / backend </td>
358              </tr>
359              <tr>
360                <td class="decorated"> <a
361     href="http://download.linuxsampler.org/packages/qsampler-0.2.1.tar.gz">
362    qsampler-0.2.1.tar.gz </a> </td>
363                <td class="decorated"> graphical frontend to LinuxSampler </td>
364              </tr>
365              <tr>
366                <td class="decorated"> <a
367     href="http://downloads.sourceforge.net/jlscp/jlscp-0.7a.tar.bz2">
368    jlscp-0.7a.tar.bz2 </a> </td>
369                <td class="decorated"> a java LinuxSampler control protocol API </td>
370              </tr>
371              <tr>
372                <td class="decorated"> <a
373     href="http://downloads.sourceforge.net/jsampler/JSampler-0.8a.tar.bz2">
374    JSampler-0.8a.tar.bz2 </a> </td>
375                <td class="decorated"> a java frontend to LinuxSampler </td>
376              </tr>
377              <tr>
378                <td class="decorated">
379                  <a name="gigedit"></a>
380                  <a
381     href="http://download.linuxsampler.org/packages/gigedit-0.1.1.tar.gz">
382    gigedit-0.1.1.tar.gz </a> </td>
383                <td class="decorated"> an instrument editor for gig files </td>
384            </tbody>
385          </table>
386          <br>
387    
388          <a name="cvs"></a><h2>CVS</h2>
389          <p class="default"> This project's CVS repository can be checked
390    out through anonymous (pserver) CVS with the following instruction set.
391    When prompted for a password for anonymous, simply press the Enter key.
392    There are currently seven subprojects in the LinuxSampler project, pick
393    the line of the respective subproject you want to checkout from below: </p>
394    
395           <pre class="code">cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler \
396      co libgig
397    cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler \
398      co liblscp
399    cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler \
400      co linuxsampler<br>cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler \
401      co qsampler
402    cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler \
403      co jlscp
404    cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler \
405      co jsampler
406    cvs -z3 -d:pserver:anonymous@cvs.linuxsampler.org:/var/cvs/linuxsampler \
407      co gigedit</pre>
408    
409          <p class="default"> You don't need to checkout the sources again later on,
410          just for keeping track to the latest development version. For updating to
411          the latest CVS version you can simply run the following command at any
412          time from the checked out source directory:</p>
413    
414          <pre class="code">cvs update -d -P</pre>
415    
416        <p class="default"> You can also <a        <p class="default"> You can also <a
417   href="http://cvs.linuxsampler.org/cgi-bin/viewcvs.cgi/">browse the CVS   href="http://cvs.linuxsampler.org/cgi-bin/viewcvs.cgi/">browse the CVS
418  repository</a>. </p>  repository</a>. </p>
419        <h2>Wallpapers</h2>        <h2>Bootsplash theme</h2>
420        <p class="default"> How about a bit eye candy for your desktop?        <p class="default"> Does your computer already boot in LinuxSampler style? No? Checkout the following LinuxSampler theme for either <a href="http://dev.gentoo.org/~spock/projects/gensplash/">fbsplash (gensplash)</a> or <a href="http://www.bootsplash.org">bootsplash</a>:</p>
 There's currently only a wallpaper for 1600x1200. Tell us if you like  
 it and maybe we add other resolutions as well. </p>  
421        <table class="default">        <table class="default">
422          <tbody>          <tbody>
423            <tr>            <tr>
424              <td> <a              <td> <a
425   href="http://download.linuxsampler.org/wallpapers/linuxsampler_box_1600x1200.png">   href="http://download.linuxsampler.org/bootsplash/screenshots/boot.png">
426              <img src="misc/linuxsampler_box_preview.jpg"              <img src="http://download.linuxsampler.org/bootsplash/screenshots/boot_preview.jpg"
427   alt="wallpaper preview"> </a> </td>   alt="Screenshot 1"> </a> </td>
428                <td> --&gt; </td>
429                <td> <a
430     href="http://download.linuxsampler.org/bootsplash/screenshots/boot.png"> Screenshot while booting </a> </td>
431              </tr>
432              <tr>
433                <td> <a
434     href="http://download.linuxsampler.org/bootsplash/screenshots/top.png">
435                <img src="http://download.linuxsampler.org/bootsplash/screenshots/top_preview.jpg"
436     alt="Screenshot 2"> </a> </td>
437              <td> --&gt; </td>              <td> --&gt; </td>
438              <td> <a              <td> <a
439   href="http://download.linuxsampler.org/wallpapers/linuxsampler_box_1600x1200.png">   href="http://download.linuxsampler.org/bootsplash/screenshots/top.png"> Screenshot of terminal (here running 'top') </a> </td>
 1600x1200 </a> </td>  
440            </tr>            </tr>
441          </tbody>          </tbody>
442        </table>        </table>
443          <p class="default"> <a
444     href="http://download.linuxsampler.org/bootsplash/"> You can get this theme here.</a> </p>
445        <br>        <br>
446        </div>        </div>
447        </td>        </td>

Legend:
Removed from v.682  
changed lines
  Added in v.1589

  ViewVC Help
Powered by ViewVC