Re: issue with pkg_add

2010-10-20 Thread Florent Thoumie
On Wed, Oct 20, 2010 at 1:46 AM, Jason Helfman
 wrote:
>
> Hi,
>
> I believe I may have come across a potential bug in pkg_add, but wanted
> to write my findings out to see if anyone has seen this issue, or knows
> of something I may be doing wrong.
>
> I wrote a port that uses USERS/GROUPS functionality of ports.
>
> USERS=          user
> GROUPS=         user_work
> BINOWN=         user
> BINGRP=         user_work
> BINMODE=        4110
>
> These are the exec lines in my +CONTENTS file (assume one line for
> each exec, they were wrapped):
> @exec if ! /usr/sbin/pw groupshow user_work >/dev/null 2>&1;
> then /usr/sbin/pw groupadd user_work -g 999; fi
> @exec if ! /usr/sbin/pw usershow user >/dev/null 2>&1;
> then /usr/sbin/pw useradd user -u 999 -g 999  -c "user" -d /home/user
> -s /usr/sbin/nologin; fi
>
> I found that on my desktop with a ports tree installed that this port
> and package installed with no issue, however I found that if I tried to
> install the package in a jail with no ports tree and nothing installed
> that it failed with this error:
>
> pw: group `999' does not exist
> pkg_add: command 'if ! /usr/sbin/pw usershow user >/dev/null 2>&1; then 
> /usr/sbin/pw useradd user -u 999 -g 999  -c "user" -d /home/user -s 
> /usr/sbin/nologin; fi' failed

You may want to run pkg_add -v and see if the group is created
properly by the preceding @exec line and if not, why.

> I removed all remnants of the installation (these packages were all
> successful builds in Tinderbox), including installed users/groups. I
> copied my UIDs and GIDs files to an empty /usr/ports directory. So the
> only files under /usr/ports were UIDs and GIDs.
>
> With these files in place, I reran the pkg_add command on the port
> package I created and it installed the user and group with no issue,
> with correct permissions and modes on the files.
>
> With this testing, it appears that pkg_add is looking
> at /usr/ports/UIDs and /usr/ports/GIDs for information on installing a
> port package, even-though all of the information required for an
> installation appears to be in my port package.
>
> Has anyone run into this issue? Any assumptions I am making? Any flawed
> logic in testing?

I haven't tried to install packages in a jail lately but having
written the USERS/GROUPS logic in bsd.port.mk, the package shouldn't
need a ports tree to be installed properly.

-- 
Florent Thoumie
f...@freebsd.org
FreeBSD Committer
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Problem (again) with portsnap5.FreeBSD.org?

2010-10-20 Thread Jerry
On Wed, 20 Oct 2010 01:11:35 +0200 (CEST)
Barbara  articulated:

> $ date
> Wed Oct 20 01:11:10 CEST 2010
> 
> # portsnap fetch update
> Looking up portsnap.FreeBSD.org mirrors... 5 mirrors found.
> Fetching snapshot tag from portsnap5.FreeBSD.org... failed.
> Fetching snapshot tag from portsnap6.FreeBSD.org... done.

From time to time, "portsnap' does that. It usually remedies itself
within 24 hours. Other than being a potential superficial annoyance, I
doubt that it causes any serious harm. I have noticed that #5 seems to
be the most troublesome server however.

-- 
Jerry ✌
freebsd-ports.u...@seibercom.net

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__



signature.asc
Description: PGP signature


Mozilla Foundation Security Advisory 2010-71

2010-10-20 Thread Rodrigo OSORIO (ros)

Fyi, 

Mozilla just release a SA for firefox , thunderbird and seamonkey [1]
affecting the current versions in ports. The CVE record seems to be under 
validation.

[1] http://www.mozilla.org/security/announce/2010/mfsa2010-71.html

regards

Rodrigo
 
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Mozilla Foundation Security Advisory 2010-71

2010-10-20 Thread Lowell Gilbert
"Rodrigo OSORIO (ros)"  writes:

> Mozilla just release a SA for firefox , thunderbird and seamonkey [1]
> affecting the current versions in ports. The CVE record seems to be under 
> validation.

The ports have already been updated.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: issue with pkg_add

2010-10-20 Thread Jason Helfman
On Wed, 20 Oct 2010 09:13:32 +0100
Florent Thoumie  wrote:

> On Wed, Oct 20, 2010 at 1:46 AM, Jason Helfman
>  wrote:
> >
> > Hi,
> >
> > I believe I may have come across a potential bug in pkg_add, but
> > wanted to write my findings out to see if anyone has seen this
> > issue, or knows of something I may be doing wrong.
> >
> > I wrote a port that uses USERS/GROUPS functionality of ports.
> >
> > USERS=          user
> > GROUPS=         user_work
> > BINOWN=         user
> > BINGRP=         user_work
> > BINMODE=        4110
> >
> > These are the exec lines in my +CONTENTS file (assume one line for
> > each exec, they were wrapped):
> > @exec if ! /usr/sbin/pw groupshow user_work >/dev/null 2>&1;
> > then /usr/sbin/pw groupadd user_work -g 999; fi
> > @exec if ! /usr/sbin/pw usershow user >/dev/null 2>&1;
> > then /usr/sbin/pw useradd user -u 999 -g 999  -c "user"
> > -d /home/user -s /usr/sbin/nologin; fi
> >
> > I found that on my desktop with a ports tree installed that this
> > port and package installed with no issue, however I found that if I
> > tried to install the package in a jail with no ports tree and
> > nothing installed that it failed with this error:
> >
> > pw: group `999' does not exist
> > pkg_add: command 'if ! /usr/sbin/pw usershow user >/dev/null 2>&1;
> > then /usr/sbin/pw useradd user -u 999 -g 999  -c "user"
> > -d /home/user -s /usr/sbin/nologin; fi' failed
> 
> You may want to run pkg_add -v and see if the group is created
> properly by the preceding @exec line and if not, why.

