Re: Convert mp3 to audio CD

2012-03-21 Thread Polytropon
On Tue, 20 Mar 2012 23:10:16 -0400, Steve Bertrand wrote: I know this is a backwards request, as I haven't had to go from mp3 to audio CD format in at least 10 years, but I do now. What is available to do so? This script, ugly as hell, but works. :-) You need to install madplay or mpg123,

Re: Convert mp3 to audio CD

2012-03-21 Thread Da Rock
On 03/21/12 13:10, Steve Bertrand wrote: I know this is a backwards request, as I haven't had to go from mp3 to audio CD format in at least 10 years, but I do now. What is available to do so? There is something in ports to do this - don't ask me which, but I noticed it in there recently :) It

Re: dbus, epiphany, rekonq

2012-03-21 Thread Anton Shterenlikht
On Wed, Mar 21, 2012 at 04:12:50AM +0100, Bernt Hansson wrote: 2012-03-19 13:21, Anton Shterenlikht skrev: I can't lauch www/epiphany or www/rekonq on ia64 -current, due to some dbus issue: TZAV ps ax|grep dbus 1435 - Is 0:00.02 /usr/local/bin/dbus-daemon --fork --print-pid 5

Re: dbus, epiphany, rekonq

2012-03-21 Thread Polytropon
On Wed, 21 Mar 2012 09:29:09 +, Anton Shterenlikht wrote: On Wed, Mar 21, 2012 at 04:12:50AM +0100, Bernt Hansson wrote: You do have this in /etc/rc.conf dbus_enable=YES I didn't think it was necessary, as firefox3 launches dbus-daemon on startup. But I'll give it a go. I think

Re: Convert mp3 to audio CD

2012-03-21 Thread Rod Person
On Tue, 20 Mar 2012 23:10:16 -0400 Steve Bertrand steve.bertr...@gmail.com wrote: I know this is a backwards request, as I haven't had to go from mp3 to audio CD format in at least 10 years, but I do now. What is available to do so? Basically the same as other, but just using lame to

Re: Convert mp3 to audio CD

2012-03-21 Thread Polytropon
On Wed, 21 Mar 2012 07:07:40 -0400, Rod Person wrote: On Tue, 20 Mar 2012 23:10:16 -0400 Steve Bertrand steve.bertr...@gmail.com wrote: I know this is a backwards request, as I haven't had to go from mp3 to audio CD format in at least 10 years, but I do now. What is available to do

Re: Convert mp3 to audio CD

2012-03-21 Thread Rod Person
On Wed, 21 Mar 2012 12:16:24 +0100 Polytropon free...@edvax.de wrote: On Wed, 21 Mar 2012 07:07:40 -0400, Rod Person wrote: On Tue, 20 Mar 2012 23:10:16 -0400 Steve Bertrand steve.bertr...@gmail.com wrote: I know this is a backwards request, as I haven't had to go from mp3 to audio

Re: Convert mp3 to audio CD

2012-03-21 Thread Polytropon
On Wed, 21 Mar 2012 07:25:11 -0400, Rod Person wrote: On Wed, 21 Mar 2012 12:16:24 +0100 Polytropon free...@edvax.de wrote: On Wed, 21 Mar 2012 07:07:40 -0400, Rod Person wrote: On Tue, 20 Mar 2012 23:10:16 -0400 Steve Bertrand steve.bertr...@gmail.com wrote: I know this is a

Re: dbus, epiphany, rekonq

2012-03-21 Thread Da Rock
On 03/21/12 19:29, Anton Shterenlikht wrote: On Wed, Mar 21, 2012 at 04:12:50AM +0100, Bernt Hansson wrote: 2012-03-19 13:21, Anton Shterenlikht skrev: I can't lauch www/epiphany or www/rekonq on ia64 -current, due to some dbus issue: TZAV ps ax|grep dbus 1435 - Is 0:00.02

Freebsd9.0 and the fgets directive in gcc

2012-03-21 Thread Martin McCormick
I've got some code which I wrote about 6 or 8 years ago that apparently doesn't get along right now with FreeBSD9.0. In the problem code, there is a loop that uses fgets to read a line from a file. It runs properly until the 2708TH iteration and then it dumps core with a segmentation fault. char

Re: dbus, epiphany, rekonq

2012-03-21 Thread Anton Shterenlikht
On Wed, Mar 21, 2012 at 10:51:23AM +0100, Polytropon wrote: On Wed, 21 Mar 2012 09:29:09 +, Anton Shterenlikht wrote: On Wed, Mar 21, 2012 at 04:12:50AM +0100, Bernt Hansson wrote: You do have this in /etc/rc.conf dbus_enable=YES I didn't think it was necessary, as firefox3

Re: dbus, epiphany, rekonq

2012-03-21 Thread Bernt Hansson
2012-03-21 10:29, Anton Shterenlikht skrev: On Wed, Mar 21, 2012 at 04:12:50AM +0100, Bernt Hansson wrote: 2012-03-19 13:21, Anton Shterenlikht skrev: I can't lauch www/epiphany or www/rekonq on ia64 -current, due to some dbus issue: TZAV ps ax|grep dbus 1435 - Is 0:00.02

Re: Freebsd9.0 and the fgets directive in gcc

2012-03-21 Thread Martin McCormick
Never mind. I may be back with another question, but I figured out that it is not the input loop. I simply removed all the code in the loop except for a variable that counts the number of iterations and just ran thatand it read the entire file so the problem is introduced when assigning values to

Freebsd9.0 and the fgets directive in gcc

