Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 117320 - vsound-0.5 won't do output to STDOUT [with solution]
Summary: vsound-0.5 won't do output to STDOUT [with solution]
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Sound Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-12-31 21:31 UTC by michael higgins
Modified: 2007-03-12 04:26 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description michael higgins 2005-12-31 21:31:50 UTC
attempt to use vsound with the "-s" option invariably fails.

Found a patch online. Consists of changing one line, fourth from the end of the patch. I'll include below.

I can confirm that this works. I fixed the file by hand (so I don't know if this _patch_ will work), put it back in the tar.gz file, digested the ebuild and emerged as usual. Now it works.

- - - - 

--- vsound-0.5/vsound-ori	Thu Sep 12 19:45:34 2002
+++ vsound-0.5/vsound	Thu Sep 12 19:46:11 2002
@@ -21,6 +21,8 @@
 # along with this program; if not, write to the Free Software 
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
+#P20020912
+
 verbose=0
 keep_temps=0
 resamplerate=0
@@ -139,7 +141,7 @@
 
 export VSOUND_DATA=./vsound$$.au
 
-if [ "$verbose" ] && [ "$VSOUND_STDOUT" ]; then
+if [ "$verbose" = 1 ] && [ "$VSOUND_STDOUT" ]; then
 	echo "Error : cannot specify both --verbose and --stdout."
 	exit 1
 	fi
Comment 1 Ryan Hill (RETIRED) gentoo-dev 2007-03-12 04:26:23 UTC
Fixed in vsound-0.6-r1.  Thanks for the patch.