I found that the group that was being added already existed under a
different gid.  The user was being added with a gid that didn't exist,
however the group name did.

After blowing away the jail and removing the group, pkg_add installed
the package with no issue.

> 
> > I removed all remnants of the installation (these packages were all
> > successful builds in Tinderbox), including installed users/groups. I
> > copied my UIDs and GIDs files to an empty /usr/ports directory. So
> > the only files under /usr/ports were UIDs and GIDs.
> >
> > With these files in place, I reran the pkg_add command on the port
> > package I created and it installed the user and group with no issue,
> > with correct permissions and modes on the files.
> >
> > With this testing, it appears that pkg_add is looking
> > at /usr/ports/UIDs and /usr/ports/GIDs for information on
> > installing a port package, even-though all of the information
> > required for an installation appears to be in my port package.
> >

I re-tested this process after blowing away the jail and found that
pkg_add is not looking at these files.

> > Has anyone run into this issue? Any assumptions I am making? Any
> > flawed logic in testing?
> 
> I haven't tried to install packages in a jail lately but having
> written the USERS/GROUPS logic in bsd.port.mk, the package shouldn't
> need a ports tree to be installed properly.
> 
Thanks!
jgh
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Problem (again) with portsnap5.FreeBSD.org?

2010-10-20 Thread Barbara
> On Wed, 20 Oct 2010 01:11:35 +0200 (CEST)
> Barbara  articulated:
> 
>> $ date
>> Wed Oct 20 01:11:10 CEST 2010
>> 
>> # portsnap fetch update
>> Looking up portsnap.FreeBSD.org mirrors... 5 mirrors found.
>> Fetching snapshot tag from portsnap5.FreeBSD.org... failed.
>> Fetching snapshot tag from portsnap6.FreeBSD.org... done.
> 
> From time to time, "portsnap' does that. It usually remedies itself
> within 24 hours. Other than being a potential superficial annoyance, I
> doubt that it causes any serious harm. I have noticed that #5 seems to
> be the most troublesome server however.

