Blame SPECS/alsa-tools.spec

49a47c
# If you want to skip building the firmware subpackage, define the macro
49a47c
# _without_firmware to 1. This is not the actual firmware itself 
49a47c
# (see alsa-firmware), it is some complementary tools.
49a47c
# Do *NOT* set it to zero or have a commented out define here, or it will not
49a47c
# work. (RPM spec file voodoo)
49a47c
%if 0%{?rhel}
49a47c
%global _without_tools 1
49a47c
%endif
49a47c
49a47c
%ifarch ppc ppc64
49a47c
# sb16_csp doesn't build on PPC; see bug #219010
49a47c
%{?!_without_tools:     %global builddirstools as10k1 echomixer envy24control hdspconf hdspmixer hwmixvolume rmedigicontrol sbiload sscape_ctl us428control hda-verb hdajackretask hdajacksensetest }
49a47c
%else
49a47c
%{?!_without_tools:     %global builddirstools as10k1 echomixer envy24control hdspconf hdspmixer hwmixvolume rmedigicontrol sbiload sb16_csp sscape_ctl us428control hda-verb hdajackretask hdajacksensetest }
49a47c
%endif
49a47c
49a47c
%{?!_without_firmware:  %global builddirsfirmw hdsploader mixartloader usx2yloader vxloader }
49a47c
49a47c
%{?!_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
49a47c
49a47c
# Note that the Version is intended to coincide with the version of ALSA
49a47c
# included with the Fedora kernel, rather than necessarily the very latest
49a47c
# upstream version of alsa-tools
49a47c
49a47c
Summary:        Specialist tools for ALSA
49a47c
Name:           alsa-tools
49a47c
Version:        1.2.2
49a47c
Release:        6%{?dist}
49a47c
49a47c
# Checked at least one source file from all the sub-projects contained in
49a47c
# the source tarball and they are consistent GPLv2+ - TJ 2007-11-15
49a47c
License:        GPLv2+
49a47c
URL:            http://www.alsa-project.org/
49a47c
Source:         ftp://ftp.alsa-project.org/pub/tools/%{name}-%{version}.tar.bz2
49a47c
49a47c
Source1:        90-alsa-tools-firmware.rules
49a47c
49a47c
Patch1:         hwmixvolume-python.patch
49a47c
49a47c
BuildRequires:  gcc gcc-c++
49a47c
BuildRequires:  alsa-lib-devel >= %{version}
49a47c
%if 0%{!?_without_tools:1}
49a47c
BuildRequires:  gtk+-devel
49a47c
BuildRequires:  gtk2-devel
49a47c
BuildRequires:  gtk3-devel
49a47c
BuildRequires:  fltk-devel
49a47c
BuildRequires: make
49a47c
Buildrequires:  desktop-file-utils
49a47c
Requires:       xorg-x11-fonts-misc
49a47c
# Needed for hwmixvolume
49a47c
Requires:       python3-alsa
49a47c
%endif
49a47c
49a47c
%description
49a47c
This package contains several specialist tools for use with ALSA, including
49a47c
a number of programs that provide access to special hardware facilities on
49a47c
certain sound cards.
49a47c
49a47c
* as10k1 - AS10k1 Assembler
49a47c
%ifnarch ppc ppc64
49a47c
* cspctl - Sound Blaster 16 ASP/CSP control program
49a47c
%endif
49a47c
* echomixer - Mixer for Echo Audio (indigo) devices
49a47c
* envy24control - Control tool for Envy24 (ice1712) based soundcards
49a47c
* hdspmixer - Mixer for the RME Hammerfall DSP cards
49a47c
* hwmixvolume - Control the volume of individual streams on sound cards that
49a47c
  use hardware mixing
49a47c
* rmedigicontrol - Control panel for RME Hammerfall cards
49a47c
* sbiload - An OPL2/3 FM instrument loader for ALSA sequencer
49a47c
* sscape_ctl - ALSA SoundScape control utility
49a47c
* us428control - Control tool for Tascam 428
49a47c
* hda-verb - Direct HDA codec access
49a47c
* hdajackretask - Reassign the I/O jacks on the HDA hardware
49a47c
* hdajacksensetest - The sense test for the I/O jacks on the HDA hardware
49a47c
49a47c
49a47c
%package firmware
49a47c
Summary:        ALSA tools for uploading firmware to some soundcards
49a47c
Requires:       udev
49a47c
Requires:       alsa-firmware
49a47c
Requires:       fxload
49a47c
49a47c
49a47c
%description firmware
49a47c
This package contains tools for flashing firmware into certain sound cards.
49a47c
The following tools are available:
49a47c
49a47c
* hdsploader   - for RME Hammerfall DSP cards
49a47c
* mixartloader - for Digigram miXart soundcards
49a47c
* vxloader     - for Digigram VX soundcards
49a47c
* usx2yloader  - second phase firmware loader for Tascam USX2Y USB soundcards
49a47c
49a47c
49a47c
%prep
49a47c
%setup -q -n %{name}-%{version}
49a47c
%patch1 -p1 -b .hwmixvolume-python
49a47c
49a47c
%build
49a47c
mv seq/sbiload . ; rm -rf seq
49a47c
for i in %{?builddirstools:%builddirstools} %{?builddirsfirmw:%builddirsfirmw}
49a47c
do
49a47c
  cd $i ; %configure
49a47c
  make %{?_smp_mflags} || exit 1
49a47c
  cd ..
49a47c
done
49a47c
49a47c
%install
49a47c
mkdir -p %{buildroot}%{_datadir}/{pixmaps,applications}
49a47c
49a47c
for i in %{?builddirstools:%builddirstools} %{?builddirsfirmw:%builddirsfirmw}
49a47c
do
49a47c
  case $i in
49a47c
    usx2yloader)
