diff options
author | 2005-11-08 18:22:45 +0000 | |
---|---|---|
committer | 2005-11-08 18:22:45 +0000 | |
commit | 310745fbd6f9469f130c7d509f232b7e7cb59efc (patch) | |
tree | 23a09d706492fbc10e50b9d0406f7a0f43d379c6 /media-sound | |
parent | Removed explicit dependencies on libc and wget since these two are in the sys... (diff) | |
download | historical-310745fbd6f9469f130c7d509f232b7e7cb59efc.tar.gz historical-310745fbd6f9469f130c7d509f232b7e7cb59efc.tar.bz2 historical-310745fbd6f9469f130c7d509f232b7e7cb59efc.zip |
Fixed missing -E option to grep. Closes bug #84412.
Package-Manager: portage-2.0.53_rc7
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/aumix/Manifest | 12 | ||||
-rw-r--r-- | media-sound/aumix/files/aumix.rc6 | 5 |
2 files changed, 8 insertions, 9 deletions
diff --git a/media-sound/aumix/Manifest b/media-sound/aumix/Manifest index f828ee463106..fd212ea12782 100644 --- a/media-sound/aumix/Manifest +++ b/media-sound/aumix/Manifest @@ -3,18 +3,18 @@ Hash: SHA1 MD5 cb709e469cc3b60af59e1a8ffa21a8b8 ChangeLog 5981 MD5 92391e16e18a77102b7975e5dc1ce49d aumix-2.8-r2.ebuild 1848 -MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158 MD5 00da88dc336799f1385f518dd005dd5a files/aumix-2.8-close-dialogs.patch 613 MD5 a685fd4f0649bfb0c7fd4860eda0caa7 files/aumix-2.8-nls.patch 829 MD5 6c8d691beb495257d8309e58c127acd2 files/aumix-2.8-nohome.patch 529 MD5 221509621be1606c1a61dfc8fcd4991e files/aumix-2.8-save_load.patch 1331 MD5 f39abfbf49ff4a33e109eeb14a4325c2 files/aumix.desktop 124 -MD5 a1f578192b59b3535a982ff7dd9e2643 files/aumix.rc6 1151 +MD5 1ddf032a74e8441c64775370c1b446bd files/aumix.rc6 1155 MD5 857a1fe260905ab09b7befd877affafd files/digest-aumix-2.8-r2 62 +MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158 -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) +Version: GnuPG v1.4.2 (GNU/Linux) -iD8DBQFCzYSPArHZZzCEUG0RAhIbAJ44pZmpkO12MwWZuaHnBqFSbhEA/ACdHgsj -BlNO1k9OpqMwxkzHcbmrPbk= -=4iYi +iD8DBQFDcO0BOpjtAl+gMRURAuO9AJ4x63qBZb6NmvMZw5yeUVSsNgcm7QCgnqc+ +1gmltxYQc41LjbdOBpeW5Bw= +=Iver -----END PGP SIGNATURE----- diff --git a/media-sound/aumix/files/aumix.rc6 b/media-sound/aumix/files/aumix.rc6 index 21430103ec8a..11562dc47eb7 100644 --- a/media-sound/aumix/files/aumix.rc6 +++ b/media-sound/aumix/files/aumix.rc6 @@ -1,15 +1,14 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/files/aumix.rc6,v 1.10 2005/07/07 19:36:39 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/files/aumix.rc6,v 1.11 2005/11/08 18:22:45 eradicator Exp $ depend() { use modules hotplug coldplug alsasound } checkconfig() { - if ! grep -q 'sound|OSS|sparcaudio' /proc/devices && [[ ! -d /proc/asound ]] - then + if ! grep -q -E 'sound|OSS|sparcaudio' /proc/devices && [[ ! -d /proc/asound ]] ; then eerror "Sound support has not been compiled into the kernel," eerror "or is disabled. Please check that the correct modules" eerror "is loaded." |