Re: Dead projects in ports tree

2009-03-03 Thread Garrett Cooper
On Mon, Mar 2, 2009 at 3:34 PM, Paul Schmehl pschmehl_li...@tx.rr.com wrote: --On Monday, March 02, 2009 16:36:38 -0600 David E. Thiel l...@freebsd.org wrote: While I'm in favor of removing useless ports, there are several projects which are simply done, and lack of development doesn't mean

Re: Dead projects in ports tree

2009-03-03 Thread Andrew W. Nosenko
On Tue, Mar 3, 2009 at 10:26 AM, Garrett Cooper yanef...@gmail.com wrote: On Mon, Mar 2, 2009 at 3:34 PM, Paul Schmehl pschmehl_li...@tx.rr.com wrote: I completely agree. So long as a port is being used and people find it useful, I think it would be a mistake to remove those ports. In fact I

Re: Dead projects in ports tree

2009-03-03 Thread Renato Botelho
On Mon, Mar 2, 2009 at 7:36 PM, David E. Thiel l...@freebsd.org wrote: On Sat, Feb 28, 2009 at 04:05:56PM -0800, Garrett Cooper wrote: multimedia/openquicktime - no movement in CVS / SVN for 1+ years; no releases in the past 3 years    I'll continue posting more items to this thread as I

Configuring 'RUN_DEPENDS'

2009-03-03 Thread Jerry
A port I am creating has a RUN_DEPENDS of either 'curl' or 'wget'. I have tried several times to write some sort of test in the make file to determine if one or the other were installed, and if neither then to install 'curl'. I suppose I could create an OPTIONS to install one or the other;

Re: Dead projects in ports tree