My only intention was to report that and not complaining about the annoyance.
I just wanted to alter people maintaining #5.
If it's "expected", no problem.

Thanks
Barbara


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Problem (again) with portsnap5.FreeBSD.org?

2010-10-20 Thread Jeremy Chadwick
On Wed, Oct 20, 2010 at 09:53:24PM +0200, Barbara wrote:
> > On Wed, 20 Oct 2010 01:11:35 +0200 (CEST)
> > Barbara  articulated:
> > 
> >> $ date
> >> Wed Oct 20 01:11:10 CEST 2010
> >> 
> >> # portsnap fetch update
> >> Looking up portsnap.FreeBSD.org mirrors... 5 mirrors found.
> >> Fetching snapshot tag from portsnap5.FreeBSD.org... failed.
> >> Fetching snapshot tag from portsnap6.FreeBSD.org... done.
> > 
> > From time to time, "portsnap' does that. It usually remedies itself
> > within 24 hours. Other than being a potential superficial annoyance, I
> > doubt that it causes any serious harm. I have noticed that #5 seems to
> > be the most troublesome server however.
> 
> My only intention was to report that and not complaining about the annoyance.
> I just wanted to alter people maintaining #5.
> If it's "expected", no problem.

I think freebsd-hubs@ is the list where most of the cvsup and portsnap
mirror/owners live.  I'd consider posting concerns there.

-- 
| Jeremy Chadwick   j...@parodius.com |
| Parodius Networking   http://www.parodius.com/ |
| UNIX Systems Administrator  Mountain View, CA, USA |
| Making life hard for others since 1977.  PGP: 4BD6C0CB |

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


devel/gdb Port

2010-10-20 Thread Steven Kreuzer
With the help of jhb@, I have a port of gdb 7.1 that has been modified to 
recognize freebsd threads. I would like to get this added to the ports tree
but I would like some feedback as to how it should be added.

Currently, the latest version of gdb in the ports tree is 6.6 and its under 
devel/gdb66. I was thinking of adding this as gdb71 but the latest version of
the 7.x branch is 7.2 and someone already created a port for it (ports/151077) 
but it doesn't recognize threads.

So, for the 7 branch, would it make sense to check in version 7.1 as devel/gdb7 
and eventually update it to 7.2, or should it be checked in as devel/gdb71?

shar file can be found at http://exit2shell.com/~skreuzer/patches/gdb71.shar

SK___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Problem (again) with portsnap5.FreeBSD.org?

2010-10-20 Thread Chip Camden
Quoth Barbara on Wednesday, 20 October 2010:
> 
> My only intention was to report that and not complaining about the annoyance.
> I just wanted to alter people maintaining #5.
> If it's "expected", no problem.
> 

Was "alter" a parapraxis?

-- 
Sterling (Chip) Camden| sterl...@camdensoftware.com | 2048D/3A978E4F
http://camdensoftware.com | http://chipstips.com| http://chipsquips.com


pgpGJucW80Kno.pgp
Description: PGP signature


Re: Problem (again) with portsnap5.FreeBSD.org?

2010-10-20 Thread Glen Barber
On 10/20/10 7:14 PM, Chip Camden wrote:
> Quoth Barbara on Wednesday, 20 October 2010:
>>
>> My only intention was to report that and not complaining about the annoyance.
>> I just wanted to alter people maintaining #5.
>> If it's "expected", no problem.
>>
> 
> Was "alter" a parapraxis?
> 

I'd imagine 's/alter/alert/'.

Cheers,

-- 
Glen Barber
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


INDEX build failed for 6.x

2010-10-20 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-6 - please wait..cannot open 
/local0/portmgr/tindex/ports/multimedia/pvr250/work/pkg-descr: No such file or 
directory
===> multimedia/pvr250 failed
*** Error code 1
*** Error code 1

Stop in /local0/portmgr/tindex/ports.
*** Error code 1

Stop in /local0/portmgr/tindex/ports.
1 error

Committers on the hook:
edwin olgeni pav skreuzer 

