2004-09-09 02:55:41 +00:00
|
|
|
Summary: Advanced Linux Sound Architecture (ALSA) utilities
|
|
|
|
Name: alsa-utils
|
2006-12-11 22:12:08 +00:00
|
|
|
Version: 1.0.14
|
2007-07-25 10:45:00 +00:00
|
|
|
Release: 1%{?prever_dot}%{?dist}
|
2004-09-09 02:55:41 +00:00
|
|
|
License: GPL
|
|
|
|
Group: Applications/Multimedia
|
|
|
|
URL: http://www.alsa-project.org/
|
2006-01-12 14:17:30 +00:00
|
|
|
Source: ftp://ftp.alsa-project.org/pub/utils/alsa-utils-%{version}%{?prever}.tar.bz2
|
2005-04-01 22:25:04 +00:00
|
|
|
Source2: salsa.c
|
2005-05-30 15:41:45 +00:00
|
|
|
Source3: alsacard.c
|
2005-07-11 13:11:40 +00:00
|
|
|
Source4: alsaunmute.c
|
2005-07-13 19:03:02 +00:00
|
|
|
Source10: alsa.rules
|
2007-04-10 11:22:40 +00:00
|
|
|
Patch: alsa-utils-1.0.14-alsaconf.patch
|
2004-09-09 02:55:41 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2004-09-09 02:56:47 +00:00
|
|
|
BuildRequires: alsa-lib-devel >= %{version}
|
2004-09-09 02:55:41 +00:00
|
|
|
BuildRequires: ncurses-devel
|
2006-02-20 16:53:36 +00:00
|
|
|
BuildRequires: gettext-devel
|
2005-07-13 19:03:02 +00:00
|
|
|
Conflicts: udev < 062
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
%description
|
|
|
|
This package contains command line utilities for the Advanced Linux Sound
|
|
|
|
Architecture (ALSA).
|
2004-09-09 02:55:32 +00:00
|
|
|
|
|
|
|
%prep
|
2006-01-12 14:17:30 +00:00
|
|
|
%setup -q -n %{name}-%{version}%{?prever}
|
2007-04-10 11:22:40 +00:00
|
|
|
%patch -p1
|
2004-09-09 02:55:32 +00:00
|
|
|
|
|
|
|
%build
|
2007-04-10 11:22:40 +00:00
|
|
|
%configure CFLAGS="$RPM_OPT_FLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" --sbindir=/sbin
|
2004-09-09 02:55:41 +00:00
|
|
|
%{__make} %{?_smp_mflags}
|
2005-04-01 22:25:04 +00:00
|
|
|
%{__cc} $RPM_OPT_FLAGS -o salsa %{SOURCE2} -lasound
|
2005-05-30 15:41:45 +00:00
|
|
|
%{__cc} $RPM_OPT_FLAGS -o alsacard %{SOURCE3} -lasound
|
2005-07-11 13:11:40 +00:00
|
|
|
%{__cc} $RPM_OPT_FLAGS -o alsaunmute %{SOURCE4} -lasound
|
2004-09-09 02:55:32 +00:00
|
|
|
|
|
|
|
%install
|
2004-09-09 02:55:41 +00:00
|
|
|
%{__rm} -rf ${RPM_BUILD_ROOT}
|
2004-10-14 21:58:30 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2007-04-18 12:28:22 +00:00
|
|
|
# Install ALSA udev rules
|
2005-07-13 19:03:02 +00:00
|
|
|
mkdir -p -m755 $RPM_BUILD_ROOT/etc/udev/rules.d/
|
2006-03-24 09:57:50 +00:00
|
|
|
install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/etc/udev/rules.d/90-alsa.rules
|
2007-04-18 12:28:22 +00:00
|
|
|
|
|
|
|
# Install support utilities
|
2005-07-21 14:45:20 +00:00
|
|
|
mkdir -p -m755 $RPM_BUILD_ROOT/bin
|
|
|
|
install -m 755 alsaunmute %{buildroot}/bin
|
|
|
|
install -m 755 alsacard %{buildroot}/bin
|
2007-04-18 12:28:22 +00:00
|
|
|
install -m 755 salsa %{buildroot}/sbin
|
|
|
|
|
|
|
|
# Link alsactl to /usr/sbin
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_sbindir}
|
|
|
|
ln -s ../../sbin/alsactl $RPM_BUILD_ROOT/%{_sbindir}/alsactl
|
2004-09-09 02:55:32 +00:00
|
|
|
|
|
|
|
%clean
|
2004-09-09 02:55:41 +00:00
|
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2007-04-10 11:22:40 +00:00
|
|
|
%files
|
2004-09-09 02:55:41 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc COPYING ChangeLog README TODO
|
2005-07-13 19:03:02 +00:00
|
|
|
/etc/udev/rules.d/*
|
2005-07-21 14:45:20 +00:00
|
|
|
/bin/*
|
2007-04-18 12:28:22 +00:00
|
|
|
/sbin/*
|
2004-09-09 02:55:41 +00:00
|
|
|
%{_bindir}/*
|
|
|
|
%{_sbindir}/*
|
|
|
|
%{_mandir}/man?/*
|
2007-04-10 11:58:19 +00:00
|
|
|
%dir %{_datadir}/sounds
|
|
|
|
%dir %{_datadir}/sounds/alsa
|
|
|
|
%{_datadir}/sounds/alsa/*
|
|
|
|
%dir %{_datadir}/alsa
|
|
|
|
%dir %{_datadir}/alsa/speaker-test
|
|
|
|
%{_datadir}/alsa/speaker-test/*
|
2005-09-27 15:31:22 +00:00
|
|
|
/usr/share/locale/*
|
2004-09-09 02:55:32 +00:00
|
|
|
|
|
|
|
%changelog
|
2007-07-25 10:45:00 +00:00
|
|
|
* Wed Jul 25 2007 Martin Stransky <stransky@redhat.com> 1.0.14-1
|
|
|
|
- release bump
|
|
|
|
|
2007-06-07 10:18:41 +00:00
|
|
|
* Thu Jun 7 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.8
|
|
|
|
- new upstream
|
|
|
|
|
2007-05-30 13:22:33 +00:00
|
|
|
* Wed May 30 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.7.rc2
|
|
|
|
- updated alsanumute for Siemens Lifebook S7020 (#241639)
|
|
|
|
- unmute Master Mono for all drivers
|
|
|
|
|
2007-05-02 12:49:40 +00:00
|
|
|
* Wed May 2 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.6.rc2
|
|
|
|
- added fix for #238442 (unmute Mono channel for w4550,
|
|
|
|
xw4600, xw6600, and xw8600)
|
|
|
|
|
2007-04-18 12:28:22 +00:00
|
|
|
* Wed Apr 18 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.5.rc2
|
|
|
|
- added more funcionality to salsa (save/load sound settings),
|
|
|
|
moved volume settings to /etc/alsa/
|
|
|
|
|
2007-04-10 11:22:40 +00:00
|
|
|
* Thu Apr 10 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.4.rc2
|
|
|
|
- added support for large files
|
|
|
|
- minor fix in alsaunmute
|
|
|
|
- fixed #209239 - alsaconf: Stale language-dependent files
|
2007-04-10 11:58:19 +00:00
|
|
|
- fixed #233765 - alsa-utils : unowned directories
|
2007-04-10 11:22:40 +00:00
|
|
|
|
2007-01-19 13:07:15 +00:00
|
|
|
* Fri Jan 19 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.3.rc2
|
|
|
|
- new upstream
|
|
|
|
|
2007-01-10 10:24:44 +00:00
|
|
|
* Wed Jan 10 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.2.rc1
|
|
|
|
- added a config line for hda-intel driver
|
|
|
|
|
2006-12-11 22:12:08 +00:00
|
|
|
* Mon Dec 11 2006 Martin Stransky <stransky@redhat.com> 1.0.14-0.1.rc1
|
|
|
|
- new upstream
|
|
|
|
|
2006-10-02 08:15:39 +00:00
|
|
|
* Mon Oct 2 2006 Martin Stransky <stransky@redhat.com> 1.0.12-3
|
|
|
|
- fix for #207384 - Audio test fails during firstboot
|
|
|
|
|
2006-08-25 10:47:56 +00:00
|
|
|
* Fri Aug 25 2006 Martin Stransky <stransky@redhat.com> 1.0.12-2
|
|
|
|
- new upstream
|
|
|
|
|
2006-08-07 12:49:58 +00:00
|
|
|
* Mon Aug 07 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc2
|
|
|
|
- new upstream
|
|
|
|
|
2006-07-20 13:36:29 +00:00
|
|
|
* Thu Jul 20 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc1
|
|
|
|
- new upstream
|
|
|
|
|
2006-07-12 05:08:17 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - sh: line 0: fg: no job control
|
|
|
|
- rebuild
|
|
|
|
|
2006-05-30 08:04:46 +00:00
|
|
|
* Tue May 30 2006 Martin Stransky <stransky@redhat.com> 1.0.11-7
|
|
|
|
- new upstream
|
|
|
|
|
2006-05-03 08:46:12 +00:00
|
|
|
* Wed May 3 2006 Martin Stransky <stransky@redhat.com> 1.0.11-6.rc2
|
|
|
|
- removed HW specific switch - it should be set by driver
|
|
|
|
|
2006-04-06 09:00:49 +00:00
|
|
|
* Thu Apr 6 2006 Martin Stransky <stransky@redhat.com> 1.0.11-5.rc2
|
2006-03-24 09:57:50 +00:00
|
|
|
- fixed rules file (#186494)
|
2006-04-06 08:52:39 +00:00
|
|
|
- fixed Audigi mixer switch (#187807)
|
2006-03-24 09:57:50 +00:00
|
|
|
|
2006-02-20 16:44:06 +00:00
|
|
|
* Mon Feb 20 2006 Martin Stransky <stransky@redhat.com> 1.0.11-3.rc2
|
|
|
|
- removed autoreconf
|
|
|
|
|
2006-02-11 01:34:47 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-2.rc2.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 10:52:22 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-2.rc2.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-01-25 09:53:26 +00:00
|
|
|
* Wed Jan 25 2006 Martin Stransky <stransky@redhat.com> 1.0.11-2.rc2
|
|
|
|
- added volume option to alsaunmute utility (for s-c-s)
|
|
|
|
|
2006-01-12 14:17:30 +00:00
|
|
|
* Thu Jan 12 2006 Martin Stransky <stransky@redhat.com> 1.0.11-1.rc2
|
|
|
|
- new upstream
|
|
|
|
|
2005-12-09 22:39:33 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-11-24 13:47:29 +00:00
|
|
|
* Thu Nov 24 2005 Martin Stransky <stransky@redhat.com> 1.0.10rf-1
|
|
|
|
- new upstream version
|
2005-11-10 09:12:44 +00:00
|
|
|
- added alias for snd-azx
|
|
|
|
|
2005-11-09 13:25:58 +00:00
|
|
|
* Wed Nov 9 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-2
|
|
|
|
- fix for #169292 - RHEL4U2 xw4300 IntelHD internal speakers muted by default
|
|
|
|
|
2005-09-27 15:31:22 +00:00
|
|
|
* Tue Sep 27 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-1
|
|
|
|
- new upstream version
|
|
|
|
|
2005-08-23 10:51:22 +00:00
|
|
|
* Tue Aug 23 2005 Martin Stransky <stransky@redhat.com> 1.0.9-5
|
|
|
|
- unmute External Amplifier by default (#166153)
|
|
|
|
|
2005-07-13 19:03:02 +00:00
|
|
|
* Wed Jul 13 2005 Bill Nottingham <notting@redhat.com> 1.0.9-4
|
|
|
|
- migrate the alsa restore program to a udev rule, not a dev.d program
|
|
|
|
- conflict with appropriate udev
|
2005-07-21 14:45:20 +00:00
|
|
|
- move alsaunmute, alsacard to /bin
|
2005-07-13 19:03:02 +00:00
|
|
|
|
|
|
|
* Mon Jul 11 2005 Martin Stransky <stransky@redhat.com> 1.0.9-3
|
2005-07-11 13:11:40 +00:00
|
|
|
- New alsaunmute utility
|
|
|
|
- Add autoconf to BuildRequires (#162483)
|
|
|
|
|
2005-06-16 09:39:07 +00:00
|
|
|
* Thu Jun 16 2005 Martin Stransky <stransky@redhat.com> 1.0.9-2
|
|
|
|
- New upstream version
|
|
|
|
|
2005-05-30 15:41:45 +00:00
|
|
|
* Mon May 30 2005 Martin Stransky <stransky@redhat.com> 1.0.9-1
|
|
|
|
- New upstream version.
|
|
|
|
- moved alsacard utility from alsa-lib to alsa-tools
|
|
|
|
|
2005-05-16 20:44:56 +00:00
|
|
|
* Mon May 16 2005 Bill Nottingham <notting@redhat.com> 1.0.9rc2-2
|
|
|
|
- make sure 'Wave' playback channel isn't muted (#157850)
|
|
|
|
|
2005-04-25 10:39:04 +00:00
|
|
|
* Mon Apr 25 2005 Martin Stransky <stransky@redhat.com> 1.0.9rc2-1
|
|
|
|
- New upstream version
|
|
|
|
- add %find_lang macro (#155719)
|
|
|
|
|
2005-04-01 22:25:04 +00:00
|
|
|
* Fri Apr 1 2005 Bill Nottingham <notting@redhat.com> 1.0.8-4
|
|
|
|
- replace the dev.d script with a program that calls alsactl to
|
|
|
|
restore the volume if there is a saved config, and just unmutes
|
|
|
|
the playback channels if there isn't one (#132575)
|
|
|
|
|
2005-03-07 14:24:27 +00:00
|
|
|
* Mon Mar 7 2005 Martin Stransky <stransky@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Feb 16 2005 Martin Stransky <stransky@redhat.com> 1.0.8-2
|
2005-02-16 13:09:09 +00:00
|
|
|
- fix #148011 (add gettext-devel to BuildRequires)
|
|
|
|
- add $RPM_OPT_FLAGS to CFLAGS
|
|
|
|
|
2005-01-26 13:23:17 +00:00
|
|
|
* Wed Jan 26 2005 Martin Stransky <stransky@redhat.com> 1.0.8-1
|
|
|
|
- update to 1.0.8
|
|
|
|
- temporarily removed alsa-lauch.patch
|
|
|
|
|
2005-01-08 06:18:20 +00:00
|
|
|
* Sat Jan 08 2005 Colin Walters <walters@redhat.com> 1.0.7-2
|
|
|
|
- New patch alsa-utils-1.0.7-alsa-launch.patch, adds the
|
|
|
|
alsa-launch command.
|
|
|
|
- New source file xinit-alsa-launch.sh, integrates alsa-launch
|
|
|
|
into X startup
|
|
|
|
- BR xorg-x11-devel
|
|
|
|
|
2005-01-06 18:07:16 +00:00
|
|
|
* Thu Jan 06 2005 Colin Walters <walters@redhat.com> 1.0.7-1
|
|
|
|
- New upstream version
|
|
|
|
|
2004-10-20 03:11:19 +00:00
|
|
|
* Tue Oct 19 2004 Bill Nottingham <notting@redhat.com> 1.0.6-3
|
|
|
|
- tweak dev.d sound restore script (#133535, revisited)
|
|
|
|
|
2004-10-14 21:58:30 +00:00
|
|
|
* Thu Oct 14 2004 Bill Nottingham <notting@redhat.com> 1.0.6-2
|
|
|
|
- move alsactl to /sbin
|
|
|
|
- include a dev.d script for mixer restoring (#133535)
|
|
|
|
|
2004-09-09 02:57:16 +00:00
|
|
|
* Mon Aug 30 2004 Bill Nottingham <notting@redhat.com> 1.0.6-1
|
|
|
|
- update to 1.0.6
|
|
|
|
|
2004-09-09 02:57:13 +00:00
|
|
|
* Fri Jul 2 2004 Bill Nottingham <notting@redhat.com> 1.0.5-1
|
|
|
|
- update to 1.0.5
|
|
|
|
|
2004-09-09 02:56:49 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 02:56:47 +00:00
|
|
|
* Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> 1.0.3-1
|
|
|
|
- update to 1.0.3
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 1.0.2-1
|
|
|
|
- update to 1.0.2
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Wed Dec 17 2003 Bill Nottingham <notting@redhat.com> 1.0.0-0.rc2
|
|
|
|
- import fedora.us RPM, take out save-alsamixer & alsaconf for now
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Thu Dec 11 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.4.rc2
|
|
|
|
- rename alsamixer-saver save-alsamixer
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Mon Dec 8 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.3.rc2
|
|
|
|
- Integrate Michael Schwendt's script alsamixer-saver; Still not quite sure if
|
|
|
|
this script is the right way -- but mine didn't work...
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Sat Dec 6 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.2.rc2
|
|
|
|
- Update to 1.0.0rc2
|
|
|
|
- added alsamixer Script -- stores settings on shutdown, does nothing on startup
|
|
|
|
- some minor corrections in spec-file style
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Wed Dec 3 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.1.rc1
|
|
|
|
- Update to 1.0.0rc1
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Wed Aug 6 2003 Dams <anvil[AT]livna.org> 0:utils-0.fdr.1
|
|
|
|
- Initial build.
|