49a47c
      (cd $i ; %make_install hotplugdir=/lib/udev) || exit 1
49a47c
      ;;
49a47c
    *)
49a47c
      (cd $i ; %make_install) || exit 1
49a47c
      ;;
49a47c
   esac
49a47c
   if [[ -s "${i}"/README ]]
49a47c
   then
49a47c
      if [[ ! -d "%{buildroot}%{_pkgdocdir}/${i}" ]]
49a47c
      then
49a47c
         mkdir -p "%{buildroot}%{_pkgdocdir}/${i}"
49a47c
      fi
49a47c
      cp "${i}"/README "%{buildroot}%{_pkgdocdir}/${i}"
49a47c
   fi
49a47c
   if [[ -s "${i}"/COPYING ]]
49a47c
   then
49a47c
      if [[ ! -d "%{buildroot}%{_pkgdocdir}/${i}" ]]
49a47c
      then
49a47c
         mkdir -p "%{buildroot}%{_pkgdocdir}/${i}"
49a47c
      fi
49a47c
      cp "${i}"/COPYING "%{buildroot}%{_pkgdocdir}/${i}"
49a47c
   fi
49a47c
   if [[ -s %{buildroot}%{_datadir}/applications/${i}.desktop ]] ; then
49a47c
      desktop-file-validate %{buildroot}%{_datadir}/applications/${i}.desktop
49a47c
      desktop-file-install --dir %{buildroot}%{_datadir}/applications \
49a47c
        %{buildroot}%{_datadir}/applications/${i}.desktop
49a47c
   fi