Most recent CVS update was:
U databases/emma/Makefile
U devel/cl-infix/Makefile
U devel/cl-infix/pkg-plist
U devel/cl-infix/files/patch-infix.asd
U devel/cl-infix/files/patch-infix.system
U devel/cl-infix-clisp/Makefile
U devel/cl-infix-sbcl/Makefile
U multimedia/pvr250/Makefile
U multimedia/pvr250/distinfo
U multimedia/pvr250/files/cxm.txt
U multimedia/pvr250/files/patch-modules_cxm_cxm_Makefile
U multimedia/pvr250/files/patch-modules_cxm_cxm__iic_Makefile
U multimedia/pvr250/files/pkg-descr.in
U net-mgmt/Makefile
U net-mgmt/p5-Nagios-Object/Makefile
U net-mgmt/p5-Nagios-Object/distinfo
U net-mgmt/p5-Nagios-Object/pkg-descr
U net-mgmt/p5-Nagios-Object/pkg-plist
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


INDEX build failed for 6.x

2010-10-20 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-6 - please wait..cannot open 
/local0/portmgr/tindex/ports/multimedia/pvr250/work/pkg-descr: No such file or 
directory
===> multimedia/pvr250 failed
*** Error code 1
*** Error code 1

Stop in /local0/portmgr/tindex/ports.
*** Error code 1

Stop in /local0/portmgr/tindex/ports.
1 error

Committers on the hook:
edwin obrien olgeni pav skreuzer wen 

Most recent CVS update was:
U databases/grass/Makefile
U databases/grass/distinfo
U databases/grass/pkg-plist
U editors/vim/Makefile
U editors/vim/distinfo
U editors/vim/options
U games/blue/Makefile
U games/blue/distinfo
U games/bs/Makefile
U games/bs/distinfo
U games/galaxis/Makefile
U games/galaxis/distinfo
U math/py-numexpr/Makefile
U math/py-numexpr/distinfo
U net/rdesktop/Makefile
U science/py-DendroPy/Makefile
U science/py-DendroPy/distinfo
U textproc/py-mako/Makefile
U textproc/py-mako/distinfo
U www/py-jswebkit/Makefile
U www/py-jswebkit/distinfo
U www/py-jswebkit/pkg-descr
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


[BUG] cd /usr/src/bin/sh && portmaster -ai

2010-10-20 Thread jhell

The above subject listed bug has been found in portmaster with cause
unknown. portmaster(8) at this point fails to continue because it is
waiting  on a pipe for whatever reason. This also happens in
'/usr/src/bin/csh' and I am not sure if there is other directories this
happens in.

~25 lines of output from a run with '-x'

+ getopts BCDFGHKLPRabde:fghilm:nop:r:stuvwx: COMMAND_LINE_ARGUMENT
+ shift 1
+ unset -f packages_init cross_idx
+ [ -n '' ]
+ [ -n '' ]
+ [ -n '' -a iopt ]
+ [ -n '' -a -n '' ]
+ [ -n '' -a -n Dopt ]
+ [ -n '' -a -n '' ]
+ [ -n '' -o -n '' ]
+ unset my_environment
+ unset -f test_command_line
+ [ -n '' -o -n '' ]
+ [ -n '' ]
+ [ -n '' ]
+ [ -z '' -a '' != only -a -z Dopt ]
+ [ 1 -eq 1 -a -z '' ]
+ CUR_DEPS=:
+ DISPLAY_LIST=''
+ INSTALLED_LIST=''
+ PM_DEPTH=''
+ pm_mktemp IPC_SAVE
+ /usr/bin/mktemp -t f-1-IPC_SAVE
+ IPC_SAVE=/tmp/f-1-IPC_SAVE.aKMgzSJW
+ export CUR_DEPS DISPLAY_LIST INSTALLED_LIST PM_DEPTH IPC_SAVE
+ [ -n '' ]
+ pm_make_b -f/usr/share/mk/bsd.port.mk -V LOCALBASE
+ PLB=''
+ [ -n '' ]
+ head -1
+ cut -f 3 '-d|'

