Re: Making ports from source with weird download restrictions

2008-09-08 Thread Kris Kennaway
Brooks Davis wrote: As long as the license allows redistribution, we can host it on FreeBSD infrastructure using MASTER_SITE_LOCAL. 2) openocd - http://openfacts.berlios.de/index-en.phtml?title=Building_OpenOCD - this is a bit more sensible - there's a stable SVN repository for it, it's just

Re: graphics/xmagv - failes: install_error

2008-08-24 Thread Kris Kennaway
[EMAIL PROTECTED] wrote: Hi, The build which triggered this email is done under tinderbox-2.4.3, on 7-STABLE on amd64, with tinderd_flags=-nullfs -plistcheck -onceonly and ccache support, with the official up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes,

Re: graphics/xmagv - failes: install_error

2008-08-24 Thread Kris Kennaway
Kris Kennaway wrote: [EMAIL PROTECTED] wrote: Hi, The build which triggered this email is done under tinderbox-2.4.3, on 7-STABLE on amd64, with tinderd_flags=-nullfs -plistcheck -onceonly and ccache support, with the official up-to-date Ports Tree, with the following vars set: NOPORTDOCS

Re: graphics/xmagv - failes: install_error

2008-08-24 Thread Kris Kennaway
Beech Rintoul wrote: On Sunday 24 August 2008, Kris Kennaway said: [EMAIL PROTECTED] wrote: Hi, The build which triggered this email is done under tinderbox-2.4.3, on 7-STABLE on amd64, with tinderd_flags=-nullfs -plistcheck -onceonly and ccache support, with the official up-to-date Ports

Re: best way to work around malloc.h vs stdlib.h ?

2008-08-19 Thread Kris Kennaway
Luigi Rizzo wrote: A fair amount of third party software in ports still uses malloc.h which in our system is like this: /* $FreeBSD: src/include/malloc.h,v 1.5 2001/11/07 23:14:31 obrien Exp $ */ #if __STDC__ #error malloc.h has been replaced by stdlib.h #else

Re: best way to work around malloc.h vs stdlib.h ?