2012-03-21 Thread Robert Huff
Martin McCormick writes: I've got some code which I wrote about 6 or 8 years ago that apparently doesn't get along right now with FreeBSD9.0. In the problem code, there is a loop that uses fgets to read a line from a file. It runs properly until the 2708TH iteration and then it dumps

Re: Freebsd9.0 and the fgets directive in gcc

2012-03-21 Thread Brad Mettee
On 3/21/2012 10:50 AM, Martin McCormick wrote: I've got some code which I wrote about 6 or 8 years ago that apparently doesn't get along right now with FreeBSD9.0. In the problem code, there is a loop that uses fgets to read a line from a file. It runs properly until the 2708TH iteration and

Re: Freebsd9.0 and the fgets directive in gcc

2012-03-21 Thread Erich Dollansky
Hi, On Wednesday 21 March 2012 21:50:25 Martin McCormick wrote: I've got some code which I wrote about 6 or 8 years ago that apparently doesn't get along right now with FreeBSD9.0. In the problem code, there is a loop that uses fgets to read a line from a file. It runs properly until the

Re: dbus, epiphany, rekonq

2012-03-21 Thread Bernt Hansson
2012-03-21 16:18, Anton Shterenlikht skrev: On Wed, Mar 21, 2012 at 10:51:23AM +0100, Polytropon wrote: On Wed, 21 Mar 2012 09:29:09 +, Anton Shterenlikht wrote: On Wed, Mar 21, 2012 at 04:12:50AM +0100, Bernt Hansson wrote: You do have this in /etc/rc.conf dbus_enable=YES I didn't

Find run-time dependancies recursively for FreeBSD port

2012-03-21 Thread Rick Miller
Hi all, I can get run-time depends by executing make run-depends-list or all dependancies by running make all-depends-list. Is there a way to get all run-time depends recursively (I don't need the build depends or their depends)? -- Take care Rick Miller

Re: Find run-time dependancies recursively for FreeBSD port

2012-03-21 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 3/21/12 12:51 PM, Rick Miller wrote: Hi all, I can get run-time depends by executing make run-depends-list or all dependancies by running make all-depends-list. Is there a way to get all run-time depends recursively (I don't need the build

Re: Find run-time dependancies recursively for FreeBSD port

2012-03-21 Thread Rick Miller
Thanks Greg, I just found the following link in the list archives which gave me an idea that I am currently working on... http://osdir.com/ml/freebsd-questions/2009-04/msg00929.html On Wed, Mar 21, 2012 at 1:15 PM, Greg Larkin glar...@freebsd.org wrote: -BEGIN PGP SIGNED MESSAGE-

Re: Find run-time dependancies recursively for FreeBSD port

2012-03-21 Thread Matthew Seaman
On 21/03/2012 16:51, Rick Miller wrote: I can get run-time depends by executing make run-depends-list or all dependancies by running make all-depends-list. Is there a way to get all run-time depends recursively (I don't need the build depends or their depends)? If your INDEX is up to date:

Re: Find run-time dependancies recursively for FreeBSD port

2012-03-21 Thread Rick Miller
Thanks Matthew... On Wed, Mar 21, 2012 at 2:35 PM, Matthew Seaman m.sea...@infracaninophile.co.uk wrote: On 21/03/2012 16:51, Rick Miller wrote: I can get run-time depends by executing make run-depends-list or all dependancies by running make all-depends-list.  Is there a way to get all

port2

2012-03-21 Thread r p
___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: Find run-time dependancies recursively for FreeBSD port

2012-03-21 Thread Matthew Seaman
On 21/03/2012 19:10, Rick Miller wrote: Thanks Matthew... On Wed, Mar 21, 2012 at 2:35 PM, Matthew Seaman m.sea...@infracaninophile.co.uk wrote: On 21/03/2012 16:51, Rick Miller wrote: I can get run-time depends by executing make run-depends-list or all dependancies by running make

Re: Find run-time dependancies recursively for FreeBSD port

2012-03-21 Thread Rick Miller
Yes it does. pebcak, thanks. -- Take care Rick Miller ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: Problem compiling emulators/virtualbox-ose-kmod 4.1.8_2

2012-03-21 Thread Lowell Gilbert
Mike Clarke jmc-freeb...@milibyte.co.uk writes: On Friday 16 March 2012, Lowell Gilbert wrote: My best advice is: clean out the directory for that port, update again, and see if the problem is the same. I've now deleted everything in /usr/ports/emulators/virtualbox-ose-kmod and downloaded

Re: Problem compiling emulators/virtualbox-ose-kmod 4.1.8_2

2012-03-21 Thread Mike Clarke
On Wednesday 21 March 2012, Lowell Gilbert wrote: /data1/tmp/usr/ports/emulators/virtualbox-ose-kmod/work/VirtualBox- 4.1.10/out/freebsd.x86/                                                                                        

Re: Problem compiling emulators/virtualbox-ose-kmod 4.1.8_2

2012-03-21 Thread Lowell Gilbert
Bernhard Froehlich de...@freebsd.org writes: Pointyhat has triggered the same compile error so it is real. Probably avg has a clue how to fix it. A (quick) look at pointyhat only shows me amd64 errors. My main build server (on amd64, building for i386 and amd64) doesn't see those problems,

Loan Offer...Apply Now

2012-03-21 Thread GE Capital Finance
Dear Email Owner, We are presently offering loans to interested persons at an affordable rate with the help and assistance from our banks.we offer secured loans to individuals and companies at low interest, and we offer long and short term loans. Our firm has recorded a lot of breakthroughs