2009-03-03 Thread Mark Linimon
On Tue, Mar 03, 2009 at 11:40:42AM +0200, Andrew W. Nosenko wrote: Frankly, I would glad to see absolutely another discussion: not about dropping software that works (and as far as I understand, which port is maintained), but about making needed but broken software work again (e.g. valgrind,

Re: Configuring 'RUN_DEPENDS'

2009-03-03 Thread Wesley Shields
On Tue, Mar 03, 2009 at 07:29:36AM -0500, Jerry wrote: A port I am creating has a RUN_DEPENDS of either 'curl' or 'wget'. I have tried several times to write some sort of test in the make file to determine if one or the other were installed, and if neither then to install 'curl'. I suppose I

Re: Configuring 'RUN_DEPENDS'

2009-03-03 Thread Dmitry Marakasov
* Jerry (ges...@yahoo.com) wrote: A port I am creating has a RUN_DEPENDS of either 'curl' or 'wget'. I have tried several times to write some sort of test in the make file to determine if one or the other were installed, and if neither then to install 'curl'. I suppose I could create an

Re: Configuring 'RUN_DEPENDS'

2009-03-03 Thread Jerry
On Tue, 3 Mar 2009 09:55:27 -0500 Wesley Shields w...@freebsd.org wrote: Can you post your Makefile so we can get a better understanding of what you're trying to do. The Makefile is available here: http://seibercom.net/logs/Makefile That is what I have so far. As written, it works. However, I

Re: Configuring 'RUN_DEPENDS'

2009-03-03 Thread Jerry
On Tue, 3 Mar 2009 18:37:39 +0300 Dmitry Marakasov amd...@amdmi3.ru wrote: [snip] The port will also require Clamav, either the standard port or the devel one. Therefore I have two run dependencies to adjust. No, you don't. clamav and clamav-devel are conflicting ports that install the same

Re: restart a script in etc/rc.d

2009-03-03 Thread Doug Barton
Oliver Lehmann wrote: Doug Barton wrote: Artis Caune wrote: There is logic error in bacula rc.d script. It should first set default variables and only then use them. pidfile=${bacula_fd_pidfile} : ${bacula_fd_pidfile=/var/run/bacula-fd.9102.pid} If you don't set pidfile in

Re: firefox and anti aliased printouts

2009-03-03 Thread Christian Weisgerber
Oliver Lehmann lehm...@ans-netz.de wrote: I don't know when this first occured (maybe when switching from firefox 2 to 3) but all the printouts I'm doing from a webpage have their fonts displayed extremly grainy. It is hard to read anything on the printout. Any idea how I can get my firefox

Re: Configuring 'RUN_DEPENDS'

2009-03-03 Thread Dmitry Marakasov
* Jerry (ges...@yahoo.com) wrote: No, you don't. clamav and clamav-devel are conflicting ports that install the same files, so should you depend on clamav as RUN_DEPENDS= clamscan:${PORTSDIR}/security/clamav or LIB_DEPENDS= clamav:${PORTSDIR}/security/clamav OK, I understand what you

Re: Dead projects in ports tree

2009-03-03 Thread Jeremy Messenger
On Sat, 28 Feb 2009 17:09:04 -0600, Garrett Cooper yanef...@gmail.com wrote: Just trying to amass cruft in the ports tree that could be marked deprecated and removed. Some assistance in amassing the list would be helpful... multimedia/openquicktime - no movement in CVS / SVN for 1+

Xfce 4.6 - what changes are needed?

2009-03-03 Thread Torfinn Ingolfsen
Hello, OK, so now Xfce 4.6 is in our ports tree. Great job. But - some things are not working like they used to, and there is no entry in /usr/ports/UPDATING. Are there any documentation elsewhere that describes what changes are needed to get this working again? When I did 'startxfce4' after the

SDL / Pulseaudio

2009-03-03 Thread Andre Heider
Hi list, devel/sdl12 doesn't pick up pulseaudio, no matter if I select it in make config or not. I didn't find the time to dig further, but I noticed 2 bits: - the dependency to libpulse-simple.so.0 isn't set in the Makefile - if I run ./configure without args, it correctly finds the lib and

Re: Xfce 4.6 - what changes are needed?

2009-03-03 Thread Rene Ladan
Torfinn Ingolfsen schreef: Hello, OK, so now Xfce 4.6 is in our ports tree. Great job. [...] And the cpugraph plugin crashes (signal 11) when you try to add it to the panel, is somebody working on a fix? I send a bug report [1] for the cpugraph plugin to the upstream authors, but I haven't

Re: Xfce 4.6 - what changes are needed?

2009-03-03 Thread Carl Johan Gustavsson
Torfinn Ingolfsen wrote: Hello, OK, so now Xfce 4.6 is in our ports tree. Great job. But - some things are not working like they used to, and there is no entry in /usr/ports/UPDATING. Are there any documentation elsewhere that describes what changes are needed to get this working again? When I

Re: Configuring 'RUN_DEPENDS'

2009-03-03 Thread Jerry
On Tue, 3 Mar 2009 20:47:15 +0300 Dmitry Marakasov amd...@amdmi3.ru wrote: As far as I understand, that won't work with clamav-devel. RUN_DEPENDS= clamav=0.94.2:${PORTSDIR}/security/clamav makes a port depend not on installed file but on specific package, so clamav-devel will likely not match

Re: SDL / Pulseaudio

2009-03-03 Thread Marcus von Appen
On, Tue Mar 03, 2009, Andre Heider wrote: Hi list, devel/sdl12 doesn't pick up pulseaudio, no matter if I select it in make config or not. I didn't find the time to dig further, but I noticed 2 bits: - the dependency to libpulse-simple.so.0 isn't set in the Makefile I missed that one,

Re: SDL / Pulseaudio

2009-03-03 Thread Andre Heider
On Wed, Mar 4, 2009 at 12:24 AM, Marcus von Appen m...@freebsd.org wrote: On, Tue Mar 03, 2009, Andre Heider wrote: Hi list, devel/sdl12 doesn't pick up pulseaudio, no matter if I select it in make config or not. I didn't find the time to dig further, but I noticed 2 bits: - the dependency

[PATCH] python25 broken on current

2009-03-03 Thread Giorgos Keramidas
The lang/python25 port fails to build on CURRENT from: FreeBSD 8.0-CURRENT #0: Sun Mar 1 09:36:35 EET 2009 bu...@kobe:/usr/obj/usr/src/sys/KOBE Apparently, the `configure.in' script of Python is missing a header file in one of the custom check programs, which I could work around by patching

Re: Configuring 'RUN_DEPENDS'

2009-03-03 Thread Wesley Shields
On Tue, Mar 03, 2009 at 05:38:14PM -0500, Jerry wrote: On Tue, 3 Mar 2009 20:47:15 +0300 Dmitry Marakasov amd...@amdmi3.ru wrote: As far as I understand, that won't work with clamav-devel. RUN_DEPENDS= clamav=0.94.2:${PORTSDIR}/security/clamav makes a port depend not on installed file but

Re: [PATCH] python25 broken on current

2009-03-03 Thread Giorgos Keramidas
On Wed, 04 Mar 2009 04:28:24 +0200, Giorgos Keramidas keram...@freebsd.org wrote: The lang/python25 port fails to build on CURRENT from: FreeBSD 8.0-CURRENT #0: Sun Mar 1 09:36:35 EET 2009 bu...@kobe:/usr/obj/usr/src/sys/KOBE Apparently, the `configure.in' script of Python is missing a

Configure fails for open-vm-tools

2009-03-03 Thread Josh Rickmar
I'm getting this error when trying to build the latest open-vm-tools ports: configure: error: uriparser library not found or is too old. Please configure without Unity (using --disable-unity) or install the liburiparser devel package. I still get the same error after installing the uriparser

Re: Xfce 4.6 - what changes are needed?

2009-03-03 Thread Oliver Lehmann
Hi Torfinn, Torfinn Ingolfsen wrote: When I did 'startxfce4' after the upgrade, all my icons in the panel was gone. I had to add them manually. Is that how it should be? Unfortunally yes - I told them quite some times before the final release and all the xfce guys told me was use another icon

Re: Xfce 4.6 - what changes are needed?

2009-03-03 Thread Oliver Lehmann
Oliver Lehmann wrote: Hi Torfinn, Torfinn Ingolfsen wrote: When I did 'startxfce4' after the upgrade, all my icons in the panel was gone. I had to add them manually. Is that how it should be? Unfortunally yes - I told them quite some times before the final release and all the xfce

Re: FreeBSD Port: ktorrent-3.1.6_1

2009-03-03 Thread Jonathan
Does anyone have any ideas of what to look into? I'm about to decide Wine+uTorrent would be an easier route than trying to get ktorrent to work decently. I've tried ktrace again but all I seem to find in it are reads, and a ~1 second ktrace is 4MB. Jonathan Jonathan wrote: Nikolay Tychina