Welcome to Simone Giustetti's wiki pages.
Languages: English - Italiano
ARTS
Analog Real Time Synthesizer is a multimedia library used by KDE 2, KDE 3 and TDE whose main goal consists of simulating an analog synthesizer used by the desktop environments and their many applications. An integrated sound server, the artsd daemon, is part of the library and is used to merge distinct sound streams in real time. In later Linux distributions the mixer function shifted to ALSA the Linux kernel sound subsystem. ARts is no longer in active development and hasn't been since 2004 when it was replaced by the Phonon API in KDE 4.
ARts and Slackware
ARts is part of the prerequisite packages for TDE. Its build scripts were ported to cmake therefore the autotools build suite is no longer needed to configure and compile the source code. A build script was written based on the official Slackware 13.0 slackbuild script for ARts with some updates to integrate cmake. The /opt/trinity directory was used as root directory for the package both to ensure a pacific coexistence with KDE 4 and to uniform ARts configuration to the other packages. The -DCMAKE_SKIP_RPATH="OFF" flag was imposed to the cmake command as suggested int the TDE build how-to. The flag will allow ARTs to execute command during the build process.
The slackbuild script for the ARts package is part of the archive found at the following link. Some comments to the commands used through the script to ensure a smooth build follow.
First of all you need to clean the cmake cache. Task accomplished by lines:
# Clean cmake cache
find . -name CMakeCache.txt -exec rm {} \;
Then you must create a directory where to compile the source code and store output files. Cmake seems to have a preference for build as directory name. It won't work otherwise:
# Create a directory where to build source (cmake wants the name to be build).
cd ${TMP}/tmp-${PRGNAM}
mkdir build
cd build
Qt library paths are needed for scripts to find binary files while building the source code:
# Add temporary paths to handle new libraries during build
export QTDIR=/opt/trinity
export PATH=/opt/trinity/bin:/usr/bin:$PATH
export LIBDIR=/usr/lib${LIBDIRSUFFIX}
export LD_LIBRARY_PATH=/usr/lib${LIBDIRSUFFIX}:/opt/trinity/lib${LIBDIRSUFFIX}
export PKG_CONFIG_PATH=:/usr/lib${LIBDIRSUFFIX}/pkgconfig:/opt/trinity/lib${LIBDIRSUFFIX}/pkgconfig:$PKG_CONFIG_PATH
Finally you can run cmake with the aforementioned option:
-DCMAKE_C_FLAGS:STRING="${SLKCFLAGS}" \
-DCMAKE_CXX_FLAGS:STRING="${SLKCFLAGS}" \
-DCMAKE_INSTALL_PREFIX=${PREFIX} \
'''-DCMAKE_SKIP_RPATH="OFF"''' \
-DSYSCONF_INSTALL_DIR="/etc/trinity" \
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
-DQT_VERSION=3 \
-DQT_INCLUDE_DIR=/opt/trinity/include \
2>&1 | tee ${OUTPUT}/${PRGNAM}_configure.log
And go on running the make command to build all then execute the packaging steps.
The outcome package can be installed recurring to the installpkg command as usual in Slackware linux.
For any feedback, questions, errors and such, please e-mail me at studiosg [at] giustetti [dot] net
External Links
- TDE build guide
- Wikipedia ARts page
- Arts project home page
- Arts project FAQ
- Phonon: ARts replacement
Languages: English - Italiano