2008-08-19 Thread Kris Kennaway
Luigi Rizzo wrote: On Tue, Aug 19, 2008 at 01:12:37PM -0500, Jeremy Messenger wrote: On Tue, 19 Aug 2008 12:26:31 -0500, Luigi Rizzo [EMAIL PROTECTED] wrote: A fair amount of third party software in ports still uses malloc.h which in our system is like this: /* $FreeBSD:

Re: Are there packages available anywhere for kde4 en general and kde4network specifically.

2008-08-18 Thread Kris Kennaway
eculp wrote: Quoting Kris Kennaway [EMAIL PROTECTED]: eculp wrote: I have been having issues as I have posted on [EMAIL PROTECTED] compiling kdenetwork4. It always breaks at /usr/ports/net/kdenetwork4/work/kdenetwork-4.1.0/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_task.cpp:21:27

Re: Are there packages available anywhere for kde4 en general and kde4network specifically.

2008-08-17 Thread Kris Kennaway
eculp wrote: I have been having issues as I have posted on [EMAIL PROTECTED] compiling kdenetwork4. It always breaks at /usr/ports/net/kdenetwork4/work/kdenetwork-4.1.0/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_task.cpp:21:27: error: qplatformdefs.h: No such file or directory ***

Re: INDEX build failed for 6.x

2008-08-07 Thread Kris Kennaway
Jeremy Messenger wrote: On Wed, 06 Aug 2008 23:08:19 -0500, Erwin Lansing [EMAIL PROTECTED] wrote: INDEX build failed with errors: Generating INDEX-6 - please wait..pkg_info: not found pkg_info: not found pkg_info: not found pkg_info: not found Done. make_index: transmission-gtk2-1.31: no

INDEX warning

2008-08-06 Thread Kris Kennaway
Generating INDEX-8 - please wait..gnome-config: not found Package gstreamer-0.10 was not found in the pkg-config search path. Perhaps you should add the directory containing `gstreamer-0.10.pc' to the PKG_CONFIG_PATH environment variable No package 'gstreamer-0.10' found Can someone please fix?

Re: Mk/bsd.openssl.mk optimization

2008-07-30 Thread Kris Kennaway
V.Chukharev wrote: On Tue, 29 Jul 2008 18:28:26 +0300, V.Chukharev [EMAIL PROTECTED] wrote: On Fri, 25 Jul 2008 20:19:42 +0300, Kris Kennaway [EMAIL PROTECTED] wrote: You don't want to .include the file, just use the same make -f trick that I used for e.g. the python and java variable

Re: Mk/bsd.openssl.mk optimization

2008-07-30 Thread Kris Kennaway
Vladimir Chukharev wrote: On Wed, 30 Jul 2008 14:09:16 +0300, Kris Kennaway [EMAIL PROTECTED] wrote: V.Chukharev wrote: I have found why there is a difference in INDEX-7 generated with and without caching. Without cache security/p5-openxpki* (6 connected ports) are indexed as depending

Re: Mk/bsd.openssl.mk optimization

2008-07-29 Thread Kris Kennaway
Freddie Cash wrote: On July 29, 2008 12:52 pm V.Chukharev wrote: Another patch, just one line. It can be applied independently from the patch for bsd.port.subdir.mk. = --- /usr/ports/Mk/bsd.openssl.mk.orig 2008-07-23 09:14:29.0 +0300 +++ /usr/ports/Mk/bsd.openssl.mk

Re: Mk/bsd.openssl.mk optimization

2008-07-27 Thread Kris Kennaway
Dirk Meyer wrote: Kris Kennaway schrieb:, To repeat, why can't you set the openssl variables in bsd.port.subdir.mk and pass them in to the port-level make process instead of recomputing them with every port? Becuase if someone does make package in ports/security The value must change during

Re: Mk/bsd.openssl.mk optimization

2008-07-26 Thread Kris Kennaway
Dirk Meyer wrote: Kris Kennaway schrieb:, The result can be cached only if no other ports or package is installed. So you are right that make index could be otimized, but it will take much more work. Why can't you cache it in bsd.port.subdir.mk as I suggested? openssl does set

Re: Mk/bsd.openssl.mk optimization

2008-07-26 Thread Kris Kennaway
Dirk Meyer wrote: Kris Kennaway schrieb:, openssl does set NOPRECIOUSMAKEVARS=yes, so that part ist skipped in bsd.port.subdir.mk. OK, but why is this necessary? otherwise the build breaks, as the length of the commandline reaches a limit. We're not talking about builds, but other

Re: Mk/bsd.openssl.mk optimization

2008-07-25 Thread Kris Kennaway
Dirk Meyer wrote: V.Chukharev schrieb:, So I looked through some Mk stuff, and tryed to optimize it. Since I do not know any magic of bsd.*.mk, I did just a simple test. And with the below shown patch the time is only 1500 s, while with the original version the time is more than 15000 s. I

Re: Mk/bsd.openssl.mk optimization

2008-07-25 Thread Kris Kennaway
V.Chukharev wrote: On Fri, 25 Jul 2008 16:09:10 +0300, V.Chukharev [EMAIL PROTECTED] wrote: On Fri, 25 Jul 2008 07:30:18 +0300, Dirk Meyer [EMAIL PROTECTED] wrote: So you are right that make index could be otimized, but it will take much more work. Totally agree on this. I tryed to make

Re: Auto-saving distfiles on freebsd

2008-07-23 Thread Kris Kennaway
cpghost wrote: On Tue, Jul 22, 2008 at 11:47:04PM -0700, Ted Mittelstaedt wrote: Another problem with ports is that all of them like pulling the original source from the author's site. I've had a few where the author released the code under GPL then a few years later lost interest, stopped

Re: Auto-saving distfiles on freebsd

2008-07-23 Thread Kris Kennaway
Matthew Seaman wrote: cpghost wrote: Why not add this to pointyhat scripts? Just upload a copy of every *new* distfile ever encountered from the author's page to freebsd (unless there are legal constraints not to do so, of course)? Some might say that this already happens. Well, it's on

Re: Auto-saving distfiles on freebsd

2008-07-23 Thread Kris Kennaway
James Tanis wrote: cpghost [EMAIL PROTECTED] wrote: The ports would still go to the primary sites (to conserve bandwidth), but should the original distfile disappear, it would be still available on freebsd. I think his problem comes from the fact that some ports don't do this, not that it

Re: Auto-saving distfiles on freebsd

2008-07-23 Thread Kris Kennaway
cpghost wrote: On Wed, 23 Jul 2008 16:51:10 +0200 Kris Kennaway [EMAIL PROTECTED] wrote: cpghost wrote: On Tue, Jul 22, 2008 at 11:47:04PM -0700, Ted Mittelstaedt wrote: Another problem with ports is that all of them like pulling the original source from the author's site. I've had a few

Re: Mk/bsd.openssl.mk optimization

2008-07-23 Thread Kris Kennaway
V.Chukharev wrote: Dear maintainer, I have noticed that most time of 'make index' on my system takes a grep for libssl. The following is done while 'make index' was running. $ ps axww | grep libssl 23119 p1 IN+0:00,00 sh -c grep -l -r ^lib/libssl.so. /var/db/pkg | while read contents;

Re: porter's handbook documentation on avoiding != variable assignments

2008-07-20 Thread Kris Kennaway
Matthew Seaman wrote: Kris Kennaway wrote: Can someone add to the PH a version of the advice below? It might need to be fleshed out a bit to provide more context. Kris Variable assignments with != are bad! Try as hard as you can to avoid using them -- especially in Mk/*! Every time

porter's handbook documentation on avoiding != variable assignments

2008-07-19 Thread Kris Kennaway
Can someone add to the PH a version of the advice below? It might need to be fleshed out a bit to provide more context. Kris Variable assignments with != are bad! Try as hard as you can to avoid using them -- especially in Mk/*! Every time something processes your makefile it will spawn a

Re: INDEX build failed for 6.x

2008-07-12 Thread Kris Kennaway
Erwin Lansing wrote: INDEX build failed with errors: Generating INDEX-6 - please wait..pkg_info: not found pkg_info: not found pkg_info: not found === sysutils/burn failed Hangup Hangup Looks like this lost out to a server reboot Kris ___

Re: Upgrading through packages: an experience.

2008-07-12 Thread Kris Kennaway
Michel Talon wrote: Hello, Since KDE recently appeared in the Latest prebuilt packages Well, it's always been there, except when it could not be built. Now the problems. They come from the fact that the Latest packages are not always coherent between themselves or with the libraries in

Re: NOT SOLVED --cvsup after upgrade to 6.3 coredump

2008-07-11 Thread Kris Kennaway
David Southwell wrote: But this may be a clue Here is what happened.. in the past it seemed to core dump immediately - but now it transpires the dumping takes place only once the connection is made. I incorrectly assumed all was OK when I got the Rejected by Server message but jumped too

Re: ports/124944: [PATCH] audio/arts: Remove 5.x support

2008-06-24 Thread Kris Kennaway
Philip M. Gollucci wrote: o Remove 5.x support Port maintainer ([EMAIL PROTECTED]) is cc'd. FYI, we stated in the EOL announcement that we are not doing sweeping 5.x removals right away. Please give it more time. Kris ___

Re: ports/124944: [PATCH] audio/arts: Remove 5.x support

2008-06-24 Thread Kris Kennaway
Brandon S. Allbery KF8NH wrote: On 2008 Jun 24, at 19:03, Philip M. Gollucci wrote: Kris Kennaway wrote: Philip M. Gollucci wrote: o Remove 5.x support Port maintainer ([EMAIL PROTECTED]) is cc'd. FYI, we stated in the EOL announcement that we are not doing sweeping 5.x removals right

Re: INDEX build optimizations - please review

2008-06-22 Thread Kris Kennaway
Doug Barton wrote: Kris Kennaway wrote: The new 'make describe' target runs entirely using shell builtins apart from the need to sed pkg-descr to extract the WWW [2] [2] Actually I am not happy with this but couldn't think of a way to do it better. Having to fork the subshell costs about

Re: regression-test

2008-06-20 Thread Kris Kennaway
Thierry Thomas wrote: Le Ven 20 jui 08 à 3:54:04 +0200, Garrett Cooper [EMAIL PROTECTED] écrivait : I try to enable regression-test when possible, but the current implementation is a post-build target, and some ports' testings need a post-install target. In these cases, I enclose the

Re: sysutils/screen package

2008-06-20 Thread Kris Kennaway
Philip M. Gollucci wrote: itche wrote: Chess Griffin wrote: Boris Kochergin wrote: Hi, List. I noticed that there isn't a package for sysutils/screen for 7.0. Compiling it from ports works fine, and I looked around and wasn't able to find logs relevant to it on

Re: INDEX build optimizations - please review

2008-06-19 Thread Kris Kennaway
Pietro Cerutti wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Kris Kennaway wrote: | ** | * NOTE TO PORT DEVELOPERS

Re: regression-test

2008-06-19 Thread Kris Kennaway
Wesley Shields wrote: On Thu, Jun 19, 2008 at 08:54:17AM -0700, [EMAIL PROTECTED] wrote: Christian Weisgerber wrote: ... In particular, running tests of what duration would be considered appropriate? E.g., building audio/flac takes a minute here, running the tests sixteen, which I suspect

Re: kdebase3 package is missing in 7-stable

2008-06-19 Thread Kris Kennaway
Patrick Lamaizière wrote: Hi, kdebase3 package for 7-stable/i386 is missing on the FTP. Yes. This happens from time to time when the ports or their dependencies are broken. Kris ___ freebsd-ports@freebsd.org mailing list

Re: kdebase3 package is missing in 7-stable

2008-06-19 Thread Kris Kennaway
Patrick Lamaizière wrote: Le Thu, 19 Jun 2008 19:08:43 +0200, Kris Kennaway [EMAIL PROTECTED] a écrit : kdebase3 package for 7-stable/i386 is missing on the FTP. Yes. This happens from time to time when the ports or their dependencies are broken. Thank you Kris. I think something is wrong

Re: regression-test

2008-06-19 Thread Kris Kennaway
Tom Hukins wrote: On Thu, Jun 19, 2008 at 12:35:01PM -0400, Wesley Shields wrote: Which is why I would recommend wrapping them in checks for MAINTAINER_MODE or something similar. This way you, as the maintainer, can turn them on when you want but they don't affect anything else. That's true

Re: regression-test

2008-06-19 Thread Kris Kennaway
Thierry Thomas wrote: Le Jeu 19 jui 08 à 19:06:36 +0200, Kris Kennaway [EMAIL PROTECTED] écrivait : We *want* regression tests to be available unconditionally -- that is why I added the hook to the package build process to run them if present. Please don't hack around this because you think

Re: Question about ports adding cronjobs

2008-06-18 Thread Kris Kennaway
David Hawthorne wrote: I have a piece of software I've been working on that gathers stats about the local host and shoves them into rrd files, with an accompanying web front-end page that generates pretty graphs from the RRDs on demand. I have a package done up for it, and I'd like to add it

Re: regression-test

2008-06-18 Thread Kris Kennaway
Christian Weisgerber wrote: So I just learned that pointyhat tries to run a target regression-test as part of the build. (Somebody asked me to use that target in a port.) Is this documented somewhere? I don't know off-hand. I assume you searched the handbook? In particular, running tests

INDEX build optimizations - please review

2008-06-10 Thread Kris Kennaway
Please review and test the following patches that optimize port INDEX builds (and as a side-effect, other recursive tree traversals). I am particularly interested in a comparison between old and new indexes built locally: the only diff should be in audio/festvox-hvs [1]. The patches remove

Re: INDEX build optimizations - please review

2008-06-10 Thread Kris Kennaway
Pietro Cerutti wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Pietro Cerutti wrote: | Kris Kennaway wrote: | | | Another important optimization is to use /rescue/sh instead of /bin/sh | | for index builds. The former is statically linked and this is much | | faster to execute. | | True

Re: INDEX build optimizations - please review

2008-06-10 Thread Kris Kennaway
Jeremy Messenger wrote: On Tue, 10 Jun 2008 11:45:32 -0500, Kris Kennaway [EMAIL PROTECTED] wrote: Another important optimization is to use /rescue/sh instead of /bin/sh for index builds. The former is statically linked and this is much faster to execute. I don't have INDEX in all of my

Re: INDEX build optimizations - please review

2008-06-10 Thread Kris Kennaway
Alex Kozlov wrote: On Tue, Jun 10, 2008 at 06:45:32PM +0200, Kris Kennaway wrote: Please review and test the following patches that optimize port INDEX builds (and as a side-effect, other recursive tree traversals). I am particularly interested in a comparison between old and new indexes

Re: INDEX build optimizations - please review

2008-06-10 Thread Kris Kennaway
Alex Kozlov wrote: On Tue, Jun 10, 2008 at 11:52:01PM +0200, Kris Kennaway wrote: Alex Kozlov wrote: On Tue, Jun 10, 2008 at 06:45:32PM +0200, Kris Kennaway wrote: Please review and test the following patches that optimize port INDEX builds (and as a side-effect, other recursive tree

HEADS UP: Port versions going backwards

2008-06-07 Thread Kris Kennaway
Dear maintainers, For some time now the script that is supposed to monitor for port version strings decreasing has not been functioning (it runs but produces no output for some reason). Unfortunately this has allowed quite a few regressions to creep in. These are the ones I detected; the time

Re: INDEX build failed for 6.x

2008-06-06 Thread Kris Kennaway
Pav Lucistnik wrote: Kris Kennaway píše v pá 06. 06. 2008 v 13:39 +0200: Yasuhiro KIMURA wrote: From: Erwin Lansing [EMAIL PROTECTED] Subject: INDEX build failed for 6.x Date: Fri, 6 Jun 2008 04:03:22 GMT INDEX build failed with errors: Generating INDEX-6 - please wait../a/erwin/tindex

Re: INDEX build failed for 8.x

2008-06-01 Thread Kris Kennaway
Erwin Lansing wrote: INDEX build failed with errors: Generating INDEX-8 - please wait../a/erwin/tindex/ports/chinese/links/../../www/links/Makefile, line 75: warning: duplicate script for target pre-configure ignored pkg_info: not found pkg_info: not found pkg_info: not found

Re: CFT: adding configuration file support to pkg_install

2008-05-31 Thread Kris Kennaway
Philip M. Gollucci wrote: Florent Thoumie wrote: This adds support for /etc/pkg.conf configuration file. Also, this adds support for naive multi-site package fetching. Any comment welcome (and appreciated). Patch is here: http://people.freebsd.org/~flz/local/ports/pkg-install-config.diff

Re: Compiler segfault under fbsd7?

2008-05-27 Thread Kris Kennaway
Matthew Seaman wrote: Jeremy Chadwick wrote: On Tue, May 27, 2008 at 12:38:05PM +0200, [EMAIL PROTECTED] wrote: You are right: make buildworld exits with /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/genattrtab.c: In function 'make_internal_attr':

Re: Handling user input and package building

2008-05-24 Thread Kris Kennaway
Paul Schmehl wrote: I'm trying to figure out how to handle user input in package building mode. I've got statements like this in my Makefile, and they work fine to suppress user input from the pkg-install script: pre-install: .if !defined(PACKAGE_BUILDING) @${SETENV} ${SCRIPTS_ENV}

Re: perl5.8 - perlio.c:2919: error: dereferencing pointer to incomplete type

2008-05-08 Thread Kris Kennaway
Randy Bush wrote: `sh cflags optimize='-O2 -pipe -march=pentiumpro -fno-strict-aliasing' globals.o` -DPIC -fPIC globals.c CCCMD = cc -DPERL_CORE -c -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe

Re: How often do pointyhat do a build?

2008-04-29 Thread Kris Kennaway
Mark Linimon wrote: On Mon, Apr 28, 2008 at 06:41:30PM -0700, Xin LI wrote: So does it imply that pointyhat's -CURRENT would (slightly) behind the current development? Yes, it takes some amount of time to upgrade everything. Is there any way to know which __FreeBSDversion the current build

Re: How often do pointyhat do a build?

2008-04-29 Thread Kris Kennaway
Kris Kennaway wrote: Mark Linimon wrote: On Mon, Apr 28, 2008 at 06:41:30PM -0700, Xin LI wrote: So does it imply that pointyhat's -CURRENT would (slightly) behind the current development? Yes, it takes some amount of time to upgrade everything. Is there any way to know which

Re: hang making bash in current

2008-04-27 Thread Kris Kennaway
On Sun, Apr 27, 2008 at 04:43:58PM +0900, Randy Bush wrote: i386 extremely current. making bash checking for ranlib... ranlib checking for bison... yacc checking whether make sets $(MAKE)... yes checking for an ANSI C-conforming const... yes checking for inline... inline checking whether

Re: New portmgr member: Florent Thoumie

2008-03-26 Thread Kris Kennaway
Soeren Straarup wrote: Hi flz and ret, On Wed, 26 Mar 2008 15:19:20 +0100 Erwin Lansing [EMAIL PROTECTED] wrote: Portmgr is pleased to announce that Florent Thoumie has accepted the challenge of being a portmgr member. Florent has been with the project for a long time and is one of our most

Re: Kernel Compile Options: _KPOSIX_PRIORITY_SCHEDULING, SMP

2008-03-22 Thread Kris Kennaway
Jim Stapleton wrote: Supposedly SMP is available by default in 7.0, but I didn't see the 'options SMP' entry in the generic config. I take it that is unnecessary for SMP support now? No, I think you are referring to the fact that sysinstall will install a kernel compiled with options SMP if

Re: 6.2 release ports packages gone missing?

2008-03-17 Thread Kris Kennaway
Sean Bruno wrote: I guess due to the 6.3 release all the 6.2 release packages got deleted? Why delete them? Are they placed somewhere else? $ pkg_add -nr net-snmp Error: FTP Unable to get ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-6.2-release/Latest/net-snmp.tbz: File

Re: clint port broken on 7-STABLE amd64

2008-03-06 Thread Kris Kennaway
Steve Franks wrote: Just built /devel/clint on my vanilla 7.0 system. Appears to build and install fine, but #clint or #clint --help freezes the console, and ctrl-C initiates a core-dump. Python appears to run just fine. Talk to the clint developers and/or the maintainer. Kris

Re: portupgrade, recommended by 7 release notes, breaks perl

2008-03-02 Thread Kris Kennaway
Steven Hartland wrote: Would fix this particular package but again: how many others do this? Maybe this is something that BSDPAN could / should override? It might be possible, you should talk to the BSDPAN maintainer. Kris ___

Re: misc/compat6x

2008-02-28 Thread Kris Kennaway
Sergey Matveychuk wrote: Hi. I tried to start an application on 7.0 that requires libpthread.so.2. I've installed misc/compat6x, but have a problem: /usr/local/lib/compat/libpthread.so.2: Undefined symbol __malloc_lockCould not load addin module /usr/local/lib/libtfmessbsp.so! As I can see

Re: misc/compat6x

2008-02-28 Thread Kris Kennaway
Sergey Matveychuk wrote: The library is not linked with libc. But dynamic loader loads libc.so.7 for libthr.so.3. kib@ has told me it's impossible to fix (we can't mix libc.so.6 and libc.so.7 in one namespace). So we should ask vendor to recompile it for 7.0 (it's security/bsp_upektfmess).

Re: FreeBSD Port: timeseal-1.0 - Bad system call

2008-02-21 Thread Kris Kennaway
peter bird wrote: Please can you help with this? pulsarity# uname -a FreeBSD pulsarity.demax.sk 7.0-RC1 FreeBSD 7.0-RC1 #1: Wed Feb 6 11:45:51 CET 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/PULS i386 pulsarity# timeseal Bad system call Use ktrace to determine what the syscall is.

Re: make index on FBSD 5

2008-02-14 Thread Kris Kennaway
Patrik Forsberg wrote: Hi, Trying to do a make index of the ports tree on a FBSD 5.4-RELEASE-p4 but get the following error Generating INDEX-5 - please wait..=== arabic/ae_fonts_mono failed *** Error code 1 === accessibility/accerciser failed *** Error code 1 2 errors cut text *** Error code

Re: Different variants of the same package on ftp.FreeBSD.org

2008-01-31 Thread Kris Kennaway
[EMAIL PROTECTED] wrote: On Thu, Jan 31, 2008 at 10:37:38AM +0100, Pav Lucistnik wrote: ~ $ host ftp.freebsd.org ftp.freebsd.org has address 204.152.184.73 ftp.freebsd.org has address 62.243.72.50 ftp.freebsd.org has IPv6 address 2001:6c8:6:4::7 ftp.freebsd.org has IPv6 address 2001:4f8:0:2::e

Re: Possibly unbuildable ports reminder

2008-01-30 Thread Kris Kennaway
Stephen Montgomery-Smith wrote: Wesley Shields wrote: On Mon, Jan 28, 2008 at 07:45:09AM -0600, Stephen Montgomery-Smith wrote: Bill Fenner wrote: Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://pointyhat.freebsd.org/errorlogs/ . A

Re: ports setting UIDs/GIDs broadscape: chmod -R likely breaks things!

2008-01-24 Thread Kris Kennaway
Peter Much wrote: Dear all, a couple of Ports have in the install part of their Makefiles constructs like this: @ ${CHOWN} -R pgsql:pgsql ~pgsql/. ;\ I perceive this as very problematic. For instance: Below ~pgsql there at least two mounted filesystems, both with a .snap

Re: packages with security vulnerabilities

2008-01-21 Thread Kris Kennaway
P Bielecki wrote: On Jan 22, 2008 12:23 AM, P Bielecki [EMAIL PROTECTED] wrote: On Jan 21, 2008 11:57 PM, Doug Barton [EMAIL PROTECTED] wrote: Kris Kennaway wrote: I still don't understand what you claim is the problem :) We do not specially update packages like perl; rather, *every

Re: packages with security vulnerabilities

2008-01-20 Thread Kris Kennaway
P Bielecki wrote: Hi, freebsd-update helps me update base system, portaudit(1) reminds me everyday about security vulnerabilities in ports/packages and thanks to portupgrade(1), I keep them up to date. Quite often I build packages or use packages whenever available and share (NFS) them with my

Re: freebsd-games: hack needs -fwritable-strings

2008-01-10 Thread Kris Kennaway
Robert Huff wrote: James Cook writes: This seems to be caused by line 170 of hack.u_init.c, which attempts to modify a string constant. SOLUTION: Add -fwritable-strings to CFLAGS in hack's Makefile. (There's already a patch that changes that line of the Makefile, so this is easy to

Re: pointyhat is building for 5.5 but claiming 8.0

2008-01-09 Thread Kris Kennaway
Boris Samorodov wrote: On Wed, 09 Jan 2008 00:28:45 +0100 Kris Kennaway wrote: Pav Lucistnik wrote: Boris Samorodov píše v st 09. 01. 2008 v 02:16 +0300: On Tue, 08 Jan 2008 23:10:45 +0100 Pav Lucistnik wrote: No, the port is using sysctl(2) to query the OS version which cannot be wrapped

Re: pointyhat is building for 5.5 but claiming 8.0

2008-01-08 Thread Kris Kennaway
Boris Samorodov wrote: On Tue, 08 Jan 2008 23:10:45 +0100 Pav Lucistnik wrote: Boris Samorodov píše v st 09. 01. 2008 v 00:45 +0300: No, the port is using sysctl(2) to query the OS version which cannot be wrapped. Hm, ports-mgmt/tinderbox masks it somehow... And doesn't get an error for

Re: pointyhat is building for 5.5 but claiming 8.0

2008-01-08 Thread Kris Kennaway
Boris Samorodov wrote: On Wed, 09 Jan 2008 00:28:45 +0100 Kris Kennaway wrote: Pav Lucistnik wrote: Boris Samorodov píše v st 09. 01. 2008 v 02:16 +0300: On Tue, 08 Jan 2008 23:10:45 +0100 Pav Lucistnik wrote: No, the port is using sysctl(2) to query the OS version which cannot be wrapped

Re: Port Version via pkg_add

2008-01-02 Thread Kris Kennaway
Jeremy Chadwick wrote: On Tue, Jan 01, 2008 at 08:10:12PM -0800, Jason C. Wells wrote: How does pkg_add determine what version of a port to add when 'pkg_add -Kr' is used? pkg_add calls getosreldate(3) to obtain the integer value of the release of FreeBSD running on the machine. The list of

Re: unknown build error

2008-01-02 Thread Kris Kennaway
Piotr wrote: hi I try to install a packet from ports using portinstall: # portinstall -f net/p5-Net-Pcap but get the following error: [Updating the pkgdb format:bdb_btree in /var/db/pkg ... - 651 packages found (-0 +1) . done] ** Listing the failed packages (*:skipped / !:failed) !

Re: unknown build error

2008-01-02 Thread Kris Kennaway
Piotr wrote: # cd /usr/ports/net/p5-Net-Pcap # make install clean === Building for p5-Net-Pcap-0.15_1 Makefile out-of-date with respect to /usr/local/lib/perl5/5.8.8/mach/Config.pm /usr/local/lib/perl5/5.8.8/mach/CORE/config.h Cleaning current config before rebuilding Makefile... make -f

Re: unknown build error

2008-01-02 Thread Kris Kennaway
Piotr wrote: which clock you mean ? # date Thu Jan 3 02:41:21 CET 2008 --- On Wed 01/02, Kris Kennaway [EMAIL PROTECTED] wrote: From: Kris Kennaway [mailto: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: freebsd-ports@freebsd.org Date: Thu, 03 Jan 2008 02:31:25 +0100 Subject: Re

Re: unknown build error

2008-01-02 Thread Kris Kennaway
Piotr wrote: and how is the command to find out the timestamp of this file ? --- On Wed 01/02, Kris Kennaway [EMAIL PROTECTED] wrote: From: Kris Kennaway [mailto: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: freebsd-ports@freebsd.org Date: Thu, 03 Jan 2008 02:52:48 +0100 Subject: Re

Re: FreeBSD Port: php5-bz2-5.2.5

2007-12-26 Thread Kris Kennaway
Darrell Betts wrote: I am receiving this error when trying to compile php5 Makefile, line 588: warning: duplicate script for target main/internal_functions.lo ignored /bin/sh /usr/ports/lang/php5/work/php-5.2.5/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -Iext/date/

Re: Package Building in the Large

2007-11-20 Thread Kris Kennaway
Jason C. Wells wrote: I have been toying with a variety of package building methods lately. My latest effort involves looking into the Third Party Release Engineering documented here: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/releng-packages/index.html. Where do I start if I am

Re: 4203:31337 (possible exploit?)

2007-11-10 Thread Kris Kennaway
Jeremy Chadwick wrote: On Sat, Nov 10, 2007 at 03:25:57PM +0100, Mike -freebsd wrote: Guys, is anyone else seeing this? drwxr-xr-x 69 4203 31337 1536 Nov 9 13:59 ports I see this on three of four FreeBSD 7 boxes and only on /usr/ports/ (why...?). Anyone else? Four different boxes of

Re: 4203:31337 (possible exploit?)

2007-11-10 Thread Kris Kennaway
Mike -freebsd wrote: On Nov 10, 2007 5:28 PM, Kris Kennaway [EMAIL PROTECTED] wrote: Sounds like you may have a security problem (re: 31337 GID). If that's the case, I would strongly advocate formatting + reinstalling those machines. I asked because that is the uid/gid used on pointyhat

Major changes since 6.2?

2007-10-17 Thread Kris Kennaway
What are some of the major changes to ports/ported applications since 6.2-RELEASE (01/2007)? I am in the process of putting together a talk and would like to mention some of the highlights. The main ones are xorg 7.3, KDE 3.5.7 and GNOME 2.18.3. Have there been any other major changes of

Re: Smarteiffel is marked broken but is not

2007-10-16 Thread Kris Kennaway
Patrick Lamaiziere wrote: Le Mon, 15 Oct 2007 02:18:28 +0200, Kris Kennaway [EMAIL PROTECTED] : Hi, lang/smarteiffel is marked BROKEN= does not install on FreeBSD = 7 but it builds and installs fine, and runs fine too on 7.0-PRERELEASE/i386 Check the error log on http://pointyhat.freebsd.org

Re: Smarteiffel is marked broken but is not (maybe!)

2007-10-16 Thread Kris Kennaway
Patrick Lamaiziere wrote: Le Tue, 16 Oct 2007 22:27:16 +0200, Kris Kennaway [EMAIL PROTECTED] : lang/smarteiffel is marked BROKEN= does not install on FreeBSD = 7 but it builds and installs fine, and runs fine too on 7.0-PRERELEASE/i386 Check the error log on http://pointyhat.freebsd.org

Re: Ports using gcc 4.2 under FreeBSD 6.2-RELEASE

2007-10-15 Thread Kris Kennaway
Naram Qashat wrote: I was wondering if it would be possible to test if a port would work properly with GCC 4.2 would help test for FreeBSD 7-CURRENT if I use the lang/gcc42 port while under 6.2-RELEASE. I want to test and see what does and doesn't compile, maybe to see if I could help the

Re: Smarteiffel is marked broken but is not

2007-10-14 Thread Kris Kennaway
Patrick Lamaiziere wrote: Hi, lang/smarteiffel is marked BROKEN= does not install on FreeBSD = 7 but it builds and installs fine, and runs fine too on 7.0-PRERELEASE/i386 Check the error log on http://pointyhat.freebsd.org then try to determine why you are not seeing that error on your

Re: compat-6x does not work when kernel has NO_KSE

2007-09-12 Thread Kris Kennaway
Jiawei Ye wrote: On 9/11/07, LI Xin [EMAIL PROTECTED] wrote: Jiawei Ye wrote: Hi, This hit me when I tried bootstrapping JDK builds on a -current with Diablo JDK1.5. Running java -version returns Fatal error 'kse_create() failed ' at line 444 in file

Re: INDEX build failed for 5.x

2007-09-12 Thread Kris Kennaway
Sergey Matveychuk wrote: Erwin Lansing wrote: INDEX build failed with errors: Generating INDEX-5 - please wait..pkg_info: not found pkg_info: not found pkg_info: not found Makefile, line 60: warning: /usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2/dev/null | /usr/bin/grep Server- ||

Re: openoffice crashes the whole system

2007-09-12 Thread Kris Kennaway
h wrote: I've had this bug twice already ... When pasting from a selection made on a website (typically, a confirmation page after ordering something online, because I have no printer, and I'm too lazy to try to print from popups), openoffice first hangs, then eventually X goes black and the

Re: compat-6x does not work when kernel has NO_KSE

2007-09-12 Thread Kris Kennaway
Jiawei Ye wrote: On 9/12/07, Jiawei Ye [EMAIL PROTECTED] wrote: [/usr/local/diablo-jdk1.5.0/jre/bin/java] libpthread.so.2 libthr.so Changing this to libthr.so.2 fixes the problem. Sorry about the noise. Regards, Jiawei Thanks, that's very useful to know. In the future we will be

Re: compat-6x does not work when kernel has NO_KSE

2007-09-12 Thread Kris Kennaway
Timur I. Bakeyev wrote: On Wed, Sep 12, 2007 at 10:21:59AM -0400, Vivek Khera wrote: On Sep 12, 2007, at 5:37 AM, Jiawei Ye wrote: On 9/12/07, Jiawei Ye [EMAIL PROTECTED] wrote: [/usr/local/diablo-jdk1.5.0/jre/bin/java] libpthread.so.2 libthr.so Changing this to libthr.so.2 fixes the

Re: bsd.port.options.mk status

2007-09-10 Thread Kris Kennaway
Dmitry Marakasov wrote: * Pav Lucistnik ([EMAIL PROTECTED]) wrote: It's possible to use this feature, but only on -CURRENT and -STABLE FreeBSD systems newer than certain date. No existing release supports it - it will be supported in upcoming 6.3 and 7.0. Erm, isn't ports code (more or less)

Re: Bad line in Makefile for /usr/ports/audio/mbrolavox

2007-09-09 Thread Kris Kennaway
[EMAIL PROTECTED] wrote: Dear [EMAIL PROTECTED] I am using the PORTS supplied with PCBSD 1.4RC on CD2 . I have updated my PORTS recently. I do not know where this sytem gets the PORTS from but anyway .. There is a bug in this Makefile (

Re: any standard method to fetch a port's sources from svn (or cvs, etc) ?

2007-09-09 Thread Kris Kennaway
Luigi Rizzo wrote: as the subject says, i was wondering if there is any standard method to fetch the sources for a port from a Subversion (or CVS or other scm) repository. Right now i am doing it with the following sequence (the use of update vs checkout is because originally i fetched into

Re: ports/116078: bsd.port.mk - Handling of PREFIX doesn't work as documented

2007-09-04 Thread Kris Kennaway
Markus Hitter wrote: Am 04.09.2007 um 17:08 schrieb Kris Kennaway: To reiterate: in most but not all configurations, users who set PREFIX to a nonstandard location should also set LOCALBASE to the same location. If any documentation needs to be corrected to clarify this, please redirect

Re: ports system and umask

2007-09-02 Thread Kris Kennaway
martinko wrote: Marcus Reid wrote: Hi, I had my umask set to 007 and installed some ports, and it broke a lot of things. Some ports seem to install files with correct permissions, while others install files with the default umask. Worse, one port even changed the perms on /usr/local/lib to

Re: Has it ever been possible to build all of gnome or gnome2 at once?

2007-08-30 Thread Kris Kennaway
Lars Eighner wrote: Today it muine that won't build, but it always something. And make readmes are still broken. Yes, of course. Kris ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To

Re: INDEX build failed for 5.x

2007-08-15 Thread Kris Kennaway
On Wed, Aug 15, 2007 at 11:52:39AM +, Erwin Lansing wrote: INDEX build failed with errors: Generating INDEX-5 - please wait.. Done. make_index: tme-0.4_3: no entry for /usr/ports/devel/pkg-config I think this is because pointyhat's / filled up, sorry. Kris pgpLfYZNfjAcS.pgp Description:

  1   2   3   4   >