This is the point where is stops.


Found on FreeBSD 8.1-STABLE i386


If further information is needed let me know.

Regards,

-- 

 jhell,v
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


FreeBSD unmaintained ports which are currently marked broken

2010-10-20 Thread linimon
As part of an ongoing effort to reduce the number of problems in
the FreeBSD ports system, we periodically notify users of ports
that are marked as "broken" in their Makefiles.  In many cases
these ports are failing to compile on some subset of the FreeBSD
build environments.  The most common problem is that recent versions
of -CURRENT include gcc4.2, which is much stricter than older versions.
The next most common problem is that compiles succeed on the i386
architecture (e.g. the common Intel PC), but fail on one or more
of the other architectures due to assumptions about things such as
size of various types, byte-alignment issues, and so forth.

In occasional cases we see that the same port may have different
errors in different build environments.  The script that runs on the
build cluster uses heuristics to try to 'guess' the error type to
help you isolate problems, but it is only a rough guide.

One more note: on occasion, there are transient build errors seen
on the build farm.  Unfortunately, there is not yet any way for this
algorithm to tell the difference (humans are much, much better at
this kind of thing.)

The errors are listed below.  In the case where the same problem
exists on more than one build environment, the URL points to the
latest errorlog for that type.  (By 'build environment' here we
mean 'combination of 6.x/7.x/-current with target architecture'.)

(Note: the dates are included to help you to gauge whether or not
the error still applies to the latest version.  The program
that generates this report is not yet able to determine this
automatically.)

portname:   audio/festvox-aec
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=festvox-aec


portname:   audio/gtkguitune
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gtkguitune


portname:   audio/gxmms2
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gxmms2


portname:   audio/rsynth
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=rsynth


portname:   biology/tinker
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=biology&portname=tinker


portname:   chinese/chinput3
broken because: does not build
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=chinput3


portname:   databases/p5-sqlrelay
broken because: does not build
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=p5-sqlrelay


portname:   deskutils/gnotime
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=gnotime


portname:   devel/ace+tao
broken because: Does not compile on FreeBSD >= 7.0
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ace%2Btao


portname:   devel/fampp
broken because: FAM system mismatch: gamin is installed, while desired
FAM system is fam
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=fampp


portname:   devel/gcvs
broken because: does not compile
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=gcvs


portname:   devel/linux-js
broken because: does not build
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-js


portname:   devel/linuxthreads
broken because: does not build
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linuxthreads


portname:   devel/ngpt
broken because: does not compile
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ngpt


portname:   dns/fourcdns
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=dns&portname=fourcdns


portname:   emulators/cpmtools2
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=cpmtools2


portname:   emulators/win4bsd
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.Free

FreeBSD ports which are currently marked broken

2010-10-20 Thread linimon
As part of an ongoing effort to reduce the number of problems in
the FreeBSD ports system, we periodically notify users of ports
that are marked as "broken" in their Makefiles.  In many cases
these ports are failing to compile on some subset of the FreeBSD
build environments.  The most common problem is that recent versions
of -CURRENT include gcc4.2, which is much stricter than older versions.
The next most common problem is that compiles succeed on the i386
architecture (e.g. the common Intel PC), but fail on one or more
of the other architectures due to assumptions about things such as
size of various types, byte-alignment issues, and so forth.

In occasional cases we see that the same port may have different
errors in different build environments.  The script that runs on the
build cluster uses heuristics to try to 'guess' the error type to
help you isolate problems, but it is only a rough guide.

One more note: on occasion, there are transient build errors seen
on the build farm.  Unfortunately, there is not yet any way for this
algorithm to tell the difference (humans are much, much better at
this kind of thing.)

The errors are listed below.  In the case where the same problem
exists on more than one build environment, the URL points to the
latest errorlog for that type.  (By 'build environment' here we
mean 'combination of 6.x/7.x/-current with target architecture'.)

(Note: the dates are included to help you to gauge whether or not
the error still applies to the latest version.  The program
that generates this report is not yet able to determine this
automatically.)

