From owner-freebsd-ports@FreeBSD.ORG Sun Nov 23 04:56:33 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B4E91065672 for ; Sun, 23 Nov 2008 04:56:33 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by mx1.freebsd.org (Postfix) with ESMTP id 687348FC08 for ; Sun, 23 Nov 2008 04:56:33 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (localhost [127.0.0.1]) by bunrab.catwhisker.org (8.13.3/8.13.3) with ESMTP id mAN4faF3037948 for ; Sat, 22 Nov 2008 20:41:36 -0800 (PST) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.13.3/8.13.1/Submit) id mAN4fa88037947 for ports@freebsd.org; Sat, 22 Nov 2008 20:41:36 -0800 (PST) (envelope-from david) Date: Sat, 22 Nov 2008 20:41:36 -0800 From: David Wolfskill To: ports@freebsd.org Message-ID: <20081123044136.GA37853@bunrab.catwhisker.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="98e8jtXdkpgskNou" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Cc: Subject: [david@catwhisker.org: Re: Heads up: Another bug in piewm (and not in tvtwm)] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 04:56:33 -0000 --98e8jtXdkpgskNou Content-Type: multipart/mixed; boundary="HcAYCG3uE/tztfnV" Content-Disposition: inline --HcAYCG3uE/tztfnV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable FYI -- I found a bug (described below) in x11-wm/piewm; I removed the patch from the forwarded copy of the message I sent to Russ Nelson, and have attached it to this one for convenience -- just in case there's anyone else out there who still uses piewm. :-} I have not created a FreeBSD PR for this, but I can, if that's desired. ----- Forwarded message from David Wolfskill ----- Date: Sat, 22 Nov 2008 12:29:10 -0800 From: David Wolfskill To: Russell Nelson Subject: Re: Heads up: Another bug in piewm (and not in tvtwm) On Sat, Nov 22, 2008 at 11:52:39AM -0800, David Wolfskill wrote: > I don't have a patch yet, but the problem is in InstallWindowColormaps() > in events.c. >=20 > If, while running piewm, one fires up Xnest, piewm gets a SIGSEGV > in InstallWindowColormaps, at events.c:2601 when the mouse travels > over the Xnest window: >...=20 > I'm hoping to have a patch before the weekend is out, but I confess > that I'm not all that familiar with the code. >=20 > .... OK; the attached patch appears to prevent the problem. The problem appears to be that the loop control variable, n, is being decremented only within a conditional block; when there are "cwin"s that fail to meet the condition, it isn't decremented, so the loop goes further than it's supposed to. (In the case in point, n started out as 2, and the 3rd iteration of the loop had a bit of a problem, as by thta point, maxcwin would be pointiing to cwins[-1]. Urrgh.) Peace, david --=20 David H. Wolfskill david@catwhisker.org Depriving a girl or boy of an opportunity for education is evil. See http://www.catwhisker.org/~david/publickey.gpg for my public key. ----- End forwarded message ----- Peace, david --=20 David H. Wolfskill david@catwhisker.org Depriving a girl or boy of an opportunity for education is evil. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --HcAYCG3uE/tztfnV Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="events.c.diff" Content-Transfer-Encoding: quoted-printable --- events.c.orig 1998-01-07 22:11:39.000000000 -0800 +++ events.c 2008-11-22 12:13:35.000000000 -0800 @@ -2606,8 +2606,8 @@ XInstallColormap(dpy, cmap->c); } cmap->state |=3D CM_INSTALLED; - n--; } + n--; } } =20 --HcAYCG3uE/tztfnV-- --98e8jtXdkpgskNou Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iEYEARECAAYFAkko3v8ACgkQmprOCmdXAD1VNQCfUluQSXWqy1yRQPGcGEu7T4rd bKAAn2gggjbLZpBYDSrfm64ZdtSNsXSG =IWOF -----END PGP SIGNATURE----- --98e8jtXdkpgskNou-- From owner-freebsd-ports@FreeBSD.ORG Sun Nov 23 08:55:49 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCE9C1065672; Sun, 23 Nov 2008 08:55:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A0BE78FC1A; Sun, 23 Nov 2008 08:55:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id mAN8tnjs091505; Sun, 23 Nov 2008 08:55:49 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id mAN8tmXo091500; Sun, 23 Nov 2008 08:55:48 GMT (envelope-from miwi) Date: Sun, 23 Nov 2008 08:55:48 GMT Message-Id: <200811230855.mAN8tmXo091500@freefall.freebsd.org> To: ports@freebsd.org, freebsd-security@freebsd.org, rea-fbsd@codelabs.ru, miwi@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/128999: [vuxml] [patch] update audio/streamripper to 1.64.0, fix CVE-2008-4829 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 08:55:49 -0000 Synopsis: [vuxml] [patch] update audio/streamripper to 1.64.0, fix CVE-2008-4829 State-Changed-From-To: open->closed State-Changed-By: miwi State-Changed-When: Sun Nov 23 08:55:48 UTC 2008 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=128999 From owner-freebsd-ports@FreeBSD.ORG Sun Nov 23 11:42:09 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40C551065674 for ; Sun, 23 Nov 2008 11:42:09 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.24]) by mx1.freebsd.org (Postfix) with ESMTP id C30B18FC1A for ; Sun, 23 Nov 2008 11:42:07 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so655525eyi.7 for ; Sun, 23 Nov 2008 03:42:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=NGOSe0mlgHkgkNRaX/Oc/idl6+65OvcPILtliNNboCc=; b=wq0mlCvCg7ebgL6H/lE3EWqHHTRsDzlbh8T+xafBhpuII2aVOW9pJyWw7IHLDKj/24 LLykr3bFrxWk00/q9+t0BjbyhnmSDHZy/6o8Kb8Ay2zOTJ2KROn754XaopD4GZoeK+5z WxKKF4rCd5sNSMLGeEEe8d7rr0HD443fd0AWg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=eGPWpa+UnrGyaE2wYaFnTZGW3Rv+3qBCK/HKjou+aIX+eWNpjzJJYhhhdOtthWZ6h6 qk2b9Haudzd2CDGsd3z9MTZOMSe4HHHO6vC78Emeva/vAW/6neJojU8uxarLbvKhtD5t R7+G/ru/MkrwhrZC9bcjOPcwgNFYFMpXhl0dk= Received: by 10.210.125.13 with SMTP id x13mr2525580ebc.198.1227440527012; Sun, 23 Nov 2008 03:42:07 -0800 (PST) Received: from self.rene-ladan.nl ([77.163.174.49]) by mx.google.com with ESMTPS id k7sm494843nfh.17.2008.11.23.03.42.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 23 Nov 2008 03:42:05 -0800 (PST) Message-ID: <4929418B.8060907@gmail.com> Date: Sun, 23 Nov 2008 12:42:03 +0100 From: Rene Ladan User-Agent: Thunderbird 2.0.0.17 (X11/20080927) MIME-Version: 1.0 To: Torfinn Ingolfsen References: <4919DFEB.3020709@gmail.com> <4921D25C.8010409@gmail.com> In-Reply-To: X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: CFT: astro/boinc-setiathome-enhanced update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 11:42:09 -0000 Torfinn Ingolfsen schreef: > Hello, > > FWIW, even if I disable astropulse, the problems remains the same. > root@kg-vm# make showconfig > ===> The following configuration options are available for > boinc-setiathome-enhanced-6.03.4.28: > SETI_APP=on "Install SETI@home binary" > AP_APP=off "Install Astropulse binary" > ===> Use 'make config' to modify these settings > > Here are the last few lines from 'make': > configure: "--- Configuring SETI_BOINC 6.03 (client only) ---" > checking whether to enable maintainer-specific portions of Makefiles... no > checking for g++... g++ > checking for C++ compiler default output file name... > configure: error: C++ compiler cannot create executables > See `config.log' for more details. > *** Error code 77 > > Stop in /usr/ports/astro/boinc-setiathome-enhanced. > *** Error code 1 > > Stop in /usr/ports/astro/boinc-setiathome-enhanced. > > > I believe the problem can be tracked to these lines in config.log: > configure:3290: checking for C++ compiler default output file name > configure:3312: g++ -O -pipe -I/usr/local/include > -I/usr/local/include/BOINC -L/usr/local/lib -O3 -mtune=native -march= > -fno-strict-aliasing -O -pipe -I/usr/local/include > -I/usr/local/include/BOINC -L/usr/local/lib -O3 -mtune=native -march= > -fno-strict-aliasing -L/usr/local/lib conftest.cpp >&5 > cc1plus: error: missing argument to "-march=" > cc1plus: error: missing argument to "-march=" > > No, I don't have CC or CXX set, neiher in /etc/make.conf nor in the environment. My bad, I defined march=${CPUTYPE} at line 34 of the port Makefile. Removing that should hopefully enable you to build the port (both setiathome and astropulse). /usr/share/mk/bsd.cpu.mk doesn't set a default CPUTYPE. I've modified the Makefile at that point to read: 34: CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/BOINC -L${LOCALBASE}/lib -O3 -mtune=native +35: .if defined(CPUTYPE) +36: CFLAGS+= -march=${CPUTYPE} +37: .endif Thanks for testing it :) Regards, Rene -- http://www.rene-ladan.nl/ GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) From owner-freebsd-ports@FreeBSD.ORG Sun Nov 23 13:33:42 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB9DD1065670 for ; Sun, 23 Nov 2008 13:33:42 +0000 (UTC) (envelope-from axel.burwitz@arcor.de) Received: from mail-in-09.arcor-online.net (mail-in-09.arcor-online.net [151.189.21.49]) by mx1.freebsd.org (Postfix) with ESMTP id 743A88FC0A for ; Sun, 23 Nov 2008 13:33:42 +0000 (UTC) (envelope-from axel.burwitz@arcor.de) Received: from mail-in-05-z2.arcor-online.net (mail-in-05-z2.arcor-online.net [151.189.8.17]) by mail-in-09.arcor-online.net (Postfix) with ESMTP id 568A8302A6F; Sun, 23 Nov 2008 14:00:34 +0100 (CET) Received: from mail-in-16.arcor-online.net (mail-in-16.arcor-online.net [151.189.21.56]) by mail-in-05-z2.arcor-online.net (Postfix) with ESMTP id 443412DAE2E; Sun, 23 Nov 2008 14:00:34 +0100 (CET) Received: from freebsd (dslb-084-058-051-230.pools.arcor-ip.net [84.58.51.230]) (Authenticated sender: axel.burwitz@arcor.de) by mail-in-16.arcor-online.net (Postfix) with ESMTP id 04D1E236E46; Sun, 23 Nov 2008 14:00:33 +0100 (CET) Date: Sun, 23 Nov 2008 14:00:18 +0100 To: jason.harmening@gmail.com From: "Axel Burwitz" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Message-ID: User-Agent: Opera Mail/9.62 (FreeBSD) X-Virus-Scanned: ClamAV 0.94.1/8666/Sun Nov 23 11:41:19 2008 on mail-in-16.arcor-online.net X-Virus-Status: Clean Cc: ports@freebsd.org Subject: FreeBSD Port: cx88-1.0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: axel.burwitz@arcor.de List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 13:33:42 -0000 Hi Jason, I am trying to get my DVB-T card Hauppauge WinTV-HVR-1300 running with the CX88 driver sw, at the moment without success. Knowledgeable guys in bsdforen.de advised me to contact you for help. As pkg-descr says: cx88 provides drivers for TV/radio capture cards based on the Conexant CX23880/1/2/3 series of chips. This port includes the cx88 kernel drivers as well as a simple app for HDTV capture. It requires multimedia/libtuner for channel selection and peripheral configuration. and a pciconf -lv gives: none1@pci0:4:3:0: class=0x040000 card=0x96010070 chip=0x880014f1 rev=0x05 hdr=0x00 vendor = 'Conexant Systems, Inc.' device = '23880 Conexant 23880 Video Capture (NTSC)' class = multimedia subclass = video none2@pci0:4:3:1: class=0x048000 card=0x96010070 chip=0x881114f1 rev=0x05 hdr=0x00 vendor = 'Conexant Systems, Inc.' device = 'CX2388x TV Capture Chip' class = multimedia none3@pci0:4:3:2: class=0x048000 card=0x96010070 chip=0x880214f1 rev=0x05 hdr=0x00 vendor = 'Conexant Systems, Inc.' device = 'CX2388x TV Capture Chip' class = multimedia I compiled and loaded all cx88 parts: freebsd# kldstat Id Refs Address Size Name 1 23 0xc0400000 49ab80 kernel ... .... 9 6 0xc6813000 6000 cx88.ko 10 1 0xc681a000 6000 cx88video.ko 11 3 0xc6820000 3000 iicdev.ko 12 5 0xc6823000 3000 iicbus.ko 13 3 0xc6826000 4000 cx88i2c.ko 14 1 0xc682a000 8000 cx88audio.ko 15 1 0xc684d000 3000 cx88ir.ko 16 1 0xc6851000 5000 cx88mpeg.ko principally I think the card is found by system: pci4: at device 3.0 (no driver attached) pci4: at device 3.1 (no driver attached) pci4: at device 3.2 (no driver attached) I don't find any manual or doc for further analysis or steps. Do you have any ideas how to proceed? best regards Axel -- Opera 9.6 e-mail client FreeBSD 7.1 From owner-freebsd-ports@FreeBSD.ORG Sun Nov 23 13:53:56 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82364106564A for ; Sun, 23 Nov 2008 13:53:56 +0000 (UTC) (envelope-from tingox@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id 266918FC0A for ; Sun, 23 Nov 2008 13:53:55 +0000 (UTC) (envelope-from tingox@gmail.com) Received: by qyk11 with SMTP id 11so1464953qyk.19 for ; Sun, 23 Nov 2008 05:53:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=m6BHySmEvoHN2N/oYRBtH/RU5lGzV9SHSzInX3ReAKk=; b=g7m1JJRm+mZtKa1qHm5f300jnJi/n8eaSbx/jvYBR3YSV21MwQyofOtrVt8JV16vkw gHuEBY+TwlHECaMXGJENPfQ3yliUZT+qM7IhLepT45pV7iiM4TuW9sN+40E4n/BSmRpF CTmmAuTTtNAX+Yi0yANfPrA1VKYw/5XtjylYY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=krVv3/qzcD6lytspoxYDF9ASS8gj9Z+CHcOBGWxgRYF34jxqvDKMhkmrP7l+5m9E7E gd+s680N/fHk/jLtDljAedViMDts8kMXfFcs3qCArTzWuT73atTJoABwhYM9SbQQDdjI Rf44A7GCtNghzasvgk/+gdQ8qIFr6xhixsOS8= Received: by 10.215.100.9 with SMTP id c9mr1413554qam.356.1227448434972; Sun, 23 Nov 2008 05:53:54 -0800 (PST) Received: by 10.215.12.3 with HTTP; Sun, 23 Nov 2008 05:53:54 -0800 (PST) Message-ID: Date: Sun, 23 Nov 2008 14:53:54 +0100 From: "Torfinn Ingolfsen" To: freebsd-ports@freebsd.org In-Reply-To: <4929418B.8060907@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4919DFEB.3020709@gmail.com> <4921D25C.8010409@gmail.com> <4929418B.8060907@gmail.com> Cc: Rene Ladan Subject: Re: CFT: astro/boinc-setiathome-enhanced update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 13:53:56 -0000 Hello, On Sun, Nov 23, 2008 at 12:42 PM, Rene Ladan wrote: > I've modified the Makefile at that point to read: > > 34: CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/BOINC > -L${LOCALBASE}/lib -O3 -mtune=native > +35: .if defined(CPUTYPE) > +36: CFLAGS+= -march=${CPUTYPE} > +37: .endif With this change, the build gets a little further, but then stops with: /usr/local/include/BOINC/config.h:440:1: warning: "VERSION" redefined In file included from gdata.cpp:28: ../sah_config.h:518:1: warning: this is the location of the previous definition In file included from gdata.cpp:33: gdata.h:39:20: error: reduce.h: No such file or directory In file included from gdata.cpp:33: gdata.h:148: error: 'REDUCED_ARRAY_DATA' does not name a type gmake[2]: *** [seti_boinc-gdata.o] Error 1 gmake[2]: Leaving directory `/usr/ports/astro/boinc-setiathome-enhanced/work/seti_boinc/client' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/astro/boinc-setiathome-enhanced/work/seti_boinc' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/astro/boinc-setiathome-enhanced. *** Error code 1 Stop in /usr/ports/astro/boinc-setiathome-enhanced. The file reduce.h doesnt seem to be on my machine at all, and the souce code cross reference at fxr.watson.org doesn't seem to know it either: http://fxr.watson.org/fxr/find?string=reduce.h > Thanks for testing it :) No problem. :-) -- Regards, Torfinn Ingolfsen From owner-freebsd-ports@FreeBSD.ORG Sun Nov 23 14:36:52 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42EA61065677 for ; Sun, 23 Nov 2008 14:36:52 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by mx1.freebsd.org (Postfix) with ESMTP id C3C718FC1D for ; Sun, 23 Nov 2008 14:36:51 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so827746nfh.33 for ; Sun, 23 Nov 2008 06:36:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=ERtkFa4foSx1Bih7f1hXnqOF6aJZu88D+7MmeSPPBZk=; b=q7xOMjqAqyRUQ2e4c4w2iZwEO+b6rSgYI1kr8MKwlgYe37pYu2HALwPf2n1rw42+VK Le4GqeJAk9n0d0TQesSRZfIHIW8ph7O56KgZ9PhDfihuQylEnpzmTyI86UakvYxXMpv6 S/r/kl7nMmSRstJaDn+7P31SrW6njMyT1nnHU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=Vj3W4ArfHFDTHr6ih13KGxC1VCHakQIGHo2LTnc81wI5ty2wfUNauMHZ/Ak1Q8RJpi x6qtR8el6+PMJgGeultKJCiKlyp5gZo6lbvgcFnftZe+GvpsWm2Ck2sMg1A8xKcxfnZQ C9A1+vsbIcltrP3iS1ALXVqknPx5z3cTq54Mo= Received: by 10.210.104.20 with SMTP id b20mr2677509ebc.29.1227451010449; Sun, 23 Nov 2008 06:36:50 -0800 (PST) Received: from self.rene-ladan.nl ([77.163.174.49]) by mx.google.com with ESMTPS id d2sm791822nfc.20.2008.11.23.06.36.49 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 23 Nov 2008 06:36:49 -0800 (PST) Message-ID: <49296A80.4060607@gmail.com> Date: Sun, 23 Nov 2008 15:36:48 +0100 From: Rene Ladan User-Agent: Thunderbird 2.0.0.17 (X11/20080927) MIME-Version: 1.0 To: Torfinn Ingolfsen References: <4919DFEB.3020709@gmail.com> <4921D25C.8010409@gmail.com> <4929418B.8060907@gmail.com> In-Reply-To: X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: CFT: astro/boinc-setiathome-enhanced update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 14:36:52 -0000 Torfinn Ingolfsen schreef: > Hello, > > On Sun, Nov 23, 2008 at 12:42 PM, Rene Ladan wrote: >> I've modified the Makefile at that point to read: >> >> 34: CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/BOINC >> -L${LOCALBASE}/lib -O3 -mtune=native >> +35: .if defined(CPUTYPE) >> +36: CFLAGS+= -march=${CPUTYPE} >> +37: .endif > > With this change, the build gets a little further, but then stops with: > > /usr/local/include/BOINC/config.h:440:1: warning: "VERSION" redefined > In file included from gdata.cpp:28: > ../sah_config.h:518:1: warning: this is the location of the previous definition > In file included from gdata.cpp:33: > gdata.h:39:20: error: reduce.h: No such file or directory > In file included from gdata.cpp:33: > gdata.h:148: error: 'REDUCED_ARRAY_DATA' does not name a type > gmake[2]: *** [seti_boinc-gdata.o] Error 1 > gmake[2]: Leaving directory > `/usr/ports/astro/boinc-setiathome-enhanced/work/seti_boinc/client' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory > `/usr/ports/astro/boinc-setiathome-enhanced/work/seti_boinc' > gmake: *** [all] Error 2 > *** Error code 2 > > Stop in /usr/ports/astro/boinc-setiathome-enhanced. > *** Error code 1 > > Stop in /usr/ports/astro/boinc-setiathome-enhanced. > > > The file reduce.h doesnt seem to be on my machine at all, and the > souce code cross reference at fxr.watson.org doesn't seem to know it > either: http://fxr.watson.org/fxr/find?string=reduce.h > Nope, this file is part of net/boinc-client. The current port doesn't install some files needed for the update. I once copied them manually to /usr/local/include/BOINC and completely forgot about that afterwards. The required files are: reduce.h, graphics_data.h, graphics_api.h, and boinc_gl.h. The last three are probably only required when the screensavers are built, which is currently disabled. The files can be found in /usr/ports/net/boinc-client/work/boinc-client-6.2.14/api after `make patch'. >> Thanks for testing it :) > > No problem. :-) Regards, Rene -- http://www.rene-ladan.nl/ GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) From owner-freebsd-ports@FreeBSD.ORG Sun Nov 23 16:19:11 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F89B1065704 for ; Sun, 23 Nov 2008 16:19:11 +0000 (UTC) (envelope-from almindor@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.152]) by mx1.freebsd.org (Postfix) with ESMTP id D5BB38FC16 for ; Sun, 23 Nov 2008 16:19:10 +0000 (UTC) (envelope-from almindor@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so1256868fgb.35 for ; Sun, 23 Nov 2008 08:19:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:x-mailer:mime-version:content-type :content-transfer-encoding; bh=kZwSxhX/0cfx6SxIxxSVb8PdSjm2Kucll8LmugDq0L4=; b=rvmChlD7NMChLZvl1iqcezYC7Y51Yoml2gif4BVXV8cX+9p4toXud1UXXINVWKU5om N76QsZA+QCYy91L4T/l0w8Vv6NWzbi7HudbNV1B0IGat07p1E1JLlN4eMrUH/BkupufR B87ydnmQYUzkJ3iM/r1yIbnSMr2SMImsabgfE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:x-mailer:mime-version:content-type :content-transfer-encoding; b=F0YrNRvlKTYy4h3KKFMrXP4Npitc/Pw5/cRAR0bJ2amzCD0F0dsv5GpLCDYfoPDS2c 63X6EvEpz9CXe55l9CWS5Tn72m09IPi+3+MI6zUqVbgeqgalo0AyPRNTW2Q3QQz64ClR wHGVhgL6QJdDPtm6Muq71Yyhtblcj3kchiqMQ= Received: by 10.86.86.12 with SMTP id j12mr1692741fgb.64.1227455597435; Sun, 23 Nov 2008 07:53:17 -0800 (PST) Received: from XERXES (chello085216194047.chello.sk [85.216.194.47]) by mx.google.com with ESMTPS id 4sm5706961fge.8.2008.11.23.07.53.15 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 23 Nov 2008 07:53:16 -0800 (PST) Date: Sun, 23 Nov 2008 16:52:29 +0100 From: =?UTF-8?B?QWxlxaE=?= Katona To: ports@FreeBSD.org Message-ID: <20081123165229.0dbc2ee0@XERXES> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; amd64-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Subject: zipios++ and gcc3 requirement X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 16:19:11 -0000 Hello, in zipios++ port Makefile there's a comment before USE_GCC line saying: # port don't strictly need it, but Wesnoth use it so must we I think this is old info, I've installed Wesnoth before zipios++ (so it doesn't even depend on it) and zipios++ works with gcc4. As a testcase, enigma, which depends on it, works fine as well. So unless there's any other reason, I propose to remove the USE_GCC line. Thanks, Ales Katona P.S: If this is a ML, I'm not in it, please reply to my mail directly. From owner-freebsd-ports@FreeBSD.ORG Sun Nov 23 23:13:35 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4E9410656DA for ; Sun, 23 Nov 2008 23:13:34 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.178]) by mx1.freebsd.org (Postfix) with ESMTP id 452788FC19 for ; Sun, 23 Nov 2008 23:13:33 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: by ik-out-1112.google.com with SMTP id c21so1462508ika.3 for ; Sun, 23 Nov 2008 15:13:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=IDHu0g6tc6/87ZlT0mw4yHCx8QMOxt9w1ERfcXe54EI=; b=HMg5Xj5zt+zVqznP6F5bzJS8w6YGAIxSX+5JIVpThz/v1KYzxZhtglDN9zPkHzvLOs zT/ANWhzRyutEqqsT2SAodIBsMoPcxSJXAJnF2bI9B+4Y+S5ej9SPKJwN2Np4gq5PuzI C0qEsnnY5xW7Lr0C0CNSzFhpNOhHBrqbs17Y4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=VjxFMSpf5/6K2oGDxNHiHjNsOPFc2gUB7TQPoc6tGKOo9REJqjzRgXCmC2fWL5KtPp oD5ZVEUbF2KWyA+UDM0xMxc2UbJIMQbU3p+Vd398w4iyY4gL/wZs4yExlyb+CwCy3mNd 7lm1C6U2JVVmwtiivWqd6xRUQBsNXYJ9qeFNA= Received: by 10.210.24.12 with SMTP id 12mr2998048ebx.31.1227482012613; Sun, 23 Nov 2008 15:13:32 -0800 (PST) Received: by 10.210.130.15 with HTTP; Sun, 23 Nov 2008 15:13:32 -0800 (PST) Message-ID: <3cb459ed0811231513o6da3fc1dmf2af3545299ca5c4@mail.gmail.com> Date: Mon, 24 Nov 2008 02:13:32 +0300 From: "Alexander Churanov" To: freebsd-ports@freebsd.org In-Reply-To: <3cb459ed0811170402i72142866qb0921fbe65746ae1@mail.gmail.com> MIME-Version: 1.0 References: <20c4814a0811030712n4105c765p23983b55f729b25e@mail.gmail.com> <20081103223115.78fbbaef.ehaupt@FreeBSD.org> <3cb459ed0811031506g4b450865q34d33988a688c3@mail.gmail.com> <20081104002942.f136adec.ehaupt@FreeBSD.org> <20c4814a0811050113i1bed72abu84b16c7343f93c4f@mail.gmail.com> <20081105180245.GA51239@server.vk2pj.dyndns.org> <3cb459ed0811091430u46bb1eb9y5dccdab051e8a981@mail.gmail.com> <3cb459ed0811170402i72142866qb0921fbe65746ae1@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Boost 1.37 released! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 23:13:35 -0000 Hi folks! This is a status update on boost-1.37 porting. Currently port builds, installs and removes successfully. However, a PR is not filed, because I've suddenly discovered the way 'boost-python' port works. So, I've decided to take additional time for verifying that 'boost-python' is OK. I suspect that at present at least pkg-plist is not complete. My estimate for completing the work is is 2-3 days from now. For the future, I'd like to discuss the possibility of breaking boost into pieces and installing them separately. The 'devel/boost-jam' port would install bjam, the 'devel/boost/' port would install all but python-related stuff, the 'devel/boost-python' port would add pyhon stuff to existing boost installation, and 'devel/boost-build' would do something simiar to what it does now. To my mind suggested approach would simplify understanding of how to install boost. The user would ask a question like 'should I add python to my boost installation' instead of 'is my boost built with python support or not'. The only drawback I see is that several ports would require the same source tarball. For people interested in trying new port early current port tarball is placed at http://www.driveway.com/n2g6d8k2m0 Alexander Churanov From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 03:05:25 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A9BB1065670 for ; Mon, 24 Nov 2008 03:05:25 +0000 (UTC) (envelope-from Cy.Schubert@komquats.com) Received: from idcmail-mo2no.shaw.ca (idcmail-mo2no.shaw.ca [64.59.134.9]) by mx1.freebsd.org (Postfix) with ESMTP id 541158FC0C for ; Mon, 24 Nov 2008 03:05:25 +0000 (UTC) (envelope-from Cy.Schubert@komquats.com) Received: from pd7ml2no-ssvc.prod.shaw.ca ([10.0.153.162]) by pd5mo1no-svcs.prod.shaw.ca with ESMTP; 23 Nov 2008 19:36:56 -0700 X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.0 c=0 a=_0sbVOI1mbRVL4gLLf4A:9 a=a2gKhtgg1c1bt60cUq4tzuVQV4UA:4 a=Er2gK3W4G3kA:10 a=V7tsTZBp22UA:10 a=wAGQQ9Az6v0A:10 Received: from s01060002b31a8191.gv.shawcable.net (HELO spqr.komquats.com) ([24.68.166.226]) by pd7ml2no-dmz.prod.shaw.ca with ESMTP; 23 Nov 2008 19:36:55 -0700 Received: from cwsys.cwsent.com (cwsys [10.1.1.1]) by spqr.komquats.com (Postfix) with ESMTP id 4F0F4410FC for ; Sun, 23 Nov 2008 18:36:55 -0800 (PST) Received: from cwsys (localhost [127.0.0.1]) by cwsys.cwsent.com (8.14.3/8.14.3) with ESMTP id mAO2asIi011993 for ; Sun, 23 Nov 2008 18:36:54 -0800 (PST) (envelope-from Cy.Schubert@komquats.com) Message-Id: <200811240236.mAO2asIi011993@cwsys.cwsent.com> X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.2 From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.komquats.com/ To: freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 23 Nov 2008 18:36:54 -0800 Sender: Cy.Schubert@komquats.com Subject: Openoffice.org 2.4 & 3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Cy Schubert List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 03:05:25 -0000 Can Openoffice.org 2.4 and 3.0 coexist on the same system? Also, importing spellcheck dictionaries into either version results in "bad tranfer url". Is there a solution to this? -- Cheers, Cy Schubert From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 03:16:06 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1058D1065771; Mon, 24 Nov 2008 03:16:06 +0000 (UTC) (envelope-from matt@marketrends.net) Received: from smtp.a1prohost.com (smtp.a1prohost.com [216.171.218.5]) by mx1.freebsd.org (Postfix) with ESMTP id E9C898FC16; Mon, 24 Nov 2008 03:16:05 +0000 (UTC) (envelope-from matt@marketrends.net) Received: from [192.168.10.59] (h-64-105-138-181.snvacaid.covad.net [64.105.138.181]) by smtp.a1prohost.com (8.14.3/8.14.2) with ESMTP id mAO30C2C036981; Sun, 23 Nov 2008 19:00:12 -0800 (PST) (envelope-from matt@marketrends.net) Message-ID: <492A1898.9080405@marketrends.net> Date: Sun, 23 Nov 2008 18:59:36 -0800 From: Matt Tourtillott User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: clement@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org Subject: FreeBSD Port: apache-2.0.63_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 03:16:06 -0000 Hello Clement, I am running a FreeBSD 7.0 64bit server with apache 2.0.63_2 port installed and the server is failing a PCI compliance issue with apache. This is what they are saying Synopsis : The remote web server is vulnerable to a cross-site scripting attack. Description : The mod_proxy_ftp module in the version of Apache installed on the remote host fails to properly sanitize user-supplied URL input before using it to generate dynamic HTML output. Using specially crafted requests for FTP URLs with globbing characters (such as asterisk, tilde, opening square bracket, etc), an attacker may be able to leverage this issue to inject arbitrary HTML and script code into a user's browser to be executed within the security context of the affected site. See also : http://www.rapid7.com/advisories/R7-0033 http://www.securityfocus.com/archive/1/4 95180/100/0/threaded http://www.apache.org/dist/httpd/CHANGES _2.2.10 http://httpd.apache.org/security/vulnera bilities_22.html *Solution*: Either disable the affected module or upgrade to Apache version 2.2.10 or later. *Risk Factor*: Medium / CVSS Base Score : 4.3 (CVSS2#AV:N/AC:M/Au:N/C:N/I:P/A:N) CVE : CVE-2008-2939 BID : 30560 Other references : OSVDB:47474 I don't even have this module installed. Do you know when 2.0.64 will be available in the ports tree or have any other suggestion that will help solve this issue? Thanks, Matt MarkeTrends, inc. [More] I From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 10:55:23 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 958611065673 for ; Mon, 24 Nov 2008 10:55:23 +0000 (UTC) (envelope-from ml@netfence.it) Received: from parrot.aev.net (parrot.aev.net [212.31.247.179]) by mx1.freebsd.org (Postfix) with ESMTP id 12B2C8FC16 for ; Mon, 24 Nov 2008 10:55:22 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.ventu (adsl-ull-148-12.51-151.net24.it [151.51.12.148]) (authenticated bits=128) by parrot.aev.net (8.14.3/8.14.2) with ESMTP id mAOArWxB079240 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Mon, 24 Nov 2008 11:53:40 +0100 (CET) (envelope-from ml@netfence.it) Received: from alamar.ventu (alamar.ventu [10.1.2.18]) by soth.ventu (8.14.3/8.14.2) with ESMTP id mAOAupxi021272; Mon, 24 Nov 2008 11:56:51 +0100 (CET) (envelope-from ml@netfence.it) Message-ID: <492A880E.5090908@netfence.it> Date: Mon, 24 Nov 2008 11:55:10 +0100 From: Andrea Venturoli User-Agent: Thunderbird 2.0.0.17 (X11/20080928) MIME-Version: 1.0 To: Alexander Churanov References: <20c4814a0811030712n4105c765p23983b55f729b25e@mail.gmail.com> <20081103223115.78fbbaef.ehaupt@FreeBSD.org> <3cb459ed0811031506g4b450865q34d33988a688c3@mail.gmail.com> <20081104002942.f136adec.ehaupt@FreeBSD.org> <20c4814a0811050113i1bed72abu84b16c7343f93c4f@mail.gmail.com> <20081105180245.GA51239@server.vk2pj.dyndns.org> <3cb459ed0811091430u46bb1eb9y5dccdab051e8a981@mail.gmail.com> <3cb459ed0811170402i72142866qb0921fbe65746ae1@mail.gmail.com> <3cb459ed0811231513o6da3fc1dmf2af3545299ca5c4@mail.gmail.com> In-Reply-To: <3cb459ed0811231513o6da3fc1dmf2af3545299ca5c4@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.64 on 212.31.247.179 Cc: freebsd-ports@freebsd.org Subject: Re: Boost 1.37 released! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 10:55:23 -0000 Alexander Churanov ha scritto: > ... To my mind suggested approach would simplify understanding of how > to install boost. The user would ask a question like 'should I add python to > my boost installation' instead of 'is my boost built with python support or > not'. Sounds like a good idea to me. bye & Thanks av. From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 11:06:08 2008 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55FEE10656D8 for ; Mon, 24 Nov 2008 11:06:08 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 439788FC16 for ; Mon, 24 Nov 2008 11:06:08 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id mAOB68YQ018955 for ; Mon, 24 Nov 2008 11:06:08 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id mAOB67vI018951 for freebsd-ports@FreeBSD.org; Mon, 24 Nov 2008 11:06:07 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Nov 2008 11:06:07 GMT Message-Id: <200811241106.mAOB67vI018951@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Cc: Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 11:06:08 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/129124 Maxmind now charges for update f ports/129123 [PATCH] japanese/ctags: update to 5.7j1 f ports/129086 [patch] Update port audio/ventrilo-server to 3.0.3 o ports/129069 [UPDATE] www/asterisk-gui to 2.0.4 f ports/129063 Update math/R to version 2.8.0 o ports/129043 Experimental version of net/poptop in FreeBSD ports o ports/129042 net/poptop Segmentation fault () from use options [-h] o ports/128952 [NEW PORT] java/javadb: Sun's supported distribution o o ports/128846 New port: sysutils/linux-megacli2 - LSI MegaRAID SAS c f ports/128753 update www/linux-flashplugin9 o ports/128726 [NEW PORT] print/lyx16: Document processor interfaced f ports/128703 net/isc-dhcp40-client and net/isc-dhcp40-relay refer t o ports/128603 textproc/flex has too small capacity o ports/128558 New ports: emulators/sdlmame-devel f ports/128537 [patch] databases/rrdtool add missing font runtime dep f ports/128521 [patch] devel/icu build failed on TestFormatRelative f ports/128513 [PATCH] Fixed editors/emacs-devel for non-GTK support f ports/128490 net/freenx port does not work properly on freebsd-7 st f ports/128489 [PATCH] mail/sympa5 update to 5.4.3 o ports/128384 new port x11/xorg-minimal f ports/128323 Update of ports/x11-fonts/terminus-font f ports/128288 sysutils/hpacucli does not work f ports/128271 biology/ncbi-toolkit - blastall segfaults when output f ports/128142 update net/ekiga to 3.0.0 to fit GNOME 2.24 f ports/128141 update net/opal to 3.4.1 to fit GNOME 2.24 o ports/128140 update devel/pwlib to 2.4.1 to fit GNOME 2.24 f ports/128082 sysutils/megarc binary causes memory corruption f ports/128074 multimedia/mplayer does not play CSS encrypted DVDs f ports/128048 www/mod_proxy_html port installs broken configuration f ports/127995 net/isc-dhcp3-server creates a user/group with dynamic f ports/127905 science/gramps: installation and runtime problems with f ports/127854 [PATCH] databases/couchdb: update to 0.8.1 o ports/127851 Port update: multimedia/libdvdnav-mplayer - Update to f ports/127810 print/hplip 2.8.2 can't talk to my usnb printer (HP PS o ports/127728 ports/games/freebsd-games doesn't build, and larn(6) s f ports/127675 [patch] net/nss_ldap version 259, with fix for pw_{cha f ports/127513 mail/dcc-dccd sets home to /var/dcc even if you didn' o ports/127321 japanese/kon2-16dot: buffer overflow and mouse bugs f ports/127302 security/swatch: swatch-3.2.1_1 multiple issues f ports/127259 [update] devel/jude-community to 5.3 f ports/127181 audio/musicpd logs warning s ports/127087 mail/bincimap port does not include an rc.d file o ports/126905 Update port: audio/libmtp to version 0.3.1 o ports/126890 port update: lang/cmucl o ports/126674 New port: print/latex-babel o ports/126655 java/jboss4 can not take standard parameter "-b host_n s ports/126577 [Update]graphics/qgis:update to 0.11.0 f ports/126518 Unbroke archivers/lzo2 on i386 f ports/126322 [patch] sysutils/fusefs-kmod: Make install location co f ports/126228 [PATCH] mail/courier: new version 0.60.0 f ports/126161 security/bsp_upektfmess does not work on 7.0 o ports/126151 [NEW PORT] security/p5-Bro-devel: Perl module for scri o ports/126150 [NEW PORT] security/broccoli-devel: The Bro Client Com o ports/126148 [NEW PORT] security/bro-devel: System for detecting Ne f ports/126058 net/generic-nqs fails to compile f ports/126055 x11-toolkits/p5-Tk - segmentation fault running perl-t f ports/125960 sysutils/syscp lacks of chattr/chflags f ports/125783 New port: www/vulture - A HTTP reverse proxy for your o ports/125719 shells/pdksh, zombie process's occouring on SMP Machin o ports/125714 [patch] www/httptunnel: users not added f ports/125362 New port: devel/ocaml-lwt (cooperative threading libra o ports/125324 editors/the (3.2) looses cursor when compiled with PDC o ports/125201 audio/aqualung crashes o ports/124905 new port: databases/sqlitejdbc 051 o ports/124597 [NEW PORT] net/callweaver: Fork of the popular Open So o ports/124548 net/mDNSResponder port incompatible with gnome desktop f ports/124238 sysutils/heartbeat: patch request f ports/123424 [NEW PORT] net/winexe o ports/123247 linux-firefox and linux-seamonkey from multiple users o ports/123239 New port: graphics/diamondbox Layer based photo editor f ports/122276 Compiled audio/musicpd segfaults on FreeBSD 7.0 o ports/121831 [PATCH] net/openbgpd: [SUMMARIZE CHANGES] o ports/121325 Xorg crashes when x11-wm/xcompmgr is running o ports/121259 New port: net/openamq OpenAMQ is a complete AMQP messa o ports/121050 New port: sysutils/heartbeat2 Linux High-Availability f ports/120788 update ports/net/openospfd to 4.2 and fix multiple p2p o ports/119183 [NEW PORT] net/freeradius-client: FreeRADIUS Client li f ports/118877 audio/streamripper does not detect song title from str f ports/116385 net/vnc using vnc.so crashes Xorg 7.3 when remote comp f ports/115304 multimedia/gpac-mp4box cannot import files larger than o ports/108795 ports/icc: Proposed update to icc port for intel compi f ports/107304 print/apsfilter does not print PDF to raw PostScript p o amd64/104311 ports/wine should be installable on amd64 s ports/85513 Intel C++ compiler not 100% binary compatible with sys 84 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 11:42:37 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA312106564A for ; Mon, 24 Nov 2008 11:42:37 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.24]) by mx1.freebsd.org (Postfix) with ESMTP id 641138FC18 for ; Mon, 24 Nov 2008 11:42:37 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so778747eyi.7 for ; Mon, 24 Nov 2008 03:42:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=yfTciky5/wSvRsNMt99h+4LUcke4sTJHghW0CB1TEEA=; b=BZqlVK4JzCycpNksww/W882NCAKduBdxz30W6hqOULUgSB58n4mtTAFJ7gNq2UITVo LqkVpGgwlLn+01kHfV+q2yMqJ5u7kWRzyaj5EQEK5YN04eOuaFDpLDdv0jn04t1Dtp7N KpQiy8y559IxsbCj80OEt03i1xkBKmom/F6tQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=QgZDMJ7AwN7bXoo/x3OCzpuPuAXaki2FCgkE4+x/57g2ynwej2OsTTB8XxZ8jNm+ph pM/KISyfUUezSaA8TDXsHW4+9SZ/GJmueewwKkFnbyzg04F4oxoRZz9qnGKalQxyT9VN /W0ezBaSytKtGSIMy30bLe4xlTrfLliZoUAkQ= Received: by 10.210.117.1 with SMTP id p1mr188452ebc.67.1227526956332; Mon, 24 Nov 2008 03:42:36 -0800 (PST) Received: by 10.210.130.15 with HTTP; Mon, 24 Nov 2008 03:42:36 -0800 (PST) Message-ID: <3cb459ed0811240342n2b898a9cwbcd0e70eddec73f7@mail.gmail.com> Date: Mon, 24 Nov 2008 14:42:36 +0300 From: "Alexander Churanov" To: "Andrea Venturoli" In-Reply-To: <492A880E.5090908@netfence.it> MIME-Version: 1.0 References: <20c4814a0811030712n4105c765p23983b55f729b25e@mail.gmail.com> <20081104002942.f136adec.ehaupt@FreeBSD.org> <20c4814a0811050113i1bed72abu84b16c7343f93c4f@mail.gmail.com> <20081105180245.GA51239@server.vk2pj.dyndns.org> <3cb459ed0811091430u46bb1eb9y5dccdab051e8a981@mail.gmail.com> <3cb459ed0811170402i72142866qb0921fbe65746ae1@mail.gmail.com> <3cb459ed0811231513o6da3fc1dmf2af3545299ca5c4@mail.gmail.com> <492A880E.5090908@netfence.it> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org Subject: Re: Boost 1.37 released! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 11:42:38 -0000 Andrea, OK, after finishing with currently mutually exclusive "Boost without Python" and "Boost with Python" ports I will try to create "Base libraries from Boost" port and complementary "Boost.Python bridge" ports. Alexander Churanov 2008/11/24 Andrea Venturoli > Alexander Churanov ha scritto: > > ... To my mind suggested approach would simplify understanding of how >> to install boost. The user would ask a question like 'should I add python >> to >> my boost installation' instead of 'is my boost built with python support >> or >> not'. >> > > Sounds like a good idea to me. > > bye & Thanks > av. > From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 11:55:59 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DECB5106564A for ; Mon, 24 Nov 2008 11:55:59 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 27C628FC12 for ; Mon, 24 Nov 2008 11:55:58 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id NAA05821 for ; Mon, 24 Nov 2008 13:55:56 +0200 (EET) (envelope-from avg@icyb.net.ua) Message-ID: <492A964B.1060103@icyb.net.ua> Date: Mon, 24 Nov 2008 13:55:55 +0200 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.17 (X11/20081106) MIME-Version: 1.0 To: FreeBSD Ports Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: always-interactive ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 11:56:00 -0000 I wonder if we have any flag for always-interactive ports i.e. ports that prompt user for something regardless of all batch/interactivity options. One example is java/jdk* ports that prompt user for license acceptance. If we don't have such a flag, maybe we should add one. One use, for instance, is to skip such ports for portupgrade --batch. -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 12:24:24 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D6251065674 for ; Mon, 24 Nov 2008 12:24:24 +0000 (UTC) (envelope-from andrewd@webzone.net.au) Received: from smtp.webzone.net.au (smtp.webzone.net.au [210.8.36.14]) by mx1.freebsd.org (Postfix) with ESMTP id D216C8FC13 for ; Mon, 24 Nov 2008 12:24:23 +0000 (UTC) (envelope-from andrewd@webzone.net.au) Received: from ppp121-45-194-56.lns10.adl2.internode.on.net ([121.45.194.56] helo=[192.168.202.99]) by smtp.webzone.net.au with esmtpa (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L4aJr-000Kz8-MG; Mon, 24 Nov 2008 22:43:35 +1030 Message-ID: <492A9A63.4020505@webzone.net.au> Date: Mon, 24 Nov 2008 22:43:23 +1030 From: Andrew D User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Andriy Gapon References: <492A964B.1060103@icyb.net.ua> In-Reply-To: <492A964B.1060103@icyb.net.ua> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-AUTH-WEBZONE: andrewd@webzone.net.au successfully authed as username:andrewd Cc: FreeBSD Ports Subject: Re: always-interactive ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 12:24:24 -0000 Andriy Gapon wrote: > I wonder if we have any flag for always-interactive ports i.e. ports > that prompt user for something regardless of all batch/interactivity > options. One example is java/jdk* ports that prompt user for license > acceptance. > You will probably find this is for legal reasons. > If we don't have such a flag, maybe we should add one. > > One use, for instance, is to skip such ports for portupgrade --batch. > Doing this could make fBSD liable which we certainly don't want. From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 12:47:38 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B9721065672 for ; Mon, 24 Nov 2008 12:47:38 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 6E2A98FC18 for ; Mon, 24 Nov 2008 12:47:37 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id OAA07106; Mon, 24 Nov 2008 14:47:12 +0200 (EET) (envelope-from avg@icyb.net.ua) Message-ID: <492AA24F.7060403@icyb.net.ua> Date: Mon, 24 Nov 2008 14:47:11 +0200 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.17 (X11/20081106) MIME-Version: 1.0 To: Andrew D References: <492A964B.1060103@icyb.net.ua> <492A9A63.4020505@webzone.net.au> In-Reply-To: <492A9A63.4020505@webzone.net.au> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: Re: always-interactive ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 12:47:38 -0000 on 24/11/2008 14:13 Andrew D said the following: > Andriy Gapon wrote: >> I wonder if we have any flag for always-interactive ports i.e. ports >> that prompt user for something regardless of all batch/interactivity >> options. One example is java/jdk* ports that prompt user for license >> acceptance. >> > > You will probably find this is for legal reasons. > >> If we don't have such a flag, maybe we should add one. >> >> One use, for instance, is to skip such ports for portupgrade --batch. >> > > Doing this could make fBSD liable which we certainly don't want. > I think that you did misunderstand what I asked and suggested. I am speaking about skipping the ports not the prompts. -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 12:56:42 2008 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 311781065672 for ; Mon, 24 Nov 2008 12:56:42 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 45EA18FC17 for ; Mon, 24 Nov 2008 12:56:41 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id OAA07346; Mon, 24 Nov 2008 14:56:39 +0200 (EET) (envelope-from avg@icyb.net.ua) Message-ID: <492AA487.1020105@icyb.net.ua> Date: Mon, 24 Nov 2008 14:56:39 +0200 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.17 (X11/20081106) MIME-Version: 1.0 To: gabor@FreeBSD.org References: <48FC923E.2080805@icyb.net.ua> In-Reply-To: <48FC923E.2080805@icyb.net.ua> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: Re: archivers/rar: lib32 is not actually needed on amd64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 12:56:42 -0000 on 20/10/2008 17:14 Andriy Gapon said the following: > I try to install archivers/rar on amd64 system without 32-bit userland > (NO_LIB32) but with 32-bit support in kernel (COMPAT_IA32) and I get the > following error: > > ** Port marked as IGNORE: archivers/rar: > requires 32-bit libraries installed under /usr/lib32 > > On the other hand, if I comment out the following line in port's > Makefile I get successful installation and properly working rar: > IA32_BINARY_PORT= YES > > And also: > $ file /usr/local/bin/rar > /usr/local/bin/rar: ELF 32-bit LSB executable, Intel 80386, version 1 > (FreeBSD), statically linked, stripped > > So, being a static executable rar can not require any libraries. It does > require 32-bit support in kernel, of course. > > So, I think that IA32_BINARY_PORT should be changed to some other check. > E.g. something like IA32_STATIC_BINARY_PORT that would check only for > HAVE_COMPAT_IA32_KERN and not for HAVE_COMPAT_IA32_LIBS (speaking in > terms of bsd.port.mk). > > I am CC-ing freebsd-ports because there can be other similar ports that > could benefit from the suggested relaxed check. > Anyone? -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 12:59:37 2008 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C56B91065673 for ; Mon, 24 Nov 2008 12:59:37 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from server.mypc.hu (server.mypc.hu [87.229.73.95]) by mx1.freebsd.org (Postfix) with ESMTP id 807138FC29 for ; Mon, 24 Nov 2008 12:59:37 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by server.mypc.hu (Postfix) with ESMTP id A5D5614D7736; Mon, 24 Nov 2008 13:59:36 +0100 (CET) X-Virus-Scanned: amavisd-new at t-hosting.hu Received: from server.mypc.hu ([127.0.0.1]) by localhost (server.mypc.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id H03NI7mzs3yA; Mon, 24 Nov 2008 13:59:34 +0100 (CET) Received: from [192.168.1.105] (catv-80-98-156-89.catv.broadband.hu [80.98.156.89]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by server.mypc.hu (Postfix) with ESMTPSA id 5439914D7735; Mon, 24 Nov 2008 13:59:34 +0100 (CET) Message-ID: <492AA535.5020606@FreeBSD.org> Date: Mon, 24 Nov 2008 13:59:33 +0100 From: =?UTF-8?B?R8OhYm9yIEvDtnZlc2TDoW4=?= User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Andriy Gapon References: <48FC923E.2080805@icyb.net.ua> <492AA487.1020105@icyb.net.ua> In-Reply-To: <492AA487.1020105@icyb.net.ua> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: FreeBSD Ports Subject: Re: archivers/rar: lib32 is not actually needed on amd64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 12:59:37 -0000 Andriy Gapon escribió: > on 20/10/2008 17:14 Andriy Gapon said the following: > >> I try to install archivers/rar on amd64 system without 32-bit userland >> (NO_LIB32) but with 32-bit support in kernel (COMPAT_IA32) and I get the >> following error: >> >> ** Port marked as IGNORE: archivers/rar: >> requires 32-bit libraries installed under /usr/lib32 >> >> On the other hand, if I comment out the following line in port's >> Makefile I get successful installation and properly working rar: >> IA32_BINARY_PORT= YES >> >> And also: >> $ file /usr/local/bin/rar >> /usr/local/bin/rar: ELF 32-bit LSB executable, Intel 80386, version 1 >> (FreeBSD), statically linked, stripped >> >> So, being a static executable rar can not require any libraries. It does >> require 32-bit support in kernel, of course. >> >> So, I think that IA32_BINARY_PORT should be changed to some other check. >> E.g. something like IA32_STATIC_BINARY_PORT that would check only for >> HAVE_COMPAT_IA32_KERN and not for HAVE_COMPAT_IA32_LIBS (speaking in >> terms of bsd.port.mk). >> >> I am CC-ing freebsd-ports because there can be other similar ports that >> could benefit from the suggested relaxed check. >> >> > > Anyone? > > I'm sorry, I forgot about your first mail because I was very busy. I'll take a look soon. Regards, -- Gabor Kovesdan EMAIL: gabor@FreeBSD.org WWW: http://www.kovesdan.org From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 13:00:46 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B330A1065670 for ; Mon, 24 Nov 2008 13:00:46 +0000 (UTC) (envelope-from jhs@berklix.org) Received: from flat.berklix.org (flat.berklix.org [83.236.223.115]) by mx1.freebsd.org (Postfix) with ESMTP id 24C298FC13 for ; Mon, 24 Nov 2008 13:00:45 +0000 (UTC) (envelope-from jhs@berklix.org) Received: from js.berklix.net (p549A5333.dip.t-dialin.net [84.154.83.51]) (authenticated bits=0) by flat.berklix.org (8.13.8/8.13.8) with ESMTP id mAOCjRct004899; Mon, 24 Nov 2008 13:45:27 +0100 (CET) (envelope-from jhs@berklix.org) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by js.berklix.net (8.13.8/8.13.8) with ESMTP id mAOCjGqJ088321; Mon, 24 Nov 2008 13:45:16 +0100 (CET) (envelope-from jhs@berklix.org) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.13.8/8.13.8) with ESMTP id mAOCitG0012338; Mon, 24 Nov 2008 13:45:12 +0100 (CET) (envelope-from jhs@fire.js.berklix.net) Message-Id: <200811241245.mAOCitG0012338@fire.js.berklix.net> To: Cy Schubert From: "Julian Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://berklix.com In-reply-to: Your message "Sun, 23 Nov 2008 18:36:54 PST." <200811240236.mAO2asIi011993@cwsys.cwsent.com> Date: Mon, 24 Nov 2008 13:44:55 +0100 Sender: jhs@berklix.org Cc: freebsd-ports@freebsd.org Subject: Re: Openoffice.org 2.4 & 3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 13:00:46 -0000 Hi, Cy Schubert wrote: > Can Openoffice.org 2.4 and 3.0 coexist on the same system? I have compiled & installed both on amd64. The binaries do not conflict (see below), Both start OK announcing right version numbers. But I'm not a serious user & no idea if all libs & other includes etc are carefully segregated. cat /usr/ports/editors/openoffice.org-3/pkg-plist # Dummy file, do not delete. Package list is generated automatically. So look in makefile, or if you request, I could private mail you my /var/db/pkg/ openoffice.org-2.4.2 & openoffice.org-3.0.0 so you could check segregation. 7.1-BETA2 p0 jhs 81 john/usr/local/bin % echo openo* openoffice openoffice.org-2.4.2 openoffice.org-2.4.2-sbase openoffice.org-2.4.2-scalc openoffice.org-2.4.2-sdraw openoffice.org-2.4.2-setofficelang openoffice.org-2.4.2-simpress openoffice.org-2.4.2-smath openoffice.org-2.4.2-spadmin openoffice.org-2.4.2-swriter openoffice.org-3.0.0 openoffice.org-3.0.0-sbase openoffice.org-3.0.0-scalc openoffice.org-3.0.0-sdraw openoffice.org-3.0.0-setofficelang openoffice.org-3.0.0-simpress openoffice.org-3.0.0-smath openoffice.org-3.0.0-spadmin openoffice.org-3.0.0-swriter > Also, importing spellcheck dictionaries into either version results in "bad > tranfer url". Is there a solution to this? Don't know, have just compiled & installed both, hardly use oo at present, except to export .doc to .pdf. Cheers, Julian -- Julian Stacey: BSDUnixLinux C Prog Admin SysEng Consult Munich www.berklix.com Mail plain ASCII text. HTML & Base64 text are spam. www.asciiribbon.org From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 13:03:46 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C4981065670 for ; Mon, 24 Nov 2008 13:03:46 +0000 (UTC) (envelope-from fbsd06+37=ab02fec6@mlists.homeunix.com) Received: from fallback-in1.mxes.net (fallback-out1.mxes.net [216.86.168.190]) by mx1.freebsd.org (Postfix) with ESMTP id 7008E8FC1D for ; Mon, 24 Nov 2008 13:03:46 +0000 (UTC) (envelope-from fbsd06+37=ab02fec6@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by fallback-in1.mxes.net (Postfix) with ESMTP id 348D21648C0 for ; Mon, 24 Nov 2008 07:47:18 -0500 (EST) Received: from gumby.homeunix.com (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 506F823E3FD for ; Mon, 24 Nov 2008 07:47:16 -0500 (EST) Date: Mon, 24 Nov 2008 12:47:13 +0000 From: RW To: freebsd-ports@freebsd.org Message-ID: <20081124124713.65b354a7@gumby.homeunix.com> In-Reply-To: <492A964B.1060103@icyb.net.ua> References: <492A964B.1060103@icyb.net.ua> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: Re: always-interactive ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 13:03:46 -0000 On Mon, 24 Nov 2008 13:55:55 +0200 Andriy Gapon wrote: >=20 > I wonder if we have any flag for always-interactive ports i.e. ports > that prompt user for something regardless of all batch/interactivity > options. One example is java/jdk* ports that prompt user for license > acceptance. >=20 > If we don't have such a flag, maybe we should add one. >=20 > One use, for instance, is to skip such ports for portupgrade --batch. =46rom man ports: INTERACTIVE If defined, only operate on a port if it requires interaction. BATCH If defined, only operate on a port if it can be=20 installed 100% automatically. From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 14:05:06 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4592E1065675 for ; Mon, 24 Nov 2008 14:05:06 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from ch-smtp01.sth.basefarm.net (ch-smtp01.sth.basefarm.net [80.76.149.212]) by mx1.freebsd.org (Postfix) with ESMTP id 151B58FC14 for ; Mon, 24 Nov 2008 14:05:03 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from c83-255-48-78.bredband.comhem.se ([83.255.48.78]:64932 helo=falcon.midgard.homeip.net) by ch-smtp01.sth.basefarm.net with esmtp (Exim 4.68) (envelope-from ) id 1L4bp7-0005rz-5R for freebsd-ports@freebsd.org; Mon, 24 Nov 2008 14:49:57 +0100 Received: (qmail 96045 invoked from network); 24 Nov 2008 14:49:54 +0100 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with ESMTP; 24 Nov 2008 14:49:54 +0100 Received: (qmail 22281 invoked by uid 1001); 24 Nov 2008 14:49:54 +0100 Date: Mon, 24 Nov 2008 14:49:54 +0100 From: Erik Trulsson To: Andriy Gapon Message-ID: <20081124134954.GA22250@owl.midgard.homeip.net> References: <492A964B.1060103@icyb.net.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <492A964B.1060103@icyb.net.ua> User-Agent: Mutt/1.5.18 (2008-05-17) X-Originating-IP: 83.255.48.78 X-Scan-Result: No virus found in message 1L4bp7-0005rz-5R. X-Scan-Signature: ch-smtp01.sth.basefarm.net 1L4bp7-0005rz-5R 9f43b1344b15622b9b758223d24e7525 Cc: FreeBSD Ports Subject: Re: always-interactive ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:05:06 -0000 On Mon, Nov 24, 2008 at 01:55:55PM +0200, Andriy Gapon wrote: > > I wonder if we have any flag for always-interactive ports i.e. ports > that prompt user for something regardless of all batch/interactivity > options. One example is java/jdk* ports that prompt user for license > acceptance. > > If we don't have such a flag, maybe we should add one. > > One use, for instance, is to skip such ports for portupgrade --batch. >From /usr/ports/Mk/bsd.ports.mk : # IS_INTERACTIVE # - Set this if your port needs to interact with the user # during any step in a package build. User can then decide # to skip this port by setting ${BATCH}, or compiling only # the interactive ports by setting ${INTERACTIVE}. # Default: not set. -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 14:09:51 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 961D61065678 for ; Mon, 24 Nov 2008 14:09:51 +0000 (UTC) (envelope-from jhs@berklix.org) Received: from flat.berklix.org (flat.berklix.org [83.236.223.115]) by mx1.freebsd.org (Postfix) with ESMTP id C06878FC13 for ; Mon, 24 Nov 2008 14:09:50 +0000 (UTC) (envelope-from jhs@berklix.org) Received: from js.berklix.net (p549A6A60.dip.t-dialin.net [84.154.106.96]) (authenticated bits=0) by flat.berklix.org (8.13.8/8.13.8) with ESMTP id mAOE9l0W005781 for ; Mon, 24 Nov 2008 15:09:48 +0100 (CET) (envelope-from jhs@berklix.org) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by js.berklix.net (8.13.8/8.13.8) with ESMTP id mAOCmTXV088334; Mon, 24 Nov 2008 13:48:29 +0100 (CET) (envelope-from jhs@berklix.org) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.13.8/8.13.8) with ESMTP id mAOCmAZG012372; Mon, 24 Nov 2008 13:48:15 +0100 (CET) (envelope-from jhs@fire.js.berklix.net) Message-Id: <200811241248.mAOCmAZG012372@fire.js.berklix.net> To: Andrew D From: "Julian Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://berklix.com In-reply-to: Your message "Mon, 24 Nov 2008 22:43:23 +1030." <492A9A63.4020505@webzone.net.au> Date: Mon, 24 Nov 2008 13:48:10 +0100 Sender: jhs@berklix.org Cc: Andriy Gapon , FreeBSD Ports Subject: Re: always-interactive ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:09:51 -0000 Andrew D wrote: > Andriy Gapon wrote: > > I wonder if we have any flag for always-interactive ports i.e. ports > > that prompt user for something regardless of all batch/interactivity > > options. One example is java/jdk* ports that prompt user for license > > acceptance. > > > > You will probably find this is for legal reasons. > > > If we don't have such a flag, maybe we should add one. > > > > One use, for instance, is to skip such ports for portupgrade --batch. > > > > Doing this could make fBSD liable which we certainly don't want. FUD, IMO :-) Err to save anyone asking: Fear Uncertainty & Doubt In My Opinion. Cheers, Julian -- Julian Stacey: BSDUnixLinux C Prog Admin SysEng Consult Munich www.berklix.com Mail plain ASCII text. HTML & Base64 text are spam. www.asciiribbon.org From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 14:15:54 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99B8C1065672 for ; Mon, 24 Nov 2008 14:15:54 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id C258A8FC18 for ; Mon, 24 Nov 2008 14:15:53 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id QAA10055; Mon, 24 Nov 2008 16:15:49 +0200 (EET) (envelope-from avg@icyb.net.ua) Message-ID: <492AB715.30508@icyb.net.ua> Date: Mon, 24 Nov 2008 16:15:49 +0200 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.17 (X11/20081106) MIME-Version: 1.0 To: Erik Trulsson References: <492A964B.1060103@icyb.net.ua> <20081124134954.GA22250@owl.midgard.homeip.net> In-Reply-To: <20081124134954.GA22250@owl.midgard.homeip.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: Re: always-interactive ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:15:54 -0000 on 24/11/2008 15:49 Erik Trulsson said the following: > On Mon, Nov 24, 2008 at 01:55:55PM +0200, Andriy Gapon wrote: >> I wonder if we have any flag for always-interactive ports i.e. ports >> that prompt user for something regardless of all batch/interactivity >> options. One example is java/jdk* ports that prompt user for license >> acceptance. >> >> If we don't have such a flag, maybe we should add one. >> >> One use, for instance, is to skip such ports for portupgrade --batch. > >>From /usr/ports/Mk/bsd.ports.mk : > > # IS_INTERACTIVE > # - Set this if your port needs to interact with the user > # during any step in a package build. User can then decide > # to skip this port by setting ${BATCH}, or compiling only > # the interactive ports by setting ${INTERACTIVE}. > # Default: not set. > > Thanks a lot! -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 14:25:52 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E1B01065672; Mon, 24 Nov 2008 14:25:52 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 1870C8FC1E; Mon, 24 Nov 2008 14:25:50 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id QAA10742; Mon, 24 Nov 2008 16:25:49 +0200 (EET) (envelope-from avg@icyb.net.ua) Message-ID: <492AB96C.1030803@icyb.net.ua> Date: Mon, 24 Nov 2008 16:25:48 +0200 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.17 (X11/20081106) MIME-Version: 1.0 To: freebsd-java@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: IS_INTERACTIVE for java/jdk* ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:25:52 -0000 At least jdk15 and jdk16 ports should be marked with IS_INTERACTIVE because they always ask user about license acceptance. -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 14:59:30 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from straylight.ringlet.net (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with SMTP id 676241065670 for ; Mon, 24 Nov 2008 14:59:29 +0000 (UTC) (envelope-from roam@ringlet.net) Received: (qmail 42885 invoked by uid 1000); 24 Nov 2008 13:37:11 -0000 Date: Mon, 24 Nov 2008 15:37:11 +0200 From: Peter Pentchev To: RW Message-ID: <20081124133711.GA1101@straylight.m.ringlet.net> References: <492A964B.1060103@icyb.net.ua> <20081124124713.65b354a7@gumby.homeunix.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vkogqOf2sHV7VnPd" Content-Disposition: inline In-Reply-To: <20081124124713.65b354a7@gumby.homeunix.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: Re: always-interactive ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:59:30 -0000 --vkogqOf2sHV7VnPd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 24, 2008 at 12:47:13PM +0000, RW wrote: > On Mon, 24 Nov 2008 13:55:55 +0200 > Andriy Gapon wrote: >=20 > >=20 > > I wonder if we have any flag for always-interactive ports i.e. ports > > that prompt user for something regardless of all batch/interactivity > > options. One example is java/jdk* ports that prompt user for license > > acceptance. > >=20 > > If we don't have such a flag, maybe we should add one. > >=20 > > One use, for instance, is to skip such ports for portupgrade --batch. >=20 > From man ports: >=20 > INTERACTIVE If defined, only operate on a port if it requires > interaction. >=20 > BATCH If defined, only operate on a port if it can be=20 > installed 100% automatically. That's from the building user's point of view. The easiest way to handle this in the port itself is to set IS_INTERACTIVE=3Dyes in the port's Makefile, as documented in bsd.port.mk. G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@space.bg roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 If wishes were fishes, the antecedent of this conditional would be true. --vkogqOf2sHV7VnPd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkqrgcACgkQ7Ri2jRYZRVM01ACgiVQimXAWjxd9/OuuMPFtouxL pR0AmQGObqQmmd/Cd5vP/fqHmRyf+A4B =7ZZP -----END PGP SIGNATURE----- --vkogqOf2sHV7VnPd-- From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 16:24:30 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC76D1065675; Mon, 24 Nov 2008 16:24:30 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 8864E8FC25; Mon, 24 Nov 2008 16:24:28 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id SAA16060; Mon, 24 Nov 2008 18:24:25 +0200 (EET) (envelope-from avg@icyb.net.ua) Message-ID: <492AD538.7040904@icyb.net.ua> Date: Mon, 24 Nov 2008 18:24:24 +0200 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.17 (X11/20081106) MIME-Version: 1.0 To: FreeBSD Ports , kde@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Doug Barton , lev@freebsd.org, Peter Wemm Subject: devel/subversion-freebsd: libsvn_client-1.0 symlink X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 16:24:30 -0000 I am using subversion-freebsd port as a replacement for "normal" subversion. Recently I tried to install kdesdk port and was quite surprised to see that it wants to pull in devel/subversion. It turns out that kdesdk checks for svn_client-1.0 in its LIB_DEPENDS, but subversion-freebsd installs/symlinks only libsvn_client-1.so*. I assume that "normal" subversion port installs libsvn_client-1.0 file or symlink. Maybe subversion-freebsd should do that too. Or maybe kdesdk should have svn_client-1 dependency. -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 16:30:29 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9E581065670; Mon, 24 Nov 2008 16:30:29 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id BBCD38FC1F; Mon, 24 Nov 2008 16:30:27 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id SAA16295; Mon, 24 Nov 2008 18:30:26 +0200 (EET) (envelope-from avg@icyb.net.ua) Message-ID: <492AD6A1.8020509@icyb.net.ua> Date: Mon, 24 Nov 2008 18:30:25 +0200 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.17 (X11/20081106) MIME-Version: 1.0 To: FreeBSD Ports , kde@freebsd.org References: <492AD538.7040904@icyb.net.ua> In-Reply-To: <492AD538.7040904@icyb.net.ua> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Doug Barton , lev@freebsd.org, Peter Wemm Subject: Re: devel/subversion-freebsd: libsvn_client-1.0 symlink X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 16:30:29 -0000 I was confused. Sorry! on 24/11/2008 18:24 Andriy Gapon said the following: > I am using subversion-freebsd port as a replacement for "normal" subversion. > > Recently I tried to install kdesdk port and was quite surprised to see > that it wants to pull in devel/subversion. > It turns out that kdesdk checks for svn_client-1.0 in its LIB_DEPENDS, > but subversion-freebsd installs/symlinks only libsvn_client-1.so*. I > assume that "normal" subversion port installs libsvn_client-1.0 file or > symlink. > > Maybe subversion-freebsd should do that too. > Or maybe kdesdk should have svn_client-1 dependency. > -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 16:49:54 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 447D9106564A for ; Mon, 24 Nov 2008 16:49:54 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (lefty.soaustin.net [66.135.55.46]) by mx1.freebsd.org (Postfix) with ESMTP id 2A0948FC1B for ; Mon, 24 Nov 2008 16:49:54 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id CF3EA8C072; Mon, 24 Nov 2008 10:49:53 -0600 (CST) Date: Mon, 24 Nov 2008 10:49:53 -0600 To: Julian Stacey Message-ID: <20081124164953.GA17028@soaustin.net> References: <492A9A63.4020505@webzone.net.au> <200811241248.mAOCmAZG012372@fire.js.berklix.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200811241248.mAOCmAZG012372@fire.js.berklix.net> User-Agent: Mutt/1.5.13 (2006-08-11) From: linimon@lonesome.com (Mark Linimon) Cc: Andrew D , Andriy Gapon , FreeBSD Ports Subject: Re: always-interactive ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 16:49:54 -0000 On Mon, Nov 24, 2008 at 01:48:10PM +0100, Julian Stacey wrote: > > Doing this could make fBSD liable which we certainly don't want. > > FUD, IMO :-) Where you live, you have the German legal system. Where I live, I have the US legal system. Remember, "just because you're paranoid doesn't mean they really aren't out to get you." mcl From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 19:16:46 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17C4C1065673 for ; Mon, 24 Nov 2008 19:16:46 +0000 (UTC) (envelope-from freebsd@bitfreak.org) Received: from mail.twinthornes.com (mail.twinthornes.com [65.75.198.147]) by mx1.freebsd.org (Postfix) with ESMTP id F2A288FC12 for ; Mon, 24 Nov 2008 19:16:45 +0000 (UTC) (envelope-from freebsd@bitfreak.org) Received: from [10.9.70.117] (c-76-27-226-62.hsd1.or.comcast.net [76.27.226.62]) by mail.twinthornes.com (Postfix) with ESMTPSA id 1CA7360 for ; Mon, 24 Nov 2008 10:58:24 -0800 (PST) Message-ID: <492AF954.7050501@bitfreak.org> Date: Mon, 24 Nov 2008 10:58:28 -0800 From: freebsd@bitfreak.org User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: A place to upload distfiles? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:16:46 -0000 I maintain a port for which the vendor provided me a customized distfile. They don't have it available for download from their site, so I need to find a home for it. Does the FreeBSD Project or Foundation provide hosting space for such cases or do I need to find my own space? From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 19:28:15 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A17671065670 for ; Mon, 24 Nov 2008 19:28:15 +0000 (UTC) (envelope-from william@palfreman.com) Received: from gv-out-0910.google.com (gv-out-0910.google.com [216.239.58.189]) by mx1.freebsd.org (Postfix) with ESMTP id 424138FC12 for ; Mon, 24 Nov 2008 19:28:15 +0000 (UTC) (envelope-from william@palfreman.com) Received: by gv-out-0910.google.com with SMTP id n8so387820gve.39 for ; Mon, 24 Nov 2008 11:28:14 -0800 (PST) Received: by 10.86.72.15 with SMTP id u15mr2385383fga.45.1227552941937; Mon, 24 Nov 2008 10:55:41 -0800 (PST) Received: by 10.86.81.4 with HTTP; Mon, 24 Nov 2008 10:55:41 -0800 (PST) Message-ID: <731a66520811241055x62a013at71bc1d08bcc6bda8@mail.gmail.com> Date: Mon, 24 Nov 2008 19:55:41 +0100 From: "William Palfreman" To: miwi@freebsd.org In-Reply-To: <200811230855.mAN8tmXo091500@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200811230855.mAN8tmXo091500@freefall.freebsd.org> Cc: ports@freebsd.org, freebsd-security@freebsd.org, rea-fbsd@codelabs.ru Subject: Re: ports/128999: [vuxml] [patch] update audio/streamripper to 1.64.0, fix CVE-2008-4829 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:28:15 -0000 2008/11/23 : > Synopsis: [vuxml] [patch] update audio/streamripper to 1.64.0, fix CVE-2008-4829 Can we not have these on the freebsd-secuirty list please? I subscribe to freebsd-security to get security alerts, not to get emails every time a port is changed. William Palfreman From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 19:39:14 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 458B81065673 for ; Mon, 24 Nov 2008 19:39:14 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (cl-162.ewr-01.us.sixxs.net [IPv6:2001:4830:1200:a1::2]) by mx1.freebsd.org (Postfix) with ESMTP id E26288FC0C for ; Mon, 24 Nov 2008 19:39:13 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (localhost [127.0.0.1]) by lor.one-eyed-alien.net (8.14.3/8.14.2) with ESMTP id mAOJdtxN057656; Mon, 24 Nov 2008 13:39:55 -0600 (CST) (envelope-from brooks@lor.one-eyed-alien.net) Received: (from brooks@localhost) by lor.one-eyed-alien.net (8.14.3/8.14.3/Submit) id mAOJdt8Q057655; Mon, 24 Nov 2008 13:39:55 -0600 (CST) (envelope-from brooks) Date: Mon, 24 Nov 2008 13:39:55 -0600 From: Brooks Davis To: freebsd@bitfreak.org Message-ID: <20081124193955.GB54856@lor.one-eyed-alien.net> References: <492AF954.7050501@bitfreak.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xXmbgvnjoT4axfJE" Content-Disposition: inline In-Reply-To: <492AF954.7050501@bitfreak.org> User-Agent: Mutt/1.5.17 (2007-11-01) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (lor.one-eyed-alien.net [127.0.0.1]); Mon, 24 Nov 2008 13:39:56 -0600 (CST) Cc: freebsd-ports@freebsd.org Subject: Re: A place to upload distfiles? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:39:14 -0000 --xXmbgvnjoT4axfJE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 24, 2008 at 10:58:28AM -0800, freebsd@bitfreak.org wrote: > I maintain a port for which the vendor provided me a customized distfile.= =20 > They don't have it available for download from their site, so I need to= =20 > find a home for it. Does the FreeBSD Project or Foundation provide hosti= ng=20 > space for such cases or do I need to find my own space? Committers have the ability to host such distfiles using the MASTER_SITE_LOCAL variable. You'll have to provide the person who commits the port and updates with some way to obtain the files, but as long as they are fully redistributable, we can do that. -- Brooks --xXmbgvnjoT4axfJE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iD8DBQFJKwMLXY6L6fI4GtQRAiCCAKCzkxD3pwWKgrXmANSCCZXqA52kfwCgu5Om AFLSo73y9FvSoPhLU3TkzMQ= =/Kqh -----END PGP SIGNATURE----- --xXmbgvnjoT4axfJE-- From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 20:05:13 2008 Return-Path: Delivered-To: FreeBSD-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42248106564A for ; Mon, 24 Nov 2008 20:05:13 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) Received: from anthesphoria.net (anthesphoria.net [200.46.204.219]) by mx1.freebsd.org (Postfix) with ESMTP id A92578FC12 for ; Mon, 24 Nov 2008 20:05:12 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) X-Bogosity: No, tests=bogofilter X-DKIM: Sendmail DKIM Filter v2.4.1 anthesphoria.net mAOJfKOm080569 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=anthesphoria.net; s=phero; t=1227555687; bh=UcXqNCwKtXqTiuHCpiEK3Yaa5OSe3rWRIek4XzahX PI=; l=966; h=X-Bogosity:Date:From:To:Cc:Subject:Message-ID: In-Reply-To:References:X-Mailer:X-Face:X-Operating-System: X-OpenPGP-Fingerprint:X-OpenPGP-Preferred-Keyserver:Mime-Version: Content-Type:Content-Transfer-Encoding; b=F8eQiHLpbQg0d3x/Kk2cpEQ6 VPwpGUWuNVpis2uOLrr8rR7hZQOEHnS8kDyyTTk5qvfEQx+Fr3jma4mgXYeVqIj11Nd ETTnVzctYKxcYN8G3a97NK7pR4+xWV8vQnkhaz6QXPc0n9Uv15s+NS8p4sCNc8bRU+S U4R9wrGWkVmWk= Received: from anthesphoria.net (adsl-200-199.eunet.yu [213.198.200.199]) (authenticated bits=0) by anthesphoria.net (8.14.2/8.14.2) with ESMTP id mAOJfKOm080569 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 24 Nov 2008 20:41:23 +0100 (CET) (envelope-from nikola.lecic@anthesphoria.net) Date: Mon, 24 Nov 2008 20:37:41 +0100 From: Nikola =?UTF-8?B?TGXEjWnEhw==?= To: Cy Schubert Message-ID: <20081124203741.32f693b6@anthesphoria.net> In-Reply-To: <200811240236.mAO2asIi011993@cwsys.cwsent.com> References: <200811240236.mAO2asIi011993@cwsys.cwsent.com> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] X-Operating-System: FreeBSD 7.0-RELEASE/i386 X-OpenPGP-Fingerprint: FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B X-OpenPGP-Preferred-Keyserver: x-hkp://pgpkeys.pca.dfn.de Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD-ports@FreeBSD.org Subject: Re: Openoffice.org 2.4 & 3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 20:05:13 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160 On Sun, 23 Nov 2008 18:36:54 -0800 Cy Schubert wrote: =20 > Also, importing spellcheck dictionaries into either version results > in "bad tranfer url". Is there a solution to this? This might serve as a temporary solution: http://lists.freebsd.org/pipermail/freebsd-questions/2008-November/186019= .html - --=20 Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iJwEAQEDAAYFAkkrAosACgkQ/MM/0rYIoZjyAwQAsv31HKz/154iVH4lJueEKeWY m4V2RExlTjN5RKHZ/l4MWVCCYEHeEOfQn/2IWT+WdFLY4BwkGx2cpUmFr9BV7tks 1IULBuwErokz2/m3SFmf3OkxP1vhjFz0SPOGhl7rXauPFIIFz94qVhICPTKkDBXU YKgKo06Q8if1ZqQiq54=3D =3DF9n2 -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 22:06:58 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B98A41065674 for ; Mon, 24 Nov 2008 22:06:58 +0000 (UTC) (envelope-from william@palfreman.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id 546368FC17 for ; Mon, 24 Nov 2008 22:06:57 +0000 (UTC) (envelope-from william@palfreman.com) Received: by ug-out-1314.google.com with SMTP id 30so858595ugs.39 for ; Mon, 24 Nov 2008 14:06:57 -0800 (PST) Received: by 10.86.74.4 with SMTP id w4mr2486413fga.2.1227564416693; Mon, 24 Nov 2008 14:06:56 -0800 (PST) Received: by 10.86.81.4 with HTTP; Mon, 24 Nov 2008 14:06:56 -0800 (PST) Message-ID: <731a66520811241406r6269274ft8a41666efd85560d@mail.gmail.com> Date: Mon, 24 Nov 2008 23:06:56 +0100 From: "William Palfreman" To: Volker In-Reply-To: <492B2242.4080102@vwsoft.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200811230855.mAN8tmXo091500@freefall.freebsd.org> <731a66520811241055x62a013at71bc1d08bcc6bda8@mail.gmail.com> <492B2242.4080102@vwsoft.com> Cc: ports@freebsd.org, freebsd-security@freebsd.org, rea-fbsd@codelabs.ru, miwi@freebsd.org Subject: Re: ports/128999: [vuxml] [patch] update audio/streamripper to 1.64.0, fix CVE-2008-4829 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 22:06:58 -0000 2008/11/24 Volker : > On 11/24/08 19:55, William Palfreman wrote: >> 2008/11/23 : >>> Synopsis: [vuxml] [patch] update audio/streamripper to 1.64.0, fix CVE-2008-4829 >> >> Can we not have these on the freebsd-secuirty list please? I >> subscribe to freebsd-security to get security alerts, not to get >> emails every time a port is changed. >> >> William Palfreman > > You should better head over to security-advisories@ if you're only > interested in SA's. Claiming about reading security related issues on a > security mailing list sounds like fun. > > I appreciate Eygenes' work. That's nice. I am sure it is very useful on the ports mailinglist where it belongs. I also greatly enjoy the frequent interesting and informed discussion on the security mailinglist - of which Eirik Overby's thread recently about syn+fin is one example. But all these ports announcements, raw patches, garbled html etc. I could really do without. It is why there are separate lists. From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 22:19:03 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 684E8106567B; Mon, 24 Nov 2008 22:19:03 +0000 (UTC) (envelope-from volker@vwsoft.com) Received: from frontmail.ipactive.de (frontmail.maindns.de [85.214.95.103]) by mx1.freebsd.org (Postfix) with ESMTP id 2101C8FC25; Mon, 24 Nov 2008 22:19:02 +0000 (UTC) (envelope-from volker@vwsoft.com) Received: from mail.vtec.ipme.de (Q7cbe.q.ppp-pool.de [89.53.124.190]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by frontmail.ipactive.de (Postfix) with ESMTP id 20F1E12883F; Mon, 24 Nov 2008 22:53:23 +0100 (CET) Received: from cesar.sz.vwsoft.com (cesar.sz.vwsoft.com [192.168.16.3]) by mail.vtec.ipme.de (Postfix) with ESMTP id BBF992E98C; Mon, 24 Nov 2008 22:52:55 +0100 (CET) Message-ID: <492B2242.4080102@vwsoft.com> Date: Mon, 24 Nov 2008 22:53:06 +0100 From: Volker User-Agent: Thunderbird 2.0.0.17 (X11/20080930) MIME-Version: 1.0 To: William Palfreman References: <200811230855.mAN8tmXo091500@freefall.freebsd.org> <731a66520811241055x62a013at71bc1d08bcc6bda8@mail.gmail.com> In-Reply-To: <731a66520811241055x62a013at71bc1d08bcc6bda8@mail.gmail.com> X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit MailScanner-NULL-Check: 1228168389.64224@SZkpbKakbb802+XMAm9Jmw X-MailScanner-ID: BBF992E98C.B703D X-VWSoft-MailScanner: Found to be clean X-MailScanner-From: volker@vwsoft.com X-ipactive-MailScanner-Information: Please contact the ISP for more information X-ipactive-MailScanner: Found to be clean X-ipactive-MailScanner-From: volker@vwsoft.com Cc: ports@freebsd.org, freebsd-security@freebsd.org, rea-fbsd@codelabs.ru, miwi@freebsd.org Subject: Re: ports/128999: [vuxml] [patch] update audio/streamripper to 1.64.0, fix CVE-2008-4829 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 22:19:03 -0000 On 11/24/08 19:55, William Palfreman wrote: > 2008/11/23 : >> Synopsis: [vuxml] [patch] update audio/streamripper to 1.64.0, fix CVE-2008-4829 > > Can we not have these on the freebsd-secuirty list please? I > subscribe to freebsd-security to get security alerts, not to get > emails every time a port is changed. > > William Palfreman You should better head over to security-advisories@ if you're only interested in SA's. Claiming about reading security related issues on a security mailing list sounds like fun. I appreciate Eygenes' work. Volker From owner-freebsd-ports@FreeBSD.ORG Mon Nov 24 23:00:22 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 556FA1065698 for ; Mon, 24 Nov 2008 23:00:22 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.158]) by mx1.freebsd.org (Postfix) with ESMTP id D4E158FC21 for ; Mon, 24 Nov 2008 23:00:21 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so1676592fgb.35 for ; Mon, 24 Nov 2008 15:00:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=S6Sr2tmLDoGvgrrHxE4clCUXSyLdlcdX7P8tTNwAXT8=; b=pm2I5vrIRJsy9KzSB5mJEvDFjqZd5jssL9F+iOONL4Md0HHzRVJ7H0VYehZ0v16Otu iq8GE9lHENca9YTnokVePEHfeYQY6ch8WJkmvlThhf3gg5+30p+nqhXYDeQS/NBXCYNK e9M4b4Kq2Zkh+XlVHWHswWAWFkuJJs87Z/SiI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=sjkP6b4+lSvHtni3KejFcuQJj7Er/g0WCwoLk4uEPeH03GJTGhMQ8HHm2qSX8WMOZu ZfFLGLq58kRn8AjCyR41TZS0JFVQ6GgHjL6CZuy6dpGhhbkKu9V2MPKhiUPZ/u/62ei5 Ac1xIeMITk3xDJ8TmEp7SoP3aPtEIw5bpGdjg= Received: by 10.181.203.11 with SMTP id f11mr1294216bkq.67.1227565980605; Mon, 24 Nov 2008 14:33:00 -0800 (PST) Received: by 10.181.31.13 with HTTP; Mon, 24 Nov 2008 14:33:00 -0800 (PST) Message-ID: <28283d910811241433w4a20ffe8mca58bc98d55b3ac3@mail.gmail.com> Date: Mon, 24 Nov 2008 17:33:00 -0500 From: "matt donovan" To: "William Palfreman" In-Reply-To: <731a66520811241406r6269274ft8a41666efd85560d@mail.gmail.com> MIME-Version: 1.0 References: <200811230855.mAN8tmXo091500@freefall.freebsd.org> <731a66520811241055x62a013at71bc1d08bcc6bda8@mail.gmail.com> <492B2242.4080102@vwsoft.com> <731a66520811241406r6269274ft8a41666efd85560d@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Volker , ports@freebsd.org, miwi@freebsd.org, rea-fbsd@codelabs.ru, freebsd-security@freebsd.org Subject: Re: ports/128999: [vuxml] [patch] update audio/streamripper to 1.64.0, fix CVE-2008-4829 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 23:00:22 -0000 On Mon, Nov 24, 2008 at 5:06 PM, William Palfreman wrote: > 2008/11/24 Volker : > > On 11/24/08 19:55, William Palfreman wrote: > >> 2008/11/23 : > >>> Synopsis: [vuxml] [patch] update audio/streamripper to 1.64.0, fix > CVE-2008-4829 > >> > >> Can we not have these on the freebsd-secuirty list please? I > >> subscribe to freebsd-security to get security alerts, not to get > >> emails every time a port is changed. > >> > >> William Palfreman > > > > You should better head over to security-advisories@ if you're only > > interested in SA's. Claiming about reading security related issues on a > > security mailing list sounds like fun. > > > > I appreciate Eygenes' work. > > That's nice. I am sure it is very useful on the ports mailinglist > where it belongs. I also greatly enjoy the frequent interesting and > informed discussion on the security mailinglist - of which Eirik > Overby's thread recently about syn+fin is one example. But all these > ports announcements, raw patches, garbled html etc. I could really do > without. It is why there are separate lists. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > you do know that the email your complaining about is about a security update correct? if you don't like it then you really need to use security-advisories instead of being subscribed to this one From owner-freebsd-ports@FreeBSD.ORG Tue Nov 25 07:52:30 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92FA41065672 for ; Tue, 25 Nov 2008 07:52:30 +0000 (UTC) (envelope-from starikov@caotus.ru) Received: from gw-1.caotus.ru (gw-1.caotus.ru [194.186.213.1]) by mx1.freebsd.org (Postfix) with ESMTP id 0D9278FC1C for ; Tue, 25 Nov 2008 07:52:29 +0000 (UTC) (envelope-from starikov@caotus.ru) Received: from ftn.caotus.ru (ftn.caotus.ru [194.186.213.16]) by gw-1.caotus.ru (8.14.2/8.14.2) with ESMTP id mAP7GcIv014457 for ; Tue, 25 Nov 2008 10:16:38 +0300 (MSK) (envelope-from starikov@caotus.ru) Received: from ftn.caotus.ru (localhost [127.0.0.1]) by ftn.caotus.ru (8.14.0/8.14.0) with ESMTP id mAP7GYeV006025 for ; Tue, 25 Nov 2008 10:16:34 +0300 Message-ID: <492BA652.5040708@caotus.ru> Date: Tue, 25 Nov 2008 10:16:34 +0300 From: =?KOI8-R?Q?=F3=D4=C1=D2=C9=CB=CF=D7_=F3=C5=D2=C7=C5=CA?= User-Agent: Thunderbird 2.0.0.17 (X11/20081111) MIME-Version: 1.0 To: ports@FreeBSD.org X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV 0.94.1/8677/Tue Nov 25 06:52:25 2008 on gw-1.caotus.ru X-Virus-Status: Clean X-Mailman-Approved-At: Tue, 25 Nov 2008 12:31:03 +0000 Cc: Subject: please update the start script of clamav-milter X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: starikov@caotus.ru List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 07:52:30 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, I'm tired to change the start arguments list of clamav-milter from default "--postmaster-only --local --outgoing --timeout=0 - --max-children=50" to needed for me "--quiet --noreject --local - --outgoing --timeout=0 --max-children=50" Could you update the start script (i.e. /usr/local/etc/rc.d/clamav-milter) for reading user's start arguments list from a variable in /et/rc.conf and overwriting the default one if it's set? - -- óÔÁÒÉËÏ× óÅÒÇÅÊ áÎÁÔÏÌØÅ×ÉÞ ÷ÅÄÕÝÉÊ ÉÎÖÅÎÅÒ-ÐÒÏÇÒÁÍÍÉÓÔ ïÔÄÅÌÁ ÜËÓÐÌÕÁÔÁÃÉÉ ÉÎÆÏÒÍÁÃÉÏÎÎÙÈ, ÔÅÌÅËÏÍÍÕÎÉËÁÃÉÏÎÎÙÈ É ËÒÉÐÔÏÇÒÁÆÉÞÅÓËÉÈ ÓÉÓÔÅÍ äÅÐÁÒÔÁÍÅÎÔÁ ÐÒÏÃÅÓÓÉÎÇÁ ÅÄÉÎÏÊ ÓÉÓÔÅÍÙ ÐÏÞÔÏ×ÙÈ ÐÅÒÅ×ÏÄÏ× ïóð éòã æçõð "ðÏÞÔÁ òÏÓÓÉÉ" Starikov@caotus.ru +7(495)398-4436 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkkrplIACgkQiB5ezNypRycyYwCeJCZhWR8xEKsnTYNCtelT4qXj EZ0AnRz9qgdml2D+0KBY4cw2MQv3E9kL =2pM2 -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Tue Nov 25 07:52:32 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00FC31065678 for ; Tue, 25 Nov 2008 07:52:32 +0000 (UTC) (envelope-from starikov@caotus.ru) Received: from gw-1.caotus.ru (gw-1.caotus.ru [194.186.213.1]) by mx1.freebsd.org (Postfix) with ESMTP id 73C5E8FC1B for ; Tue, 25 Nov 2008 07:52:31 +0000 (UTC) (envelope-from starikov@caotus.ru) Received: from ftn.caotus.ru (ftn.caotus.ru [194.186.213.16]) by gw-1.caotus.ru (8.14.2/8.14.2) with ESMTP id mAP7DNTP014258 for ; Tue, 25 Nov 2008 10:13:23 +0300 (MSK) (envelope-from starikov@caotus.ru) Received: from ftn.caotus.ru (localhost [127.0.0.1]) by ftn.caotus.ru (8.14.0/8.14.0) with ESMTP id mAP7DJiw005998 for ; Tue, 25 Nov 2008 10:13:19 +0300 Message-ID: <492BA58F.4050900@caotus.ru> Date: Tue, 25 Nov 2008 10:13:19 +0300 From: =?KOI8-R?Q?=F3=D4=C1=D2=C9=CB=CF=D7_=F3=C5=D2=C7=C5=CA?= User-Agent: Thunderbird 2.0.0.17 (X11/20081111) MIME-Version: 1.0 To: ports@FreeBSD.org X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV 0.94.1/8677/Tue Nov 25 06:52:25 2008 on gw-1.caotus.ru X-Virus-Status: Clean X-Mailman-Approved-At: Tue, 25 Nov 2008 12:31:50 +0000 Cc: Subject: problem with building php5-interbase port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: starikov@caotus.ru List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 07:52:32 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, I'm trying to build php5-interbase on FreeBSD 6.3: # uname -a FreeBSD borman.caotus.ru 6.3-RELEASE FreeBSD 6.3-RELEASE #0: Mon Nov 24 14:46:19 MSK 2008 root@borman.caotus.ru:/usr/obj/usr/src/sys/BORMAN i386 First it installs (or try to reinstall, because in doesn't finds required files) as a dependency the port firebird-client-2.0.3_2 Firebird-2 database client ===> Patching for php5-interbase-5.2.6_2 ===> php5-interbase-5.2.6_2 depends on file: /usr/local/bin/phpize - found ===> php5-interbase-5.2.6_2 depends on file: /usr/local/bin/autoconf-2.62 - found ===> php5-interbase-5.2.6_2 depends on shared library: fbclient.2.0 - not found ===> Verifying install for fbclient.2.0 in /usr/ports/databases/firebird20-client ===> Vulnerability check disabled, database not found and after return to build php5-interbase fails: ===> Returning to build of php5-interbase-5.2.6_2 Error: shared library "fbclient.2.0" does not exist *** Error code 1 Stop in /usr/ports/databases/php5-interbase. How should I fix this problem? - -- óÔÁÒÉËÏ× óÅÒÇÅÊ áÎÁÔÏÌØÅ×ÉÞ ÷ÅÄÕÝÉÊ ÉÎÖÅÎÅÒ-ÐÒÏÇÒÁÍÍÉÓÔ ïÔÄÅÌÁ ÜËÓÐÌÕÁÔÁÃÉÉ ÉÎÆÏÒÍÁÃÉÏÎÎÙÈ, ÔÅÌÅËÏÍÍÕÎÉËÁÃÉÏÎÎÙÈ É ËÒÉÐÔÏÇÒÁÆÉÞÅÓËÉÈ ÓÉÓÔÅÍ äÅÐÁÒÔÁÍÅÎÔÁ ÐÒÏÃÅÓÓÉÎÇÁ ÅÄÉÎÏÊ ÓÉÓÔÅÍÙ ÐÏÞÔÏ×ÙÈ ÐÅÒÅ×ÏÄÏ× ïóð éòã æçõð "ðÏÞÔÁ òÏÓÓÉÉ" Starikov@caotus.ru +7(495)398-4436 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkkrpY8ACgkQiB5ezNypRycUpwCeLK1p0nwFHW3AnsTG9RscwRk/ JwQAnRK4Bef2HXVZEtSjti4iOXo9/7bT =JeiQ -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Tue Nov 25 14:09:07 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 225E11065672 for ; Tue, 25 Nov 2008 14:09:07 +0000 (UTC) (envelope-from steven@hudson-trading.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.24]) by mx1.freebsd.org (Postfix) with ESMTP id DBF128FC1F for ; Tue, 25 Nov 2008 14:09:06 +0000 (UTC) (envelope-from steven@hudson-trading.com) Received: by qw-out-2122.google.com with SMTP id 9so523065qwb.7 for ; Tue, 25 Nov 2008 06:09:06 -0800 (PST) Received: by 10.214.81.18 with SMTP id e18mr3623005qab.67.1227620795769; Tue, 25 Nov 2008 05:46:35 -0800 (PST) Received: from ?10.2.200.223? ([209.249.190.254]) by mx.google.com with ESMTPS id 6sm6341255ywc.9.2008.11.25.05.46.34 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 25 Nov 2008 05:46:35 -0800 (PST) Message-Id: <3578B112-B2E2-458C-AB25-6006A5276E39@exit2shell.com> From: Steven Kreuzer To: freebsd@bitfreak.org In-Reply-To: <492AF954.7050501@bitfreak.org> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Date: Tue, 25 Nov 2008 08:46:33 -0500 References: <492AF954.7050501@bitfreak.org> X-Mailer: Apple Mail (2.929.2) Sender: Steven Kreuzer Cc: freebsd-ports@freebsd.org Subject: Re: A place to upload distfiles? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 14:09:07 -0000 On Nov 24, 2008, at 1:58 PM, freebsd@bitfreak.org wrote: > I maintain a port for which the vendor provided me a customized > distfile. They don't have it available for download from their > site, so I need to find a home for it. Does the FreeBSD Project or > Foundation provide hosting space for such cases or do I need to find > my own space? I can provide a mirror for the tarball on exit2shell.com. Let me know if you are still looking for a place. Steven Kreuzer http://www.exit2shell.com/~skreuzer From owner-freebsd-ports@FreeBSD.ORG Tue Nov 25 14:44:59 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48821106564A; Tue, 25 Nov 2008 14:44:59 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id E861E8FC14; Tue, 25 Nov 2008 14:44:56 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id QAA29410; Tue, 25 Nov 2008 16:44:53 +0200 (EET) (envelope-from avg@icyb.net.ua) Message-ID: <492C0F64.9060800@icyb.net.ua> Date: Tue, 25 Nov 2008 16:44:52 +0200 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.17 (X11/20081106) MIME-Version: 1.0 To: freebsd-java@freebsd.org, FreeBSD Ports , freebsd-amd64@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Subject: building java in i386 jail on amd64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 14:44:59 -0000 OS: FreeBSD 7.1-PRERELEASE amd64 Jail system: FreeBSD 7.1-PRERELEASE i386 Java boot strap: diablo-jdk-1.5.0.07.01_12 Trying to compile: java/jdk15 Build proceeds for some time and then fails with: >>>Recursively making pack all @ Tue 25 Nov 2008 14:05:25 UTC ... gmake[2]: Entering directory `/usr/obj/ports/usr/ports/java/jdk15/work/install/make/pack' i586 Installer Build started: 1.5.0_14-p8-avg_25_nov_2008_14_05 gmake PACK_OUTPUTDIR=/usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/pack/pack-jre-jars \ VAR_IMAGE_DIR=/usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/j2re-image \ JARS_TO_PACK="lib/rt.jar lib/jsse.jar lib/charsets.jar lib/ext/localedata.jar lib/plugin.jar lib/javaws.jar lib/deploy.jar" \ EXTRA_PACKOPTS="--strip-debug" \ pack-jars gmake[3]: Entering directory `/usr/obj/ports/usr/ports/java/jdk15/work/install/make/pack' /bin/mkdir -p /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/pack/pack-jre-jars for i in lib/rt.jar lib/jsse.jar lib/charsets.jar lib/ext/localedata.jar lib/plugin.jar lib/javaws.jar lib/deploy.jar ; do \ /bin/ls -l /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/j2re-image/$i | /usr/bin/awk '{printf("Packing %s %s bytes\n",$9, $5)}' ; \ /bin/mkdir -p /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/pack/pack-jre-jars/`/usr/bin/dirname $i` ; \ /bin/mkdir -p /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/j2re-image/`/usr/bin/dirname $i` ; \ /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/bin/pack200 -J-Xmx256m -J-esa -J-ea "--no-gzip" "--config-file=pack.all.properties" --strip-debug /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/pack/pack-jre-jars/`/usr/bin/dirname $i`/`/usr/bin/basename $i .jar`.pack /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/j2re-image/$i || exit 1 ; \ rm -f /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/j2re-image/$i ; \ /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/bin/unpack200 /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/pack/pack-jre-jars/`/usr/bin/dirname $i`/`/usr/bin/basename $i .jar`.pack /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/j2re-image/$i || exit 1 ; \ done Packing /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/j2re-image/lib/rt.jar 40297358 bytes # # An unexpected error has been detected by HotSpot Virtual Machine: # # Internal Error (4E4D4554484F440E4350500529), pid=34669, tid=0x28201100 # # Java VM: Java HotSpot(TM) Server VM (1.5.0_14-p8-avg_24_nov_2008_20_36 mixed mode) # An error report file with more information is saved as hs_err_pid34669.log # # If you would like to submit a bug report, please write # a letter to freebsd-java@FreeBSD.org mailing list # Abort trap (core dumped) gmake[3]: *** [pack-jars] Error 1 gmake[3]: Leaving directory `/usr/obj/ports/usr/ports/java/jdk15/work/install/make/pack' Here's hs_err*.log file: # # An unexpected error has been detected by HotSpot Virtual Machine: # # Internal Error (4E4D4554484F440E4350500529), pid=34669, tid=0x28201100 # # Java VM: Java HotSpot(TM) Server VM (1.5.0_14-p8-avg_24_nov_2008_20_36 mixed mode) --------------- T H R E A D --------------- Current thread (0x28242180): JavaThread "main" [_thread_in_Java, id=673190144] Stack: [0xffdff000,0xfffff000), sp=0xffffacd0, free space=2031k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) V [libjvm.so+0x525c2c] V [libjvm.so+0x1de7eb] V [libjvm.so+0x429edf] V [libjvm.so+0x4b32fa] V [libjvm.so+0x443d30] V [libjvm.so+0x43ec76] C 0xffffefd4 j java.util.Arrays.mergeSort([Ljava/lang/Object;[Ljava/lang/Object;III)V+194 j java.util.Arrays.mergeSort([Ljava/lang/Object;[Ljava/lang/Object;III)V+106 j java.util.Arrays.sort([Ljava/lang/Object;)V+17 j com.sun.java.util.jar.pack.ConstantPool.sort(Lcom/sun/java/util/jar/pack/ConstantPool$Index;)V+8 j com.sun.java.util.jar.pack.Package.buildGlobalConstantPool(Ljava/util/Set;)V+103 j com.sun.java.util.jar.pack.PackageWriter.setup()V+31 j com.sun.java.util.jar.pack.PackageWriter.write()V+18 j com.sun.java.util.jar.pack.PackerImpl$DoPack.flushPackage(Ljava/io/OutputStream;I)V+312 j com.sun.java.util.jar.pack.PackerImpl$DoPack.flushAll(Ljava/io/OutputStream;)V+18 j com.sun.java.util.jar.pack.PackerImpl$DoPack.run(Ljava/util/jar/JarFile;Ljava/io/OutputStream;)V+353 j com.sun.java.util.jar.pack.PackerImpl.pack(Ljava/util/jar/JarFile;Ljava/io/OutputStream;)V+98 j com.sun.java.util.jar.pack.Driver.main([Ljava/lang/String;)V+1623 v ~StubRoutines::call_stub V [libjvm.so+0x28b864] V [libjvm.so+0x43df79] V [libjvm.so+0x28a91f] V [libjvm.so+0x294755] V [libjvm.so+0x2acaac] C [pack200+0x422d] _init+0x3301 C [pack200+0x13cc] _init+0x4a0 --------------- P R O C E S S --------------- Java Threads: ( => current thread ) 0x28242780 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=673193984] 0x2823c560 JavaThread "CompilerThread1" daemon [_thread_blocked, id=673193728] 0x2823c3d0 JavaThread "CompilerThread0" daemon [_thread_in_native, id=673193472] 0x2823c240 JavaThread "AdapterThread" daemon [_thread_blocked, id=673193216] 0x28242600 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=673192960] 0x28242480 JavaThread "Finalizer" daemon [_thread_blocked, id=673192704] 0x28242300 JavaThread "Reference Handler" daemon [_thread_blocked, id=673192448] =>0x28242180 JavaThread "main" [_thread_in_Java, id=673190144] Other Threads: 0x2820fe80 VMThread [id=673191936] 0x28210380 WatcherThread [id=673194240] VM state:synchronizing (normal execution) VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event]) [0x282052b0/0x2823aa00] Safepoint_lock - owner thread: 0x2820fe80 [0x282052e0/0x2823aac0] Threads_lock - owner thread: 0x2820fe80 Heap PSYoungGen total 17920K, used 844K [0x3e230000, 0x3fea0000, 0x3fea0000) eden space 9792K, 8% used [0x3e230000,0x3e303118,0x3ebc0000) from space 8128K, 0% used [0x3f6b0000,0x3f6b0000,0x3fea0000) to space 9664K, 0% used [0x3ebc0000,0x3ebc0000,0x3f530000) PSOldGen total 233024K, used 135730K [0x2fea0000, 0x3e230000, 0x3e230000) object space 233024K, 58% used [0x2fea0000,0x3832cac8,0x3e230000) PSPermGen total 30976K, used 19557K [0x2bea0000, 0x2dce0000, 0x2fea0000) object space 30976K, 63% used [0x2bea0000,0x2d1b9760,0x2dce0000) Dynamic libraries: 0x08048000 /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/bin/pack200 0x28085000 /lib/libz.so.4 0x28097000 /lib/libthr.so.3 0x280aa000 /lib/libc.so.7 0x28300000 /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/server/libjvm.so 0x281b3000 /lib/libm.so.5 0x281c9000 /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/native_threads/libhpi.so 0x281db000 /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/libverify.so 0x288ee000 /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/libjava.so 0x281e8000 /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/libzip.so 0x28051000 /libexec/ld-elf.so.1 VM Arguments: jvm_args: -Denv.class.path= -Dapplication.home=/usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586 -Xms64m -Xmx256m -esa -ea java_command: com.sun.java.util.jar.pack.Driver --pack --no-gzip --config-file=pack.all.properties --strip-debug /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/pack/pack-jre-jars/lib/rt.pack /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/j2re-image/lib/rt.jar Launcher Type: SUN_STANDARD Environment Variables: JAVA_HOME= CLASSPATH= PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/home/avg/bin LD_LIBRARY_PATH=/usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/server:/usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386:/usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/../lib/i386: SHELL=/bin/sh DISPLAY=:0 HOSTTYPE=FreeBSD OSTYPE=FreeBSD ARCH=i586 MACHTYPE=unknown Signal Handlers: SIGSEGV: [libjvm.so+0x526540], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 SIGBUS: [libjvm.so+0x526540], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 SIGFPE: [libjvm.so+0x43ec50], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 SIGPIPE: [libjvm.so+0x43ec50], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 SIGILL: [libjvm.so+0x43ec50], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 SIGUSR1: SIG_DFL, sa_mask[0]=0x20000000, sa_flags=0x00000002 SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000 SIGHUP: [libjvm.so+0x440dc0], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 SIGINT: [libjvm.so+0x440dc0], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 SIGQUIT: [libjvm.so+0x440dc0], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 SIGTERM: [libjvm.so+0x440dc0], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 --------------- S Y S T E M --------------- OS:FreeBSD uname:FreeBSD 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #5 : Fri Nov 7 20:50:06 EET 2008 root@:/usr/obj/usr/src/sys/ODYSSEYgpart i386 rlimit: STACK 65536k, CORE infinity, NOFILE 11095 CPU:total 2 (cores per cpu 2, threads per core 1) family 6 model 7 stepping 6, cmov, cx8, fxsr, mmx Memory: 4k page, physical 2337904k vm_info: Java HotSpot(TM) Server VM (1.5.0_14-p8-avg_24_nov_2008_20_36) for freebsd-x86, built on Nov 24 2008 20:48:57 by root with gcc 4.2.1 20070719 [FreeBSD] GDB gives this information: #0 0x280eef07 in thr_kill () from /lib/libc.so.7 #1 0x280a24e6 in pthread_kill () from /lib/libthr.so.3 #2 0x280a00b3 in raise () from /lib/libthr.so.3 #3 0x2817f249 in abort () from /lib/libc.so.7 #4 0x2873f9d4 in os::abort () from /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/server/libjvm.so #5 0x28825cde in VMError::report_and_die () from /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/server/libjvm.so #6 0x284de7eb in report_fatal () from /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/server/libjvm.so #7 0x28729edf in nmethod::continuation_for_implicit_exception () from /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/server/libjvm.so #8 0x287b32fa in SharedRuntime::continuation_for_implicit_exception () from /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/server/libjvm.so #9 0x28743d30 in JVM_handle_bsd_signal () from /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/server/libjvm.so #10 0x2873ec76 in signalHandler () from /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/i386/server/libjvm.so #11 #12 0x28efd9c1 in ?? () ... Here's a snippet from ktrace that I was able to obtain: 34746 100439 pack200 CALL nanosleep(0xff8f3e94,0xff8f3e8c) 34746 100377 pack200 RET _umtx_op -1 errno 60 Operation timed out 34746 100377 pack200 CALL clock_gettime(0,0xffcfbe80) 34746 100377 pack200 RET clock_gettime 0 34746 100377 pack200 CALL clock_gettime(0,0xffcfbe80) 34746 100377 pack200 RET clock_gettime 0 34746 100377 pack200 CALL mprotect(0x281c8000,0x1000,PROT_NONE) 34746 100377 pack200 RET mprotect 0 34746 100400 pack200 PSIG SIGSEGV caught handler=0x2873ec50 mask=0x4 code=0x2 34746 100377 pack200 CALL nanosleep(0xffcfbe24,0xffcfbe1c) 34746 100400 pack200 CALL sigaction(SIGSEGV,0xffffb9d8,0xffffb9c0) 34746 100400 pack200 RET sigaction 0 34746 100400 pack200 CALL sigaction(SIGBUS,0xffffb9d8,0xffffb9c0) 34746 100400 pack200 RET sigaction 0 34746 100400 pack200 CALL write(0x1,0xffffb0c8,0x2) 34746 100400 pack200 GIO fd 1 wrote 2 bytes "# " 34746 100400 pack200 RET write 2 34746 100400 pack200 CALL write(0x1,0xffffb0c8,0x44) 34746 100400 pack200 GIO fd 1 wrote 68 bytes "# An unexpected error has been detected by HotSpot Virtual Machine: Also, I ran the command several times from command line and it looks like a chance of the crash is 50%. BTW, the command was: /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/bin/pack200 -J-Xmx256m -J-esa -J-ea "--no-gzip" "--config-file=pack.all.properties" --strip-debug /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/pack/pack-jre-jars/lib/rt.pack /usr/obj/ports/usr/ports/java/jdk15/work/control/build/bsd-i586/j2re-image/lib/rt.jar Working directory was: /usr/obj/ports/usr/ports/java/jdk15/work/install/make/pack Just in case: the machine has 4GB of RAM. -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 08:06:03 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 222E8106564A for ; Wed, 26 Nov 2008 08:06:03 +0000 (UTC) (envelope-from yahoo-dev-null@yahoo-inc.com) Received: from n2.smail.tpc.yahoo.com (n2.smail.tpc.yahoo.com [203.84.202.145]) by mx1.freebsd.org (Postfix) with ESMTP id E17C48FC0C for ; Wed, 26 Nov 2008 08:06:02 +0000 (UTC) (envelope-from yahoo-dev-null@yahoo-inc.com) Received: from w1.mtf.tpc.yahoo.com (w1.mtf.tpc.yahoo.com [203.84.205.50]) by n2.smail.tpc.yahoo.com (Postfix) with ESMTP id 6180486BE67; Wed, 26 Nov 2008 16:06:02 +0800 (CST) Received: (from yahoo@localhost) by w1.mtf.tpc.yahoo.com (8.14.2/8.14.2) id mAQ862sQ028639; Wed, 26 Nov 2008 16:06:02 +0800 (CST) (envelope-from yahoo-dev-null@yahoo-inc.com) Date: Wed, 26 Nov 2008 16:06:02 +0800 (CST) Message-Id: <200811260806.mAQ862sQ028639@w1.mtf.tpc.yahoo.com> From: lugclg@yahoo.com.tw To: candy589@ms22.hinet.net, lionss@yahoo.com.tw, gobest12@ms71.hinet.net, billing@outblaze.com, f_u_c_k_You_nqgnimgt@bsemnq.com.tw, coco-lo.520@yahoo.com.tw, ports@freebsd.org, m789575rain@yahoo.com.tw Errors-To: refertofriend-error@reply.yahoo.com X-Originating-IP: 114.30.47.10 Cc: Subject: =?iso-8859-1?q?Yahoo!=A9=5F=BC=AF=A5=CD=AC=A1+_-_=B6W=C9qA=A4=F9?= =?iso-8859-1?q?=BDu=A4W=AC=DD=A9M=A4U=B8=FC=A5=FE=AD=B1=A7K=B6Ogl8?= =?iso-8859-1?q?exyg?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: lugclg@yahoo.com.tw List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 08:06:03 -0000 §Ö¨Ó¨ì¢ça h o o­º­¶·j~´M~Ãz Ãz ²n ¢Ï ¤ù ºô~ ±H¤F¤@«h³Ì·s¬¡°Êµ¹§A³á!! ------------------------------------------------------------ µ¹±zªº¯d¨¥¡G ³Ì·s§ó·s: ®Õ¶é¯µ¨¯-­èÂà¾Çªº¶W¥¿¤k°ª®Õ¥Í³Q±j©Ô¨ì­Ü®w¸Ì­±¸j°_¨Ó±j¼Éeab5i3884 ³ÌÉq³ÌHIGHªº°ªµe½èAV¥úºÐ ³æ¤ù25~39¤¸¶R10°e2¶R20°e4 ¥­§¡¨C¤ù¶È»Ý30¤¸Áʺ¡1000¤¸¥ß§YÃØ°e¸õ¸õ³J¤@­Ó ±z±N³ÌÀu´fªº»ù®æ¶R¨ì³ÌÀu¨}ªº¼v¤ù ¥]¸ËÁô±K¡B¶Rªº©ñ¤ß¡B¼½©ñ¬yºZ¡B¬Ýªº¦w¤ß Åwªï«ö¦¹¬d¬Ý³Ì·s¼v¤ù ¥t¦³§K¶O¸Õ¬Ý¤U¸ü³Ì·s°ªµe½èAV¥úºÐ$20¤¸vq34m5i ½Ð¦b¶®ªê ·j´M¤W¥´¡yÃzÃz²n§K¶O¦¨¤H¼v¤ù¡z¬d¸ßºô¯¸ ½ÐÂI§Ú¡÷¡÷ i8k347dlajk6http://y6f2m3s61f9u6~l4fn263qss79u2d.QMVCCLF.TK#j5tcau6h5o5.com#5tutk700f12r9@8jg0243r2.un2t5d546p.com uj2d1187vuk86r/ o3851x ¶WÉqA¤ù½u¤W¬Ý©M¤U¸ü¥þ­±§K¶Ogl8exyg http://tw.news.yahoo.com/article/url/d/a/081118/5/19na4.html ------------------------------------------------------------ Yahoo!©_¼¯¥Í¬¡+ http://lifestyle.yahoo.com.tw/ ª©Åv©Ò¦³ Yahoo!©_¼¯ From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 13:57:43 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3C071065670 for ; Wed, 26 Nov 2008 13:57:43 +0000 (UTC) (envelope-from pczanik@fang.fa.gau.hu) Received: from a.relay.invitel.net (a.relay.invitel.net [62.77.203.3]) by mx1.freebsd.org (Postfix) with ESMTP id 7921A8FC0C for ; Wed, 26 Nov 2008 13:57:43 +0000 (UTC) (envelope-from pczanik@fang.fa.gau.hu) Received: from mail.invitel.hu (mail.invitel.hu [213.163.59.4]) by a.relay.invitel.net (Invitel Core SMTP Transmitter) with ESMTP id 874CC11A1FD for ; Wed, 26 Nov 2008 14:41:14 +0100 (CET) Received: from [192.168.2.179] ([87.97.82.138]) by mail.invitel.hu (Invitel Messaging Server) with ESMTPA id <0KAY00HY80OPD440@invitel.hu> for freebsd-ports@freebsd.org; Wed, 26 Nov 2008 14:41:14 +0100 (CET) Date: Wed, 26 Nov 2008 14:39:33 +0100 From: Peter Czanik To: freebsd-ports@freebsd.org Message-id: <492D5195.1030309@fang.fa.gau.hu> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-2 Content-transfer-encoding: 7BIT User-Agent: Thunderbird 2.0.0.18 (X11/20081112) Subject: php5-pdo_firebird (and php5-interbase) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 13:57:43 -0000 Hello, The two ports seem to have the same problem: not finding the installed Firebird 2.0 libraries: v12# uname -a FreeBSD v12.fa.gau.hu 7.0-RELEASE-p5 FreeBSD 7.0-RELEASE-p5 #0: Wed Oct 1 07:51:58 UTC 2008 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 v12# pwd /usr/ports/databases/php5-pdo_firebird v12# make ===> php5-pdo_firebird-5.2.6_2 depends on file: /usr/local/include/php/main/php.h - found ===> php5-pdo_firebird-5.2.6_2 depends on file: /usr/local/bin/phpize - found ===> php5-pdo_firebird-5.2.6_2 depends on file: /usr/local/lib/php/20060613/pdo.so - found ===> php5-pdo_firebird-5.2.6_2 depends on file: /usr/local/bin/autoconf-2.62 - found ===> php5-pdo_firebird-5.2.6_2 depends on shared library: fbclient.2.0 - not found ===> Verifying install for fbclient.2.0 in /usr/ports/databases/firebird20-client ===> firebird-client-2.0.3_2 depends on executable: gmake - found ===> firebird-client-2.0.3_2 depends on executable: bison - found ===> firebird-client-2.0.3_2 depends on file: /usr/local/bin/automake-1.9 - found ===> firebird-client-2.0.3_2 depends on file: /usr/local/bin/autoconf-2.62 - found ===> firebird-client-2.0.3_2 depends on file: /usr/local/bin/libtool - found ===> firebird-client-2.0.3_2 depends on shared library: icuuc - found ===> Configuring for firebird-client-2.0.3_2 ^C v12# ls -l /usr/local/lib/libfbclient.so* lrwxr-xr-x 1 root wheel 20 Nov 26 13:47 /usr/local/lib/libfbclient.so -> libfbclient.so.2.0.3 lrwxr-xr-x 1 root wheel 20 Nov 26 13:47 /usr/local/lib/libfbclient.so.2 -> libfbclient.so.2.0.3 lrwxr-xr-x 1 root wheel 20 Nov 26 13:47 /usr/local/lib/libfbclient.so.2.0 -> libfbclient.so.2.0.3 -r--r--r-- 1 root wheel 613756 Nov 26 13:47 /usr/local/lib/libfbclient.so.2.0.3 Bye, CzP From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 14:38:33 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D381D1065673 for ; Wed, 26 Nov 2008 14:38:33 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by mx1.freebsd.org (Postfix) with ESMTP id 9D3668FC0C for ; Wed, 26 Nov 2008 14:38:33 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (localhost [127.0.0.1]) by bunrab.catwhisker.org (8.13.3/8.13.3) with ESMTP id mAQEcT2p058290; Wed, 26 Nov 2008 06:38:29 -0800 (PST) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.13.3/8.13.1/Submit) id mAQEcQ2Y058289; Wed, 26 Nov 2008 06:38:26 -0800 (PST) (envelope-from david) Date: Wed, 26 Nov 2008 06:38:26 -0800 From: David Wolfskill To: ???????? ?????? Message-ID: <20081126143826.GD83287@bunrab.catwhisker.org> References: <492BA652.5040708@caotus.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="z/2SwVaBG11ut2fa" Content-Disposition: inline In-Reply-To: <492BA652.5040708@caotus.ru> User-Agent: Mutt/1.4.2.1i Cc: ports@freebsd.org Subject: Re: please update the start script of clamav-milter X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 14:38:33 -0000 --z/2SwVaBG11ut2fa Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Nov 25, 2008 at 10:16:34AM +0300, ???????? ?????? wrote: > ... > Could you update the start script (i.e. > /usr/local/etc/rc.d/clamav-milter) for reading user's start arguments > list from a variable in /et/rc.conf and overwriting the default one if > it's set? > ... Errr... huh? On my machine that runs clamav-milter: janus(6.4-P)[3] ps axwwl | grep clamav-milter 106 1074 1 0 96 0 141520 117148 select Is ?? 8:01.86 /usr/= local/sbin/clamav-milter --pidfile /var/run/clamav/clamav-milter.pid --noxh= eader -q -l --max-children=3D8 /var/run/clamav/clmilter.sock 1001 26291 26056 0 96 0 1552 528 - R+ p1 0:00.00 grep cl= amav-milter janus(6.4-P)[4]=20 and: janus(6.4-P)[4] grep clamav_milter /etc/rc.conf clamav_milter_enable=3D"YES" clamav_milter_flags=3D"--noxheader -q -l --max-children=3D8" janus(6.4-P)[5]=20 Are you unable to use the clamav_milter_flags variable for your purpose? Peace, david --=20 David H. Wolfskill david@catwhisker.org Depriving a girl or boy of an opportunity for education is evil. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --z/2SwVaBG11ut2fa Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iEYEARECAAYFAkktX14ACgkQmprOCmdXAD0WPQCfQHwS0OBMncyYyMucGnFBjJWl PNwAn1b2jtXWk+7tCXskbRnxO9ua75/c =fuR4 -----END PGP SIGNATURE----- --z/2SwVaBG11ut2fa-- From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 14:52:53 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81EAF1065672 for ; Wed, 26 Nov 2008 14:52:53 +0000 (UTC) (envelope-from starikov@caotus.ru) Received: from gw-1.caotus.ru (gw-1.caotus.ru [194.186.213.1]) by mx1.freebsd.org (Postfix) with ESMTP id C64688FC20 for ; Wed, 26 Nov 2008 14:52:52 +0000 (UTC) (envelope-from starikov@caotus.ru) Received: from ftn.caotus.ru (ftn.caotus.ru [194.186.213.16]) by gw-1.caotus.ru (8.14.2/8.14.2) with ESMTP id mAQEqmZY090341 for ; Wed, 26 Nov 2008 17:52:48 +0300 (MSK) (envelope-from starikov@caotus.ru) Received: from ftn.caotus.ru (localhost [127.0.0.1]) by ftn.caotus.ru (8.14.0/8.14.0) with ESMTP id mAQEqh3n010352 for ; Wed, 26 Nov 2008 17:52:43 +0300 Message-ID: <492D62BB.4020309@caotus.ru> Date: Wed, 26 Nov 2008 17:52:43 +0300 From: =?KOI8-R?Q?=F3=D4=C1=D2=C9=CB=CF=D7_=F3=C5=D2=C7=C5=CA?= User-Agent: Thunderbird 2.0.0.17 (X11/20081111) MIME-Version: 1.0 To: ports@FreeBSD.org X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV 0.94.1/8683/Wed Nov 26 09:58:25 2008 on gw-1.caotus.ru X-Virus-Status: Clean X-Mailman-Approved-At: Wed, 26 Nov 2008 15:11:30 +0000 Cc: Subject: Problems with php5-oci8 port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: starikov@caotus.ru List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 14:52:53 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, I'm using php5-oci8 in conjunction with www/apache22 port. It builds correctly, and Apache starts correctly. But for correct work it requires at least the varibale ORACLE_HOME (or LD_LIBRARY_PATH and TNS_ADMIN) and, in my case, the variable NLS_LANG to be set. Therefore the correct autostart of Apache at the boot is impossible. The editing of start script of Apache doesn't seems me to be a good idea. And one more old problem with running php5-oci8 on FreeBSD in native mode: When I'm connecting to Oracle Database from web server, which works on Linux (or in Linux emulation on FreeBSD): everything is OK, the Oracle Database Manager shows in status in column 'Machine' the hostname. But when I'm connecting to database from Apache, running on FreeBSD in native environment, I see in this field the substring of '# uname -r', i.e for case of "6.2-RELEASE" - '.2-RELEASE'. - -- óÔÁÒÉËÏ× óÅÒÇÅÊ áÎÁÔÏÌØÅ×ÉÞ ÷ÅÄÕÝÉÊ ÉÎÖÅÎÅÒ-ÐÒÏÇÒÁÍÍÉÓÔ ïÔÄÅÌÁ ÜËÓÐÌÕÁÔÁÃÉÉ ÉÎÆÏÒÍÁÃÉÏÎÎÙÈ, ÔÅÌÅËÏÍÍÕÎÉËÁÃÉÏÎÎÙÈ É ËÒÉÐÔÏÇÒÁÆÉÞÅÓËÉÈ ÓÉÓÔÅÍ äÅÐÁÒÔÁÍÅÎÔÁ ÐÒÏÃÅÓÓÉÎÇÁ ÅÄÉÎÏÊ ÓÉÓÔÅÍÙ ÐÏÞÔÏ×ÙÈ ÐÅÒÅ×ÏÄÏ× ïóð éòã æçõð "ðÏÞÔÁ òÏÓÓÉÉ" Starikov@caotus.ru +7(495)398-4436 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkktYrsACgkQiB5ezNypRycVVwCfdhinwV/SCSfV+ZADb7C/1UX0 7y4An3bPTQFrfTIlf0mWbEVPsfCnp9bI =64Cf -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 15:35:41 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE2891065675 for ; Wed, 26 Nov 2008 15:35:41 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id B27008FC24 for ; Wed, 26 Nov 2008 15:35:41 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-244-97.dhcp.oxfr.ma.charter.com ([68.189.244.97] helo=Gregory-Larkins-Computer.local) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L5MQV-000NGZ-6I; Wed, 26 Nov 2008 10:35:40 -0500 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by Gregory-Larkins-Computer.local (Postfix) with ESMTP id 801AF27F4612; Wed, 26 Nov 2008 10:35:38 -0500 (EST) Message-ID: <492D6CC8.2040104@FreeBSD.org> Date: Wed, 26 Nov 2008 10:35:36 -0500 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Peter Czanik References: <492D5195.1030309@fang.fa.gau.hu> In-Reply-To: <492D5195.1030309@fang.fa.gau.hu> X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.6 (-) Cc: skv@freebsd.org, freebsd-ports@freebsd.org Subject: Re: php5-pdo_firebird (and php5-interbase) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 15:35:42 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Peter Czanik wrote: > Hello, > > The two ports seem to have the same problem: not finding the installed > Firebird 2.0 libraries: > > v12# uname -a > FreeBSD v12.fa.gau.hu 7.0-RELEASE-p5 FreeBSD 7.0-RELEASE-p5 #0: Wed Oct > 1 07:51:58 UTC 2008 > root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 > v12# pwd > /usr/ports/databases/php5-pdo_firebird > v12# make > ===> php5-pdo_firebird-5.2.6_2 depends on file: > /usr/local/include/php/main/php.h - found > ===> php5-pdo_firebird-5.2.6_2 depends on file: /usr/local/bin/phpize > - found > ===> php5-pdo_firebird-5.2.6_2 depends on file: > /usr/local/lib/php/20060613/pdo.so - found > ===> php5-pdo_firebird-5.2.6_2 depends on file: > /usr/local/bin/autoconf-2.62 - found > ===> php5-pdo_firebird-5.2.6_2 depends on shared library: fbclient.2.0 > - not found > ===> Verifying install for fbclient.2.0 in > /usr/ports/databases/firebird20-client > ===> firebird-client-2.0.3_2 depends on executable: gmake - found > ===> firebird-client-2.0.3_2 depends on executable: bison - found > ===> firebird-client-2.0.3_2 depends on file: > /usr/local/bin/automake-1.9 - found > ===> firebird-client-2.0.3_2 depends on file: > /usr/local/bin/autoconf-2.62 - found > ===> firebird-client-2.0.3_2 depends on file: /usr/local/bin/libtool - > found > ===> firebird-client-2.0.3_2 depends on shared library: icuuc - found > ===> Configuring for firebird-client-2.0.3_2 > ^C > v12# ls -l /usr/local/lib/libfbclient.so* > lrwxr-xr-x 1 root wheel 20 Nov 26 13:47 > /usr/local/lib/libfbclient.so -> libfbclient.so.2.0.3 > lrwxr-xr-x 1 root wheel 20 Nov 26 13:47 > /usr/local/lib/libfbclient.so.2 -> libfbclient.so.2.0.3 > lrwxr-xr-x 1 root wheel 20 Nov 26 13:47 > /usr/local/lib/libfbclient.so.2.0 -> libfbclient.so.2.0.3 > -r--r--r-- 1 root wheel 613756 Nov 26 13:47 > /usr/local/lib/libfbclient.so.2.0.3 > > Bye, > CzP > Hi Peter, The Firebird database server and client directories were recently renamed in the ports tree, and some tweaks were made to /usr/ports/Mk/bsd.database.mk, which controls the LIB_DEPENDS list. I reproduced the problem you reported, and I fixed it by reverting this recent change to /usr/ports/Mk/bsd.database.mk: http://www.freebsd.org/cgi/cvsweb.cgi/ports/Mk/bsd.database.mk.diff?r1=1.30;r2=1.31 The problem is that the ports system uses ldconfig to determine if a shared library is installed, and it doesn't find "libfbclient.2.0", but finds "libfbclient.2" instead. To verify my assumption, please try this command on your machine: ldconfig -r | grep fbclient I see this: 471:-lfbclient.2 => /usr/local/lib/libfbclient.so.2 Since "-lfbclient.2" is reported instead of "-lfbclient.2.0", the Firebird client will be rebuilt, even though the libraries are present. I have cc'd the committer on this message so he can have a look. I don't want to mess with anything in the Mk/ directory of the ports tree, since there might be something else going on that I'm not aware of. Best regards, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJLWzI0sRouByUApARAr3vAJ9f8Lqa1+vW91K8YRQJwk+b45CgzACeJjwR fu0IcjZjSxAj2N2rSG19aUQ= =8LOZ -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 15:52:59 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 279541065670 for ; Wed, 26 Nov 2008 15:52:59 +0000 (UTC) (envelope-from subbsd@gmail.com) Received: from gv-out-0910.google.com (gv-out-0910.google.com [216.239.58.188]) by mx1.freebsd.org (Postfix) with ESMTP id A4E7C8FC0A for ; Wed, 26 Nov 2008 15:52:58 +0000 (UTC) (envelope-from subbsd@gmail.com) Received: by gv-out-0910.google.com with SMTP id n8so177428gve.39 for ; Wed, 26 Nov 2008 07:52:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:reply-to:to:subject:date :user-agent:references:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:message-id; bh=KzHlT3jAj8ijEgbqpopWNCwnw0haleWsyUT6ifxbnpE=; b=Z++y+7hmtiOBTpoH/NJfD9NquRKXSqU8CqeGBsLDX8WSxF0tVAFeUvUgxjus38VcKa TDH1lfJmQgI5ECRmwx8Ac73HTqRNerig4dxtAf0QcwXvL2kkNVeqLi94jBdEyM+9Ary9 YcOqTJ6jsXleqOGsu2QX0kjklBfMbL3qB5etc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:reply-to:to:subject:date:user-agent:references:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:message-id; b=AMXbY4uYokAlKUq1GgaMq4v9Xns0CKd0hJO0KOXvSw4BFwQ/NUA81Ix9g+apxjftpn ehnrnelp4Bb5TYaSlrLHnmSdixQfBaIjeFrdJ9wCgR8v3Kqt/oIc1B26wQekW+zUm+bo TP2TpsVC3koeJG1ezISIbbMBZb5hY4s3bP2Yg= Received: by 10.86.62.3 with SMTP id k3mr3905104fga.6.1227713543891; Wed, 26 Nov 2008 07:32:23 -0800 (PST) Received: from oleg.net.nevosoft.ru ([195.182.128.54]) by mx.google.com with ESMTPS id 4sm1089544fgg.4.2008.11.26.07.32.23 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 07:32:23 -0800 (PST) From: Ole To: freebsd-ports@freebsd.org Date: Wed, 26 Nov 2008 18:32:18 +0300 User-Agent: KMail/1.10.1 (FreeBSD/7.1-PRERELEASE; KDE/4.1.1; i386; ; ) References: <492D62BB.4020309@caotus.ru> In-Reply-To: <492D62BB.4020309@caotus.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200811261832.18451.subbsd@gmail.com> Subject: Re: Problems with php5-oci8 port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: subbsd@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 15:52:59 -0000 On Wednesday 26 November 2008 17:52:43 =F3=D4=C1=D2=C9=CB=CF=D7 =F3=C5=D2= =C7=C5=CA wrote: > Hi, > > I'm using php5-oci8 in conjunction with www/apache22 port. > > It builds correctly, and Apache starts correctly. > But for correct work it requires at least the varibale ORACLE_HOME (or > LD_LIBRARY_PATH and TNS_ADMIN) and, in my case, the variable NLS_LANG to > be set. > Therefore the correct autostart of Apache at the boot is impossible. > The editing of start script of Apache doesn't seems me to be a good idea. In my installation variables like ORACLE_HOME and other correct work with=20 apache setenv "http://httpd.apache.org/docs/2.2/mod/mod_env.html" From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 16:14:46 2008 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 635FC106564A for ; Wed, 26 Nov 2008 16:14:46 +0000 (UTC) (envelope-from pczanik@fang.fa.gau.hu) Received: from b.relay.invitel.net (b.relay.invitel.net [62.77.203.4]) by mx1.freebsd.org (Postfix) with ESMTP id AEE0C8FC1A for ; Wed, 26 Nov 2008 16:14:45 +0000 (UTC) (envelope-from pczanik@fang.fa.gau.hu) Received: from mail.invitel.hu (mail.invitel.hu [213.163.59.4]) by b.relay.invitel.net (Invitel Core SMTP Transmitter) with ESMTP id B5F2D31A7C1; Wed, 26 Nov 2008 17:14:43 +0100 (CET) Received: from [192.168.2.179] ([87.97.82.138]) by mail.invitel.hu (Invitel Messaging Server) with ESMTPA id <0KAY00HE57SJECQ0@invitel.hu>; Wed, 26 Nov 2008 17:14:43 +0100 (CET) Date: Wed, 26 Nov 2008 17:13:01 +0100 From: Peter Czanik In-reply-to: <492D6CC8.2040104@FreeBSD.org> To: glarkin@FreeBSD.org Message-id: <492D758D.2010608@fang.fa.gau.hu> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-2 Content-transfer-encoding: 8BIT References: <492D5195.1030309@fang.fa.gau.hu> <492D6CC8.2040104@FreeBSD.org> User-Agent: Thunderbird 2.0.0.18 (X11/20081112) Cc: skv@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: php5-pdo_firebird (and php5-interbase) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:14:46 -0000 Hello, First of all, thank you for your help, you saved my day :-) Greg Larkin írta: > To verify my assumption, please try this command on your machine: > > ldconfig -r | grep fbclient v12# ldconfig -r | grep fbclient 210:-lfbclient.2 => /usr/local/lib/libfbclient.so.2 > I have cc'd the committer on this message so he can have a look. I > don't want to mess with anything in the Mk/ directory of the ports tree, > since there might be something else going on that I'm not aware of. For now this quick and dirty fix solved my immediate problem: v12# diff -u /root/bsd.database.mk bsd.database.mk --- /root/bsd.database.mk 2008-11-26 18:06:35.000000000 +0100 +++ bsd.database.mk 2008-11-26 18:07:07.000000000 +0100 @@ -441,9 +441,9 @@ .endif .if ${FIREBIRD_VER} == "2" -LIB_DEPENDS+= fbclient.2.0:${PORTSDIR}/databases/firebird20-client +LIB_DEPENDS+= fbclient.2:${PORTSDIR}/databases/firebird20-client .elif ${FIREBIRD_VER} == "20" -LIB_DEPENDS+= fbclient.2.0:${PORTSDIR}/databases/firebird20-client +LIB_DEPENDS+= fbclient.2:${PORTSDIR}/databases/firebird20-client .elif ${FIREBIRD_VER} == "1" LIB_DEPENDS+= fbclient.1:${PORTSDIR}/databases/firebird-client .else Bye, CzP From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 17:20:35 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63B701065670; Wed, 26 Nov 2008 17:20:35 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from megatron.madpilot.net (megatron.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 0D33D8FC18; Wed, 26 Nov 2008 17:20:34 +0000 (UTC) (envelope-from mad@madpilot.net) Received: by megatron.madpilot.net (Postfix, from userid 1000) id BFA31130C40; Wed, 26 Nov 2008 18:20:32 +0100 (CET) Date: Wed, 26 Nov 2008 18:20:32 +0100 From: Guido Falsi To: Ion-Mihai Tetcu Message-ID: <20081126172032.GA18241@megatron.madpilot.net> References: <20081118103904.GA60683@megatron.madpilot.net> <20081118185228.1e08f278@it.buh.tecnik93.com> <20081121150741.GA13869@megatron.madpilot.net> <20081121185750.6be66cd4@it.buh.tecnik93.com> <20081121192612.GA80092@atarininja.org> <49273A33.9050909@madpilot.net> <20081122210622.4e52d1e9@it.buh.tecnik93.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081122210622.4e52d1e9@it.buh.tecnik93.com> X-Operating-System: FreeBSD 7.1-PRERELEASE User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@freebsd.org, Wesley Shields Subject: Re: games/traindirector: Help reproduce problem on AMD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 17:20:35 -0000 On Sat, Nov 22, 2008 at 09:06:22PM +0200, Ion-Mihai Tetcu wrote: > Download the package that should contain it from the link I gave you > and verify if it is where it should be then. > > > The test machine I build is a very clean one, a clean install with > > just ntpd and xorg running, then I installed wxgtk and traindirector. > > Try make install in your port without having any other installed and > see what happens. > It might be something environment related. > > > I'll try those flags, but I really can't see how they can affect it. > > No, I don't see either and anyway I test on a pristine env. tinderbox > and it dies the same. At last I think I got it. The port is still referencing /usr/X11R6. I suspect that QAT and pointyhat are not symlinking it to /usr/local, so the port fails. I'm attaching a patch to the port to fix this. Could someone please try this patch on a tinderbox and report? If all is ok I'll send a PR. It works ok here, but I'd like to be sure. Thank you in advance! -- Guido Falsi From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 17:21:37 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC7E01065673; Wed, 26 Nov 2008 17:21:37 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from megatron.madpilot.net (megatron.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 63AA58FC21; Wed, 26 Nov 2008 17:21:37 +0000 (UTC) (envelope-from mad@madpilot.net) Received: by megatron.madpilot.net (Postfix, from userid 1000) id 8DC4F130C40; Wed, 26 Nov 2008 18:21:36 +0100 (CET) Date: Wed, 26 Nov 2008 18:21:36 +0100 From: Guido Falsi To: Ion-Mihai Tetcu Message-ID: <20081126172136.GB18241@megatron.madpilot.net> References: <20081118103904.GA60683@megatron.madpilot.net> <20081118185228.1e08f278@it.buh.tecnik93.com> <20081121150741.GA13869@megatron.madpilot.net> <20081121185750.6be66cd4@it.buh.tecnik93.com> <20081121192612.GA80092@atarininja.org> <49273A33.9050909@madpilot.net> <20081122210622.4e52d1e9@it.buh.tecnik93.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="T4sUOijqQbZv57TR" Content-Disposition: inline In-Reply-To: <20081122210622.4e52d1e9@it.buh.tecnik93.com> X-Operating-System: FreeBSD 7.1-PRERELEASE User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@freebsd.org, Wesley Shields Subject: Re: games/traindirector: Help reproduce problem on AMD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 17:21:37 -0000 --T4sUOijqQbZv57TR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Nov 22, 2008 at 09:06:22PM +0200, Ion-Mihai Tetcu wrote: > On Fri, 21 Nov 2008 23:46:11 +0100 [...] As usual...I forgot the attachment, sorry, here it is. -- Guido Falsi --T4sUOijqQbZv57TR Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="tdir.diff" diff -ruN traindirector.old/Makefile traindirector/Makefile --- traindirector.old/Makefile 2008-11-26 18:04:56.000000000 +0100 +++ traindirector/Makefile 2008-11-21 15:53:41.000000000 +0100 @@ -14,8 +14,6 @@ MAINTAINER= mad@madpilot.net COMMENT= Train controller simulation -BROKEN= linker error (linker error: http://T64.TecNik93.com/logs/7-STABLE-FTP/traindirector-3.5.log) - NO_WRKSUBDIR= yes USE_GMAKE= yes diff -ruN traindirector.old/files/patch-Makefile.fc9 traindirector/files/patch-Makefile.fc9 --- traindirector.old/files/patch-Makefile.fc9 2008-11-26 18:04:56.000000000 +0100 +++ traindirector/files/patch-Makefile.fc9 2008-11-26 17:43:09.000000000 +0100 @@ -1,5 +1,5 @@ ---- Makefile.fc9.orig 2008-08-31 18:53:10.000000000 +0300 -+++ Makefile.fc9 2008-09-07 04:07:22.000000000 +0300 +--- Makefile.fc9.orig 2008-08-31 18:53:10.000000000 +0200 ++++ Makefile.fc9 2008-11-26 17:42:43.000000000 +0100 @@ -20,16 +20,16 @@ LDFLAGS_GUI = CXX = g++ @@ -8,15 +8,16 @@ +CXXFLAGS += -pthread -Wall -Wundef -Wno-ctor-dtor-privacy #CPPFLAGS = -D__WXDEBUG__ -DGTK_NO_CHECK_CASTS -pthread -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D_LARGEFILE_SOURCE=1 -DwxUSE_UNICODE=1 -I. -CPPFLAGS = -DGTK_NO_CHECK_CASTS -pthread -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D_LARGEFILE_SOURCE=1 -DwxUSE_UNICODE=1 -I. -I/usr/include/wx-2.8 -I/usr/lib/wx/include/gtk2-unicode-release-2.8 +-LDFLAGS = -pthread -L/usr/X11R6/lib +CPPFLAGS += -DGTK_NO_CHECK_CASTS -pthread -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D_LARGEFILE_SOURCE=1 -DwxUSE_UNICODE=1 -I. -I/usr/local/include/wx-2.8 -I/usr/local/lib/wx/include/gtk2-unicode-release-2.8 - LDFLAGS = -pthread -L/usr/X11R6/lib ++LDFLAGS = -pthread -L/usr/local/lib WX_LIB_FLAVOUR = TOOLKIT = GTK TOOLKIT_LOWERCASE = gtk TOOLKIT_VERSION = 2 -EXTRALIBS = -pthread -L/usr/X11R6/lib -lz -ldl -lm -EXTRALIBS_GUI = -Wl,--export-dynamic -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lgthread-2.0 -lglib-2.0 -lXinerama -lXxf86vm -lpng -lz -ljpeg -ltiff -+EXTRALIBS = -pthread -L/usr/X11R6/lib -lz -lm ++EXTRALIBS = -pthread -L/usr/local/lib -lz -lm +EXTRALIBS_GUI = -Wl,--export-dynamic -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lXinerama -lXxf86vm -lpng -lz -ljpeg -ltiff EXTRALIBS_SDL = HOST_SUFFIX = --T4sUOijqQbZv57TR-- From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 17:25:53 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BB801065670; Wed, 26 Nov 2008 17:25:53 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.freebsd.org (Postfix) with ESMTP id 217A28FC19; Wed, 26 Nov 2008 17:25:52 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 75F195C17; Wed, 26 Nov 2008 12:25:52 -0500 (EST) Date: Wed, 26 Nov 2008 12:25:52 -0500 From: Wesley Shields To: Guido Falsi Message-ID: <20081126172552.GD80611@atarininja.org> References: <20081118103904.GA60683@megatron.madpilot.net> <20081118185228.1e08f278@it.buh.tecnik93.com> <20081121150741.GA13869@megatron.madpilot.net> <20081121185750.6be66cd4@it.buh.tecnik93.com> <20081121192612.GA80092@atarininja.org> <49273A33.9050909@madpilot.net> <20081122210622.4e52d1e9@it.buh.tecnik93.com> <20081126172032.GA18241@megatron.madpilot.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081126172032.GA18241@megatron.madpilot.net> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@freebsd.org, Ion-Mihai Tetcu Subject: Re: games/traindirector: Help reproduce problem on AMD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 17:25:53 -0000 On Wed, Nov 26, 2008 at 06:20:32PM +0100, Guido Falsi wrote: > On Sat, Nov 22, 2008 at 09:06:22PM +0200, Ion-Mihai Tetcu wrote: > > > Download the package that should contain it from the link I gave you > > and verify if it is where it should be then. > > > > > The test machine I build is a very clean one, a clean install with > > > just ntpd and xorg running, then I installed wxgtk and traindirector. > > > > Try make install in your port without having any other installed and > > see what happens. > > It might be something environment related. > > > > > I'll try those flags, but I really can't see how they can affect it. > > > > No, I don't see either and anyway I test on a pristine env. tinderbox > > and it dies the same. > > At last I think I got it. The port is still referencing /usr/X11R6. I > suspect that QAT and pointyhat are not symlinking it to /usr/local, so > the port fails. > > I'm attaching a patch to the port to fix this. Could someone please try > this patch on a tinderbox and report? If all is ok I'll send a PR. It > works ok here, but I'd like to be sure. I'll add it to my queue and get back to you shortly. -- WXS From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 17:46:54 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DD551065674; Wed, 26 Nov 2008 17:46:54 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.freebsd.org (Postfix) with ESMTP id D8D798FC17; Wed, 26 Nov 2008 17:46:53 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 648995C17; Wed, 26 Nov 2008 12:46:53 -0500 (EST) Date: Wed, 26 Nov 2008 12:46:53 -0500 From: Wesley Shields To: Guido Falsi Message-ID: <20081126174653.GE80611@atarininja.org> References: <20081118103904.GA60683@megatron.madpilot.net> <20081118185228.1e08f278@it.buh.tecnik93.com> <20081121150741.GA13869@megatron.madpilot.net> <20081121185750.6be66cd4@it.buh.tecnik93.com> <20081121192612.GA80092@atarininja.org> <49273A33.9050909@madpilot.net> <20081122210622.4e52d1e9@it.buh.tecnik93.com> <20081126172136.GB18241@megatron.madpilot.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081126172136.GB18241@megatron.madpilot.net> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@freebsd.org, Ion-Mihai Tetcu Subject: Re: games/traindirector: Help reproduce problem on AMD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 17:46:54 -0000 On Wed, Nov 26, 2008 at 06:21:36PM +0100, Guido Falsi wrote: > On Sat, Nov 22, 2008 at 09:06:22PM +0200, Ion-Mihai Tetcu wrote: > > On Fri, 21 Nov 2008 23:46:11 +0100 > [...] > > As usual...I forgot the attachment, sorry, here it is. This fixes it for me. I'll go ahead and commit this tonight. Thanks for taking care of this and in your work on the port. -- WXS From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 17:48:24 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFF381065673 for ; Wed, 26 Nov 2008 17:48:24 +0000 (UTC) (envelope-from axel.burwitz@arcor.de) Received: from mail-in-01.arcor-online.net (mail-in-01.arcor-online.net [151.189.21.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5D3958FC1E for ; Wed, 26 Nov 2008 17:48:24 +0000 (UTC) (envelope-from axel.burwitz@arcor.de) Received: from mail-in-08-z2.arcor-online.net (mail-in-08-z2.arcor-online.net [151.189.8.20]) by mail-in-01.arcor-online.net (Postfix) with ESMTP id D2AB2106F99; Wed, 26 Nov 2008 18:48:20 +0100 (CET) Received: from mail-in-04.arcor-online.net (mail-in-04.arcor-online.net [151.189.21.44]) by mail-in-08-z2.arcor-online.net (Postfix) with ESMTP id 8E6732130AC; Wed, 26 Nov 2008 18:48:20 +0100 (CET) Received: from freebsd (dslb-084-058-020-119.pools.arcor-ip.net [84.58.20.119]) (Authenticated sender: axel.burwitz@arcor.de) by mail-in-04.arcor-online.net (Postfix) with ESMTP id 3E5641BF4F0; Wed, 26 Nov 2008 18:48:20 +0100 (CET) Date: Wed, 26 Nov 2008 18:48:15 +0100 To: arved@freebsd.org From: "Axel Burwitz" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Message-ID: User-Agent: Opera Mail/9.62 (FreeBSD) X-Virus-Scanned: ClamAV 0.94.1/8684/Wed Nov 26 16:37:33 2008 on mail-in-04.arcor-online.net X-Virus-Status: Clean Cc: ports@freebsd.org Subject: FreeBSD Port: kaffeine-0.8.7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: axel.burwitz@arcor.de List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 17:48:24 -0000 Hi Arved, lme@ directed me from Forum to you for help in: - DVB interface in FreeBSD / Kaffeine - with help from the maintainer of CX88 I finally made it to get a Hauppauge WinTV-HVR 1300 with CX88-driver support up and running in FreeBSD (written a HowTo in www.bsdforen.de). Can scan channel and capture DVB-T with cx88 now. Now I tried to use Kaffeine, as recommended for DVB, as a viewer, but it doesn't work at all. Kaffeine doesn't find the device. My postings in the kaffeine-user ML showed that it looks like there is a completely different interfacing in FreeBSD than in Linux. (can that be true?) During analysis I was asked about the expected dvb device /dev/dvb/adpater0/frontend0 but at least in my FreeBSD installation there are only three devices /dev/cx88mpeg0 /dev/cx88video /dev/cx88audio. cx88mpeg0 is the device I can use with cx88 for capturing and it works... The guy in the kaffeine-user ML was wondering even how I was able to compile Kaffeine in FreeBSD... But: that was no problem at all. best regards Axel From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 18:51:32 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32B6B1065672; Wed, 26 Nov 2008 18:51:32 +0000 (UTC) (envelope-from arved@freebsd.org) Received: from inci.arved.priv.at (cl-1383.ham-01.de.sixxs.net [IPv6:2001:6f8:900:566::2]) by mx1.freebsd.org (Postfix) with ESMTP id 9C43F8FC0A; Wed, 26 Nov 2008 18:51:31 +0000 (UTC) (envelope-from arved@freebsd.org) Received: from ferdinand.arved.priv.at (ferdinand-gif1.arved.priv.at [IPv6:2001:6f8:13fb::2]) by inci.arved.priv.at (8.14.2/8.14.2) with ESMTP id mAQIpL8m050316; Wed, 26 Nov 2008 19:51:26 +0100 (CET) (envelope-from arved@freebsd.org) Received: from [IPv6:2001:6f8:13fb:3:20d:93ff:fe75:d4cc] (minimac.arved.priv.at [IPv6:2001:6f8:13fb:3:20d:93ff:fe75:d4cc]) by ferdinand.arved.priv.at (8.14.2/8.14.2) with ESMTP id mAQIpDxc002037; Wed, 26 Nov 2008 19:51:18 +0100 (CET) (envelope-from arved@freebsd.org) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v753.1) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <876355A7-DE08-4797-ADCB-97CADF8348A7@freebsd.org> Content-Transfer-Encoding: 7bit From: Tilman Linneweh Date: Wed, 26 Nov 2008 19:48:16 +0100 To: axel.burwitz@arcor.de X-Mailer: Apple Mail (2.753.1) Cc: ports@freebsd.org, Tilman Linneweh Subject: Re: FreeBSD Port: kaffeine-0.8.7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 18:51:32 -0000 Hi Axel, On Nov 26, 2008, at 18:48, Axel Burwitz wrote: > - DVB interface in FreeBSD / Kaffeine - > > with help from the maintainer of CX88 I finally made it to get a > Hauppauge WinTV-HVR 1300 with CX88-driver support up and running in > FreeBSD (written a HowTo in www.bsdforen.de). > Can scan channel and capture DVB-T with cx88 now. > > Now I tried to use Kaffeine, as recommended for DVB, as a viewer, > but it doesn't work at all. Kaffeine doesn't find the device. The only DVB-devices that were reported to work with kaffeine on FreeBSD, where those using the driver from http://raaf.atspace.org/ dvbusb/ > My postings in the kaffeine-user ML showed that it looks like there > is a completely different interfacing in FreeBSD than in Linux. > (can that be true?) AFAIK there is no general interface for DVB Hardware in FreeBSD, every driver can use his own (actually there are not many drivers :- (), Looks like cx88 uses a different one, than the dvbusb driver. > During analysis I was asked about the expected dvb device > > /dev/dvb/adpater0/frontend0 > > but at least in my FreeBSD installation there are only three devices > /dev/cx88mpeg0 > /dev/cx88video > /dev/cx88audio. > Maybe Christophe is right, and you are missing the dvb part of the driver. > The guy in the kaffeine-user ML was wondering even how I was able > to compile Kaffeine in FreeBSD... But: that was no problem at all. > Because the kaffeine port uses the linux header files. Since i don't have this hardware, i can only say "Use the source Luke". Compare the Linux driver with the FreeBSD cx88 and dvbusb driver, and try to create similar devices. Have fun! arved From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 18:58:47 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2DEC1065673; Wed, 26 Nov 2008 18:58:47 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from megatron.madpilot.net (megatron.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 5832B8FC1C; Wed, 26 Nov 2008 18:58:47 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from localhost (localhost [127.0.0.1]) by megatron.madpilot.net (Postfix) with ESMTP id 3977C130C3B; Wed, 26 Nov 2008 19:58:46 +0100 (CET) X-Virus-Scanned: amavisd-new at madpilot.net Received: from megatron.madpilot.net ([127.0.0.1]) by localhost (megatron.madpilot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id R6tcjN2dR3ez; Wed, 26 Nov 2008 19:58:42 +0100 (CET) Received: from wedge.madpilot.net (wedge.madpilot.net [172.24.42.11]) by megatron.madpilot.net (Postfix) with ESMTP; Wed, 26 Nov 2008 19:58:42 +0100 (CET) Message-ID: <492D9C62.1010801@madpilot.net> Date: Wed, 26 Nov 2008 19:58:42 +0100 From: Guido Falsi User-Agent: Thunderbird 2.0.0.17 (X11/20080927) MIME-Version: 1.0 To: Wesley Shields References: <20081118103904.GA60683@megatron.madpilot.net> <20081118185228.1e08f278@it.buh.tecnik93.com> <20081121150741.GA13869@megatron.madpilot.net> <20081121185750.6be66cd4@it.buh.tecnik93.com> <20081121192612.GA80092@atarininja.org> <49273A33.9050909@madpilot.net> <20081122210622.4e52d1e9@it.buh.tecnik93.com> <20081126172136.GB18241@megatron.madpilot.net> <20081126174653.GE80611@atarininja.org> In-Reply-To: <20081126174653.GE80611@atarininja.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Ion-Mihai Tetcu Subject: Re: games/traindirector: Help reproduce problem on AMD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 18:58:47 -0000 Wesley Shields wrote: > On Wed, Nov 26, 2008 at 06:21:36PM +0100, Guido Falsi wrote: >> On Sat, Nov 22, 2008 at 09:06:22PM +0200, Ion-Mihai Tetcu wrote: >>> On Fri, 21 Nov 2008 23:46:11 +0100 >> [...] >> >> As usual...I forgot the attachment, sorry, here it is. > > This fixes it for me. I'll go ahead and commit this tonight. Very good! So I will not file a PR. Thank you for your time and patience > > Thanks for taking care of this and in your work on the port. That's a pleasure! :) -- Guido Falsi From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 23:04:24 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 961FD1065673 for ; Wed, 26 Nov 2008 23:04:24 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.25]) by mx1.freebsd.org (Postfix) with ESMTP id 137E88FC0C for ; Wed, 26 Nov 2008 23:04:23 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so289350eyi.7 for ; Wed, 26 Nov 2008 15:04:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=54XaVZIpIiXP1wVhmXFKZpQhNyiVF0MxqHK7pY1qmE0=; b=BfK35knlB91ZgOy74232XVZWmnFU2mLRjc1VYHEsMR0Na7pX+iy+mEWN8JPLsMPR6A mnBCbaSzVvik6qCZU9OS/a3ac2m8r5YXcgV9+RVmCNtp9Q1eynxTH0sv7W3MLSXcI4hX pKyzwliNiDN3nbTm9dqVMtoJJQTliMqZ729xw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=rYWmMG60uZfNNPH/gIp4Fwjcuh9us1n3mFPsBaToxxiDVIsza+Mq8pwPnFFeV7nvps BUqITsdfjchQrse2psWvUieYn/B7T/NJf276VKcj6IZtjV51yQV4NjEY8fGYqBnk6ubS gKGKdgj1Cy3241n1U9JQKm7T/ydFFCHsovlGw= Received: by 10.210.137.14 with SMTP id k14mr2440983ebd.175.1227740662753; Wed, 26 Nov 2008 15:04:22 -0800 (PST) Received: by 10.210.130.15 with HTTP; Wed, 26 Nov 2008 15:04:22 -0800 (PST) Message-ID: <3cb459ed0811261504j4cada6d3ue5c80eeaf3d78101@mail.gmail.com> Date: Thu, 27 Nov 2008 02:04:22 +0300 From: "Alexander Churanov" To: freebsd-ports@freebsd.org In-Reply-To: <492A880E.5090908@netfence.it> MIME-Version: 1.0 References: <20c4814a0811030712n4105c765p23983b55f729b25e@mail.gmail.com> <20081104002942.f136adec.ehaupt@FreeBSD.org> <20c4814a0811050113i1bed72abu84b16c7343f93c4f@mail.gmail.com> <20081105180245.GA51239@server.vk2pj.dyndns.org> <3cb459ed0811091430u46bb1eb9y5dccdab051e8a981@mail.gmail.com> <3cb459ed0811170402i72142866qb0921fbe65746ae1@mail.gmail.com> <3cb459ed0811231513o6da3fc1dmf2af3545299ca5c4@mail.gmail.com> <492A880E.5090908@netfence.it> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Boost 1.37 released! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 23:04:24 -0000 Hi folks! This is a status update on porting boost-1.37. It is finished. Port builds, installs and deinstalls correctly. Currently I have a patch and port tarball. Files can be downloaded from: boost-port-1_37_0.tar.bz2 - http://www.driveway.com/w1d2c5l7t4 devel-boost-from-1.34.1-to-1.37.diff.txt - http://www.driveway.com/m0a2x8z0v9 Unfortunately, I was unable to send a PR, because diff is about 1Mb - devel/boost has too many files :-) Does anybody know how to request an update like this? How patch was tested: 1) verified that port builds, installs and cleanly deinstalls. 2) verified that port builds, installs and cleanly deinstalls with "WITH_PYTHON=yes and WITH_PYSTE=yes" flags. 3) verified that some applications (my own works in progress) using 1.34 compile if 1.37 is installed. Applications use Boost.Assign, Boost.Bind, Boost.Operators, Boost.PointerContainer, Boost.ProgramOptions, Boost.Range, and Boost.Test libraries. This can be viewed as a very basic test for boost libraries. What was not verified: 1) That devel/boost-build is usable. 2) That any application (from ports collection) that depend on devel/boost can be built with 1.37 version. 3) That boost regression suite executes successfully. Actually, at present it's not clear how to perform this, I have problems with running boost regression testing suite. Probably, it is possible to discuss this with boost developers. Alexander Churanov From owner-freebsd-ports@FreeBSD.ORG Wed Nov 26 23:38:48 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8188C1065670 for ; Wed, 26 Nov 2008 23:38:48 +0000 (UTC) (envelope-from eitanadlerlist@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.29]) by mx1.freebsd.org (Postfix) with ESMTP id 298498FC12 for ; Wed, 26 Nov 2008 23:38:48 +0000 (UTC) (envelope-from eitanadlerlist@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so363658ywe.13 for ; Wed, 26 Nov 2008 15:38:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:user-agent :mime-version:to:subject:x-enigmail-version:openpgp:content-type :content-transfer-encoding:from; bh=WRKwZjflLYz9w7A4gfr/7nMqO75B+T4ooUDT+CiJ9L4=; b=w2OiVBJDEPhNJFTacCOFY/LMPtJxJmKc22KcDMoYZVlz06X4zXNAuvIO+RrsswdLWA ZL4cOWvFn2r/56w9vawRW/4UU9xZLCtnXU2rD6/YbH+IIdgZRcqCZyzfDjfuwctzr0vA zmxE7ilDushPiy2zRmsjUWBw1wL4YiDuaNyPI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:user-agent:mime-version:to:subject :x-enigmail-version:openpgp:content-type:content-transfer-encoding :from; b=IqCzG5WjCJSKwsfgaFfZM/5ZrSsSQfBJZJq5wdPChR3Zaufha8QZt6+ifahuz1XqVp +Vh2zxJ7oE42E62l1pRKD0SD/ElVvCPTez7W/W1VdEC5M1eUiD5s5cSlCt38mjcufv/3 uEhexj1gML0jO72neyPmxD9hO007dymalsk3Q= Received: by 10.90.79.17 with SMTP id c17mr3701311agb.98.1227742727497; Wed, 26 Nov 2008 15:38:47 -0800 (PST) Received: from ?192.168.1.101? (ool-182d26f3.dyn.optonline.net [24.45.38.243]) by mx.google.com with ESMTPS id 7sm861463aga.13.2008.11.26.15.38.45 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 15:38:46 -0800 (PST) Message-ID: <492DDE02.8060704@gmail.com> Date: Wed, 26 Nov 2008 18:38:42 -0500 User-Agent: Mozilla (X11; U; FreeBSD i386; en-US; ) Gecko Thunderbird Mnenhy/0.7.5.666 MIME-Version: 1.0 To: freebsd-ports X-Enigmail-Version: 0.95.7 OpenPGP: id=E9C2CCD1; url=pgp.mit.edu Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit From: Eitan Adler Subject: Required update on dependant port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 23:38:48 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 How would a port such as mail/thunderbird-enigmail (which AFIK should be in security/ anyway) indicate that it must be updated whenever Thunderbird is updated? - -- Eitan Adler GNU Key fingerptrint: 2E13 BC16 5F54 0FBD 62ED 42B6 B65F 24AB E9C2 CCD1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkt3gIACgkQtl8kq+nCzNGtaACfYB/PRAFn3PKe20PdASXIKLwc Ns8AniD4BbIMYzW3BsWlFcB2sIZ6pytJ =aCQB -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Thu Nov 27 00:05:51 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9727106564A for ; Thu, 27 Nov 2008 00:05:51 +0000 (UTC) (envelope-from richih.mailinglist@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.29]) by mx1.freebsd.org (Postfix) with ESMTP id 57F038FC1C for ; Thu, 27 Nov 2008 00:05:51 +0000 (UTC) (envelope-from richih.mailinglist@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so368103yxb.13 for ; Wed, 26 Nov 2008 16:05:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=mxDaTrLlXZGnTiqV0hbUZONJKBY3PR3b4xyhc1UPBqE=; b=cYNic+2X8wRudbSqLAQ3cqL/eXOJMjyq6731ZmPfsFER4RuqNRrJxyeI0TTx9dOAv3 erIH2W0HAdgk79pBwZ7MoJ7SxkRNmMLPGIwSoeSF9FmHoG3ttPewFEKGNxkSS95GnKsU Cf6sDhjsnd85YCQaV2x62NyOqkhO7Ks8U9Vhc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=MF3iyD9xFgvTgue8l0POJi3+xB14G8goNf9lF6u+aPgzsViMaXcfDBJekSS3xV8BiR H+of5u8VARlpDmaf9xdsi3OCtHwZb+9SuMuZw8F+iwQNa+PEX77k5m3orD/FQEWRX0vl JmyCr2p7MJPhOxlcQO+coYYsix+Rf4RV89wN8= Received: by 10.100.240.17 with SMTP id n17mr3184780anh.138.1227742644984; Wed, 26 Nov 2008 15:37:24 -0800 (PST) Received: by 10.100.43.19 with HTTP; Wed, 26 Nov 2008 15:37:24 -0800 (PST) Message-ID: <2d460de70811261537l4faad94cr611a9c63398f7a3f@mail.gmail.com> Date: Thu, 27 Nov 2008 00:37:24 +0100 From: "Richard Hartmann" To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Invitation to a cross-distro games packaging/patching/maintaining mailing list X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 00:05:51 -0000 Due to feedback by FreeBSD devs, I am re-sending this email to ports@ -- the rest is a verbatim copy of the mail I sent to the individual maintainers. Hi all, you are receiving this email because you are listed as maintainer of one or more ports in FreeBSD's game category. I do apologize for writing to all of you directly, but there does not seem to be any games mailing list for FreeBSD. The Debian and Ubuntu games teams have merged completely and the Fedora team has been working more and more with us to reduce duplicated work. We have been using the Debian games mailing list until now, but we decided that a distro-agnostic list would be better. Gentoo and SuSE are starting to hop on board and the more the merrier :) As Games are somewhat special in that they in general need more patches than usual packages and that they often have a dead upstream, we plan to discuss some ways there to try and collaborate more. We will start defining requirements and possible layouts for below-upstream repositories, soon. You could then pull from there and get a common, patched version. ports-specific patches would be applied in your local repositories via your existing processes. I hope I managed to interest a few of you and hope to see you on games@lists.freedesktop.org [1] soon. For an introduction, read Miry's email [2]. Richard PS: I do apologize if you think this is spam. I simply did not find any better way to contact you all. PPS: I excluded ports@, gnome@, kde@ and perl@ from this email. Only real persons are on BCC [1] http://lists.freedesktop.org/mailman/listinfo/games [2] http://lists.freedesktop.org/archives/games/2008-November/000006.html From owner-freebsd-ports@FreeBSD.ORG Thu Nov 27 00:48:34 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1DCE1065673 for ; Thu, 27 Nov 2008 00:48:34 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.delphij.net (delphij-pt.tunnel.tserv2.fmt.ipv6.he.net [IPv6:2001:470:1f03:2c9::2]) by mx1.freebsd.org (Postfix) with ESMTP id 801FE8FC0C for ; Thu, 27 Nov 2008 00:48:34 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [211.166.10.233]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tarsier.delphij.net (Postfix) with ESMTPS id 72A5128449 for ; Thu, 27 Nov 2008 08:48:33 +0800 (CST) Received: from localhost (tarsier.geekcn.org [211.166.10.233]) by tarsier.geekcn.org (Postfix) with ESMTP id 108FCEB6FA8; Thu, 27 Nov 2008 08:48:33 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([211.166.10.233]) by localhost (mail.geekcn.org [211.166.10.233]) (amavisd-new, port 10024) with ESMTP id HyDxVBn35geS; Thu, 27 Nov 2008 08:48:28 +0800 (CST) Received: from charlie.delphij.net (adsl-76-237-33-62.dsl.pltn13.sbcglobal.net [76.237.33.62]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTPSA id 1B8A8EB2DA6; Thu, 27 Nov 2008 08:48:26 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:reply-to:organization:user-agent: mime-version:to:cc:subject:references:in-reply-to: x-enigmail-version:openpgp:content-type:content-transfer-encoding; b=tjGuDWrkxvtWTDhWtXniZBUEA6u5eJZ4hVLakDbWrYOxDIEz/Iv6E7FklV+IGxsiM 47W/iBitkglOfwBtfGcVg== Message-ID: <492DEE55.1070503@delphij.net> Date: Wed, 26 Nov 2008 16:48:21 -0800 From: Xin LI Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: Eitan Adler References: <492DDE02.8060704@gmail.com> In-Reply-To: <492DDE02.8060704@gmail.com> X-Enigmail-Version: 0.95.7 OpenPGP: id=18EDEBA0; url=http://www.delphij.net/delphij.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports Subject: Re: Required update on dependant port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d@delphij.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 00:48:35 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Eitan Adler wrote: > How would a port such as mail/thunderbird-enigmail (which AFIK should be > in security/ anyway) indicate that it must be updated whenever > Thunderbird is updated? Usually this is done by bumping all dependencies that a commit would affect. BTW, however, I did not find it necessary to update the enigmail plugin when updating thunderbird, why do you think it's necessary? - -- Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkt7lQACgkQi+vbBBjt66DYPACgsczDC2j/tmCZ4WOaZF5bLRom e4IAnA8FGfJtjB/JEdP6fOhor1Ma9ooT =/4g6 -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Thu Nov 27 01:18:07 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B890106567E for ; Thu, 27 Nov 2008 01:18:07 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id E6F5A8FC16 for ; Thu, 27 Nov 2008 01:18:06 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: by qyk11 with SMTP id 11so1047259qyk.19 for ; Wed, 26 Nov 2008 17:18:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:message-id:to:cc:subject :from:in-reply-to:references:x-mailer:mime-version:content-type :content-transfer-encoding:sender; bh=jfo9lSL2Ir23EWlw1/8jCEUggeA8glONA85oxTXWIoY=; b=NF5bJvFHC1ub0ur+EV2cB3GtgJttBeeMlTmsINeyl8DhPR9vRFRE31A/BUVmIdy0xj Tu879NKWz/5MbZdQGmtT3WDCY3a25juk0AgVvztqM0IAHt3JKoZlOcvdxNkYbpVicopY 6uhFFcm/g14MPshgXgB7Wp6BIIXDTQBZcD9DI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:message-id:to:cc:subject:from:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding:sender; b=k06ds61T1tO2LJ64wX20TgfYz+79HsRrClr6GJ+e26obOc6p2zYUrFub5kdKSL06Vs HnP+/O08ybQEEXnvGR4cM+KaX74B28T6MyznaYE3c9x+LEinjn2jxxcYTrbe/xB/kZNp sops8+F2LxDERRJANiInDHZntOg54KqRQXt5E= Received: by 10.214.44.2 with SMTP id r2mr6231500qar.146.1227748681477; Wed, 26 Nov 2008 17:18:01 -0800 (PST) Received: from localhost (rikad85.riken.jp [134.160.214.85]) by mx.google.com with ESMTPS id 34sm2246409yxl.8.2008.11.26.17.17.59 (version=SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 17:18:00 -0800 (PST) Date: Thu, 27 Nov 2008 10:17:58 +0900 (JST) Message-Id: <20081127.101758.61189161.chat95@mac.com> To: rizzo@iet.unipi.it From: Maho NAKATA In-Reply-To: <20081102.112043.59664300.chat95@mac.com> References: <20081019145234.GA67034@onelab2.iet.unipi.it> <20081102.112043.59664300.chat95@mac.com> X-Mailer: Mew version 6.1 on Emacs 22.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Thu_Nov_27_10_17_58_2008_103)--" Content-Transfer-Encoding: 7bit Sender: Maho NAKATA Cc: ports@freebsd.org, openoffice@FreeBSD.org Subject: Re: unreasonable amount of memory used in openoffice build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 01:18:07 -0000 ----Next_Part(Thu_Nov_27_10_17_58_2008_103)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi Luigi Sorry for delay. Please try attached patch. If it works for you, I'll commit it. Best, From: Maho NAKATA Subject: Re: unreasonable amount of memory used in openoffice build Date: Sun, 02 Nov 2008 11:20:43 +0900 (JST) > Hi Luigi > > I think it is okay. I'll remove this conditional so that > applicable to i386. I think I must rewrite the patch to > effective on i386 as well. > > Note, please do not send me a patch other than Makefile. > There is a SCA or JCA issue... > > I'm very busy these days and I'll attend OpenOffice.org conference > 2008 very soon, please be patient. > > thanks, > > From: Luigi Rizzo > Subject: unreasonable amount of memory used in openoffice build > Date: Sun, 19 Oct 2008 16:52:34 +0200 > > > hi, > > i noticed on my laptop (Dell X1 w/ 512MB ram - i386, RELENG_7 that > > openoffice3 is using an unreasonable amount of memory to build one > > of its components (during the build of resourcemodel, the offending > > file is unxfbsdi.pro/misc/qnametostr.cxx) which causes the build > > machine to spend a huge amount of time swapping. > > > > It seems to be a known issue > > > > http://bugs.gentoo.org/show_bug.cgi?format=multiple&id=215291 > > > > and our port includes a workaround that is applied only on amd64 > > with the following section in the port's Makefile: > > > > .if ${ARCH} == amd64 > > WITHOUT_MOZILLA= yes > > LIB_DEPENDS+= boost_regex:${PORTSDIR}/devel/boost > > CONFIGURE_ARGS+= --with-system-boost=yes #i58343# > > .if (${OSVERSION} >= 700042) > > EXTRA_PATCHES+= ${FILESDIR}/amd64-gcc42-workaround > > .endif > > .endif > > > > I would suggest to apply the fix unconditionally (at least by default, > > possibly override it with some build option if needed). > > On amd64 according to the above URL the problem is particularly bad > > as it requires more than 4GB of memory (RAM/SWAP) but even on i386 > > the compiler process grows well above 1GB of memory and together > > with other stuff (browser, X and more) easily consuming 2-300MB > > each, it is not unlikely to hit the swap on many boxes. > > > > Makes sense ? > > > > cheers > > luigi > > _______________________________________________ > > freebsd-openoffice@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-openoffice > > To unsubscribe, send any mail to "freebsd-openoffice-unsubscribe@freebsd.org" > > > _______________________________________________ > freebsd-openoffice@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-openoffice > To unsubscribe, send any mail to "freebsd-openoffice-unsubscribe@freebsd.org" > ----Next_Part(Thu_Nov_27_10_17_58_2008_103)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=diff ? diff ? work ? work_ ? files/patch-iXXXXX Index: Makefile =================================================================== RCS file: /home/pcvs/ports/editors/openoffice.org-3/Makefile,v retrieving revision 1.312 diff -u -r1.312 Makefile --- Makefile 16 Oct 2008 12:30:24 -0000 1.312 +++ Makefile 27 Nov 2008 01:16:40 -0000 @@ -149,9 +149,6 @@ WITHOUT_MOZILLA= yes LIB_DEPENDS+= boost_regex:${PORTSDIR}/devel/boost CONFIGURE_ARGS+= --with-system-boost=yes #i58343# -.if (${OSVERSION} >= 700042) -EXTRA_PATCHES+= ${FILESDIR}/amd64-gcc42-workaround -.endif .endif .if (${OSVERSION} <= 602102) EXTRA_PATCHES+= ${FILESDIR}/rtld-workaround-i66667 --- /dev/null 2008-11-27 10:17:03.000000000 +0900 +++ files/patch-iXXXXX 2008-11-27 10:04:41.000000000 +0900 @@ -0,0 +1,13 @@ +--- writerfilter/source/resourcemodel/makefile.mk.orig 2008-07-22 08:53:57.000000000 -0400 ++++ writerfilter/source/resourcemodel/makefile.mk 2008-09-03 12:26:09.000000000 -0400 +@@ -56,8 +56,8 @@ + $(SLO)$/TagLogger.obj \ + $(SLO)$/WW8Analyzer.obj + +-# linux 64 bit: compiler (gcc 4.2.3) fails with 'out of memory' +-.IF "$(OUTPATH)"=="unxlngx6" ++# FreeBSD/Linux 64-bit: compiler (gcc 4.2.x) fails with 'out of memory' ++.IF "$(OUTPATH)"=="unxfbsdx" || "$(OUTPATH)"=="unxfbsdi" || "$(OUTPATH)"=="unxlngx6" + NOOPTFILES= \ + $(SLO)$/qnametostr.obj + .ENDIF ----Next_Part(Thu_Nov_27_10_17_58_2008_103)---- From owner-freebsd-ports@FreeBSD.ORG Thu Nov 27 05:57:17 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A250106564A for ; Thu, 27 Nov 2008 05:57:17 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.freebsd.org (Postfix) with ESMTP id 314458FC08 for ; Thu, 27 Nov 2008 05:57:17 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 987745C17; Thu, 27 Nov 2008 00:57:16 -0500 (EST) Date: Thu, 27 Nov 2008 00:57:16 -0500 From: Wesley Shields To: Alexander Churanov Message-ID: <20081127055716.GH80611@atarininja.org> References: <20081104002942.f136adec.ehaupt@FreeBSD.org> <20c4814a0811050113i1bed72abu84b16c7343f93c4f@mail.gmail.com> <20081105180245.GA51239@server.vk2pj.dyndns.org> <3cb459ed0811091430u46bb1eb9y5dccdab051e8a981@mail.gmail.com> <3cb459ed0811170402i72142866qb0921fbe65746ae1@mail.gmail.com> <3cb459ed0811231513o6da3fc1dmf2af3545299ca5c4@mail.gmail.com> <492A880E.5090908@netfence.it> <3cb459ed0811261504j4cada6d3ue5c80eeaf3d78101@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3cb459ed0811261504j4cada6d3ue5c80eeaf3d78101@mail.gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: Re: Boost 1.37 released! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 05:57:17 -0000 On Thu, Nov 27, 2008 at 02:04:22AM +0300, Alexander Churanov wrote: > Hi folks! > > This is a status update on porting boost-1.37. It is finished. Port builds, > installs and deinstalls correctly. Currently I have a patch and port > tarball. Files can be downloaded from: > > boost-port-1_37_0.tar.bz2 - http://www.driveway.com/w1d2c5l7t4 > > devel-boost-from-1.34.1-to-1.37.diff.txt - > http://www.driveway.com/m0a2x8z0v9 > > Unfortunately, I was unable to send a PR, because diff is about 1Mb - > devel/boost has too many files :-) Does anybody know how to request an > update like this? Put the diff online somewhere and put a link to it in the PR. Please note the size of it so a committer is not surprised when he downloads such a large diff. Thanks for taking this on. It is something which has been discussed before and has never come to fruition. -- WXS From owner-freebsd-ports@FreeBSD.ORG Thu Nov 27 09:19:34 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EBB51065678; Thu, 27 Nov 2008 09:19:34 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 5E0CF8FC14; Thu, 27 Nov 2008 09:19:33 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.174.141]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 27 Nov 2008 01:18:22 -0800 Message-ID: <492E6648.7050403@a1poweruser.com> Date: Thu, 27 Nov 2008 17:20:08 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: freebsd-questions@freebsd.org, ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 27 Nov 2008 09:18:22.0488 (UTC) FILETIME=[183BF980:01C95071] X-Sender: fbsd1@a1poweruser.com Cc: Subject: Limewire package install error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 09:19:34 -0000 Tried to pkg_add -r limewire. Dependant diablo-jdk-1.6.0.07.02.tbz File unavailable. The package diablo-jdk is not on 7.0 or 7.1 pkg server. Looking up diablo-jdk on the ports website, the long description points to here http://www.freebsdfoundation.org/downloads/java.shtml How am i to get these mis-matched package names to fulfill the limewire dependent name? From owner-freebsd-ports@FreeBSD.ORG Thu Nov 27 11:44:43 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D73F106564A; Thu, 27 Nov 2008 11:44:43 +0000 (UTC) (envelope-from axel.burwitz@arcor.de) Received: from mail-in-07.arcor-online.net (mail-in-07.arcor-online.net [151.189.21.47]) by mx1.freebsd.org (Postfix) with ESMTP id 084E58FC08; Thu, 27 Nov 2008 11:44:43 +0000 (UTC) (envelope-from axel.burwitz@arcor.de) Received: from mail-in-13-z2.arcor-online.net (mail-in-13-z2.arcor-online.net [151.189.8.30]) by mail-in-07.arcor-online.net (Postfix) with ESMTP id E0A3824AE6D; Thu, 27 Nov 2008 12:44:41 +0100 (CET) Received: from mail-in-08.arcor-online.net (mail-in-08.arcor-online.net [151.189.21.48]) by mail-in-13-z2.arcor-online.net (Postfix) with ESMTP id C1C881B8E56; Thu, 27 Nov 2008 12:44:41 +0100 (CET) Received: from freebsd (dslb-084-058-040-098.pools.arcor-ip.net [84.58.40.98]) (Authenticated sender: axel.burwitz@arcor.de) by mail-in-08.arcor-online.net (Postfix) with ESMTP id 64BAD2BB6F9; Thu, 27 Nov 2008 12:44:41 +0100 (CET) Date: Thu, 27 Nov 2008 12:44:35 +0100 To: "Tilman Linneweh" From: "Axel Burwitz" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 References: <876355A7-DE08-4797-ADCB-97CADF8348A7@freebsd.org> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <876355A7-DE08-4797-ADCB-97CADF8348A7@freebsd.org> User-Agent: Opera Mail/9.62 (FreeBSD) X-Virus-Scanned: ClamAV 0.94.1/8685/Thu Nov 27 02:55:04 2008 on mail-in-08.arcor-online.net X-Virus-Status: Clean Cc: ports@freebsd.org Subject: Re: FreeBSD Port: kaffeine-0.8.7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: axel.burwitz@arcor.de List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 11:44:43 -0000 On Wed, 26 Nov 2008 19:48:16 +0100, Tilman Linneweh wrote: > Hi Axel, > > On Nov 26, 2008, at 18:48, Axel Burwitz wrote: >> - DVB interface in FreeBSD / Kaffeine - >> >> with help from the maintainer of CX88 I finally made it to get a >> Hauppauge WinTV-HVR 1300 with CX88-driver support up and running in >> FreeBSD (written a HowTo in www.bsdforen.de). >> Can scan channel and capture DVB-T with cx88 now. >> >> Now I tried to use Kaffeine, as recommended for DVB, as a viewer, but >> it doesn't work at all. Kaffeine doesn't find the device. > > The only DVB-devices that were reported to work with kaffeine on > FreeBSD, where those using the driver from http://raaf.atspace.org/ > dvbusb/ > >> My postings in the kaffeine-user ML showed that it looks like there is >> a completely different interfacing in FreeBSD than in Linux. >> (can that be true?) > > AFAIK there is no general interface for DVB Hardware in FreeBSD, every > driver can use his own (actually there are not many drivers :-(), Looks > like cx88 uses a different one, than the dvbusb driver. > >> During analysis I was asked about the expected dvb device >> >> /dev/dvb/adpater0/frontend0 >> >> but at least in my FreeBSD installation there are only three devices >> /dev/cx88mpeg0 >> /dev/cx88video >> /dev/cx88audio. >> > Maybe Christophe is right, and you are missing the dvb part of the > driver. > Hi Tilman, well, I think no, because I checked the installation directly with the maintainer of cx88. With the cx88 executable I can scan DVB-T channels, I can capture into a file, and I can capture a DVB-T transmission into a udp port and at the same time receive and diplay that transmission from the udp port with mplayer (OK, not perfect quality, but...). That shows for me that DVB works here. >> The guy in the kaffeine-user ML was wondering even how I was able to >> compile Kaffeine in FreeBSD... But: that was no problem at all. >> > Because the kaffeine port uses the linux header files. > > Since i don't have this hardware, i can only say "Use the source Luke". > Compare the Linux driver with the FreeBSD cx88 and dvbusb driver, and > try to create similar devices. > First, would like to be able, but I am not a developer/programmer, I can only contribute with testing, translating, documentation. Second, I think to have what you have mentioned above - a general interface for DVB Hardware in FreeBSD - would be the right approach for all drivers (coming from left side) and viewer programs (coming from right side), as a standard interface. Better than trying to adapt to a situation that most probably is only valid accidently and specifically at this point in time. Just a thought and I have no clue what the process would be in FreeBSD to come to such a standard interface. Best regards Axel > Have fun! > arved From owner-freebsd-ports@FreeBSD.ORG Thu Nov 27 20:46:10 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 59374106564A for ; Thu, 27 Nov 2008 20:46:10 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.26]) by mx1.freebsd.org (Postfix) with ESMTP id D9C1A8FC0A for ; Thu, 27 Nov 2008 20:46:09 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so472115eyi.7 for ; Thu, 27 Nov 2008 12:46:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=83dJUuxFmi8bhxZIs9sKbtPazHugSTTsRl25Dwe/YGw=; b=ozG/O/v3UqBYOLHhkxt8n01+iroluVo6bASZMzLmEqFGyTTycvR2yLvZQGHbru/S1r vi9DFd1hJT4FrmCr2dN4Vosjxcddto0XwW4PkkofdfPdoVBo0H2AxS86lWUrLeZWBGoK GeKYocMwZnCNxPIzmHeREK2vC0m6BxmlXBQ7c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=dtwGugSr9WwZTkVXx1bqsXN3bXt5uHbfSE5+xxbuLTER+G2Qp8Ug+r6pC0KYJ72jGP wUEUCYTdVA1nksVoIthXx01/GeODYBQWtjV9PPiQ3RL/oKbuAcYv+j4mtPgMCq1K1LEu rcEN9ZjMSbiot5uZDe2YCDJTe42gLHd7Ab4hQ= Received: by 10.210.45.17 with SMTP id s17mr7920223ebs.108.1227818768275; Thu, 27 Nov 2008 12:46:08 -0800 (PST) Received: by 10.210.130.15 with HTTP; Thu, 27 Nov 2008 12:46:08 -0800 (PST) Message-ID: <3cb459ed0811271246m171facbeh906b549eb1defabc@mail.gmail.com> Date: Thu, 27 Nov 2008 23:46:08 +0300 From: "Alexander Churanov" To: freebsd-ports@freebsd.org In-Reply-To: <20081127055716.GH80611@atarininja.org> MIME-Version: 1.0 References: <20081104002942.f136adec.ehaupt@FreeBSD.org> <20c4814a0811050113i1bed72abu84b16c7343f93c4f@mail.gmail.com> <20081105180245.GA51239@server.vk2pj.dyndns.org> <3cb459ed0811091430u46bb1eb9y5dccdab051e8a981@mail.gmail.com> <3cb459ed0811170402i72142866qb0921fbe65746ae1@mail.gmail.com> <3cb459ed0811231513o6da3fc1dmf2af3545299ca5c4@mail.gmail.com> <492A880E.5090908@netfence.it> <3cb459ed0811261504j4cada6d3ue5c80eeaf3d78101@mail.gmail.com> <20081127055716.GH80611@atarininja.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Boost 1.37 released! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 20:46:10 -0000 Hi folks! I've just picked up new places to share files: devel-boost-from-1.34.1-to-1.37.diff.txt : http://www.flyupload.com/?fid=712178626 http://www.gigasize.com/get.php?d=gdgsc7nnr8c http://rapidshare.com/files/168020620/devel-boost-from-1.34.1-to-1.37.diff.txt.html boost-port-1_37_0.tar.bz2: http://www.flyupload.com/?fid=769359286 http://www.gigasize.com/get.php?d=1tfgzpy08nb http://rapidshare.com/files/168021718/boost-port-1_37_0.tar.bz2.html I hope this is useful. Alexander Churanov From owner-freebsd-ports@FreeBSD.ORG Thu Nov 27 20:58:26 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C72DE1065672 for ; Thu, 27 Nov 2008 20:58:26 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.185]) by mx1.freebsd.org (Postfix) with ESMTP id 546B98FC19 for ; Thu, 27 Nov 2008 20:58:26 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so613489nfh.33 for ; Thu, 27 Nov 2008 12:58:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=Q3f6ejqLgpLc75a1M4Kg52L97i3xrqTyjCXjZtw9zt0=; b=GcOz5svyxVGF1Lbfxq2GnaEFKw3Bxc3WmmJu24+6xs8YO24iHjH2SvqFtSzogv025J 67l7N3VuMx6XoogRXGrpVmnjbrWERZ6A8pab8W1VRXqMoU2UcpjCxMxNTNbN5tRWZ6ew o7beEDq0KKaIrfDmDf2TCp5jvJefAezNNIfPQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=je0LsR0nL/z3VdQnEwOVzNHXC6UPEslwbkpMR7WVSO6JlRM6c+qQtZBN1ZxIrJpC3P wz3IAO5auE7XGuByPfr0gORhQHJejReaYxUVx1GjwpHUjmEWEu+kJ1jepFiHJ8aoPBGY BOqhPXsU8aD8jLRy0+HAfs6FK6XrQSeLE3sRo= Received: by 10.210.111.4 with SMTP id j4mr7936744ebc.170.1227819505110; Thu, 27 Nov 2008 12:58:25 -0800 (PST) Received: by 10.210.130.15 with HTTP; Thu, 27 Nov 2008 12:58:25 -0800 (PST) Message-ID: <3cb459ed0811271258i6fa88e6ctc13fbb431fd3e377@mail.gmail.com> Date: Thu, 27 Nov 2008 23:58:25 +0300 From: "Alexander Churanov" To: freebsd-ports@freebsd.org In-Reply-To: <20081127055716.GH80611@atarininja.org> MIME-Version: 1.0 References: <20081104002942.f136adec.ehaupt@FreeBSD.org> <20c4814a0811050113i1bed72abu84b16c7343f93c4f@mail.gmail.com> <20081105180245.GA51239@server.vk2pj.dyndns.org> <3cb459ed0811091430u46bb1eb9y5dccdab051e8a981@mail.gmail.com> <3cb459ed0811170402i72142866qb0921fbe65746ae1@mail.gmail.com> <3cb459ed0811231513o6da3fc1dmf2af3545299ca5c4@mail.gmail.com> <492A880E.5090908@netfence.it> <3cb459ed0811261504j4cada6d3ue5c80eeaf3d78101@mail.gmail.com> <20081127055716.GH80611@atarininja.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Boost 1.37 released! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 20:58:26 -0000 Guys, Due to problem with driveway.com I've filed another PR, specified previous PR id (named "update devel/boost") and new file locations. I hope this will help to resolve the issue. Alexander Churanov From owner-freebsd-ports@FreeBSD.ORG Thu Nov 27 22:00:18 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3758106578D for ; Thu, 27 Nov 2008 22:00:18 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.224]) by mx1.freebsd.org (Postfix) with ESMTP id BB42D8FC12 for ; Thu, 27 Nov 2008 22:00:18 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so1076631rvf.43 for ; Thu, 27 Nov 2008 14:00:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=TMYalGIU60Vrr4a3buiz2TCSGA12kWeOV2hipLcSb4w=; b=hdnH9XfAJCv6+LCRiGPE8QEz792A1Qzfh4CtPeriiUfAfb8jj+NbME8G6Y49PCRb+j RHfw1IPLq+HThVA/62Ldloi6+Z5I88FTBoltYZH///k2vwQ9xWJltIiyFZrl0uFY0BzW 3YlLerG/UilfROd/feW3EF4tTR6fooQSKUvgc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=vUazOf4uQaahrXBGtNMi70DYbrgEF/V8kPrQhHPeku5Mgh0tKycIbxu+30ouLw3pOc c34IxOt643hSwn/G8WzdNgbjSxJEU9RmnHE09VcPmnY4OjqSCCQ1s3MZOCw1XCOfLu+K kNh1wpdo+gpGyT81LM1qF/eeWCkFG0RXQaaS0= Received: by 10.141.13.13 with SMTP id q13mr3526607rvi.163.1227823218042; Thu, 27 Nov 2008 14:00:18 -0800 (PST) Received: by 10.140.158.13 with HTTP; Thu, 27 Nov 2008 14:00:18 -0800 (PST) Message-ID: <7d6fde3d0811271400l21bf3ec9s11181efcd91ff1ca@mail.gmail.com> Date: Thu, 27 Nov 2008 14:00:18 -0800 From: "Garrett Cooper" To: "Eitan Adler" In-Reply-To: <492DDE02.8060704@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <492DDE02.8060704@gmail.com> Cc: freebsd-ports Subject: Re: Required update on dependant port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 22:00:19 -0000 On Wed, Nov 26, 2008 at 3:38 PM, Eitan Adler wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > How would a port such as mail/thunderbird-enigmail (which AFIK should be > in security/ anyway) indicate that it must be updated whenever > Thunderbird is updated? > > - -- > Eitan Adler Can't be done via packages unless you bump the version number. This can be done with ports by looking at the BUILD_DEP field though. This is the field that portupgrade uses, and I assume that portmaster, use. -Garrett From owner-freebsd-ports@FreeBSD.ORG Fri Nov 28 03:50:13 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EC3B106564A for ; Fri, 28 Nov 2008 03:50:13 +0000 (UTC) (envelope-from eitanadlerlist@gmail.com) Received: from mail-gx0-f19.google.com (mail-gx0-f19.google.com [209.85.217.19]) by mx1.freebsd.org (Postfix) with ESMTP id D4EC18FC12 for ; Fri, 28 Nov 2008 03:50:12 +0000 (UTC) (envelope-from eitanadlerlist@gmail.com) Received: by gxk12 with SMTP id 12so184663gxk.19 for ; Thu, 27 Nov 2008 19:50:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:user-agent :mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:openpgp:content-type:content-transfer-encoding :from; bh=PUOl1JSLVDaLhMExqsMWMTFSh8YOv8LH3DsxD/vhQTA=; b=EDdSmYbCrwJm/zwuE827wvbGcz9aTa5jZfUxTJ/cd+awsC14tTrEiNnqoP8jA78m/E Zijux5OQURzsXTA1c//DrUf6QwH753wBesfPsyAzfoCZvNbfFgA2WmWDzAkIJX2q+Cpc pKOvjE4gwrwApYRMeOMw1VX9aeIalr7yW9IdI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:openpgp:content-type :content-transfer-encoding:from; b=hJ0i1iCQmqCOwcZdei0IRxehvy4NW0Ck0BSG2I3lAZ71CKX8Xbb09rHb/3D7zDTP12 SuJVm+R0HlqDl0WGMSEtfoLm+Dxqr3xVQ6MnhEAwo7VJLn8pdEiBYB4YxNLh9zVErQWL yvdbGPkAeZnhE7B8X2TVkaX7rNb9laQhOoluo= Received: by 10.90.80.18 with SMTP id d18mr3372255agb.19.1227844212198; Thu, 27 Nov 2008 19:50:12 -0800 (PST) Received: from aargh.lan (ool-182d26f3.dyn.optonline.net [24.45.38.243]) by mx.google.com with ESMTPS id 5sm633965agc.29.2008.11.27.19.50.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 27 Nov 2008 19:50:11 -0800 (PST) Message-ID: <492F6A6D.5050005@gmail.com> Date: Thu, 27 Nov 2008 22:50:05 -0500 User-Agent: Mozilla (X11; U; FreeBSD i386; en-US; ) Gecko Thunderbird Mnenhy/0.7.5.666 MIME-Version: 1.0 To: Garrett Cooper References: <492DDE02.8060704@gmail.com> <7d6fde3d0811271400l21bf3ec9s11181efcd91ff1ca@mail.gmail.com> In-Reply-To: <7d6fde3d0811271400l21bf3ec9s11181efcd91ff1ca@mail.gmail.com> X-Enigmail-Version: 0.95.7 OpenPGP: id=E9C2CCD1; url=pgp.mit.edu Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit From: Eitan Adler Cc: freebsd-ports Subject: Re: Required update on dependant port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 03:50:13 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Garrett Cooper wrote: > This can be done with ports by looking at the BUILD_DEP field though. > This is the field that portupgrade uses, and I assume that portmaster, > use. If a port uses BUILD_DEP to depend on something and that something is updated it would force an update of the original port? - -- Eitan Adler GNU Key fingerptrint: 2E13 BC16 5F54 0FBD 62ED 42B6 B65F 24AB E9C2 CCD1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkvam0ACgkQtl8kq+nCzNFuJwCeNtuBCgiBa7MgDPh705igb0HE GRcAn2s8Vy51732uul8mexzmre7fl3Sq =pzXs -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Nov 28 10:00:05 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF68E1065678 for ; Fri, 28 Nov 2008 10:00:05 +0000 (UTC) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A0D398FC14 for ; Fri, 28 Nov 2008 10:00:05 +0000 (UTC) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id mASA05Oc044849 for ; Fri, 28 Nov 2008 10:00:05 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id mASA05Kq044839 for ports@freebsd.org; Fri, 28 Nov 2008 10:00:05 GMT (envelope-from fenner) Date: Fri, 28 Nov 2008 10:00:05 GMT From: Bill Fenner Message-Id: <200811281000.mASA05Kq044839@freefall.freebsd.org> To: ports@freebsd.org Cc: Subject: Possibly unbuildable ports reminder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 10:00:05 -0000 Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://pointyhat.freebsd.org/errorlogs/ . A list by MAINTAINER is http://people.freebsd.org/~fenner/errorlogs/ so you can easily check the status of ports that you maintain. In addition, the list of ports with no MAINTAINER with build problems is http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "annoying port email" Fenner From owner-freebsd-ports@FreeBSD.ORG Fri Nov 28 13:36:41 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B3991065670 for ; Fri, 28 Nov 2008 13:36:41 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from ns2.bafirst.com (72-12-2-19.static.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 2D2AB8FC12 for ; Fri, 28 Nov 2008 13:36:41 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.190.3.105]) by ns2.bafirst.com with esmtp; Fri, 28 Nov 2008 07:36:39 -0600 id 000D5272.492FF3E7.00017401 Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Fri, 28 Nov 2008 07:36:37 -0600 id 0004AC0A.492FF3E5.000054E3 Received: from ed.local.net.mx (ed.local.net.mx [192.168.1.65]) by econet.encontacto.net (Horde Framework) with HTTP; Fri, 28 Nov 2008 07:36:37 -0600 Message-ID: <20081128073637.165767yq3leykloo@econet.encontacto.net> Date: Fri, 28 Nov 2008 07:36:37 -0600 From: eculp To: freebsd-ports MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (5.0-cvs) X-Remote-Browser: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.18) Gecko/20081114 Firefox/2.0.0.18 X-IMP-Server: 189.190.3.105 X-Originating-IP: 192.168.1.65 X-Originating-User: eculp@encontacto.net Subject: Only in OpenOffice.org-2.4, I'm having es_ES deadkey problems. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 13:36:41 -0000 I'm not sure when this started because I almost never open MS type =20 docs and when I do it is only to read them. Yesterday I found out, =20 quite by accident, that everyone in our offices, is unable to use the =20 deadkey accents for =E1 =E9 =ED =F3 =FA etc but the =F1 works fine so it see= ms to =20 be limited to the dead keys. I'm writing this in KDE ( all deadkeys =20 work as expected in all kde apps) in term windows, even in ttyv[0.7] =20 so it seems to be 100% openoffice centric. The Spanish spell check works fine and a cut and paste of an accented =20 vowel works fine ( the current local work around). Has anyone else seen this and found a configuration or build option =20 that I'm missing? Should I open a PR? I did try OpenOffice.org-3 and =20 the same problem plus I didn't see an obvious way to download the =20 spelling wizard with it so I blew it away. Thanks, ed From owner-freebsd-ports@FreeBSD.ORG Fri Nov 28 18:57:12 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F27BD1065672 for ; Fri, 28 Nov 2008 18:57:12 +0000 (UTC) (envelope-from Cy.Schubert@komquats.com) Received: from idcmail-mo1so.shaw.ca (idcmail-mo1so.shaw.ca [24.71.223.10]) by mx1.freebsd.org (Postfix) with ESMTP id C1CDD8FC0A for ; Fri, 28 Nov 2008 18:57:12 +0000 (UTC) (envelope-from Cy.Schubert@komquats.com) Received: from pd2ml1so-ssvc.prod.shaw.ca ([10.0.141.139]) by pd2mo1so-svcs.prod.shaw.ca with ESMTP; 28 Nov 2008 11:57:11 -0700 X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.0 c=0 a=ZvBIkn17-L7mIOlgDEIA:9 a=OeZN2UOj6oRSVRjlSAQA:7 a=KG-SZMT0H-BwzJm9ftaYifp9c_EA:4 a=V7tsTZBp22UA:10 a=wAGQQ9Az6v0A:10 Received: from s01060002b31a8191.gv.shawcable.net (HELO spqr.komquats.com) ([24.68.166.226]) by pd2ml1so-dmz.prod.shaw.ca with ESMTP; 28 Nov 2008 11:57:11 -0700 Received: from cwsys.cwsent.com (cwsys [10.1.1.1]) by spqr.komquats.com (Postfix) with ESMTP id 784A4410ED for ; Fri, 28 Nov 2008 10:57:10 -0800 (PST) Received: from cwsys (localhost [127.0.0.1]) by cwsys.cwsent.com (8.14.3/8.14.3) with ESMTP id mASIvADh051049 for ; Fri, 28 Nov 2008 10:57:10 -0800 (PST) (envelope-from Cy.Schubert@komquats.com) Message-Id: <200811281857.mASIvADh051049@cwsys.cwsent.com> X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.2 From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.komquats.com/ To: freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 28 Nov 2008 10:57:10 -0800 Sender: Cy.Schubert@komquats.com Subject: GZIP Environment Variable X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Cy Schubert List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 18:57:13 -0000 Specifying and exporting the environment variable GZIP, e.g. export GZIP=-9, will result in editors/gedit gzipping /usr/bin/gzip to /usr/bin/gzip.gz, causing portupgrade to fail. -- Cheers, Cy Schubert From owner-freebsd-ports@FreeBSD.ORG Fri Nov 28 20:28:24 2008 Return-Path: Delivered-To: FreeBSD-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 467371065672 for ; Fri, 28 Nov 2008 20:28:24 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) Received: from anthesphoria.net (anthesphoria.net [200.46.204.219]) by mx1.freebsd.org (Postfix) with ESMTP id DA8238FC08 for ; Fri, 28 Nov 2008 20:28:23 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) X-Bogosity: No, tests=bogofilter X-DKIM: Sendmail DKIM Filter v2.4.1 anthesphoria.net mASKS5As010369 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=anthesphoria.net; s=phero; t=1227904090; bh=TnQ2DaFuT9wGaRWIlNVX261dVpc0YLGhvL7oYEpvy 4s=; l=1942; h=X-Bogosity:Date:From:To:Cc:Subject:Message-ID: In-Reply-To:References:X-Mailer:X-Face:X-Operating-System: X-OpenPGP-Fingerprint:X-OpenPGP-Preferred-Keyserver:Mime-Version: Content-Type:Content-Transfer-Encoding; b=N30aCeXf8yoAHqnIC8d/4WuV UwR9Rbv3PmfG6vaz7t7Bs31kr35TM5TjqEPQ12m/bgr4ZEp7k9o5wW8Afd0AOw16G7A 0y5FGIj+GeJHJfY8sTfhos8Drmdlb4CoKB+lte9dSkZ6vmcnl6jHS19FAadenN+SvPg S9bWqszfl0rx4= Received: from anthesphoria.net (adsl-200-199.eunet.yu [213.198.200.199]) (authenticated bits=0) by anthesphoria.net (8.14.2/8.14.2) with ESMTP id mASKS5As010369 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Nov 2008 21:28:08 +0100 (CET) (envelope-from nikola.lecic@anthesphoria.net) Date: Fri, 28 Nov 2008 21:24:21 +0100 From: Nikola =?UTF-8?B?TGXEjWnEhw==?= To: eculp Message-ID: <20081128212421.147b0526@anthesphoria.net> In-Reply-To: <20081128073637.165767yq3leykloo@econet.encontacto.net> References: <20081128073637.165767yq3leykloo@econet.encontacto.net> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] X-Operating-System: FreeBSD 7.0-RELEASE/i386 X-OpenPGP-Fingerprint: FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B X-OpenPGP-Preferred-Keyserver: x-hkp://pgpkeys.pca.dfn.de Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD-ports Subject: Re: Only in OpenOffice.org-2.4, I'm having es_ES deadkey problems. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 20:28:24 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160 On Fri, 28 Nov 2008 07:36:37 -0600 eculp wrote: =20 > I'm not sure when this started because I almost never open MS type =20 > docs and when I do it is only to read them. Yesterday I found out, =20 > quite by accident, that everyone in our offices, is unable to use > the deadkey accents for =C3=A1 =C3=A9 =C3=AD =C3=B3 =C3=BA etc but the = =C3=B1 works fine so it > seems to be limited to the dead keys. I'm writing this in KDE ( all > deadkeys work as expected in all kde apps) in term windows, even in > ttyv[0.7] so it seems to be 100% openoffice centric. >=20 > The Spanish spell check works fine and a cut and paste of an > accented vowel works fine ( the current local work around). I experienced some OpenOffice.org input problems (specifically with deadkeys) caused by certain combinations of OpenOffice.org, Xorg and input method such as SCIM. So first, what input method do you use? > Has anyone else seen this and found a configuration or build option =20 > that I'm missing? Should I open a PR? I did try OpenOffice.org-3 > and the same problem plus I didn't see an obvious way to download > the spelling wizard with it so I blew it away. Please see this: http://lists.freebsd.org/pipermail/freebsd-questions/2008-November/186019= .html Best wishes. - --=20 Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iJwEAQEDAAYFAkkwU3oACgkQ/MM/0rYIoZjcfAQAsF81fySwxV+PdD/ODKwvy/Ry /nvCuFHqsew4arCqkiaY1gWXyy+5b5U4gIwiYLRE4yLaNvgDm6EMnYwcxcsN2cIY jQhFYyT1ZjJxUxDIru8dH8GG9FdJnSXQsGxaiIKlJjpzQ3zRzkmY7SI2ydWLR4ch mB6OU2RlVVpO5qY6/k4=3D =3DI0NR -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Nov 28 22:54:03 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47ACF1065676 for ; Fri, 28 Nov 2008 22:54:03 +0000 (UTC) (envelope-from gamato@users.sf.net) Received: from smtp1.cleverlance.com (smtp1.cleverlance.com [82.119.241.52]) by mx1.freebsd.org (Postfix) with ESMTP id CC76F8FC08 for ; Fri, 28 Nov 2008 22:54:02 +0000 (UTC) (envelope-from gamato@users.sf.net) Received: from excas.clance.local (192.168.1.252) by smtp1.cleverlance.com (10.10.0.106) with Microsoft SMTP Server (TLS) id 8.1.278.0; Fri, 28 Nov 2008 23:43:06 +0100 Received: from [192.168.11.3] (90.178.41.200) by excas.clance.local (192.168.1.252) with Microsoft SMTP Server (TLS) id 8.1.278.0; Fri, 28 Nov 2008 23:43:04 +0100 Message-ID: <493073F5.7020004@users.sf.net> Date: Fri, 28 Nov 2008 23:43:01 +0100 From: mato User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.18) Gecko/20081125 SeaMonkey/1.1.13 MIME-Version: 1.0 To: , Content-Type: text/plain; charset="ISO-8859-2"; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: FreeBSD Port: net/linux-nx-client X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 22:54:03 -0000 Hi, I've just installed net/linux-nx-client on FreeBSD 6.4 and after launching it I got: $ nxclient /usr/local/lib/linux-nx-client/bin/nxclient: error while loading shared libraries: libXext.so.6: cannot open shared object file: No such file or directory The library in need is located here: -rwxr-xr-x 1 root wheel 67306 Oct 8 18:07 /usr/local/lib/libXext.so.6 Cheers, M. From owner-freebsd-ports@FreeBSD.ORG Fri Nov 28 23:23:11 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73A7E1065672 for ; Fri, 28 Nov 2008 23:23:11 +0000 (UTC) (envelope-from athiel@yourdatacenter.com) Received: from datacentermail.newposeidon.com (mail.newposeidon.com [72.68.153.109]) by mx1.freebsd.org (Postfix) with ESMTP id 250BF8FC23 for ; Fri, 28 Nov 2008 23:23:11 +0000 (UTC) (envelope-from athiel@yourdatacenter.com) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=yourdatacenter.com; s=ATlantis; h=DomainKey-Signature:Received: Received-SPF:Message-ID:From:To:Subject:Date:MIME-Version: Content-type:Content-Transfer-Encoding; b=SP71o3iVJT3XT5jePN5HNr RWfW++tj609WTPnGQsg1QDRelHqFugFPWKsnv+VKDB+iXXtewJj4x7a7xMvPjOPl TqGeXC1xYac9snnvsUwqqW2+5XxfEUoGLAPPUqLfgx DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=ATlantis; d=yourdatacenter.com; b=D08dxpMoTi33g1fWxkwZUwQg816klnZR4GfO8M/SwYCBE3A4DrN/Tmnw2BJ6vpVAqzDDb4HRKE2A1eO86TnxBGLaoK1gluNUNj9/TwCAlO+Pn24Pm/+c4OesL7gN1tjA; Received: from yourdatacenter.com (localhost.newposeidon.com [127.0.0.1]) by datacentermail.newposeidon.com (Vircom SMTPRS 4.6.741.0) with ESMTP id for ; Fri, 28 Nov 2008 18:08:02 -0500 Received-SPF: pass (datacentermail.newposeidon.com: domain of athiel@yourdatacenter.com designates 127.0.0.1 as permitted sender) receiver=datacentermail.newposeidon.com; client-ip=127.0.0.1; envelope-from=; helo=yourdatacenter.com; X-Modus-ReverseDNS: OK X-Modus-BlackList: 127.0.0.1=OK;athiel@yourdatacenter.com=OK X-Modus-RBL: 127.0.0.1=OK X-Modus-Trusted: 127.0.0.1=NO X-Modus-Audit: FALSE;0;0;0 Message-ID: <66f15cb3806e497989fbe62ff15147af.athiel@yourdatacenter.com> X-EM-APIVersion: 2, 0, 2, 6 X-Priority: 3 (Normal) From: "Albert Thiel" To: freebsd-ports@freebsd.org Date: Fri, 28 Nov 2008 18:08:02 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: SQUID Follow X-Forwarded-For headers X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 23:23:11 -0000 There is a patch to Follow X-Forwarded-For headers to SQUID, but it is not i= n the ports=2E How do I=20 patch this in, or has someone done it already? Thanks, Al Albert Thiel athiel@yourdatacenter=2Ecom Your Data Center & HostLongIsland=2Ecom Powerful FREE ISP Tools, Mail & Website Hosting http://www=2EYourDataCenter=2Ecom Hewlett, New York (877)302-8642 =20 From owner-freebsd-ports@FreeBSD.ORG Fri Nov 28 23:58:35 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C68631065672 for ; Fri, 28 Nov 2008 23:58:35 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by mx1.freebsd.org (Postfix) with ESMTP id 7D9D88FC1F for ; Fri, 28 Nov 2008 23:58:35 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so657524ywe.13 for ; Fri, 28 Nov 2008 15:58:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=u1DUDlYhSDpBaMBHM0I+i5HIuknXuTa6IkZCtoGLdW8=; b=v1Fx1RJFJhQ1BDE0xyi2OJ6uq+KEzS9vRaIyK/IzT3+MypWlIaKO95IB8ZRVZ0uBHf 856/3otH+cs+gdRp0ZAkMkDlBfI99sOVJgHdOo5tRFP8FOa+JTbLMSXV5n1bfNMn/2wA WPmRIXzsPkJn+Sveb1W62U3Ju9Jvamhp3uIv0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=nEy3eYDa2Xg4qJ7eN9P6Hv6vlUMJCrjn1KAWqXLUHx0vWa9w5YXI3nbhYzINfd6PAx EAZBreD/g+uTQ1GraawxC2f65qS8r1W2TjO4mf6jYL9fT8hf4ob9UXRMRlMOp6nyBkQj 6SDtxCB2nGLzU79+RaRFIRSZYE2ZQQHihYXE4= Received: by 10.90.91.9 with SMTP id o9mr4708911agb.94.1227916714988; Fri, 28 Nov 2008 15:58:34 -0800 (PST) Received: by 10.90.101.20 with HTTP; Fri, 28 Nov 2008 15:58:34 -0800 (PST) Message-ID: <790a9fff0811281558q11bfad8dk30e508871b0aece6@mail.gmail.com> Date: Fri, 28 Nov 2008 17:58:34 -0600 From: "Scot Hetzel" To: mato In-Reply-To: <493073F5.7020004@users.sf.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <493073F5.7020004@users.sf.net> Cc: ports@freebsd.org, eps+pbug0701@ana.com Subject: Re: FreeBSD Port: net/linux-nx-client X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 23:58:35 -0000 On Fri, Nov 28, 2008 at 4:43 PM, mato wrote: > Hi, > > I've just installed net/linux-nx-client on FreeBSD 6.4 and after launching > it I got: > > $ nxclient > /usr/local/lib/linux-nx-client/bin/nxclient: error while loading shared > libraries: libXext.so.6: cannot open shared object file: No such file or > directory > > The library in need is located here: > -rwxr-xr-x 1 root wheel 67306 Oct 8 18:07 /usr/local/lib/libXext.so.6 > That's the wrong library, you need the linux libXext.so.6 which should be located under /usr/compat/linux. Scot From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 00:17:55 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42B2B1065675 for ; Sat, 29 Nov 2008 00:17:55 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id E732F8FC23 for ; Sat, 29 Nov 2008 00:17:54 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L6DWx-0004ho-La for freebsd-ports@freebsd.org; Sat, 29 Nov 2008 00:17:51 +0000 Received: from 200.41.broadband11.iol.cz ([90.178.41.200]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 29 Nov 2008 00:17:51 +0000 Received: from gamato by 200.41.broadband11.iol.cz with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 29 Nov 2008 00:17:51 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: martinko Date: Sat, 29 Nov 2008 01:17:38 +0100 Lines: 23 Message-ID: <49308A22.2070205@users.sf.net> References: <493073F5.7020004@users.sf.net> <790a9fff0811281558q11bfad8dk30e508871b0aece6@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 200.41.broadband11.iol.cz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.18) Gecko/20081125 SeaMonkey/1.1.13 In-Reply-To: <790a9fff0811281558q11bfad8dk30e508871b0aece6@mail.gmail.com> Sender: news Cc: eps+pbug0701@ana.com Subject: Re: FreeBSD Port: net/linux-nx-client X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 00:17:55 -0000 Scot Hetzel wrote: > On Fri, Nov 28, 2008 at 4:43 PM, mato wrote: >> Hi, >> >> I've just installed net/linux-nx-client on FreeBSD 6.4 and after launching >> it I got: >> >> $ nxclient >> /usr/local/lib/linux-nx-client/bin/nxclient: error while loading shared >> libraries: libXext.so.6: cannot open shared object file: No such file or >> directory >> >> The library in need is located here: >> -rwxr-xr-x 1 root wheel 67306 Oct 8 18:07 /usr/local/lib/libXext.so.6 >> > That's the wrong library, you need the linux libXext.so.6 which should > be located under /usr/compat/linux. > > Scot Which it is not. A missing dependency ? M. From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 00:29:35 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA044106564A for ; Sat, 29 Nov 2008 00:29:35 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from mail.unitedinsong.com.au (202-172-126-254.cpe.qld-1.comcen.com.au [202.172.126.254]) by mx1.freebsd.org (Postfix) with ESMTP id 8DB788FC12 for ; Sat, 29 Nov 2008 00:29:35 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from [192.168.0.175] (unknown [192.168.0.175]) by mail.unitedinsong.com.au (Postfix) with ESMTP id 42EC44059 for ; Sat, 29 Nov 2008 10:10:33 +1000 (EST) From: Da Rock To: freebsd-ports@freebsd.org Content-Type: text/plain Date: Sat, 29 Nov 2008 10:10:28 +1000 Message-Id: <1227917428.3603.162.camel@laptop1.herveybayaustralia.com.au> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 (2.12.3-5.fc8) Content-Transfer-Encoding: 7bit Subject: Kde4 install - no Xorg X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 00:29:35 -0000 Funny thing happened to me on a new install... I installed 7.0 on a notebook because I wanted to (FINALLY!) see kde4 and I found out it was in ports. Plus I'm looking at just leaving FreeBSD on this system seeing as I can't get my TV card to work even on linux anymore. So I installed, ran portsnap fetch extract, cd /usr/ports/x11/kde4, and make install clean. A day and a half later, the install is finished so I run kdm. Not found so I run a find search and then run /usr/local/kde4/bin/kdm. It comes up saying it can't find and run the Xserver on display :0. What the?! So I run a search on pkg_version -v and find xorg is not installed- what the?! Maybe I'm missing something here, but I thought installing kde4 would install xorg (I'm pretty sure it has before if I remember right- it has been a while, but I'm sure I'm not that daft) as it kinda needs it to run and ports generally install dependencies. Has someone forgotten this in the Makefile? Not trying to be picky, but I thought it might more sense and offer my view :) From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 00:29:39 2008 Return-Path: Delivered-To: FreeBSD-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A18991065675 for ; Sat, 29 Nov 2008 00:29:39 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from ns2.bafirst.com (72-12-2-19.static.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 6118B8FC14 for ; Sat, 29 Nov 2008 00:29:39 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.190.3.105]) by ns2.bafirst.com with esmtp; Fri, 28 Nov 2008 18:29:37 -0600 id 000D50BB.49308CF1.00000B61 Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Fri, 28 Nov 2008 18:29:36 -0600 id 0004AC0A.49308CF0.00010738 Received: from ed.local.net.mx (ed.local.net.mx [192.168.1.65]) by econet.encontacto.net (Horde Framework) with HTTP; Fri, 28 Nov 2008 18:29:36 -0600 Message-ID: <20081128182936.1052168355hhlae8@econet.encontacto.net> Date: Fri, 28 Nov 2008 18:29:36 -0600 From: eculp To: Nikola =?utf-8?b?TGXEjWnEhw==?= References: <20081128073637.165767yq3leykloo@econet.encontacto.net> <20081128212421.147b0526@anthesphoria.net> In-Reply-To: <20081128212421.147b0526@anthesphoria.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (5.0-cvs) X-Remote-Browser: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.18) Gecko/20081114 Firefox/2.0.0.18 X-IMP-Server: 189.190.3.105 X-Originating-IP: 192.168.1.65 X-Originating-User: eculp@encontacto.net Cc: FreeBSD-ports Subject: Re: Only in OpenOffice.org-2.4, I'm having es_ES deadkey problems. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 00:29:39 -0000 Quoting Nikola Le=C4=8Di=C4=87 : > -----BEGIN PGP SIGNED MESSAGE----- > Hash: RIPEMD160 > > On Fri, 28 Nov 2008 07:36:37 -0600 > eculp wrote: > >> I'm not sure when this started because I almost never open MS type >> docs and when I do it is only to read them. Yesterday I found out, >> quite by accident, that everyone in our offices, is unable to use >> the deadkey accents for =C3=A1 =C3=A9 =C3=AD =C3=B3 =C3=BA etc but the = =C3=B1 works fine so it >> seems to be limited to the dead keys. I'm writing this in KDE ( all >> deadkeys work as expected in all kde apps) in term windows, even in >> ttyv[0.7] so it seems to be 100% openoffice centric. >> >> The Spanish spell check works fine and a cut and paste of an >> accented vowel works fine ( the current local work around). > > I experienced some OpenOffice.org input problems (specifically with > deadkeys) caused by certain combinations of OpenOffice.org, Xorg and > input method such as SCIM. So first, what input method do you use? I didn't even realize that there were multiple input methods from a =20 laptop keyboard. Smart Common Input Method, I doubt because it =20 doesn't seem to be very smart. Openoffice is the only program that has any problems. Skype, pidgen, =20 term windows, Konsole, even gimp work perfectly. > >> Has anyone else seen this and found a configuration or build option >> that I'm missing? Should I open a PR? I did try OpenOffice.org-3 >> and the same problem plus I didn't see an obvious way to download >> the spelling wizard with it so I blew it away. > > Please see this: > > =20 > http://lists.freebsd.org/pipermail/freebsd-questions/2008-November/186019.= html Spell check works perfectly. Using it and cut and paste from other =20 applications is the way we are working. Thanks a bunch and I'm sorry about my not understanding SCIM. I found =20 it on wikipedia. I'll read some more but it seems to be over kill in =20 this case. ed > Best wishes. > - -- > Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B > fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B > ~> -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.9 (FreeBSD) > > iJwEAQEDAAYFAkkwU3oACgkQ/MM/0rYIoZjcfAQAsF81fySwxV+PdD/ODKwvy/Ry > /nvCuFHqsew4arCqkiaY1gWXyy+5b5U4gIwiYLRE4yLaNvgDm6EMnYwcxcsN2cIY > jQhFYyT1ZjJxUxDIru8dH8GG9FdJnSXQsGxaiIKlJjpzQ3zRzkmY7SI2ydWLR4ch > mB6OU2RlVVpO5qY6/k4=3D > =3DI0NR > -----END PGP SIGNATURE----- > From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 01:21:46 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2455A1065670 for ; Sat, 29 Nov 2008 01:21:46 +0000 (UTC) (envelope-from pz-freebsd-ports@ziemba.us) Received: from ziemba.us (208-106-105-148.dsl.static.sonic.net [208.106.105.148]) by mx1.freebsd.org (Postfix) with ESMTP id E37718FC1A for ; Sat, 29 Nov 2008 01:21:45 +0000 (UTC) (envelope-from pz-freebsd-ports@ziemba.us) Received: from hairball.ziemba.us (localhost.ziemba.us [127.0.0.1]) by hairball.ziemba.us (8.14.3/8.14.3) with ESMTP id mAT0l7ve007968 for ; Fri, 28 Nov 2008 16:47:07 -0800 (PST) (envelope-from pz-freebsd-ports@ziemba.us) Received: (from mailnull@localhost) by hairball.ziemba.us (8.14.3/8.14.3/Submit) id mAT0l72I007966 for freebsd-ports@freebsd.org; Fri, 28 Nov 2008 16:47:07 -0800 (PST) (envelope-from pz-freebsd-ports@ziemba.us) X-Authentication-Warning: hairball.ziemba.us: mailnull set sender to pz-freebsd-ports@ziemba.us using -f Received: (from news@localhost) by hairball.ziemba.us (8.14.3/8.14.3/Submit) id mAT0l1Dg007888 for treehouse-mail-freebsd-ports@hairball.treehouse.napa.ca.us; Fri, 28 Nov 2008 16:47:01 -0800 (PST) (envelope-from news) From: "G. Paul Ziemba" To: freebsd-ports@freebsd.org Date: Sat, 29 Nov 2008 00:47:01 +0000 (UTC) Message-id: References: <49308A22.2070205@users.sf.net> Errors-to: "G. Paul Ziemba" Subject: Re: FreeBSD Port: net/linux-nx-client X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: paul+usenet@w6yx.stanford.edu List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 01:21:46 -0000 gamato@users.sf.net (martinko) writes: >Scot Hetzel wrote: >> On Fri, Nov 28, 2008 at 4:43 PM, mato wrote: >>> Hi, >>> >>> I've just installed net/linux-nx-client on FreeBSD 6.4 and after launching >>> it I got: >>> >>> $ nxclient >>> /usr/local/lib/linux-nx-client/bin/nxclient: error while loading shared >>> libraries: libXext.so.6: cannot open shared object file: No such file or >>> directory >>> >>> The library in need is located here: >>> -rwxr-xr-x 1 root wheel 67306 Oct 8 18:07 /usr/local/lib/libXext.so.6 >>> >> That's the wrong library, you need the linux libXext.so.6 which should >> be located under /usr/compat/linux. >> >> Scot >Which it is not. A missing dependency ? On my system, for some reason these libraries get installed (by the linux* ports) in /usr/compat/linux/usr/X11R6/lib rather than in /usr/compat/linux/usr/local/lib where many applications expect them. I have been manually creating symlinks in /usr/compat/linux/usr/local/lib, e.g., cd /usr/compat/linux/usr/local/lib ln -s ../../X11R6/lib/libXext.so.6 I'm not sure why I need to make these links or if there is a better approach, but it works for me. -- G. Paul Ziemba FreeBSD unix: 4:46PM up 9 days, 17:24, 7 users, load averages: 1.24, 1.39, 1.05 From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 01:26:35 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA7A41065670 for ; Sat, 29 Nov 2008 01:26:35 +0000 (UTC) (envelope-from shuvaev@physik.uni-wuerzburg.de) Received: from mailrelay.rz.uni-wuerzburg.de (mailrelay.rz.uni-wuerzburg.de [132.187.3.28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D7248FC0A for ; Sat, 29 Nov 2008 01:26:35 +0000 (UTC) (envelope-from shuvaev@physik.uni-wuerzburg.de) Received: from virusscan.mail (localhost [127.0.0.1]) by mailrelay.mail (Postfix) with ESMTP id E9404A07CB; Sat, 29 Nov 2008 02:26:33 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by virusscan.mail (Postfix) with ESMTP id DC2EBA07C8; Sat, 29 Nov 2008 02:26:33 +0100 (CET) Received: from mail.physik.uni-wuerzburg.de (wthp192.physik.uni-wuerzburg.de [132.187.40.192]) by mailmaster.uni-wuerzburg.de (Postfix) with ESMTP id C68ECA07BC; Sat, 29 Nov 2008 02:26:33 +0100 (CET) Received: from localhost.my.domain ([80.129.137.177]) by mail.physik.uni-wuerzburg.de (Lotus Domino Release 8.0.2) with ESMTP id 2008112902263248-203 ; Sat, 29 Nov 2008 02:26:32 +0100 Received: by localhost.my.domain (sSMTP sendmail emulation); Sat, 29 Nov 2008 02:26:35 +0100 Date: Sat, 29 Nov 2008 02:26:35 +0100 From: Alexey Shuvaev To: Da Rock Message-ID: <20081129012635.GA1675@localhost.my.domain> References: <1227917428.3603.162.camel@laptop1.herveybayaustralia.com.au> MIME-Version: 1.0 In-Reply-To: <1227917428.3603.162.camel@laptop1.herveybayaustralia.com.au> Organization: Universitaet Wuerzburg User-Agent: Mutt/1.5.18 (2008-05-17) X-MIMETrack: Itemize by SMTP Server on domino1/uni-wuerzburg(Release 8.0.2|August 07, 2008) at 11/29/2008 02:26:32 AM, Serialize by Router on domino1/uni-wuerzburg(Release 8.0.2|August 07, 2008) at 11/29/2008 02:26:32 AM, Serialize complete at 11/29/2008 02:26:32 AM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Virus-Scanned: by amavisd-new at uni-wuerzburg.de Cc: freebsd-ports@freebsd.org Subject: Re: Kde4 install - no Xorg X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 01:26:35 -0000 On Sat, Nov 29, 2008 at 10:10:28AM +1000, Da Rock wrote: > Funny thing happened to me on a new install... > > [snip] > > A day and a half later, the install is finished so I run kdm. Not found > so I run a find search and then run /usr/local/kde4/bin/kdm. It comes up > saying it can't find and run the Xserver on display :0. What the?! > > So I run a search on pkg_version -v and find xorg is not installed- what > the?! Maybe I'm missing something here, but I thought installing kde4 > would install xorg (I'm pretty sure it has before if I remember right- > it has been a while, but I'm sure I'm not that daft) as it kinda needs > it to run and ports generally install dependencies. Has someone > forgotten this in the Makefile? > > Not trying to be picky, but I thought it might more sense and offer my > view :) > Well, I would say it is not a bug, it is a feature of X window system. I think that X libraries are there, it is X server missing. One can install all X applications on one machine (let's say, server) and X servers on any number of graphical terminals (yes, X servers are run on what is normally called a client). After that it is possible to point clients on the server to the right X server (via DISPLAY environment, for example). That way the application will be run on server displaying output and receiving input from the remote X server. (Yes the terminology is weird :) If you don't care about unnecessary components you can cd /usr/ports/x11/xorg make intstall clean Hope, this explains something, Alexey. From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 01:52:58 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98C81106564A for ; Sat, 29 Nov 2008 01:52:58 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from mail.unitedinsong.com.au (202-172-126-254.cpe.qld-1.comcen.com.au [202.172.126.254]) by mx1.freebsd.org (Postfix) with ESMTP id 3F0E88FC08 for ; Sat, 29 Nov 2008 01:52:58 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from [192.168.0.175] (unknown [192.168.0.175]) by mail.unitedinsong.com.au (Postfix) with ESMTP id 99E8D4059 for ; Sat, 29 Nov 2008 11:53:28 +1000 (EST) From: Da Rock To: freebsd-ports@freebsd.org In-Reply-To: <20081129012635.GA1675@localhost.my.domain> References: <1227917428.3603.162.camel@laptop1.herveybayaustralia.com.au> <20081129012635.GA1675@localhost.my.domain> Content-Type: text/plain Date: Sat, 29 Nov 2008 11:53:24 +1000 Message-Id: <1227923604.3603.178.camel@laptop1.herveybayaustralia.com.au> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 (2.12.3-5.fc8) Content-Transfer-Encoding: 7bit Subject: Re: Kde4 install - no Xorg X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 01:52:58 -0000 On Sat, 2008-11-29 at 02:26 +0100, Alexey Shuvaev wrote: > On Sat, Nov 29, 2008 at 10:10:28AM +1000, Da Rock wrote: > > Funny thing happened to me on a new install... > > > > [snip] > > > > A day and a half later, the install is finished so I run kdm. Not found > > so I run a find search and then run /usr/local/kde4/bin/kdm. It comes up > > saying it can't find and run the Xserver on display :0. What the?! > > > > So I run a search on pkg_version -v and find xorg is not installed- what > > the?! Maybe I'm missing something here, but I thought installing kde4 > > would install xorg (I'm pretty sure it has before if I remember right- > > it has been a while, but I'm sure I'm not that daft) as it kinda needs > > it to run and ports generally install dependencies. Has someone > > forgotten this in the Makefile? > > > > Not trying to be picky, but I thought it might more sense and offer my > > view :) > > > Well, I would say it is not a bug, it is a feature of X window system. > I think that X libraries are there, it is X server missing. > One can install all X applications on one machine (let's say, server) > and X servers on any number of graphical terminals (yes, X servers are > run on what is normally called a client). After that it is possible to > point clients on the server to the right X server (via DISPLAY environment, > for example). That way the application will be run on server displaying > output and receiving input from the remote X server. (Yes the terminology > is weird :) > > If you don't care about unnecessary components you can > cd /usr/ports/x11/xorg > make intstall clean Yeah I do understand all that, but it did kinda take me by surprise to find that no xserver was installed (or at least an option to install xorg wasn't offered in that cool little config window now available). The libraries were installed, for reference. That feature to point the clients to one machine is cool, and I have used it before between desktops, but how often do sysadmins use it like this on a regular basis as a standalone terminal server? Most regular setups (xwindow anyway) would normally be running on a decentralised basis unless there was a specific need, surely. Just a little warning and/or the option to install xorg might be in order to give people a heads up would be in order I'm sure. Obviously not a high priority, but a reasonable request. From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 02:25:14 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F9EB1065676 for ; Sat, 29 Nov 2008 02:25:14 +0000 (UTC) (envelope-from unixmania@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.27]) by mx1.freebsd.org (Postfix) with ESMTP id 886B58FC12 for ; Sat, 29 Nov 2008 02:25:13 +0000 (UTC) (envelope-from unixmania@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so691139eyi.7 for ; Fri, 28 Nov 2008 18:25:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=Vm8nDXvCaLVC0Ca1K9ccFPkrZAi/7u+wCF0qgHPDPyc=; b=pvnqTPtZBY1D41Lsl11NBas+I6eMl8AOSfvYPu5DygBG64/8/LgQZ5Hdn1lDwzOjzb yxDMeUc9j2vVUYPJm0Ifwg1nb/BF4PTqYGE1VPY5AiSDI0dS2e570oo+nNMwbl+KCGTp 9wDb6TDi5lxtysvfLHK2Nkca7HGjariH95RZw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=qFozAji0kUqXW7DhmGhymavvCSHU1wiruGiQFYd24lnqNrm+0vwnzhMnz8syMBLbOm fA202ATR4MSu51oBXPuv2RrdXlMFcuo4aqE/Gb5uZDt9XQY3Fz/HfzfcYCIGaKZI4H6n 7HO45fyz60HhjS7PIwY1+dk5fH2Ip0BrKhHo8= Received: by 10.210.78.16 with SMTP id a16mr9635703ebb.33.1227925511834; Fri, 28 Nov 2008 18:25:11 -0800 (PST) Received: by 10.210.134.19 with HTTP; Fri, 28 Nov 2008 18:25:11 -0800 (PST) Message-ID: Date: Sat, 29 Nov 2008 00:25:11 -0200 From: "Carlos A. M. dos Santos" To: "Albert Thiel" In-Reply-To: <66f15cb3806e497989fbe62ff15147af.athiel@yourdatacenter.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <66f15cb3806e497989fbe62ff15147af.athiel@yourdatacenter.com> Cc: freebsd-ports@freebsd.org Subject: Re: SQUID Follow X-Forwarded-For headers X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 02:25:14 -0000 On Fri, Nov 28, 2008 at 9:08 PM, Albert Thiel wrote: > There is a patch to Follow X-Forwarded-For headers to SQUID, but it is not in the ports. How do I > patch this in, or has someone done it already? You can fill a PR with the appropriate patch (see the Porter's Handbook). I suggest you to contact the port maintainer before, since he may be working on that modification. -- cd /usr/ports/sysutils/life make clean From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 02:26:34 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2513B1065672; Sat, 29 Nov 2008 02:26:34 +0000 (UTC) (envelope-from itetcu@freebsd.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id 8B8278FC13; Sat, 29 Nov 2008 02:26:33 +0000 (UTC) (envelope-from itetcu@freebsd.org) Received: from quark.ds9.tecnik93.com (quark.ds9.tecnik93.com [81.196.207.132]) by worf.ds9.tecnik93.com (Postfix) with ESMTP id 62972FBEC41; Sat, 29 Nov 2008 04:26:32 +0200 (EET) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 5A01A12E42E9; Sat, 29 Nov 2008 04:26:32 +0200 (EET) From: QAT@FreeBSD.org To: linimon@FreeBSD.org In-Reply-To: <200811282315.mASNFYZU010498@repoman.freebsd.org> References: In-Reply-To: <200811282315.mASNFYZU010498@repoman.freebsd.org> X-Mailer: $Tecnik: people/itetcu/ports/QA-Tindy/QAT_postPortBuild.sh, v 1.44 2008/08/24 09:54:12 itetcu Exp $ X-QAT-Tindy_Version: 2.4.3 X-QAT-Jail_Arch: amd64 X-QAT-Jail_Csup_Tag: RELENG_7 X-QAT-Jail_Last_Built: 2008-08-19 17:05:45 X-QAT-Port: net/p54u X-QAT-Fail_Reason: new_compiler_error X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/p54u-0.8.log X-QAT-Build_Reason: Commit Message-Id: <20081129022632.5A01A12E42E9@quark.ds9.tecnik93.com> Date: Sat, 29 Nov 2008 04:26:32 +0200 (EET) Cc: ports@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net/p54u Makefile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 02:26:34 -0000 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, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/p54u-0.8.log : building p54u-0.8 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/net/p54u Makefile ident: $FreeBSD: ports/net/p54u/Makefile,v 1.3 2008/11/28 23:15:34 linimon Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sat Nov 29 02:26:28 UTC 2008 ................................................... eeprom.c:156: error: 'struct p54u_softc' has no member named 'sc_dev' eeprom.c:156: warning: format '%s' expects type 'char *', but argument 2 has type 'int' eeprom.c:157: error: 'struct p54u_softc' has no member named 'err' eeprom.c:160: error: 'struct p54u_softc' has no member named 'freq_info' eeprom.c:173: error: 'struct p54u_softc' has no member named 'freq_info' eeprom.c:181: error: 'struct p54u_softc' has no member named 'freq_info' eeprom.c:188: error: 'struct p54u_softc' has no member named 'freq_info' eeprom.c:189: error: 'struct p54u_softc' has no member named 'freq_info' eeprom.c:203: error: 'struct p54u_softc' has no member named 'freq_info' eeprom.c:203: error: 'struct p54u_softc' has no member named 'freq_info' eeprom.c:205: error: 'struct p54u_softc' has no member named 'freq_info' eeprom.c:214: error: 'struct p54u_softc' has no member named 'freq_info' eeprom.c: In function 'p54u_eeprom_read': eeprom.c:256: error: 'struct p54u_softc' has no member named 'firmware_type' eeprom.c:256: error: 'struct p54u_softc' has no member named 'firmware_type' eeprom.c:258: error: 'struct p54u_softc' has no member named 'pmalloc_state' eeprom.c:260: error: 'struct p54u_softc' has no member named 'sc_dev' eeprom.c:260: warning: format '%s' expects type 'char *', but argument 2 has type 'int' eeprom.c:261: error: 'struct p54u_softc' has no member named 'err' eeprom.c:267: error: 'struct p54u_softc' has no member named 'sc_dev' eeprom.c:267: warning: format '%s' expects type 'char *', but argument 2 has type 'int' eeprom.c:268: error: 'struct p54u_softc' has no member named 'pmalloc_state' eeprom.c:269: error: 'struct p54u_softc' has no member named 'err' eeprom.c:279: error: 'struct p54u_softc' has no member named 'eeprom_read_sema' eeprom.c:281: error: 'struct p54u_softc' has no member named 'sc_dev' eeprom.c:281: warning: format '%s' expects type 'char *', but argument 2 has type 'int' eeprom.c:282: error: 'struct p54u_softc' has no member named 'err' eeprom.c:289: error: 'struct p54u_softc' has no member named 'sc_dev' eeprom.c:289: warning: format '%s' expects type 'char *', but argument 2 has type 'int' *** Error code 1 Stop in /work/a/ports/net/p54u/work/p54u-0.8/driver. *** Error code 1 Stop in /work/a/ports/net/p54u/work/p54u-0.8. *** Error code 1 Stop in /a/ports/net/p54u. ================================================================ build of /usr/ports/net/p54u ended at Sat Nov 29 02:26:30 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 02:28:39 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C2B9106564A; Sat, 29 Nov 2008 02:28:39 +0000 (UTC) (envelope-from itetcu@freebsd.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id 7F1108FC08; Sat, 29 Nov 2008 02:28:38 +0000 (UTC) (envelope-from itetcu@freebsd.org) Received: from quark.ds9.tecnik93.com (quark.ds9.tecnik93.com [81.196.207.132]) by worf.ds9.tecnik93.com (Postfix) with ESMTP id 8ADCEFBEC48; Sat, 29 Nov 2008 04:28:37 +0200 (EET) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 7EC5A12E44F8; Sat, 29 Nov 2008 04:28:37 +0200 (EET) From: QAT@FreeBSD.org To: linimon@FreeBSD.org In-Reply-To: <200811282320.mASNKLJK010974@repoman.freebsd.org> References: In-Reply-To: <200811282320.mASNKLJK010974@repoman.freebsd.org> X-Mailer: $Tecnik: people/itetcu/ports/QA-Tindy/QAT_postPortBuild.sh, v 1.44 2008/08/24 09:54:12 itetcu Exp $ X-QAT-Tindy_Version: 2.4.3 X-QAT-Jail_Arch: amd64 X-QAT-Jail_Csup_Tag: RELENG_7 X-QAT-Jail_Last_Built: 2008-08-19 17:05:45 X-QAT-Port: security/libprelude X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/libprelude-0.9.20.2_1.log X-QAT-Build_Reason: Commit Message-Id: <20081129022837.7EC5A12E44F8@quark.ds9.tecnik93.com> Date: Sat, 29 Nov 2008 04:28:37 +0200 (EET) Cc: ports@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/libprelude Makefile ports/security/libpreludedb Makefile ports/security/prelude-lml Makefile ports/security/prelude-manager Makefile ports/www/py-prewikka Makefile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 02:28:39 -0000 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, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/libprelude-0.9.20.2_1.log : building libprelude-0.9.20.2_1 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/security/libprelude Makefile ident: $FreeBSD: ports/security/libprelude/Makefile,v 1.57 2008/11/28 23:20:21 linimon Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sat Nov 29 02:27:38 UTC 2008 ................................................... 22963544 112 -r--r--r-- 1 root wheel 56406 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-idmef-message-print.html 22963545 128 -r--r--r-- 1 root wheel 64384 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-idmef-message-read.html 22963546 144 -r--r--r-- 1 root wheel 71875 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-idmef-message-write.html 22963575 8 -r--r--r-- 1 root wheel 2679 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/pt01.html 22963547 96 -r--r--r-- 1 root wheel 47231 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-idmef-path.html 22963548 92 -r--r--r-- 1 root wheel 47090 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-idmef-time.html 22963549 2784 -r--r--r-- 1 root wheel 1392764 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-idmef-tree-wrap.html 22963550 192 -r--r--r-- 1 root wheel 96878 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-idmef-value.html 22963551 24 -r--r--r-- 1 root wheel 10457 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-async.html 22963552 84 -r--r--r-- 1 root wheel 41795 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-client-profile.html 22963553 116 -r--r--r-- 1 root wheel 59072 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-client.html 22963554 116 -r--r--r-- 1 root wheel 58772 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-connection-pool.html 22963555 88 -r--r--r-- 1 root wheel 44574 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-connection.html 22963556 72 -r--r--r-- 1 root wheel 36667 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-error.html 22963557 36 -r--r--r-- 1 root wheel 17093 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-failover.html 22963558 28 -r--r--r-- 1 root wheel 13903 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-hash.html 22963576 8 -r--r--r-- 1 root wheel 3475 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/pt02.html 22963559 20 -r--r--r-- 1 root wheel 9115 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-ident.html 22963560 40 -r--r--r-- 1 root wheel 20263 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-inttypes.html 22963561 84 -r--r--r-- 1 root wheel 41921 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-io.html 22963562 12 -r--r--r-- 1 root wheel 4635 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-linked-object.html 22963563 40 -r--r--r-- 1 root wheel 18678 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-list.html 22963564 32 -r--r--r-- 1 root wheel 14438 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-log.html 22963565 96 -r--r--r-- 1 root wheel 47372 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-msg.html 22963566 40 -r--r--r-- 1 root wheel 18522 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-msgbuf.html 22963567 28 -r--r--r-- 1 root wheel 12567 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-option-wide.html 22963568 176 -r--r--r-- 1 root wheel 89660 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-option.html 22963569 88 -r--r--r-- 1 root wheel 44017 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-plugin.html 22963570 120 -r--r--r-- 1 root wheel 60690 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-string.html 22963573 376 -r--r--r-- 1 root wheel 191238 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude.devhelp 22963571 28 -r--r--r-- 1 root wheel 14011 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude-timer.html 22963572 20 -r--r--r-- 1 root wheel 9164 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude-prelude.html 22963574 480 -r--r--r-- 1 root wheel 214969 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/libprelude.devhelp2 22963577 8 -r--r--r-- 1 root wheel 2869 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/pt03.html 22963578 8 -r--r--r-- 1 root wheel 2686 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/pt04.html 22963579 4 -r--r--r-- 1 root wheel 472 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/right.png 22963580 8 -r--r--r-- 1 root wheel 2331 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/style.css 22963581 4 -r--r--r-- 1 root wheel 406 Nov 29 02:28 usr/local/share/gtk-doc/html/libprelude/up.png ================================================================ build of /usr/ports/security/libprelude ended at Sat Nov 29 02:28:36 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 08:48:29 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EDA91065670; Sat, 29 Nov 2008 08:48:29 +0000 (UTC) (envelope-from itetcu@freebsd.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id 98CA48FC0C; Sat, 29 Nov 2008 08:48:28 +0000 (UTC) (envelope-from itetcu@freebsd.org) Received: from quark.ds9.tecnik93.com (quark.ds9.tecnik93.com [81.196.207.132]) by worf.ds9.tecnik93.com (Postfix) with ESMTP id 87D82FBEC19; Sat, 29 Nov 2008 10:48:27 +0200 (EET) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 748AF12E401C; Sat, 29 Nov 2008 10:48:27 +0200 (EET) From: QAT@FreeBSD.org To: lioux@FreeBSD.org In-Reply-To: <200811290843.mAT8hxoX092543@repoman.freebsd.org> References: In-Reply-To: <200811290843.mAT8hxoX092543@repoman.freebsd.org> X-Mailer: $Tecnik: people/itetcu/ports/QA-Tindy/QAT_postPortBuild.sh, v 1.44 2008/08/24 09:54:12 itetcu Exp $ X-QAT-Tindy_Version: 2.4.3 X-QAT-Jail_Arch: amd64 X-QAT-Jail_Csup_Tag: RELENG_7 X-QAT-Jail_Last_Built: 2008-08-19 17:05:45 X-QAT-Port: finance/qtstalker X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/qtstalker-0.28_2.log X-QAT-Build_Reason: Commit Message-Id: <20081129084827.748AF12E401C@quark.ds9.tecnik93.com> Date: Sat, 29 Nov 2008 10:48:27 +0200 (EET) Cc: ports@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/finance/qtstalker Makefile ports/finance/venice Makefile ports/finance/xtrader Makefile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 08:48:29 -0000 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, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/qtstalker-0.28_2.log : building qtstalker-0.28_2 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/finance/qtstalker Makefile ident: $FreeBSD: ports/finance/qtstalker/Makefile,v 1.10 2008/11/29 08:43:59 lioux Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sat Nov 29 08:46:57 UTC 2008 ................................................... 9398955 24 -r--r--r-- 1 root wheel 10622 Nov 29 08:48 usr/local/share/doc/qtstalker/scannerdialog.png 9398956 24 -r--r--r-- 1 root wheel 10280 Nov 29 08:48 usr/local/share/doc/qtstalker/scannernav.png 9398957 12 -r--r--r-- 1 root wheel 4960 Nov 29 08:48 usr/local/share/doc/qtstalker/sd1.png 9398967 24 -r--r--r-- 1 root wheel 11337 Nov 29 08:48 usr/local/share/doc/qtstalker/sz.png 9398958 4 -r--r--r-- 1 root wheel 174 Nov 29 08:48 usr/local/share/doc/qtstalker/sellarrow1.png 9398959 4 -r--r--r-- 1 root wheel 209 Nov 29 08:48 usr/local/share/doc/qtstalker/sellarrow2.png 9398960 16 -r--r--r-- 1 root wheel 7006 Nov 29 08:48 usr/local/share/doc/qtstalker/spread1.png 9398961 12 -r--r--r-- 1 root wheel 5605 Nov 29 08:48 usr/local/share/doc/qtstalker/statusbar.png 9398962 20 -r--r--r-- 1 root wheel 8801 Nov 29 08:48 usr/local/share/doc/qtstalker/stoch1.png 9398963 12 -r--r--r-- 1 root wheel 5219 Nov 29 08:48 usr/local/share/doc/qtstalker/stocksplugin1.png 9398964 16 -r--r--r-- 1 root wheel 8029 Nov 29 08:48 usr/local/share/doc/qtstalker/stocksplugin2.png 9398965 4 -r--r--r-- 1 root wheel 867 Nov 29 08:48 usr/local/share/doc/qtstalker/stop.png 9398966 16 -r--r--r-- 1 root wheel 7310 Nov 29 08:48 usr/local/share/doc/qtstalker/swing.png 9398968 20 -r--r--r-- 1 root wheel 8900 Nov 29 08:48 usr/local/share/doc/qtstalker/testnav.png 9398969 4 -r--r--r-- 1 root wheel 256 Nov 29 08:48 usr/local/share/doc/qtstalker/text1.png 9398970 4 -r--r--r-- 1 root wheel 266 Nov 29 08:48 usr/local/share/doc/qtstalker/text2.png 9398971 12 -r--r--r-- 1 root wheel 5733 Nov 29 08:48 usr/local/share/doc/qtstalker/therm.png 9398972 4 -r--r--r-- 1 root wheel 1845 Nov 29 08:48 usr/local/share/doc/qtstalker/title1.png 9398973 12 -r--r--r-- 1 root wheel 5422 Nov 29 08:48 usr/local/share/doc/qtstalker/toolbar.png 9398974 12 -r--r--r-- 1 root wheel 5899 Nov 29 08:48 usr/local/share/doc/qtstalker/trendline1.png 9398975 12 -r--r--r-- 1 root wheel 5813 Nov 29 08:48 usr/local/share/doc/qtstalker/trendline2.png 9398976 16 -r--r--r-- 1 root wheel 6520 Nov 29 08:48 usr/local/share/doc/qtstalker/trix1.png 9398977 16 -r--r--r-- 1 root wheel 6178 Nov 29 08:48 usr/local/share/doc/qtstalker/uo1.png 9398978 12 -r--r--r-- 1 root wheel 4894 Nov 29 08:48 usr/local/share/doc/qtstalker/verticalline1.png 9398979 8 -r--r--r-- 1 root wheel 3438 Nov 29 08:48 usr/local/share/doc/qtstalker/verticalline2.png 9398980 12 -r--r--r-- 1 root wheel 4823 Nov 29 08:48 usr/local/share/doc/qtstalker/vol1.png 9398981 16 -r--r--r-- 1 root wheel 6562 Nov 29 08:48 usr/local/share/doc/qtstalker/volr1.png 9398982 12 -r--r--r-- 1 root wheel 4470 Nov 29 08:48 usr/local/share/doc/qtstalker/vt1.png 9398983 12 -r--r--r-- 1 root wheel 5125 Nov 29 08:48 usr/local/share/doc/qtstalker/willr1.png 9398984 8 -r--r--r-- 1 root wheel 2940 Nov 29 08:48 usr/local/share/doc/qtstalker/workwithgroups2.png 9398985 8 -r--r--r-- 1 root wheel 2974 Nov 29 08:48 usr/local/share/doc/qtstalker/workwithgroups4.png 9398986 16 -r--r--r-- 1 root wheel 7347 Nov 29 08:48 usr/local/share/doc/qtstalker/workwithmainindicators1.png 9398987 16 -r--r--r-- 1 root wheel 7237 Nov 29 08:48 usr/local/share/doc/qtstalker/workwithportfolios2.png 9398988 12 -r--r--r-- 1 root wheel 4546 Nov 29 08:48 usr/local/share/doc/qtstalker/workwithportfolios3.png 9398989 8 -r--r--r-- 1 root wheel 2844 Nov 29 08:48 usr/local/share/doc/qtstalker/workwithportfolios4.png 9398990 8 -r--r--r-- 1 root wheel 2934 Nov 29 08:48 usr/local/share/doc/qtstalker/workwithportfolios5.png 9398991 20 -r--r--r-- 1 root wheel 8607 Nov 29 08:48 usr/local/share/doc/qtstalker/yahoo1.png 9398992 8 -r--r--r-- 1 root wheel 3698 Nov 29 08:48 usr/local/share/doc/qtstalker/yahoo2.png ================================================================ build of /usr/ports/finance/qtstalker ended at Sat Nov 29 08:48:26 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 13:21:45 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8DB41065677 for ; Sat, 29 Nov 2008 13:21:45 +0000 (UTC) (envelope-from fbsd06+4E=746990f5@mlists.homeunix.com) Received: from fallback-in1.mxes.net (fallback-out1.mxes.net [216.86.168.190]) by mx1.freebsd.org (Postfix) with ESMTP id 9433B8FC14 for ; Sat, 29 Nov 2008 13:21:45 +0000 (UTC) (envelope-from fbsd06+4E=746990f5@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by fallback-in1.mxes.net (Postfix) with ESMTP id A197D16470B for ; Sat, 29 Nov 2008 08:05:24 -0500 (EST) Received: from gumby.homeunix.com (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id D84B023E3E9 for ; Sat, 29 Nov 2008 08:05:22 -0500 (EST) Date: Sat, 29 Nov 2008 13:05:19 +0000 From: RW To: freebsd-ports@freebsd.org Message-ID: <20081129130519.13eca9c0@gumby.homeunix.com> In-Reply-To: <66f15cb3806e497989fbe62ff15147af.athiel@yourdatacenter.com> References: <66f15cb3806e497989fbe62ff15147af.athiel@yourdatacenter.com> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: SQUID Follow X-Forwarded-For headers X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 13:21:45 -0000 On Fri, 28 Nov 2008 18:08:02 -0500 "Albert Thiel" wrote: > There is a patch to Follow X-Forwarded-For headers to SQUID, but it > is not in the ports. How do I patch this in, or has someone done it > already? You can have patches applied automatically by giving them a name that starts with "patch-", and putting them in the port's "files" directory. From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 13:43:07 2008 Return-Path: Delivered-To: FreeBSD-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55F5B1065670 for ; Sat, 29 Nov 2008 13:43:07 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) Received: from anthesphoria.net (anthesphoria.net [200.46.204.219]) by mx1.freebsd.org (Postfix) with ESMTP id E07328FC08 for ; Sat, 29 Nov 2008 13:43:06 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) X-Bogosity: No, tests=bogofilter X-DKIM: Sendmail DKIM Filter v2.4.1 anthesphoria.net mATDgsOI039716 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=anthesphoria.net; s=phero; t=1227966181; bh=po+CgBRj4X0sbUaT54C01q0Lcsp/j4QRmu3C8Elpr j8=; l=1722; h=X-Bogosity:Date:From:To:Cc:Subject:Message-ID: In-Reply-To:References:X-Mailer:X-Face:X-Operating-System: X-OpenPGP-Fingerprint:X-OpenPGP-Preferred-Keyserver:Mime-Version: Content-Type:Content-Transfer-Encoding; b=bUSSEERF0fk+qsIc6uAtXBlp ZHig3g4GkCnTrm2WRpLZ0EyeQJ9+s5cLdJrH4CoJNSouonamzeQOFJE/fWAbtTEXjCG TN7y3I8VLCTEtqbsgMndKHkQ1p9JrUR7DVP9iF9VTvNxH9qfkaTazVWfporTKq8BF5b J7zRBCruwcbdw= Received: from anthesphoria.net (adsl-200-199.eunet.yu [213.198.200.199]) (authenticated bits=0) by anthesphoria.net (8.14.2/8.14.2) with ESMTP id mATDgsOI039716 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 29 Nov 2008 14:42:58 +0100 (CET) (envelope-from nikola.lecic@anthesphoria.net) Date: Sat, 29 Nov 2008 14:39:07 +0100 From: Nikola =?UTF-8?B?TGXEjWnEhw==?= To: eculp Message-ID: <20081129143907.36c3ac69@anthesphoria.net> In-Reply-To: <20081128182936.1052168355hhlae8@econet.encontacto.net> References: <20081128073637.165767yq3leykloo@econet.encontacto.net> <20081128212421.147b0526@anthesphoria.net> <20081128182936.1052168355hhlae8@econet.encontacto.net> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] X-Operating-System: FreeBSD 7.0-RELEASE/i386 X-OpenPGP-Fingerprint: FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B X-OpenPGP-Preferred-Keyserver: x-hkp://pgpkeys.pca.dfn.de Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD-ports Subject: Re: Only in OpenOffice.org-2.4, I'm having es_ES deadkey problems. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 13:43:07 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160 On Fri, 28 Nov 2008 18:29:36 -0600 eculp wrote: =20 > I didn't even realize that there were multiple input methods from a =20 > laptop keyboard. Smart Common Input Method, I doubt because it =20 > doesn't seem to be very smart. >=20 > Openoffice is the only program that has any problems. Skype, pidgen, =20 > term windows, Konsole, even gimp work perfectly. So you use some Spanish keyboard with one of the SCIM IMEngines? If this is so, then you probably have something like this in your environment: XMODIFIERS=3D@im=3DSCIM GTK_IM_MODULE=3Dscim Please try GTK_IM_MODULE=3Dxim. Switching among keyboards will be a bit harder (SCIM keyboard icon and the actual keyboard will sometimes be desynchronised when you change focus among windows), but this used to solve OpenOffice.org deadkeys problem for me in the past. If this doesn't help, you can try textproc/scim-bridge with GTK_IM_MODULE=3Dscim-bridge. Although I must add that the problem mainly disappeared when I switched to openoffice.org-3-devel (currently running 3.1.20081024). HTH - --=20 Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iJwEAQEDAAYFAkkxRgAACgkQ/MM/0rYIoZhNtAP9GNcqnMOA66cmzd0TZUeCggyd QjXx7sAZJG0J9+OiyMRS1gJZKZ5EhZZ2wdhtUzEHXr4/oX+/LbLPZaq7/azsGpD/ LF5Qg2IWjArV+28EXWxhUC0yCcQnNLwSa/Jmn7AuN6fFjxbC3VEwgAzw9qov8HXG 3PlXeIz6Z18jJ/9BR+4=3D =3DoR6t -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 14:37:59 2008 Return-Path: Delivered-To: FreeBSD-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A3391065672 for ; Sat, 29 Nov 2008 14:37:59 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from ns2.bafirst.com (72-12-2-19.static.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 44B1B8FC13 for ; Sat, 29 Nov 2008 14:37:58 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.190.3.105]) by ns2.bafirst.com with esmtp; Sat, 29 Nov 2008 08:37:56 -0600 id 000D515F.493153C5.00006AFB Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Sat, 29 Nov 2008 08:37:55 -0600 id 0004AC0D.493153C3.00016889 Received: from ed.local.net.mx (ed.local.net.mx [192.168.1.65]) by econet.encontacto.net (Horde Framework) with HTTP; Sat, 29 Nov 2008 08:37:55 -0600 Message-ID: <20081129083755.844827c9hjnvt70g@econet.encontacto.net> Date: Sat, 29 Nov 2008 08:37:55 -0600 From: eculp To: Nikola =?utf-8?b?TGXEjWnEhw==?= References: <20081128073637.165767yq3leykloo@econet.encontacto.net> <20081128212421.147b0526@anthesphoria.net> <20081128182936.1052168355hhlae8@econet.encontacto.net> <20081129143907.36c3ac69@anthesphoria.net> In-Reply-To: <20081129143907.36c3ac69@anthesphoria.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (5.0-cvs) X-Remote-Browser: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.18) Gecko/20081114 Firefox/2.0.0.18 X-IMP-Server: 189.190.3.105 X-Originating-IP: 192.168.1.65 X-Originating-User: eculp@encontacto.net Cc: FreeBSD-ports Subject: Re: Only in OpenOffice.org-2.4, I'm having es_ES deadkey problems. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 14:37:59 -0000 Quoting Nikola Le=C4=8Di=C4=87 : > -----BEGIN PGP SIGNED MESSAGE----- > Hash: RIPEMD160 > > On Fri, 28 Nov 2008 18:29:36 -0600 > eculp wrote: > >> I didn't even realize that there were multiple input methods from a >> laptop keyboard. Smart Common Input Method, I doubt because it >> doesn't seem to be very smart. >> >> Openoffice is the only program that has any problems. Skype, pidgen, >> term windows, Konsole, even gimp work perfectly. > > So you use some Spanish keyboard with one of the SCIM IMEngines? If > this is so, then you probably have something like this in your > environment: > > XMODIFIERS=3D@im=3DSCIM > GTK_IM_MODULE=3Dscim I had neither in my environment so I added them and there was a =20 change. The dead keys printed correctly but weren't dead. The same =20 with xim. I am seeing this on different laptops and one multiple =20 desktop keyboards. They are all runing KDE and the desktops are =20 running FreeBSD 7.1-PRERELEASE and the laptop uptodate Current. > > Please try GTK_IM_MODULE=3Dxim. Switching among keyboards will be a bit > harder (SCIM keyboard icon and the actual keyboard will sometimes be > desynchronised when you change focus among windows), but this used to > solve OpenOffice.org deadkeys problem for me in the past. > > If this doesn't help, you can try textproc/scim-bridge with > GTK_IM_MODULE=3Dscim-bridge. > > Although I must add that the problem mainly disappeared when I switched > to openoffice.org-3-devel (currently running 3.1.20081024). I'm going to give it a try because we have been using openoffice since =20 1.x without problems and without having to learn about SCIM ;) Thanks, ed > > HTH > - -- > Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B > fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B > ~> -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.9 (FreeBSD) > > iJwEAQEDAAYFAkkxRgAACgkQ/MM/0rYIoZhNtAP9GNcqnMOA66cmzd0TZUeCggyd > QjXx7sAZJG0J9+OiyMRS1gJZKZ5EhZZ2wdhtUzEHXr4/oX+/LbLPZaq7/azsGpD/ > LF5Qg2IWjArV+28EXWxhUC0yCcQnNLwSa/Jmn7AuN6fFjxbC3VEwgAzw9qov8HXG > 3PlXeIz6Z18jJ/9BR+4=3D > =3DoR6t > -----END PGP SIGNATURE----- > From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 15:15:22 2008 Return-Path: Delivered-To: FreeBSD-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B96D01065678 for ; Sat, 29 Nov 2008 15:15:22 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) Received: from anthesphoria.net (anthesphoria.net [200.46.204.219]) by mx1.freebsd.org (Postfix) with ESMTP id 6B6E48FC16 for ; Sat, 29 Nov 2008 15:15:22 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) X-Bogosity: No, tests=bogofilter X-DKIM: Sendmail DKIM Filter v2.4.1 anthesphoria.net mATFFD4c062068 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=anthesphoria.net; s=phero; t=1227971719; bh=/NXJe/qdfemGnysJOBbdXX4bd9wZvdBvuoDQUopKs D0=; l=2953; h=X-Bogosity:Date:From:To:Cc:Subject:Message-ID: In-Reply-To:References:X-Mailer:X-Face:X-Operating-System: X-OpenPGP-Fingerprint:X-OpenPGP-Preferred-Keyserver:Mime-Version: Content-Type:Content-Transfer-Encoding; b=mHtGxEzYlBaDJUDtpvyzCQfe ft3+GGyygSvZ3mYlm7Guu3z0usE84+XZmruhnq80A/2LwbsirbaxkQJuRz9cUCsGQet M+mH/q6penFM1m+NKRtZXvxfRWnEe6GtCx9H4I46EVJgWdjlXDI2cLYcgQoauXBHBGD ndvAjx8mDcSp0= Received: from anthesphoria.net (adsl-200-199.eunet.yu [213.198.200.199]) (authenticated bits=0) by anthesphoria.net (8.14.2/8.14.2) with ESMTP id mATFFD4c062068 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 29 Nov 2008 16:15:15 +0100 (CET) (envelope-from nikola.lecic@anthesphoria.net) Date: Sat, 29 Nov 2008 16:11:27 +0100 From: Nikola =?UTF-8?B?TGXEjWnEhw==?= To: eculp Message-ID: <20081129161127.722cb11b@anthesphoria.net> In-Reply-To: <20081129083755.844827c9hjnvt70g@econet.encontacto.net> References: <20081128073637.165767yq3leykloo@econet.encontacto.net> <20081128212421.147b0526@anthesphoria.net> <20081128182936.1052168355hhlae8@econet.encontacto.net> <20081129143907.36c3ac69@anthesphoria.net> <20081129083755.844827c9hjnvt70g@econet.encontacto.net> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] X-Operating-System: FreeBSD 7.0-RELEASE/i386 X-OpenPGP-Fingerprint: FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B X-OpenPGP-Preferred-Keyserver: x-hkp://pgpkeys.pca.dfn.de Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD-ports Subject: Re: Only in OpenOffice.org-2.4, I'm having es_ES deadkey problems. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 15:15:22 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160 On Sat, 29 Nov 2008 08:37:55 -0600 eculp wrote: =20 > Quoting Nikola Le=C4=8Di=C4=87 : >=20 > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: RIPEMD160 > > > > On Fri, 28 Nov 2008 18:29:36 -0600 > > eculp wrote: > > > >> I didn't even realize that there were multiple input methods from a > >> laptop keyboard. Smart Common Input Method, I doubt because it > >> doesn't seem to be very smart. > >> > >> Openoffice is the only program that has any problems. Skype, > >> pidgen, term windows, Konsole, even gimp work perfectly. > > > > So you use some Spanish keyboard with one of the SCIM IMEngines? If > > this is so, then you probably have something like this in your > > environment: > > > > XMODIFIERS=3D@im=3DSCIM > > GTK_IM_MODULE=3Dscim >=20 > I had neither in my environment so I added them and there was a =20 > change. The dead keys printed correctly but weren't dead. The same =20 > with xim. I am seeing this on different laptops and one multiple =20 > desktop keyboards. In my case, after typing the combination that contains a deadkey, the correct resulting character used to appear for a fraction of a second, disappearing afterwards. > They are all runing KDE and the desktops are running FreeBSD > 7.1-PRERELEASE and the laptop uptodate Current. All right, here are my SCIM settings. Put these lines in ~/.xinitrc: export GTK_IM_MODULE=3Dscim export QT_IM_MODULE=3Dscim export QT_IM_SWITCHER=3Dimsw-multi export XMODIFIERS=3D@im=3DSCIM scim -d before the command that starts your GUI. After that try experimenting with various *_IM_MODULE values. Please note that you need QT_IM_MODULE for KDE applications and that it's better to start SCIM manually than to use XIM_PROGRAM=3D"scim -d". My editors/openoffice.org-3-devel is compiled with 'LOCALIZED_LANG=3Dsr', 'WITHOUT_CUPS=3Dyes', 'WITH_SYSTEM_FREETYPE=3Dyes', 'WITH_SYSTEM_ICU=3Dyes', 'WITH_TTF_BYTECODE_ENABLED=3Dyes'. (However, since you use KDE/SKIM and maybe OpenOffice.org WITH_KDE, the things might be a bit more complicated...) Besides, if you share with me the actual keyboard file you use, it would be the best way to investigate the problem further. What I wrote were just generic ideas. Best wishes. - --=20 Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iJwEAQEDAAYFAkkxW6UACgkQ/MM/0rYIoZgI7wP+LVNwlMTtJ6us5fEJpAKS+tMy HCjTny3jltCdz3IrOTXoPbMeIvqMy40OE5Qghpb6K2i+jHWZOZSlzU4LpkICr703 ZpLXzWohcNyU44JnUBf5V1y8x8FjHdjTJoYW9A1UNW5N49GNJju8pjlHJ23D2daS +PjlCkjnsho6+9GfWsM=3D =3D1fxG -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 15:23:24 2008 Return-Path: Delivered-To: FreeBSD-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15C941065670 for ; Sat, 29 Nov 2008 15:23:24 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) Received: from anthesphoria.net (anthesphoria.net [200.46.204.219]) by mx1.freebsd.org (Postfix) with ESMTP id A19CB8FC1D for ; Sat, 29 Nov 2008 15:23:23 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) X-Bogosity: No, tests=bogofilter X-DKIM: Sendmail DKIM Filter v2.4.1 anthesphoria.net mATFNHSv000412 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=anthesphoria.net; s=phero; t=1227972201; bh=x3KzJr4I553FgDFEx59lhB67/4aiRIVn47ymtVdVr Zw=; l=933; h=X-Bogosity:Date:From:To:Cc:Subject:Message-ID: In-Reply-To:References:X-Mailer:X-Face:X-Operating-System: X-OpenPGP-Fingerprint:X-OpenPGP-Preferred-Keyserver:Mime-Version: Content-Type:Content-Transfer-Encoding; b=u5VDr873/Jn6DxY0usZXNxVa DOdImmgbSO/zceIFDbntYwEVPDWEzGTZntKvZXBo4/XSmgiTTMGiMRTUhAIl0JDgeMK g6Dk2OMykRsSBzzswZzcT8i+/oijjYo9Lc398LVSKLvTxC0y5Z/SOxKtVXHRgX+9aX2 TRk7zDGEGoCok= Received: from anthesphoria.net (adsl-200-199.eunet.yu [213.198.200.199]) (authenticated bits=0) by anthesphoria.net (8.14.2/8.14.2) with ESMTP id mATFNHSv000412 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 29 Nov 2008 16:23:19 +0100 (CET) (envelope-from nikola.lecic@anthesphoria.net) Date: Sat, 29 Nov 2008 16:19:22 +0100 From: Nikola =?UTF-8?B?TGXEjWnEhw==?= To: Nikola =?UTF-8?B?TGXEjWnEhw==?= , eculp Message-ID: <20081129161922.3c4b5398@anthesphoria.net> In-Reply-To: <20081129161127.722cb11b@anthesphoria.net> References: <20081128073637.165767yq3leykloo@econet.encontacto.net> <20081128212421.147b0526@anthesphoria.net> <20081128182936.1052168355hhlae8@econet.encontacto.net> <20081129143907.36c3ac69@anthesphoria.net> <20081129083755.844827c9hjnvt70g@econet.encontacto.net> <20081129161127.722cb11b@anthesphoria.net> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] X-Operating-System: FreeBSD 7.0-RELEASE/i386 X-OpenPGP-Fingerprint: FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B X-OpenPGP-Preferred-Keyserver: x-hkp://pgpkeys.pca.dfn.de Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD-ports Subject: Re: Only in OpenOffice.org-2.4, I'm having es_ES deadkey problems. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 15:23:24 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160 On Sat, 29 Nov 2008 16:11:27 +0100 Nikola Le=C4=8Di=C4=87 wrote: [...] > After that try experimenting with various *_IM_MODULE values. Sorry, I forgot to add that experimenting with XMODIFIERS=3D@im=3DXIM (instead of @im=3DSCIM) might also help in OpenOffice.org case. - --=20 Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iJwEAQEDAAYFAkkxXYQACgkQ/MM/0rYIoZgZKgQAtDs/7fmoyA/AjMYYHBE3isUr FH+AUGuAS6zqjLOYMRK7E7u8A4hy2ZNHg4xF7nec9F/S0LOdJhJ1SHj/JHIPBD8A j11KAa5NIEGUJKFnFWa93rAjIcy2AoJRm4PmftFgWgzaLvWAx1eyiy70Yn2cJyLC UxMgh2k5uMhnl9Q6agM=3D =3DtoeU -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 15:24:06 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49EE01065675 for ; Sat, 29 Nov 2008 15:24:06 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from ns2.bafirst.com (72-12-2-19.static.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 10AF78FC1F for ; Sat, 29 Nov 2008 15:24:05 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.190.3.105]) by ns2.bafirst.com with esmtp; Sat, 29 Nov 2008 09:24:04 -0600 id 000D5160.49315E94.00006D9C Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Sat, 29 Nov 2008 09:24:03 -0600 id 0004AC16.49315E93.00016E0C Received: from ed.local.net.mx (ed.local.net.mx [192.168.1.65]) by econet.encontacto.net (Horde Framework) with HTTP; Sat, 29 Nov 2008 09:24:03 -0600 Message-ID: <20081129092403.52021wzjpvizb63o@econet.encontacto.net> Date: Sat, 29 Nov 2008 09:24:03 -0600 From: eculp To: freebsd-ports@freebsd.org References: <20081128073637.165767yq3leykloo@econet.encontacto.net> <20081128212421.147b0526@anthesphoria.net> <20081128182936.1052168355hhlae8@econet.encontacto.net> <20081129143907.36c3ac69@anthesphoria.net> <20081129083755.844827c9hjnvt70g@econet.encontacto.net> In-Reply-To: <20081129083755.844827c9hjnvt70g@econet.encontacto.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (5.0-cvs) X-Remote-Browser: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.18) Gecko/20081114 Firefox/2.0.0.18 X-IMP-Server: 189.190.3.105 X-Originating-IP: 192.168.1.65 X-Originating-User: eculp@encontacto.net Subject: Re: Only in OpenOffice.org-2.4, I'm having es_ES deadkey problems. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 15:24:06 -0000 Quoting eculp : > Quoting Nikola Le=C4=8Di=C4=87 : > >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: RIPEMD160 >> >> On Fri, 28 Nov 2008 18:29:36 -0600 >> eculp wrote: >> >>> I didn't even realize that there were multiple input methods from a >>> laptop keyboard. Smart Common Input Method, I doubt because it >>> doesn't seem to be very smart. >>> >>> Openoffice is the only program that has any problems. Skype, pidgen, >>> term windows, Konsole, even gimp work perfectly. >> >> So you use some Spanish keyboard with one of the SCIM IMEngines? If >> this is so, then you probably have something like this in your >> environment: >> >> XMODIFIERS=3D@im=3DSCIM >> GTK_IM_MODULE=3Dscim > > I had neither in my environment so I added them and there was a =20 > change. The dead keys printed correctly but weren't dead. The same =20 > with xim. I am seeing this on different laptops and one multiple =20 > desktop keyboards. They are all runing KDE and the desktops are =20 > running FreeBSD 7.1-PRERELEASE and the laptop uptodate Current. > >> >> Please try GTK_IM_MODULE=3Dxim. Switching among keyboards will be a bit >> harder (SCIM keyboard icon and the actual keyboard will sometimes be >> desynchronised when you change focus among windows), but this used to >> solve OpenOffice.org deadkeys problem for me in the past. >> >> If this doesn't help, you can try textproc/scim-bridge with >> GTK_IM_MODULE=3Dscim-bridge. >> >> Although I must add that the problem mainly disappeared when I switched >> to openoffice.org-3-devel (currently running 3.1.20081024). > > I'm going to give it a try because we have been using openoffice =20 > since 1.x without problems and without having to learn about SCIM ;) Nikola, you gave me a least common denominator idea. The the =20 computers, keyboards, versions of OpenOffice are all different, but =20 they are all running KDE. On my laptop, I have gnome installed and I =20 keep it up to date although I don't use it. I switched to gnome and =20 the same OpenOffice works perfectly. Now I really don't know where to go. Gotta think about it. Thanks for all your help. I feel that I'm getting closer. ed > Thanks, > > ed >> >> HTH >> - -- >> Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B >> fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B >> > > > > > > > > > > > > > > > > > > > > > > ~> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v2.0.9 (FreeBSD) >> >> iJwEAQEDAAYFAkkxRgAACgkQ/MM/0rYIoZhNtAP9GNcqnMOA66cmzd0TZUeCggyd >> QjXx7sAZJG0J9+OiyMRS1gJZKZ5EhZZ2wdhtUzEHXr4/oX+/LbLPZaq7/azsGpD/ >> LF5Qg2IWjArV+28EXWxhUC0yCcQnNLwSa/Jmn7AuN6fFjxbC3VEwgAzw9qov8HXG >> 3PlXeIz6Z18jJ/9BR+4=3D >> =3DoR6t >> -----END PGP SIGNATURE----- >> > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 15:36:52 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B44C1065670; Sat, 29 Nov 2008 15:36:52 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (unknown [IPv6:2001:2f0:104:80a0:230:48ff:fe41:2455]) by mx1.freebsd.org (Postfix) with ESMTP id 02C6F8FC12; Sat, 29 Nov 2008 15:36:51 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.14.1/8.14.1/NinthNine) with SMTP id mATFanGU030702; Sun, 30 Nov 2008 00:36:50 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sun, 30 Nov 2008 00:36:41 +0900 From: Norikatsu Shigemura To: chad@wickdev.com Message-Id: <20081130003641.f723b0f0.nork@FreeBSD.org> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sun, 30 Nov 2008 00:36:50 +0900 (JST) Cc: ports@FreeBSD.org, nork@FreeBSD.org, nyan@FreeBSD.org Subject: [ports/www/awffull] update to 3.10.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 15:36:52 -0000 Hi chad. I tried to update awfful port to 3.10.1. So please review and may I commit this OK? Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/awffull/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 6 Jun 2008 14:06:47 -0000 1.2 +++ Makefile 29 Nov 2008 15:19:39 -0000 @@ -6,8 +6,8 @@ # PORTNAME= awffull -PORTVERSION= 3.8.2 -PORTREVISION= 1 +PORTVERSION= 3.10.1 +PORTREVISION= 0 CATEGORIES= www MASTER_SITES= http://www.stedee.id.au/files/ @@ -18,19 +18,35 @@ png.5:${PORTSDIR}/graphics/png \ pcre.0:${PORTSDIR}/devel/pcre +RUN_DEPENDS?= ${LOCALBASE}/lib/X11/fonts/bitstream-vera/Vera.ttf:${PORTSDIR}/x11-fonts/bitstream-vera +BUILD_DEPENS= ${RUN_DEPENDS} + +FONTDEFAULT?= ${LOCALBASE}/lib/X11/fonts/bitstream-vera/VeraBd.ttf +FONTLABEL?= ${LOCALBASE}/lib/X11/fonts/bitstream-vera/Vera.ttf + OPTIONS= GEOIP "Enable support for GeoIP (Country Detection)" Off +USE_ICONV= yes USE_GETTEXT= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-pnglib=${LOCALBASE}/lib +CONFIGURE_ARGS+=--with-font-default=${FONTDEFAULT} \ + --with-font-label=${FONTLABEL} +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" + +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib MAN1= awffull.1 +MAN5= awffull.conf.5 .include .if defined(WITH_GEOIP) LIB_DEPENDS+= GeoIP.5:${PORTSDIR}/net/GeoIP +CONFIGURE_ARGS+=--enable-geoip +.else +CONFIGURE_ARGS+=--disable-geoip .endif .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/www/awffull/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 8 Feb 2008 13:09:43 -0000 1.1 +++ distinfo 29 Nov 2008 07:15:22 -0000 @@ -1,3 +1,3 @@ -MD5 (awffull-3.8.2.tar.gz) = 24c972e1feefb223f0a8d4528dabe8c4 -SHA256 (awffull-3.8.2.tar.gz) = 53aa9f535ac44e5022f7312c73d0c54513a0ff1538d202f000a35ffdb4ef4195 -SIZE (awffull-3.8.2.tar.gz) = 984392 +MD5 (awffull-3.10.1.tar.gz) = 80acf755b354c49d78a5b9bb580196f2 +SHA256 (awffull-3.10.1.tar.gz) = 666a805c338fb7f778472c042af92865754217bb9fa4188f7fcbb4f59eb02c3a +SIZE (awffull-3.10.1.tar.gz) = 1048950 From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 15:49:46 2008 Return-Path: Delivered-To: FreeBSD-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C4231065673 for ; Sat, 29 Nov 2008 15:49:46 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) Received: from anthesphoria.net (anthesphoria.net [200.46.204.219]) by mx1.freebsd.org (Postfix) with ESMTP id 13FAE8FC14 for ; Sat, 29 Nov 2008 15:49:45 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) X-Bogosity: No, tests=bogofilter X-DKIM: Sendmail DKIM Filter v2.4.1 anthesphoria.net mATFnc8M032168 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=anthesphoria.net; s=phero; t=1227973783; bh=PHULXalSQcpnR5hDZDgJmWlG35Xr+71gMGw8ZmGGP sA=; l=1320; h=X-Bogosity:Date:From:To:Cc:Subject:Message-ID: In-Reply-To:References:X-Mailer:X-Face:X-Operating-System: X-OpenPGP-Fingerprint:X-OpenPGP-Preferred-Keyserver:Mime-Version: Content-Type:Content-Transfer-Encoding; b=Yo/SkwZ8q+G2ZbyllboRqllX W7mKgju9AZFLgcH4FFHkyWUJArN/6Upn+gLMc740FnQI4TA0w5D7/Dhb1kXTncBD549 80FY9/sHKezF1AGwefaVHEm/HfQByOYJ9um2cE/zqVKjWRF1oqy95j1DBe93fgY6a3l DOXfKqiAgqnE0= Received: from anthesphoria.net (adsl-200-199.eunet.yu [213.198.200.199]) (authenticated bits=0) by anthesphoria.net (8.14.2/8.14.2) with ESMTP id mATFnc8M032168 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 29 Nov 2008 16:49:42 +0100 (CET) (envelope-from nikola.lecic@anthesphoria.net) Date: Sat, 29 Nov 2008 16:45:54 +0100 From: Nikola =?UTF-8?B?TGXEjWnEhw==?= To: eculp Message-ID: <20081129164554.513875ee@anthesphoria.net> In-Reply-To: <20081129092403.52021wzjpvizb63o@econet.encontacto.net> References: <20081128073637.165767yq3leykloo@econet.encontacto.net> <20081128212421.147b0526@anthesphoria.net> <20081128182936.1052168355hhlae8@econet.encontacto.net> <20081129143907.36c3ac69@anthesphoria.net> <20081129083755.844827c9hjnvt70g@econet.encontacto.net> <20081129092403.52021wzjpvizb63o@econet.encontacto.net> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] X-Operating-System: FreeBSD 7.0-RELEASE/i386 X-OpenPGP-Fingerprint: FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B X-OpenPGP-Preferred-Keyserver: x-hkp://pgpkeys.pca.dfn.de Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD-ports@FreeBSD.org Subject: Re: Only in OpenOffice.org-2.4, I'm having es_ES deadkey problems. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 15:49:46 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160 On Sat, 29 Nov 2008 09:24:03 -0600 eculp wrote: > Nikola, you gave me a least common denominator idea. The the =20 > computers, keyboards, versions of OpenOffice are all different, but =20 > they are all running KDE. On my laptop, I have gnome installed and > I keep it up to date although I don't use it. I switched to gnome > and the same OpenOffice works perfectly. If this is so, then SKIM settings are what confuse OpenOffice.org. You can do two things: * please try to experiment with XMODIFIERS value in your ~/.xinitrc as I proposed in my previous post; * try not to use SKIM at all; SCIM's GTK2-based panel should work within KDE just fine. - --=20 Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iJwEAQEDAAYFAkkxY7cACgkQ/MM/0rYIoZii/AP/Q5ocIW+C8NALkxC9iOaqmEje xlGx3KZF2ZvZAa2/uSJoNyoSgbdHlHSPguBZ5UzejIWU8s1HqpN5Oer/ZwI350D/ ry9PyIT43FYNTq5xN369IhKt8YiQuiqu1tB0vjmK7UBnKAeYUL4K/cEH7MxXmUMf zlOoaUvOHq5oH7XDTHk=3D =3DOsiD -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 16:49:25 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26266106564A for ; Sat, 29 Nov 2008 16:49:25 +0000 (UTC) (envelope-from thomas@hardy.tmseck.homedns.org) Received: from smtp2.netcologne.de (smtp2.netcologne.de [194.8.194.112]) by mx1.freebsd.org (Postfix) with ESMTP id E28538FC16 for ; Sat, 29 Nov 2008 16:49:24 +0000 (UTC) (envelope-from thomas@hardy.tmseck.homedns.org) Received: from laurel.tmseck.homedns.org (xdsl-81-173-175-77.netcologne.de [81.173.175.77]) by smtp2.netcologne.de (Postfix) with SMTP id 3CE3249BF for ; Sat, 29 Nov 2008 17:24:03 +0100 (MET) Received: (qmail 748 invoked from network); 29 Nov 2008 16:24:03 -0000 Received: from unknown (HELO hardy.tmseck.homedns.org) (192.168.1.2) by 0 with SMTP; 29 Nov 2008 16:24:03 -0000 Received: from hardy.tmseck.homedns.org (localhost [127.0.0.1]) by hardy.tmseck.homedns.org (8.14.3/8.14.3) with ESMTP id mATGO2TL002040; Sat, 29 Nov 2008 17:24:02 +0100 (CET) (envelope-from thomas@hardy.tmseck.homedns.org) Received: (from thomas@localhost) by hardy.tmseck.homedns.org (8.14.3/8.14.3/Submit) id mATGO1Bo002039; Sat, 29 Nov 2008 17:24:01 +0100 (CET) (envelope-from thomas) Date: Sat, 29 Nov 2008 17:24:01 +0100 (CET) Message-Id: <200811291624.mATGO1Bo002039@hardy.tmseck.homedns.org> From: tmseck-lists@netcologne.de (Thomas-Martin Seck) To: "Albert Thiel" In-Reply-To: <66f15cb3806e497989fbe62ff15147af.athiel@yourdatacenter.com> X-Newsgroups: gmane.os.freebsd.devel.ports X-Attribution: tms Cc: freebsd-ports@freebsd.org Subject: Re: SQUID Follow X-Forwarded-For headers X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 16:49:25 -0000 * Albert Thiel : > There is a patch to Follow X-Forwarded-For headers to SQUID, but it is > not in the ports. The patch you refer to is probably the outdated patch for Squid <2.6, . You do not need that patch anymore, at least not for Squid-2. Squid-2.6/2.7 now support this feature natively; it is available as a port OPTION (off by default). Said option (WITH_/WITHOUT_SQUID_FOLLOW_XFF) is supported by the Squid-2 ports for about four years now. > How do I patch this in, or has someone done it already? For Squid-2, i.e. www/squid26 or www/squid, just re-run "make config" and select "SQUID_FOLLOW_XFF". For Squid-3.0 -- ask the Squid developers to backport this feature. Squid 3.1 will include it natively just like Squid-2.6/2.7. From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 18:35:21 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98AA9106564A for ; Sat, 29 Nov 2008 18:35:21 +0000 (UTC) (envelope-from athiel@yourdatacenter.com) Received: from datacentermail.newposeidon.com (mail.newposeidon.com [72.68.153.109]) by mx1.freebsd.org (Postfix) with ESMTP id 486EF8FC16 for ; Sat, 29 Nov 2008 18:35:20 +0000 (UTC) (envelope-from athiel@yourdatacenter.com) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=yourdatacenter.com; s=ATlantis; h=DomainKey-Signature:Received: From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type: Content-Transfer-Encoding:In-Reply-To:Importance; b=jeUN/5p480f6 HilcJkFqAxaw5UPnnGF7/9IT8se52mO1KNZVtoODo8v9i+FQsEveaoYFQaXJrhA2 7EUA9l9b6oDrI/P2ouzc+DZecJPHfJYy+AxEZcsh4nG9MkxHyrII DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=ATlantis; d=yourdatacenter.com; b=RktxnZyx4SyPo1bDY7NRFaMg7B47wc6mPGATMUA6+xVEwq1USuIQpi+P1hNlbDjsPDahnvu/z8PFRf7pThiqe5C160LwgGv1dMyy3okn17X8kbwnd/pSxoruLn8zhSzG; Received: from atlantis (static-72-68-153-106.nycmny.fios.verizon.net [72.68.153.106]) by datacentermail.newposeidon.com (Vircom SMTPRS 4.6.741.0) with ESMTP id ; Sat, 29 Nov 2008 13:30:47 -0500 X-Modus-ReverseDNS: OK X-Modus-BlackList: 72.68.153.106=OK;athiel@yourdatacenter.com=OK X-Modus-RBL: 72.68.153.106=OK X-Modus-Trusted: 72.68.153.106=NO X-Modus-Audit: FALSE;0;0;0 From: "Albert Thiel" To: "Thomas-Martin Seck" Date: Sat, 29 Nov 2008 13:35:29 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <200811291624.mATGO1Bo002039@hardy.tmseck.homedns.org> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 Cc: freebsd-ports@freebsd.org Subject: RE: SQUID Follow X-Forwarded-For headers X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 18:35:21 -0000 Thanks very much for your help. -Al Albert Thiel athiel@yourdatacenter.com Your Data Center & HostLongIsland.com Powerful FREE ISP Tools, Mail & Website Hosting http://www.YourDataCenter.com Hewlett, New York (877)302-8642 -----Original Message----- From: owner-freebsd-ports@freebsd.org [mailto:owner-freebsd-ports@freebsd.org]On Behalf Of Thomas-Martin Seck Sent: Saturday, November 29, 2008 11:24 AM To: Albert Thiel Cc: freebsd-ports@freebsd.org Subject: Re: SQUID Follow X-Forwarded-For headers * Albert Thiel : > There is a patch to Follow X-Forwarded-For headers to SQUID, but it is > not in the ports. The patch you refer to is probably the outdated patch for Squid <2.6, . You do not need that patch anymore, at least not for Squid-2. Squid-2.6/2.7 now support this feature natively; it is available as a port OPTION (off by default). Said option (WITH_/WITHOUT_SQUID_FOLLOW_XFF) is supported by the Squid-2 ports for about four years now. > How do I patch this in, or has someone done it already? For Squid-2, i.e. www/squid26 or www/squid, just re-run "make config" and select "SQUID_FOLLOW_XFF". For Squid-3.0 -- ask the Squid developers to backport this feature. Squid 3.1 will include it natively just like Squid-2.6/2.7. _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 20:25:17 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C72EF1065673 for ; Sat, 29 Nov 2008 20:25:17 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [194.62.233.102]) by mx1.freebsd.org (Postfix) with ESMTP id 7634D8FC0A for ; Sat, 29 Nov 2008 20:25:17 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from sp34.ipt.ru ([194.62.233.107] helo=bs1.sp34.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1L6WNP-0000iv-1A; Sat, 29 Nov 2008 23:25:15 +0300 Received: from bsam by bs1.sp34.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L6WNO-000B4c-O3; Sat, 29 Nov 2008 23:25:14 +0300 To: paul+usenet@w6yx.stanford.edu References: <49308A22.2070205@users.sf.net> From: Boris Samorodov Date: Sat, 29 Nov 2008 23:25:14 +0300 In-Reply-To: (G. Paul Ziemba's message of "Sat\, 29 Nov 2008 00\:47\:01 +0000 \(UTC\)") Message-ID: <01904501@bs1.sp34.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-ports@freebsd.org Subject: Re: FreeBSD Port: net/linux-nx-client X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 20:25:17 -0000 "G. Paul Ziemba" writes: > gamato@users.sf.net (martinko) writes: > >>Scot Hetzel wrote: >>> On Fri, Nov 28, 2008 at 4:43 PM, mato wrote: >>>> Hi, >>>> >>>> I've just installed net/linux-nx-client on FreeBSD 6.4 and after launching >>>> it I got: >>>> >>>> $ nxclient >>>> /usr/local/lib/linux-nx-client/bin/nxclient: error while loading shared >>>> libraries: libXext.so.6: cannot open shared object file: No such file or >>>> directory >>>> >>>> The library in need is located here: >>>> -rwxr-xr-x 1 root wheel 67306 Oct 8 18:07 /usr/local/lib/libXext.so.6 >>>> >>> That's the wrong library, you need the linux libXext.so.6 which should >>> be located under /usr/compat/linux. >>> >>> Scot > >>Which it is not. A missing dependency ? > > On my system, for some reason these libraries get installed (by the > linux* ports) in /usr/compat/linux/usr/X11R6/lib rather than in Yes, it is supposed to. > /usr/compat/linux/usr/local/lib where many applications expect them. That is wrong. If that's true for your system than something is wrong with your system/configuration. > I have been manually creating symlinks in /usr/compat/linux/usr/local/lib, > e.g., > > cd /usr/compat/linux/usr/local/lib > ln -s ../../X11R6/lib/libXext.so.6 > > I'm not sure why I need to make these links or if there is a better > approach, but it works for me. By default linuxulator looks for files first at /usr/compat/linux directories and only if it fails then /usr/local is used. I.e. if you have /usr/compat/linux/usr/X11R6/lib/libXext.so.6 than it should be found by linuxulator and no symlinking is needed. WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-ports@FreeBSD.ORG Sat Nov 29 21:57:02 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF8851065672 for ; Sat, 29 Nov 2008 21:57:02 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from pointyhat.freebsd.org (pointyhat.freebsd.org [IPv6:2001:4f8:fff6::2b]) by mx1.freebsd.org (Postfix) with ESMTP id B7F2B8FC1C for ; Sat, 29 Nov 2008 21:57:02 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from pointyhat.freebsd.org (localhost [127.0.0.1]) by pointyhat.freebsd.org (8.14.3/8.14.3) with ESMTP id mATLuvGw031847 for ; Sat, 29 Nov 2008 21:56:57 GMT (envelope-from erwin@pointyhat.freebsd.org) Received: (from erwin@localhost) by pointyhat.freebsd.org (8.14.3/8.14.3/Submit) id mATLuvmA031846 for ports@FreeBSD.org; Sat, 29 Nov 2008 21:56:57 GMT (envelope-from erwin) Date: Sat, 29 Nov 2008 21:56:57 GMT From: Erwin Lansing Message-Id: <200811292156.mATLuvmA031846@pointyhat.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 6.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 21:57:02 -0000 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: burn-0.4.1_3: no entry for /usr/ports/cddb-bundle make_index: burn-0.4.1_3: no entry for /usr/ports/gnustep-cdplayer make_index: burn-0.4.1_3: no entry for /usr/ports/cddb-bundle make_index: burn-0.4.1_3: no entry for /usr/ports/gnustep-cdplayer make_index: gnustep-app-1.14.3_2: no entry for /usr/ports/cddb-bundle make_index: gnustep-app-1.14.3_2: no entry for /usr/ports/cddb-bundle make_index: gnustep-cdplayer-0.5_1: no entry for /usr/ports/cddb-bundle make_index: gnustep-cdplayer-0.5_1: no entry for /usr/ports/cddb-bundle Committers on the hook: dinoex linimon lioux miwi sem Most recent CVS update was: U Mk/bsd.gnustep.mk U Mk/bsd.perl.mk U archivers/lzma/Makefile U archivers/lzma/distinfo U audio/mpdas/Makefile U audio/mpdas/distinfo U databases/Makefile U databases/p5-DBIx-Class-IntrospectableM2M/Makefile U databases/p5-DBIx-Class-IntrospectableM2M/distinfo U databases/p5-DBIx-Class-IntrospectableM2M/pkg-descr U databases/p5-DBIx-Class-IntrospectableM2M/pkg-plist U databases/phpmyadmin/Makefile U databases/phpmyadmin/distinfo U deskutils/egroupware/Makefile U deskutils/egroupware/distinfo U deskutils/egroupware/files/pkg-message.in U deskutils/plasma-applet-quicklauncher/Makefile U deskutils/plasma-applet-quicklauncher/distinfo U devel/Makefile U devel/hs-Stream/Makefile U devel/hs-Stream/distinfo U devel/hs-Stream/pkg-descr U devel/hs-Stream/pkg-plist U devel/libburn/Makefile U devel/libburn/pkg-message U devel/p5-POE-Component-Daemon/Makefile U devel/p5-POE-Component-Daemon/distinfo U devel/ptmalloc/Makefile U finance/gfp/Makefile U games/freeciv/Makefile U games/freeciv/distinfo U graphics/Makefile U graphics/ristretto/Makefile U graphics/ristretto/distinfo U graphics/ristretto/pkg-plist U graphics/rubygem-objectdetect/Makefile U graphics/rubygem-objectdetect/distinfo U graphics/rubygem-objectdetect/pkg-descr U irc/Makefile U irc/irssi-devel/Makefile U irc/irssi-devel/distinfo U irc/libircclient/Makefile U irc/libircclient/distinfo U irc/libircclient/pkg-descr U irc/libircclient/pkg-plist U mail/Makefile U mail/addresses/Makefile U mail/addresses/files/patch-etoile U mail/extmail/Makefile U mail/extmail/distinfo U mail/extmail/pkg-plist U mail/extman/Makefile U mail/extman/distinfo U mail/extman/pkg-plist U mail/py-apolicy/Makefile U mail/py-apolicy/distinfo U mail/py-apolicy/pkg-descr U mail/py-apolicy/pkg-plist U mail/py-apolicy/files/apolicyd.in U mail/py-apolicy/files/patch-setup.py U mail/py-apolicy/files/patch-z U mail/py-apolicy/files/pkg-message.in U mail/py-ppolicy/Makefile U mail/py-ppolicy/distinfo U mail/py-ppolicy/pkg-descr U mail/py-ppolicy/pkg-plist U mail/py-ppolicy/files/patch-ppolicy.tap U mail/py-ppolicy/files/pkg-message.in U mail/py-ppolicy/files/ppolicyd.sh.in U net/Makefile U net/pecl-oauth/Makefile U net/pecl-oauth/distinfo U net/pecl-oauth/pkg-descr U net-im/Makefile U net-im/etoile-stepchat/Makefile U net-im/etoile-stepchat/distinfo U net-im/etoile-stepchat/pkg-descr U net-im/etoile-stepchat/pkg-plist U net-im/etoile-xmppkit/Makefile U net-im/etoile-xmppkit/distinfo U net-im/etoile-xmppkit/pkg-descr U net-im/etoile-xmppkit/pkg-plist U net-im/gajim-devel/Makefile U net-im/gajim-devel/distinfo U net-im/gajim-devel/pkg-plist U net-im/gajim-devel/files/patch-data-Makefile.in U net-im/pidgin-msn-pecan/Makefile U net-im/pidgin-pidgimpd/Makefile U net-p2p/hrktorrent/Makefile U security/fakeroot/Makefile U security/fakeroot/distinfo U security/makepasswd/Makefile U security/makepasswd/distinfo U security/tor-devel/Makefile U security/tor-devel/distinfo U security/tor-devel/files/tor.in U sysutils/xfburn/Makefile U sysutils/xfburn/files/patch-xfburn-xfburn-data-composition.c U textproc/xfce4-dict-plugin/Makefile U textproc/xfce4-dict-plugin/distinfo U www/firefox3-i18n/Makefile U www/firefox3-i18n/distinfo U www/fluxcms/Makefile U www/fluxcms/distinfo U www/fluxcms/pkg-plist U www/p5-AnyEvent-HTTP/Makefile U www/p5-AnyEvent-HTTP/distinfo U www/ziproxy/Makefile U www/ziproxy/distinfo U www/ziproxy/pkg-plist U www/ziproxy/files/patch-ziproxy.conf U x11/Makefile U x11/xfce4-verve-plugin/Makefile U x11/xfce4-verve-plugin/distinfo U x11/xfce4-verve-plugin/pkg-plist U x11/xlockmore/Makefile U x11/xlockmore/distinfo U x11/xmobar/Makefile U x11/xmobar/distinfo U x11/xmobar/pkg-descr U x11/xmobar/pkg-plist U x11-wm/echinus/Makefile