diff options
Diffstat (limited to 'mpeglib_artsplug/README')
-rw-r--r-- | mpeglib_artsplug/README | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/mpeglib_artsplug/README b/mpeglib_artsplug/README new file mode 100644 index 00000000..20015161 --- /dev/null +++ b/mpeglib_artsplug/README @@ -0,0 +1,78 @@ + + +1) compile arts snapshot with + + ./configure --prefix=/tmp/arts + ^^^^^^^^^^^^^^^^^^ + needed + + This Makefile depends on the assumption that arts is in /tmp/arts ! + +2) Put the arts libraries into your library search path: + + edit ld.so.conf + add: /tmp/arts/lib + /sbin/ldconfig + + ---> Make sure the arts path is BEFORE your KDE Library path! + (you will link against old arts versions and will get + "undefined references") + +4) compile & install mpeglib + + ./configure + make <-- mabe you get errors here , because I have XFree4.0 + make install + +5) add the library search path for mpeg lib to /etc/ld.so.conf + see 2) + Per default mpeglib installs in /usr/lib + +6) Now build the arts plugins in this directory + + * You should edit the Makefile and remove the XFree4.0 dependecies + +Makefile: + -lmpeg -lX11 -lXext -lXt -lXv -lXxf86dga -lpthread +# ^^^^^^^^^^^^^^^ +# needed if you have XFree4.0 + + + + Type in this directory + + make + + then pray. + + Now check the library dependcies. + A success looks similar to this: +[m_vogt@mv arts]$ ldd ./libarts_splay.so + libmpeg--version-info.so => /usr/local/lib/libmpeg--version-info.so (0x40022000) + libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x4009d000) + libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x4015f000) + libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x4016c000) + libpthread.so.0 => /lib/libpthread.so.0 (0x401b5000) + libstdc++-libc6.1-1.so.2 => /usr/lib/libstdc++-libc6.1-1.so.2 (0x401c8000) + libm.so.6 => /lib/libm.so.6 (0x4020a000) + libc.so.6 => /lib/libc.so.6 (0x40227000) + libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x4031c000) + libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x40325000) + /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000) + + +If you get undefined references read: 2. + + +7.) Now install the lib + + make install + + +8) start artsd + +9) start the ./artsplay in the current directoy with a given mp3 + + + + |