|
|
|
# Default version for this component
|
|
|
|
%if "%{?version}" == ""
|
|
|
|
%define version 3.5.13
|
|
|
|
%endif
|
|
|
|
%define release 4
|
|
|
|
|
|
|
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
|
|
|
%if "%{?_prefix}" != "/usr"
|
|
|
|
%define _variant .opt
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# TDE 3.5.13 specific building variables
|
|
|
|
BuildRequires: cmake >= 2.8
|
|
|
|
|
|
|
|
|
|
|
|
Name: trinity-arts
|
|
|
|
Version: %{?version}
|
|
|
|
Release: %{?release}%{?dist}%{?_variant}
|
|
|
|
License: GPL
|
|
|
|
Summary: aRts (analog realtime synthesizer) - the KDE sound system
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
|
|
|
|
Vendor: Trinity Project
|
|
|
|
URL: http://www.trinitydesktop.org/
|
|
|
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
|
|
|
|
|
|
|
Prefix: %{_prefix}
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
Source0: arts-%{version}.tar.gz
|
|
|
|
|
|
|
|
# TDE 3.5.13: Re-enable lost OSS support
|
|
|
|
Patch0: arts-3.5.13-enable_oss.patch
|
|
|
|
|
|
|
|
# TDE 3.5.13: Re-enable lost JACK support
|
|
|
|
Patch1: arts-3.5.13-enable_jack.patch
|
|
|
|
|
|
|
|
BuildRequires: tqtinterface-devel
|
|
|
|
BuildRequires: audiofile-devel
|
|
|
|
BuildRequires: alsa-lib-devel
|
|
|
|
BuildRequires: glib2-devel
|
|
|
|
BuildRequires: libtool-ltdl-devel
|
|
|
|
BuildRequires: gsl-devel
|
|
|
|
BuildRequires: libvorbis-devel
|
|
|
|
BuildRequires: jack-audio-connection-kit-devel
|
|
|
|
|
|
|
|
Requires: tqtinterface
|
|
|
|
Requires: audiofile
|
|
|
|
|
|
|
|
%if "%{?_prefix}" == "/usr"
|
|
|
|
Obsoletes: arts
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
arts (analog real-time synthesizer) is the sound system of KDE 3.
|
|
|
|
|
|
|
|
The principle of arts is to create/process sound using small modules which do
|
|
|
|
certain tasks. These may be create a waveform (oscillators), play samples,
|
|
|
|
filter data, add signals, perform effects like delay/flanger/chorus, or
|
|
|
|
output the data to the soundcard.
|
|
|
|
|
|
|
|
By connecting all those small modules together, you can perform complex
|
|
|
|
tasks like simulating a mixer, generating an instrument or things like
|
|
|
|
playing a wave file with some effects.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Group: Development/Libraries
|
|
|
|
Summary: %{name} - Development files
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%if "%{?_prefix}" == "/usr"
|
|
|
|
Obsoletes: arts-devel
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Development files for %{name}
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n dependencies/arts
|
|
|
|
%patch0 -p1
|
|
|
|
%patch1 -p1
|
|
|
|
|
|
|
|
%build
|
|
|
|
unset QTDIR || : ; . /etc/profile.d/qt.sh
|
|
|
|
|
|
|
|
%__mkdir build
|
|
|
|
cd build
|
|
|
|
%cmake \
|
|
|
|
-DINCLUDE_INSTALL_DIR=%{_includedir}/arts \
|
|
|
|
-DPKGCONFIG_INSTALL_DIR=%{_libdir}/pkgconfig \
|
|
|
|
-DWITH_ALSA=ON \
|
|
|
|
-DWITH_AUDIOFILE=ON \
|
|
|
|
-DWITH_VORBIS=ON \
|
|
|
|
-DWITH_MAD=OFF \
|
|
|
|
-DWITH_ESOUND=ON \
|
|
|
|
-DWITH_JACK=ON \
|
|
|
|
..
|
|
|
|
|
|
|
|
|
|
|
|
%__make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
%__rm -rf %{?buildroot}
|
|
|
|
%__make install -C build DESTDIR=%{?buildroot}
|
|
|
|
|
|
|
|
%clean
|
|
|
|
%__rm -rf %{?buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc COPYING.LIB
|
|
|
|
%dir %{_libdir}/mcop
|
|
|
|
%dir %{_libdir}/mcop/Arts
|
|
|
|
%{_libdir}/mcop/Arts/*
|
|
|
|
%{_libdir}/mcop/*.mcopclass
|
|
|
|
%{_libdir}/mcop/*.mcoptype
|
|
|
|
%{_libdir}/lib*.so.*
|
|
|
|
%{_libdir}/lib*.la
|
|
|
|
%{_bindir}/artscat
|
|
|
|
%{_bindir}/artsd
|
|
|
|
%{_bindir}/artsdsp
|
|
|
|
%{_bindir}/artsplay
|
|
|
|
%{_bindir}/artsrec
|
|
|
|
%{_bindir}/artsshell
|
|
|
|
%{_bindir}/artswrapper
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/mcopidl
|
|
|
|
%dir %{_includedir}
|
|
|
|
%{_includedir}/*/
|
|
|
|
%{_bindir}/artsc-config
|
|
|
|
%{_libdir}/lib*.so
|
|
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
%{_libdir}/*.a
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
* Fri Dec 16 2011 Francois Andriot <francois.andriot@free.fr> - 3.5.13-4
|
|
|
|
- Enables JACK support
|
|
|
|
|
|
|
|
* Mon Nov 14 2011 Francois Andriot <francois.andriot@free.fr> - 3.5.13-3
|
|
|
|
- Enables OSS and ESD support
|
|
|
|
|
|
|
|
* Thu Nov 03 2011 Francois Andriot <francois.andriot@free.fr> - 3.5.13-2
|
|
|
|
- Add missing BuildRequires
|
|
|
|
|
|
|
|
* Sun Oct 30 2011 Francois Andriot <francois.andriot@free.fr> - 3.5.13-1
|
|
|
|
- Initial release for RHEL 6, RHEL 5 and Fedora 15
|
|
|
|
|
|
|
|
* Fri Sep 02 2011 Francois Andriot <francois.andriot@free.fr> - 3.5.13-0
|
|
|
|
- Import to GIT
|
|
|
|
- Built with future TDE version (3.5.13 + cmake + QT3.3.8d)
|