xcdroast broken

Does everyone else get this error message while trying to run xcdroast? I have the latest port installed.

# pkg_info | grep xcdroast
xcdroast-0.98.a.16_4 Another X11 frontend to mkisofs/cdrecord

# xcdroast

** (xcdroast:83586): WARNING **: Invalid cdda2wav version -unknown- found.
Expecting at least version 2.01
Start xcdroast with the -n option to override (not recommended!)

# cdda2wav --version
cdda2wav 3.00 (amd64-unknown-freebsd8.0) Copyright (C) 1993-2004 Heiko Ei�feldt (C) 2004-2010 J�rg Schilling

Defaults: stereo, 16 bit, 44100.00 Hz, track 1, no offset, one track,
type: wav filename: 'audio', don't wait for signal, not quiet,
use: 'generic_scsi', device: 'yourSCSI_Bus,yourSCSI_ID,yourSCSI_LUN', aux: ''
 
I went here and noticed a patch: http://www.xcdroast.org/xcdr098/patches/

This is what I did to get xcdroast to work. I don't know if I did this right but xcdroast works now with no cdda2wav error.

# cd /usr/ports/sysutils/xcdroast && make
# cd /usr/ports/sysutils/xcdroast/work/xcdroast-0.98alpha16
# wget http://www.xcdroast.org/xcdr098/patches/cdda2wav_version.patch
# patch <cdda2wav_version.patch
Hmm... Looks like a unified diff to me...
The text leading up to this was:
--------------------------
|diff -urNad xcdroast-0.98+0alpha16~/src/io.c xcdroast-0.98+0alpha16/src/io.c
|--- xcdroast-0.98+0alpha16~/src/io.c 2008-08-21 15:11:40.000000000 +0200
|+++ xcdroast-0.98+0alpha16/src/io.c 2009-12-29 22:54:08.571188849 +0100
--------------------------
File to patch: src/io.c
Patching file src/io.c using Plan A...
Hunk #1 succeeded at 10062.
Hunk #2 succeeded at 10077.
done
# make install clean
 
Back
Top