portname:   audio/audacious-dumb
broken because: does not work with audacious 2.4.0
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=audacious-dumb


portname:   audio/aureal-kmod
broken because: doesn't build on RELENG_8
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=aureal-kmod


portname:   audio/baudline
broken because: no longer available (website now have 1.08)
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=baudline


portname:   audio/ecawave
broken because: does not compile
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=ecawave


portname:   audio/emu10kx
broken because: does not compile
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=emu10kx


portname:   audio/festvox-aec
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=festvox-aec


portname:   audio/gmpc-mserver
broken because: fails to build
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gmpc-mserver


portname:   audio/gtkguitune
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gtkguitune


portname:   audio/gxmms2
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gxmms2


portname:   audio/rsynth
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=rsynth


portname:   benchmarks/polygraph
broken because: does not build
build errors:
http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.9.20100319084642/polygraph-3.0.6_1.log
 (_Mar_21_01:42:24_UTC_2010)
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=benchmarks&portname=polygraph


portname:   benchmarks/polygraph31
broken because: does not build
build errors:
http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.9.20100319084642/polygraph31-3.1.5_1.log
 (_Mar_21_01:42:25_UTC_2010)
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=benchmarks&portname=polygraph31


portname:   biology/tinker
broken because: does not fetch
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=biology&portname=tinker


portname:   cad/tclspice
broken because: does not compile
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=cad&portname=tclspice


portname:   chinese/chinput3
broken because: does not build
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=chinput3


portname:   comms/hcfmdm
broken because: Does not compile at 7.x or higher
build errors:   non

FreeBSD unmaintained ports which are currently scheduled for deletion

2010-10-20 Thread linimon
As part of an ongoing effort to reduce the number of problems in
the FreeBSD ports system, we periodically schedule removal of ports
that have been judged to have outlived their usefulness.  Often,
this is due to a better alternative having become available and/or
the cessation of development on the existing port.  In some cases,
ports are marked for removal because they fail to build and install
correctly from their sources, or otherwise fail in operation.

The ports, and the reason and date that they have been scheduled
for removal, are listed below.  If no one has stepped forward before
that time to propose a way to fix the problems (such as via a PR),
the ports will be deleted.



portname:   audio/bmp-musepack
description:Musepack decoder for beep-media-player
maintainer: po...@freebsd.org
deprecated because: does not build with audio/musepack
expiration date:2010-11-15
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=bmp-musepack


portname:   audio/py-musepack
description:Python module that provides the Musepack decoding
interface
maintainer: po...@freebsd.org
deprecated because: does not build with audio/musepack
expiration date:2010-11-15
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=py-musepack


portname:   chinese/chinput3
description:Chinese GB2312,BIG5 code input server
maintainer: po...@freebsd.org
status: BROKEN
deprecated because: Development has ceased.
expiration date:2010-12-01
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=chinput3


portname:   editors/vim5
description:Vi "workalike", with many additional features
maintainer: po...@freebsd.org
deprecated because: Outdated, superceded by editors/vim7 and has security
issues
expiration date:2010-10-26
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=vim5


portname:   emulators/win4bsd
description:Win4BSD Virtual Machine for Windows under BSD
maintainer: po...@freebsd.org
status: BROKEN
deprecated because: Development has ceased and distfile is no longer
available
expiration date:2010-12-31
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=win4bsd


portname:   french/mozilla-flp
description:seamonkey French Language Pack (FLP)
maintainer: po...@freebsd.org
deprecated because: www/seamonkey port is deprecated. Consider using the
www/firefox-i18n.
expiration date:2010-12-31
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=french&portname=mozilla-flp


portname:   french/xtel
description:An emulator for the french Minitel
maintainer: po...@freebsd.org
deprecated because: Minitel services will be discontinued at the end of
2010.
expiration date:2010-12-31
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=french&portname=xtel


portname:   ftp/kwebget
description:A KDE frontend to wget
maintainer: po...@freebsd.org
deprecated because: Development has ceased.
expiration date:2010-11-01
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kwebget