49a47c
done
49a47c
49a47c
# convert hotplug stuff to udev
49a47c
rm -f %{buildroot}/lib/udev/tascam_fw.usermap
49a47c
mkdir -p %{buildroot}/lib/udev/rules.d
49a47c
install -m 644 %{SOURCE1} %{buildroot}/lib/udev/rules.d
49a47c
49a47c
%if 0%{!?_without_tools:1}
49a47c
%files
49a47c
%dir %{_pkgdocdir}
49a47c
%doc %{_pkgdocdir}/as10k1
49a47c
%doc %{_pkgdocdir}/echomixer
49a47c
%doc %{_pkgdocdir}/envy24control
49a47c
%doc %{_pkgdocdir}/hdspconf
49a47c
%doc %{_pkgdocdir}/hdspmixer
49a47c
%doc %{_pkgdocdir}/hwmixvolume
49a47c
%doc %{_pkgdocdir}/rmedigicontrol
49a47c
%doc %{_pkgdocdir}/sbiload
49a47c
%doc %{_pkgdocdir}/hda-verb
49a47c
%doc %{_pkgdocdir}/hdajackretask
49a47c
%{_bindir}/as10k1
49a47c
%{_bindir}/echomixer
49a47c
%{_bindir}/envy24control
49a47c
%{_bindir}/hdspconf
49a47c
%{_bindir}/hdspmixer
49a47c
%{_bindir}/hwmixvolume
49a47c
%{_bindir}/rmedigicontrol
49a47c
%{_bindir}/sbiload
49a47c
%{_bindir}/sscape_ctl
49a47c
%{_bindir}/us428control
49a47c
%{_bindir}/hda-verb
49a47c
%{_bindir}/hdajackretask
49a47c
%{_bindir}/hdajacksensetest
49a47c
%{_datadir}/sounds/*
49a47c
%{_datadir}/man/man1/envy24control.1.gz
49a47c
%{_datadir}/applications/*.desktop
49a47c
%{_datadir}/icons/hicolor/*/apps*
49a47c
49a47c
# sb16_csp stuff which is excluded for PPCx
49a47c
%ifnarch ppc ppc64
49a47c
%doc %{_pkgdocdir}/sb16_csp
49a47c
%{_bindir}/cspctl
49a47c
%{_datadir}/man/man1/cspctl.1.gz
49a47c
%endif
49a47c
49a47c
%endif
49a47c
49a47c
%if 0%{!?_without_firmware:1}
49a47c
%files firmware
49a47c
%dir %{_pkgdocdir}
49a47c
%doc %{_pkgdocdir}/hdsploader
49a47c
%doc %{_pkgdocdir}/mixartloader
49a47c
%doc %{_pkgdocdir}/usx2yloader
49a47c
%doc %{_pkgdocdir}/vxloader
49a47c
/lib/udev/rules.d/*.rules
49a47c
/lib/udev/tascam_fpga
49a47c
/lib/udev/tascam_fw
49a47c
%{_bindir}/hdsploader
49a47c
%{_bindir}/mixartloader
49a47c
%{_bindir}/usx2yloader
49a47c
%{_bindir}/vxloader
49a47c
%endif
49a47c
49a47c
%changelog
49a47c
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.2-6
49a47c
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
49a47c
  Related: rhbz#1991688
49a47c
49a47c
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.2-5
49a47c
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
49a47c
49a47c
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-4
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
49a47c
49a47c
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-3
49a47c
- Second attempt - Rebuilt for
49a47c
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
49a47c
49a47c
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
49a47c
49a47c
* Wed Feb 19 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.2-1
49a47c
- Updated to 1.2.2
49a47c
49a47c
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-5
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
49a47c
49a47c
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-4
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
49a47c
49a47c
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-3
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
49a47c
49a47c
* Sun Dec 09 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.7-2
49a47c
- Switch python2-alsa dependency to python3-alsa as hwmixvolume runs on Python 3
49a47c
49a47c
* Tue Oct 16 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.7-1
49a47c
- Updated to 1.1.7
49a47c
49a47c
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.6-2
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
49a47c
49a47c
* Tue Apr 03 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.6-1
49a47c
- Updated to 1.1.6
49a47c
49a47c
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.1.5-4
49a47c
- Update Python 2 dependency declarations to new packaging standards
49a47c
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
49a47c
49a47c
* Thu Feb 22 2018 Tim Jackson <rpm@timj.co.uk> - 1.1.5-3
49a47c
- Add missing BuildRequire on gcc
49a47c
49a47c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
49a47c
49a47c
* Tue Nov 14 2017 Jaroslav Kysela <perex@perex.cz> - 1.1.5-1
49a47c
- Updated to 1.1.5
49a47c
49a47c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-4
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
49a47c
49a47c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-3
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
49a47c
49a47c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-2
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
49a47c
49a47c
* Wed Sep 21 2016 Jaroslav Kysela <perex@perex.cz> - 1.1.3-1
49a47c
- Updated to 1.1.3
49a47c
49a47c
* Wed Mar 16 2016 Yaakov Selkowitz <yselkowi@redhat.com> - 1.1.0-3
49a47c
- Fix FTBFS with GCC 6 (#1307312)
49a47c
49a47c
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
49a47c
49a47c
* Tue Oct 27 2015 Jaroslav Kysela <perex@perex.cz> - 1.1.0-1
49a47c
- Updated to 1.1.0
49a47c
49a47c
* Fri Sep 18 2015 Richard Hughes <rhughes@redhat.com> - 1.0.29-5
49a47c
- Remove no longer required AppData files
49a47c
49a47c
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.29-4
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
49a47c
49a47c
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.0.29-3
49a47c
- Rebuilt for GCC 5 C++11 ABI change
49a47c
49a47c
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 1.0.29-2
49a47c
- Add an AppData file for the software center
49a47c
49a47c
* Thu Feb 26 2015 Jaroslav Kysela <perex@perex.cz> - 1.0.29-1
49a47c
- updated to 1.0.29
49a47c
49a47c
* Thu Feb 19 2015 Rex Dieter <rdieter@fedoraproject.org> 1.0.28-4
49a47c
- rebuild (fltk)
49a47c
49a47c
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.28-3
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
49a47c
49a47c
* Fri Jul 25 2014 Tim Jackson <rpm@timj.co.uk> 1.0.28-1
49a47c
- don't use %%makeinstall (RHBZ #909622)
49a47c
49a47c
* Thu Jul 24 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.0.28-1
49a47c
- Update to 1.0.28
49a47c
49a47c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.27-4
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
49a47c
49a47c
* Thu Aug  1 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.0.27-3
49a47c
- Install docs to %%{_pkgdocdir} where available.
49a47c
49a47c
* Tue May 21 2013 Dan Horák <dan[at]danny.cz> - 1.0.27-2
49a47c
- fix build on non-x86 arches
49a47c
49a47c
* Fri Apr 12 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27-1
49a47c
- Updated to 1.0.27
49a47c
49a47c
* Sat Feb 09 2013 Rahul Sundaram <sundaram@fedoraproject.org> - 1.0.26.1-3
49a47c
- remove vendor tag from desktop file. https://fedorahosted.org/fpc/ticket/247
49a47c
- clean up spec to follow current guidelines
49a47c
- don't build -tools for RHEL. Bill Nottingham patch. Resolves rhbz#586030
49a47c
49a47c
* Fri Sep  7 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.26.1-2
49a47c
- Fixed gtk3-devel dependency (hdajackretask)
49a47c
- Added description for hda-verb and hdajackretask
49a47c
49a47c
* Thu Sep  6 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.26.1-1
49a47c
- Updated to 1.0.26.1
49a47c
- Added hda-verb and hdajackretask tools
49a47c
49a47c
* Thu Sep  6 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.26-1
49a47c
- Updated to 1.0.26
49a47c
49a47c
* Wed Aug 29 2012 Tim Jackson <rpm@timj.co.uk> - 1.0.25-4
49a47c
- Move udev rules to /lib/udev/rules.d (rhbz #748206)
49a47c
- remove %%BuildRoot and %%clean sections; no longer required
49a47c
49a47c
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.25-3
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
49a47c
49a47c
* Wed Mar  7 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.0.25-2
49a47c
- Bump build for ARM
49a47c
49a47c
* Tue Jan 31 2012 Jaroslav Kysela <perex@perex.cz> - 1.0.25-1
49a47c
- Update to 1.0.25
49a47c
49a47c
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24.1-5
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
49a47c
49a47c
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1.0.24.1-4
49a47c
- Rebuild for new libpng
49a47c
49a47c
* Fri Jun 10 2011 Adam Jackson <ajax@redhat.com> 1.0.24.1-3
49a47c
- Rebuild for new libfltk
49a47c
49a47c
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24.1-2
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
49a47c
49a47c
* Thu Feb 03 2011 Tim Jackson <rpm@timj.co.uk> - 1.0.24.1-1
49a47c
- Update to 1.0.24.1
49a47c
49a47c
* Mon May 03 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.23-1
49a47c
- update to 1.0.23
49a47c
49a47c
* Sat Mar 06 2010 Tim Jackson <rpm@timj.co.uk> - 1.0.22-2
49a47c
- Don't own /usr/share/sounds (#569415)
49a47c
49a47c
* Sun Jan 10 2010 Tim Jackson <rpm@timj.co.uk> - 1.0.22-1
49a47c
- Update to 1.0.22
49a47c
- use %%global instead of %%define
49a47c
49a47c
* Thu Sep 03 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.21-1
49a47c
- Update to 1.0.21
49a47c
49a47c
* Wed Aug 26 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.20-4
49a47c
- Add missing dep on xorg-x11-fonts-misc (#503284)
49a47c
49a47c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.20-3
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
49a47c
49a47c
* Thu Jul 16 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.20-2
49a47c
49a47c
* Sun May 10 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.20-1.fc12.2
49a47c
- Update to 1.0.20
49a47c
49a47c
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.19-3
49a47c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
49a47c
49a47c
* Sat Feb 14 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.19-2
49a47c
- Fix unowned directory problem (#483323)
49a47c
49a47c
* Sat Jan 24 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.19-1
49a47c
- Update to version 1.0.19
49a47c
- Mark udev rules as config
49a47c
49a47c
* Fri Dec  5 2008 Jon McCann <jmccann@redhat.com> - 1.0.17-2
49a47c
- Convert hotplug stuff to udev
49a47c
49a47c
* Thu Jul 17 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.17-1
49a47c
- Update to version 1.0.17
49a47c
49a47c
* Mon May 19 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.16-4
49a47c
- Make it build cleanly on ppc and ppc64 by excluding sb16_csp
49a47c
49a47c
* Sun May 18 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.16-3
49a47c
- Really enable firmware subpackage
49a47c
49a47c
* Sun May 18 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.16-2
49a47c
- Enable firmware subpackage - the accompanying alsa-firmware package is
49a47c
  finally in Fedora
49a47c
49a47c
* Sat Mar 01 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.16-1
49a47c
- Update to upstream 1.0.16 (fixes #434473)
49a47c
49a47c
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0.15-3
49a47c
- Autorebuild for GCC 4.3
49a47c
49a47c
* Sat Jan 05 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.15-2
49a47c
- Update License tag to GPLv2+
49a47c
- ExcludeArch ppc64 (bug #219010)
49a47c
49a47c
* Sat Jan 05 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.15-1
49a47c
- Update to upstream 1.0.15
49a47c
- Add icon for envy24control
49a47c
- Build echomixer
49a47c
49a47c
* Sat Dec 09 2006 Tim Jackson <rpm@timj.co.uk> - 1.0.12-4
49a47c
- ExcludeArch ppc (#219010)
49a47c
49a47c
* Sun Nov 26 2006 Tim Jackson <rpm@timj.co.uk> - 1.0.12-3
49a47c
- Add gtk2-devel BR
49a47c
49a47c
* Sun Nov 26 2006 Tim Jackson <rpm@timj.co.uk> - 1.0.12-2
49a47c
- Own our docdir explicitly
49a47c
49a47c
* Sat Nov 25 2006 Tim Jackson <rpm@timj.co.uk> - 1.0.12-1
49a47c
- Update to 1.0.12
49a47c
- Resubmit to Fedora Extras 6
49a47c
- Replace hotplug requirement with udev
49a47c
49a47c
* Mon Feb 13 2006 Thorsten Leemhuis <fedora[AT]leemhuis.info>
49a47c
- Rebuild for Fedora Extras 5
49a47c
49a47c
* Tue Dec 06 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.10-1
49a47c
- Update to 1.0.10
49a47c
49a47c
* Fri May 06 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.9-1
49a47c
- Update to 1.0.9
49a47c
- Use disttag
49a47c
- Remove gcc4 patch
49a47c
49a47c
* Fri May 06 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.8-3
49a47c
- prune ac3dec from sources
49a47c
49a47c
* Thu May 05 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.8-2
49a47c
- don't build ac3dec -- use a52dec instead
49a47c
49a47c
* Wed Apr 06 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.8-1
49a47c
- Update to 1.0.8