diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-05-19 02:39:15 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-05-19 02:39:15 +0000 |
commit | 90dad74385814b2e63d8841ae6a6f3ec8af0f7a8 (patch) | |
tree | 31259d86bc7f2c3f7ddde3a018c7b6e7d9ae7256 /media-sound | |
parent | depends made optional with doc USE (diff) | |
download | historical-90dad74385814b2e63d8841ae6a6f3ec8af0f7a8.tar.gz historical-90dad74385814b2e63d8841ae6a6f3ec8af0f7a8.tar.bz2 historical-90dad74385814b2e63d8841ae6a6f3ec8af0f7a8.zip |
support for OSS
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/aumix/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/aumix/Manifest | 7 | ||||
-rw-r--r-- | media-sound/aumix/files/aumix.rc6 | 4 |
3 files changed, 14 insertions, 3 deletions
diff --git a/media-sound/aumix/ChangeLog b/media-sound/aumix/ChangeLog index 85c52a7ec92a..cde6a0b074ea 100644 --- a/media-sound/aumix/ChangeLog +++ b/media-sound/aumix/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/aumix # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/ChangeLog,v 1.9 2003/02/12 07:24:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/ChangeLog,v 1.10 2003/05/19 02:39:11 seemant Exp $ + + 18 May 2003; Seemant Kulleen <seemant@gentoo.org> files/aumix.rc6: + Added support for OSS detection in the initscript. Thanks to: Jarkko + Haapalainen <dragon@opp.ysao.fi> in bug #20691 *aumix-2.8 (16 Dec 2002) diff --git a/media-sound/aumix/Manifest b/media-sound/aumix/Manifest new file mode 100644 index 000000000000..ab81acdd1bce --- /dev/null +++ b/media-sound/aumix/Manifest @@ -0,0 +1,7 @@ +MD5 05bd9079fa86b4b9855b02ceea41b7e5 aumix-2.8.ebuild 1372 +MD5 48ef5c0b9712085a65e1bd23ba88a977 aumix-2.7-r4.ebuild 1240 +MD5 8300b217b6ed2b55c13908202907962b ChangeLog 1660 +MD5 857a1fe260905ab09b7befd877affafd files/digest-aumix-2.8 62 +MD5 f39abfbf49ff4a33e109eeb14a4325c2 files/aumix.desktop 124 +MD5 a5a819c8a63eb3433b5532ba487a888a files/aumix.rc6 1138 +MD5 e4d29edb4b7c339ca310738a7e9dd174 files/digest-aumix-2.7-r4 61 diff --git a/media-sound/aumix/files/aumix.rc6 b/media-sound/aumix/files/aumix.rc6 index 09b23ac05ac3..fa05f8aba5d3 100644 --- a/media-sound/aumix/files/aumix.rc6 +++ b/media-sound/aumix/files/aumix.rc6 @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/files/aumix.rc6,v 1.3 2003/02/14 22:56:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/files/aumix.rc6,v 1.4 2003/05/19 02:39:11 seemant Exp $ depend() { need modules @@ -9,7 +9,7 @@ depend() { } checkconfig() { - if [ -z "`grep 'sound' /proc/devices`" ] && [ ! -d /proc/asound ] + if [ -z "`egrep 'sound|OSS' /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" |