portname:   misc/compat3x
description:A convenience package to install the compat3x
libraries
maintainer: po...@freebsd.org
status: FORBIDDEN
deprecated because: Only FreeBSD 6.4+ are supported in ports
expiration date:2010-10-08
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=compat3x


portname:   multimedia/clive-utils
description:Passwords, RSS parsing, and link extraction for clive
maintainer: po...@freebsd.org
status: IGNORE
deprecated because: development has ceased; use multimedia/umph instead
expiration date:2010-11-01
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=clive-utils


portname:   ports-mgmt/barry
description:A nice KDE frontend to the ports system
maintainer: po...@freebsd.org
status: BROKEN
deprecated because: Development has ceased.
expiration date:2010-11-01
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=ports-mgmt&portname=barry


portname:   security/lxnb
description:NetBus client
maintainer:  

FreeBSD ports which are currently scheduled for deletion

2010-10-20 Thread linimon
As part of an ongoing effort to reduce the number of problems in
the FreeBSD ports system, we periodically schedule removal of ports
that have been judged to have outlived their usefulness.  Often,
this is due to a better alternative having become available and/or
the cessation of development on the existing port.  In some cases,
ports are marked for removal because they fail to build and install
correctly from their sources, or otherwise fail in operation.

The ports, and the reason and date that they have been scheduled
for removal, are listed below.  If no one has stepped forward before
that time to propose a way to fix the problems (such as via a PR),
the ports will be deleted.



portname:   archivers/linux-par2cmdline
description:Linux version of par2cmdline
maintainer: marty...@freebsd.org
deprecated because: Native version available
expiration date:2010-11-15
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=linux-par2cmdline


portname:   audio/bmp-musepack
description:Musepack decoder for beep-media-player
maintainer: po...@freebsd.org
deprecated because: does not build with audio/musepack
expiration date:2010-11-15
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=bmp-musepack


portname:   audio/libmpcdec
description:High quality audio compression format
maintainer: multime...@freebsd.org
deprecated because: superseded by audio/musepack
expiration date:2010-11-15
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=libmpcdec


portname:   audio/py-musepack
description:Python module that provides the Musepack decoding
interface
maintainer: po...@freebsd.org
deprecated because: does not build with audio/musepack
expiration date:2010-11-15
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=py-musepack


portname:   chinese/chinput3
description:Chinese GB2312,BIG5 code input server
maintainer: po...@freebsd.org
status: BROKEN
deprecated because: Development has ceased.
expiration date:2010-12-01
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=chinput3


portname:   devel/libisc
description:ISC's utility library
maintainer: si...@freebsd.org
deprecated because: Unlikely to be used...
expiration date:2010-11-07
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=libisc


portname:   devel/php-dbg2
description:Debugger for PHP
maintainer: jpaet...@freebsd.org
status: BROKEN
deprecated because: No upstream support
expiration date:2010-12-30
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php-dbg2


portname:   devel/thistest
description:A Java unit testing framework
maintainer: alepul...@freebsd.org
status: IGNORE
deprecated because: development has ceased; website disappeared
expiration date:2011-04-11
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=thistest


portname:   dns/bind9
description:Completely new version of the BIND DNS suite with
updated DNSSEC
maintainer: do...@freebsd.org
deprecated because: Past EOL, will be removed when RELENG_6 goes EOL
expiration date:2010-11-30
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=dns&portname=bind9


portname:   editors/vim5
description:Vi "workalike", with many additional features
maintainer: po...@freebsd.org
deprecated because: Outdated, superceded by editors/vim7 and has security
issues
expiration date:2010-10-26
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=vim5


portname:   emulators/dynagen-devel
description:Text-based front end for Dynamips development version
maintainer: pavelivol...@googlemail.com
deprecated because: Please install emulators/dynagen instead
expiration date:2010-12-01
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=dynagen-devel


portname:   emulators/vmware-guestd3
description:VMware time synchronization daemon for FreeBSD guest
OS (for VMware 3.x)
maintainer: matus...@freebsd.org
deprecated because: Depends of misc/compat3x, that is deprecated and set
to be r

FreeBSD unmaintained ports which are currently marked forbidden

2010-10-20 Thread linimon
As part of an ongoing effort to reduce the number of problems in the
FreeBSD ports system, we periodically notify users about
ports that are marked as "forbidden" in their Makefiles.  Often,
these ports are so marked due to security concerns, such as known
exploits.

An overview of each port, including errors seen on the build farm,
is included below.

portname:   misc/compat3x
forbidden because:  FreeBSD-SA-03:05.xdr, FreeBSD-SA-03:08.realpath  - not
fixed / no lib available
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=compat3x
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


FreeBSD ports which are currently marked forbidden

2010-10-20 Thread linimon
As part of an ongoing effort to reduce the number of problems in the
FreeBSD ports system, we periodically notify users about
ports that are marked as "forbidden" in their Makefiles.  Often,
these ports are so marked due to security concerns, such as known
exploits.

An overview of each port, including errors seen on the build farm,
is included below.

portname:   databases/gnats
forbidden because:  Security issues
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=gnats


portname:   misc/compat3x
forbidden because:  FreeBSD-SA-03:05.xdr, FreeBSD-SA-03:08.realpath  - not
fixed / no lib available
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=compat3x
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


INDEX build failed for 6.x

2010-10-20 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-6 - please wait..cannot open 
/local0/portmgr/tindex/ports/multimedia/pvr250/work/pkg-descr: No such file or 
directory
===> multimedia/pvr250 failed
*** Error code 1
*** Error code 1

Stop in /local0/portmgr/tindex/ports.
*** Error code 1

Stop in /local0/portmgr/tindex/ports.
1 error

Committers on the hook:
culot edwin obrien olgeni pav pgollucci skreuzer wen 

Most recent CVS update was:
U devel/p5-Term-Menus/Makefile
U devel/p5-Term-Menus/distinfo
U www/apache20/Makefile
U www/apache20/distinfo
U www/apache20/files/patch-configure.in
U www/apache20/files/patch-docs__conf__httpd-std.conf.in
U www/apache20/files/patch-include__ap_mmn.h
U www/apache20/files/patch-include__ap_regex.h
U www/apache20/files/patch-include__http_core.h
U www/apache20/files/patch-include__httpd.h
U www/apache20/files/patch-modules__filters__mod_include.c
U www/apache20/files/patch-modules__filters__mod_include.h
U www/apache20/files/patch-modules__mappers__mod_alias.c
U www/apache20/files/patch-modules__mappers__mod_rewrite.c
U www/apache20/files/patch-modules__mappers__mod_rewrite.h
U www/apache20/files/patch-modules__metadata__mod_headers.c
U www/apache20/files/patch-modules__metadata__mod_setenvif.c
U www/apache20/files/patch-modules__metadata__mod_usertrack.c
U www/apache20/files/patch-modules__metadata__mod_version.c
U www/apache20/files/patch-modules__proxy__mod_proxy.c
U www/apache20/files/patch-modules__proxy__mod_proxy.h
U www/apache20/files/patch-modules__proxy__proxy_ftp.c
U www/apache20/files/patch-modules__ssl__ssl_expr_eval.c
U www/apache20/files/patch-modules__ssl__ssl_expr_parse.c
U www/apache20/files/patch-modules__ssl__ssl_expr_parse.y
U www/apache20/files/patch-server__Makefile.in
U www/apache20/files/patch-server__core.c
U www/apache20/files/patch-server__request.c
U www/apache20/files/patch-server__util.c
U www/apache20/files/patch-server__util_pcre.c
U www/apache20/files/patch-support__apxs.in
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: INDEX build failed for 6.x

2010-10-20 Thread Edwin Groothuis
Oops... Fixing now.

-- 
Edwin Groothuis Website: http://www.mavetju.org/
ed...@mavetju.org   Weblog:  http://www.mavetju.org/weblog/
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"