From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 00:49: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 209AB1065676 for ; Sun, 14 Sep 2008 00:49:35 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [217.170.79.85]) by mx1.freebsd.org (Postfix) with ESMTP id 9F6568FC1A for ; Sun, 14 Sep 2008 00:49:29 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1Kefnr-0000ue-Er; Sun, 14 Sep 2008 04:49:27 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 712DD1178C; Sun, 14 Sep 2008 04:49:41 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id 8E64B17031; Sun, 14 Sep 2008 04:49:20 +0400 (MSD) Date: Sun, 14 Sep 2008 04:49:20 +0400 From: Dmitry Marakasov To: Chris H Message-ID: <20080914004920.GD37740@hades.panopticon> References: <20080912105907.hgkvg352gco0k8ow@webmail.1command.com> <20080912211222.GA37740@hades.panopticon> <20080912214349.xrprskkcg00gw080@webmail.1command.com> <20080913125407.GC37740@hades.panopticon> <20080913115506.y6dyjx8k8wcggk0g@webmail.1command.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20080913115506.y6dyjx8k8wcggk0g@webmail.1command.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: Re: a $PREFIX question... 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, 14 Sep 2008 00:49:35 -0000 * Chris H (chris#@1command.com) wrote: JFYI, I'm not php user, but I have more than enough experience of ports hacking, so I may miss something php-specific, though I have some thoughts. >> For jail there's DESTDIR. > Ahh. That's good to know. I had thought to look to the BIND port as a > model for a jail. But, since I'm really just trying to get both PHP4 and > PHP5 to install in such a manner as to prevent symbol collisions, I > thought that simply keeping the configure/install the same as it is > now, but substituting php, for php5 would be the most efficient, and > tidy approach. It appears that all I'm dealing with is: > > /usr/local/lib/php > /usr/local/include/php > /usr/local/etc/php && php.conf > /usr/local/bin/php || pgp-cgi Ah, sorry. Actually I wasn't aware that php installs stuff into */php directories. In this case maybe changing /php to /php5 may really be more convenient. > Which - if I have a reasonable understanding of all this, translates to: > $PREFIX || $LOCALBASE/php no? No. Now I finally understand your question :) LOCALBASE (/usr/local by default) is a place where all software installed through ports will go. It is also where ports search for libraries, includes etc. installed by other ports. PREFIX (LOCALBASE by default, thus /usr/local as well) is where the currently installed port goes. No one should really redefine LOCALBASE, but you may change prefix to install a specific port to some nondefault location. Those have nothing to do with /php dirs. It seems to be php-specific feature to install it's files under /php subdirs everywhere. So, by default (prefix=/usr/local) e.g. php cli binary will be installed as /usr/local/bin/php/php /usr/local/etc/php.conf /usr/local/include/php/Zend/zend.h ... and if you change PREFIX to /usr/local/php5 that'll be /usr/local/php5/bin/php/php /usr/local/php5/etc/php.conf /usr/local/php5/include/php/Zend/zend.h ... If you change PREFIX to /newphp, that'll be /newphp/bin/php/php /newphp/etc/php.conf /newphp/include/php/Zend/zend.h ... As you can see, changing PREFIX allows php4&5 to coexist, but some extra directory hierarchy is introduced. > So I figured that ultimately both php versions & the destination system ... > is /greatly/ appreciated here :)) Maybe the ultimate solution would be > to simply go the > $PREFIX/php && $PREFIX/php5 route. Thereby dropping (isolating) both > versions into their own trees. But if I understand any of this correctly, > I'll need to modify the system' environment to include these directories: > ($PREFIX/php/bin $PREFIX/php/lib $PREFIX/php/include && > $PREFIX/php5/bin $PREFIX/php5/lib $PREFIX/php5/include) > Does this make any sense? Just a quick flashback to possible solutions: Solution 1: change PREFIX Solution 2: hack port to use */php5 dirs instead of */php Other than changing all paths in the port's Makefile and pkg-plist, you'll need to hack configure to use different directories. What you need is to look into php's configure.in, all paths you'll need should be there. Since the port has USE_AUTOTOOLS=autoconf:262, configure will be generated from configure.in when you build the port automatically. There may be many caveats and other places to change paths, or there may not be. Yes, you'll need to `modify the system environment' to include paths to both php versions. This is where the problems start. Both php4 and php5 install equally named files, so if you need an app to use php5, you'll have to change PATH to include /usr/local/bin/php5/ or NEW_PHP_PREFIX/bin/php (depending on which way you chose); if an app needs php's includes, you'll also need to add /usr/loca/include/php5/ or NEW_PHP_PREFIX/include/php; same for lib/ and likely etc/. I believe that'd be hell. Even more problems if you intend to install something from ports which depend on php. Thus, if you really need both versions, I'd just install the version you need for more apps as default, and another version with changed PREFIX, period. No port hacking, just change path to php in some marginal apps. -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://www.amdmi3.ru From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 07:19:09 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 46A9F1065687 for ; Sun, 14 Sep 2008 07:19:09 +0000 (UTC) (envelope-from jahnke@sonatabio.com) Received: from isearchbio.com (isearchbio.com [206.130.105.146]) by mx1.freebsd.org (Postfix) with ESMTP id 1C7B58FC13 for ; Sun, 14 Sep 2008 07:19:08 +0000 (UTC) (envelope-from jahnke@sonatabio.com) Received: from [192.168.0.100] (76-14-123-114.rk.wavecable.com [76.14.123.114]) (authenticated bits=0) by isearchbio.com (8.13.1/8.13.1) with ESMTP id m8E7J5n8029722; Sun, 14 Sep 2008 01:19:05 -0600 From: Frank Jahnke To: Tobias Roth In-Reply-To: <48CCB4F9.90309@fsck.ch> References: <1221264777.5721.596.camel@pinot> <20080913012337.GP15376@server.vk2pj.dyndns.org> <20080913235120.a456a9a2.nork@FreeBSD.org> <1221317817.1345.5.camel@pinot> <48CCB4F9.90309@fsck.ch> Content-Type: text/plain Organization: Sonata Biosciences, Inc. Date: Sun, 14 Sep 2008 00:19:03 -0700 Message-Id: <1221376743.1345.13.camel@pinot> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: linuxpluginwrapper-20051113_8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jahnke@sonatabio.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Sep 2008 07:19:09 -0000 On Sun, 2008-09-14 at 08:53 +0200, Tobias Roth wrote: > On 09/13/08 16:56, Frank Jahnke wrote: > > On Sat, 2008-09-13 at 23:51 +0900, Norikatsu Shigemura wrote: > >> On Sat, 13 Sep 2008 11:23:37 +1000 > >> Peter Jeremy wrote: > > > >> Recentry, wine is good solution for using Flash. > > > > I use this too. > > So you use wine + windows_firefox + windows_flash on FreeBSD with no > problems? Right -- it works pretty well. Not perfectly or as well as it does on Windows, but pretty well. It does help a lot. If you are still in 6.x, don't forget the OS patch. Frank From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 07:26: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 EE6561065676 for ; Sun, 14 Sep 2008 07:26:32 +0000 (UTC) (envelope-from freebsd.lists@fsck.ch) Received: from secure.socket.ch (secure.socket.ch [212.103.70.36]) by mx1.freebsd.org (Postfix) with ESMTP id A8C268FC0C for ; Sun, 14 Sep 2008 07:26:32 +0000 (UTC) (envelope-from freebsd.lists@fsck.ch) Received: from 80-219-162-83.dclient.hispeed.ch ([80.219.162.83] helo=default.fsck.ch) by secure.socket.ch with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1KelUp-000IWx-KK; Sun, 14 Sep 2008 08:54:16 +0200 Message-ID: <48CCB4F9.90309@fsck.ch> Date: Sun, 14 Sep 2008 08:53:45 +0200 From: Tobias Roth User-Agent: Thunderbird 2.0.0.16 (X11/20080730) MIME-Version: 1.0 To: jahnke@sonatabio.com References: <1221264777.5721.596.camel@pinot> <20080913012337.GP15376@server.vk2pj.dyndns.org> <20080913235120.a456a9a2.nork@FreeBSD.org> <1221317817.1345.5.camel@pinot> In-Reply-To: <1221317817.1345.5.camel@pinot> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -3.5 (---) X-Spam-Report: Spam detection software, running on the system "secure.socket.ch", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see The administrator of that system for details. Content preview: On 09/13/08 16:56, Frank Jahnke wrote: > On Sat, 2008-09-13 at 23:51 +0900, Norikatsu Shigemura wrote: >> On Sat, 13 Sep 2008 11:23:37 +1000 >> Peter Jeremy wrote: > >> Recentry, wine is good solution for using Flash. > > I use this too. [...] Content analysis details: (-3.5 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.8 ALL_TRUSTED Passed through trusted hosts only via SMTP 1.9 TVD_RCVD_IP TVD_RCVD_IP -2.6 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] -1.0 AWL AWL: From: address is in the auto white-list X-SA-Exim-Connect-IP: 80.219.162.83 X-SA-Exim-Mail-From: freebsd.lists@fsck.ch X-SA-Exim-Scanned: No (on secure.socket.ch); SAEximRunCond expanded to false Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: linuxpluginwrapper-20051113_8 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, 14 Sep 2008 07:26:33 -0000 On 09/13/08 16:56, Frank Jahnke wrote: > On Sat, 2008-09-13 at 23:51 +0900, Norikatsu Shigemura wrote: >> On Sat, 13 Sep 2008 11:23:37 +1000 >> Peter Jeremy wrote: > >> Recentry, wine is good solution for using Flash. > > I use this too. So you use wine + windows_firefox + windows_flash on FreeBSD with no problems? That'd be just the solution I'm looking for, as I neither need nor want permanent flash support, I need it only for the very occasional site that I can't look at without flash. Thanks for clarification, Tobias -- Tobias Roth || http://fsck.ch || PGP: 0xCE599B4D | To make honey, young bee need young flower. Not old prune. | - Mister Kesuke Miyagi From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 10:00:12 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 B71F71065686 for ; Sun, 14 Sep 2008 10:00:12 +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 975558FC12 for ; Sun, 14 Sep 2008 10:00:12 +0000 (UTC) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8EA0Crx059636 for ; Sun, 14 Sep 2008 10:00:12 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8EA0C46059635 for ports@freebsd.org; Sun, 14 Sep 2008 10:00:12 GMT (envelope-from fenner) Date: Sun, 14 Sep 2008 10:00:12 GMT From: Bill Fenner Message-Id: <200809141000.m8EA0C46059635@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: Sun, 14 Sep 2008 10:00:12 -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 Sun Sep 14 15:12: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 4A9681065671 for ; Sun, 14 Sep 2008 15:12:10 +0000 (UTC) (envelope-from dokalanyi@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by mx1.freebsd.org (Postfix) with ESMTP id F255D8FC29 for ; Sun, 14 Sep 2008 15:12:09 +0000 (UTC) (envelope-from dokalanyi@gmail.com) Received: by py-out-1112.google.com with SMTP id p76so1213228pyb.10 for ; Sun, 14 Sep 2008 08:12:09 -0700 (PDT) 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=8R9H/5Gt3nmR2Q/1xS0J2/UDTr8AOA4y+vAO5psMadg=; b=tw5VB6eeRZBiMGNqld8PhaasLozUEJWMbPpbMBHbTZF+1qeNnVgczY08zRNjIvSqpe 9EJAtjmt//99dAHieYIObSwa9y9ZFyCFcbKNRiDL6GH9q6P6aJ4+VG+DfPlZtsabf8bI r80WchDLdJow8jCM7Wk6GPzsFThZ8i+GkqOLI= 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=pgviQuss1W6oNHLai5xXhq8MdwlfwYB8iUyMuGeRgjNeTvMwtHiblnl3o4Wr4LjSsy +FPSH+mMBYzFraLd+F3e/7x4qzMPRG/vgwCi0s2Et+0hxHL6zOrS3n4Zr0vT1Hto2dvl 4KIZ1GSY/7CcHdCpq1s+pjEpSuTuLYFBK0J/I= Received: by 10.142.226.3 with SMTP id y3mr2294284wfg.96.1221405128363; Sun, 14 Sep 2008 08:12:08 -0700 (PDT) Received: by 10.142.217.2 with HTTP; Sun, 14 Sep 2008 08:12:08 -0700 (PDT) Message-ID: <28f643d90809140812w4f05fafaxcdb9f88efbe8cd94@mail.gmail.com> Date: Sun, 14 Sep 2008 18:12:08 +0300 From: "Okalany Daniel" To: "Jeremy Chadwick" In-Reply-To: <20080912140325.GA57733@icarus.home.lan> MIME-Version: 1.0 References: <28f643d90809120600rd8998bcya2999f32cefe7a19@mail.gmail.com> <20080912140325.GA57733@icarus.home.lan> 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: Balance - 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: Sun, 14 Sep 2008 15:12:10 -0000 On Fri, Sep 12, 2008 at 5:03 PM, Jeremy Chadwick wrote: > On Fri, Sep 12, 2008 at 04:00:06PM +0300, Okalany Daniel wrote: > > Im on freebsd current with ports current. > > FreeBSD down.one2net.co.ug 8.0-CURRENT FreeBSD 8.0-CURRENT #7: Wed Sep > 10 > > 19:31:10 EAT 2008 root@down.one2net.co.ug: > /usr/obj/usr/src/sys/IPFWKERNEL > > i386 > > > > [root@down /usr/home/oka]# /usr/local/etc/rc.d/balance start > > setsockopt(IPV6_V6ONLY=0): Invalid argument > > > > Is this a problem with balancer or my options? > > It appears you've removed IPv6 support from your kernel, which is fine. > > The bug in with the IPv6 detection method used by balancer. The logic > in balancer is "if IPV6_V6ONLY is defined, call setsockopt() with > IPV6_V6ONLY". The definition is pulled in from one of many #include > files in /usr/include. > > balancer assumes that if IPV6_V6ONLY is defined, that it should make > the setsockopt() call. This won't work for systems with IPv6 removed > from the kernel -- because the system #include files still define > IPV6_V6ONLY as an available bit. > > Can you apply the following hackfix against ports/net/balancer/Makefile > and tell me if it works for you? Please note you'll need to build the > port either with "make WITHOUT_IPV6=true" or place WITHOUT_IPV6=true > in /etc/make.conf. > > --- Makefile.orig 2008-07-09 00:15:46.000000000 -0700 > +++ Makefile 2008-09-12 07:00:44.000000000 -0700 > @@ -20,6 +20,10 @@ > > MAN1= balance.1 > > +.if defined(WITHOUT_IPV6) > +CFLAGS+= -UIPV6_V6ONLY > +.endif > + > pre-build: > @${REINPLACE_CMD} -e 's|^CFLAGS|CFLAGS?|' \ > -e 's|^CC|CC?|' ${WRKSRC}/Makefile > > -- > | Jeremy Chadwick jdc at parodius.com | > | Parodius Networking http://www.parodius.com/ | > | UNIX Systems Administrator Mountain View, CA, USA | > | Making life hard for others since 1977. PGP: 4BD6C0CB | > > Thanks for the quick response, but that hasnt solved the issue, it stays the same. -- OKALANY DANIEL P.O BOX 26150 KAMPALA. http://okaman.one2net.co.ug -- Youth is a wonderful thing. What a crime to waste it on children. The Word was spoken before it was written, and it was written so it could be spoken! Words can move mountais because mountains are created by words! From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 15:26: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 9E40D1065672 for ; Sun, 14 Sep 2008 15:26:06 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from QMTA09.westchester.pa.mail.comcast.net (qmta09.westchester.pa.mail.comcast.net [76.96.62.96]) by mx1.freebsd.org (Postfix) with ESMTP id 1CB458FC17 for ; Sun, 14 Sep 2008 15:26:05 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from OMTA02.westchester.pa.mail.comcast.net ([76.96.62.19]) by QMTA09.westchester.pa.mail.comcast.net with comcast id EeA51a00R0QuhwU59fS5iM; Sun, 14 Sep 2008 15:26:05 +0000 Received: from koitsu.dyndns.org ([67.180.253.227]) by OMTA02.westchester.pa.mail.comcast.net with comcast id EfRm1a00U4v8bD73NfRnRn; Sun, 14 Sep 2008 15:25:47 +0000 X-Authority-Analysis: v=1.0 c=1 a=QycZ5dHgAAAA:8 a=iecekGbGE03ShsB6XFUA:9 a=8EQ_5h5_ncZGzHhVn2UA:7 a=Ao9X3Xud5zksOx4inrQpqDqZB90A:4 a=EoioJ0NPDVgA:10 a=SV7veod9ZcQA:10 a=LY0hPdMaydYA:10 Received: by icarus.home.lan (Postfix, from userid 1000) id E4F9217B81A; Sun, 14 Sep 2008 08:26:03 -0700 (PDT) Date: Sun, 14 Sep 2008 08:26:03 -0700 From: Jeremy Chadwick To: Okalany Daniel Message-ID: <20080914152603.GA13981@icarus.home.lan> References: <28f643d90809120600rd8998bcya2999f32cefe7a19@mail.gmail.com> <20080912140325.GA57733@icarus.home.lan> <28f643d90809140812w4f05fafaxcdb9f88efbe8cd94@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <28f643d90809140812w4f05fafaxcdb9f88efbe8cd94@mail.gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: Re: Balance - 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: Sun, 14 Sep 2008 15:26:06 -0000 On Sun, Sep 14, 2008 at 06:12:08PM +0300, Okalany Daniel wrote: > On Fri, Sep 12, 2008 at 5:03 PM, Jeremy Chadwick wrote: > > > On Fri, Sep 12, 2008 at 04:00:06PM +0300, Okalany Daniel wrote: > > > Im on freebsd current with ports current. > > > FreeBSD down.one2net.co.ug 8.0-CURRENT FreeBSD 8.0-CURRENT #7: Wed Sep > > 10 > > > 19:31:10 EAT 2008 root@down.one2net.co.ug: > > /usr/obj/usr/src/sys/IPFWKERNEL > > > i386 > > > > > > [root@down /usr/home/oka]# /usr/local/etc/rc.d/balance start > > > setsockopt(IPV6_V6ONLY=0): Invalid argument > > > > > > Is this a problem with balancer or my options? > > > > It appears you've removed IPv6 support from your kernel, which is fine. > > > > The bug in with the IPv6 detection method used by balancer. The logic > > in balancer is "if IPV6_V6ONLY is defined, call setsockopt() with > > IPV6_V6ONLY". The definition is pulled in from one of many #include > > files in /usr/include. > > > > balancer assumes that if IPV6_V6ONLY is defined, that it should make > > the setsockopt() call. This won't work for systems with IPv6 removed > > from the kernel -- because the system #include files still define > > IPV6_V6ONLY as an available bit. > > > > Can you apply the following hackfix against ports/net/balancer/Makefile > > and tell me if it works for you? Please note you'll need to build the > > port either with "make WITHOUT_IPV6=true" or place WITHOUT_IPV6=true > > in /etc/make.conf. > > > > --- Makefile.orig 2008-07-09 00:15:46.000000000 -0700 > > +++ Makefile 2008-09-12 07:00:44.000000000 -0700 > > @@ -20,6 +20,10 @@ > > > > MAN1= balance.1 > > > > +.if defined(WITHOUT_IPV6) > > +CFLAGS+= -UIPV6_V6ONLY > > +.endif > > + > > pre-build: > > @${REINPLACE_CMD} -e 's|^CFLAGS|CFLAGS?|' \ > > -e 's|^CC|CC?|' ${WRKSRC}/Makefile > > > > Thanks for the quick response, but that hasnt solved the issue, it stays the > same. Interesting, since that resolved said problem on my IPv4-only machine, but that's a RELENG_7 box. I wonder how the -U is getting overridden. -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 15:46:19 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 8FDCF106564A for ; Sun, 14 Sep 2008 15:46:19 +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 13A228FC1A for ; Sun, 14 Sep 2008 15:46:18 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Ketnh-0004U5-S5 for freebsd-ports@freebsd.org; Sun, 14 Sep 2008 15:46:13 +0000 Received: from 85.48.193.152 ([85.48.193.152]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 14 Sep 2008 15:46:13 +0000 Received: from matiassurdi by 85.48.193.152 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 14 Sep 2008 15:46:13 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Matias Surdi Date: Sun, 14 Sep 2008 17:45:59 +0200 Lines: 47 Message-ID: References: <20080912095828.GA52822@icarus.home.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 85.48.193.152 User-Agent: Thunderbird 2.0.0.16 (X11/20080724) In-Reply-To: <20080912095828.GA52822@icarus.home.lan> Sender: news Subject: Re: mod_python core dump 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, 14 Sep 2008 15:46:19 -0000 Jeremy Chadwick escribió: > On Fri, Sep 12, 2008 at 11:39:35AM +0200, Matias Surdi wrote: >> I've installed mod_python from the ports on a recently installed FreeBSD >> 7 box and, despite all the build process goes well, when I try to start >> apache I get a core dump. If I disable the "Loadmodule" directive for >> mod_python in httpd.conf, then apache starts perfectly. >> >> The versions I'm using are: >> >> # pkg_version -v >> apache-2.0.63_2 = up-to-date with port >> autoconf-2.62 = up-to-date with port >> autoconf-wrapper-20071109 = up-to-date with port >> bash-3.2.39_1 = up-to-date with port >> dovecot-1.1.3 = up-to-date with port >> expat-2.0.1 = up-to-date with port >> gettext-0.17_1 = up-to-date with port >> gmake-3.81_3 = up-to-date with port >> help2man-1.36.4_2 = up-to-date with port >> libiconv-1.11_1 = up-to-date with port >> libtool-1.5.26 = up-to-date with port >> linux_base-fc-4_10 < needs updating (port has 4_13) >> m4-1.4.11,1 = up-to-date with port >> mod_python-3.3.1_2 = up-to-date with port >> p5-gettext-1.05_2 = up-to-date with port >> pcre-7.7_1 = up-to-date with port >> perl-5.8.8_1 = up-to-date with port >> pkg-config-0.23_1 = up-to-date with port >> postfix-2.5.4,1 = up-to-date with port >> py25-sqlite3-2.5.2_1 = up-to-date with port >> python25-2.5.2_3 = up-to-date with port >> sqlite3-3.5.6 = up-to-date with port >> >> Any help will be appreciated, thanks. > > You'll need to provide a gdb backtrace to determine the cause of the > core, and provide any error messages shown in Apache's error log > (default: /var/log/httpd-error.log). The above information doesn't > provide enough detail. > > Please also be aware that, quite often, debugging Apache and Apache > modules is a tedious and difficult task. It's rarely a simple thing. > I've noticed that compiling python without threads support fixes the problem, but that's not a solution for me as I need threads. Any other ideas? From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 17:43: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 2606C106566B for ; Sun, 14 Sep 2008 17:43:54 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from QMTA07.westchester.pa.mail.comcast.net (qmta07.westchester.pa.mail.comcast.net [76.96.62.64]) by mx1.freebsd.org (Postfix) with ESMTP id 7D9028FC0C for ; Sun, 14 Sep 2008 17:43:53 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from OMTA01.westchester.pa.mail.comcast.net ([76.96.62.11]) by QMTA07.westchester.pa.mail.comcast.net with comcast id EbeP1a00D0EZKEL57hjsCi; Sun, 14 Sep 2008 17:43:52 +0000 Received: from koitsu.dyndns.org ([67.180.253.227]) by OMTA01.westchester.pa.mail.comcast.net with comcast id Ehjr1a00C4v8bD73Mhjstf; Sun, 14 Sep 2008 17:43:52 +0000 X-Authority-Analysis: v=1.0 c=1 a=QycZ5dHgAAAA:8 a=plDZx60bDJAoXRFZPN0A:9 a=e511c0zQw2Rz_fZ_EOU2SbCIxGAA:4 a=EoioJ0NPDVgA:10 a=LY0hPdMaydYA:10 Received: by icarus.home.lan (Postfix, from userid 1000) id 5F89917B81A; Sun, 14 Sep 2008 10:43:51 -0700 (PDT) Date: Sun, 14 Sep 2008 10:43:51 -0700 From: Jeremy Chadwick To: Matias Surdi Message-ID: <20080914174351.GA16390@icarus.home.lan> References: <20080912095828.GA52822@icarus.home.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: Re: mod_python core dump 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, 14 Sep 2008 17:43:54 -0000 On Sun, Sep 14, 2008 at 05:45:59PM +0200, Matias Surdi wrote: > Jeremy Chadwick escribió: >> On Fri, Sep 12, 2008 at 11:39:35AM +0200, Matias Surdi wrote: >>> I've installed mod_python from the ports on a recently installed >>> FreeBSD 7 box and, despite all the build process goes well, when I >>> try to start apache I get a core dump. If I disable the "Loadmodule" >>> directive for mod_python in httpd.conf, then apache starts >>> perfectly. >>> >>> The versions I'm using are: >>> >>> # pkg_version -v >>> apache-2.0.63_2 = up-to-date with port >>> autoconf-2.62 = up-to-date with port >>> autoconf-wrapper-20071109 = up-to-date with port >>> bash-3.2.39_1 = up-to-date with port >>> dovecot-1.1.3 = up-to-date with port >>> expat-2.0.1 = up-to-date with port >>> gettext-0.17_1 = up-to-date with port >>> gmake-3.81_3 = up-to-date with port >>> help2man-1.36.4_2 = up-to-date with port >>> libiconv-1.11_1 = up-to-date with port >>> libtool-1.5.26 = up-to-date with port >>> linux_base-fc-4_10 < needs updating (port has 4_13) >>> m4-1.4.11,1 = up-to-date with port >>> mod_python-3.3.1_2 = up-to-date with port >>> p5-gettext-1.05_2 = up-to-date with port >>> pcre-7.7_1 = up-to-date with port >>> perl-5.8.8_1 = up-to-date with port >>> pkg-config-0.23_1 = up-to-date with port >>> postfix-2.5.4,1 = up-to-date with port >>> py25-sqlite3-2.5.2_1 = up-to-date with port >>> python25-2.5.2_3 = up-to-date with port >>> sqlite3-3.5.6 = up-to-date with port >>> >>> Any help will be appreciated, thanks. >> >> You'll need to provide a gdb backtrace to determine the cause of the >> core, and provide any error messages shown in Apache's error log >> (default: /var/log/httpd-error.log). The above information doesn't >> provide enough detail. >> >> Please also be aware that, quite often, debugging Apache and Apache >> modules is a tedious and difficult task. It's rarely a simple thing. >> > > I've noticed that compiling python without threads support fixes the > problem, but that's not a solution for me as I need threads. Any other > ideas? Doesn't surprise me. I'd recommend first reporting your problem upstream to the mod_python authors, as this does not appear to be a FreeBSD or FreeBSD ports issue. As for solution, the solution here is to not use mod_python. Surely something like cgiwrap or FastCGI could be made to work with python. -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 18:18: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 331A5106566B for ; Sun, 14 Sep 2008 18:18:41 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (77-99-36-42.cable.ubr04.chap.blueyonder.co.uk [77.99.36.42]) by mx1.freebsd.org (Postfix) with ESMTP id 93BBB8FC17 for ; Sun, 14 Sep 2008 18:18:40 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id B953B1CC32; Sun, 14 Sep 2008 11:43:21 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Sun, 14 Sep 2008 11:43:21 -0700 User-Agent: KMail/1.9.10 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809141143.21517.david@vizion2000.net> Subject: vim-7.2 Checksum failure 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, 14 Sep 2008 18:18:41 -0000 Vim light problem.. => Attempting to fetch from http://vim.fyxm.net/pub/vim/unix/. fetch: http://vim.fyxm.net/pub/vim/unix/vim-7.2.tar.bz2: Not Found => Attempting to fetch from http://zloba.ath.cx/pub/vim/unix/. fetch: http://zloba.ath.cx/pub/vim/unix/vim-7.2.tar.bz2: Moved Permanently => Attempting to fetch from http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/. fetch: http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested Range Not Satisfiable => Attempting to fetch from http://vim.mirror.fr/unix/. fetch: http://vim.mirror.fr/unix/vim-7.2.tar.bz2: Operation timed out => Attempting to fetch from ftp://ftp.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp2.us.vim.org/pub/vim/unix/. fetch: ftp://ftp2.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Operation timed out => Attempting to fetch from ftp://ftp9.us.vim.org/pub/vim/unix/. fetch: ftp://ftp9.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action aborted: local error in processing => Attempting to fetch from ftp://ftp.ca.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.nl.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.de.vim.org/unix/. fetch: ftp://ftp.de.vim.org/unix/vim-7.2.tar.bz2: Unknown FTP error => Attempting to fetch from ftp://ftp3.de.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.uk.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.ie.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.at.vim.org/pub/vim/unix/. fetch: ftp://ftp.at.vim.org/pub/vim/unix/vim-7.2.tar.bz2: File unavailable (e.g., file not found, no access) => Attempting to fetch from ftp://ftp.pt.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.is.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.il.vim.org/pub/vim/unix/. fetch: ftp://ftp.il.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown error: 0 => Attempting to fetch from ftp://ftp.pl.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.ro.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.sk.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.tw.vim.org/pub/vim/unix/. fetch: ftp://ftp.tw.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action aborted: local error in processing => Attempting to fetch from ftp://vim.stu.edu.tw/pub/vim/unix/. fetch: ftp://vim.stu.edu.tw/pub/vim/unix/vim-7.2.tar.bz2: Requested action aborted: local error in processing => Attempting to fetch from ftp://ftp.jp.vim.org/pub/vim/unix/. fetch: ftp://ftp.jp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown FTP error => Attempting to fetch from ftp://ftp.kr.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.mirrorservice.org/sites/ftp.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/vim-7.2.tar.bz2: size mismatch: expected 7203291, actual 7203720 ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.63681.13 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=vim-lite-7.2.9 UPGRADE_PORT_VER=7.2.9 make ** Fix the problem and try again. From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 20:01: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 CEBFB1065688 for ; Sun, 14 Sep 2008 20:01:14 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.31]) by mx1.freebsd.org (Postfix) with ESMTP id 7F3308FC12 for ; Sun, 14 Sep 2008 20:01:14 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so531871ywe.13 for ; Sun, 14 Sep 2008 13:01:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type; bh=LAtg+kIno8pFjwZXD7T/DekcSwMOLIUAXGLXyiHKmjM=; b=ET4YK8kLeCLlsYi82VKMm6YQSHz1AKGZtrdfTvNCxa3mLecea9cCLz1ygfR8fwzJ6o qbFIqM2AnNxjLxxjGDxasQsnik21nGdfTLzr7zpVSWL0eMYFfbX+lTm1M1LcOQdcqiWT rFsXaMkJ1t4ff9OmDEpIMTuTsfkPyvCvyBa5k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; b=BnAiSzt4XmUDswbuWcZAdwLMu8ETGe26avk8VvJJkRlgcHoMceFBAwqHffFQgKCOeQ XVmbJaMP1XSJ1stl7OvA2zcqTacavVrCzG716Vdq0bBD+7dhCkzcxvE9sPF4gIHBdpoH r8Cx17GGoRRmQguir2208YYIs8uILtBJd13X0= Received: by 10.103.218.19 with SMTP id v19mr4802298muq.110.1221420901522; Sun, 14 Sep 2008 12:35:01 -0700 (PDT) Received: from oslo.ath.cx ( [91.128.195.75]) by mx.google.com with ESMTPS id s10sm3153856mue.15.2008.09.14.12.34.59 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 14 Sep 2008 12:35:00 -0700 (PDT) From: "Herbert J. Skuhra" To: freebsd-ports@freebsd.org References: <200809141143.21517.david@vizion2000.net> Date: Sun, 14 Sep 2008 21:35:43 +0200 In-Reply-To: <200809141143.21517.david@vizion2000.net> (David Southwell's message of "Sun, 14 Sep 2008 11:43:21 -0700") Message-ID: <86prn6jzao.fsf@oslo.ath.cx> User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: David Southwell Subject: Re: vim-7.2 Checksum failure 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, 14 Sep 2008 20:01:14 -0000 David Southwell writes: > Vim light problem.. > > => Attempting to fetch from http://vim.fyxm.net/pub/vim/unix/. > fetch: http://vim.fyxm.net/pub/vim/unix/vim-7.2.tar.bz2: Not Found > => Attempting to fetch from http://zloba.ath.cx/pub/vim/unix/. > fetch: http://zloba.ath.cx/pub/vim/unix/vim-7.2.tar.bz2: Moved Permanently > => Attempting to fetch from > http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/. > fetch: http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: > Requested Range Not Satisfiable > => Attempting to fetch from http://vim.mirror.fr/unix/. > fetch: http://vim.mirror.fr/unix/vim-7.2.tar.bz2: Operation timed out > => Attempting to fetch from ftp://ftp.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp2.us.vim.org/pub/vim/unix/. > fetch: ftp://ftp2.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Operation timed out > => Attempting to fetch from ftp://ftp9.us.vim.org/pub/vim/unix/. > fetch: ftp://ftp9.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action > aborted: local error in processing > => Attempting to fetch from ftp://ftp.ca.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.nl.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.de.vim.org/unix/. > fetch: ftp://ftp.de.vim.org/unix/vim-7.2.tar.bz2: Unknown FTP error > => Attempting to fetch from ftp://ftp3.de.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.uk.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.ie.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.at.vim.org/pub/vim/unix/. > fetch: ftp://ftp.at.vim.org/pub/vim/unix/vim-7.2.tar.bz2: File unavailable > (e.g., file not found, no access) > => Attempting to fetch from ftp://ftp.pt.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.is.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.il.vim.org/pub/vim/unix/. > fetch: ftp://ftp.il.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown error: 0 > => Attempting to fetch from ftp://ftp.pl.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.ro.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.sk.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.tw.vim.org/pub/vim/unix/. > fetch: ftp://ftp.tw.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action > aborted: local error in processing > => Attempting to fetch from ftp://vim.stu.edu.tw/pub/vim/unix/. > fetch: ftp://vim.stu.edu.tw/pub/vim/unix/vim-7.2.tar.bz2: Requested action > aborted: local error in processing > => Attempting to fetch from ftp://ftp.jp.vim.org/pub/vim/unix/. > fetch: ftp://ftp.jp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown FTP error > => Attempting to fetch from ftp://ftp.kr.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from > ftp://ftp.mirrorservice.org/sites/ftp.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/. > fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/vim-7.2.tar.bz2: > size mismatch: expected 7203291, actual 7203720 > ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.63681.13 > env UPGRADE_TOOL=portupgrade UPGRADE_PORT=vim-lite-7.2.9 > UPGRADE_PORT_VER=7.2.9 make > ** Fix the problem and try again. rm /usr/ports/distfiles/vim/vim-7.2.tar.bz2 solved the problem for me. - Herbert From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 21:27: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 183031065674 for ; Sun, 14 Sep 2008 21:27:37 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (77-99-36-42.cable.ubr04.chap.blueyonder.co.uk [77.99.36.42]) by mx1.freebsd.org (Postfix) with ESMTP id 7EF818FC16 for ; Sun, 14 Sep 2008 21:27:36 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id C993F1CC26; Sun, 14 Sep 2008 14:52:18 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Sun, 14 Sep 2008 14:52:18 -0700 User-Agent: KMail/1.9.10 References: <200809141143.21517.david@vizion2000.net> <86prn6jzao.fsf@oslo.ath.cx> In-Reply-To: <86prn6jzao.fsf@oslo.ath.cx> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809141452.18550.david@vizion2000.net> Subject: Re: vim-7.2 Checksum failure 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, 14 Sep 2008 21:27:37 -0000 On Sunday 14 September 2008 12:35:43 Herbert J. Skuhra wrote: > David Southwell writes: > > Vim light problem.. > > > > => Attempting to fetch from http://vim.fyxm.net/pub/vim/unix/. > > fetch: http://vim.fyxm.net/pub/vim/unix/vim-7.2.tar.bz2: Not Found > > => Attempting to fetch from http://zloba.ath.cx/pub/vim/unix/. > > fetch: http://zloba.ath.cx/pub/vim/unix/vim-7.2.tar.bz2: Moved > > Permanently => Attempting to fetch from > > http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/. > > fetch: > > http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: > > Requested Range Not Satisfiable > > => Attempting to fetch from http://vim.mirror.fr/unix/. > > fetch: http://vim.mirror.fr/unix/vim-7.2.tar.bz2: Operation timed out > > => Attempting to fetch from ftp://ftp.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp2.us.vim.org/pub/vim/unix/. > > fetch: ftp://ftp2.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Operation > > timed out => Attempting to fetch from > > ftp://ftp9.us.vim.org/pub/vim/unix/. fetch: > > ftp://ftp9.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action > > aborted: local error in processing > > => Attempting to fetch from ftp://ftp.ca.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.nl.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.de.vim.org/unix/. > > fetch: ftp://ftp.de.vim.org/unix/vim-7.2.tar.bz2: Unknown FTP error > > => Attempting to fetch from ftp://ftp3.de.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.uk.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.ie.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.at.vim.org/pub/vim/unix/. > > fetch: ftp://ftp.at.vim.org/pub/vim/unix/vim-7.2.tar.bz2: File > > unavailable (e.g., file not found, no access) > > => Attempting to fetch from ftp://ftp.pt.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.is.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.il.vim.org/pub/vim/unix/. > > fetch: ftp://ftp.il.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown error: > > 0 => Attempting to fetch from ftp://ftp.pl.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.ro.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.sk.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.tw.vim.org/pub/vim/unix/. > > fetch: ftp://ftp.tw.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested > > action aborted: local error in processing > > => Attempting to fetch from ftp://vim.stu.edu.tw/pub/vim/unix/. > > fetch: ftp://vim.stu.edu.tw/pub/vim/unix/vim-7.2.tar.bz2: Requested > > action aborted: local error in processing > > => Attempting to fetch from ftp://ftp.jp.vim.org/pub/vim/unix/. > > fetch: ftp://ftp.jp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown FTP > > error => Attempting to fetch from ftp://ftp.kr.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from > > ftp://ftp.mirrorservice.org/sites/ftp.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/. > > fetch: > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/vim-7.2.tar.bz2: > > size mismatch: expected 7203291, actual 7203720 > > ** Command failed [exit code 1]: /usr/bin/script -qa > > /tmp/portupgrade.63681.13 env UPGRADE_TOOL=portupgrade > > UPGRADE_PORT=vim-lite-7.2.9 > > UPGRADE_PORT_VER=7.2.9 make > > ** Fix the problem and try again. > > rm /usr/ports/distfiles/vim/vim-7.2.tar.bz2 > > solved the problem for me OK - I tried that - probably too early on.. so I'll try again Thanks .. david From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 21:44: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 80FE6106564A for ; Sun, 14 Sep 2008 21:44:07 +0000 (UTC) (envelope-from unixmania@gmail.com) Received: from mail-gx0-f17.google.com (mail-gx0-f17.google.com [209.85.217.17]) by mx1.freebsd.org (Postfix) with ESMTP id 1AD6E8FC1D for ; Sun, 14 Sep 2008 21:44:06 +0000 (UTC) (envelope-from unixmania@gmail.com) Received: by gxk10 with SMTP id 10so21953522gxk.19 for ; Sun, 14 Sep 2008 14:44:06 -0700 (PDT) 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=7gVPh1VemRl6FvP1EEfDHLBakHYVT1UvabzX2ZcrNxU=; b=LtnwYCGxb6gfnSB79JI72Vh3hQ1eCijM/OcB2ufvraus7soFmvrWUm3wCIa6H/y3Ye Sr7jYwx4dL3U83CBb34nAiBVvDatTgdgJ6PV+4H3+S91x8dnomCVZ6IFAJjqZBLEZ7Kk fqetH2mrJpf0DMqAIPzXdhmV/3XQU2np0whVk= 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=XEPai65wXKFdp01B2yM2wA885h2Gm4KKad0L4aYqN0xbzTGVIfK5AgNoQyLmORWbCn KGnRQqsOhRq20CPW7kTCoJ5h6CdWEWv6GNyxJT6N2zeyJUDvs8/JsQWYceH6aWoKWtwO xCv0MNEZcAUxgbO3e5soc8i8C7TOEkqVVxrOs= Received: by 10.103.242.7 with SMTP id u7mr4871784mur.125.1221428645454; Sun, 14 Sep 2008 14:44:05 -0700 (PDT) Received: by 10.103.231.14 with HTTP; Sun, 14 Sep 2008 14:44:05 -0700 (PDT) Message-ID: Date: Sun, 14 Sep 2008 18:44:05 -0300 From: "Carlos A. M. dos Santos" To: jahnke@sonatabio.com In-Reply-To: <1221376743.1345.13.camel@pinot> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1221264777.5721.596.camel@pinot> <20080913012337.GP15376@server.vk2pj.dyndns.org> <20080913235120.a456a9a2.nork@FreeBSD.org> <1221317817.1345.5.camel@pinot> <48CCB4F9.90309@fsck.ch> <1221376743.1345.13.camel@pinot> Cc: ports@freebsd.org, Tobias Roth Subject: Re: FreeBSD Port: linuxpluginwrapper-20051113_8 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, 14 Sep 2008 21:44:07 -0000 On Sun, Sep 14, 2008 at 4:19 AM, Frank Jahnke wrote: > On Sun, 2008-09-14 at 08:53 +0200, Tobias Roth wrote: >> On 09/13/08 16:56, Frank Jahnke wrote: >> > On Sat, 2008-09-13 at 23:51 +0900, Norikatsu Shigemura wrote: >> >> On Sat, 13 Sep 2008 11:23:37 +1000 >> >> Peter Jeremy wrote: >> > >> >> Recentry, wine is good solution for using Flash. >> > >> > I use this too. >> >> So you use wine + windows_firefox + windows_flash on FreeBSD with no >> problems? > > Right -- it works pretty well. Not perfectly or as well as it does on > Windows, but pretty well. It does help a lot. If you are still in 6.x, > don't forget the OS patch. Did you guys try swfdec-plugin? If a flash solution that works pretty well, though not perfectly, then it may provide what you need. BTW, I strongly believe that we, FreeBSD users, would be doing ourselves a big favour by using -- and helping to improve -- open source software that run natively on FreeBSD. Foreign options may work here and there but using them will ever be playing catch-up with Linux and Windows. -- cd /usr/ports/sysutils/life make clean From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 21:56:18 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 1FC6F106564A for ; Sun, 14 Sep 2008 21:56:18 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id BFDBF8FC15 for ; Sun, 14 Sep 2008 21:56:17 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 14 Sep 2008 17:56:16 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.8.6-GA) with ESMTP id KGS64707; Sun, 14 Sep 2008 17:56:16 -0400 (EDT) Received: from 209-6-22-188.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.22.188]) by smtp01.lnh.mail.rcn.net with ESMTP; 14 Sep 2008 17:56:15 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18637.34942.755039.51987@jerusalem.litteratus.org> Date: Sun, 14 Sep 2008 17:56:14 -0400 To: "Carlos A. M. dos Santos" In-Reply-To: References: <1221264777.5721.596.camel@pinot> <20080913012337.GP15376@server.vk2pj.dyndns.org> <20080913235120.a456a9a2.nork@FreeBSD.org> <1221317817.1345.5.camel@pinot> <48CCB4F9.90309@fsck.ch> <1221376743.1345.13.camel@pinot> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr08.lnh.mail.rcn.net) Cc: ports@freebsd.org, Tobias Roth , jahnke@sonatabio.com Subject: Re: FreeBSD Port: linuxpluginwrapper-20051113_8 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, 14 Sep 2008 21:56:18 -0000 Carlos A. M. dos Santos writes: > BTW, I strongly believe that we, FreeBSD users, would be doing > ourselves a big favour by using -- and helping to improve -- open > source software that run natively on FreeBSD. Foreign options may > work here and there but using them will ever be playing catch-up > with Linux and Windows. Unfortunately, there is a quite a bit of stuff which - while I hesitate to say "will never" - is exponentially unlikely to ever have a native counterpart. Using the Linux version, and improving the emulation layer so more things run (correctly and fast), is an acceptable second best. Robert Huff From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 21:58:47 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 17C671065671 for ; Sun, 14 Sep 2008 21:58:47 +0000 (UTC) (envelope-from talon@lpthe.jussieu.fr) Received: from shiva.jussieu.fr (shiva.jussieu.fr [134.157.0.129]) by mx1.freebsd.org (Postfix) with ESMTP id 8F4DB8FC12 for ; Sun, 14 Sep 2008 21:58:46 +0000 (UTC) (envelope-from talon@lpthe.jussieu.fr) Received: from parthe.lpthe.jussieu.fr (parthe.lpthe.jussieu.fr [134.157.10.1]) by shiva.jussieu.fr (8.14.3/jtpda-5.4) with ESMTP id m8ELwigg003298 for ; Sun, 14 Sep 2008 23:58:44 +0200 (CEST) X-Ids: 166 Received: from niobe.lpthe.jussieu.fr (niobe.lpthe.jussieu.fr [134.157.10.41]) by parthe.lpthe.jussieu.fr (Postfix) with ESMTP id 5DC2689DF0 for ; Sun, 14 Sep 2008 23:58:43 +0200 (CEST) Received: by niobe.lpthe.jussieu.fr (Postfix, from userid 2005) id 5427839; Sun, 14 Sep 2008 23:58:43 +0200 (CEST) Date: Sun, 14 Sep 2008 23:58:43 +0200 From: Michel Talon To: freebsd-ports@freebsd.org Message-ID: <20080914215843.GA47806@lpthe.jussieu.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0 (shiva.jussieu.fr [134.157.0.166]); Sun, 14 Sep 2008 23:58:44 +0200 (CEST) X-Virus-Scanned: ClamAV 0.93.3/8238/Sun Sep 14 19:22:28 2008 on shiva.jussieu.fr X-Virus-Status: Clean X-Miltered: at jchkmail.jussieu.fr with ID 48CD8914.00A by Joe's j-chkmail (http : // j-chkmail dot ensmp dot fr)! X-j-chkmail-Enveloppe: 48CD8914.00A/134.157.10.1/parthe.lpthe.jussieu.fr/parthe.lpthe.jussieu.fr/ X-j-chkmail-Score: MSGID : 48CD8914.00A on jchkmail.jussieu.fr : j-chkmail score : . : R=. U=. O=. B=0.029 -> S=0.029 X-j-chkmail-Status: Ham Subject: Re: mod_python core dump 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, 14 Sep 2008 21:58:47 -0000 Jeremy Chadwick wrote: > As for solution, the solution here is to not use mod_python. Surely > something like cgiwrap or FastCGI could be made to work with python. Indeed python works very well with FastCGI, this is the way Django works for example. But this requires some small modification of the program in question so that it speaks FastCGI. A simple working example is: http://www.lpthe.jussieu.fr/~talon/show_index.fcgi notably the function request_handler and the following (the rest is irrelevant here). For the needed Apache configuration, the Django doc is clear: http://docs.djangoproject.com/en/dev/howto/deployment/fastcgi/ the lighttpd configuration is in the comments at the beginning of my script. I have checked that running through fcgi and lighttpd gives far better performance that under Apache anyways. -- Michel TALON From owner-freebsd-ports@FreeBSD.ORG Sun Sep 14 23:40:36 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 EA0BA106567A for ; Sun, 14 Sep 2008 23:40:36 +0000 (UTC) (envelope-from xistence@0x58.com) Received: from mailexchange.osnn.net (1e.66.5646.static.theplanet.com [70.86.102.30]) by mx1.freebsd.org (Postfix) with SMTP id 6DF4D8FC13 for ; Sun, 14 Sep 2008 23:40:36 +0000 (UTC) (envelope-from xistence@0x58.com) Received: (qmail 53065 invoked by uid 0); 14 Sep 2008 23:13:53 -0000 Received: from unknown (HELO ?10.10.10.246?) (xistence@0x58.com@68.3.6.222) by mailexchange.osnn.net with SMTP; 14 Sep 2008 23:13:53 -0000 Message-Id: <0562E238-F194-47D2-8ECA-5170A067C86C@0x58.com> From: Bert JW Regeer To: freebsd-ports@freebsd.org Content-Type: multipart/signed; boundary=Apple-Mail-3-461181234; micalg=sha1; protocol="application/pkcs7-signature" Mime-Version: 1.0 (Apple Message framework v928.1) Date: Sun, 14 Sep 2008 16:13:53 -0700 X-Mailer: Apple Mail (2.928.1) X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: portupgrade fails with a stack trace (portupgrade -rRn php5\* p5\* python\*) 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, 14 Sep 2008 23:40:37 -0000 --Apple-Mail-3-461181234 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Hello, Please CC me in any future communications, I am not on the mailling list. I apologise ahead of time for the extremely long email. I am receiving the following error from portupgrade: defiant# portupgrade -rRn php5\* p5\* python\* ---> Session started at: Sun, 14 Sep 2008 18:07:51 -0500 [Gathering depends for lang/php5 ...................... done] [Gathering depends for sysutils/php5-posix .. done] [Gathering depends for databases/php5-mysqli ................. done] [Gathering depends for lang/php5- extensions .......................................................................................................................................................... done ] [Gathering depends for security/php-suhosin .. done] [Gathering depends for databases/php5-pdo_mysql .... done] [Gathering depends for www/pecl-APC .. done] [Gathering depends for textproc/php5-pspell ........ done] [Gathering depends for databases/phpmyadmin .................... done] [Gathering depends for mail/roundcube .......... done] [Gathering depends for mail/squirrelmail ......... done] [Exclude up-to-date packages ........................................................................ done ] [Gathering depends for archivers/p5-Archive-Tar ............... done] [Gathering depends for mail/p5-Mail- SpamAssassin ................................................................................................................... done ] [Gathering depends for print/html2ps- a4 ................................... done] [Gathering depends for devel/p5-Curses . done] [Gathering depends for databases/p5-DBI ... done] [Gathering depends for databases/p5-Mysql ..... done] [Gathering depends for devel/p5-Date-Manip . done] [Gathering depends for security/p5-Digest . done] [Gathering depends for devel/git ............ done] [Gathering depends for devel/p5-IO-stringy . done] [Gathering depends for net/p5-Net-CIDR-Lite ..... done] [Gathering depends for net/p5-Net-XWhois . done] [Gathering depends for www/awstats .. done] [Gathering depends for textproc/p5-Parse-Syslog .. done] [Gathering depends for devel/p5-PathTools . done] [Gathering depends for lang/p5-Scalar-List-Utils . done] [Exclude up-to-date packages ................................................................................................................... done ] ---> Session ended at: Sun, 14 Sep 2008 18:08:48 -0500 (consumed 00:00:56) /usr/local/lib/ruby/site_ruby/1.8/pkginfo.rb:74:in `initialize': : Not in due form: - (ArgumentError) from /usr/local/sbin/portupgrade:614:in `new' from /usr/local/sbin/portupgrade:614:in `main' from /usr/local/sbin/portupgrade:613:in `each' from /usr/local/sbin/portupgrade:613:in `main' from /usr/local/sbin/portupgrade:588:in `catch' from /usr/local/sbin/portupgrade:588:in `main' from /usr/local/lib/ruby/1.8/optparse.rb:1303:in `call' from /usr/local/lib/ruby/1.8/optparse.rb:1303:in `parse_in_order' ... 7 levels... from /usr/local/lib/ruby/1.8/optparse.rb:785:in `initialize' from /usr/local/sbin/portupgrade:229:in `new' from /usr/local/sbin/portupgrade:229:in `main' from /usr/local/sbin/portupgrade:2208 defiant# portupgrade --version portupgrade 2.4.6 defiant# pkg_info portupgrade\* Information for portupgrade-2.4.6,2: [...] defiant# pkg_version -v ImageMagick-nox11-6.4.1.5 < needs updating (port has 6.4.3.6) apache-worker-2.2.8 < needs updating (port has 2.2.9_5) aspell-0.60.6_2 = up-to-date with port autoconf-2.61_2 < needs updating (port has 2.62) autoconf-wrapper-20071109 = up-to-date with port automake-1.5_4,1 < needs updating (port has 1.5_5,1) automake-wrapper-20071109 = up-to-date with port autorespond-2.0.5 = up-to-date with port awstats-6.7,1 < needs updating (port has 6.8_1,1) bash-3.2.39_1 = up-to-date with port bigreqsproto-1.0.2 = up-to-date with port bincimap-1.2.13 = up-to-date with port bison-2.3_4,1 = up-to-date with port bzip2-1.0.4 < needs updating (port has 1.0.5) cclient-2006j_1,1 = up-to-date with port chkrootkit-0.48 = up-to-date with port clearsilver-python-0.10.5 = up-to-date with port curl-7.18.0 = up-to-date with port cvsps-devel-2.1 = up-to-date with port daemontools-0.76_11 < needs updating (port has 0.76_12) db41-4.1.25_4 = up-to-date with port dirmngr-1.0.1_2 = up-to-date with port djbdns-1.05_10 < needs updating (port has 1.05_12) expat-2.0.1 = up-to-date with port ezmlm-idx-0.40_4 < needs updating (port has 0.444) fontconfig-2.5.0,1 = up-to-date with port freetype2-2.3.5 < needs updating (port has 2.3.7) gd-2.0.35,1 = up-to-date with port gettext-0.17_1 = up-to-date with port ghostscript-gnu-nox11-7.07_17 < needs updating (port has 7.07_20) git-1.5.5 < needs updating (port has 1.6.0.1) gmake-3.81_3 = up-to-date with port gnupg-2.0.9_1 < needs updating (port has 2.0.9_2) graphviz-2.18_2 < needs updating (port has 2.20.2) gsfonts-8.11_4 = up-to-date with port help2man-1.36.4_2 = up-to-date with port html2ps-A4-1.0.b5_1,1 = up-to-date with port inputproto-1.4.2.1 = up-to-date with port jasper-1.900.1_6 = up-to-date with port jbigkit-1.6 = up-to-date with port jpeg-6b_4 < needs updating (port has 6b_7) kbproto-1.0.3 = up-to-date with port lcms-1.17,1 = up-to-date with port libICE-1.0.4_1,1 = up-to-date with port libSM-1.0.3_1,1 = up-to-date with port libX11-1.1.3_1,1 = up-to-date with port libXau-1.0.3_2 = up-to-date with port libXaw-1.0.4_1,1 = up-to-date with port libXdmcp-1.0.2_1 = up-to-date with port libXext-1.0.3,1 = up-to-date with port libXmu-1.0.3,1 = up-to-date with port libXp-1.0.0,1 = up-to-date with port libXpm-3.5.7 = up-to-date with port libXt-1.0.5_1 = up-to-date with port libassuan-1.0.4 = up-to-date with port libfpx-1.2.0.12_1 = up-to-date with port libgcrypt-1.4.1_1 = up-to-date with port libgpg-error-1.6_1 = up-to-date with port libiconv-1.11_1 = up-to-date with port libksba-1.0.2_1 < needs updating (port has 1.0.3) libltdl-1.5.26 = up-to-date with port libmcrypt-2.5.8 = up-to-date with port libsigc++-2.2.2 = up-to-date with port libtool-1.5.26 = up-to-date with port libtorrent-0.11.9 = up-to-date with port libungif-nox11-4.1.4_5 = up-to-date with port libxml2-2.6.32 = up-to-date with port libxslt-1.1.24 < needs updating (port has 1.1.24_1) lighttpd-1.4.19 < needs updating (port has 1.4.19_2) links-2.1.p28,1 < needs updating (port has 2.2,1) lua-5.1.3_1 < needs updating (port has 5.1.3_3) m4-1.4.11,1 = up-to-date with port maildrop-2.0.4 = up-to-date with port mhash-0.9.9 = up-to-date with port ming-0.3.0_3 = up-to-date with port mod_fastcgi-2.4.6 = up-to-date with port mtop-0.6.6_1 = up-to-date with port mysql-client-4.1.22 = up-to-date with port mysql-server-4.1.22 = up-to-date with port nano-2.0.7_1 < needs updating (port has 2.0.8) neon26-0.26.4_1 = up-to-date with port nmap-4.20_1 < needs updating (port has 4.68) openldap-client-2.3.41 < needs updating (port has 2.3.43) p5-Archive-Tar-1.38_1 = up-to-date with port p5-Authen-SASL-2.11 < needs updating (port has 2.12) p5-Compress-Raw-Zlib-2.011 < needs updating (port has 2.015) p5-Compress-Zlib-2.011 < needs updating (port has 2.015) p5-Curses-1.23 = up-to-date with port p5-DBI-1.60.1 < needs updating (port has 1.60.4) p5-Data-ShowTable-3.3 = up-to-date with port p5-Date-Manip-5.44 < needs updating (port has 5.54) p5-Digest-1.15 < needs updating (port has 1.15_1) p5-Digest-HMAC-1.01 = up-to-date with port p5-Digest-MD5-2.36 < needs updating (port has 2.36_1) p5-Digest-SHA1-2.11 = up-to-date with port p5-Encode-Detect-1.01 = up-to-date with port p5-Error-0.17012 < needs updating (port has 0.17015) p5-ExtUtils-CBuilder-0.23 < needs updating (port has 0.24) p5-ExtUtils-ParseXS-2.19 = up-to-date with port p5-GSSAPI-0.26 = up-to-date with port p5-Geography-Countries-1.4 = up-to-date with port p5-HTML-Parser-3.56_1 = up-to-date with port p5-HTML-Tagset-3.20 = up-to-date with port p5-IO-Compress-Base-2.011 < needs updating (port has 2.015) p5-IO-Compress-Zlib-2.011 < needs updating (port has 2.015) p5-IO-Socket-INET6-2.52 = up-to-date with port p5-IO-Socket-SSL-1.13 < needs updating (port has 1.15) p5-IO-String-1.08 = up-to-date with port p5-IO-Zlib-1.09 = up-to-date with port p5-IO-stringy-2.110 = up-to-date with port p5-IP-Country-2.23_1 = up-to-date with port p5-MIME-Base64-3.07 = up-to-date with port p5-Mail-SPF-2.005 = up-to-date with port p5-Mail-SpamAssassin-3.2.4_5 < needs updating (port has 3.2.5) p5-Mail-Tools-2.02 = up-to-date with port p5-Math-BigInt-1.89 = up-to-date with port p5-Module-Build-0.28.08_2 = up-to-date with port p5-Mysql-modules-1.2219 = up-to-date with port p5-Net-1.22,1 = up-to-date with port p5-Net-CIDR-Lite-0.20 = up-to-date with port p5-Net-DNS-0.63 = up-to-date with port p5-Net-DNS-Resolver-Programmable-0.003 = up-to-date with port p5-Net-IP-1.25 = up-to-date with port p5-Net-SSLeay-1.30_1 < needs updating (port has 1.35) p5-Net-XWhois-0.90_4 = up-to-date with port p5-NetAddr-IP-4.00.7 = up-to-date with port p5-Parse-Syslog-1.10 = up-to-date with port p5-PathTools-3.2701 = up-to-date with port p5-Scalar-List-Utils-1.19,1 = up-to-date with port p5-Socket6-0.20 < needs updating (port has 0.22) p5-Spiffy-0.30 = up-to-date with port p5-Storable-2.18 = up-to-date with port p5-Test-Base-0.54_1 = up-to-date with port p5-Test-Harness-3.10 < needs updating (port has 3.13) p5-Test-Simple-0.80 = up-to-date with port p5-URI-1.36 < needs updating (port has 1.37) p5-YAML-0.66 = up-to-date with port p5-gettext-1.05_2 = up-to-date with port p5-libwww-5.805 < needs updating (port has 5.814) p5-version-0.74 < needs updating (port has 0.76) pcre-7.6 < needs updating (port has 7.7_1) pdflib-7.0.2 = up-to-date with port pecl-APC-3.0.19 = up-to-date with port pecl-filter-0.11.0 = up-to-date with port pecl-hash-1.5 = up-to-date with port pecl-json-1.2.1 = up-to-date with port pecl-pdflib-2.1.5 = up-to-date with port pecl-zip-1.9.0 = up-to-date with port perl-5.8.8_1 = up-to-date with port php-suhosin-0.9.24 < needs updating (port has 0.9.27) php5-5.2.6 < needs updating (port has 5.2.6_2) php5-bcmath-5.2.6 < needs updating (port has 5.2.6_2) php5-bz2-5.2.6 < needs updating (port has 5.2.6_2) php5-ctype-5.2.6 < needs updating (port has 5.2.6_2) php5-curl-5.2.6 < needs updating (port has 5.2.6_2) php5-dom-5.2.6 < needs updating (port has 5.2.6_2) php5-extensions-1.1 = up-to-date with port php5-ftp-5.2.6 < needs updating (port has 5.2.6_2) php5-gd-5.2.6 < needs updating (port has 5.2.6_2) php5-gettext-5.2.6_1 = up-to-date with port php5-iconv-5.2.6 < needs updating (port has 5.2.6_2) php5-imap-5.2.6_1 = up-to-date with port php5-mbstring-5.2.6 < needs updating (port has 5.2.6_2) php5-mcrypt-5.2.6 < needs updating (port has 5.2.6_2) php5-mhash-5.2.6 < needs updating (port has 5.2.6_2) php5-mysql-5.2.6 < needs updating (port has 5.2.6_2) php5-mysqli-5.2.6 < needs updating (port has 5.2.6_2) php5-ncurses-5.2.6 < needs updating (port has 5.2.6_2) php5-openssl-5.2.6 < needs updating (port has 5.2.6_2) php5-pcntl-5.2.6 < needs updating (port has 5.2.6_2) php5-pcre-5.2.6 < needs updating (port has 5.2.6_2) php5-pdo-5.2.6 < needs updating (port has 5.2.6_2) php5-pdo_mysql-5.2.6 < needs updating (port has 5.2.6_2) php5-pdo_sqlite-5.2.6 < needs updating (port has 5.2.6_2) php5-posix-5.2.6 < needs updating (port has 5.2.6_2) php5-pspell-5.2.6_1 = up-to-date with port php5-readline-5.2.6 < needs updating (port has 5.2.6_2) php5-session-5.2.6 < needs updating (port has 5.2.6_2) php5-simplexml-5.2.6 < needs updating (port has 5.2.6_2) php5-sockets-5.2.6 < needs updating (port has 5.2.6_2) php5-spl-5.2.6 < needs updating (port has 5.2.6_2) php5-sqlite-5.2.6 < needs updating (port has 5.2.6_2) php5-tidy-5.2.6 < needs updating (port has 5.2.6_2) php5-tokenizer-5.2.6 < needs updating (port has 5.2.6_2) php5-xml-5.2.6 < needs updating (port has 5.2.6_2) php5-xmlreader-5.2.6 < needs updating (port has 5.2.6_2) php5-xmlwriter-5.2.6 < needs updating (port has 5.2.6_2) php5-zlib-5.2.6 < needs updating (port has 5.2.6_2) phpMyAdmin-2.11.6 < needs updating (port has 2.11.9) pkg-config-0.23_1 = up-to-date with port pkg_cutleaves-20061113 < needs updating (port has 20080320) png-1.2.28 < needs updating (port has 1.2.31) portupgrade-2.4.6,2 = up-to-date with port printproto-1.0.3 = up-to-date with port pth-2.0.7 = up-to-date with port pure-ftpd-1.0.21_1 < needs updating (port has 1.0.21_2) puredb-2.1 = up-to-date with port py25-docutils-0.4 < needs updating (port has 0.5) py25-pysqlite-2.3.5 = up-to-date with port py25-setuptools-0.6c8 = up-to-date with port python-2.5,2 = up-to-date with port python25-2.5.2_2 < needs updating (port has 2.5.2_3) qmail-1.03_4 < needs updating (port has 1.03_7) qmailadmin-1.2.10,1 = up-to-date with port razor-agents-2.84 = up-to-date with port roundcube-0.1.1_1,1 < needs updating (port has 0.2.a, 1) rtorrent-0.7.9_1 = up-to-date with port ruby-1.8.6.287,1 = up-to-date with port ruby18-bdb-0.6.4 = up-to-date with port screen-4.0.3_1 < needs updating (port has 4.0.3_5) silvercity-0.9.7 = up-to-date with port sqlite3-3.5.6 = up-to-date with port squirrelmail-1.4.15_1 = up-to-date with port strace-4.5.7 = up-to-date with port subversion-python-1.4.6_2 < needs updating (port has 1.5.2) t1lib-5.1.2,1 = up-to-date with port tcl-8.4.16,1 < needs updating (port has 8.4.19,1) tidy-lib-070813.c_1 < needs updating (port has 080621.c) tiff-3.8.2_1 = up-to-date with port trac-0.10.4_2 < needs updating (port has 0.11.1) trac-webadmin-0.1.2.4429_1 < needs updating (port has 0.1.2.4429_2) ucspi-tcp-0.88_2 = up-to-date with port unzip-5.52_5 = up-to-date with port vim-7.1.293_2 < needs updating (port has 7.2.14) vpopmail-5.4.26 < needs updating (port has 5.4.26_1) weblint-1.020 = up-to-date with port wget-1.11.2_1 = up-to-date with port xcmiscproto-1.1.2 = up-to-date with port xextproto-7.0.2 = up-to-date with port xf86bigfontproto-1.1.2 = up-to-date with port xmlrpc-c-1.06.23 < needs updating (port has 1.06.30) xproto-7.0.10_1 = up-to-date with port xtrans-1.0.4 = up-to-date with port zziplib-0.13.49 = up-to-date with port Do note, that as soon as I remove the python\* on the end it works perfectly, or if I do just portupgrade -rRn python\* I do not receive the same error. I am upgrading the system that is currently affected to the newer version of the software by hand for the packages that are causing trouble, so unless I can re-produce the error after that is completed I am not sure if I can be of any more help. Cheers, Bert JW Regeer --Apple-Mail-3-461181234-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 01:50:40 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 F0D79106566B for ; Mon, 15 Sep 2008 01:50:40 +0000 (UTC) (envelope-from chris#@1command.com) Received: from mail.1command.com (mail.1command.com [75.160.109.226]) by mx1.freebsd.org (Postfix) with ESMTP id 9A06E8FC13 for ; Mon, 15 Sep 2008 01:50:35 +0000 (UTC) (envelope-from chris#@1command.com) Received: from mail.1command.com (localhost.1command.com [127.0.0.1]) by mail.1command.com (8.13.3/8.13.3) with ESMTP id m8F1iJTO058601; Sun, 14 Sep 2008 18:44:25 -0700 (PDT) (envelope-from chris#@1command.com) Received: (from www@localhost) by mail.1command.com (8.13.3/8.13.3/Submit) id m8F1iIoN058600; Sun, 14 Sep 2008 18:44:18 -0700 (PDT) (envelope-from chris#@1command.com) Received: from hitme.hitometer.net (hitme.hitometer.net [75.160.109.235]) by webmail.1command.com (H.R. Communications Messaging System) with HTTP; Sun, 14 Sep 2008 18:44:18 -0700 Message-ID: <20080914184418.wa74jqjy0wk0sowo@webmail.1command.com> X-Priority: 3 (Normal) Date: Sun, 14 Sep 2008 18:44:18 -0700 From: Chris H To: Dmitry Marakasov References: <20080912105907.hgkvg352gco0k8ow@webmail.1command.com> <20080912211222.GA37740@hades.panopticon> <20080912214349.xrprskkcg00gw080@webmail.1command.com> <20080913125407.GC37740@hades.panopticon> <20080913115506.y6dyjx8k8wcggk0g@webmail.1command.com> <20080914004920.GD37740@hades.panopticon> In-Reply-To: <20080914004920.GD37740@hades.panopticon> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: H.R. Communications Internet Messaging System (HCIMS) 4.1 Professional (not for redistribution) / FreeBSD-5.5 Cc: freebsd-ports@freebsd.org Subject: Re: a $PREFIX question... 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, 15 Sep 2008 01:50:41 -0000 Hello Dmitry, and thank you for your response. Quoting Dmitry Marakasov : > * Chris H (chris#/@\1command.com) wrote: > > JFYI, I'm not php user, but I have more than enough experience of > ports hacking, so I may miss something php-specific, though I have > some thoughts. Understood. Thank you. > >>> For jail there's DESTDIR. >> Ahh. That's good to know. I had thought to look to the BIND port as a >> model for a jail. But, since I'm really just trying to get both PHP4 and >> PHP5 to install in such a manner as to prevent symbol collisions, I >> thought that simply keeping the configure/install the same as it is >> now, but substituting php, for php5 would be the most efficient, and >> tidy approach. It appears that all I'm dealing with is: >> >> /usr/local/lib/php >> /usr/local/include/php >> /usr/local/etc/php && php.conf >> /usr/local/bin/php || pgp-cgi > Ah, sorry. Actually I wasn't aware that php installs stuff into */php > directories. In this case maybe changing /php to /php5 may really be > more convenient. > >> Which - if I have a reasonable understanding of all this, translates to: >> $PREFIX || $LOCALBASE/php no? > No. Now I finally understand your question :) Just for the record, I read Mk/bsd.port.mk and /intended/ to infer: $LOCALBASE == /usr/local $PREFIX if undefined == $LOCALBASE else $PREFIX == $PREFIX or if $PREFIX != $PREFIX, $PREFIX == $LOCALBASE Sorry for not being clearer. :) > > LOCALBASE (/usr/local by default) is a place where all software > installed through ports will go. It is also where ports search for > libraries, includes etc. installed by other ports. > > PREFIX (LOCALBASE by default, thus /usr/local as well) is where the > currently installed port goes. > > No one should really redefine LOCALBASE, but you may change prefix to > install a specific port to some nondefault location. > > Those have nothing to do with /php dirs. It seems to be php-specific > feature to install it's files under /php subdirs everywhere. So, by > default (prefix=/usr/local) e.g. php cli binary will be installed as > > /usr/local/bin/php/php Actually the php binary, and php-cgi are installed in local/bin/ But local/include, local/lib, and local/etc have a php directory appended, and php.conf is dumped into the local/etc/ directory. > /usr/local/etc/php.conf > /usr/local/include/php/Zend/zend.h > ... > > and if you change PREFIX to /usr/local/php5 that'll be > > /usr/local/php5/bin/php/php > /usr/local/php5/etc/php.conf > /usr/local/php5/include/php/Zend/zend.h > ... > > If you change PREFIX to /newphp, that'll be > > /newphp/bin/php/php > /newphp/etc/php.conf > /newphp/include/php/Zend/zend.h > ... > > As you can see, changing PREFIX allows php4&5 to coexist, but some extra > directory hierarchy is introduced. > >> So I figured that ultimately both php versions & the destination system > ... >> is /greatly/ appreciated here :)) Maybe the ultimate solution would be >> to simply go the >> $PREFIX/php && $PREFIX/php5 route. Thereby dropping (isolating) both >> versions into their own trees. But if I understand any of this correctly, >> I'll need to modify the system' environment to include these directories: >> ($PREFIX/php/bin $PREFIX/php/lib $PREFIX/php/include && >> $PREFIX/php5/bin $PREFIX/php5/lib $PREFIX/php5/include) >> Does this make any sense? > > Just a quick flashback to possible solutions: > > Solution 1: change PREFIX > Solution 2: hack port to use */php5 dirs instead of */php > Other than changing all paths in the port's Makefile and pkg-plist, > you'll need to hack configure to use different directories. > What you need is to look into php's configure.in, all paths you'll > need should be there. Since the port has USE_AUTOTOOLS=autoconf:262, > configure will be generated from configure.in when you build the > port automatically. There may be many caveats and other places to change > paths, or there may not be. Huge insight, thank you! OK. Looks like this will be the path I'll need to pursue to accomplish my ultimate goal - eg; # for PHP4 /usr/local/bin/ /usr/local/include/php/ /usr/local/lib/php/ /usr/local/etc/php/ /usr/local/etc/php.conf # for PHP5 /usr/local/bin/ /usr/local/include/php/ /usr/local/lib/php5/ /usr/local/etc/php5/ /usr/local/etc/php5/php.conf or /usr/local/etc/php5.conf (probably better) My understanding thus far for the php.conf file seems to indicate that changing bsd's: --with-config-file-scan-dir=${PREFIX}/etc/php in the Makefile to: --with-config-file-scan-dir=${PREFIX}/etc/php5 will create and use /usr/local/etc/php5/php.conf which may be fine, but I'm going to look closer at the source(s) to see if using /usr/local/etc/php5.conf will be a better choice or not. > > Yes, you'll need to `modify the system environment' to include paths to > both php versions. Understood. :) > This is where the problems start. Also understood. But my initial findings don't seem to indicate this will pose a big problem - with possible/probable exception(s) being adding ports depending on different php versions. But I figure if I use/install php4 as the "base version" and install any modules/extensions /before/ installing the php5 cgi and any additional php5 modules/extensions, it should go pretty smoothly (fingers crossed) ;) > > Both php4 and php5 install equally named files, so if you need an app to > use php5, you'll have to change PATH to include /usr/local/bin/php5/ or > NEW_PHP_PREFIX/bin/php (depending on which way you chose); if an app > needs php's includes, you'll also need to add /usr/loca/include/php5/ or > NEW_PHP_PREFIX/include/php; same for lib/ and likely etc/. I believe > that'd be hell. Even more problems if you intend to install something > from ports which depend on php. Also understood (see just above). > > Thus, if you really need both versions, I'd just install the version you > need for more apps as default, and another version with changed PREFIX, > period. No port hacking, just change path to php in some marginal apps. Also understood. Maybe when I've managed all of this successfully and also reverse this in the same way (php5 as base and php4 as additional), I can introduce a PHPSWITCH knob that will bring up a configure dialog that allows for a choice for the chosen base, and additional php version choices. :) I've whipped up a box especially for all this hackery with a 7.0-RELEASE install. So I'm pretty committed to a /working/ version of all this. :) Dmitry, I can't thank you enough for all the time you continue to extend me on all of this! Thank you, thank you, thank you. :) Best wishes. --Chris > > -- > Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D > amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://www.amdmi3.ru > From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 00:02: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 29A711065676 for ; Mon, 15 Sep 2008 00:02:08 +0000 (UTC) (envelope-from xaenn@yahoo.com) Received: from web50107.mail.re2.yahoo.com (web50107.mail.re2.yahoo.com [206.190.38.35]) by mx1.freebsd.org (Postfix) with SMTP id 861E18FC17 for ; Mon, 15 Sep 2008 00:02:02 +0000 (UTC) (envelope-from xaenn@yahoo.com) Received: (qmail 3089 invoked by uid 60001); 14 Sep 2008 23:35:20 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=gwNidXBXjKkg9UzxR8nPqfthxmpculD8w/rb7ANZXr57LdIPariqLQ7Pm8PyLWTnuaVD6H1Z7Sx1vx7ZerfWFcaNj3MRbstYLxkdrAFEURMg2204zmVK76y7z+YMEh1litJ2HMR62xkKDl/Wv2RRRq+/PB1z9NZi3QHxp69uh9M=; X-YMail-OSG: t8L5m5gVM1kbj4nyWb.4iMrlgqvgtSA3QI1VP3CIqHIGz77cYh8uD7JvabEhV1_aq44x7DMnLnUk6KlXT_9WGYmq._J4F.KcOJoemvM_bRM4Dtk7k392pMQstLWx4087cw-- Received: from [129.82.120.222] by web50107.mail.re2.yahoo.com via HTTP; Sun, 14 Sep 2008 16:35:20 PDT Date: Sun, 14 Sep 2008 16:35:20 -0700 (PDT) From: Dan Reinholz To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <40519.1847.qm@web50107.mail.re2.yahoo.com> X-Mailman-Approved-At: Mon, 15 Sep 2008 03:10:22 +0000 Subject: =?iso-8859-1?q?Evince_2=2E22=2E2=5F3=3A_=22Unhandled_MIME_type?= =?iso-8859-1?q?=3A_=E2=80=9Capplication/pdf=E2=80=9D=22?= 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, 15 Sep 2008 00:02:08 -0000 Since updating to the latest revision of Evince (to 2.22.2_3 from 2.22.2_2) I am no longer able to open .pdf files. Anytime I try to do so I now get the error: "Unhandled MIME type: “application/pdf” At the same time I also updated some related ports such as poppler, so I'm not able to say for sure which update it is that caused the problem. Any help is appreciated. Thanks, -Daniel From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 04:12: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 CE698106566B for ; Mon, 15 Sep 2008 04:12:09 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.251]) by mx1.freebsd.org (Postfix) with ESMTP id 811D38FC0A for ; Mon, 15 Sep 2008 04:12:09 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by an-out-0708.google.com with SMTP id b33so189977ana.13 for ; Sun, 14 Sep 2008 21:12:08 -0700 (PDT) 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 :content-transfer-encoding:content-disposition:references; bh=6NxJlWF50rRNJ8JKzDpcF3AgTb0Q06sDHGqnzCRRSFA=; b=cgIC87nb6eXRQWocR78NFTUDSzmMq1a9E8Gf7pNX2lmQB1RsZ6sCmnUuzf5rbinv22 Cqt2oH6kc6X7VTn3vmUYdtjzxipAb85t6r1hwQv4dHsUaVBkK11w3CvX1HPcVAoeV0qJ B4rCHTdLlxcza/CideDU2lkfFjcDBMVcbp2l4= 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:content-transfer-encoding:content-disposition :references; b=AgZ1HlSGAcxifKDhBJyrIJvV9k9uc1j6LcXkurj0DY0QK9Zv42/ceobJFrxJJO9t/x i18U+J752Uouoc9crdcUZBfWXvw8d2RcuN4O/tE/aOhpUXnbo/xKAs2gmWqfdmmKF3KC jzkxTR297+AYhCN/niLgVuYUA9F/b+/+0NZm0= Received: by 10.86.82.6 with SMTP id f6mr5525159fgb.73.1221451927691; Sun, 14 Sep 2008 21:12:07 -0700 (PDT) Received: by 10.86.62.14 with HTTP; Sun, 14 Sep 2008 21:12:07 -0700 (PDT) Message-ID: <7d6fde3d0809142112o4de36352md0302b4d8608b03f@mail.gmail.com> Date: Sun, 14 Sep 2008 21:12:07 -0700 From: "Garrett Cooper" To: "FreeBSD Ports" , current@freebsd.org In-Reply-To: <7d6fde3d0809142110x1d28e40fm4e976f93ae507852@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200807241348.m6ODmVNe090621@www.freebsd.org> <7d6fde3d0807241118x122c25dbjad0e6f7b98f789d7@mail.gmail.com> <20080909212343.58886989@tau.draftnet> <7d6fde3d0809112324l5d99c157n1d5f23efbb32f3bf@mail.gmail.com> <7d6fde3d0809142110x1d28e40fm4e976f93ae507852@mail.gmail.com> Cc: Subject: Fwd: bin/125932: pkg_add(1) doesn't prompt for root credentials and then fails badly 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, 15 Sep 2008 04:12:09 -0000 ------------------------ Fyi (From Bugbuster email for bin/125932): ------------------------ Here's a proposed patch for the first set of cleanup to pkg_install: , and some fixing to alleviate the issue in bin/125932. Rather than biting off more than I can chew with the perforce project, I'm going to work off the changes Anders has made and incrementally polish pkg_install (like I should have done last year -_-...) This patch causes pkg_install to error out at the first sign of install failure (which could take a while as it's still using tar(1) to extract archives in add/extract.c), BUT in getFileByURL I've completely replaced the tar requirement in lib/url.c with archive(3)'s, quite handy hooks for writing to files. So don't be alarmed when you see that the file has grown 4 times ;)... This patch hasn't gotten much mileage, other than a few failure and success cases, so if others could please take a look at this and provide comments I'd much appreciate it. Cheers, -Garrett PS Packages might not be dumped in the correct spot -- I just chose /var/tmp, but if someone could point me to the "industry standard" location that portupgrade uses for instance, I'd be more than happy to point there. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 04:20: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 A1B801065671 for ; Mon, 15 Sep 2008 04:20:56 +0000 (UTC) (envelope-from pj@smo.de) Received: from ilk.de (mx-out13.ilk.de [194.121.104.13]) by mx1.freebsd.org (Postfix) with ESMTP id CA3938FC1A for ; Mon, 15 Sep 2008 04:20:55 +0000 (UTC) (envelope-from pj@smo.de) Received: from bologna.intern.smo.de (pool54.ka.ilk.net [212.86.194.54]) by ilk.de (8.13.4/8.13.4/ilk-relay) with ESMTP id m8ELq0Ia013447; Sun, 14 Sep 2008 23:52:01 +0200 Received: from [192.168.153.210] (pj@krafla.intern.smo.de [192.168.153.210]) by bologna.intern.smo.de (8.13.8+Sun/8.13.8) with ESMTP id m8ELiuoG009205; Sun, 14 Sep 2008 23:44:56 +0200 (CEST) Message-ID: <48CD8665.5020903@smo.de> Date: Sun, 14 Sep 2008 23:47:17 +0200 From: Philipp Ost User-Agent: Mozilla/5.0 (X11; U; HP-UX 9000/785; en-US; rv:1.7.13) Gecko/20060601 X-Accept-Language: de, en-us, en MIME-Version: 1.0 To: "Herbert J. Skuhra" References: <200809141143.21517.david@vizion2000.net> <86prn6jzao.fsf@oslo.ath.cx> In-Reply-To: <86prn6jzao.fsf@oslo.ath.cx> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: David Southwell , freebsd-ports@freebsd.org Subject: Re: vim-7.2 Checksum failure 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, 15 Sep 2008 04:20:56 -0000 Herbert J. Skuhra wrote: > David Southwell writes: > > >>Vim light problem.. >> >>=> Attempting to fetch from http://vim.fyxm.net/pub/vim/unix/. >>fetch: http://vim.fyxm.net/pub/vim/unix/vim-7.2.tar.bz2: Not Found >>=> Attempting to fetch from http://zloba.ath.cx/pub/vim/unix/. >>fetch: http://zloba.ath.cx/pub/vim/unix/vim-7.2.tar.bz2: Moved Permanently >>=> Attempting to fetch from >>http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/. >>fetch: http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: >>Requested Range Not Satisfiable >>=> Attempting to fetch from http://vim.mirror.fr/unix/. >>fetch: http://vim.mirror.fr/unix/vim-7.2.tar.bz2: Operation timed out >>=> Attempting to fetch from ftp://ftp.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp2.us.vim.org/pub/vim/unix/. >>fetch: ftp://ftp2.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Operation timed out >>=> Attempting to fetch from ftp://ftp9.us.vim.org/pub/vim/unix/. >>fetch: ftp://ftp9.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action >>aborted: local error in processing >>=> Attempting to fetch from ftp://ftp.ca.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.nl.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.de.vim.org/unix/. >>fetch: ftp://ftp.de.vim.org/unix/vim-7.2.tar.bz2: Unknown FTP error >>=> Attempting to fetch from ftp://ftp3.de.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.uk.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.ie.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.at.vim.org/pub/vim/unix/. >>fetch: ftp://ftp.at.vim.org/pub/vim/unix/vim-7.2.tar.bz2: File unavailable >>(e.g., file not found, no access) >>=> Attempting to fetch from ftp://ftp.pt.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.is.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.il.vim.org/pub/vim/unix/. >>fetch: ftp://ftp.il.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown error: 0 >>=> Attempting to fetch from ftp://ftp.pl.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.ro.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.sk.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from ftp://ftp.tw.vim.org/pub/vim/unix/. >>fetch: ftp://ftp.tw.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action >>aborted: local error in processing >>=> Attempting to fetch from ftp://vim.stu.edu.tw/pub/vim/unix/. >>fetch: ftp://vim.stu.edu.tw/pub/vim/unix/vim-7.2.tar.bz2: Requested action >>aborted: local error in processing >>=> Attempting to fetch from ftp://ftp.jp.vim.org/pub/vim/unix/. >>fetch: ftp://ftp.jp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown FTP error >>=> Attempting to fetch from ftp://ftp.kr.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from >>ftp://ftp.mirrorservice.org/sites/ftp.vim.org/pub/vim/unix/. >>fetch: vim-7.2.tar.bz2: local modification time does not match remote >>=> Attempting to fetch from >>ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/. >>fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/vim-7.2.tar.bz2: >>size mismatch: expected 7203291, actual 7203720 >>** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.63681.13 >>env UPGRADE_TOOL=portupgrade UPGRADE_PORT=vim-lite-7.2.9 >>UPGRADE_PORT_VER=7.2.9 make >>** Fix the problem and try again. > > > rm /usr/ports/distfiles/vim/vim-7.2.tar.bz2 > > solved the problem for me. > > - Herbert I had the same problem and did download vim-7.2.tar.bz2 manually, moved it to distfiles and everything was well... Philipp From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 06:42: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 243651065675 for ; Mon, 15 Sep 2008 06:42:52 +0000 (UTC) (envelope-from inform.me@gmx.net) Received: from tr12.bluewin.ch (tr12.bluewin.ch [195.186.19.81]) by mx1.freebsd.org (Postfix) with ESMTP id DFA6B8FC08 for ; Mon, 15 Sep 2008 06:42:51 +0000 (UTC) (envelope-from inform.me@gmx.net) Received: from bruflu190381.kicks-ass.net (81.62.236.32) by tr12.bluewin.ch (The Blue Window 8.0.0228.0.022) (authenticated as bruflu) id 48C8D42B0010B075 for ports@freebsd.org; Mon, 15 Sep 2008 06:17:56 +0000 Received: from 195.65.254.4 (SquirrelMail authenticated user bruno@flueckiger.local) by bruflu190381.kicks-ass.net with HTTP; Mon, 15 Sep 2008 08:17:57 +0200 (CEST) Message-ID: <17315bceb4694b1f51dd599ace5d5a31.squirrel@bruflu190381.kicks-ass.net> In-Reply-To: <200809141143.21517.david@vizion2000.net> References: <200809141143.21517.david@vizion2000.net> Date: Mon, 15 Sep 2008 08:17:57 +0200 (CEST) From: "Bruno Flueckiger" To: ports@freebsd.org User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal OpenPGP: id=7C2D65C65091FE2A; url=pool.sks-keyservers.net Cc: Subject: Re: vim-7.2 Checksum failure 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, 15 Sep 2008 06:42:52 -0000 > fetch: > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/vim-7.2.tar.bz2: > size mismatch: expected 7203291, actual 7203720 > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade.63681.13 > env UPGRADE_TOOL=portupgrade UPGRADE_PORT=vim-lite-7.2.9 > UPGRADE_PORT_VER=7.2.9 make > ** Fix the problem and try again. I've had similar problems with other ports in the past. Usually I change to the ports folder and run make distclean. After this fetch will download the new files. Cheers, Bruno From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 12:12:20 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 17250106568E; Mon, 15 Sep 2008 12:12:20 +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 85CA68FC18; Mon, 15 Sep 2008 12:12:19 +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 5BD4EFBEC3E; Mon, 15 Sep 2008 15:12:18 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 4FF9012E4677; Mon, 15 Sep 2008 15:12:18 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: shells/zoidberg X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/zoidberg-0.96.log X-QAT-Build_Reason: QA Run Message-Id: <20080915121218.4FF9012E4677@quark.ds9.tecnik93.com> Date: Mon, 15 Sep 2008 15:12:18 +0300 (EEST) Cc: Subject: shells/zoidberg - fails: mtree 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, 15 Sep 2008 12:12:20 -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/zoidberg-0.96.log : building zoidberg-0.96 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/shells/zoidberg Makefile ident: $FreeBSD: ports/shells/zoidberg/Makefile,v 1.5 2008/04/17 14:28:27 araujo Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Mon Sep 15 12:11:28 UTC 2008 ................................................... Installing /usr/local/lib/perl5/5.8.8/man/man3/Zoidberg::Utils::FileSystem.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Zoidberg::Utils.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Zoidberg::Utils::GetOpt.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Zoidberg::StringParser.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Bundle::Zoidberg.3 Installing /usr/local/bin/zoid Installing /usr/local/share/zoidberg/AppInfo.xml Installing /usr/local/share/zoidberg/pixmaps/zoid16.png Installing /usr/local/share/zoidberg/pixmaps/zoid32.png Installing /usr/local/share/zoidberg/pixmaps/zoid64.png Installing /usr/local/share/zoidberg/pixmaps/zoid70.png Installing /usr/local/share/zoidberg/plugins/Commands.pl Installing /usr/local/share/zoidberg/plugins/CPAN.pm Installing /usr/local/share/zoidberg/plugins/Intel.pl Installing /usr/local/share/zoidberg/plugins/Log.pl Installing /usr/local/share/zoidberg/plugins/ReadLine.pl ===> Compressing manual pages for zoidberg-0.96 ===> Registering installation for zoidberg-0.96 ================================================================ ======================================== ===> Building package for zoidberg-0.96 Creating package /tmp/packages/All/zoidberg-0.96.tbz Registering depends: p5-Env-PS1-0.05 p5-Exporter-Tidy-0.07 p5-Term-ReadLine-Zoid-0.07 p5-Module-Build-0.28.08_2 p5-ExtUtils-ParseXS-2.19 p5-ExtUtils-CBuilder-0.24 p5-YAML-0.66 p5-Test-Base-0.54_1 p5-Spiffy-0.30 p5-Term-ReadKey-2.30 perl-5.8.8_1. Creating bzip'd tar ball in '/tmp/packages/All/zoidberg-0.96.tbz' Deleting zoidberg-0.96 updating /etc/shells ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 9304745 4 drwxr-xr-x 3 root wheel 512 Sep 15 12:12 usr/local/share/doc/zoidberg 9304784 56 -r--r--r-- 1 root wheel 27390 Sep 15 12:12 usr/local/share/doc/zoidberg/Changes 9304786 8 -r--r--r-- 1 root wheel 3233 Sep 15 12:12 usr/local/share/doc/zoidberg/README 9304787 4 -r--r--r-- 1 root wheel 1721 Sep 15 12:12 usr/local/share/doc/zoidberg/index.html 9304788 4 drwxr-xr-x 2 root wheel 512 Sep 15 12:12 usr/local/share/doc/zoidberg/examples 9304789 8 -r--r--r-- 1 root wheel 2761 Sep 15 12:12 usr/local/share/doc/zoidberg/examples/cpan.pl 9304790 8 -r--r--r-- 1 root wheel 3033 Sep 15 12:12 usr/local/share/doc/zoidberg/examples/Menu.pl 9304791 4 -r--r--r-- 1 root wheel 1389 Sep 15 12:12 usr/local/share/doc/zoidberg/examples/word_expansion.pl ================================================================ build of /usr/ports/shells/zoidberg ended at Mon Sep 15 12:12:16 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Mon Sep 15 12:23:01 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 ACA6D1065674; Mon, 15 Sep 2008 12:23:01 +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 E26648FC3E; Mon, 15 Sep 2008 12:22:53 +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 91FD3FBEC34; Mon, 15 Sep 2008 15:22:52 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 7F26012E4058; Mon, 15 Sep 2008 15:22:52 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: devel/libcheck X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/libcheck-0.9.5_1.log X-QAT-Build_Reason: Dependency Message-Id: <20080915122252.7F26012E4058@quark.ds9.tecnik93.com> Date: Mon, 15 Sep 2008 15:22:52 +0300 (EEST) Cc: Subject: devel/libcheck - fails: mtree 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, 15 Sep 2008 12:23:01 -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. The build of this port was tried 16 times since last BotMail while trying to build ports that depend on it. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/libcheck-0.9.5_1.log : building libcheck-0.9.5_1 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/devel/libcheck Makefile ident: $FreeBSD: ports/devel/libcheck/Makefile,v 1.7 2008/09/01 00:59:45 linimon Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Mon Sep 15 12:22:31 UTC 2008 ................................................... Creating package /tmp/packages/All/libcheck-0.9.5_1.tbz Registering depends:. Creating bzip'd tar ball in '/tmp/packages/All/libcheck-0.9.5_1.tbz' Deleting libcheck-0.9.5_1 ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 6365630 4 drwxr-xr-x 2 root wheel 512 Sep 15 12:22 usr/local/share/doc/check-0.9.5 6365631 240 -r--r--r-- 1 root wheel 121027 Sep 15 12:22 usr/local/share/doc/check-0.9.5/SVNChangeLog 6365632 68 -r--r--r-- 1 root wheel 33962 Sep 15 12:22 usr/local/share/doc/check-0.9.5/ChangeLog 6365633 8 -r--r--r-- 1 root wheel 3680 Sep 15 12:22 usr/local/share/doc/check-0.9.5/ChangeLogOld 6365634 16 -r--r--r-- 1 root wheel 7712 Sep 15 12:22 usr/local/share/doc/check-0.9.5/NEWS 6365635 8 -r--r--r-- 1 root wheel 2551 Sep 15 12:22 usr/local/share/doc/check-0.9.5/README 6365586 4 drwxr-xr-x 4 root wheel 512 Sep 15 12:22 usr/local/share/examples/check-0.9.5 6365588 4 -r--r--r-- 1 root wheel 80 Sep 15 12:22 usr/local/share/examples/check-0.9.5/Makefile.am 6365589 4 -r--r--r-- 1 root wheel 614 Sep 15 12:22 usr/local/share/examples/check-0.9.5/README 6365590 4 -r--r--r-- 1 root wheel 1144 Sep 15 12:22 usr/local/share/examples/check-0.9.5/configure.ac 6365592 4 drwxr-xr-x 2 root wheel 512 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src 6365593 4 -r--r--r-- 1 root wheel 195 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/Makefile.am 6365595 4 -r--r--r-- 1 root wheel 242 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/main.c 6365596 4 -r--r--r-- 1 root wheel 512 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/money.c 6365599 4 -r--r--r-- 1 root wheel 227 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/money.h 6365600 4 -r--r--r-- 1 root wheel 54 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/money.1.h 6365604 4 -r--r--r-- 1 root wheel 227 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/money.2.h 6365605 0 -r--r--r-- 1 root wheel 0 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/money.1.c 6365607 4 -r--r--r-- 1 root wheel 252 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/money.3.c 6365608 4 -r--r--r-- 1 root wheel 293 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/money.4.c 6365611 4 -r--r--r-- 1 root wheel 462 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/money.5.c 6365612 4 -r--r--r-- 1 root wheel 512 Sep 15 12:22 usr/local/share/examples/check-0.9.5/src/money.6.c 6365615 4 drwxr-xr-x 2 root wheel 512 Sep 15 12:22 usr/local/share/examples/check-0.9.5/tests 6365616 4 -r--r--r-- 1 root wheel 273 Sep 15 12:22 usr/local/share/examples/check-0.9.5/tests/Makefile.am 6365618 4 -r--r--r-- 1 root wheel 1610 Sep 15 12:22 usr/local/share/examples/check-0.9.5/tests/check_money.c 6365624 4 -r--r--r-- 1 root wheel 32 Sep 15 12:22 usr/local/share/examples/check-0.9.5/tests/check_money.1.c 6365625 4 -r--r--r-- 1 root wheel 379 Sep 15 12:22 usr/local/share/examples/check-0.9.5/tests/check_money.2.c 6365626 4 -r--r--r-- 1 root wheel 863 Sep 15 12:22 usr/local/share/examples/check-0.9.5/tests/check_money.3.c 6365627 4 -r--r--r-- 1 root wheel 1452 Sep 15 12:22 usr/local/share/examples/check-0.9.5/tests/check_money.6.c 6365628 4 -r--r--r-- 1 root wheel 1610 Sep 15 12:22 usr/local/share/examples/check-0.9.5/tests/check_money.7.c ================================================================ build of /usr/ports/devel/libcheck ended at Mon Sep 15 12:22:50 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Mon Sep 15 13:09:25 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 2BD9D1065680; Mon, 15 Sep 2008 13:09:25 +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 9BC298FC13; Mon, 15 Sep 2008 13:09:24 +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 7DA87FBEC40; Mon, 15 Sep 2008 16:09:23 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 73E8412E4677; Mon, 15 Sep 2008 16:09:23 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: sysutils/fileschanged X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/fileschanged-0.6.5_1.log X-QAT-Build_Reason: QA Run Message-Id: <20080915130923.73E8412E4677@quark.ds9.tecnik93.com> Date: Mon, 15 Sep 2008 16:09:23 +0300 (EEST) Cc: Subject: sysutils/fileschanged - fails: mtree 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, 15 Sep 2008 13:09:25 -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/fileschanged-0.6.5_1.log : building fileschanged-0.6.5_1 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/sysutils/fileschanged Makefile ident: $FreeBSD: ports/sysutils/fileschanged/Makefile,v 1.8 2008/06/06 14:02:58 edwin Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Mon Sep 15 13:08:40 UTC 2008 ................................................... done; \ else \ : ; \ fi gmake[1]: Leaving directory `/work/a/ports/sysutils/fileschanged/work/fileschanged-0.6.5/po' gmake[1]: Entering directory `/work/a/ports/sysutils/fileschanged/work/fileschanged-0.6.5' gmake[2]: Entering directory `/work/a/ports/sysutils/fileschanged/work/fileschanged-0.6.5' gmake[2]: Nothing to be done for `install-exec-am'. test -z "/usr/local/share/doc/fileschanged" || /bin/sh ./mkinstalldirs "/usr/local/share/doc/fileschanged" mkdir /usr/local/share/doc/fileschanged install -o root -g wheel -m 444 'ChangeLog' '/usr/local/share/doc/fileschanged/ChangeLog' install -o root -g wheel -m 444 'AUTHORS' '/usr/local/share/doc/fileschanged/AUTHORS' install -o root -g wheel -m 444 'NEWS' '/usr/local/share/doc/fileschanged/NEWS' install -o root -g wheel -m 444 'README' '/usr/local/share/doc/fileschanged/README' install -o root -g wheel -m 444 'INSTALL' '/usr/local/share/doc/fileschanged/INSTALL' gmake[2]: Leaving directory `/work/a/ports/sysutils/fileschanged/work/fileschanged-0.6.5' gmake[1]: Leaving directory `/work/a/ports/sysutils/fileschanged/work/fileschanged-0.6.5' install-info --quiet /usr/local/info/fileschanged.info /usr/local/info/dir install-info: warning: no info dir entry in `/usr/local/info/fileschanged.info' ===> Compressing manual pages for fileschanged-0.6.5_1 ===> Registering installation for fileschanged-0.6.5_1 ================================================================ ======================================== ===> Building package for fileschanged-0.6.5_1 Creating package /tmp/packages/All/fileschanged-0.6.5_1.tbz Registering depends: gamin-0.1.9_2 glib-2.16.5 gettext-0.17_1 libiconv-1.11_1 pcre-7.7_1 pkg-config-0.23_1 perl-5.8.8_1 python25-2.5.2_3. Creating bzip'd tar ball in '/tmp/packages/All/fileschanged-0.6.5_1.tbz' Deleting fileschanged-0.6.5_1 ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 2875135 4 drwxr-xr-x 2 root wheel 512 Sep 15 13:09 usr/local/share/doc/fileschanged 2875136 12 -r--r--r-- 1 root wheel 4537 Sep 15 13:09 usr/local/share/doc/fileschanged/ChangeLog 2875137 4 -r--r--r-- 1 root wheel 53 Sep 15 13:09 usr/local/share/doc/fileschanged/AUTHORS 2875138 0 -r--r--r-- 1 root wheel 0 Sep 15 13:09 usr/local/share/doc/fileschanged/NEWS 2875139 4 -r--r--r-- 1 root wheel 1505 Sep 15 13:09 usr/local/share/doc/fileschanged/README 2875140 20 -r--r--r-- 1 root wheel 9498 Sep 15 13:09 usr/local/share/doc/fileschanged/INSTALL ================================================================ build of /usr/ports/sysutils/fileschanged ended at Mon Sep 15 13:09:22 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Mon Sep 15 13:12:57 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 1D6181065676; Mon, 15 Sep 2008 13:12:57 +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 9BF838FC1D; Mon, 15 Sep 2008 13:12:56 +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 86AD6FBEC34; Mon, 15 Sep 2008 16:12:55 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 1FF3A12E4677; Mon, 15 Sep 2008 16:12:55 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: sysutils/ftrace X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/ftrace-0.9b.log X-QAT-Build_Reason: QA Run Message-Id: <20080915131255.1FF3A12E4677@quark.ds9.tecnik93.com> Date: Mon, 15 Sep 2008 16:12:54 +0300 (EEST) Cc: Subject: sysutils/ftrace - fails: mtree 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, 15 Sep 2008 13:12:57 -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/ftrace-0.9b.log : building ftrace-0.9b in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/sysutils/ftrace Makefile ident: $FreeBSD: ports/sysutils/ftrace/Makefile,v 1.8 2006/08/15 01:04:51 clsung Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Mon Sep 15 13:12:49 UTC 2008 ................................................... creating ftrace creating config.h ===> Building for ftrace-0.9b cc -O2 -fno-strict-aliasing -pipe -DPIC -fPIC -D_REENTRANT -I. -c ftrace.c ftrace.c:54: warning: conflicting types for built-in function 'log' ld -shared ftrace.o -o libftrace.so ================================================================ ======================================== make: don't know how to make regression-test(continuing) ================================================================ ======================================== add_pkg ===> Installing for ftrace-0.9b ===> Generating temporary packing list ===> Checking if sysutils/ftrace already installed install -o root -g wheel -m 555 /work/a/ports/sysutils/ftrace/work/ftrace-0.9b/ftrace /usr/local/bin install -o root -g wheel -m 444 /work/a/ports/sysutils/ftrace/work/ftrace-0.9b/libftrace.so /usr/local/lib /bin/mkdir -p /usr/local/share/doc/ftrace cd /work/a/ports/sysutils/ftrace/work/ftrace-0.9b && install -o root -g wheel -m 444 COPYING README TODO ChangeLog /usr/local/share/doc/ftrace ===> Running ldconfig /sbin/ldconfig -m /usr/local/lib ===> Registering installation for ftrace-0.9b ================================================================ ======================================== ===> Building package for ftrace-0.9b Creating package /tmp/packages/All/ftrace-0.9b.tbz Registering depends:. Creating bzip'd tar ball in '/tmp/packages/All/ftrace-0.9b.tbz' Deleting ftrace-0.9b ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 2874128 4 drwxr-xr-x 2 root wheel 512 Sep 15 13:12 usr/local/share/doc/ftrace 2874129 36 -r--r--r-- 1 root wheel 17976 Sep 15 13:12 usr/local/share/doc/ftrace/COPYING 2874130 4 -r--r--r-- 1 root wheel 873 Sep 15 13:12 usr/local/share/doc/ftrace/README 2874131 4 -r--r--r-- 1 root wheel 24 Sep 15 13:12 usr/local/share/doc/ftrace/TODO 2874132 4 -r--r--r-- 1 root wheel 538 Sep 15 13:12 usr/local/share/doc/ftrace/ChangeLog ================================================================ build of /usr/ports/sysutils/ftrace ended at Mon Sep 15 13:12:53 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Mon Sep 15 14:00:28 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 C3C09106567B for ; Mon, 15 Sep 2008 14:00:28 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [217.170.79.85]) by mx1.freebsd.org (Postfix) with ESMTP id 797168FC14 for ; Mon, 15 Sep 2008 14:00:27 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1KfEcp-0001z4-3K; Mon, 15 Sep 2008 18:00:23 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id D7766110DE; Mon, 15 Sep 2008 18:00:36 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id E58F717035; Mon, 15 Sep 2008 18:00:12 +0400 (MSD) Date: Mon, 15 Sep 2008 18:00:12 +0400 From: Dmitry Marakasov To: Chris H Message-ID: <20080915140012.GA56355@hades.panopticon> References: <20080912105907.hgkvg352gco0k8ow@webmail.1command.com> <20080912211222.GA37740@hades.panopticon> <20080912214349.xrprskkcg00gw080@webmail.1command.com> <20080913125407.GC37740@hades.panopticon> <20080913115506.y6dyjx8k8wcggk0g@webmail.1command.com> <20080914004920.GD37740@hades.panopticon> <20080914184418.wa74jqjy0wk0sowo@webmail.1command.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20080914184418.wa74jqjy0wk0sowo@webmail.1command.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: Re: a $PREFIX question... 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, 15 Sep 2008 14:00:28 -0000 * Chris H (chris#@1command.com) wrote: >> Those have nothing to do with /php dirs. It seems to be php-specific >> feature to install it's files under /php subdirs everywhere. So, by >> default (prefix=/usr/local) e.g. php cli binary will be installed as >> >> /usr/local/bin/php/php > Actually the php binary, and php-cgi are installed in local/bin/ > But local/include, local/lib, and local/etc have a php directory appended, > and php.conf is dumped into the local/etc/ directory. D'oh, I'm heedless. Correct. > Dmitry, I can't thank you enough for all the time you continue to > extend me on all of this! Thank you, thank you, thank you. :) No problem. Well, good luck on your quest :) -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://www.amdmi3.ru From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 14:26: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 A82421065671; Mon, 15 Sep 2008 14:26:22 +0000 (UTC) (envelope-from reinhard.haller@interactive-net.de) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by mx1.freebsd.org (Postfix) with ESMTP id 353368FC1D; Mon, 15 Sep 2008 14:26:22 +0000 (UTC) (envelope-from reinhard.haller@interactive-net.de) Received: from interactive.dnsalias.net (ppp-82-135-81-252.dynamic.mnet-online.de [82.135.81.252]) by mrelayeu.kundenserver.de (node=mrelayeu4) with ESMTP (Nemesis) id 0ML21M-1KfEpb1ooe-00084u; Mon, 15 Sep 2008 16:13:35 +0200 Received: from fs-inter.interactive.de ([192.168.0.1]) by interactive.dnsalias.net with smtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1KfEpa-000FLy-Gv; Mon, 15 Sep 2008 16:13:34 +0200 Received: from Core2Duo (core2duo.interactive.de [192.168.0.196]) by fs-inter.interactive.de; Mon, 15 Sep 2008 16:13:26 +0200 From: "Reinhard Haller" To: Date: Mon, 15 Sep 2008 16:13:05 +0200 Message-ID: <000b01c9173d$2ec50ec0$8c4f2c40$@haller@interactive-net.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AckXPSuwAtZ/ZWbuQRyvg+Sz0M+ENg== Content-Language: de X-ACL-rcpt: garga@freebsd.org X-ACL-rcpt: ports@freebsd.org X-ACL-Send: reinhard.haller@interactive-net.de X-Provags-ID: V01U2FsdGVkX19hwakAZQkkOCplefvO9iFJEHpiiRFIgExahHu 7ONfBZNL3ccSi2I7jfkM4lPjiUby48bUqxYiY1gnbanaJ44vCb h4aKaduW05HJna0WFUydY1Kg2/VqweJ9wnkBbrRgHLpW5rZkJ0 Buw== Cc: ports@FreeBSD.org Subject: FreeBSD Port: clamav-0.93.3 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, 15 Sep 2008 14:26:22 -0000 Hi, is there any reason why clamav-0.94 is not supported in the ports? Portaudit and clamav report security deficiencies! Greetings Reinhard Haller -----=20 Dipl. Inform. Reinhard Haller INTERACTIVE Computer Systems GmbH Gesellschaft f=FCr Systemtechnik Hermann-Hesse-Str. 5 85551 Kirchheim b. M=FCnchen Tel.: 089/904885-0 Mob.: 0171/8022551 Fax: 089/904885-22 mailto: reinhard.haller@interactive-net.de Angaben gem=E4=DF EHUG: Gesch=E4ftsf=FChrer: Reinhard Haller eingetragen: Amtsgericht M=FCnchen, HRB 70987 USt-ID: DE129385991 From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 14:36: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 A58961065672 for ; Mon, 15 Sep 2008 14:36:47 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id 194488FC13 for ; Mon, 15 Sep 2008 14:36:46 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [IPv6:::1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m8FEaN5d080608 for ; Mon, 15 Sep 2008 10:36:41 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: ports@freebsd.org Date: Mon, 15 Sep 2008 10:36:19 -0400 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809151036.19674.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [IPv6:::1]); Mon, 15 Sep 2008 10:36:41 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.1/8247/Mon Sep 15 08:04:53 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=4.2 tests=BAYES_00,NO_RELAYS autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Subject: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 15 Sep 2008 14:36:47 -0000 So I upgraded my desktop machine at home from 6.x -> 7.x this weekend. As part of that I do my usual (albeit archaic) practice of just deleting all packages and rebuilding everything from ports. I also decided to try out kde4 instead of kde3. I "discovered" during this process that ports that were built as dependencies no longer pop up the dialog box to set OPTIONS, etc. during a build. Only the "top-level" port does so. I'm curious if this is a bug or a feature? I think it might be a bug. I'm not super familiar with bsd.port.mk, but I think that this bit of the Makefile might cause this behavior: ################################################################ # # Do preliminary work to detect if we need to run the config # target or not. # ################################################################ .if (!defined(OPTIONS) || defined(CONFIG_DONE) || \ defined(PACKAGE_BUILDING) || defined(BATCH)) _OPTIONS_OK=yes .endif ... .for target in extract patch configure build install package .if !target(${target}) && defined(_OPTIONS_OK) ${target}: ${${target:U}_COOKIE} .elif !target(${target}) ${target}: config-conditional @cd ${.CURDIR} && ${MAKE} CONFIG_DONE=1 ${__softMAKEFLAGS} ${${target:U} _COOKIE} .elif target(${target}) && defined(IGNORE) .endif I think this has the side effect that 'CONFIG_DONE=1' is passed to the make invocations used to build dependencies via the MAKEFLAGS environment variable, so dependency ports always have CONFIG_DONE set from the get go. Thus, they never invoke the config-conditional target. My guess is that the intention was that this CONFIG_DONE wasn't supposed to "leak" from a port to its depencies, but I think that is what is happening. -- John Baldwin From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 14:47: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 DE2BB106567D; Mon, 15 Sep 2008 14:47:58 +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 677CE8FC29; Mon, 15 Sep 2008 14:47:58 +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 6CD3EFBEC34; Mon, 15 Sep 2008 17:47:57 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 5EE1712E4677; Mon, 15 Sep 2008 17:47:57 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: sysutils/xsu X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/xsu-0.2.4_2.log X-QAT-Build_Reason: QA Run Message-Id: <20080915144757.5EE1712E4677@quark.ds9.tecnik93.com> Date: Mon, 15 Sep 2008 17:47:57 +0300 (EEST) Cc: Subject: sysutils/xsu - fails: mtree 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, 15 Sep 2008 14:47:59 -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/xsu-0.2.4_2.log : building xsu-0.2.4_2 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/sysutils/xsu Makefile ident: $FreeBSD: ports/sysutils/xsu/Makefile,v 1.10 2008/06/06 14:03:26 edwin Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Mon Sep 15 14:46:57 UTC 2008 ................................................... ===> xsu-0.2.4_2 depends on shared library: xml.5 - found ===> xsu-0.2.4_2 depends on shared library: Imlib.5 - found ===> xsu-0.2.4_2 depends on shared library: ORBit.2 - found ===> Generating temporary packing list ===> Checking if sysutils/xsu already installed - I n s t a l l i n g -------------------------------------- install -d /usr/local/bin install -c -m 755 bin/xsu /usr/local/bin - I n s t a l l i n g D o c u m e n t a t i o n ---------- install -d /usr/local/man/man8 install -d /usr/local/share/doc/xsu install -c -m 644 doc/man/xsu.8 /usr/local/man/man8/xsu.8 install -c -m 644 README AUTHORS doc/html/xsu_doc.html doc/html/xsu_example.jpg doc/html/xsu_example2.png doc/html/xsu_example3.png doc/html/xsu_in_gmenu.jpg /usr/local/share/doc/xsu/ - I n s t a l l a t i o n c o m p l e t e ---------------- Now read the README file install -o root -g wheel -m 444 /work/a/ports/sysutils/xsu/work/xsu-0.2.4/xsu.desktop /usr/local/share/gnome/apps/System ===> Compressing manual pages for xsu-0.2.4_2 ===> Registering installation for xsu-0.2.4_2 ================================================================ ======================================== ===> Building package for xsu-0.2.4_2 Creating package /tmp/packages/All/xsu-0.2.4_2.tbz Registering depends: gnome-libs-1.4.2_12 esound-0.2.40 libaudiofile-0.2.6 imlib-1.9.15_7 gtk-1.2.10_20 ORBit-0.5.17_4 rarian-0.8.1 getopt-1.1.4_1 bash-3.2.39_1 gettext-0.17_1 libxslt-1.1.24_1 libxml2-2.6.32 libiconv-1.11_1 glib-1.2.10_12 libungif-4.1.4_5 libXpm-3.5.7 libXt-1.0.5_1 libSM-1.0.3_1,1 libICE-1.0.4_1,1 libXi-1.1.3,1 libXext-1.0.3,1 libX11-1.1.3_1,1 libXdmcp-1.0.2_1 libXau-1.0.3_2 xproto-7.0.10_1 libxml-1.8.17_4 pkg-config-0.23_1 tiff-3.8.2_1 jpeg-6b_7 png-1.2.31 perl-5.8.8_1 python25-2.5.2_3 gnomehier-2.3_10 docbook-sk-4.1.2_4 docbook-xsl-1.74.0 docbook-xml-4.2_1 sdocbook-xml-1.1,1 xmlcatmgr-2.2 inputproto-1.4.2.1 kbproto-1.0.3 xextproto-7.0.2. Creating bzip'd tar ball in '/tmp/packages/All/xsu-0.2.4_2.tbz' Deleting xsu-0.2.4_2 ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 9680260 4 drwxr-xr-x 2 root wheel 512 Sep 15 14:47 usr/local/share/doc/xsu 9680261 12 -rw-r--r-- 1 root wheel 4492 Sep 15 14:47 usr/local/share/doc/xsu/README 9680262 4 -rw-r--r-- 1 root wheel 1334 Sep 15 14:47 usr/local/share/doc/xsu/AUTHORS 9680263 20 -rw-r--r-- 1 root wheel 8436 Sep 15 14:47 usr/local/share/doc/xsu/xsu_doc.html 9680264 24 -rw-r--r-- 1 root wheel 11629 Sep 15 14:47 usr/local/share/doc/xsu/xsu_example.jpg 9680265 36 -rw-r--r-- 1 root wheel 16465 Sep 15 14:47 usr/local/share/doc/xsu/xsu_example2.png 9680267 48 -rw-r--r-- 1 root wheel 22921 Sep 15 14:47 usr/local/share/doc/xsu/xsu_example3.png 9680269 56 -rw-r--r-- 1 root wheel 28228 Sep 15 14:47 usr/local/share/doc/xsu/xsu_in_gmenu.jpg ================================================================ build of /usr/ports/sysutils/xsu ended at Mon Sep 15 14:47:56 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Mon Sep 15 14:51: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 F34491065677 for ; Mon, 15 Sep 2008 14:51:42 +0000 (UTC) (envelope-from llc2w@virginia.edu) Received: from fork2.mail.virginia.edu (fork2.mail.Virginia.EDU [128.143.2.192]) by mx1.freebsd.org (Postfix) with ESMTP id AE41F8FC20 for ; Mon, 15 Sep 2008 14:51:42 +0000 (UTC) (envelope-from llc2w@virginia.edu) Received: from localhost (localhost [127.0.0.1]) by fork2.mail.virginia.edu (Postfix) with ESMTP id 835811BF8E for ; Mon, 15 Sep 2008 10:32:16 -0400 (EDT) Received: from fork2.mail.virginia.edu ([127.0.0.1]) by localhost (fork2.mail.virginia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21229-08 for ; Mon, 15 Sep 2008 10:32:16 -0400 (EDT) Received: from rn-out-0910.google.com (rn-out-0910.google.com [64.233.170.190]) by fork2.mail.virginia.edu (Postfix) with ESMTP id 55F141BFCF for ; Mon, 15 Sep 2008 10:32:16 -0400 (EDT) Received: by rn-out-0910.google.com with SMTP id j71so1554577rne.4 for ; Mon, 15 Sep 2008 07:32:16 -0700 (PDT) Received: by 10.86.82.6 with SMTP id f6mr6019437fgb.38.1221489135538; Mon, 15 Sep 2008 07:32:15 -0700 (PDT) Received: by 10.86.31.14 with HTTP; Mon, 15 Sep 2008 07:32:15 -0700 (PDT) Message-ID: <792298050809150732h4904d25o5c6cbab0b42fc1b4@mail.gmail.com> Date: Mon, 15 Sep 2008 10:32:15 -0400 From: "L Campbell" To: "Reinhard Haller" In-Reply-To: <-3174256778097416817@unknownmsgid> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: base64 Content-Disposition: inline References: <-3174256778097416817@unknownmsgid> X-UVA-Virus-Scanned: by amavisd-new at fork2.mail.virginia.edu Cc: ports@freebsd.org, garga@freebsd.org Subject: Re: FreeBSD Port: clamav-0.93.3 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, 15 Sep 2008 14:51:43 -0000 aHR0cDovL3d3dy5mcmVlYnNkLm9yZy9jZ2kvZ2V0bXNnLmNnaT9mZXRjaD00NjIxNDgrNDY1MjU1 Ky91c3IvbG9jYWwvd3d3L2RiL3RleHQvMjAwOC9mcmVlYnNkLXBvcnRzLzIwMDgwOTE0LmZyZWVi c2QtcG9ydHMKCnwgMjAwOC85LzExIFJvbWFuIEV2c3RpZ25lamV2IDxyb21hbmVAc21wYmFuay5s dj46CnwgPiBXaHkgaXQgdGFrZXMgc28gbG9uZyB0aW1lIHRvIHJlbGVhc2UgbmV3IHBvcnQgYWZ0 ZXIgQ2xhbWF2IHRlYW0gcmVsZWFzZWQKfCA+IDAuOTQgdmVyc2lvbj8KfAp8IENsYW1hdiAwLjk0 IGlzIG91dCBzaW5jZSBhIHdlZWsgYW5kIHR3byBkYXlzIG9ubHksIGFtIEkgcmlnaHQgPyBUaGF0 J3MKfCBub3QgInNvIGxvbmcgdGltZSIuCnwgV2UncmUgYWxzbyBpbiBwb3J0cyBmcmVlemUgZm9y IHNvbWUgZGF5cy9mZXcgd2Vla3MsIHNvIGl0IHdvbid0IGJlCnwgdXBkYXRlZCBiZWZvcmUgdGhl IHBvcnRzIHRyZWUgaXMgdW5mcm96ZW4gKHVubGVzcyB0aGVyZSBhcmUKfCBzZWN1cml0eS9zdGFi aWxpdHkgcmlza3MpLgp8IEFzIGEgY29tcGFyaXNvbiwgdGhlIGRlYmlhbiBzdGFibGUgKGV0Y2gp IHZlcnNpb24gb2YgY2xhbWF2IGlzIHN0aWxsIDAuOTAuMS4KfCBEb24ndCBwYW5pYyB3aGVuIHlv dSBzZWUgIllvdXIgQ2xhbUFWIGluc3RhbGxhdGlvbiBpcyBPVVREQVRFRCIgaW4KY2xhbWF2IGxv Z3MuCnwKfCBDaGVlcnMsCnwgT2xpdmllcgoKT24gTW9uLCBTZXAgMTUsIDIwMDggYXQgMTA6MTMg QU0sIFJlaW5oYXJkIEhhbGxlcgo8cmVpbmhhcmQuaGFsbGVyQGludGVyYWN0aXZlLW5ldC5kZT4g d3JvdGU6Cj4gSGksCj4KPiBpcyB0aGVyZSBhbnkgcmVhc29uIHdoeSBjbGFtYXYtMC45NCBpcyBu b3Qgc3VwcG9ydGVkIGluIHRoZSBwb3J0cz8KPgo+IFBvcnRhdWRpdCBhbmQgY2xhbWF2IHJlcG9y dCBzZWN1cml0eSBkZWZpY2llbmNpZXMhCj4KPiBHcmVldGluZ3MKPiBSZWluaGFyZCBIYWxsZXIK Pgo+IC0tLS0tCj4gRGlwbC4gSW5mb3JtLiBSZWluaGFyZCBIYWxsZXIKPiBJTlRFUkFDVElWRSBD b21wdXRlciBTeXN0ZW1zIEdtYkgKPiBHZXNlbGxzY2hhZnQgZsO8ciBTeXN0ZW10ZWNobmlrCj4K PiBIZXJtYW5uLUhlc3NlLVN0ci4gNQo+IDg1NTUxIEtpcmNoaGVpbSBiLiBNw7xuY2hlbgo+Cj4g VGVsLjogMDg5LzkwNDg4NS0wCj4gTW9iLjogMDE3MS84MDIyNTUxCj4gRmF4OiAwODkvOTA0ODg1 LTIyCj4KPiBtYWlsdG86IHJlaW5oYXJkLmhhbGxlckBpbnRlcmFjdGl2ZS1uZXQuZGUKPgo+IEFu Z2FiZW4gZ2Vtw6TDnyBFSFVHOgo+IEdlc2Now6RmdHNmw7xocmVyOiBSZWluaGFyZCBIYWxsZXIK PiBlaW5nZXRyYWdlbjogQW10c2dlcmljaHQgTcO8bmNoZW4sIEhSQiA3MDk4Nwo+IFVTdC1JRDog REUxMjkzODU5OTEKPgo+Cj4gX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX19fX18KPiBmcmVlYnNkLXBvcnRzQGZyZWVic2Qub3JnIG1haWxpbmcgbGlzdAo+IGh0dHA6 Ly9saXN0cy5mcmVlYnNkLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2ZyZWVic2QtcG9ydHMKPiBUbyB1 bnN1YnNjcmliZSwgc2VuZCBhbnkgbWFpbCB0byAiZnJlZWJzZC1wb3J0cy11bnN1YnNjcmliZUBm cmVlYnNkLm9yZyIKPgo= From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 15:02:17 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 7316E106564A for ; Mon, 15 Sep 2008 15:02:17 +0000 (UTC) (envelope-from clint@0lsen.net) Received: from belle.0lsen.net (belle.0lsen.net [75.150.32.89]) by mx1.freebsd.org (Postfix) with ESMTP id 4BE2D8FC16 for ; Mon, 15 Sep 2008 15:02:17 +0000 (UTC) (envelope-from clint@0lsen.net) Received: by belle.0lsen.net (Postfix, from userid 1001) id A99E37939E; Mon, 15 Sep 2008 08:02:10 -0700 (PDT) Date: Mon, 15 Sep 2008 08:02:10 -0700 From: Clint Olsen To: openoffice@FreeBSD.org, ports@freebsd.org Message-ID: <20080915150210.GA94653@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Organization: NULlsen Network X-Disclaimer: Mutt Bites! X-0lsen-net-MailScanner-Information: Please contact the ISP for more information X-MailScanner-ID: A99E37939E.16C34 X-0lsen-net-MailScanner: Found to be clean X-0lsen-net-MailScanner-From: clint@0lsen.net X-Spam-Status: No Cc: Subject: Issue building editors/openoffice.org-3-RC 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, 15 Sep 2008 15:02:17 -0000 Hi: I received the following error building OO: 1 module(s): instsetoo_native need(s) to be rebuilt Reason(s): ERROR: error 65280 occurred while making /usr/ports/editors/openoffice.org-3-RC/work/OOO300_m5/instsetoo_native/util Attention: if you build and deliver the above module(s) you may prolongue your the build issuing command "build --from instsetoo_native" rmdir /tmp/26327 *** Error code 1 And from the logfile: *************************************************************** ERROR: Could not register all components for file services.rdb (gid_Starregistry_Services_Rdb)! in function: create_services_rdb *************************************************************** I have no idea what this means... Platform is: 6.3-STABLE #0: Sun May 25 21:55:57 PDT 2008 /usr/obj/usr/src/sys/GENERIC i386 Thanks, -Clint -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 15:07:32 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 DC94A1065671 for ; Mon, 15 Sep 2008 15:07:32 +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 CB64C8FC0C for ; Mon, 15 Sep 2008 15:07:32 +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.2/8.14.2) with ESMTP id m8FF7Wub016224 for ; Mon, 15 Sep 2008 15:07:32 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8FF7WOr016220 for freebsd-ports@FreeBSD.org; Mon, 15 Sep 2008 15:07:32 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 15 Sep 2008 15:07:32 GMT Message-Id: <200809151507.m8FF7WOr016220@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, 15 Sep 2008 15:07:32 -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/127386 graphics/opendx does not build f ports/127324 [PATCH] security/apache-xml-security-c: update to 1.4. 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/127238 [update] net/p5-SOAP-Lite: upgrade from version 0.69 t o ports/127193 New port: editors/emacs-nox11 Emacs built without X11 f ports/127182 shells/ksh93 fails to build f ports/127181 audio/musicpd logs warning o ports/127089 sysutils/heartbeat does not compile o ports/127087 mail/bincimap port does not include an rc.d file o ports/127075 comms/qpage segmentation fault due to freeing already- f ports/127018 Linuxulator incapable of using FreeBSD's LDAP environm o ports/126922 devel/libusb : update for Network UPS Tools f ports/126890 port update: lang/cmucl o ports/126872 New port: lang/linux-tcl84 f ports/126867 security/sshguard-pf 1.1 fails to detect attempted log f ports/126840 [PATCH] update sysutils/fusefs-wdfs to use neon28 if p f ports/126839 ports/misc/ezload - update: add hardware support for r f ports/126805 audio/Teamspeak_server port runs as root by default o ports/126732 [patch] archivers/rpm5 update (build depends) f ports/126706 multimedia/libdvdcss unusable on RELENG_7 o ports/126674 New port: print/latex-babel o ports/126673 New port: print/latex-supertabular o ports/126655 java/jboss4 can not take standard parameter "-b host_n o ports/126628 sysutils/heartbeat incorrect detect interfaces during f ports/126532 devel/tclxml-libxml2 - do not found libtclxmlstub o ports/126520 textproc/flex is conflicts with system flex and have A f ports/126518 Unbroke archivers/lzo2 on i386 o ports/126513 print/ghostscript-gpl - ghostscript - gpl - compile bu s ports/126476 [update] net-mgmt/nrpe2: Update to 2.12; add 'reload' o ports/126345 ports mail/libpst not post Outlook 2003 compatible f ports/126322 [patch] sysutils/fusefs-kmod: Make install location co o ports/126291 [Update]lang/py-mx-base:update to 3.1.1 o ports/126273 Utilize MASTER_SITES abbreviations. f ports/126228 [PATCH] mail/courier: new version 0.60.0 f ports/126196 sysutils/heartbeat: port 1.2.5 rev3 problem with libne f ports/126161 security/bsp_upektfmess does not work on 7.0 o ports/126141 [patch] security/dirmngr update to 1.0.2 f ports/126058 net/generic-nqs fails to compile f ports/126055 x11-toolkits/p5-Tk - segmentation fault running perl-t o ports/126040 update sysutils/linux-megacli f ports/125960 sysutils/syscp lacks of chattr/chflags o ports/125719 shells/pdksh, zombie process's occouring on SMP Machin o ports/125714 [patch] www/httptunnel: users not added o ports/125705 semi new port: resurrect graphics/mesagl in a mangled f ports/125594 net-p2p/Amule2 port is outdated f ports/125362 New port: devel/ocaml-lwt (cooperative threading libra o ports/125348 lang/nawk: support multibyte charsets in tolower/toupp o ports/125324 editors/the (3.2) looses cursor when compiled with PDC o ports/125201 audio/aqualung crashes f ports/125111 [PATCH] graphics/gdal: cyclic dependency and wrong opt o ports/124905 new port: databases/sqlitejdbc 051 f ports/124901 [patch] sysutils/fusefs-kmod dataloss on write shortly o ports/124864 print/ghostscript-gpl fails to install if ESC/Page dri 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/124428 palm/jpilot configure error when checking for pilot-li f ports/124423 multimedia/mplayer detection of OSS Audio is faulty f ports/124083 net/vnc is not building the xorg vnc module f ports/124082 [UPDATE]: audio/qmpdclient Update to new release, 1.0. o ports/124061 [patch]: lang/mlton (new features) o ports/124000 [patch] update net/isc-dhcp3-server to 3.0.7 and reset f ports/123756 [patch] put devel/libffi includes in sane place o ports/123437 comms/qpage -- hangup problems and ident requests 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 o ports/122907 [patch] sysutils/fusefs-kmod dataloss on write shortly o ports/122824 [new port] add news/husky-htick-devel port f ports/122701 New port: www/mod_wombat "Apache Lua module" f ports/122596 devel/python: Python hangs when importing pygtk f ports/122276 Compiled audio/musicpd segfaults on FreeBSD 7.0 f ports/121405 Update graphics/gmt to newer version (4.2.1) 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/121194 math/arpack - Patch to use ARPACK++ on modern compiler 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/116586 net/isc-dhcp3-server does not work when compiled with 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 s ports/113144 print/ghostscript-gnu dumps core with several output d o ports/110144 New port: math/Matlab7 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 o ports/97254 ports-mgmt/porttools - wrong prefix s ports/85513 Intel C++ compiler not 100% binary compatible with sys o ports/79651 [patch] mail/ssmtp: add per-user smtp authentication c a ports/79351 Character passing error in security/pinentry-qt 91 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 16:07: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 B9DB61065670 for ; Mon, 15 Sep 2008 16:07:17 +0000 (UTC) (envelope-from llc2w@virginia.edu) Received: from fork3.mail.virginia.edu (fork3.mail.Virginia.EDU [128.143.2.193]) by mx1.freebsd.org (Postfix) with ESMTP id 77E0D8FC1D for ; Mon, 15 Sep 2008 16:07:12 +0000 (UTC) (envelope-from llc2w@virginia.edu) Received: from localhost (localhost [127.0.0.1]) by fork3.mail.virginia.edu (Postfix) with ESMTP id 5FC821BEFD for ; Mon, 15 Sep 2008 12:07:11 -0400 (EDT) Received: from fork3.mail.virginia.edu ([127.0.0.1]) by localhost (fork3.mail.virginia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04186-08 for ; Mon, 15 Sep 2008 12:07:11 -0400 (EDT) Received: from yw-out-1718.google.com (yw-out-1718.google.com [74.125.46.152]) by fork3.mail.virginia.edu (Postfix) with ESMTP id 2A9811BF94 for ; Mon, 15 Sep 2008 12:07:11 -0400 (EDT) Received: by yw-out-1718.google.com with SMTP id 5so744565ywr.6 for ; Mon, 15 Sep 2008 09:07:11 -0700 (PDT) Received: by 10.86.26.11 with SMTP id 11mr6132087fgz.12.1221494830172; Mon, 15 Sep 2008 09:07:10 -0700 (PDT) Received: by 10.86.31.14 with HTTP; Mon, 15 Sep 2008 09:07:09 -0700 (PDT) Message-ID: <792298050809150907r5f53fa09r433afc176fb4b368@mail.gmail.com> Date: Mon, 15 Sep 2008 12:07:09 -0400 From: "L Campbell" To: freebsd-ports@freebsd.org, mezz@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-UVA-Virus-Scanned: by amavisd-new at fork3.mail.virginia.edu Cc: Subject: fluxbox unshade crashing GTK2 applications? 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, 15 Sep 2008 16:07:17 -0000 (This probably isn't the right place to ask, but I figured I'd start here and head upstream if necessary). Since updating to fluxbox 1.1.0.1 last night (and x11-toolkits/gtk20 to revision 1), attempting to unshade a shaded GUI application is causing the application to segfault with a BadAlloc X Window System error. This behavior was not observed before updating. Tested with www/firefox3, graphics/gimp and graphics/inkscape. For all three applications, unshading produces the following error -- The program 'gimp' received an X Window System error. This probably reflects a bug in the program. The error was 'BadAlloc (insufficient resources for operation)'. (Details: serial 3250 error_code 11 request_code 53 minor_code 0) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.) I'm not really sure if this is an issue with fluxbox, GTK, or my own configuration. It seems like only GTK2 applications crashing -- audio/aumix uses GTK 1.2 and doesn't crash on unshade. Relevant version information follows, please advise on appropriate course of action :( $ uname -a FreeBSD kanaria.desudesudesu.org 7.0-STABLE FreeBSD 7.0-STABLE #4: Fri Aug 1 17:05:27 EDT 2008 hark@kanaria.desudesudesu.org:/usr/obj/usr/src/sys/KANARIA i386 x11-wm/fluxbox-1.1.0.1 $ fluxbox -version Fluxbox 1.1.0.1 : (c) 2001-2008 Fluxbox Team x11-toolkits/gtk-1.2.10_20 x11-toolkits/gtk-2.12.11_1 www/firefox-3.0.1_1,1 $ firefox3 -version Mozilla Firefox 3.0.1, Copyright (c) 1998 - 2008 mozilla.org graphics/gimp-2.4.7,2 $ gimp --version GNU Image Manipulation Program version 2.4.7 graphics/inkscape-0.46_3 $ inkscape --version Inkscape 0.46 (Jul 6 2008) Let me know if there's anything else I can do to help get this fixed. Thanks :( From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 18: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 E075F106566B for ; Mon, 15 Sep 2008 18:00:22 +0000 (UTC) (envelope-from stsp@stsp.name) Received: from einhorn.in-berlin.de (einhorn.in-berlin.de [192.109.42.8]) by mx1.freebsd.org (Postfix) with ESMTP id 07AC28FC0C for ; Mon, 15 Sep 2008 18:00:21 +0000 (UTC) (envelope-from stsp@stsp.name) X-Envelope-From: stsp@stsp.name X-Envelope-To: Received: from stsp.name (stsp2.in-vpn.de [217.197.85.95]) (authenticated bits=128) by einhorn.in-berlin.de (8.13.6/8.13.6/Debian-1) with ESMTP id m8FHV8p5016029 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Mon, 15 Sep 2008 19:31:09 +0200 Received: from jack.stsp.name (stsp@localhost.stsp.name [127.0.0.1]) by stsp.name (8.14.3/8.14.3) with ESMTP id m8FHV6M1014821 for ; Mon, 15 Sep 2008 19:31:06 +0200 (CEST) Received: (from stsp@localhost) by jack.stsp.name (8.14.3/8.14.3/Submit) id m8FHV5NX025559 for ports@freebsd.org; Mon, 15 Sep 2008 19:31:05 +0200 (CEST) Date: Mon, 15 Sep 2008 19:31:05 +0200 From: Stefan Sperling To: ports@freebsd.org Message-ID: <20080915173105.GA1745@jack.stsp.name> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) X-Scanned-By: MIMEDefang_at_IN-Berlin_e.V. on 192.109.42.8 Cc: Subject: emulators/zsnes is up for grabs 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, 15 Sep 2008 18:00:23 -0000 Hi, I will not have time anymore to maintain emulators/zsnes. There hasn't been a new upstream release for more than a year, so the port is not exactly a maintenance burden. But I probably won't be able to update the port quickly should a new release become available. So if anyone wants to take the port, please do so. Thanks, Stefan From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 18:00: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 F06E5106566C for ; Mon, 15 Sep 2008 18:00:37 +0000 (UTC) (envelope-from freebsd@optiksecurite.com) Received: from relais.videotron.ca (relais.videotron.ca [24.201.245.36]) by mx1.freebsd.org (Postfix) with ESMTP id CB8448FC1D for ; Mon, 15 Sep 2008 18:00:37 +0000 (UTC) (envelope-from freebsd@optiksecurite.com) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1; format=flowed Received: from [192.168.10.102] ([74.56.107.65]) by VL-MO-MR005.ip.videotron.ca (Sun Java(tm) System Messaging Server 6.3-4.01 (built Aug 3 2007; 32bit)) with ESMTP id <0K78001H8XVGQFB0@VL-MO-MR005.ip.videotron.ca> for freebsd-ports@freebsd.org; Mon, 15 Sep 2008 12:59:40 -0400 (EDT) Message-id: <48CE949F.9060002@optiksecurite.com> Date: Mon, 15 Sep 2008 13:00:15 -0400 From: FreeBSD User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) To: freebsd-ports@freebsd.org Subject: Multiple installation of one 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, 15 Sep 2008 18:00:38 -0000 Hi everyone, I've been asked by a customer to install Drupal on one server to manage a new site. No problem yet. But, he also asked if it would be possible to install it for other sites. I know that there is a warning if you want to install a port that is already installed, but is there a way to bypass this? I know I could install it from the tarball from the website, but I want to be able to use portupgrade and portaudit to deal with it. Any suggestions? Thank you for your time, Martin From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 18:34:50 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 0F08B106564A for ; Mon, 15 Sep 2008 18:34:50 +0000 (UTC) (envelope-from cyberbotx@cyberbotx.com) Received: from QMTA08.westchester.pa.mail.comcast.net (qmta08.westchester.pa.mail.comcast.net [76.96.62.80]) by mx1.freebsd.org (Postfix) with ESMTP id 53AE78FC27 for ; Mon, 15 Sep 2008 18:34:48 +0000 (UTC) (envelope-from cyberbotx@cyberbotx.com) Received: from OMTA06.westchester.pa.mail.comcast.net ([76.96.62.51]) by QMTA08.westchester.pa.mail.comcast.net with comcast id F5bo1a00816LCl0586aoRR; Mon, 15 Sep 2008 18:34:48 +0000 Received: from kirby.cyberbotx.com ([68.43.195.82]) by OMTA06.westchester.pa.mail.comcast.net with comcast id F6am1a0051n8LeU3S6am6v; Mon, 15 Sep 2008 18:34:48 +0000 X-Authority-Analysis: v=1.0 c=1 a=6I5d2MoRAAAA:8 a=8Uy65VccIEXlayU24rwA:9 a=O6TbACvMEissASVH9b4A:7 a=C7y5JVbnLL7HK3ecGdOfHp8sehIA:4 a=SV7veod9ZcQA:10 a=ufO146cb3fEA:10 Message-ID: <48CEAAC5.2000107@cyberbotx.com> Date: Mon, 15 Sep 2008 14:34:45 -0400 From: Naram Qashat User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: Stefan Sperling References: <20080915173105.GA1745@jack.stsp.name> In-Reply-To: <20080915173105.GA1745@jack.stsp.name> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: emulators/zsnes is up for grabs 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, 15 Sep 2008 18:34:50 -0000 Stefan Sperling wrote: > Hi, > > I will not have time anymore to maintain emulators/zsnes. > > There hasn't been a new upstream release for more than a year, > so the port is not exactly a maintenance burden. But I probably > won't be able to update the port quickly should a new release > become available. > > So if anyone wants to take the port, please do so. I'd be willing to do so. I have been following ZSNES's development for a while on their message boards, and I have submitted a few updates to the port in the past. Thanks, Naram Qashat > Thanks, > Stefan > _______________________________________________ > 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 Mon Sep 15 18:55:00 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 EEF7C106568F for ; Mon, 15 Sep 2008 18:55:00 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmpop110.cox.net (eastrmpop110.cox.net [68.230.240.52]) by mx1.freebsd.org (Postfix) with ESMTP id 8282D8FC0A for ; Mon, 15 Sep 2008 18:55:00 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo03.cox.net ([68.1.16.126]) by eastrmmtao101.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20080915183555.QOOP11636.eastrmmtao101.cox.net@eastrmimpo03.cox.net>; Mon, 15 Sep 2008 14:35:55 -0400 Received: from mezz.mezzweb.com ([68.103.35.214]) by eastrmimpo03.cox.net with bizsmtp id F6bj1a00M4dCcn0026bklk; Mon, 15 Sep 2008 14:35:44 -0400 X-Authority-Analysis: v=1.0 c=1 a=JH9z_NcPetQA:10 a=iB6sH3V1qC0A:10 a=6I5d2MoRAAAA:8 a=BCneNIIqeaG58Abmn8oA:9 a=Tx-4aSpLArVDSzAQYOUA:7 a=_afNpYUTGmCkHlQaKSkEAPd4b4MA:4 a=CVrfAwbdCTgA:10 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 a=LY0hPdMaydYA:10 X-CM-Score: 0.00 Date: Mon, 15 Sep 2008 13:35:41 -0500 To: "L Campbell" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8 MIME-Version: 1.0 References: <792298050809150907r5f53fa09r433afc176fb4b368@mail.gmail.com> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <792298050809150907r5f53fa09r433afc176fb4b368@mail.gmail.com> User-Agent: Opera Mail/9.52 (Linux) Cc: freebsd-ports@freebsd.org Subject: Re: fluxbox unshade crashing GTK2 applications? 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, 15 Sep 2008 18:55:01 -0000 On Mon, 15 Sep 2008 11:07:09 -0500, L Campbell wrote: > (This probably isn't the right place to ask, but I figured I'd start > here and head upstream if necessary). > > Since updating to fluxbox 1.1.0.1 last night (and x11-toolkits/gtk20 > to revision 1), attempting to unshade a shaded GUI application is > causing the application to segfault with a BadAlloc X Window System > error. This behavior was not observed before updating. Tested with > www/firefox3, graphics/gimp and graphics/inkscape. For all three > applications, unshading produces the following error -- > > The program 'gimp' received an X Window System error. > This probably reflects a bug in the program. > The error was 'BadAlloc (insufficient resources for operation)'. > (Details: serial 3250 error_code 11 request_code 53 minor_code 0) > (Note to programmers: normally, X errors are reported asynchronously; > that is, you will receive the error a while after causing it. > To debug your program, run it with the --sync command line > option to change this behavior. You can then get a meaningful > backtrace from your debugger if you break on the gdk_x_error() > function.) > > I'm not really sure if this is an issue with fluxbox, GTK, or my own > configuration. It seems like only GTK2 applications crashing -- > audio/aumix uses GTK 1.2 and doesn't crash on unshade. Relevant > version information follows, please advise on appropriate course of > action :( > > $ uname -a > FreeBSD kanaria.desudesudesu.org 7.0-STABLE FreeBSD 7.0-STABLE #4: Fri > Aug 1 17:05:27 EDT 2008 > hark@kanaria.desudesudesu.org:/usr/obj/usr/src/sys/KANARIA i386 > > x11-wm/fluxbox-1.1.0.1 > $ fluxbox -version > Fluxbox 1.1.0.1 : (c) 2001-2008 Fluxbox Team > > x11-toolkits/gtk-1.2.10_20 > x11-toolkits/gtk-2.12.11_1 > > www/firefox-3.0.1_1,1 > $ firefox3 -version > Mozilla Firefox 3.0.1, Copyright (c) 1998 - 2008 mozilla.org > > graphics/gimp-2.4.7,2 > $ gimp --version > GNU Image Manipulation Program version 2.4.7 > > graphics/inkscape-0.46_3 > $ inkscape --version > Inkscape 0.46 (Jul 6 2008) > > Let me know if there's anything else I can do to help get this fixed. > Thanks :( Try to fetch this patch and put in x11-wm/fluxbox/files/, then reinstall fluxbox. It was took from its git. http://people.freebsd.org/~mezz/diff/patch-fix_unshading_crash Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 19:52: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 934BE106569E; Mon, 15 Sep 2008 19:52:11 +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 093298FC18; Mon, 15 Sep 2008 19:52:10 +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 DAD3AFBEC3F; Mon, 15 Sep 2008 22:52:09 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id CC6A012E4678; Mon, 15 Sep 2008 22:52:09 +0300 (EEST) From: QAT@FreeBSD.org To: gahr@FreeBSD.org In-Reply-To: <200809151950.m8FJo9Kk049391@repoman.freebsd.org> References: In-Reply-To: <200809151950.m8FJo9Kk049391@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/bjorb X-QAT-Fail_Reason: install_error X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/bjorb-0.5.5p1.log X-QAT-Build_Reason: Commit Message-Id: <20080915195209.CC6A012E4678@quark.ds9.tecnik93.com> Date: Mon, 15 Sep 2008 22:52:09 +0300 (EEST) Cc: ports@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/bjorb Makefile ports/security/bjorb/files patch-log.cc 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, 15 Sep 2008 19:52:12 -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/bjorb-0.5.5p1.log : building bjorb-0.5.5p1 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/security/bjorb Makefile ident: $FreeBSD: ports/security/bjorb/Makefile,v 1.27 2008/09/15 19:50:08 gahr Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Mon Sep 15 19:51:26 UTC 2008 ................................................... This port has installed the following files which may act as network servers and may therefore pose a remote security risk to the system. /usr/local/sbin/bjorb This port has installed the following startup scripts which may cause these network services to be started at boot time. /usr/local/etc/rc.d/bjorb.sh.sample If there are vulnerabilities in these programs there may be a security risk to the system. FreeBSD makes no guarantee about the security of ports included in the Ports Collection. Please type 'make deinstall' to deinstall the port if this is a concern. For more information, and contact details about the security status of this software, see the following webpage: http://www.hitachi-ms.co.jp/bjorb/ ================================================================ ======================================== ===> Building package for bjorb-0.5.5p1 tar: share/doc/bjorb/ChangeLog: Cannot stat: No such file or directory tar: share/doc/bjorb/COPYRIGHT: Cannot stat: No such file or directory tar: share/doc/bjorb/INSTALL: Cannot stat: No such file or directory tar: share/doc/bjorb/README: Cannot stat: No such file or directory tar: share/doc/bjorb/ChangeLog.jp: Cannot stat: No such file or directory tar: share/doc/bjorb/COPYRIGHT.jp: Cannot stat: No such file or directory tar: share/doc/bjorb/INSTALL.jp: Cannot stat: No such file or directory tar: share/doc/bjorb/README.jp: Cannot stat: No such file or directory tar: share/doc/bjorb/bjorb.conf.5.jp.txt: Cannot stat: No such file or directory tar: share/doc/bjorb/features.jp: Cannot stat: No such file or directory tar: share/examples/bjorb/bjorb.conf.doc: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. pkg_create: make_dist: tar command failed with code 256 Creating package /tmp/packages/All/bjorb-0.5.5p1.tbz Registering depends: perl-5.8.8_1. Creating bzip'd tar ball in '/tmp/packages/All/bjorb-0.5.5p1.tbz' *** Error code 1 Stop in /a/ports/security/bjorb. ================================================================ build of /usr/ports/security/bjorb ended at Mon Sep 15 19:52:08 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Mon Sep 15 19:59: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 AD2861065672 for ; Mon, 15 Sep 2008 19:59:09 +0000 (UTC) (envelope-from bsd-unix@embarqmail.com) Received: from mailrelay.embarq.synacor.com (mailrelay.embarq.synacor.com [208.47.184.3]) by mx1.freebsd.org (Postfix) with ESMTP id 511E28FC08 for ; Mon, 15 Sep 2008 19:59:09 +0000 (UTC) (envelope-from bsd-unix@embarqmail.com) DKIM-Signature: v=1; a=rsa-sha1; d=embarqmail.com; s=s012408; c=relaxed/simple; q=dns/txt; i=@embarqmail.com; t=1221508748; h=From:Subject:Date:To:Mime-Version:Content-Type; bh=f8grZTqRmjtPgSRVQ6AXieNQVs0=; b=Ghtkv7ZoePq/tKPXkN85Li5VtlHAUIzQO1StIv7o8XGYdWq1GAnNDBmBNK0QZ60b tEdZ2pjrN3gtBLW7b/Gq234no3cCCsfiucAHakjgsYFe379Va/lDsZJv4w8RXqWw; X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.0 c=1 a=JH9z_NcPetQA:10 a=iB6sH3V1qC0A:10 a=6I5d2MoRAAAA:8 a=aCSnKr5PoqUzJanLD6UA:9 a=rchsb-Kr_O-lSkWGYOkA:7 a=BPG69BCSiJ5MOwygJgft1umXOrIA:4 a=CVrfAwbdCTgA:10 a=4vB-4DCPJfMA:10 a=LY0hPdMaydYA:10 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp07.embarq.synacor.com smtp.user=rpratt1950@embarqmail.com; auth=pass (LOGIN) Received: from [74.4.78.58] ([74.4.78.58:53585] helo=kt.weeeble.com) by mailrelay.embarq.synacor.com (envelope-from ) (ecelerity 2.2.2.33 r(25932/25934)) with ESMTPA id 98/4C-14712-B8EBEC84; Mon, 15 Sep 2008 15:59:08 -0400 Date: Mon, 15 Sep 2008 15:59:06 -0400 From: Randy Pratt To: "Jeremy Messenger" Message-Id: <20080915155906.5288eaa5.bsd-unix@embarqmail.com> In-Reply-To: References: <792298050809150907r5f53fa09r433afc176fb4b368@mail.gmail.com> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org, L Campbell Subject: Re: fluxbox unshade crashing GTK2 applications? 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, 15 Sep 2008 19:59:09 -0000 On Mon, 15 Sep 2008 13:35:41 -0500 "Jeremy Messenger" wrote: > On Mon, 15 Sep 2008 11:07:09 -0500, L Campbell wrote: > > > (This probably isn't the right place to ask, but I figured I'd start > > here and head upstream if necessary). > > > > Since updating to fluxbox 1.1.0.1 last night (and x11-toolkits/gtk20 > > to revision 1), attempting to unshade a shaded GUI application is > > causing the application to segfault with a BadAlloc X Window System > > error. This behavior was not observed before updating. Tested with > > www/firefox3, graphics/gimp and graphics/inkscape. For all three > > applications, unshading produces the following error -- > > > > The program 'gimp' received an X Window System error. > > This probably reflects a bug in the program. > > The error was 'BadAlloc (insufficient resources for operation)'. > > (Details: serial 3250 error_code 11 request_code 53 minor_code 0) > > (Note to programmers: normally, X errors are reported asynchronously; > > that is, you will receive the error a while after causing it. > > To debug your program, run it with the --sync command line > > option to change this behavior. You can then get a meaningful > > backtrace from your debugger if you break on the gdk_x_error() > > function.) > > > > I'm not really sure if this is an issue with fluxbox, GTK, or my own > > configuration. It seems like only GTK2 applications crashing -- > > audio/aumix uses GTK 1.2 and doesn't crash on unshade. Relevant > > version information follows, please advise on appropriate course of > > action :( > > > > $ uname -a > > FreeBSD kanaria.desudesudesu.org 7.0-STABLE FreeBSD 7.0-STABLE #4: Fri > > Aug 1 17:05:27 EDT 2008 > > hark@kanaria.desudesudesu.org:/usr/obj/usr/src/sys/KANARIA i386 > > > > x11-wm/fluxbox-1.1.0.1 > > $ fluxbox -version > > Fluxbox 1.1.0.1 : (c) 2001-2008 Fluxbox Team > > > > x11-toolkits/gtk-1.2.10_20 > > x11-toolkits/gtk-2.12.11_1 > > > > www/firefox-3.0.1_1,1 > > $ firefox3 -version > > Mozilla Firefox 3.0.1, Copyright (c) 1998 - 2008 mozilla.org > > > > graphics/gimp-2.4.7,2 > > $ gimp --version > > GNU Image Manipulation Program version 2.4.7 > > > > graphics/inkscape-0.46_3 > > $ inkscape --version > > Inkscape 0.46 (Jul 6 2008) > > > > Let me know if there's anything else I can do to help get this fixed. > > Thanks :( > > Try to fetch this patch and put in x11-wm/fluxbox/files/, then reinstall > fluxbox. It was took from its git. > > http://people.freebsd.org/~mezz/diff/patch-fix_unshading_crash I was seeing the same unshading problem with Sylpheed2 with the new fluxbox. The above patch seems to fix it. Oddly, if I ran sylpheed -sync (as the error message suggested for debugging) then the unshading problem disappeared so I wasn't able to do any debugging. Like the OP, I wasn't sure where the problem originated but reverting to an older version of fluxbox eliminated the problem. Thanks for digging out the patch! Randy -- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 20:25:21 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 47DDD106564A for ; Mon, 15 Sep 2008 20:25:21 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with ESMTP id 8D85B8FC14 for ; Mon, 15 Sep 2008 20:25:20 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 964 invoked by uid 399); 15 Sep 2008 19:58:40 -0000 Received: from localhost (HELO lap.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 15 Sep 2008 19:58:40 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <48CEBE6E.1030508@FreeBSD.org> Date: Mon, 15 Sep 2008 12:58:38 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: John Baldwin References: <200809151036.19674.jhb@freebsd.org> In-Reply-To: <200809151036.19674.jhb@freebsd.org> X-Enigmail-Version: 0.95.7 OpenPGP: id=D5B2F0FB Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 15 Sep 2008 20:25:21 -0000 John Baldwin wrote: > So I upgraded my desktop machine at home from 6.x -> 7.x this weekend. As > part of that I do my usual (albeit archaic) practice of just deleting all > packages and rebuilding everything from ports. I also decided to try out > kde4 instead of kde3. I "discovered" during this process that ports that > were built as dependencies no longer pop up the dialog box to set OPTIONS, > etc. during a build. Only the "top-level" port does so. I'm curious if this > is a bug or a feature? Bug, and at first glance I think your analysis is correct about the cause. You can work around this problem by using portmaster since it will go through all the config screens for all the ports in its first pass before it starts building things (and download distfiles in the bg while it does so). This also takes dependencies into account since it does a depth-first traversal of the tree. If you're doing an install from scratch you might also want to blow away the contents of /var/db/ports/*, or if you're using portmaster you could use the --force-config option to re-run config even if there is a stored options file for that port. hth, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 21:50:55 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 638AF106564A for ; Mon, 15 Sep 2008 21:50:55 +0000 (UTC) (envelope-from bms@incunabulum.net) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.freebsd.org (Postfix) with ESMTP id 37A878FC19 for ; Mon, 15 Sep 2008 21:50:55 +0000 (UTC) (envelope-from bms@incunabulum.net) Received: from compute1.internal (compute1.internal [10.202.2.41]) by out1.messagingengine.com (Postfix) with ESMTP id EA5C3163A01 for ; Mon, 15 Sep 2008 17:34:05 -0400 (EDT) Received: from heartbeat2.messagingengine.com ([10.202.2.161]) by compute1.internal (MEProxy); Mon, 15 Sep 2008 17:34:05 -0400 X-Sasl-enc: xDcQeBfW9XHI3zfg3xiAy5JG8yMB4iXGHWglo2KPS3GO 1221514445 Received: from empiric.lon.incunabulum.net (unknown [81.168.51.182]) by mail.messagingengine.com (Postfix) with ESMTPSA id 66537326E6 for ; Mon, 15 Sep 2008 17:34:05 -0400 (EDT) Message-ID: <48CED4CB.5040704@incunabulum.net> Date: Mon, 15 Sep 2008 22:34:03 +0100 From: Bruce M Simpson User-Agent: Thunderbird 2.0.0.14 (X11/20080514) MIME-Version: 1.0 To: ports@freebsd.org X-Enigmail-Version: 0.95.6 Content-Type: multipart/mixed; boundary="------------070408080502070101080704" Cc: Subject: [PATCH] ports/multimedia/pwcbsd install pwc-ioctl.h header 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, 15 Sep 2008 21:50:55 -0000 This is a multi-part message in MIME format. --------------070408080502070101080704 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi. This is needed by stuff like spook which can use pwc specific ioctls. The Phillips webcams have a number of features which "just work better" than other webcams. Thanks BMS --------------070408080502070101080704 Content-Type: text/plain; name="pwcbsd-ioctl.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pwcbsd-ioctl.diff" Index: Makefile =================================================================== RCS file: /home/pcvs/ports/multimedia/pwcbsd/Makefile,v retrieving revision 1.15 diff -u -p -r1.15 Makefile --- Makefile 20 Mar 2008 21:05:48 -0000 1.15 +++ Makefile 15 Sep 2008 21:33:14 -0000 @@ -61,6 +61,7 @@ post-install: ${INSTALL_PROGRAM} ${PROGRAMS:S|^|${WRKSRC}/|} ${PREFIX}/bin ${INSTALL_MAN} ${MAN1:S|^|${WRKSRC}/|} ${PREFIX}/man/man1 .endif + ${INSTALL_DATA} ${WRKSRC}/pwc-ioctl.h ${PREFIX}/include @${CAT} ${PKGMESSAGE} .include Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/multimedia/pwcbsd/pkg-plist,v retrieving revision 1.2 diff -u -p -r1.2 pkg-plist --- pkg-plist 1 Aug 2006 20:36:09 -0000 1.2 +++ pkg-plist 15 Sep 2008 21:33:14 -0000 @@ -1,4 +1,5 @@ %%PROGRAMS%%bin/pwcview +include/pwc-ioctl.h @cwd /boot/modules pwc.ko @exec kldxref %D --------------070408080502070101080704-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 15 22:07: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 0B01A1065674 for ; Mon, 15 Sep 2008 22:07:25 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao102.cox.net (eastrmmtao102.cox.net [68.230.240.8]) by mx1.freebsd.org (Postfix) with ESMTP id BDE998FC1B for ; Mon, 15 Sep 2008 22:07:24 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao102.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20080915220725.ICIX22786.eastrmmtao102.cox.net@eastrmimpo02.cox.net>; Mon, 15 Sep 2008 18:07:25 -0400 Received: from mezz.mezzweb.com ([68.103.35.214]) by eastrmimpo02.cox.net with bizsmtp id FA7P1a00A4dCcn002A7PQX; Mon, 15 Sep 2008 18:07:23 -0400 X-Authority-Analysis: v=1.0 c=1 a=JH9z_NcPetQA:10 a=iB6sH3V1qC0A:10 a=6I5d2MoRAAAA:8 a=EyoaBtG4iBAxjnP1ACQA:9 a=5pYAp4VWu27mPSDray8ncyRzeKAA:4 a=cvn8laQl214A:10 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 a=LY0hPdMaydYA:10 X-CM-Score: 0.00 Date: Mon, 15 Sep 2008 17:07:22 -0500 To: "Randy Pratt" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8 MIME-Version: 1.0 References: <792298050809150907r5f53fa09r433afc176fb4b368@mail.gmail.com> <20080915155906.5288eaa5.bsd-unix@embarqmail.com> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <20080915155906.5288eaa5.bsd-unix@embarqmail.com> User-Agent: Opera Mail/9.52 (Linux) Cc: freebsd-ports@freebsd.org, L Campbell Subject: Re: fluxbox unshade crashing GTK2 applications? 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, 15 Sep 2008 22:07:25 -0000 On Mon, 15 Sep 2008 14:59:06 -0500, Randy Pratt wrote: > On Mon, 15 Sep 2008 13:35:41 -0500 > "Jeremy Messenger" wrote: > >> On Mon, 15 Sep 2008 11:07:09 -0500, L Campbell >> wrote: >> >> > (This probably isn't the right place to ask, but I figured I'd start >> > here and head upstream if necessary). >> > >> > Since updating to fluxbox 1.1.0.1 last night (and x11-toolkits/gtk20 >> > to revision 1), attempting to unshade a shaded GUI application is >> > causing the application to segfault with a BadAlloc X Window System >> > error. This behavior was not observed before updating. Tested with >> > www/firefox3, graphics/gimp and graphics/inkscape. For all three >> > applications, unshading produces the following error -- >> > >> > The program 'gimp' received an X Window System error. >> > This probably reflects a bug in the program. >> > The error was 'BadAlloc (insufficient resources for operation)'. >> > (Details: serial 3250 error_code 11 request_code 53 minor_code 0) >> > (Note to programmers: normally, X errors are reported >> asynchronously; >> > that is, you will receive the error a while after causing it. >> > To debug your program, run it with the --sync command line >> > option to change this behavior. You can then get a meaningful >> > backtrace from your debugger if you break on the gdk_x_error() >> > function.) >> > >> > I'm not really sure if this is an issue with fluxbox, GTK, or my own >> > configuration. It seems like only GTK2 applications crashing -- >> > audio/aumix uses GTK 1.2 and doesn't crash on unshade. Relevant >> > version information follows, please advise on appropriate course of >> > action :( >> > >> > >> > Let me know if there's anything else I can do to help get this fixed. >> > Thanks :( >> >> Try to fetch this patch and put in x11-wm/fluxbox/files/, then reinstall >> fluxbox. It was took from its git. >> >> http://people.freebsd.org/~mezz/diff/patch-fix_unshading_crash > > I was seeing the same unshading problem with Sylpheed2 with the > new fluxbox. The above patch seems to fix it. Oddly, if I ran > sylpheed -sync (as the error message suggested for debugging) then > the unshading problem disappeared so I wasn't able to do any > debugging. > > Like the OP, I wasn't sure where the problem originated but reverting > to an older version of fluxbox eliminated the problem. > > Thanks for digging out the patch! No problem and thank (include to L Campbell too) for test patch. I shall put in ports tree whenever portmgr approves tomorrow or so. I have one more patch that I want to test tonight or tomorrow, before I make request to portmgr. It's for pixmap resource leak in pixmap menu. Cheers, Mezz > Randy -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 01:39:12 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 210F11065675 for ; Tue, 16 Sep 2008 01:39:12 +0000 (UTC) (envelope-from unixmania@gmail.com) Received: from gv-out-0910.google.com (gv-out-0910.google.com [216.239.58.191]) by mx1.freebsd.org (Postfix) with ESMTP id A5A5E8FC12 for ; Tue, 16 Sep 2008 01:39:11 +0000 (UTC) (envelope-from unixmania@gmail.com) Received: by gv-out-0910.google.com with SMTP id n8so1198242gve.39 for ; Mon, 15 Sep 2008 18:39:10 -0700 (PDT) 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=5ASIokllIjl2NXa79YtlLswn21QJEj6Ptzf34RcYP/Q=; b=s7VbSeBJ/5uXVgDW+Jk5CPV+S3fJ0KLg7+c90jlQva3SVUK5baY60D+8j0k8c0zlag yR/4BhqZxMh/+wiomm4x923fmpXpPCKha3bTNX+h3nuFFsU1fPT2bd6VMkexgRg1hG/v jGzzwXZRdDbrd3oejLiXYcL5v0/0yqrsASN+M= 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=HsFYHDB+sClk/w5Wc7NxqgqwNAHBVl4ThWDKPs3Oaiem0OvRwlrHSJf4NjEy5kSkdh KEPGibpS9hjzYnqiNPnkbxO8QuoFPgaZp6wL/mkHInh0N1SIdUQwiNLXFzAQZNt7DGPn u6mRRyJpUOvCzkfUy/5DNfcdlEYV+MpOHe0tE= Received: by 10.103.179.17 with SMTP id g17mr223111mup.71.1221529149460; Mon, 15 Sep 2008 18:39:09 -0700 (PDT) Received: by 10.103.231.14 with HTTP; Mon, 15 Sep 2008 18:39:09 -0700 (PDT) Message-ID: Date: Mon, 15 Sep 2008 22:39:09 -0300 From: "Carlos A. M. dos Santos" To: "Bruce M Simpson" In-Reply-To: <48CED4CB.5040704@incunabulum.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <48CED4CB.5040704@incunabulum.net> Cc: ports@freebsd.org Subject: Re: [PATCH] ports/multimedia/pwcbsd install pwc-ioctl.h header 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, 16 Sep 2008 01:39:12 -0000 On Mon, Sep 15, 2008 at 6:34 PM, Bruce M Simpson wrote: > Hi. > > This is needed by stuff like spook which can use pwc specific ioctls. > > The Phillips webcams have a number of features which "just work better" than > other webcams. > > Thanks > BMS > > Index: Makefile > =================================================================== > RCS file: /home/pcvs/ports/multimedia/pwcbsd/Makefile,v > retrieving revision 1.15 > diff -u -p -r1.15 Makefile > --- Makefile 20 Mar 2008 21:05:48 -0000 1.15 > +++ Makefile 15 Sep 2008 21:33:14 -0000 > @@ -61,6 +61,7 @@ post-install: > ${INSTALL_PROGRAM} ${PROGRAMS:S|^|${WRKSRC}/|} ${PREFIX}/bin > ${INSTALL_MAN} ${MAN1:S|^|${WRKSRC}/|} ${PREFIX}/man/man1 > .endif > + ${INSTALL_DATA} ${WRKSRC}/pwc-ioctl.h ${PREFIX}/include > @${CAT} ${PKGMESSAGE} > > .include > Index: pkg-plist > =================================================================== > RCS file: /home/pcvs/ports/multimedia/pwcbsd/pkg-plist,v > retrieving revision 1.2 > diff -u -p -r1.2 pkg-plist > --- pkg-plist 1 Aug 2006 20:36:09 -0000 1.2 > +++ pkg-plist 15 Sep 2008 21:33:14 -0000 > @@ -1,4 +1,5 @@ > %%PROGRAMS%%bin/pwcview > +include/pwc-ioctl.h > @cwd /boot/modules > pwc.ko > @exec kldxref %D Did you submit a PR? -- cd /usr/ports/sysutils/life make clean From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 02:52: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 77E601065678 for ; Tue, 16 Sep 2008 02:52:47 +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 5B2C78FC0C for ; Tue, 16 Sep 2008 02:52:47 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id F3CEC8C086; Mon, 15 Sep 2008 21:52:46 -0500 (CDT) Date: Mon, 15 Sep 2008 21:52:46 -0500 To: Naram Qashat Message-ID: <20080916025246.GB8746@soaustin.net> References: <20080915173105.GA1745@jack.stsp.name> <48CEAAC5.2000107@cyberbotx.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <48CEAAC5.2000107@cyberbotx.com> User-Agent: Mutt/1.5.13 (2006-08-11) From: linimon@lonesome.com (Mark Linimon) Cc: ports@freebsd.org, Stefan Sperling Subject: Re: emulators/zsnes is up for grabs 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, 16 Sep 2008 02:52:47 -0000 OK, I'll assign it over to you once the freeze ends. (You may need to send me email to remind me). mcl From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 09:30: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 11AB3106564A; Tue, 16 Sep 2008 09:30:03 +0000 (UTC) (envelope-from joe@thrallingpenguin.com) Received: from DG5R6MD1.redplaid.com (DG5R6MD1.redplaid.com [208.74.29.219]) by mx1.freebsd.org (Postfix) with ESMTP id DA49B8FC1E; Tue, 16 Sep 2008 09:30:02 +0000 (UTC) (envelope-from joe@thrallingpenguin.com) Received: from [192.168.1.34] (cblmdm72-240-122-140.buckeyecom.net [72.240.122.140]) by DG5R6MD1.redplaid.com (Postfix) with ESMTP id D4E3035E4B2; Tue, 16 Sep 2008 04:08:03 -0500 (CDT) Message-Id: <62B6FC71-6C39-4D16-88BF-BB958E6A06E7@thrallingpenguin.com> From: Joseph Benden To: beech@FreeBSD.org Mime-Version: 1.0 (Apple Message framework v926) Date: Tue, 16 Sep 2008 05:08:03 -0400 X-Mailer: Apple Mail (2.926) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org Subject: FreeBSD Port: proftpd-1.3.1_14 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, 16 Sep 2008 09:30:03 -0000 Hello, I have updated the Mod_Clamav module available here: http://www.thrallingpenguin.com/resources/mod_clamav.htm Please also note that the UglyBoxIndustries.com website is no longer available and points directly at the ThrallingPenguin.com domain. Best Regards, Joseph Benden .--. |o_o | |:_/ | // \ \ (| | ) /'\_ _/`\ \___)=(___/ http://www.ThrallingPenguin.com/ -------------------------------- We design, develop, and extend software technologies for the most demanding business applications, as well as offer VoIP Consulting services. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 09:50:16 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 34FA11065671 for ; Tue, 16 Sep 2008 09:50:16 +0000 (UTC) (envelope-from yanefbsd@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 C05088FC27 for ; Tue, 16 Sep 2008 09:50:15 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so1464828nfh.33 for ; Tue, 16 Sep 2008 02:50:14 -0700 (PDT) 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=FGQ7UaheqrvikW/Q513gvKXgclTz9cKljM2mKHXkLNs=; b=KuRuJINkReBS5KS0uW49pxVwzXUDEXBTeWAi3l1uGUHwAJGbve1DujC98Tnswa9x1S Ai86rS6ObBiAjVtO+dbIVu6sJLMHVrwUFdU/cI71UuVF4ADS46ndN9lymh1aFScDS8VS hHA+OW8hrAhtS/HBzF14tKqjZwVvN507u+qro= 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=hiO9YzbJsEw+B23/5NWLX+fM2JxSaSM+dZE6DrA2vKgEYinrWOTGgUaFB9Ya9mC6MR 4yQxH3rDLX/wXkJNe2zbAq9e7Q15DvmX9Tu7HsCgcLimx8NjhIf6bYET2z5Qcd4LkXtH meBXMzcx3/+echFhURmrIl+YgHcCSwI8ZZIxk= Received: by 10.86.29.8 with SMTP id c8mr568291fgc.30.1221558614452; Tue, 16 Sep 2008 02:50:14 -0700 (PDT) Received: by 10.86.62.14 with HTTP; Tue, 16 Sep 2008 02:50:14 -0700 (PDT) Message-ID: <7d6fde3d0809160250w50e40ee5rbe64a89b02a4ea69@mail.gmail.com> Date: Tue, 16 Sep 2008 02:50:14 -0700 From: "Garrett Cooper" To: FreeBSD In-Reply-To: <48CE949F.9060002@optiksecurite.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <48CE949F.9060002@optiksecurite.com> Cc: freebsd-ports@freebsd.org Subject: Re: Multiple installation of one 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: Tue, 16 Sep 2008 09:50:16 -0000 On Mon, Sep 15, 2008 at 10:00 AM, FreeBSD wrote: > Hi everyone, > > I've been asked by a customer to install Drupal on one server to manage a > new site. No problem yet. But, he also asked if it would be possible to > install it for other sites. > > I know that there is a warning if you want to install a port that is already > installed, but is there a way to bypass this? I know I could install it from > the tarball from the website, but I want to be able to use portupgrade and > portaudit to deal with it. > > Any suggestions? > > Thank you for your time, > > Martin I believe you're looking for the -f flag to pkg_add(1). -Garrett From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 14:57: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 15ADC1065672 for ; Tue, 16 Sep 2008 14:57:23 +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 C023E8FC0A for ; Tue, 16 Sep 2008 14:57:22 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1KfbzR-0003Zw-Ue for freebsd-ports@freebsd.org; Tue, 16 Sep 2008 14:57:17 +0000 Received: from detroit.slack.net ([69.31.82.90]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 16 Sep 2008 14:57:17 +0000 Received: from mark.evenson by detroit.slack.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 16 Sep 2008 14:57:17 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Mark Evenson Date: Tue, 16 Sep 2008 16:57:03 +0200 Lines: 22 Message-ID: References: <40519.1847.qm@web50107.mail.re2.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: detroit.slack.net User-Agent: Thunderbird 2.0.0.16 (X11/20080730) In-Reply-To: <40519.1847.qm@web50107.mail.re2.yahoo.com> Sender: news Subject: =?windows-1252?q?Re=3A_Evince_2=2E22=2E2=5F3=3A_=22Unhandled_MIM?= =?windows-1252?q?E_type=3A_=93application/pdf=94=22?= 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, 16 Sep 2008 14:57:23 -0000 Dan Reinholz wrote: > Since updating to the latest revision of Evince (to > 2.22.2_3 from 2.22.2_2) I am no longer able to open > .pdf files. Anytime I try to do so I now get the > error: > > "Unhandled MIME type: “application/pdf” > > At the same time I also updated some related ports > such as poppler, so I'm not able to say for sure which > update it is that caused the problem. Any help is > appreciated. I can confirm the same behavior. Shouldn't we file a bug report? -- "[T]his is not a disentanglement from, but a progressive knotting into." From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 15:44:04 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 99BD7106566C for ; Tue, 16 Sep 2008 15:44:04 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from andxor.it (relay.andxor.it [195.223.2.3]) by mx1.freebsd.org (Postfix) with SMTP id D1A418FC15 for ; Tue, 16 Sep 2008 15:44:03 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: (qmail 28839 invoked from network); 16 Sep 2008 15:17:22 -0000 Received: from unknown (HELO ale.andxor.it) (192.168.2.5) by andxor.it with SMTP; 16 Sep 2008 15:17:22 -0000 Message-ID: <48CFCE01.4050304@FreeBSD.org> Date: Tue, 16 Sep 2008 17:17:21 +0200 From: Alex Dupre User-Agent: Thunderbird 2.0.0.16 (X11/20080906) MIME-Version: 1.0 To: Doug Barton References: <200809151036.19674.jhb@freebsd.org> <48CEBE6E.1030508@FreeBSD.org> In-Reply-To: <48CEBE6E.1030508@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, John Baldwin Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 16 Sep 2008 15:44:04 -0000 Doug Barton ha scritto: > Bug, and at first glance I think your analysis is correct about the > cause. Surely a bug, but the mentioned code is what was added in rev 1.560 (http://www.freebsd.org/cgi/cvsweb.cgi/ports/Mk/bsd.port.mk?r1=1.560#rev1.560) exactly to add this feature, and AFAIR it worked. -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 16:41:05 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 402DC106567F for ; Tue, 16 Sep 2008 16:41:05 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao101.cox.net (eastrmmtao101.cox.net [68.230.240.7]) by mx1.freebsd.org (Postfix) with ESMTP id CB57E8FC12 for ; Tue, 16 Sep 2008 16:41:04 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao101.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20080916164104.HPNX11636.eastrmmtao101.cox.net@eastrmimpo01.cox.net>; Tue, 16 Sep 2008 12:41:04 -0400 Received: from mezz.mezzweb.com ([68.103.35.214]) by eastrmimpo01.cox.net with bizsmtp id FUgs1a0094dCcn002UgsTc; Tue, 16 Sep 2008 12:40:53 -0400 X-Authority-Analysis: v=1.0 c=1 a=6I5d2MoRAAAA:8 a=nslCsoFbbRpkq_vUH1IA:9 a=UVKd3sIc2z3NaKXhOhrx1DQAQrIA:4 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 a=LY0hPdMaydYA:10 X-CM-Score: 0.00 Date: Tue, 16 Sep 2008 11:40:36 -0500 To: "Mark Evenson" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8 MIME-Version: 1.0 References: <40519.1847.qm@web50107.mail.re2.yahoo.com> Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: User-Agent: Opera Mail/9.52 (Linux) Cc: Dan Reinholz , freebsd-ports@freebsd.org Subject: Re: =?utf-8?q?Evince_2=2E22=2E2=5F3=3A_=22Unhandled_MIME_type=3A_?= =?utf-8?b?4oCcYXBwbGljYXRpb24vcGRm4oCdIg==?= 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, 16 Sep 2008 16:41:05 -0000 On Tue, 16 Sep 2008 09:57:03 -0500, Mark Evenson wrote: > Dan Reinholz wrote: >> Since updating to the latest revision of Evince (to >> 2.22.2_3 from 2.22.2_2) I am no longer able to open >> .pdf files. Anytime I try to do so I now get the >> error: >> "Unhandled MIME type: ˘â‚ĴĊ“application/pdf˘â‚Ĵïż½ >> At the same time I also updated some related ports >> such as poppler, so I'm not able to say for sure which >> update it is that caused the problem. Any help is >> appreciated. > > I can confirm the same behavior. > > Shouldn't we file a bug report? Have you guys follow in /usr/ports/UPDATING? Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 18:50: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 2FCE7106567C for ; Tue, 16 Sep 2008 18:50:58 +0000 (UTC) (envelope-from freebsd-ports@pp.dyndns.biz) Received: from proxy1.bredband.net (proxy1.bredband.net [195.54.101.71]) by mx1.freebsd.org (Postfix) with ESMTP id DD9A98FC24 for ; Tue, 16 Sep 2008 18:50:57 +0000 (UTC) (envelope-from freebsd-ports@pp.dyndns.biz) Received: from ironport.bredband.com (195.54.101.120) by proxy1.bredband.net (7.3.127) id 4811823A0256AD7A for freebsd-ports@freebsd.org; Tue, 16 Sep 2008 20:50:56 +0200 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AnIxALecz0hV4jrQPGdsb2JhbAAsgTeRHgEBAQEtp0CBZ4QZ Received: from c-d03ae255.107-1-64736c10.cust.bredbandsbolaget.se (HELO gatekeeper.pp.dyndns.biz) ([85.226.58.208]) by ironport1.bredband.com with ESMTP; 16 Sep 2008 20:50:56 +0200 Received: from [192.168.69.67] (phobos [192.168.69.67]) by gatekeeper.pp.dyndns.biz (8.14.2/8.14.2) with ESMTP id m8GIosUH096448 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 16 Sep 2008 20:50:55 +0200 (CEST) (envelope-from freebsd-ports@pp.dyndns.biz) Message-ID: <48D0000E.9050709@pp.dyndns.biz> Date: Tue, 16 Sep 2008 20:50:54 +0200 From: =?ISO-8859-1?Q?Morgan_Wesstr=F6m?= User-Agent: Thunderbird 2.0.0.16 (X11/20080805) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: databases/mysql51-server and beginner's InnoDB questions 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, 16 Sep 2008 18:50:58 -0000 # uname -a FreeBSD gatekeeper.pp.dyndns.biz 7.0-RELEASE-p4 FreeBSD 7.0-RELEASE-p4 #0: Thu Sep 4 10:58:01 CEST 2008 pp@gatekeeper.pp.dyndns.biz:/usr/obj/usr/src/sys/MYKERNEL amd64 # pkg_info | grep mysql-server mysql-server-5.1.26 Multithreaded SQL database (server) Dear list. I have a few questions regarding enabling InnoDB but I'm not an expert on MySQL so I'm not even sure I know how to ask them correctly. But the only way to learn is to ask and hope nobody is offended by stupid questions. :-) I realized today actually that there are different storage engines available for MySQL and that InnoDB seems to be preferred so I naturally wanted to use it. I can see with "show create table " that Mediawiki's tables for example are already created with ENGINE=InnoDB. But in my MySQL config file, which is simply a copy of my-large.cnf, there is a whole section for InnoDB that is commented out. It begins with: "# Uncomment the following if you are using InnoDB tables" _First question:_ Is InnoDB enabled by default regardless of the settings in my.cnf and how can I verify it? Assuming it wasn't enabled, despite the output from "show create table", I uncommented all the InnoDB options in my config and restarted MySQL and got the first error: "InnoDB: Error: log file /usr/local/var/db/mysql/ib_logfile0 is of different size 0 5242880 bytes InnoDB: than specified in the .cnf file 0 67108864 bytes!" I was able to work around this by changing innodb_log_file_size from the default 64M to 5M. _Second question:_ How can I increase the logfile size from it's original 5M to the 64M suggested in the config? Can I just delete the old logfile and have it recreated or will that break any of my databases? MySQL also complained about this: "[ERROR] /usr/local/libexec/mysqld: unknown variable 'innodb_log_arch_dir=/usr/local/var/db/mysql/'" After some googling I realized this was a deprecated variable and the reference to it in the config file should have been removed in 5.1.25. _Third question:_ Is this an issue with the FreeBSD port specifically? Should I report this to someone and how would I do that the correct way? Regards Morgan From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 19:08:00 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 B85C7106567D for ; Tue, 16 Sep 2008 19:08:00 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from QMTA07.emeryville.ca.mail.comcast.net (qmta07.emeryville.ca.mail.comcast.net [76.96.30.64]) by mx1.freebsd.org (Postfix) with ESMTP id 9E4668FC2B for ; Tue, 16 Sep 2008 19:08:00 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from OMTA03.emeryville.ca.mail.comcast.net ([76.96.30.27]) by QMTA07.emeryville.ca.mail.comcast.net with comcast id FNa71a0020b6N64A7X80Hj; Tue, 16 Sep 2008 19:08:00 +0000 Received: from koitsu.dyndns.org ([67.180.253.227]) by OMTA03.emeryville.ca.mail.comcast.net with comcast id FX7z1a0034v8bD78PX7zRK; Tue, 16 Sep 2008 19:07:59 +0000 X-Authority-Analysis: v=1.0 c=1 a=ieiUEHTuAmsA:10 a=0OlRnyv5FcYA:10 a=QycZ5dHgAAAA:8 a=GY1SmDZg4kCR5MyjZx0A:9 a=6VrSTo_BG1lhnAgEzU0A:7 a=2Q3Nnk14UkmX5Af5-7qQu9pCfnUA:4 a=EoioJ0NPDVgA:10 a=LY0hPdMaydYA:10 Received: by icarus.home.lan (Postfix, from userid 1000) id 01E5C17B81A; Tue, 16 Sep 2008 12:07:59 -0700 (PDT) Date: Tue, 16 Sep 2008 12:07:58 -0700 From: Jeremy Chadwick To: Morgan =?iso-8859-1?Q?Wesstr=F6m?= Message-ID: <20080916190758.GA71693@icarus.home.lan> References: <48D0000E.9050709@pp.dyndns.biz> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <48D0000E.9050709@pp.dyndns.biz> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: Re: databases/mysql51-server and beginner's InnoDB questions 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, 16 Sep 2008 19:08:00 -0000 On Tue, Sep 16, 2008 at 08:50:54PM +0200, Morgan Wesström wrote: > I have a few questions regarding enabling InnoDB but I'm not an expert > on MySQL so I'm not even sure I know how to ask them correctly. But the > only way to learn is to ask and hope nobody is offended by stupid > questions. :-) I'm wondering why you're asking MySQL-specific questions on freebsd-ports. Questions I didn't answer should be punted to the MySQL folks, they're quite helpful. > I realized today actually that there are different storage engines > available for MySQL and that InnoDB seems to be preferred so I naturally First and foremost: I don't know where you got the idea that InnoDB is preferred. Whoever told you that is flat out wrong. You need to spend some more time reading up on the pros/cons to all of the MySQL storage engine types. InnoDB happens to be one of the most horrendous ones to deal with from an administrative point of view. It's always great when the InnoDB part is out of sync with /var/db/mysql/database/whatever.*, which can often happen during replication errors or bugs. My advice to people is to avoid InnoDB unless you *specifically* have engineered an application that will make use of it. MyISAM is a lot easier to deal with. > wanted to use it. I can see with "show create table " that > Mediawiki's tables for example are already created with ENGINE=InnoDB. > But in my MySQL config file, which is simply a copy of my-large.cnf, > there is a whole section for InnoDB that is commented out. It begins > with: > "# Uncomment the following if you are using InnoDB tables" Ignore that. I can tell you're flailing around with config files. :-) You can look at the compile-time defaults of InnoDB by using "SHOW VARIABLES", and performance using "SHOW STATUS". Please read the MySQL docs. > _First question:_ > Is InnoDB enabled by default regardless of the settings in my.cnf and > how can I verify it? It's enabled by default. Look at ports/databases/mysql51-server/Makefile; see WITHOUT_INNODB? If that's set (e.g. make WITHOUT_INNODB=true, or WITHOUT_INNODB=true in your /etc/make.conf), then the InnoDB storage engine will not be included. You can also disable InnoDB at runtime using mysqld --skip-innodb. If InnoDB stats are seen in "SHOW STATUS", then InnoDB is enabled. You can also try creating a table using the InnoDB storage engine type. The CREATE TABLE will fail if the engine is disabled or unavailable. > _Third question:_ > Is this an issue with the FreeBSD port specifically? Should I report > this to someone and how would I do that the correct way? None of what you've described (I snipped the portions out) are specific to the FreeBSD port. They are purely configuration issues, and are with MySQL. You should discuss your issues with the MySQL people. Cheers! -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 19:45: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 56A61106566B for ; Tue, 16 Sep 2008 19:45:34 +0000 (UTC) (envelope-from freebsd-ports@pp.dyndns.biz) Received: from proxy2.bredband.net (proxy2.bredband.net [195.54.101.72]) by mx1.freebsd.org (Postfix) with ESMTP id 0A18F8FC0C for ; Tue, 16 Sep 2008 19:45:33 +0000 (UTC) (envelope-from freebsd-ports@pp.dyndns.biz) Received: from ironport2.bredband.com (195.54.101.122) by proxy2.bredband.net (7.3.127) id 48118333024DA6A5 for freebsd-ports@freebsd.org; Tue, 16 Sep 2008 21:45:33 +0200 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ah8wABOqz0hV4jrQPGdsb2JhbACBY4cQig4BAQEBLaccgWeEGQ Received: from c-d03ae255.107-1-64736c10.cust.bredbandsbolaget.se (HELO gatekeeper.pp.dyndns.biz) ([85.226.58.208]) by ironport2.bredband.com with ESMTP; 16 Sep 2008 21:45:32 +0200 Received: from [192.168.69.67] (phobos [192.168.69.67]) by gatekeeper.pp.dyndns.biz (8.14.2/8.14.2) with ESMTP id m8GJjUMK097489 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 16 Sep 2008 21:45:31 +0200 (CEST) (envelope-from freebsd-ports@pp.dyndns.biz) Message-ID: <48D00CDA.2050804@pp.dyndns.biz> Date: Tue, 16 Sep 2008 21:45:30 +0200 From: =?ISO-8859-1?Q?Morgan_Wesstr=F6m?= User-Agent: Thunderbird 2.0.0.16 (X11/20080805) MIME-Version: 1.0 To: "freebsd-ports@freebsd.org" References: <48D0000E.9050709@pp.dyndns.biz> <20080916190758.GA71693@icarus.home.lan> In-Reply-To: <20080916190758.GA71693@icarus.home.lan> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: databases/mysql51-server and beginner's InnoDB questions 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, 16 Sep 2008 19:45:34 -0000 Jeremy Chadwick wrote: > I'm wondering why you're asking MySQL-specific questions on > freebsd-ports. Questions I didn't answer should be punted to the MySQL > folks, they're quite helpful. Lol, thanks Jeremy. In an earlier "incident" I asked net-snmp questions directly to the developers and the reply was that "Those FreeBSD guys have their own patches and we have no clue what they do, ask them!". I intended to not make the same mistake this time and now I don't have any more cheeks to turn... or wait - I do have two more :-) > First and foremost: I don't know where you got the idea that InnoDB is > preferred. Whoever told you that is flat out wrong. You need to spend > some more time reading up on the pros/cons to all of the MySQL storage > engine types. Well, I was referring to the way it stores its indexes sorted and also the transaction log which makes crash recoveries more or less independent on db size. Things I thought was default for any SQL engine but realized today that MyISAM lacked, unless I'm misinformed. InnoDB happens to be one of the most horrendous ones to > deal with from an administrative point of view. It's always great when > the InnoDB part is out of sync with /var/db/mysql/database/whatever.*, > which can often happen during replication errors or bugs. Yes, I can see from googling that there are frequent bugreports related to this but bugs are there to work out, aren't they? :-) > My advice to people is to avoid InnoDB unless you *specifically* have > engineered an application that will make use of it. MyISAM is a lot > easier to deal with. I take your word for it. I simply have an urge to try to better understand the applications I use in FreeBSD without having to read and understand source code. >> "# Uncomment the following if you are using InnoDB tables" > > Ignore that. I can tell you're flailing around with config files. :-) > You can look at the compile-time defaults of InnoDB by using "SHOW > VARIABLES", and performance using "SHOW STATUS". Please read the > MySQL docs. I am but I'm a slow reader. ;-) >> _First question:_ >> Is InnoDB enabled by default regardless of the settings in my.cnf and >> how can I verify it? > > It's enabled by default. Is InnoDB enabled by the FreeBSD port maintainer and shouldn't that somehow be reflected in the config sample files in that case? At least I get a little confused from the fact that they were all commented out and the text instructed me to uncomment them to enable InnoDB. >> _Third question:_ >> Is this an issue with the FreeBSD port specifically? Should I report >> this to someone and how would I do that the correct way? > > None of what you've described (I snipped the portions out) are specific > to the FreeBSD port. They are purely configuration issues, and are > with MySQL. You should discuss your issues with the MySQL people. > > Cheers! > Thanks for your valuable input Jeremy and for not kicking me more than necessary. ;-) Regards Morgan From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 19:49:57 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 52C05106567A for ; Tue, 16 Sep 2008 19:49:57 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 149748FC22 for ; Tue, 16 Sep 2008 19:49:55 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.3/8.14.3) with ESMTP id m8GJnlZ3066546; Tue, 16 Sep 2008 20:49:48 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.7.1 smtp.infracaninophile.co.uk m8GJnlZ3066546 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1221594588; bh=/gOHMTF4rozu2G 4lGvXUCCh1Lly4diSWYKaOkujBpA8=; h=Message-ID:Date:From:MIME-Version: To:CC:Subject:References:In-Reply-To:Content-Type:Cc:Content-Type: Date:From:In-Reply-To:Message-ID:Mime-Version:References:To; z=Mes sage-ID:=20<48D00DD5.9030806@infracaninophile.co.uk>|Date:=20Tue,=2 016=20Sep=202008=2020:49:41=20+0100|From:=20Matthew=20Seaman=20|Organization:=20Infracaninophile|User -Agent:=20Thunderbird=202.0.0.16=20(X11/20080726)|MIME-Version:=201 .0|To:=20=3D?ISO-8859-1?Q?Morgan_Wesstr=3DF6m?=3D=20|CC:=20freebsd-ports@freebsd.org|Subject:=20Re:=20dat abases/mysql51-server=20and=20beginner's=20InnoDB=20questions|Refer ences:=20<48D0000E.9050709@pp.dyndns.biz>|In-Reply-To:=20<48D0000E. 9050709@pp.dyndns.biz>|X-Enigmail-Version:=200.95.6|Content-Type:=2 0multipart/signed=3B=20micalg=3Dpgp-sha256=3B=0D=0A=20protocol=3D"a pplication/pgp-signature"=3B=0D=0A=20boundary=3D"------------enig9C 01234D08F989373288E91A"; b=BgvZ2yD+CPMQCkXmo0rS7rASH3SaYPtmjm4Cq5s+ FnuoIAiHDdWTOsiiFsJVNdx7CmLBnYP82hDzHAc5L+wpC6HjTDqKrvR4MfiUDd4LqGH NZZf8S+ZBo/jxI327hoC8iyYCGuNNZMoFOG4xd1oUPp0okneqyTq00wOBaG+vbWY= Message-ID: <48D00DD5.9030806@infracaninophile.co.uk> Date: Tue, 16 Sep 2008 20:49:41 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Morgan_Wesstr=F6m?= References: <48D0000E.9050709@pp.dyndns.biz> In-Reply-To: <48D0000E.9050709@pp.dyndns.biz> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig9C01234D08F989373288E91A" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0 (smtp.infracaninophile.co.uk [IPv6:::1]); Tue, 16 Sep 2008 20:49:48 +0100 (BST) X-Virus-Scanned: ClamAV 0.93.3/8264/Tue Sep 16 19:01:22 2008 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-ports@freebsd.org Subject: Re: databases/mysql51-server and beginner's InnoDB questions 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, 16 Sep 2008 19:49:57 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig9C01234D08F989373288E91A Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Morgan Wesstr=F6m wrote: > I realized today actually that there are different storage engines=20 > available for MySQL and that InnoDB seems to be preferred so I naturall= y=20 > wanted to use it. I can see with "show create table " that=20 > Mediawiki's tables for example are already created with ENGINE=3DInnoDB= =2E=20 > But in my MySQL config file, which is simply a copy of my-large.cnf,=20 > there is a whole section for InnoDB that is commented out. It begins wi= th: > "# Uncomment the following if you are using InnoDB tables" Correct. MySQl's reputation for speed is based on simple, generally single threaded, tests against the basic MyISAM table type[*]. However once your database starts getting busy and certainly if you need such=20 things as ACID behaviour, Foreign Keys or High Concurrency -- ie. basical= ly=20 for any real-world database solution -- then you should be using InnoDB.= =20 > _First question:_ > Is InnoDB enabled by default regardless of the settings in my.cnf and=20 > how can I verify it? The easiest way to check is to run the following SQL: SHOW ENGINES ; If it doesn't list InnoDB then check the following: There is a compile-time option to include InnoDB support which is enabled= by default, so unless you've deliberately turned it off your MySQL server= should have compiled-in support for it. =20 You can disable InnoDB from within my.cnf using the 'skip-innodb' command= -- if that isn't present then InnoDB should be enabled. > Assuming it wasn't enabled, despite the output from "show create table"= ,=20 > I uncommented all the InnoDB options in my config and restarted MySQL=20 > and got the first error: >=20 > "InnoDB: Error: log file /usr/local/var/db/mysql/ib_logfile0 is of=20 > different size 0 5242880 bytes > InnoDB: than specified in the .cnf file 0 67108864 bytes!" >=20 > I was able to work around this by changing innodb_log_file_size from th= e=20 > default 64M to 5M. > _Second question:_ > How can I increase the logfile size from it's original 5M to the 64M=20 > suggested in the config? Can I just delete the old logfile and have it = > recreated or will that break any of my databases? Yes -- sizes of various InnoDB related files are set from the my.cnf file and its not entirely trivial to change them. A surefire method which should always work is the following: i) Make sure your database is quiescent and dump out all of the contents using mysqldump. ii) Stop mysql, and remove all files prefixed with 'ib' from within /var/db/mysql -- *warning* this deletes any data stored in InnoDB tables in the live copy of the DB. You did take the backup mentioned in (i) didn't you? iii) Edit file sizes to taste in my.cnf iv) Restart MySQL. It will create new, empty copies of the required ib_logfileN and ibdataN files. v) Now reload your data from the dump you made in (i) Note that the size quoted for the ibdata1 file is the initial size, and that file will grow as you add more data. The ib_logfileN files are a fixed size, and tuning them can help optimize performance. >=20 > MySQL also complained about this: >=20 > "[ERROR] /usr/local/libexec/mysqld: unknown variable=20 > 'innodb_log_arch_dir=3D/usr/local/var/db/mysql/'" >=20 > After some googling I realized this was a deprecated variable and the=20 > reference to it in the config file should have been removed in 5.1.25. MySQl 5.1 is still not available for general release. Unless you need 5.= 1 specific features, you're actually going to be better off sticking with MySQL 5.0.x -- and I do believe that MySQL 5.0 is still typically faster = than MySQL 5.1. > _Third question:_ > Is this an issue with the FreeBSD port specifically? Should I report=20 > this to someone and how would I do that the correct way? No, the sample my.cnf files in /usr/local/share/mysql/ are copied straight out of the mysql sources -- there are no FreeBSD specific=20 modifications to those files. The bug is with the upstream MySQL distribution. There's already an open bug report: http://bugs.mysql.com/bug.php?id=3D38249 Cheers, Matthew [*] When you do more realistic benchmarks, MySQL doesn't look quite so good. See for example: http://people.freebsd.org/~kris/scaling/7.0 Pr= eview.pdf (Slide 16 in particular) --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig9C01234D08F989373288E91A Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkjQDdsACgkQ8Mjk52CukIzSawCfZ0psCYlfs+YlmOeEqNfz1Dvy oasAoIxiwRDAnZ8NLLVzoZFn2lu1IADW =/c0T -----END PGP SIGNATURE----- --------------enig9C01234D08F989373288E91A-- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 21:04:28 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 849F6106566B for ; Tue, 16 Sep 2008 21:04:28 +0000 (UTC) (envelope-from freebsd-ports@pp.dyndns.biz) Received: from proxy3.bredband.net (proxy3.bredband.net [195.54.101.73]) by mx1.freebsd.org (Postfix) with ESMTP id 3D19E8FC1F for ; Tue, 16 Sep 2008 21:04:28 +0000 (UTC) (envelope-from freebsd-ports@pp.dyndns.biz) Received: from ironport.bredband.com (195.54.101.120) by proxy3.bredband.net (7.3.127) id 481183EA024C931D for freebsd-ports@freebsd.org; Tue, 16 Sep 2008 23:04:26 +0200 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Au8vACC8z0hV4jrQPGdsb2JhbACBY5EeAQEBAS2nSYFnhBk Received: from c-d03ae255.107-1-64736c10.cust.bredbandsbolaget.se (HELO gatekeeper.pp.dyndns.biz) ([85.226.58.208]) by ironport1.bredband.com with ESMTP; 16 Sep 2008 23:04:26 +0200 Received: from [192.168.69.67] (phobos [192.168.69.67]) by gatekeeper.pp.dyndns.biz (8.14.2/8.14.2) with ESMTP id m8GL4Pbd098870 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 16 Sep 2008 23:04:26 +0200 (CEST) (envelope-from freebsd-ports@pp.dyndns.biz) Message-ID: <48D01F59.10008@pp.dyndns.biz> Date: Tue, 16 Sep 2008 23:04:25 +0200 From: =?ISO-8859-1?Q?Morgan_Wesstr=F6m?= User-Agent: Thunderbird 2.0.0.16 (X11/20080805) MIME-Version: 1.0 To: "freebsd-ports@freebsd.org" References: <48D0000E.9050709@pp.dyndns.biz> <48D00DD5.9030806@infracaninophile.co.uk> In-Reply-To: <48D00DD5.9030806@infracaninophile.co.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: databases/mysql51-server and beginner's InnoDB questions 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, 16 Sep 2008 21:04:28 -0000 Sorry, I forgot to cc the list... Matthew Seaman wrote: Thanks Matthew. Your answers are very helpful for someone like me to understand MySQL better and to guide me what parts to explore more thoroughly. > Correct. MySQl's reputation for speed is based on simple, generally > single threaded, tests against the basic MyISAM table type[*]. However > once your database starts getting busy and certainly if you need such things as ACID behaviour, Foreign Keys or High Concurrency -- ie. basically for any real-world database solution -- then you should be using InnoDB. InnoDB pops up in several LAMP related guides and instructions I've come across so that's what caught my attention. I only use MySQL to run some low traffic forums on my FreeBSD server at home so it's not that important but if it's good for your average data center, then it's good for me I figured :-) >> _First question:_ >> Is InnoDB enabled by default regardless of the settings in my.cnf and how can I verify it? > > The easiest way to check is to run the following SQL: > > SHOW ENGINES ; Simple as that. I really should have searched some more, I apologize for that. I will refrain from asking how to change the default engine to InnoDB and find it out myself... >> _Second question:_ >> How can I increase the logfile size from it's original 5M to the 64M suggested in the config? Can I just delete the old logfile and have it recreated or will that break any of my databases? > > > Yes -- sizes of various InnoDB related files are set from the my.cnf > file and its not entirely trivial to change them. A surefire method > which should always work is the following: > > i) Make sure your database is quiescent and dump out all of the > contents using mysqldump. > > ii) Stop mysql, and remove all files prefixed with 'ib' from within > /var/db/mysql -- *warning* this deletes any data stored in > InnoDB tables in the live copy of the DB. You did take the backup > mentioned in (i) didn't you? > > iii) Edit file sizes to taste in my.cnf > > iv) Restart MySQL. It will create new, empty copies of the required > ib_logfileN and ibdataN files. > > v) Now reload your data from the dump you made in (i) > > Note that the size quoted for the ibdata1 file is the initial size, > and that file will grow as you add more data. The ib_logfileN files > are a fixed size, and tuning them can help optimize performance. I feared there was some vital relation between those files. Your instructions are now part of my growing collection of helpful information. Thanks. > MySQl 5.1 is still not available for general release. Unless you need 5.1 > specific features, you're actually going to be better off sticking with > MySQL 5.0.x -- and I do believe that MySQL 5.0 is still typically faster than MySQL 5.1. Yes, I took a calculated risk when I installed it but I thought the difference would be minor in the way I use it and since 6.0-alpha was also in the ports tree I went for the version in between. >> _Third question:_ >> Is this an issue with the FreeBSD port specifically? Should I report this to someone and how would I do that the correct way? > > No, the sample my.cnf files in /usr/local/share/mysql/ are copied > straight out of the mysql sources -- there are no FreeBSD specific modifications to those files. The bug is with the upstream MySQL > distribution. There's already an open bug report: > > http://bugs.mysql.com/bug.php?id=38249 I found some other report suggesting it was fixed in 5.1.25 but in this bugreport it appears to be fixed in versions after 5.1.26 if I understand it correctly? Regards Morgan From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 22:17:31 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 294A61065677 for ; Tue, 16 Sep 2008 22:17:31 +0000 (UTC) (envelope-from Boston.Jung@gmail.com) Received: from yx-out-2122.google.com (yx-out-2122.google.com [74.125.44.24]) by mx1.freebsd.org (Postfix) with ESMTP id AB7198FC16 for ; Tue, 16 Sep 2008 22:17:30 +0000 (UTC) (envelope-from Boston.Jung@gmail.com) Received: by yx-out-2122.google.com with SMTP id 35so2021801yxh.13 for ; Tue, 16 Sep 2008 15:17:29 -0700 (PDT) MIME-Version: 1.0 Received: by 10.150.49.11 with SMTP id w11mr44583ybw.19.1221602721726; Tue, 16 Sep 2008 15:05:21 -0700 (PDT) Date: Tue, 16 Sep 2008 15:05:21 -0700 (PDT) X-IP: 98.214.99.241 User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.1) Gecko/2008070206 Firefox/3.0.1,gzip(gfe),gzip(gfe) Message-ID: <02a63bf9-fa84-4dba-a5c9-94053332584f@j22g2000hsf.googlegroups.com> From: johnharten To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=windows-1256 Content-Transfer-Encoding: quoted-printable Subject: Linux Help 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, 16 Sep 2008 22:17:31 -0000 LINUX is not UNIX, but it's close enough This book is old I will try to take the concepts the book lays out and integrate them with more recent versions. Lecture material will be a hybrid Chapter 1 Logging on to the System Why we study UNIX/LINUX Started in the 1970's (pre-Microsoft)=FE UNIX runs =93everything=94 The Internet, Stock Market, Movies, technological advancements, Embedded Devices (ATM's), POS systems, the military, utility companies, and much more. Linux began in the early '90's Has revolutionized the IT world Authentication Authentication is the process of confirming that you are who you say you are Logging in (authenticating) typically requires two components Username (login name)=FE Password Authentication (continued)=FE Authentication can also take the following forms: Public/Private Key Pair PGP / SSL certificates Biometric Authentication Fingerprints Retinal scans Voice matching Authorization Authorization is the process of determining who gets access to what. Unlike authentication, authorization does not generally involve and additional input. Keeps the system secure. Login Scenarios Running system with the root username and password Running system where you have the username / password of non-root user A system with no Operating System Scenario: No OS If there is no operating system present, you'll need to install one Setting the root password is part of the installation process You'll need to create a regular user account for yourself as well Scenarios: Have Credentials Running system where you have a valid username / password (root or otherwise) At login prompt, enter valid username and hit enter At password prompt, enter valid password and hit enter Have Credentials (cont'd)=FE Whether or not you enter the username correctly, you will be prompted for a password. When you type your password, the characters will be masked by *'s for security UNIX is case-sensitive!!! Notes on root user root is the system administrator root has access to all resources and there is no safety net Use root only when necessary Login Prompts Command Line Telnet / ssh / no graphical environment Graphical X Windows system is installed on system Pictures of both on page 5 Lab Work Install Linux Fedora 9, because we have new hardware. CMPSC 249: Introduction to UNIX/Linux Week 2: UNIX Essentials The Kernel The kernel is the core of an operating system. Source Provided for compilation. RedHat provides RPM packages. (rpm =96qa |grep =96i kernel) You don=92t touch it directly. Where is the Kernel? The boot loader runs and loads the kernel based on the choice you make. Editing the boot loader entry will reveal the location of the kernel (usually /boot/vmlinuz*) RamDisk and kernel load and then process id 1 (init) is spawned. User Space User space is the visible part of the operating system. User processes Services / daemons Every user space component executes system calls and spends some time in the kernel. What does the Kernel do? Sits between programs (user space) and hardware. Applications use syscall facilities to have the kernel perform work on their behalf. This work takes many forms. Kernel Kernel (2) System call facility that allows processes to use kernel functions. Process creation and tracking Process priority control Swapping pages & memory management IPC - inter-process communication Cache, Buffer and I/O management File creation, removal and modification and permissions Filesystems Log file data accumulation and flushing. The Filesystem What is a filesystem? a method for storing and organizing computer files and the data they contain to make it easy to find and access them. What is a filesystem (English) A container for data More than just a place to keep files Hierarchical File Attributes Security Filesystem Layout / =3D System Top Level Directory. Start of the tree Everything is hierarchical in folders underneath / (/opt, /usr, /etc) Folders can act as mount points for local and network filesystems Common Directories /usr =96 shared, read-only libraries and binaries. /etc =96 machine configuration files /home =96 user directories (private) /boot =96 location of necessary files for boot loader. Usually at beginning of disk Common Directories (2) /dev =96 location of special device descriptor files /proc =96 Virtual filesystem that gives insight into the kernel and running tasks. /var =96 Typical location of spool (print, mail) and log files. /opt =96 optional installed packages /dev and /proc are virtual file systems Separation of FileSystems Separation involves creating individual filesystems for each mount point. Prevents an errant process or user from filling up all filesystems and crashing the system. Separating everything is not practical. Disk Partitioning Very similar to Windows, Linux supports carving of drives into partitions. During our install we created separate partitions for various filesystems The fdisk command can be used to create and view partitions. To view current disks and partitions use fdisk =96l Disk Partitioning (2) Disk /dev/sda: 80.0 GB, 80000000000 bytes 255 heads, 63 sectors/track, 9726 cylinders Units =3D cylinders of 16065 * 512 =3D 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 * 1 32 257008+ 83 Linux /dev/sda2 33 1307 10241437+ 83 Linux /dev/sda3 1308 1568 2096482+ 82 Linux swap / Solaris /dev/sda4 1569 9726 65529135 5 Extended /dev/sda5 1569 1600 257008+ 83 Linux /dev/sda6 1601 2875 10241406 83 Linux /dev/sda7 2876 9726 55030626 8e Linux LVM [root@reboot ~]# Disk Partitioning (3) To match partitions to filesystems you can use df to correllate: [root@reboot ~]# df Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda6 9920592 1463072 7945452 16% / /dev/sda5 248895 17297 218748 8% /boot tmpfs 479236 0 479236 0% /dev/shm /dev/mapper/vg_reboot-lvhome 19838052 16125436 2688616 86% /home /dev/mapper/vg_reboot-lvtmp 9560920 72440 9010156 1% /tmp /dev/mapper/vg_reboot-lvusr 6983168 4129136 2493612 63% /usr /dev/mapper/vg_reboot-lvvar 2951952 701460 2098124 26% /var LVM LVM (Logical Volume Management Devices) Volume Groups are essentially logical disks that can actually span multiple devices. /dev/mapper entries are logical volumes within a volume group. Volume groups can consist of partitions on disks or whole disks called physical volumes. Physical volumes (pv=92s) are raw LVM devices with a partition type of 8e or Linux LVM. =93vgdisplay=94 command lists current lvm volume groups. With no options, it prints a stanza for each defined volume group (vg) [root@reboot ~]# vgdisplay --- Volume group --- VG Name vg_reboot =85 LVM (continued) Vgdisplay gives other useful information as well: PE Size 32.00 MB Total PE 1679 Alloc PE / Size 1239 / 38.72 GB Free PE / Size 440 / 13.75 GB PE=92s are Physical Extent. It=92s the smallest allocation size you can have in a VG. Total PE is the number of PE=92s in the volume group. You multiply PE size by Total PE to get the size of the vg. Allocated PE is the total amount of PE assigned to a volume Free PE is the total amount of PE that is available for use. LVM Part 3 How do you determine how many devices are contained in a vg? Easy =96 you use vgdisplay =96v. At the very bottom of the output will be a stanza for each physical volume. --- Physical volumes --- PV Name /dev/sda7 PV UUID YDgW5U-0gFQ-kzBm-HJh5-0l7F-V1Cp-X7VPcj PV Status allocatable Total PE / Free PE 1679 / 440 LVM 4 So, we have pv=92s and vg=92s =96 what about filesystems? You need a logical volume. Vgdisplay =96v also gives information on each lv: --- Logical volume --- LV Name /dev/vg_reboot/lvusr VG Name vg_reboot LV Status available LV Size 6.88 GB Current LE 220 Creating PV=92s Create a partition with fdisk of type 8e (Linux LVM) =96 BE CAREFUL not to change an existing partition. fdisk /dev/sda will open the fdisk menu for /dev/sda The letter m prints help information, but you want to use n to create a new partition. Accept default for starting location (first available sector). Default end will be end of disk. The t option lets you specify type. Use the letter w once you are sure it=92s right to activate changes. It will created /dev/sda# for you Once done, you=92ll need to execute the following command: pvcreate /dev/sd# (where # is the partition you just created). Creating VG=92s and LV=92s Once you have your pv, creating a volume group is as easy as executing: vgcreate classvg /dev/sda# (where number is the pv you just created) Once you have your vg, you can create an LV contained within: lvcreate =96n classlv -L 1G classvg NOTE =96 lvcreate and lvextend accept =96L for human readable size as well as =96l to specify the number of PE=92s Resizing Filesystems Resizing filesystems can be done online with resize2fs. Resize2fs /dev/vg_reboot/lv_to_increase =96 by default it will increase to LV size MUCH easier to resize a filesystem in an LV. LV=92s can be grown without being contiguous. lvextend =96L +5G /dev/vg_reboot/lv_to_increase will increase the logical volume by 5G If you need to resize a partition it can be risky because you need to reorder your partition scheme. Command Syntax Basics Commands consist of three parts: Binary Name Options Arguments Options are indicated by =93-=94 or =93=97=94 prefixes. indicates a single letter (Linux Style) --indicates a word argument (BSD Style) Arguments take many forms. Values for options (-L 5G) Full paths to files or directories on which to perform actions. =93ls=94 command Command: ls Purpose: Lists files and directories (like dir) Options: common options are =96la (long listing). Also use =96t to sort by time, latest first. -r reverses the sort. Common use: ls -latr Arguments: directory or path name (fully qualified or in current dir). =93cat=94 command Command: cat Purpose: display contents of a file Options: none Arguments: filename =93more=94 command Command: more Purpose: another way to show the contents of a file. Breaks by page, so you can read it. Space advances a page, entery advances a line. Options: none Arguments: filename =93grep=94 command Command: grep Purpose: Funny name, serious tool. Grep looks for pattern matches in a file. Options: =96i is my favorite. Means case insensitive (remember, UNIX is case sensitive). Also grep =96v means show me everyline but the ones that contain this text. Arguments: filename =93cd=94 Command: cd Purpose: Changes your current directory. Default directory is /home/ student. Options: none Arguments: Directory name NOTE: cd =96 puts you back to your old directory. =93mkdir=94 Command: mkdir Purpose: Creates a directory Options: -p if you=92re making a deep directory mkdir =96p /dir1/dir2/dir3 will create dir1, dir2, and dir3 Arguments: Directory name =93pwd=94 Command: pwd Purpose: Prints your current directory (you are here). Options: none Arguments: none =93rm=94 Command: rm Purpose: Removes a file Options: -f (means don=92t ask me if I=92m sure). -R means recursive =96 the only way to remove a directory. Arguments: file name NOTE: rm =96Rf / is ALWAYS a bad idea =93df=94 Command: df Purpose: Displays information on mounted filesystems Options: -h (human readable. Calculates in GB, MB, or KB). Arguments: none =93cp=94 Command: cp Purpose: copies one file or directory to another, preserving the original. Options: -R for directories =96p to preserve permissions Arguments: Directory 1, directory2 =93mv=94 Command: mv Purpose: Moves one file or a directory to another =96 rename. Options: none Arguments: file1, file2 =93echo=94 Command: echo Purpose: prints a string to a screen Options: none we=92ll worry about right now. Arguments: text --- if spaces, enclose in =93=92s =93appropos=94 Command: appropos Purpose: English to geek translator. Options: none Arguments: when you know the purpose of the command, appropos might help you find it. =93man=94 Command: man Purpose: more information than you will ever want to know. Options: none Arguments: command Bash basics Bash is your friend. IT is the lazy man=92s shell. If you know the command name, you can type the first few letters and hit tab twice. It will show you your options. Also, to use your last command (or edit it) just hit up. Notes Linux treats spaces as special characters. Avoid them at all costs. If you are dead set on using them, you=92ll have to escape them with \. If you don=92t know how to use a command, try man. If you want a quick reference, 9 times out of 10 you can type the command without any options or arguments and hit enter. It will tell you. CMPSC 249: Introduction to UNIX/Linux Syllabus Update Test has been pushed from next week. All the LVM material from last week=92s class will not be tested on. Tonight=92s Agenda Revisit Common Commands Chain Commands Together Redirecting Output Any questions from last week? Navigating the filesystem Filesystem: collection of files and directories contained on a block device. Examples of commands to navigate the filesystem: pwd, mv, cp, ls Navigating the Filesystem The best place to start is how to figure out where you are. To get a listing of your current directory execute: pwd Pwd tells you where you are, and as such where your various file operations will look for their input The output of that command will look like: /home/student Looking for files We=92ll talk about ls again in a few minutes, but in the meantime, without any arguments or options, it serves one purpose: To show you a list of the files in your current directory: [root@bob ~]# ls backup other_stuff scripty tmp.sh French.zip questions.out test.txt uniq_q_n_a.txt [root@bob ~]# / -- ain=92t it cool / is where all files start from To get a listing of all objects in / execute the following: ls / Note, in the command above, / serves the purpose of an argument. The output should look something like: [root@bob ~]# ls / backup boot etc lib media mnt Old proc sbin srv tmp var bin dev home lost+found misc net opt root selinux sys usr Looking at other directories What happens when you want to view a filesystem that has thousands of files in it? ls will display it=92s output and it will scroll way past the top of your screen, and you won=92t be able to see it all. Try it --- go ahead, I=92ll wait (ls /etc) This is where you get to meet a UNIX Admin=92s best friend: | | -- also cool | (called =93pipe=94) serves the purpose of taking the output from one command and passing it as input to another. It=92s basically a chain. By itself ls | would do nothing. However, if we introduce the more command, our output is broken up by our screen size. ls |more =96 try it. I=92ll wait You can use the Enter key to advance one line at a time, or the space key basically does a page down, q will exit more without looking at all the output. Directories Gone Wild So, this whole / thing is pretty cool, but what if I want to make my own directory? Easy, use mkdir mkdir takes one argument =96 the destination directory. If you do not specify a full path (mkdir /home/student/cookiemonster), mkdir will create the directory in your current directory. mkdir tmp will create a dir called tmp wherever you are. Go ahead, try it=85I=92ll wait *use ls to validate* Moving between directories So, you know what your pwd is, and you know you want to get to /, but how do you make / your current directory? Use cd. Much like in windows/dos, cd changes your current directory. If you fully path the directory (cd /home/etc/sysconfig/) you will be dropped in /etc/sysconfig. Without specifying a full path (cd cookiemonster) cd will look in your pwd for that directory and fail if it does not exist. Go ahead, try it. I=92ll wait. cd with no arguments What happens if you run cd with no arguments? Where do you get placed? Anyone? Try it and see. More more As with most commands in UNIX, more can be used in a few different ways. When we used more before, we piped the output of ls to more. But what if I want to look at a file to see what is in it? Well, you can use more in one of two ways: more /etc/termcap Or, you can use cat to print the contents of the file and pipe it to more: cat /etc/termcap | more What=92s the difference? Looking only at parts of a file Look at the beginning of a file: head /etc/termcap Look at the end of a file: tail /etc/termcap. These commands will show you the first ten and the last ten lines of the file. Or, as above, cat /etc/termcap |head and cat /etc/termcap | tail See a pattern developing? I wanna see more!!! Well, head and tail both support one option: -n -n specifies a number of lines to see. tail =96n 20 /etc/termcap will show the last 20 lines. Try this: tail =96n 100 /etc/termcap What do you need to do to make that all visible? tail =96n 100 /etc/ termcap/more Tail continued Tail supports an option to view a file in real time: tail =96f /etc/ termcap. Will show you the last 10 lines and then sit there. If any new characters get added to the file =96f forces tail to show them to you as they arrive. VERY useful for debugging and monitoring log files. How do you interrupt it? Any ideas? Bueller? cp/mv We used cp/mv in lab last week. Anyone remember how they worked? cp was to copy, mv was to rename. Only, mv is actually a move command, and does more than just rename. Using cp to copy a file involves two arguments: source and destination. If destination is a directory, cp and mv will put their output in the directory as opposed to pwd. Notes Remember, there is a difference between fully pathing (/etc/ sysconfig/) and shortening the path (sysconfig). Anyone want to tell us what that difference is? Cp supports many source files. You can do something like this: cp file1 file2 file3 file4 backup_directory. All files will be put in the directory: backup_directory. Time to remove rm =3D delete a file rm =96i puts rm into interactive (windows) mode. It asks for confirmation before deleting. It=92s safer to run as root. rm accepts many arguments as files to remove. Let=92s try an experement=85 touch file_1 rm file_1 What happened? Did it ask you to remove the file, or did it just do it? Confirmation Elimination What do you do if rm asks you if it=92s ok to remove a file every time? You can use rm =96f (f for force). It=92s probably set up as a command alias for your user. [root@bob ~]# alias alias rm=3D'rm -i=91 To get rid of the alias execute: unalias rm --- but this will only work for this session. The next time you log in you=92ll have to change it. Removing files with wild cards * is a wildcard, meaning it matches any character. If you have a bunch of files to delete that all have a similar name, you can use * to your advantage. Let=92s try: Create the files: touch file_1 touch file_2 touch file_3 touch file_4 Wild cards Continued We created the files, now let=92s remove them. To do it manually would require either one long command (rm file_1 file_2 file_3 file_4) or four separate remove commands. Instead, we can save ourselves some work: rm file_* Common error scenarios Command not found: indicates you have spelled your base command wrong. Using copy instead of cp No such file or directory: indicates that one of your options is incorrect (you=92ve tried to look at a file that doesn=92t exist) ls /cookiemonster Errors (2) If you get an error message, but you are sure that you=92ve spelled the command right, often times you can use man to figure out what you are doing wrong. man ls Navigating man pages is similar to navigating output from more. Redirecting Output We use | to move output from one program to another in a command string. What if we wanted our commands to output directories to a file? There are two ways to do this. One way appends to an existing file, the other creates a new file. Redirecting Output ls > ls.out =96 this creates a new file called ls.out. If ls.out already existed, it would destroy the file and create a new one for us. ls >> ls.out =96 this will append the output of our command to the existing ls.out file. If ls.out did not exist, it would create it for us. Line counting Sometimes you really need to see how big a file is. The wc command counts certain types of entries. To see how many lines are in the /etc/termcap file, you=92d use: cat / etc/termcap | wc =96l wc =96w shows how many words wc =96c shows how many characters Without any options, wc will show you all three: [root@bob ~]# cat /etc/termcap |wc 19092 91266 807103 [root@bob ~]# Lines Chars Words Command Arguments As we discussed last week, commands are made up of three pieces: Binary Options (Flags =96 preceeded with a -) Arguments These arguments can be combined in various ways. Ls Options ls =96l shows us more columns of output. [root@bob ~]# ls backup other_stuff scripty tmp.sh French.zip questions.out test.txt uniq_q_n_a.txt [root@bob ~]# ls -l total 1524 drwxr-xr-x 4 root root 4096 Dec 23 2006 backup Permissions Owner Group Size Time Name Ls Options Using ls =96la will show you hidden files as well. Hidden files begin with a . Other than that, the output is the same to ls =96l Using the =96t option for ls sorts the files by modification time with the latest first. Using the =96r option combined with =96t reverses the time search order, and puts oldest last. Combining ls Options So, we like =96l, -a, -t, and =96r for ls. It gives as much information as we=92d need to look at the files. How do we use them? ls =96l =96a =96t =96r (long way) ls =96latr (lazy way) The options are able to be combined by a single: =96 This is true for most commands you will use. Sorting your output By default the output you will from some commands seems to have no real order. Not all files are maintained in alphabetical order. So, the powers that be developed a command to help us poor humans: sort Sorting 2 The /etc/passwd file contains information on all users on the system. When new users get created, they get added to the bottom of the file. It gets out of hand quickly. So, let=92s try the following: cat /etc/passwd =96 It=92s hard to find entries sort /etc/passwd =96 much easier to read More sorting Looking to reverse that sort, backwards alphabetical anyone? sort =96r has got your back. Very similar to the ls =96latr (reverse time sort) Just remember, UNIX is case sensitive, so A does not equal a out of the box. You can use sort =96f to ignore case If you have a list of files that has multiple entries, many of which are the same, you can use sort to extract unique records: sort =96u We all need a break Great time to break. Be back here in 10 minutes. The sleep command Sometimes you are writing a script that needs to allow time for something to complete. For that the sleep command was invented. sleep takes one argument, and one argument only. A number. It=92s job is basically to wait that many seconds and the return control to you. sleep 5 sleeps for 5 seconds, etc. Passing Arguments You can see what=92s happening with arguments by issuing this command: echo A B C D > file cat file What does this tell us? echo is spawned with 4 arguments echo operates and redirects its output to a file Combining files Suppose you have three separate files that you need in one big file. No problem! date >file1 echo hello world > file2 ls > file3 Cat each of these files individually to see the results. Merge them by executing: cat file1 file2 file3 > bigfile cat bigfile Locating Specific lines in a file grep is hands down one of the most useful utilities ever. Quickly described, grep simply looks for a pattern and outputs the match. A quick example would be: grep student /etc/passwd What else can grep do? You can use grep to find files: ls |grep =93file1=94 You can use grep to match case insensitive: grep =96i student /etc/passwd You can use grep to match everything but: grep =96v student /etc/passwd Notes Just a reminder, many utilities can be executed as part of a command string: cat /etc/passwd |grep =96i student They can also be executed independently grep =96i student /etc/passwd Both methods produce identical output Some utilities are dumb cat, more, sort when executed without any arguments or options will just sit there and stare at you blankly Why? Because they are waiting for you to do something. Execute the sort command and hit enter. What happens? Sort with nothing You didn=92t give it a file to work with. You didn=92t give it a stream to work with, so it=92s waiting for you to provide the data for it to do it=92s work. Enter the following strings: Hello Goodbye 42 AAA Aaa Then hold ctrl and hit D. This tells sort that it=92s reached the end of the input and it does its work. It will use your input as its source. Using cat to create a new file cat > newfile Opens the cat binary and attaches to newfile for output. Drops to the input method we just used to get it=92s contents. Enter: Hello from cat Then ctrl-D. cat newfile =96 will show your entry. You can also create a file with echo: echo =93hello=94 > newfile2 CMPSC 249: Introduction to UNIX/Linux Week 4 -- vi Announcements Test next week We will review at the end of lecture vi The vi that we are using tonight is not actually, it=92s vim (VI iMproved). VIM is not the same as vi, but the basics are close. Not all UNIXes are the same when it comes to vi. Type the following command: vi ~ VIM - Vi IMproved ~ ~ version 7.0.109 ~ by Bram Moolenaar et al. ~ Vim is open source and freely distributable What now? ~ type :q to exit ~ type :help or for on-line help ~ type :help version7 for version info This information is useful, because it gives you some of vi=92s more basic commands. Use :q to exit vi. VI modes VI has two basic modes: command and insert. VI always starts in command mode. Special mode for vi control commands. Insert mode is the only way to actually modify text. Insert mode VI help So, when you enter vi, you can use :help to navigate through the help pages. It=92s a little quirky, and easy to get lost. I often refer to: http://vimdoc.sourceforge.net/htmldoc/help.html What=92s vi for? As we=92ve discussed, the vast majority of UNIX programs are controlled by text files. VI gives you a method to edit those files. VI can: Move around a file Delete Text Copy and Paste Text Moving around (viewing) a file The arrow keys can help you move through a file. For example, execute the following command: vi /etc/passwd Use the arrow keys to scroll up, down, left, and right in the file. Quitting vi Ctrl-c will not work with vi. You can manually kill the process from another window or use the q command. Esc + :q to exit (might not need esc, but always good to be safe) You must ALWAYS precede commands with : Moving 2 In vi, there are special key sequences to perform certain tasks. For example: Shift + G moves to the last line in a file $ moves to the end of the line you are currently on. : and a number moves to that specific line (:1 moves to line 1) Who needs a mouse? When not in insert mode, vi allows you to move around with more than just arrow keys. w allows you to move your cursor from word to word. e moves the cursor to the end of the word b moves back one word. Cursor positioning is key to hitting insert mode running. Searching in a file You can use vi to search for a specific pattern in a file. Anyone remember the command we used to search for patterns last week? In vi you precede your search string with a / vi /etc/passwd Type: /root it will take you to the line that matches root. The =93n=94 key will move to the next match. An uppercase N will take you to the previous match. Searching continued UNIX is case sensitive, remember? Grep, sort, and other utilities have builtin ways of being case- agnostic. Vi is no different, although there is no special command =96 it=92s a setting. You need to use the following: Esc + :set ignorecase Using VI to edit an existing file Find one of the files we created last week in lab. vi that file (vi $filename) Go to the end of the file. Go to the end of the line. Append the following line: ABC123 Save the file (esc + :wq) cat it to ensure the text got saved. Using vi to create a new file Similar to some of the topics we covered last week, if you give vi an argument that is a filename, vi will open that file. If the filename does not exist, vi will create it for you. Let=92s execute the following command: vi vi_file_create.txt Switching out of command mode So, you=92ve opened your file, and you want to put text in it. If this is truly a new file, vi will tell you at the bottom: "vi_tmp_file.txt" [New File] But, you=92re in command mode. Type the letter h. Nothing happens. To get out of insert mode, type: i I is a vi command that switches to insert mode. Now, you can type till your heart=92s content. Go ahead, put a few lines of text in. Done entering text? If you hit :q here, all changes are lost. Your file will not created. So, how you actually write to your file? Four key components: Hit the escape key. This is the way to exit command mode : -- Indicates a command string is coming w =96 is the vi command to write your changes to the file. q =96 command to quit. Often the command sequence used is: Esc + :wq Accomplishes this all in one command Checking your input cat vi_tmp_file.txt See your text? You=92ve now used vi to create a file. What commands did you use to create files last week? Key Concept =93vi rocks=94 =96 Ron Utsinger, Caterpillar, Inc UNIX Operations. The Esc key switches from insert mode to command mode. If you accidentally put your command in your text, you need to switch to command mode. Before you execute a command it is a good idea to ensure you=92re out of insert mode by using escape. Functions You=92ve probably noticed some commands are not preceded by a : These are hotkeys, or macros. I call them functions. There are functions to perform various tasks. Most of these functions, when preceded with a number will perform that function that number of times. 20dd will delete 20 lines, etc. These functions cannot be performed in insert mode. So, if you are in insert mode you=92ll need to hit escape first. Deleting Lines dd is the function to delete the current line. If you precede dd with a number it will remove that many lines. From your cursor down. Let=92s create a file. vi tmp_file1 20i aaaa (enter) Esc + :w Now, let=92s delete 1 line Dd Now, let=92s delete 10 lines 10dd esc + :wq cat the file, and count the lines. How many are there? Deleting a specific line Knowing the line number can be advantageous. You can delete a line based on it=92s number. For example: to delete line 5, execute: :5d Deleting Characters You can delete characters with the delete key and backspace keys when insert mode. In command mode, there is an alternative: x Why? Sometimes you just don=92t want to go to insert mode. vi tmp_file1 again. Delete the remaining lines (9dd) Go to insert mode and enter: abcd Hit escape, and move your cursor to c Hit x Move your cursor back to b, and hit 2x. What happened? Deleting a word Much line x can delete a character , you can delete a word by highlighting it and executing: dw Undo Yes, we realize that people make mistakes. u executes the undo command. It will undo your previous text add or deletion. Hit u once =96 what happened? Hit it again =96 what happened? Changing a word Vi gives you the option to change an entire word without actually going into insert mode first. You simply highlight any letter in the word, and enter: cw The existing word is replaced, and you are allowed to insert a new one in its place. Changing a letter VI also gives you the option to change just a letter without going into insert mode first. You simply move your cursor to the word you want to replace and enter: cl The existing letter is removed and you are allowed to insert a new one in its place. Yanking (copying) VI supports functionality similar to that of copy and paste. To copy an entire line, you type: yy (yank) To copy a word, you type: yw (Yank Word) To copy a letter, you type: yl (Yank Letter) As with all functions, you can precede any of the y=92s above with a number to yank that many lines/words/letters Pasting Pasting is accomplished via the following function: p Regardless if you have yanked a word, letter, or line p will paste what is in the buffer. You can precede p with a number to paste the line that many times. A line will be pasted below your current line A word or letter will be pasted after your current cursor position. An example vi paste_test i for insert mode Enter the following text: abcd 1234 Move your cursor to the first line and type: yy then p You should now have two lines of abcd. Example 2 Delete the second abcd line with dd Move back to the first line, and type yy. Move your arrow key down to the second line and hit p. Your file should now look like: abcd 1234 abcd You can move your cursor between yanks and pastes. Example 3 Delete the second abcd line with dd. Move back to the first line and type 2yy (yank 2 lines). Then hit p. Your file will now look like: abcd abcd 1234 1234 Why? Vi pastes lines below your current cursor position. Hit u, then move down to the bottom of the file and type p, does that look better? Example 4 Delete the extra lines, and move back to the top line. Enter yy Move to the bottom of the file and type 20p. You should now have abcd, 1234, and then 20 more abcd=92s Creating a new line We can use Shift G and $ to go the the last line and the end of that line respectively. From there we can hit enter and put a new line below the last. Is there a better way? Yes, when you are on a line and you want to start a new line directly below, you can use the o key to insert a new line and begin typing. o will automatically put you into insert mode. A Capital O will create a new line above the cursor. Also, capital A will automatically create a new line at the bottom of the file and put you in insert mode. Mistakes So, what if you horribly mess up the file in the process of miskeying functions? Easy, all you have to do is quit without saving: Esc + :q What happened? Why won=92t it let you leave? Esc + :q! (! Means force) Reading in another file So, you=92ve opened vi, but you forgot to make a copy of your original file before editing. Sure, you COULD leave vi, copy it and open up vi again. But there are better ways. Reading in another file =96 Way 1 Way 1 is slightly dangerous in that you actually edit the live file. You could accidentally overwrite the live file. This violates Creighton=92s rule #1: Always make a backup before you change something. So, assume you vi /etc/passwd, and you make changes. But you don=92t want your changes to go live yet. Easy: Esc + :w filename will write to a new file Reading in another file =96 Way 2 Method 2 involves telling vi to input the contents of another file with read. Let=92s try this: vi passwd_copy Esc + :r /etc/passwd Esc + :wq Cat the file =96 what just happened? You copied the contents of /etc/passwd into your file and saved it as passwd_copy VI=92ing a directory This is my favorite feature of vim. Why? Because I=92m lazy. In vim, you can call vi with the argument of a directory. It will give you a list of files in that directory, and let you pick a file. Arrow keys and enter select. Then, you are editing that file. Try it, type vi /etc/ What happens? More navigation Now that we know the power that numbers hold in front of functions, get out of insert mode. Type 15, and then the down key. You=92ve just moved 15 lines down. See why lazy admins like vi? View View is a utility that is bundled with vi. We used more, head, and tail last week to look at big files. View gives us another method to do that. It is basically a read-only version of vi. You can search, use Shift G, or $, /, etc to navigate through bigger files. More tricks $ moves to the end of a line :$ moves to the last line of the file (like Shift G) ^ moves to the beginning of the line you=92re on. w advances a word from the beginning of the word (try 3w) b moves back one word (try 3b) A number followed by | moves to that position in the line. E moves word to word by the end of the word (5e) Tricks continued L moves the cursor to the lowest line on the screen M moves the cursor to the middle line on the screen H moves the cursor to the first line on the screen. Screen Scrolling Ctrl-D moves down one-half screen at a time Ctrl-U moves up one half screen at a time Ctrl-F moves down one whole screen Ctrl-B moves up one whole screen From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 22:25: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 BC52C1065684 for ; Tue, 16 Sep 2008 22:25:15 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with ESMTP id 483A48FC1F for ; Tue, 16 Sep 2008 22:25:15 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 975 invoked by uid 399); 16 Sep 2008 22:25:14 -0000 Received: from localhost (HELO ?192.168.0.4?) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 16 Sep 2008 22:25:14 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <48D03248.1040109@FreeBSD.org> Date: Tue, 16 Sep 2008 15:25:12 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) MIME-Version: 1.0 To: Alex Dupre References: <200809151036.19674.jhb@freebsd.org> <48CEBE6E.1030508@FreeBSD.org> <48CFCE01.4050304@FreeBSD.org> In-Reply-To: <48CFCE01.4050304@FreeBSD.org> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, John Baldwin Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 16 Sep 2008 22:25:15 -0000 Alex Dupre wrote: > Doug Barton ha scritto: >> Bug, and at first glance I think your analysis is correct about the >> cause. > > Surely a bug, but the mentioned code is what was added in rev 1.560 > (http://www.freebsd.org/cgi/cvsweb.cgi/ports/Mk/bsd.port.mk?r1=1.560#rev1.560) > exactly to add this feature, and AFAIR it worked. The commit log refers to a different problem than John reported. The commit log refers to the problem of a saved options file that doesn't have all of the new OPTIONS for a new version of the port. John was referring to the problem of 'make config' not being called for ports being installed as dependencies of a port that has OPTIONS. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 22:32: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 D88151065675 for ; Tue, 16 Sep 2008 22:32:56 +0000 (UTC) (envelope-from mark.picone@deakin.edu.au) Received: from mx-f-00-ext.its.deakin.edu.au (mx-f-00-ext.its.deakin.edu.au [128.184.136.213]) by mx1.freebsd.org (Postfix) with ESMTP id C7AFA8FC1A for ; Tue, 16 Sep 2008 22:32:54 +0000 (UTC) (envelope-from mark.picone@deakin.edu.au) X-IronPort-AV: E=Sophos;i="4.32,410,1217772000"; d="p7s'?scan'208";a="30846619" Received: from grumium-1.its.deakin.edu.au (HELO grumium-1.du.deakin.edu.au) ([128.184.160.5]) by mx-f-00-int.its.deakin.edu.au with ESMTP/TLS/AES128-SHA; 17 Sep 2008 08:32:53 +1000 Received: from garnet-1.du.deakin.edu.au ([128.184.160.3]) by grumium-1.du.deakin.edu.au ([128.184.160.5]) with mapi; Wed, 17 Sep 2008 08:32:52 +1000 From: Mark Picone To: "freebsd-ports@freebsd.org" Date: Wed, 17 Sep 2008 08:32:52 +1000 Thread-Topic: Linux Help Thread-Index: AckYSiPWg1Qj9i3iSZqXD7qOL4Pj9gAAgHwQ Message-ID: <787FAEC94123984293205DC78AD7C2C80E16551218@garnet-1.du.deakin.edu.au> References: <02a63bf9-fa84-4dba-a5c9-94053332584f@j22g2000hsf.googlegroups.com> In-Reply-To: <02a63bf9-fa84-4dba-a5c9-94053332584f@j22g2000hsf.googlegroups.com> Accept-Language: en-US, en-AU Content-Language: en-US X-MS-Has-Attach: yes X-MS-TNEF-Correlator: acceptlanguage: en-US, en-AU Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=SHA1; boundary="----=_NextPart_000_0016_01C9189F.FE5D8BE0" MIME-Version: 1.0 Subject: RE: Linux Help 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, 16 Sep 2008 22:32:56 -0000 ------=_NextPart_000_0016_01C9189F.FE5D8BE0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Ok then... Mark Picone, Trainee Unix Administrator Deakin University, Information Technology Services Division Phone: 03 5227 8602 International: +61 3 5227 0806 Fax: 03 5227 8799 International: +61 3 5227 8799 Email: mark.picone@deakin.edu.au Website: http://www.deakin.edu.au > -----Original Message----- > From: owner-freebsd-ports@freebsd.org [mailto:owner-freebsd- > ports@freebsd.org] On Behalf Of johnharten > Sent: Wednesday, 17 September 2008 8:05 AM > To: freebsd-ports@freebsd.org > Subject: Linux Help >=20 > LINUX is not UNIX, but it's close enough > This book is old > I will try to take the concepts the book lays out and integrate them > with more recent versions. > Lecture material will be a hybrid > Chapter 1 >=20 > Logging on to the System > Why we study UNIX/LINUX > Started in the 1970's (pre-Microsoft)=E2=80=8F > UNIX runs =E2=80=9Ceverything=E2=80=9D > The Internet, Stock Market, Movies, technological advancements, > Embedded Devices (ATM's), POS systems, the military, utility > companies, and much more. > Linux began in the early '90's > Has revolutionized the IT world > Authentication > Authentication is the process of confirming that you are who you say > you are > Logging in (authenticating) typically requires two components > Username (login name)=E2=80=8F > Password > Authentication (continued)=E2=80=8F > Authentication can also take the following forms: > Public/Private Key Pair > PGP / SSL certificates > Biometric Authentication > Fingerprints > Retinal scans > Voice matching > Authorization > Authorization is the process of determining who gets access to what. > Unlike authentication, authorization does not generally involve and > additional input. > Keeps the system secure. > Login Scenarios > Running system with the root username and password > Running system where you have the username / password of non-root user > A system with no Operating System > Scenario: No OS > If there is no operating system present, you'll need to install one > Setting the root password is part of the installation process > You'll need to create a regular user account for yourself as well > Scenarios: Have Credentials > Running system where you have a valid username / password (root or > otherwise) > At login prompt, enter valid username and hit enter > At password prompt, enter valid password and hit enter > Have Credentials (cont'd)=E2=80=8F > Whether or not you enter the username correctly, you will be prompted > for a password. > When you type your password, the characters will be masked by *'s for > security > UNIX is case-sensitive!!! > Notes on root user > root is the system administrator > root has access to all resources and there is no safety net > Use root only when necessary > Login Prompts > Command Line > Telnet / ssh / no graphical environment > Graphical > X Windows system is installed on system > Pictures of both on page 5 > Lab Work > Install Linux > Fedora 9, because we have new hardware. >=20 > CMPSC 249: >=20 > Introduction to UNIX/Linux > Week 2: UNIX Essentials > The Kernel > The kernel is the core of an operating system. > Source Provided for compilation. > RedHat provides RPM packages. (rpm =E2=80=93qa |grep =E2=80=93i = kernel) > You don=E2=80=99t touch it directly. > Where is the Kernel? > The boot loader runs and loads the kernel based on the choice you > make. > Editing the boot loader entry will reveal the location of the kernel > (usually /boot/vmlinuz*) > RamDisk and kernel load and then process id 1 (init) is spawned. > User Space > User space is the visible part of the operating system. > User processes > Services / daemons > Every user space component executes system calls and spends some time > in the kernel. >=20 >=20 > What does the Kernel do? > Sits between programs (user space) and hardware. > Applications use syscall facilities to have the kernel perform work on > their behalf. > This work takes many forms. >=20 > Kernel > Kernel (2) > System call facility that allows processes to use kernel functions. > Process creation and tracking > Process priority control > Swapping pages & memory management > IPC - inter-process communication > Cache, Buffer and I/O management > File creation, removal and modification and permissions > Filesystems > Log file data accumulation and flushing. >=20 > The Filesystem > What is a filesystem? >=20 > a method for storing and organizing computer files and the data > they contain to make it easy to find and access them. > What is a filesystem (English) > A container for data > More than just a place to keep files > Hierarchical > File Attributes > Security >=20 > Filesystem Layout > / =3D System Top Level Directory. Start of the tree > Everything is hierarchical in folders underneath / (/opt, /usr, /etc) > Folders can act as mount points for local and network filesystems > Common Directories > /usr =E2=80=93 shared, read-only libraries and binaries. > /etc =E2=80=93 machine configuration files > /home =E2=80=93 user directories (private) > /boot =E2=80=93 location of necessary files for boot loader. Usually = at > beginning of disk > Common Directories (2) > /dev =E2=80=93 location of special device descriptor files > /proc =E2=80=93 Virtual filesystem that gives insight into the kernel = and > running tasks. > /var =E2=80=93 Typical location of spool (print, mail) and log files. > /opt =E2=80=93 optional installed packages > /dev and /proc are virtual file systems > Separation of FileSystems > Separation involves creating individual filesystems for each mount > point. > Prevents an errant process or user from filling up all filesystems and > crashing the system. > Separating everything is not practical. >=20 > Disk Partitioning > Very similar to Windows, Linux supports carving of drives into > partitions. > During our install we created separate partitions for various > filesystems > The fdisk command can be used to create and view partitions. > To view current disks and partitions use fdisk =E2=80=93l >=20 > Disk Partitioning (2) > Disk /dev/sda: 80.0 GB, 80000000000 bytes > 255 heads, 63 sectors/track, 9726 cylinders > Units =3D cylinders of 16065 * 512 =3D 8225280 bytes > Device Boot Start End Blocks Id System > /dev/sda1 * 1 32 257008+ 83 Linux > /dev/sda2 33 1307 10241437+ 83 Linux > /dev/sda3 1308 1568 2096482+ 82 Linux swap / > Solaris > /dev/sda4 1569 9726 65529135 5 Extended > /dev/sda5 1569 1600 257008+ 83 Linux > /dev/sda6 1601 2875 10241406 83 Linux > /dev/sda7 2876 9726 55030626 8e Linux LVM > [root@reboot ~]# >=20 > Disk Partitioning (3) > To match partitions to filesystems you can use df to correllate: > [root@reboot ~]# df > Filesystem 1K-blocks Used Available Use% Mounted on > /dev/sda6 9920592 1463072 7945452 16% / > /dev/sda5 248895 17297 218748 8% /boot > tmpfs 479236 0 479236 0% /dev/shm > /dev/mapper/vg_reboot-lvhome > 19838052 16125436 2688616 86% /home > /dev/mapper/vg_reboot-lvtmp > 9560920 72440 9010156 1% /tmp > /dev/mapper/vg_reboot-lvusr > 6983168 4129136 2493612 63% /usr > /dev/mapper/vg_reboot-lvvar > 2951952 701460 2098124 26% /var >=20 > LVM > LVM (Logical Volume Management Devices) > Volume Groups are essentially logical disks that can actually span > multiple devices. > /dev/mapper entries are logical volumes within a volume group. > Volume groups can consist of partitions on disks or whole disks called > physical volumes. > Physical volumes (pv=E2=80=99s) are raw LVM devices with a partition = type of > 8e or Linux LVM. > =E2=80=9Cvgdisplay=E2=80=9D command lists current lvm volume groups. = With no options, > it prints a stanza for each defined volume group (vg) > [root@reboot ~]# vgdisplay > --- Volume group --- > VG Name vg_reboot > =E2=80=A6 >=20 >=20 > LVM (continued) > Vgdisplay gives other useful information as well: > PE Size 32.00 MB > Total PE 1679 > Alloc PE / Size 1239 / 38.72 GB > Free PE / Size 440 / 13.75 GB >=20 > PE=E2=80=99s are Physical Extent. It=E2=80=99s the smallest = allocation size you can > have in a VG. > Total PE is the number of PE=E2=80=99s in the volume group. > You multiply PE size by Total PE to get the size of the vg. > Allocated PE is the total amount of PE assigned to a volume > Free PE is the total amount of PE that is available for use. > LVM Part 3 > How do you determine how many devices are contained in a vg? > Easy =E2=80=93 you use vgdisplay =E2=80=93v. At the very bottom of = the output will be > a stanza for each physical volume. >=20 > --- Physical volumes --- > PV Name /dev/sda7 > PV UUID YDgW5U-0gFQ-kzBm-HJh5-0l7F-V1Cp-X7VPcj > PV Status allocatable > Total PE / Free PE 1679 / 440 >=20 >=20 > LVM 4 > So, we have pv=E2=80=99s and vg=E2=80=99s =E2=80=93 what about = filesystems? > You need a logical volume. Vgdisplay =E2=80=93v also gives = information on > each lv: > --- Logical volume --- > LV Name /dev/vg_reboot/lvusr > VG Name vg_reboot > LV Status available > LV Size 6.88 GB > Current LE 220 >=20 > Creating PV=E2=80=99s > Create a partition with fdisk of type 8e (Linux LVM) =E2=80=93 BE = CAREFUL not > to change an existing partition. > fdisk /dev/sda will open the fdisk menu for /dev/sda > The letter m prints help information, but you want to use n to create > a new partition. > Accept default for starting location (first available sector). > Default end will be end of disk. > The t option lets you specify type. > Use the letter w once you are sure it=E2=80=99s right to activate = changes. > It will created /dev/sda# for you > Once done, you=E2=80=99ll need to execute the following command: > pvcreate /dev/sd# (where # is the partition you just > created). > Creating VG=E2=80=99s and LV=E2=80=99s > Once you have your pv, creating a volume group is as easy as > executing: > vgcreate classvg /dev/sda# (where number is the pv you = just > created) >=20 > Once you have your vg, you can create an LV contained within: > lvcreate =E2=80=93n classlv -L 1G classvg >=20 > NOTE =E2=80=93 lvcreate and lvextend accept =E2=80=93L for human = readable size as well > as =E2=80=93l to specify the number of PE=E2=80=99s > Resizing Filesystems > Resizing filesystems can be done online with resize2fs. > Resize2fs /dev/vg_reboot/lv_to_increase =E2=80=93 by default it will = increase > to LV size > MUCH easier to resize a filesystem in an LV. > LV=E2=80=99s can be grown without being contiguous. > lvextend =E2=80=93L +5G /dev/vg_reboot/lv_to_increase will increase = the > logical volume by 5G > If you need to resize a partition it can be risky because you need to > reorder your partition scheme. > Command Syntax Basics > Commands consist of three parts: > Binary Name > Options > Arguments >=20 > Options are indicated by =E2=80=9C-=E2=80=9D or = =E2=80=9C=E2=80=94=E2=80=9D prefixes. > indicates a single letter (Linux Style) > --indicates a word argument (BSD Style) >=20 > Arguments take many forms. > Values for options (-L 5G) > Full paths to files or directories on which to perform actions. > =E2=80=9Cls=E2=80=9D command > Command: ls > Purpose: Lists files and directories (like dir) > Options: common options are =E2=80=93la (long listing). Also use = =E2=80=93t to sort > by time, latest first. -r reverses the sort. > Common use: ls -latr > Arguments: directory or path name (fully qualified or in current dir). > =E2=80=9Ccat=E2=80=9D command > Command: cat > Purpose: display contents of a file > Options: none > Arguments: filename >=20 > =E2=80=9Cmore=E2=80=9D command > Command: more > Purpose: another way to show the contents of a file. Breaks by page, > so you can read it. Space advances a page, entery advances a line. > Options: none > Arguments: filename >=20 > =E2=80=9Cgrep=E2=80=9D command > Command: grep > Purpose: Funny name, serious tool. Grep looks for pattern matches in > a file. > Options: =E2=80=93i is my favorite. Means case insensitive = (remember, UNIX > is case sensitive). Also grep =E2=80=93v means show me everyline but = the ones > that contain this text. > Arguments: filename >=20 >=20 > =E2=80=9Ccd=E2=80=9D > Command: cd > Purpose: Changes your current directory. Default directory is /home/ > student. > Options: none > Arguments: Directory name >=20 > NOTE: cd =E2=80=93 puts you back to your old directory. >=20 >=20 > =E2=80=9Cmkdir=E2=80=9D > Command: mkdir > Purpose: Creates a directory > Options: -p if you=E2=80=99re making a deep directory mkdir =E2=80=93p = /dir1/dir2/dir3 > will create dir1, dir2, and dir3 > Arguments: Directory name >=20 > =E2=80=9Cpwd=E2=80=9D > Command: pwd > Purpose: Prints your current directory (you are here). > Options: none > Arguments: none >=20 > =E2=80=9Crm=E2=80=9D > Command: rm > Purpose: Removes a file > Options: -f (means don=E2=80=99t ask me if I=E2=80=99m sure). -R = means recursive =E2=80=93 > the only way to remove a directory. > Arguments: file name >=20 > NOTE: rm =E2=80=93Rf / is ALWAYS a bad idea >=20 > =E2=80=9Cdf=E2=80=9D > Command: df > Purpose: Displays information on mounted filesystems > Options: -h (human readable. Calculates in GB, MB, or KB). > Arguments: none >=20 > =E2=80=9Ccp=E2=80=9D > Command: cp > Purpose: copies one file or directory to another, preserving the > original. > Options: -R for directories =E2=80=93p to preserve permissions > Arguments: Directory 1, directory2 >=20 > =E2=80=9Cmv=E2=80=9D > Command: mv > Purpose: Moves one file or a directory to another =E2=80=93 rename. > Options: none > Arguments: file1, file2 >=20 > =E2=80=9Cecho=E2=80=9D > Command: echo > Purpose: prints a string to a screen > Options: none we=E2=80=99ll worry about right now. > Arguments: text --- if spaces, enclose in =E2=80=9C=E2=80=99s >=20 > =E2=80=9Cappropos=E2=80=9D > Command: appropos > Purpose: English to geek translator. > Options: none > Arguments: when you know the purpose of the command, appropos might > help you find it. >=20 > =E2=80=9Cman=E2=80=9D > Command: man > Purpose: more information than you will ever want to know. > Options: none > Arguments: command >=20 > Bash basics > Bash is your friend. IT is the lazy man=E2=80=99s shell. > If you know the command name, you can type the first few letters and > hit tab twice. It will show you your options. > Also, to use your last command (or edit it) just hit up. > Notes > Linux treats spaces as special characters. Avoid them at all costs. > If you are dead set on using them, you=E2=80=99ll have to escape them = with \. > If you don=E2=80=99t know how to use a command, try man. > If you want a quick reference, 9 times out of 10 you can type the > command without any options or arguments and hit enter. It will tell > you. >=20 > CMPSC 249: >=20 > Introduction to UNIX/Linux > Syllabus Update > Test has been pushed from next week. >=20 >=20 > All the LVM material from last week=E2=80=99s class will not be tested = on. > Tonight=E2=80=99s Agenda > Revisit Common Commands >=20 > Chain Commands Together >=20 > Redirecting Output >=20 > Any questions from last week? >=20 > Navigating the filesystem > Filesystem: collection of files and directories contained on a block > device. > Examples of commands to navigate the filesystem: pwd, mv, cp, ls >=20 >=20 > Navigating the Filesystem > The best place to start is how to figure out where you are. > To get a listing of your current directory execute: pwd > Pwd tells you where you are, and as such where your various file > operations will look for their input > The output of that command will look like: > /home/student >=20 > Looking for files > We=E2=80=99ll talk about ls again in a few minutes, but in the = meantime, > without any arguments or options, it serves one purpose: > To show you a list of the files in your current directory: > [root@bob ~]# ls > backup other_stuff scripty tmp.sh > French.zip questions.out test.txt uniq_q_n_a.txt > [root@bob ~]# >=20 > / -- ain=E2=80=99t it cool > / is where all files start from > To get a listing of all objects in / execute the following: ls / > Note, in the command above, / serves the purpose of an argument. > The output should look something like: > [root@bob ~]# ls / > backup boot etc lib media mnt Old proc sbin srv > tmp var > bin dev home lost+found misc net opt root selinux sys > usr >=20 >=20 >=20 > Looking at other directories > What happens when you want to view a filesystem that has thousands of > files in it? > ls will display it=E2=80=99s output and it will scroll way past the = top of > your screen, and you won=E2=80=99t be able to see it all. > Try it --- go ahead, I=E2=80=99ll wait (ls /etc) > This is where you get to meet a UNIX Admin=E2=80=99s best friend: | >=20 > | -- also cool > | (called =E2=80=9Cpipe=E2=80=9D) serves the purpose of taking the = output from one > command and passing it as input to another. It=E2=80=99s basically a = chain. > By itself ls | would do nothing. However, if we introduce the more > command, our output is broken up by our screen size. > ls |more =E2=80=93 try it. I=E2=80=99ll wait > You can use the Enter key to advance one line at a time, or the space > key basically does a page down, q will exit more without looking at > all the output. > Directories Gone Wild > So, this whole / thing is pretty cool, but what if I want to make my > own directory? > Easy, use mkdir > mkdir takes one argument =E2=80=93 the destination directory. > If you do not specify a full path (mkdir /home/student/cookiemonster), > mkdir will create the directory in your current directory. > mkdir tmp will create a dir called tmp wherever you are. > Go ahead, try it=E2=80=A6I=E2=80=99ll wait *use ls to validate* > Moving between directories > So, you know what your pwd is, and you know you want to get to /, but > how do you make / your current directory? > Use cd. Much like in windows/dos, cd changes your current directory. > If you fully path the directory (cd /home/etc/sysconfig/) you will be > dropped in /etc/sysconfig. > Without specifying a full path (cd cookiemonster) cd will look in your > pwd for that directory and fail if it does not exist. > Go ahead, try it. I=E2=80=99ll wait. > cd with no arguments > What happens if you run cd with no arguments? Where do you get > placed? >=20 > Anyone? Try it and see. > More more > As with most commands in UNIX, more can be used in a few different > ways. > When we used more before, we piped the output of ls to more. > But what if I want to look at a file to see what is in it? > Well, you can use more in one of two ways: more /etc/termcap > Or, you can use cat to print the contents of the file and pipe it to > more: cat /etc/termcap | more > What=E2=80=99s the difference? > Looking only at parts of a file > Look at the beginning of a file: head /etc/termcap > Look at the end of a file: tail /etc/termcap. > These commands will show you the first ten and the last ten lines of > the file. > Or, as above, cat /etc/termcap |head and cat /etc/termcap | tail > See a pattern developing? >=20 > I wanna see more!!! > Well, head and tail both support one option: -n > -n specifies a number of lines to see. > tail =E2=80=93n 20 /etc/termcap will show the last 20 lines. > Try this: tail =E2=80=93n 100 /etc/termcap > What do you need to do to make that all visible? tail =E2=80=93n 100 = /etc/ > termcap/more >=20 > Tail continued > Tail supports an option to view a file in real time: tail =E2=80=93f = /etc/ > termcap. > Will show you the last 10 lines and then sit there. > If any new characters get added to the file =E2=80=93f forces tail to = show > them to you as they arrive. > VERY useful for debugging and monitoring log files. > How do you interrupt it? Any ideas? > Bueller? > cp/mv > We used cp/mv in lab last week. Anyone remember how they worked? > cp was to copy, mv was to rename. Only, mv is actually a move > command, and does more than just rename. > Using cp to copy a file involves two arguments: source and > destination. > If destination is a directory, cp and mv will put their output in the > directory as opposed to pwd. >=20 > Notes > Remember, there is a difference between fully pathing (/etc/ > sysconfig/) and shortening the path (sysconfig). > Anyone want to tell us what that difference is? > Cp supports many source files. You can do something like this: cp > file1 file2 file3 file4 backup_directory. All files will be put in > the directory: backup_directory. > Time to remove > rm =3D delete a file > rm =E2=80=93i puts rm into interactive (windows) mode. It asks for > confirmation before deleting. It=E2=80=99s safer to run as root. > rm accepts many arguments as files to remove. > Let=E2=80=99s try an experement=E2=80=A6 > touch file_1 > rm file_1 >=20 >=20 > What happened? Did it ask you to remove the file, or did it just do > it? > Confirmation Elimination > What do you do if rm asks you if it=E2=80=99s ok to remove a file = every > time? > You can use rm =E2=80=93f (f for force). > It=E2=80=99s probably set up as a command alias for your user. > [root@bob ~]# alias > alias rm=3D'rm -i=E2=80=98 >=20 >=20 >=20 >=20 >=20 > To get rid of the alias execute: unalias rm --- but this will only > work for this session. The next time you log in you=E2=80=99ll have = to change > it. >=20 > Removing files with wild cards > * is a wildcard, meaning it matches any character. > If you have a bunch of files to delete that all have a similar name, > you can use * to your advantage. > Let=E2=80=99s try: > Create the files: > touch file_1 > touch file_2 > touch file_3 > touch file_4 > Wild cards Continued > We created the files, now let=E2=80=99s remove them. > To do it manually would require either one long command (rm file_1 > file_2 file_3 file_4) or four separate remove commands. > Instead, we can save ourselves some work: > rm file_* > Common error scenarios > Command not found: indicates you have spelled your base command > wrong. > Using copy instead of cp > No such file or directory: indicates that one of your options is > incorrect (you=E2=80=99ve tried to look at a file that doesn=E2=80=99t = exist) > ls /cookiemonster >=20 > Errors (2) > If you get an error message, but you are sure that you=E2=80=99ve = spelled the > command right, often times you can use man to figure out what you are > doing wrong. > man ls > Navigating man pages is similar to navigating output from more. >=20 > Redirecting Output > We use | to move output from one program to another in a command > string. > What if we wanted our commands to output directories to a file? > There are two ways to do this. One way appends to an existing file, > the other creates a new file. > Redirecting Output > ls > ls.out =E2=80=93 this creates a new file called ls.out. If = ls.out > already existed, it would destroy the file and create a new one for > us. > ls >> ls.out =E2=80=93 this will append the output of our command to = the > existing ls.out file. If ls.out did not exist, it would create it for > us. > Line counting > Sometimes you really need to see how big a file is. The wc command > counts certain types of entries. > To see how many lines are in the /etc/termcap file, you=E2=80=99d use: = cat / > etc/termcap | wc =E2=80=93l > wc =E2=80=93w shows how many words > wc =E2=80=93c shows how many characters > Without any options, wc will show you all three: > [root@bob ~]# cat /etc/termcap |wc > 19092 91266 807103 > [root@bob ~]# > Lines Chars Words >=20 > Command Arguments > As we discussed last week, commands are made up of three pieces: > Binary > Options (Flags =E2=80=93 preceeded with a -) > Arguments > These arguments can be combined in various ways. >=20 > Ls Options > ls =E2=80=93l shows us more columns of output. > [root@bob ~]# ls > backup other_stuff scripty tmp.sh > French.zip questions.out test.txt uniq_q_n_a.txt >=20 >=20 > [root@bob ~]# ls -l > total 1524 > drwxr-xr-x 4 root root 4096 Dec 23 2006 backup >=20 > Permissions Owner Group Size Time Name >=20 > Ls Options > Using ls =E2=80=93la will show you hidden files as well. > Hidden files begin with a . > Other than that, the output is the same to ls =E2=80=93l > Using the =E2=80=93t option for ls sorts the files by modification = time with > the latest first. > Using the =E2=80=93r option combined with =E2=80=93t reverses the time = search order, > and puts oldest last. > Combining ls Options > So, we like =E2=80=93l, -a, -t, and =E2=80=93r for ls. It gives as = much information > as we=E2=80=99d need to look at the files. How do we use them? > ls =E2=80=93l =E2=80=93a =E2=80=93t =E2=80=93r (long way) > ls =E2=80=93latr (lazy way) > The options are able to be combined by a single: = =E2=80=93 >=20 > This is true for most commands you will use. > Sorting your output > By default the output you will from some commands seems to have no > real order. > Not all files are maintained in alphabetical order. > So, the powers that be developed a command to help us poor humans: > sort > Sorting 2 > The /etc/passwd file contains information on all users on the > system. > When new users get created, they get added to the bottom of the > file. > It gets out of hand quickly. So, let=E2=80=99s try the following: > cat /etc/passwd =E2=80=93 It=E2=80=99s hard to find entries > sort /etc/passwd =E2=80=93 much easier to read > More sorting > Looking to reverse that sort, backwards alphabetical anyone? > sort =E2=80=93r has got your back. > Very similar to the ls =E2=80=93latr (reverse time sort) > Just remember, UNIX is case sensitive, so A does not equal a out of > the box. > You can use sort =E2=80=93f to ignore case >=20 >=20 > If you have a list of files that has multiple entries, many of which > are the same, you can use sort to extract unique records: sort = =E2=80=93u > We all need a break > Great time to break. Be back here in 10 minutes. > The sleep command > Sometimes you are writing a script that needs to allow time for > something to complete. > For that the sleep command was invented. > sleep takes one argument, and one argument only. A number. > It=E2=80=99s job is basically to wait that many seconds and the return = control > to you. sleep 5 sleeps for 5 seconds, etc. > Passing Arguments > You can see what=E2=80=99s happening with arguments by issuing this = command: > echo A B C D > file > cat file >=20 >=20 > What does this tell us? > echo is spawned with 4 arguments > echo operates and redirects its output to a file > Combining files > Suppose you have three separate files that you need in one big file. > No problem! > date >file1 > echo hello world > file2 > ls > file3 > Cat each of these files individually to see the results. > Merge them by executing: > cat file1 file2 file3 > bigfile > cat bigfile > Locating Specific lines in a file > grep is hands down one of the most useful utilities ever. > Quickly described, grep simply looks for a pattern and outputs the > match. > A quick example would be: > grep student /etc/passwd > What else can grep do? > You can use grep to find files: > ls |grep =E2=80=9Cfile1=E2=80=9D > You can use grep to match case insensitive: > grep =E2=80=93i student /etc/passwd > You can use grep to match everything but: > grep =E2=80=93v student /etc/passwd > Notes > Just a reminder, many utilities can be executed as part of a command > string: > cat /etc/passwd |grep =E2=80=93i student > They can also be executed independently > grep =E2=80=93i student /etc/passwd >=20 >=20 >=20 >=20 > Both methods produce identical output > Some utilities are dumb > cat, more, sort when executed without any arguments or options will > just sit there and stare at you blankly > Why? Because they are waiting for you to do something. > Execute the sort command and hit enter. > What happens? > Sort with nothing > You didn=E2=80=99t give it a file to work with. You didn=E2=80=99t = give it a stream > to work with, so it=E2=80=99s waiting for you to provide the data for = it to do > it=E2=80=99s work. > Enter the following strings: > Hello > Goodbye > 42 > AAA > Aaa > Then hold ctrl and hit D. This tells sort that it=E2=80=99s reached = the end > of the input and it does its work. It will use your input as its > source. > Using cat to create a new file > cat > newfile > Opens the cat binary and attaches to newfile for output. > Drops to the input method we just used to get it=E2=80=99s contents. = Enter: > Hello from cat > Then ctrl-D. > cat newfile =E2=80=93 will show your entry. > You can also create a file with echo: echo =E2=80=9Chello=E2=80=9D > = newfile2 >=20 > CMPSC 249: >=20 > Introduction to UNIX/Linux > Week 4 -- vi >=20 > Announcements >=20 > Test next week > We will review at the end of lecture >=20 >=20 > vi > The vi that we are using tonight is not actually, it=E2=80=99s vim (VI > iMproved). > VIM is not the same as vi, but the basics are close. Not all UNIXes > are the same when it comes to vi. > Type the following command: vi > ~ VIM - Vi IMproved > ~ > ~ version 7.0.109 > ~ by Bram Moolenaar et al. > ~ Vim is open source and freely distributable >=20 >=20 > What now? > ~ type :q to exit > ~ type :help or for on-line help > ~ type :help version7 for version info > This information is useful, because it gives you some of vi=E2=80=99s = more > basic commands. > Use :q to exit vi. >=20 > VI modes > VI has two basic modes: command and insert. > VI always starts in command mode. > Special mode for vi control commands. > Insert mode is the only way to actually modify text. > Insert mode > VI help > So, when you enter vi, you can use :help to navigate through the help > pages. > It=E2=80=99s a little quirky, and easy to get lost. I often refer to: > http://vimdoc.sourceforge.net/htmldoc/help.html > What=E2=80=99s vi for? > As we=E2=80=99ve discussed, the vast majority of UNIX programs are = controlled > by text files. > VI gives you a method to edit those files. VI can: > Move around a file > Delete Text > Copy and Paste Text > Moving around (viewing) a file > The arrow keys can help you move through a file. For example, execute > the following command: vi /etc/passwd > Use the arrow keys to scroll up, down, left, and right in the file. >=20 > Quitting vi > Ctrl-c will not work with vi. > You can manually kill the process from another window or use the q > command. > Esc + :q to exit (might not need esc, but always good to be safe) > You must ALWAYS precede commands with : > Moving 2 > In vi, there are special key sequences to perform certain tasks. > For example: > Shift + G moves to the last line in a file > $ moves to the end of the line you are currently on. > : and a number moves to that specific line (:1 moves to line 1) >=20 > Who needs a mouse? > When not in insert mode, vi allows you to move around with more than > just arrow keys. > w allows you to move your cursor from word to word. > e moves the cursor to the end of the word > b moves back one word. > Cursor positioning is key to hitting insert mode running. >=20 >=20 > Searching in a file > You can use vi to search for a specific pattern in a file. > Anyone remember the command we used to search for patterns last week? > In vi you precede your search string with a / > vi /etc/passwd > Type: /root it will take you to the line that matches root. > The =E2=80=9Cn=E2=80=9D key will move to the next match. > An uppercase N will take you to the previous match. > Searching continued > UNIX is case sensitive, remember? > Grep, sort, and other utilities have builtin ways of being case- > agnostic. > Vi is no different, although there is no special command =E2=80=93 = it=E2=80=99s a > setting. > You need to use the following: > Esc + :set ignorecase > Using VI to edit an existing file > Find one of the files we created last week in lab. > vi that file (vi $filename) > Go to the end of the file. > Go to the end of the line. > Append the following line: ABC123 > Save the file (esc + :wq) > cat it to ensure the text got saved. > Using vi to create a new file > Similar to some of the topics we covered last week, if you give vi an > argument that is a filename, vi will open that file. > If the filename does not exist, vi will create it for you. > Let=E2=80=99s execute the following command: > vi vi_file_create.txt >=20 >=20 > Switching out of command mode > So, you=E2=80=99ve opened your file, and you want to put text in it. > If this is truly a new file, vi will tell you at the bottom: > "vi_tmp_file.txt" [New File] >=20 > But, you=E2=80=99re in command mode. > Type the letter h. Nothing happens. >=20 > To get out of insert mode, type: i >=20 > I is a vi command that switches to insert mode. Now, you can type > till your heart=E2=80=99s content. Go ahead, put a few lines of text = in. >=20 > Done entering text? > If you hit :q here, all changes are lost. Your file will not > created. > So, how you actually write to your file? > Four key components: > Hit the escape key. This is the way to exit command mode > : -- Indicates a command string is coming > w =E2=80=93 is the vi command to write your changes to the file. > q =E2=80=93 command to quit. >=20 >=20 >=20 > Often the command sequence used is: Esc + :wq > Accomplishes this all in one command > Checking your input > cat vi_tmp_file.txt > See your text? > You=E2=80=99ve now used vi to create a file. >=20 > What commands did you use to create files last week? > Key Concept > =E2=80=9Cvi rocks=E2=80=9D =E2=80=93 Ron Utsinger, Caterpillar, Inc = UNIX Operations. > The Esc key switches from insert mode to command mode. > If you accidentally put your command in your text, you need to switch > to command mode. > Before you execute a command it is a good idea to ensure = you=E2=80=99re out of > insert mode by using escape. > Functions > You=E2=80=99ve probably noticed some commands are not preceded by a : > These are hotkeys, or macros. I call them functions. > There are functions to perform various tasks. > Most of these functions, when preceded with a number will perform that > function that number of times. 20dd will delete 20 lines, etc. >=20 >=20 >=20 >=20 > These functions cannot be performed in insert mode. So, if you are in > insert mode you=E2=80=99ll need to hit escape first. > Deleting Lines > dd is the function to delete the current line. > If you precede dd with a number it will remove that many lines. From > your cursor down. > Let=E2=80=99s create a file. > vi tmp_file1 > 20i aaaa (enter) > Esc + :w > Now, let=E2=80=99s delete 1 line > Dd > Now, let=E2=80=99s delete 10 lines > 10dd esc + :wq > cat the file, and count the lines. How many are there? > Deleting a specific line > Knowing the line number can be advantageous. You can delete a line > based on it=E2=80=99s number. > For example: to delete line 5, execute: > :5d > Deleting Characters > You can delete characters with the delete key and backspace keys when > insert mode. > In command mode, there is an alternative: x > Why? Sometimes you just don=E2=80=99t want to go to insert mode. > vi tmp_file1 again. Delete the remaining lines (9dd) > Go to insert mode and enter: abcd > Hit escape, and move your cursor to c > Hit x >=20 >=20 > Move your cursor back to b, and hit 2x. What happened? > Deleting a word > Much line x can delete a character , you can delete a word by > highlighting it and executing: > dw > Undo > Yes, we realize that people make mistakes. > u executes the undo command. It will undo your previous text add or > deletion. > Hit u once =E2=80=93 what happened? > Hit it again =E2=80=93 what happened? > Changing a word > Vi gives you the option to change an entire word without actually > going into insert mode first. > You simply highlight any letter in the word, and enter: > cw > The existing word is replaced, and you are allowed to insert a new one > in its place. >=20 > Changing a letter > VI also gives you the option to change just a letter without going > into insert mode first. > You simply move your cursor to the word you want to replace and > enter: > cl > The existing letter is removed and you are allowed to insert a new one > in its place. >=20 > Yanking (copying) > VI supports functionality similar to that of copy and paste. > To copy an entire line, you type: > yy (yank) > To copy a word, you type: > yw (Yank Word) > To copy a letter, you type: > yl (Yank Letter) > As with all functions, you can precede any of the y=E2=80=99s above = with a > number to yank that many lines/words/letters > Pasting > Pasting is accomplished via the following function: > p > Regardless if you have yanked a word, letter, or line p will paste > what is in the buffer. > You can precede p with a number to paste the line that many times. >=20 >=20 > A line will be pasted below your current line >=20 > A word or letter will be pasted after your current cursor position. >=20 > An example > vi paste_test > i for insert mode > Enter the following text: > abcd > 1234 > Move your cursor to the first line and type: > yy > then p > You should now have two lines of abcd. >=20 >=20 >=20 > Example 2 > Delete the second abcd line with dd > Move back to the first line, and type yy. > Move your arrow key down to the second line and hit p. > Your file should now look like: > abcd > 1234 > abcd > You can move your cursor between yanks and pastes. > Example 3 > Delete the second abcd line with dd. > Move back to the first line and type 2yy (yank 2 lines). > Then hit p. Your file will now look like: > abcd > abcd > 1234 > 1234 > Why? Vi pastes lines below your current cursor position. > Hit u, then move down to the bottom of the file and type p, does that > look better? > Example 4 > Delete the extra lines, and move back to the top line. > Enter yy > Move to the bottom of the file and type 20p. > You should now have abcd, 1234, and then 20 more abcd=E2=80=99s > Creating a new line > We can use Shift G and $ to go the the last line and the end of that > line respectively. From there we can hit enter and put a new line > below the last. > Is there a better way? Yes, when you are on a line and you want to > start a new line directly below, you can use the o key to insert a new > line and begin typing. o will automatically put you into insert > mode. > A Capital O will create a new line above the cursor. > Also, capital A will automatically create a new line at the bottom of > the file and put you in insert mode. > Mistakes > So, what if you horribly mess up the file in the process of miskeying > functions? > Easy, all you have to do is quit without saving: > Esc + :q > What happened? Why won=E2=80=99t it let you leave? >=20 >=20 >=20 > Esc + :q! (! Means force) > Reading in another file > So, you=E2=80=99ve opened vi, but you forgot to make a copy of your = original > file before editing. > Sure, you COULD leave vi, copy it and open up vi again. > But there are better ways. >=20 > Reading in another file =E2=80=93 Way 1 > Way 1 is slightly dangerous in that you actually edit the live file. > You could accidentally overwrite the live file. > This violates Creighton=E2=80=99s rule #1: Always make a backup = before you > change something. > So, assume you vi /etc/passwd, and you make changes. But you = don=E2=80=99t > want your changes to go live yet. Easy: > Esc + :w filename will write to a new file > Reading in another file =E2=80=93 Way 2 > Method 2 involves telling vi to input the contents of another file > with read. > Let=E2=80=99s try this: > vi passwd_copy > Esc + :r /etc/passwd > Esc + :wq > Cat the file =E2=80=93 what just happened? >=20 >=20 > You copied the contents of /etc/passwd into your file and saved it as > passwd_copy > VI=E2=80=99ing a directory > This is my favorite feature of vim. Why? Because I=E2=80=99m lazy. > In vim, you can call vi with the argument of a directory. It will > give you a list of files in that directory, and let you pick a file. > Arrow keys and enter select. > Then, you are editing that file. > Try it, type vi /etc/ > What happens? > More navigation > Now that we know the power that numbers hold in front of functions, > get out of insert mode. > Type 15, and then the down key. > You=E2=80=99ve just moved 15 lines down. > See why lazy admins like vi? > View > View is a utility that is bundled with vi. > We used more, head, and tail last week to look at big files. > View gives us another method to do that. > It is basically a read-only version of vi. > You can search, use Shift G, or $, /, etc to navigate through bigger > files. > More tricks > $ moves to the end of a line > :$ moves to the last line of the file (like Shift G) > ^ moves to the beginning of the line you=E2=80=99re on. > w advances a word from the beginning of the word (try 3w) > b moves back one word (try 3b) > A number followed by | moves to that position in the line. > E moves word to word by the end of the word (5e) > Tricks continued > L moves the cursor to the lowest line on the screen > M moves the cursor to the middle line on the screen > H moves the cursor to the first line on the screen. > Screen Scrolling > Ctrl-D moves down one-half screen at a time > Ctrl-U moves up one half screen at a time > Ctrl-F moves down one whole screen > Ctrl-B moves up one whole screen >=20 > _______________________________________________ > 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" ------=_NextPart_000_0016_01C9189F.FE5D8BE0 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIII8DCCAngw ggHhoAMCAQICEEgskC9sPFRM0lY5J0cgg9swDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UEBhMCWkEx JTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA4MDgxMzAwNTM0NVoXDTA5MDgxMzAwNTM0 NVowSzEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEoMCYGCSqGSIb3DQEJARYZbWFy ay5waWNvbmVAZGVha2luLmVkdS5hdTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA3trtdqYU 84jTuKnHdZ9nMu2euwy8xMgWHPvxk2sIqAsqdl0yyWTujbdvNQda9QSLll8XZuOwbfckkoeK8ZdC nUzxFLVLiKaz9M9YpLTgdPpB5fWk/HfzIyUDYR15FdFCkKldFG/qSo82qqp1JKnrowGYxrE8Onj0 K1uEN0Y7pDUCAwEAAaNGMEQwDgYDVR0PAQH/BAQDAgP4MCQGA1UdEQQdMBuBGW1hcmsucGljb25l QGRlYWtpbi5lZHUuYXUwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQUFAAOBgQCBEiip5LxafJC6 hKUTkQnJcbSjVnkdU3MhN/ti0WkDqSKG5QIslGYei1hXrUmjKpuehCGvRTlfIsatENvgonnZ3/sF nh2RUChBl0e9+0coBMTSGuFidEqHIEUJL/ZixpbNQcmw1/xcyFgDRu3hYdI1T1ARtkAZmdSeg51Y Wh9WeDCCAy0wggKWoAMCAQICAQAwDQYJKoZIhvcNAQEEBQAwgdExCzAJBgNVBAYTAlpBMRUwEwYD VQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEaMBgGA1UEChMRVGhhd3RlIENv bnN1bHRpbmcxKDAmBgNVBAsTH0NlcnRpZmljYXRpb24gU2VydmljZXMgRGl2aXNpb24xJDAiBgNV BAMTG1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBDQTErMCkGCSqGSIb3DQEJARYccGVyc29uYWwt ZnJlZW1haWxAdGhhd3RlLmNvbTAeFw05NjAxMDEwMDAwMDBaFw0yMDEyMzEyMzU5NTlaMIHRMQsw CQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAY BgNVBAoTEVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2Vz IERpdmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG 9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANRp19SwlGRbcelH2AxRtupykbCEXn0tDY97Et+FJXUodDpCLGMnn5V7S+9+GYcdhuqj 3bnOlmQawhRuRKx85o/oTQ9xH0A4pgCjh3j2+ZSGXq3qwF5269kUo11uenwMpUtVfwYZKX+emibV ars4JAhqmMex2qOYkf152+VaxBy5AgMBAAGjEzARMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcN AQEEBQADgYEAx+ySfk749ZalZ2IqpPBNEWDQb41gWGGsJrtSNVwIzzD7qEqWih9iQiOMFw/0umSc F6xHKd+dmF7SbGBxXKKs3Hnj524ARx+1DSjoAp3kmv0T9KbZfLH43F8jJgmRgHPQFBveQ6mDJfLm nC8Vyv6mq4oHdYsM3VGEa+T40c53ooEwggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHR MQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24x GjAYBgNVBAoTEVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZp Y2VzIERpdmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkq hkiG9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcN MTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcg KFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0Ew gZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f6f+jHuy9zfVb 8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/EfkTYkKhPPK9Xzgnc9 A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7AgMBAAGjgZQwgZEwEgYD VR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8vY3JsLnRoYXd0ZS5jb20v VGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8EBAMCAQYwKQYDVR0RBCIwIKQeMBwx GjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqGSIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2j ZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQcUCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4l UJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bGCE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9d X2VPMYIC+DCCAvQCAQEwdjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRp bmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3Vpbmcg Q0ECEEgskC9sPFRM0lY5J0cgg9swCQYFKw4DAhoFAKCCAdgwGAYJKoZIhvcNAQkDMQsGCSqGSIb3 DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwOTE2MjIzMzAwWjAjBgkqhkiG9w0BCQQxFgQUv9PdsLw3 McxppGfuZq6Je7olsVIwZwYJKoZIhvcNAQkPMVowWDAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgIC AIAwDQYIKoZIhvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwBwYFKw4DAhowCgYIKoZI hvcNAgUwgYUGCSsGAQQBgjcQBDF4MHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBD b25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJ c3N1aW5nIENBAhBILJAvbDxUTNJWOSdHIIPbMIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UE BhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1Ro YXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBILJAvbDxUTNJWOSdHIIPbMA0GCSqG SIb3DQEBAQUABIGAjPjEznyZxJcRjeLhoHpeLlzgn4u75uJNLaEQcCi/q1gUcWEf1EoHMV42KH7K 7toawQ6U4lfyYRqHkhOU2OkYZfDlVbHGCoPYea7OPbYvStOIcyJAvqaZD1vjZJP4ir/AIt1a+dcj fGeWlFyFU7XNnjfYeXMO+waKGqog1vuibnQAAAAAAAA= ------=_NextPart_000_0016_01C9189F.FE5D8BE0-- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 23:30: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 49FC91065679 for ; Tue, 16 Sep 2008 23:30:25 +0000 (UTC) (envelope-from lists@stringsutils.com) Received: from zoraida.natserv.net (p65-147.acedsl.com [66.114.65.147]) by mx1.freebsd.org (Postfix) with ESMTP id D80EF8FC17 for ; Tue, 16 Sep 2008 23:30:24 +0000 (UTC) (envelope-from lists@stringsutils.com) Received: from zoraida.natserv.net (zoraida.natserv.net [66.114.65.147]) by zoraida.natserv.net (Postfix) with ESMTP id A3D0B1703C for ; Tue, 16 Sep 2008 19:12:10 -0400 (EDT) Message-ID: X-Mailer: http://www.courier-mta.org/cone/ From: Francisco Reyes To: FreeBSD Ports Date: Tue, 16 Sep 2008 19:12:10 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="US-ASCII" Content-Disposition: inline Content-Transfer-Encoding: 7bit Subject: Source install to look like installed package 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, 16 Sep 2008 23:30:25 -0000 Where could I find the structure of an installed port? I am trying to take an existing binary install and make it appear as an installed package to facilitate uninstall. It is the FreePascal install script. Although we have a a port, it usually is behind. The existing script basically just untars some binaries to a user selected directory. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 16 23:44:09 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 F297E106566B for ; Tue, 16 Sep 2008 23:44:09 +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 D44378FC14 for ; Tue, 16 Sep 2008 23:44:09 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 7F60B8C096; Tue, 16 Sep 2008 18:44:09 -0500 (CDT) Date: Tue, 16 Sep 2008 18:44:09 -0500 To: Daniel Austin MBCS Message-ID: <20080916234409.GL30695@soaustin.net> References: <485EF201.9030906@dan.me.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <485EF201.9030906@dan.me.uk> User-Agent: Mutt/1.5.13 (2006-08-11) From: linimon@lonesome.com (Mark Linimon) Cc: ports@FreeBSD.org Subject: Re: pointyhat sparc64 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, 16 Sep 2008 23:44:10 -0000 On Mon, Jun 23, 2008 at 01:44:49AM +0100, Daniel Austin MBCS wrote: > Is there anything I can do to assist getting more ports/packages tested > (or the pointyhat cluster running faster) ? I'm not sure I ever answered this email (I am going through the backlog today). I hope you did not get discouraged by the lack of response. We are always on the lookout for some more UltraSparc-II machines to add to the build cluster. The fastest things we have are e4500s right now. (There are 3 of those, 5 Netra 1s, and some other misc. stuff). > I had a quick look at your crash logs for the netras... It seems they > have some issues with the ATA controller (atapci0 interrupt storm) - you > only appear to use it for the cdrom drive - perhaps simply disabling via > the boot loader would prevent the kernel panic (and get the machines > into the build cluster)? No, the machines are set up to pxeboot. acd0: CDRW at ata2-master UDMA33 IOMMU fault virtual address 0xc3008000 panic: pcib: uncorrectable DMA error AFAR 0x1fc5c020 AFSR 0x270000ff80000000 cpuid = 0 KDB: enter: panic [thread pid 11 tid 100003 ] Stopped at kdb_enter+0x80: ta %xcc, 1 db However, you are right to point out ata. The T1 200s use a different chipset than the T1 105s. (There are also other differences between them, so it may not necessarily be the cause.) However, you are right that this is a fairly low-cost thing to look at. I'll try it and let you know. (I've been short-cycled on time to look at this for a while, as you might be able to tell from the fact it took me this long to get around to looking at your email). Again, don't get discouraged, there is progress on the sparc64 front, albeit slow. I am running the 7.1R package builds right now. mcl From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 04:22: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 4103A1065672 for ; Wed, 17 Sep 2008 04:22:23 +0000 (UTC) (envelope-from stephen@math.missouri.edu) Received: from cauchy.math.missouri.edu (cauchy.math.missouri.edu [128.206.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id 107AD8FC23 for ; Wed, 17 Sep 2008 04:22:17 +0000 (UTC) (envelope-from stephen@math.missouri.edu) Received: from laptop3.gateway.2wire.net (cauchy.math.missouri.edu [128.206.184.213]) by cauchy.math.missouri.edu (8.14.2/8.14.2) with ESMTP id m8H4LZvs068467 for ; Tue, 16 Sep 2008 23:21:36 -0500 (CDT) (envelope-from stephen@math.missouri.edu) Message-ID: <48D085F7.8080004@math.missouri.edu> Date: Tue, 16 Sep 2008 23:22:15 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8.1.16) Gecko/20080909 SeaMonkey/1.1.11 MIME-Version: 1.0 To: freebsd-ports Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: signal handling issues 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, 17 Sep 2008 04:22:23 -0000 Apparently the program octave, as installed from ports, can coredump with "malloc(): error: recursive call." I did a google check, and it seems that it results when a signal handler calls malloc when the signal was caught inside a malloc. And looking inside /usr/ports/math/octave/work/octave-3.0.2/src/sighandlers.cc, I see that it does seem to use "new" and printing functions which I guess are not listed as allowed in "man sigaction." My question is this. Do you think it would be a good idea to link octave against /devel/ptmalloc? I am thinking of graphics/xaralx as a model for how to do this. Or does anyone else have some other idea on how to fix this? Thanks, Stephen From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 05:27:27 2008 Return-Path: Delivered-To: ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id CE36E1065673; Wed, 17 Sep 2008 05:27:27 +0000 (UTC) Date: Wed, 17 Sep 2008 05:27:27 +0000 From: Alexey Dokuchaev To: Doug Barton Message-ID: <20080917052727.GA71514@FreeBSD.org> References: <200809151036.19674.jhb@freebsd.org> <48CEBE6E.1030508@FreeBSD.org> <48CFCE01.4050304@FreeBSD.org> <48D03248.1040109@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <48D03248.1040109@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: ports@freebsd.org, John Baldwin , Alex Dupre Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 17 Sep 2008 05:27:27 -0000 On Tue, Sep 16, 2008 at 03:25:12PM -0700, Doug Barton wrote: > Alex Dupre wrote: > > Doug Barton ha scritto: > >> Bug, and at first glance I think your analysis is correct about the > >> cause. > > > > Surely a bug, but the mentioned code is what was added in rev 1.560 > > (http://www.freebsd.org/cgi/cvsweb.cgi/ports/Mk/bsd.port.mk?r1=1.560#rev1.560) > > exactly to add this feature, and AFAIR it worked. > > The commit log refers to a different problem than John reported. The > commit log refers to the problem of a saved options file that doesn't > have all of the new OPTIONS for a new version of the port. > > John was referring to the problem of 'make config' not being called for > ports being installed as dependencies of a port that has OPTIONS. Nevertheless, going back to rev. 1.559 of b.p.m. restores correct behavior. Quite ironically, since commit logs tells us that "The end user impact of this is more blue screens." for rev. 1.560, which I tend to blame now. I also don't think that we can simply tell our users to user portmaster or some force-config switches. This bug is quite annoying, and should be fixed to work in vanilla environment environment with default settings. ./danfe From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 05:29:01 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 2DD4C106566B for ; Wed, 17 Sep 2008 05:29:01 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id A14A78FC0A for ; Wed, 17 Sep 2008 05:29:00 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.3/8.14.3) with ESMTP id m8H5SlSb091841; Wed, 17 Sep 2008 06:28:49 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.7.1 smtp.infracaninophile.co.uk m8H5SlSb091841 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1221629329; bh=r6ifJyZApSKe0u pNH7PAyMQ3jIGH1cTG2qYG402xr5U=; h=Message-ID:Date:From:MIME-Version: To:CC:Subject:References:In-Reply-To:Content-Type:Cc:Content-Type: Date:From:In-Reply-To:Message-ID:Mime-Version:References:To; z=Mes sage-ID:=20<48D09588.6030502@infracaninophile.co.uk>|Date:=20Wed,=2 017=20Sep=202008=2006:28:40=20+0100|From:=20Matthew=20Seaman=20|Organization:=20Infracaninophile|User -Agent:=20Thunderbird=202.0.0.16=20(X11/20080726)|MIME-Version:=201 .0|To:=20=3D?ISO-8859-1?Q?Morgan_Wesstr=3DF6m?=3D=20|CC:=20"freebsd-ports@freebsd.org"=20|Subject:=20Re:=20databases/mysql51-server=20and=20begin ner's=20InnoDB=20questions|References:=20<48D0000E.9050709@pp.dyndn s.biz>=09<48D00DD5.9030806@infracaninophile.co.uk>=20<48D01F59.1000 8@pp.dyndns.biz>|In-Reply-To:=20<48D01F59.10008@pp.dyndns.biz>|X-En igmail-Version:=200.95.6|Content-Type:=20multipart/signed=3B=20mica lg=3Dpgp-sha256=3B=0D=0A=20protocol=3D"application/pgp-signature"=3 B=0D=0A=20boundary=3D"------------enigFF7EA539BBDC783E58548F1F"; b=QyiHlvKUklddaS9KBCD5deyphHP2VCyX3GGGGlF2ecDaZWh8sRxQ6LXpfpN6VuVRy 4OGyuwsYhqQgIjwpF3jayIrm7fSQmcYa6HtWypcdtVyGVm16zlVuc+u69SiSG5UJWdo S98cuDdKr51psLZtWGHoxiFvCKkgb013d3d8EIU= Message-ID: <48D09588.6030502@infracaninophile.co.uk> Date: Wed, 17 Sep 2008 06:28:40 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Morgan_Wesstr=F6m?= References: <48D0000E.9050709@pp.dyndns.biz> <48D00DD5.9030806@infracaninophile.co.uk> <48D01F59.10008@pp.dyndns.biz> In-Reply-To: <48D01F59.10008@pp.dyndns.biz> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigFF7EA539BBDC783E58548F1F" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0 (smtp.infracaninophile.co.uk [IPv6:::1]); Wed, 17 Sep 2008 06:28:49 +0100 (BST) X-Virus-Scanned: ClamAV 0.93.3/8267/Wed Sep 17 02:22:32 2008 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: "freebsd-ports@freebsd.org" Subject: Re: databases/mysql51-server and beginner's InnoDB questions 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, 17 Sep 2008 05:29:01 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigFF7EA539BBDC783E58548F1F Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Morgan Wesstr=F6m wrote: > Matthew Seaman wrote: > > No, the sample my.cnf files in /usr/local/share/mysql/ are copied > > straight out of the mysql sources -- there are no FreeBSD specific=20 > > modifications to those files. The bug is with the upstream MySQL > > distribution. There's already an open bug report: > > > > http://bugs.mysql.com/bug.php?id=3D38249 >=20 > I found some other report suggesting it was fixed in 5.1.25 but in this= =20 > bugreport it appears to be fixed in versions after 5.1.26 if I=20 > understand it correctly? The status is 'verified' -- that is, MySQL acknowledge that it is a bug, but no fix has yet been committed. '5.1+' identifies the versions where the bug is /present/ -- that configuration option is perfectly legal in 5.0 or below. It's seen as a low priority documentation fix so it's currently languishing somewhere at the back of the queue for=20 available resources... Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enigFF7EA539BBDC783E58548F1F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkjQlY8ACgkQ8Mjk52CukIyDDACbBy8qbbJtFuq8cmlw3QwAZjCl dNEAn2Q9w9Ds8bhHs8pZe7zHfdSkq8xV =b04u -----END PGP SIGNATURE----- --------------enigFF7EA539BBDC783E58548F1F-- From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 05:49:44 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 3CC8C106566B for ; Wed, 17 Sep 2008 05:49:44 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id B4B0F8FC13 for ; Wed, 17 Sep 2008 05:49:43 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.3/8.14.3) with ESMTP id m8H5nbvk092713; Wed, 17 Sep 2008 06:49:39 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.7.1 smtp.infracaninophile.co.uk m8H5nbvk092713 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1221630579; bh=nRaMUiFZA56uV/ S/JRECOb4cGWJxzpdYCKZPpkSGUzw=; h=Message-ID:Date:From:MIME-Version: To:CC:Subject:References:In-Reply-To:Content-Type:Cc:Content-Type: Date:From:In-Reply-To:Message-ID:Mime-Version:References:To; z=Mes sage-ID:=20<48D09A6A.3060200@infracaninophile.co.uk>|Date:=20Wed,=2 017=20Sep=202008=2006:49:30=20+0100|From:=20Matthew=20Seaman=20|Organization:=20Infracaninophile|User -Agent:=20Thunderbird=202.0.0.16=20(X11/20080726)|MIME-Version:=201 .0|To:=20Francisco=20Reyes=20|CC:=20FreeBSD =20Ports=20|Subject:=20Re:=20Source=20in stall=20to=20look=20like=20installed=20package|References:=20|In-Reply-To:=20|X-Enigmail-Ve rsion:=200.95.6|Content-Type:=20multipart/signed=3B=20micalg=3Dpgp- sha256=3B=0D=0A=20protocol=3D"application/pgp-signature"=3B=0D=0A=2 0boundary=3D"------------enig3F34280BA0346CA3C31C3DE6"; b=PIfTlRLDS KrK1u39e/4LU0FY+LTYIBGJ5oanncEgP9u7xyMDZ/YSNRUGGljICMs3wFaGv6tOzdZx 1ATNPOIKfn+SADUoUdR/0uC2XSVnogR0lYiJ9ukKABzZmcxzML6CEjl9gNj5JZ2ua6N jZcGXl3Mf9AOGUDWMpatKHNawKs8= Message-ID: <48D09A6A.3060200@infracaninophile.co.uk> Date: Wed, 17 Sep 2008 06:49:30 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: Francisco Reyes References: In-Reply-To: X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig3F34280BA0346CA3C31C3DE6" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0 (smtp.infracaninophile.co.uk [IPv6:::1]); Wed, 17 Sep 2008 06:49:39 +0100 (BST) X-Virus-Scanned: ClamAV 0.93.3/8267/Wed Sep 17 02:22:32 2008 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: FreeBSD Ports Subject: Re: Source install to look like installed package 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, 17 Sep 2008 05:49:44 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig3F34280BA0346CA3C31C3DE6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Francisco Reyes wrote: > Where could I find the structure of an installed port? The plist format is documented in pkg_create(1) -- that's the=20 bulk of what you need. pkg_add(1) contains most of the rest. =20 > I am trying to take an existing binary install and make it appear as an= =20 > installed package to facilitate uninstall. >=20 > It is the FreePascal install script. Although we have a a port, it=20 > usually is behind. > The existing script basically just untars some binaries to a user=20 > selected directory. You mean you want to generate a /var/db/pkg/portname-1.2.3 directory with appropriate contents so you can wrangle a bunch of files already on your hard drive as if they were a port? Actually, that's pretty much what the ports system does when you do an install from source. Check out the commands the 'do-package' target runs as shown in /usr/ports/Mk/bsd.port.mk Alternatively, and something which is a lot simpler: if all you want is to cleanly dispose of files installed outside the ports system and there is already a port of the software you want, then just do a forced install of the port on top of the existing files, and then pkg_delete the port. This should get rid of the vast majority if not all of those files. Submitting PRs with updates to bring the FreePascal port up to date will earn you karma points... Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig3F34280BA0346CA3C31C3DE6 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkjQmnEACgkQ8Mjk52CukIxUcgCdEtyxVv/xzc935D24mdmX1eaJ 0kEAn0AA4zS6L3NevthDKCZzoDGbnu09 =HpLG -----END PGP SIGNATURE----- --------------enig3F34280BA0346CA3C31C3DE6-- From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 06:41: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 6D7441065676 for ; Wed, 17 Sep 2008 06:41:11 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from lab.alexdupre.com (cl-506.trn-01.it.sixxs.net [IPv6:2001:1418:100:1f9::2]) by mx1.freebsd.org (Postfix) with ESMTP id 9FF078FC24 for ; Wed, 17 Sep 2008 06:41:10 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: (qmail 56618 invoked from network); 17 Sep 2008 06:41:08 -0000 Received: from unknown (HELO athlon.alexdupre.com) (192.168.178.2) by lab.alexdupre.com with SMTP; 17 Sep 2008 06:41:08 -0000 Message-ID: <48D0A683.9020802@FreeBSD.org> Date: Wed, 17 Sep 2008 08:41:07 +0200 From: Alex Dupre User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: Doug Barton References: <200809151036.19674.jhb@freebsd.org> <48CEBE6E.1030508@FreeBSD.org> <48CFCE01.4050304@FreeBSD.org> <48D03248.1040109@FreeBSD.org> In-Reply-To: <48D03248.1040109@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, John Baldwin Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 17 Sep 2008 06:41:11 -0000 Doug Barton wrote: > John was referring to the problem of 'make config' not being called for > ports being installed as dependencies of a port that has OPTIONS. John said (correct me if I'm wrong) that with an up-to-date system OPTIONS doesn't correctly shows up (when the top port has OPTIONS), but with an "old" system this worked. Reading the bsd.port.mk, the "incriminated" CONFIG_DONE rows never changed since the introduction of the OPTIONS support, so I think this *never* worked as expected. -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 06:52: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 B4EED1065678 for ; Wed, 17 Sep 2008 06:52:34 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from lab.alexdupre.com (cl-506.trn-01.it.sixxs.net [IPv6:2001:1418:100:1f9::2]) by mx1.freebsd.org (Postfix) with ESMTP id EC68C8FC18 for ; Wed, 17 Sep 2008 06:52:33 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: (qmail 57421 invoked from network); 17 Sep 2008 06:52:32 -0000 Received: from unknown (HELO athlon.alexdupre.com) (192.168.178.2) by lab.alexdupre.com with SMTP; 17 Sep 2008 06:52:32 -0000 Message-ID: <48D0A92F.8010609@FreeBSD.org> Date: Wed, 17 Sep 2008 08:52:31 +0200 From: Alex Dupre User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: Alexey Dokuchaev References: <200809151036.19674.jhb@freebsd.org> <48CEBE6E.1030508@FreeBSD.org> <48CFCE01.4050304@FreeBSD.org> <48D03248.1040109@FreeBSD.org> <20080917052727.GA71514@FreeBSD.org> In-Reply-To: <20080917052727.GA71514@FreeBSD.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Doug Barton , John Baldwin Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 17 Sep 2008 06:52:34 -0000 Alexey Dokuchaev wrote: > Nevertheless, going back to rev. 1.559 of b.p.m. restores correct > behavior. Are you sure? I didn't try, but that commit seems to add new reasons to show up the dialog box while not removing any of the old ones. Running "make config-recursive" still works (and it calls recursively "make config-conditional" that works), so it seems john's analysis is correct, but I cannot figure how (and if) ever worked before. -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 07:44:14 2008 Return-Path: Delivered-To: ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 3BF001065688; Wed, 17 Sep 2008 07:44:14 +0000 (UTC) Date: Wed, 17 Sep 2008 07:44:14 +0000 From: Alexey Dokuchaev To: Alex Dupre Message-ID: <20080917074414.GA4703@FreeBSD.org> References: <200809151036.19674.jhb@freebsd.org> <48CEBE6E.1030508@FreeBSD.org> <48CFCE01.4050304@FreeBSD.org> <48D03248.1040109@FreeBSD.org> <20080917052727.GA71514@FreeBSD.org> <48D0A92F.8010609@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <48D0A92F.8010609@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: ports@freebsd.org, Doug Barton , John Baldwin Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 17 Sep 2008 07:44:14 -0000 On Wed, Sep 17, 2008 at 08:52:31AM +0200, Alex Dupre wrote: > Alexey Dokuchaev wrote: > >Nevertheless, going back to rev. 1.559 of b.p.m. restores correct > >behavior. > > Are you sure? I didn't try, but that commit seems to add new reasons to > show up the dialog box while not removing any of the old ones. > Running "make config-recursive" still works (and it calls recursively > "make config-conditional" that works), so it seems john's analysis is > correct, but I cannot figure how (and if) ever worked before. Perhaps I was too fast in my response; I cannot reproduce it now. While I'm trying to continuously approach revision that used to work, I'm starting to suspect that what if it never actually worked? John, how old was your ports tree on 6.x? Maybe this can shed some light on the subject.. ./danfe From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 12:37: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 3D728106567B for ; Wed, 17 Sep 2008 12:37:07 +0000 (UTC) (envelope-from franco.marchesini@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.233]) by mx1.freebsd.org (Postfix) with ESMTP id 11DD08FC19 for ; Wed, 17 Sep 2008 12:37:06 +0000 (UTC) (envelope-from franco.marchesini@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so4152093rvf.43 for ; Wed, 17 Sep 2008 05:37:06 -0700 (PDT) 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=SgcFRhG1bvN3cFZVaEPxvkDDtx+DA1DBEkYNSUkoVmE=; b=VcS2VDmXiCS574H/redXhW+gpXBVBDiN4fdq+4uOZ0in5veq+bCmoDUd/WFDNorr6r sNi3OziiPq+uzyQDEX35saqOypObi3WD9rE1YIwgMiyvPARdYjCDCEP9zpDChb6hr+/4 SiT55SfbeXQFar5SKnoxksEU83kGrTzHDHF8M= 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=SsHKuK8ZDLlnHiBhJBvNHLEvMWMpe7YlMbrXjwzouLq00ZUjSM2ZSVH1eJZIAi/iU0 uMShXD4KPp8Q/iGoSYEaiN3Nj3Y+EHKcZyjx44OY9t3Sj45Hs6yVxUJATiwgBVoIsXUh 8Y313YlNzwhS8DgmX6aSl1KVqKYdImTLIsn9M= Received: by 10.141.137.8 with SMTP id p8mr6442753rvn.163.1221653052218; Wed, 17 Sep 2008 05:04:12 -0700 (PDT) Received: by 10.141.22.21 with HTTP; Wed, 17 Sep 2008 05:04:12 -0700 (PDT) Message-ID: <135cc46d0809170504q145f7489x24f7b2ffef9f364f@mail.gmail.com> Date: Wed, 17 Sep 2008 14:04:12 +0200 From: "Franco Marchesini" To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: axis2/c & 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, 17 Sep 2008 12:37:07 -0000 Hello guys, there is someone that already working on axis2/c ports? Ciao Franco From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 12:57: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 54A4B1065670 for ; Wed, 17 Sep 2008 12:57:06 +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 0826D8FC0A for ; Wed, 17 Sep 2008 12:57:05 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Kfwae-0005CK-12 for freebsd-ports@freebsd.org; Wed, 17 Sep 2008 12:57:04 +0000 Received: from detroit.slack.net ([69.31.82.90]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 17 Sep 2008 12:57:04 +0000 Received: from mark.evenson by detroit.slack.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 17 Sep 2008 12:57:04 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Mark Evenson Date: Wed, 17 Sep 2008 14:56:55 +0200 Lines: 29 Message-ID: <48D0FE97.2000107@gmx.at> References: <40519.1847.qm@web50107.mail.re2.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: detroit.slack.net User-Agent: Thunderbird 2.0.0.16 (X11/20080730) In-Reply-To: Sender: news Cc: Dan Reinholz , freebsd-ports@freebsd.org Subject: Re: Evince 2.22.2_3: "Unhandled MIME type: =?utf-8?b?4oCcYXBwbGlj?= =?utf-8?b?YXRpb24vcGRm4oCdIg==?= 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, 17 Sep 2008 12:57:06 -0000 Jeremy Messenger wrote: > On Tue, 16 Sep 2008 09:57:03 -0500, Mark Evenson > wrote: > >> Dan Reinholz wrote: >>> Since updating to the latest revision of Evince (to >>> 2.22.2_3 from 2.22.2_2) I am no longer able to open >>> .pdf files. Anytime I try to do so I now get the >>> error: [...] > Have you guys follow in /usr/ports/UPDATING? Which entry? Grep'ing for 'evince' doesn't show anything. On additional nosing around, it seems that GNOME (at least Nautilus) has lost the notion of MIME types altogether. Is there a command-line equivalent to magic(1) for GNOME to show what GNOME thinks the underlying MIME type consists of? -- "[T]his is not a disentanglement from, but a progressive knotting into." From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 13:23: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 10FAD106567E for ; Wed, 17 Sep 2008 13:23:45 +0000 (UTC) (envelope-from mark.evenson@gmx.at) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 471028FC12 for ; Wed, 17 Sep 2008 13:23:43 +0000 (UTC) (envelope-from mark.evenson@gmx.at) Received: (qmail invoked by alias); 17 Sep 2008 12:57:03 -0000 Received: from detroit.slack.net (EHLO [127.0.0.1]) [69.31.82.90] by mail.gmx.net (mp023) with SMTP; 17 Sep 2008 14:57:03 +0200 X-Authenticated: #32963322 X-Provags-ID: V01U2FsdGVkX19nebVISvJncUHmYy2Kx2IIlW2eU4vsUdMKcFM5pO fwZqcPse7erdZG Message-ID: <48D0FE97.2000107@gmx.at> Date: Wed, 17 Sep 2008 14:56:55 +0200 From: Mark Evenson User-Agent: Thunderbird 2.0.0.16 (X11/20080730) MIME-Version: 1.0 Newsgroups: gmane.os.freebsd.devel.ports To: Jeremy Messenger References: <40519.1847.qm@web50107.mail.re2.yahoo.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.62 Cc: Dan Reinholz , freebsd-ports@freebsd.org Subject: Re: Evince 2.22.2_3: "Unhandled MIME type: =?utf-8?b?4oCcYXBwbGlj?= =?utf-8?b?YXRpb24vcGRm4oCdIg==?= 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, 17 Sep 2008 13:23:45 -0000 Jeremy Messenger wrote: > On Tue, 16 Sep 2008 09:57:03 -0500, Mark Evenson > wrote: > >> Dan Reinholz wrote: >>> Since updating to the latest revision of Evince (to >>> 2.22.2_3 from 2.22.2_2) I am no longer able to open >>> .pdf files. Anytime I try to do so I now get the >>> error: [...] > Have you guys follow in /usr/ports/UPDATING? Which entry? Grep'ing for 'evince' doesn't show anything. On additional nosing around, it seems that GNOME (at least Nautilus) has lost the notion of MIME types altogether. Is there a command-line equivalent to magic(1) for GNOME to show what GNOME thinks the underlying MIME type consists of? -- "[T]his is not a disentanglement from, but a progressive knotting into." From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 13:26: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 A75CD1065679 for ; Wed, 17 Sep 2008 13:26:21 +0000 (UTC) (envelope-from lenzi@k1.com.br) Received: from netuno.levier.com.br (netuno.levier.com.br [201.47.3.162]) by mx1.freebsd.org (Postfix) with ESMTP id F12758FC2C for ; Wed, 17 Sep 2008 13:26:19 +0000 (UTC) (envelope-from lenzi@k1.com.br) Received: from levier.com.br (localhost [127.0.0.1]) by netuno.levier.com.br (8.14.3/8.14.1) with ESMTP id m8HA11mx009412; Wed, 17 Sep 2008 10:04:42 -0300 (BRT) (envelope-from lenzi@k1.com.br) X-MessageWall-Score: 0 (levier.com.br) Received: from [192.168.32.172] (authenticated as lenzi) by levier.com.br (MessageWall 1.0.8) with SMTP; 17 Sep 2008 13:04:41 -0000 From: sergio lenzi To: Mark Evenson , freebsd-ports@freebsd.org In-Reply-To: <48D0FE97.2000107@gmx.at> References: <40519.1847.qm@web50107.mail.re2.yahoo.com> <48D0FE97.2000107@gmx.at> Date: Wed, 17 Sep 2008 10:04:41 -0300 Message-Id: <1221656681.1282.6.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 FreeBSD GNOME Team Port Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Evince 2.22.2_3: "Unhandled MIME type: =?utf-8?b?4oCcYXBwbGlj?= =?utf-8?b?YXRpb24vcGRm4oCdIg==?= 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, 17 Sep 2008 13:26:21 -0000 Em Qua, 2008-09-17  s 14:56 +0200, Mark Evenson escreveu: > Jeremy Messenger wrote: > > On Tue, 16 Sep 2008 09:57:03 -0500, Mark Evenson > > wrote: > > > >> Dan Reinholz wrote: > >>> Since updating to the latest revision of Evince (to > >>> 2.22.2_3 from 2.22.2_2) I am no longer able to open > >>> .pdf files. Anytime I try to do so I now get the > >>> error: > > [...] > > > Have you guys follow in /usr/ports/UPDATING? > > Which entry? Grep'ing for 'evince' doesn't show anything. > > On additional nosing around, it seems that GNOME (at least Nautilus) has > lost the notion of MIME types altogether. > > Is there a command-line equivalent to magic(1) for GNOME to show what > GNOME thinks the underlying MIME type consists of? > > > seems that your mime database is corrupted/altered.... the command: "update-mime-database" (root user) should fix it (in a global basis) if not, your local mime database is corrupted.... as a last help, 1) save evolution by making a backup of it (in the evolution file tab) 2) rename your user directory to anoter one 3) log out, in again 4) move your directories files (documents....) 5) restore evolution from backup... restore your background image... panel icons... sure works .... > From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 15:06: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 92B861065670 for ; Wed, 17 Sep 2008 15:06:12 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao106.cox.net (eastrmmtao106.cox.net [68.230.240.48]) by mx1.freebsd.org (Postfix) with ESMTP id 27DA38FC1C for ; Wed, 17 Sep 2008 15:06:11 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo03.cox.net ([68.1.16.126]) by eastrmmtao106.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20080917150612.SYAD4226.eastrmmtao106.cox.net@eastrmimpo03.cox.net>; Wed, 17 Sep 2008 11:06:12 -0400 Received: from mezz.mezzweb.com ([68.103.35.214]) by eastrmimpo03.cox.net with bizsmtp id Fr6B1a0014dCcn002r6BDc; Wed, 17 Sep 2008 11:06:11 -0400 X-Authority-Analysis: v=1.0 c=1 a=6I5d2MoRAAAA:8 a=iPiDhyEKA-aERGOzBVAA:9 a=iCQxXtc2nJxgZRMpBVTBr0TWIq4A:4 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 a=LY0hPdMaydYA:10 X-CM-Score: 0.00 Date: Wed, 17 Sep 2008 10:06:00 -0500 To: "Mark Evenson" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8 MIME-Version: 1.0 References: <40519.1847.qm@web50107.mail.re2.yahoo.com> <48D0FE97.2000107@gmx.at> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <48D0FE97.2000107@gmx.at> User-Agent: Opera Mail/9.52 (Linux) Cc: Dan Reinholz , freebsd-ports@freebsd.org Subject: Re: =?utf-8?q?Evince_2=2E22=2E2=5F3=3A_=22Unhandled_MIME_type=3A_?= =?utf-8?b?4oCcYXBwbGljYXRpb24vcGRm4oCdIiI=?= 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, 17 Sep 2008 15:06:12 -0000 On Wed, 17 Sep 2008 07:56:55 -0500, Mark Evenson wrote: > Jeremy Messenger wrote: >> On Tue, 16 Sep 2008 09:57:03 -0500, Mark Evenson >> wrote: >> >>> Dan Reinholz wrote: >>>> Since updating to the latest revision of Evince (to >>>> 2.22.2_3 from 2.22.2_2) I am no longer able to open >>>> .pdf files. Anytime I try to do so I now get the >>>> error: > > [...] > >> Have you guys follow in /usr/ports/UPDATING? > > Which entry? Grep'ing for 'evince' doesn't show anything. Grep for 'mime'. You shouldn't be use grep, which you should be use your own eyes. > On additional nosing around, it seems that GNOME (at least Nautilus) has > lost the notion of MIME types altogether. > > Is there a command-line equivalent to magic(1) for GNOME to show what > GNOME thinks the underlying MIME type consists of? -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 15:28: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 241821065674 for ; Wed, 17 Sep 2008 15:28:37 +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 CEFD58FC1E for ; Wed, 17 Sep 2008 15:28:36 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1KfyxH-0003aL-4H for freebsd-ports@freebsd.org; Wed, 17 Sep 2008 15:28:35 +0000 Received: from detroit.slack.net ([69.31.82.90]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 17 Sep 2008 15:28:35 +0000 Received: from mark.evenson by detroit.slack.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 17 Sep 2008 15:28:35 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Mark Evenson Date: Wed, 17 Sep 2008 17:28:24 +0200 Lines: 37 Message-ID: References: <40519.1847.qm@web50107.mail.re2.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: detroit.slack.net User-Agent: Thunderbird 2.0.0.16 (X11/20080730) In-Reply-To: Sender: news Subject: Re: Evince 2.22.2_3: "Unhandled MIME type: =?utf-8?b?4oCcYXBwbGlj?= =?utf-8?b?YXRpb24vcGRm4oCdIg==?= 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, 17 Sep 2008 15:28:37 -0000 Jeremy Messenger wrote: [...] > Have you guys follow in /usr/ports/UPDATING? > Mezz is refering to the entry labeled 20080725: 20080725: AFFECTS: users of x11-fm/nautilus and misc/shared-mime-info AUTHOR: gnome@FreeBSD.org In order to properly update x11-fm/nautilus and misc/shared-mime-info, do the following using portupgrade: # pkg_deinstall -fO nautilus # portupgrade shared-mime-info # portinstall -O nautilus Once misc/shared-mime-info has been updated, each user will need to run the following command: $ update-mime-database ~/.local/share/mime/ which, after I followed the instructions, results in a working Nautilus. I wasn't able to find a Nautilus/GNOME command-line equivalent to file(1), but context-clicking in Nautilus to show the "Properties" dialog reports the MIME type that Nautilus thinks the file represents. -- "[T]his is not a disentanglement from, but a progressive knotting into." From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 17:43:50 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 4BC121065750; Wed, 17 Sep 2008 17:43:50 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id E00238FC15; Wed, 17 Sep 2008 17:43:49 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [IPv6:::1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m8HHhL6K007809; Wed, 17 Sep 2008 13:43:43 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Alex Dupre Date: Wed, 17 Sep 2008 13:03:05 -0400 User-Agent: KMail/1.9.7 References: <200809151036.19674.jhb@freebsd.org> <48D03248.1040109@FreeBSD.org> <48D0A683.9020802@FreeBSD.org> In-Reply-To: <48D0A683.9020802@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809171303.05759.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [IPv6:::1]); Wed, 17 Sep 2008 13:43:43 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.1/8270/Wed Sep 17 09:15:56 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.5 required=4.2 tests=AWL,BAYES_00,NO_RELAYS, SUBJECT_EXCESS_QP autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: ports@freebsd.org, Doug Barton Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 17 Sep 2008 17:43:50 -0000 On Wednesday 17 September 2008 02:41:07 am Alex Dupre wrote: > Doug Barton wrote: > > John was referring to the problem of 'make config' not being called for > > ports being installed as dependencies of a port that has OPTIONS. > > John said (correct me if I'm wrong) that with an up-to-date system > OPTIONS doesn't correctly shows up (when the top port has OPTIONS), but > with an "old" system this worked. Reading the bsd.port.mk, the > "incriminated" CONFIG_DONE rows never changed since the introduction of > the OPTIONS support, so I think this *never* worked as expected. It used to work. I was just guessing about how it might not be working now based on reading the existing logic. I have not delved into the history to see what has changed. -- John Baldwin From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 17:43:55 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 DA75E106576D; Wed, 17 Sep 2008 17:43:55 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id 5DD718FC1E; Wed, 17 Sep 2008 17:43:55 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [IPv6:::1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m8HHhL6L007809; Wed, 17 Sep 2008 13:43:49 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Alexey Dokuchaev Date: Wed, 17 Sep 2008 13:04:07 -0400 User-Agent: KMail/1.9.7 References: <200809151036.19674.jhb@freebsd.org> <48D0A92F.8010609@FreeBSD.org> <20080917074414.GA4703@FreeBSD.org> In-Reply-To: <20080917074414.GA4703@FreeBSD.org> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200809171304.08204.jhb@freebsd.org> Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [IPv6:::1]); Wed, 17 Sep 2008 13:43:49 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.1/8270/Wed Sep 17 09:15:56 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.5 required=4.2 tests=AWL,BAYES_00,NO_RELAYS autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: ports@freebsd.org, Doug Barton , Alex Dupre Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 17 Sep 2008 17:43:56 -0000 On Wednesday 17 September 2008 03:44:14 am Alexey Dokuchaev wrote: > On Wed, Sep 17, 2008 at 08:52:31AM +0200, Alex Dupre wrote: > > Alexey Dokuchaev wrote: > > >Nevertheless, going back to rev. 1.559 of b.p.m. restores correct > > >behavior. > > > > Are you sure? I didn't try, but that commit seems to add new reasons to > > show up the dialog box while not removing any of the old ones. > > Running "make config-recursive" still works (and it calls recursively > > "make config-conditional" that works), so it seems john's analysis is > > correct, but I cannot figure how (and if) ever worked before. > > Perhaps I was too fast in my response; I cannot reproduce it now. While > I'm trying to continuously approach revision that used to work, I'm > starting to suspect that what if it never actually worked? > > John, how old was your ports tree on 6.x? Maybe this can shed some light > on the subject.. I had updated it the day before my e-mail. When I noticed that ports weren't popping up config screens, I actually stopped my build of ports/x11/kde4 at one point and did a 'make config-recursive' from that port and encountered several config screens (libxine, qt4-gui, etc.) -- John Baldwin From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 20:22:26 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 DD8AF106567B for ; Wed, 17 Sep 2008 20:22:26 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx23.fluidhosting.com [204.14.89.6]) by mx1.freebsd.org (Postfix) with ESMTP id 6B6FD8FC16 for ; Wed, 17 Sep 2008 20:22:26 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 23263 invoked by uid 399); 17 Sep 2008 20:22:24 -0000 Received: from localhost (HELO lap.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 17 Sep 2008 20:22:24 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <48D166FF.7070304@FreeBSD.org> Date: Wed, 17 Sep 2008 13:22:23 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: Alexey Dokuchaev References: <200809151036.19674.jhb@freebsd.org> <48CEBE6E.1030508@FreeBSD.org> <48CFCE01.4050304@FreeBSD.org> <48D03248.1040109@FreeBSD.org> <20080917052727.GA71514@FreeBSD.org> In-Reply-To: <20080917052727.GA71514@FreeBSD.org> X-Enigmail-Version: 0.95.7 OpenPGP: id=D5B2F0FB Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, John Baldwin , Alex Dupre Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 17 Sep 2008 20:22:27 -0000 Alexey Dokuchaev wrote: > I also don't think that we can simply tell our users to user portmaster > or some force-config switches. If you read my post carefully I was suggesting that using portmaster would be a temporary workaround while the actual problem is (hopefully) being fixed. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 20:41:00 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 E2BCE1065673 for ; Wed, 17 Sep 2008 20:41:00 +0000 (UTC) (envelope-from lists@stringsutils.com) Received: from zoraida.natserv.net (p65-147.acedsl.com [66.114.65.147]) by mx1.freebsd.org (Postfix) with ESMTP id B18618FC20 for ; Wed, 17 Sep 2008 20:41:00 +0000 (UTC) (envelope-from lists@stringsutils.com) Received: from zoraida.natserv.net (zoraida.natserv.net [66.114.65.147]) by zoraida.natserv.net (Postfix) with ESMTP id C93A81703C; Wed, 17 Sep 2008 16:40:59 -0400 (EDT) References: <48D09A6A.3060200@infracaninophile.co.uk> Message-ID: X-Mailer: http://www.courier-mta.org/cone/ From: Francisco Reyes To: Matthew Seaman Date: Wed, 17 Sep 2008 16:40:59 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="US-ASCII" Content-Disposition: inline Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: Re: Source install to look like installed package 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, 17 Sep 2008 20:41:01 -0000 Matthew Seaman writes: > You mean you want to generate a /var/db/pkg/portname-1.2.3 > directory with appropriate contents so you can wrangle a bunch > of files already on your hard drive as if they were a port? Yes. > Actually, that's pretty much what the ports system does when you > do an install from source. Check out the commands the 'do-package' > target runs as shown in /usr/ports/Mk/bsd.port.mk Ok. > Submitting PRs with updates to bring the FreePascal port up to date > will earn you karma points... I am thinking perhaps start out with a "binary" port or a package until I get familiar with the port system. Thanks for the pointers. From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 21:25: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 D87591065680 for ; Wed, 17 Sep 2008 21:25:06 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from cpanel03.rubas-s03.net (cpanel03.rubas-s03.net [195.182.222.73]) by mx1.freebsd.org (Postfix) with ESMTP id 95A208FC0A for ; Wed, 17 Sep 2008 21:25:06 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from [213.142.183.219] (helo=gahrtop.gahr.ch) by cpanel03.rubas-s03.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1Kg4WH-0005l4-Qy; Wed, 17 Sep 2008 23:25:05 +0200 Message-ID: <48D1759E.9050502@FreeBSD.org> Date: Wed, 17 Sep 2008 23:24:46 +0200 From: Pietro Cerutti Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.16 (X11/20080807) MIME-Version: 1.0 To: Franco Marchesini References: <135cc46d0809170504q145f7489x24f7b2ffef9f364f@mail.gmail.com> In-Reply-To: <135cc46d0809170504q145f7489x24f7b2ffef9f364f@mail.gmail.com> X-Enigmail-Version: 0.95.6 OpenPGP: id=9571F78E; url=http://gahr.ch/pgp/ Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel03.rubas-s03.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Source: X-Source-Args: X-Source-Dir: Cc: ports@freebsd.org Subject: Re: axis2/c & 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, 17 Sep 2008 21:25:06 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Franco Marchesini wrote: | Hello guys, Hello, | there is someone that already working on axis2/c ports? Yes me, I have a draft ready and am waiting for the ports tree to un-freeze before committing it. I will send it to you tomorrow for review, if you would like :) | Ciao Ciao, | Franco - -- Pietro Cerutti gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEAREKAAYFAkjRdZ4ACgkQwMJqmJVx9474qQCghk2tbzDp74tWvbjhF+CuEXbf GEkAnjgMgm/RXKeNBFObm3qlv3tmQOlG =hESM -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 23:06:16 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 CA9C31065671; Wed, 17 Sep 2008 23:06:16 +0000 (UTC) (envelope-from chris@vindaloo.com) Received: from corellia.vindaloo.com (corellia.vindaloo.com [64.51.148.100]) by mx1.freebsd.org (Postfix) with ESMTP id 9AF9C8FC08; Wed, 17 Sep 2008 23:06:16 +0000 (UTC) (envelope-from chris@vindaloo.com) Received: from hadar.vindaloo.com (hadar.vindaloo.com [172.24.145.72]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by corellia.vindaloo.com (Postfix) with ESMTP id 6A32F5D3D; Wed, 17 Sep 2008 18:38:57 -0400 (EDT) Message-Id: <6C55E656-6B08-4B35-8CE7-6CCE00DDC871@vindaloo.com> From: Christopher Sean Hilton To: freebsd-questions@freebsd.org, freebsd-ports@freebsd.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: Wed, 17 Sep 2008 18:38:56 -0400 X-Mailer: Apple Mail (2.929.2) Cc: Subject: port: security/cfs 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, 17 Sep 2008 23:06:16 -0000 The port security/cfs, Matt Blaze's userland Cryptographic filesystem, is marked as broken because it does not compile under FreeBSD-7.0 or later. I've managed to get it to compile through some simple changes but I don't know enough about RPC to know if I am on the right track. I'm asking for the help of an RPC wizard to check my train of thought. The big change is rpcgen. In FreeBSD 6.0 it builds a C header file with prototypes like this: void * rpc_entry_point(); Now it builds prototypes like this: void * rpc_entry_point(struct yourtype * yourvar, CLIENT * clnt); I'm guessing that the first prototype caused GCC 4.x to gag so rpcgen was patched to produce the second when the move was made to FreeBSD-7.0. The second problem is that CFS is coded with rpc entry points that look like this. void * rpc_entry_point(yourvar, rp) struct yourtype * yourvar; struct svc_req *rp; { int ret = 0; ... return ret; } While gcc doesn't completely gag on that one it's not that happy about it either. The small issue here is that the coding style is ancient. Returning an (int) 0 as NULL has been taboo in C for years and gcc is getting more and more fussy about these problems as time passes. The bigger problem is that the parameter types don't match up. But the mismatch is so huge that I find it difficult to believe that code ever worked. Looking further into things I discovered that rpcgen is basically specifying an client-server interface. For every: void * rpc_entry_point(struct yourtype * yt, CLIENT * clnt); You also get: void * rpc_entry_point_svc(struct yourtype *yt, struct svc_req *rp); Now CFS uses K&R to mangle up the _svc functions pretty well to but basically if you patch cfs_adm.c and cfs_nfs.c to change the rpc entry points from client to service definitions then the code compiles reasonably cleanly with gcc 4. After that long discussion does someone know RPC programming well enough to verify that CFS was defining the Service side of thing all along and that in the past RPC was loose enough to take rpc_entry_point(... as the definition of the service which is now properly called rpc_entry_point_svc(... ? -- Chris -- Chris Hilton chris-at-vindaloo-dot-com ------------------------------------------------------------------------ "All I was doing was trying to get home from work!" -- Rosa Parks From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 23:38: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 3375D106564A for ; Wed, 17 Sep 2008 23:38:30 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.freebsd.org (Postfix) with ESMTP id B7FB48FC19 for ; Wed, 17 Sep 2008 23:38:29 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so579219uge.39 for ; Wed, 17 Sep 2008 16:38:28 -0700 (PDT) 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=6rP4wnIKUuBgUsz8xe1/S3hK3gCXvqMTdrnGUyiuSik=; b=gaPv/Qj8xIE9WdTKBniGie4rLoXQNeXG+ClD3cbiuKUOTs2UQ7BeY6h9WM85uXTvQg DP+rxfB6dqzsw6P7VA5vgxW9hhH7Vg7fdgRw+X6kQHQk/L5h/nEitfUQglui8Wd8EtlC rTpw4E8y7CTcsU/hpS9UkMl2hyJWjc4wrBe6s= 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=JUplwgCipLflXQ+ae0D2oT2uh99Wdtr+HZ54SHqYof+3PFIsEB6oUk+HuV3WAWXOXE uaX+Q/7ROyoPNjolaT+ucz2E4P98zzo/WRijYcUtEeiuGLZ3tb2Z6xwt0LLSPbantKiV yd7D4Wg+0agdTzZwH/lp0Mvu8l4d4oeE59O1o= Received: by 10.210.45.17 with SMTP id s17mr3975917ebs.9.1221694708568; Wed, 17 Sep 2008 16:38:28 -0700 (PDT) Received: by 10.210.58.4 with HTTP; Wed, 17 Sep 2008 16:38:28 -0700 (PDT) Message-ID: <3cb459ed0809171638y5f7f7255wf3f09ac6c0fa62fe@mail.gmail.com> Date: Thu, 18 Sep 2008 03:38:28 +0400 From: "Alexander Churanov" To: wxs@freebsd.org, freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: STILL OPEN: Fwd: ports/127015: [patch] Impossible to fetch devel/valgrind from the jail 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, 17 Sep 2008 23:38:30 -0000 Wesley, In the beginning of September, I've filed an issue about devel/valgrind and also sent an e-mail to port maintainer. The issue is still unresolved. I've also noted that the same person is responsible for devel/boost, that is of version 1.34 in ports while current version is 1.36. The version 1.34 released more than a year ago. Given that, could you verify that the person who maintains that ports is still interested in / capable of doing that? In case current maintainer is not reachable I'd like to start managing this two ports. I was not maintaining ports in FreeBSD before, but I'm experienced software engineer and think that I could manage all technical issues that may arise if any. Alexander Churanov ---------- Forwarded message ---------- From: Alexander Churanov Date: Tue, 9 Sep 2008 00:39:32 +0400 Subject: ports/127015: [patch] Impossible to fetch devel/valgrind from the jail To: barner@freebsd.org Hi! Recently I've suggested a patch to devel/valgrind Makefile. However, the issue is still open currently. Details are here: http://www.freebsd.org/cgi/query-pr.cgi?pr=127015 Just want to know, is supplied patch acceptable to check it in? Alexander Churanov From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 23:51: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 2B4291065674 for ; Wed, 17 Sep 2008 23:51:13 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id D99DB8FC1B for ; Wed, 17 Sep 2008 23:51:12 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id C0B06221921D; Thu, 18 Sep 2008 09:28:42 +1000 (EST) X-Viruscan-Id: <48D1929F0000FE1E78BA51@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail5auth.barnet.com.au", Issuer "*.barnet.com.au" (verified OK)) by mail5.barnet.com.au (Postfix) with ESMTP id 2717921B5BA4; Thu, 18 Sep 2008 09:28:05 +1000 (EST) Received: from k7.mavetju (ppp121-44-125-22.lns10.syd6.internode.on.net [121.44.125.22]) by mail5auth.barnet.com.au (Postfix) with ESMTP id CE06722191F8; Thu, 18 Sep 2008 09:28:04 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 96288390; Thu, 18 Sep 2008 09:28:07 +1000 (EST) Date: Thu, 18 Sep 2008 09:28:07 +1000 From: Edwin Groothuis To: Christopher Sean Hilton Message-ID: <20080917232807.GA83339@k7.mavetju> Mail-Followup-To: Edwin Groothuis , Christopher Sean Hilton , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org References: <6C55E656-6B08-4B35-8CE7-6CCE00DDC871@vindaloo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6C55E656-6B08-4B35-8CE7-6CCE00DDC871@vindaloo.com> User-Agent: Mutt/1.4.2.3i Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: port: security/cfs 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, 17 Sep 2008 23:51:13 -0000 On Wed, Sep 17, 2008 at 06:38:56PM -0400, Christopher Sean Hilton wrote: > The port security/cfs, Matt Blaze's userland Cryptographic filesystem, > is marked as broken because it does not compile under FreeBSD-7.0 or > later. I got patches which I (stupidely) never commited. I'll send0pr them so they will be kept tracked. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-freebsd-ports@FreeBSD.ORG Wed Sep 17 23:52:16 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 4A8BD1065671; Wed, 17 Sep 2008 23:52:16 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id 045EF8FC16; Wed, 17 Sep 2008 23:52:16 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id 541832218BEE; Thu, 18 Sep 2008 09:52:15 +1000 (EST) X-Viruscan-Id: <48D1982F00015735E8F7C1@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail5auth.barnet.com.au", Issuer "*.barnet.com.au" (verified OK)) by mail5.barnet.com.au (Postfix) with ESMTP id EFF8D21B5BA9; Thu, 18 Sep 2008 09:52:14 +1000 (EST) Received: from k7.mavetju (ppp121-44-125-22.lns10.syd6.internode.on.net [121.44.125.22]) by mail5auth.barnet.com.au (Postfix) with ESMTP id 971702218BDB; Thu, 18 Sep 2008 09:52:14 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 6648541D; Thu, 18 Sep 2008 09:52:17 +1000 (EST) Date: Thu, 18 Sep 2008 09:52:17 +1000 From: Edwin Groothuis To: Christopher Sean Hilton Message-ID: <20080917235217.GB83339@k7.mavetju> Mail-Followup-To: Edwin Groothuis , Christopher Sean Hilton , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org References: <6C55E656-6B08-4B35-8CE7-6CCE00DDC871@vindaloo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6C55E656-6B08-4B35-8CE7-6CCE00DDC871@vindaloo.com> User-Agent: Mutt/1.4.2.3i Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: port: security/cfs 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, 17 Sep 2008 23:52:16 -0000 On Wed, Sep 17, 2008 at 06:38:56PM -0400, Christopher Sean Hilton wrote: > The port security/cfs, Matt Blaze's userland Cryptographic filesystem, > is marked as broken because it does not compile under FreeBSD-7.0 or > later. ports/127457 Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 00:51:26 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 3C6C71065671; Thu, 18 Sep 2008 00:51:26 +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 AD05A8FC44; Thu, 18 Sep 2008 00:51:25 +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 8B287FBEC5E; Thu, 18 Sep 2008 03:51:24 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 78D1012E4679; Thu, 18 Sep 2008 03:51:24 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: textproc/xslide.el X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/xslide.el-0.2.2_1.log X-QAT-Build_Reason: QA Run Message-Id: <20080918005124.78D1012E4679@quark.ds9.tecnik93.com> Date: Thu, 18 Sep 2008 03:51:24 +0300 (EEST) Cc: Subject: textproc/xslide.el - fails: mtree 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, 18 Sep 2008 00:51:26 -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/xslide.el-0.2.2_1.log : building xslide.el-0.2.2_1 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/textproc/xslide.el Makefile ident: $FreeBSD: ports/textproc/xslide.el/Makefile,v 1.6 2006/06/26 19:21:03 anray Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Thu Sep 18 00:51:20 UTC 2008 ................................................... (cd /work/a/ports/textproc/xslide.el/work/xslide-0.2.2 && for f in xslide.el xslide-abbrev.el xslide-data.el xslide-font.el xslide-initial.xsl xslide-process.el; do install -o root -g wheel -m 444 $f /usr/local/share/emacs/site-lisp; /bin/ln -sf /usr/local/share/emacs/site-lisp/$f /usr/local/lib/xemacs/site-lisp; done; install -o root -g wheel -m 444 README.TXT TODO NEWS ChangeLog /usr/local/share/doc/xslide.el ) **************************************************************************** To use xsl-mode, add to your ~/.emacs the following lines: ;; XSL mode (autoload 'xsl-mode "xslide" "Major mode for XSL stylesheets." t) ;; Turn on font lock when in XSL mode (add-hook 'xsl-mode-hook 'turn-on-font-lock) (setq auto-mode-alist (append (list '("\\.fo" . xsl-mode) '("\\.xsl" . xsl-mode)) auto-mode-alist)) ;; Uncomment if using abbreviations ;; (abbrev-mode t) **************************************************************************** ===> Registering installation for xslide.el-0.2.2_1 ================================================================ ======================================== ===> Building package for xslide.el-0.2.2_1 Creating package /tmp/packages/All/xslide.el-0.2.2_1.tbz Registering depends:. Creating bzip'd tar ball in '/tmp/packages/All/xslide.el-0.2.2_1.tbz' Deleting xslide.el-0.2.2_1 ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 2779334 4 drwxr-xr-x 2 root wheel 512 Sep 18 00:51 usr/local/share/doc/xslide.el 2779341 12 -r--r--r-- 1 root wheel 4574 Sep 18 00:51 usr/local/share/doc/xslide.el/README.TXT 2779342 4 -r--r--r-- 1 root wheel 95 Sep 18 00:51 usr/local/share/doc/xslide.el/TODO 2779343 4 -r--r--r-- 1 root wheel 427 Sep 18 00:51 usr/local/share/doc/xslide.el/NEWS 2779344 8 -r--r--r-- 1 root wheel 2781 Sep 18 00:51 usr/local/share/doc/xslide.el/ChangeLog ================================================================ build of /usr/ports/textproc/xslide.el ended at Thu Sep 18 00:51:23 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Thu Sep 18 03:21:15 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 337C31065675 for ; Thu, 18 Sep 2008 03:21:15 +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 127A38FC1A for ; Thu, 18 Sep 2008 03:21:15 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id C2D208C083; Wed, 17 Sep 2008 22:21:14 -0500 (CDT) Date: Wed, 17 Sep 2008 22:21:14 -0500 To: Alexander Churanov Message-ID: <20080918032114.GB29511@soaustin.net> References: <3cb459ed0809171638y5f7f7255wf3f09ac6c0fa62fe@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3cb459ed0809171638y5f7f7255wf3f09ac6c0fa62fe@mail.gmail.com> User-Agent: Mutt/1.5.13 (2006-08-11) From: linimon@lonesome.com (Mark Linimon) Cc: wxs@freebsd.org, freebsd-ports@freebsd.org Subject: Re: STILL OPEN: Fwd: ports/127015: [patch] Impossible to fetch devel/valgrind from the jail 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, 18 Sep 2008 03:21:15 -0000 On Thu, Sep 18, 2008 at 03:38:28AM +0400, Alexander Churanov wrote: > In the beginning of September, I've filed an issue about > devel/valgrind and also sent an e-mail to port maintainer. The issue > is still unresolved. For future reference, the address to contact with issues with maintainers is portmgr@FreeBSD.org. I've already forwarded your email to barner@. mcl From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 05:08: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 B19291065672 for ; Thu, 18 Sep 2008 05:08:38 +0000 (UTC) (envelope-from snopyland@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.154]) by mx1.freebsd.org (Postfix) with ESMTP id 38E058FC13 for ; Thu, 18 Sep 2008 05:08:38 +0000 (UTC) (envelope-from snopyland@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so105606fgb.35 for ; Wed, 17 Sep 2008 22:08:36 -0700 (PDT) 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; bh=HOIpqeHe4A0R+thiwy/E84RJ1Ub5kN3OWjfNLPF7zEU=; b=vNhZcMt8/V8/WPY2wGgDFGxfw8UseyEbQvEigqgmjZv+9l+3YKzp5oeoruHfiRiWym 54uyy+QENZTIAnsr9qv8hFbkfCansxsMm49tvfaiKkWDvSuDocKfMfT1yy4oKE41ldZl 0irx7il9kzZbVdRSwSSiJViKj422KeAIQN20E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=nFu898fhIBoKuqBT/EfJX8TLTjfu6qKPVIS9RKALt+wsZalx3UWfloUqQkKV5faTxs E/lBi9jAdrpFBr3uyfloQ4o73r33rKe7KfQk89+m1Pe4bVsmoQXu+PcB81abN9EJfGY6 N7fUQsj5RqKHxbOl8jQd8WPZjA67LpsAfACQQ= Received: by 10.86.82.6 with SMTP id f6mr252152fgb.38.1221712883907; Wed, 17 Sep 2008 21:41:23 -0700 (PDT) Received: by 10.86.60.3 with HTTP; Wed, 17 Sep 2008 21:41:23 -0700 (PDT) Message-ID: Date: Thu, 18 Sep 2008 12:41:23 +0800 From: "Snopy Land" To: freebsd-ports@freebsd.org MIME-Version: 1.0 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: clamav port for 0.94 version , pls help 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, 18 Sep 2008 05:08:38 -0000 Hi, My server version is freebsd6.2 amd64. I have installed clamav to scan my incoming mail. Everything works smoothly for several years. Recently, I need to upgrade clamav version from 0.92 to 0.94 (latest version). Actually, I had done this upgrade clamav process before. My procedures is : 1. run "make deinstall" to deinstall the clamav version of 0.92 2. Modify /usr/ports-supfile (to make sure security port can be download from a correct default host) *default host=ftp.tw.freebsd.org ports-security <--- remark ports-all, and enable the ports-security only 3. cd /usr ; run "cvsup -g -L 2 ports-supfile 4. check /usr/port/security/clamav port is updated 5. cd /usr/port/security/clamav 6. run "make install clean" There is no error message found in the whole process, however, I cannot find the file of "clamd", "clamscan" & "freshclam". The previous version of these file can be found in /usr/local/sbin and /usr/local/bin Anyone have encoutered the same problem ? I am not sure whether my posting is put in the correct mailling list. Any comments are appreciated. Thanks. From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 06:29: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 0BA0D106566C; Thu, 18 Sep 2008 06:29: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 978D18FC12; Thu, 18 Sep 2008 06:29: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 C6042FBEC4B; Thu, 18 Sep 2008 09:29:32 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id C039812E467B; Thu, 18 Sep 2008 09:29:32 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: ftp/py-curl X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/py25-curl-7.16.4.log X-QAT-Build_Reason: Dependency Message-Id: <20080918062932.C039812E467B@quark.ds9.tecnik93.com> Date: Thu, 18 Sep 2008 09:29:32 +0300 (EEST) Cc: Subject: ftp/py-curl - fails: mtree 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, 18 Sep 2008 06:29: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. The build of this port was tried 6 times since last BotMail while trying to build ports that depend on it. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/py25-curl-7.16.4.log : building py25-curl-7.16.4 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/ftp/py-curl Makefile ident: $FreeBSD: ports/ftp/py-curl/Makefile,v 1.30 2008/05/30 05:21:25 perky Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Thu Sep 18 06:29:13 UTC 2008 ................................................... Registering depends: curl-7.18.0 python25-2.5.2_3. Creating bzip'd tar ball in '/tmp/packages/All/py25-curl-7.16.4.tbz' Deleting py25-curl-7.16.4 ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 2898350 4 drwxr-xr-x 3 root wheel 512 Sep 18 06:29 usr/local/share/doc/py-curl 2898351 56 -rw-r--r-- 1 root wheel 27397 Jul 11 2007 usr/local/share/doc/py-curl/ChangeLog 2898352 52 -rw-r--r-- 1 root wheel 26526 Jul 18 2002 usr/local/share/doc/py-curl/COPYING 2898353 4 -rw-r--r-- 1 root wheel 1509 Sep 6 2005 usr/local/share/doc/py-curl/INSTALL 2898354 4 -rw-r--r-- 1 root wheel 471 Apr 22 2007 usr/local/share/doc/py-curl/README 2898355 4 -rw-r--r-- 1 root wheel 1058 Apr 23 2007 usr/local/share/doc/py-curl/TODO 2898364 4 drwxr-xr-x 2 root wheel 1024 Sep 18 06:29 usr/local/share/doc/py-curl/tests 2898365 4 -rw-r--r-- 1 root wheel 1953 Apr 10 2007 usr/local/share/doc/py-curl/tests/test.py 2898366 4 -rw-r--r-- 1 root wheel 693 Apr 21 2003 usr/local/share/doc/py-curl/tests/test_cb.py 2898367 4 -rw-r--r-- 1 root wheel 340 Apr 21 2003 usr/local/share/doc/py-curl/tests/test_debug.py 2898368 4 -rw-r--r-- 1 root wheel 289 Aug 24 2006 usr/local/share/doc/py-curl/tests/test_ftp.py 2898369 4 -rw-r--r-- 1 root wheel 1419 May 1 2003 usr/local/share/doc/py-curl/tests/test_getinfo.py 2898370 8 -rw-r--r-- 1 root wheel 2733 Mar 30 2005 usr/local/share/doc/py-curl/tests/test_gtk.py 2898371 12 -rw-r--r-- 1 root wheel 5476 May 1 2003 usr/local/share/doc/py-curl/tests/test_internals.py 2898372 4 -rw-r--r-- 1 root wheel 1126 May 1 2003 usr/local/share/doc/py-curl/tests/test_memleak.py 2898373 4 -rw-r--r-- 1 root wheel 676 Mar 11 2005 usr/local/share/doc/py-curl/tests/test_multi.py 2898374 4 -rw-r--r-- 1 root wheel 1746 Apr 10 2007 usr/local/share/doc/py-curl/tests/test_multi2.py 2898375 8 -rw-r--r-- 1 root wheel 2068 Mar 11 2005 usr/local/share/doc/py-curl/tests/test_multi3.py 2898376 4 -rw-r--r-- 1 root wheel 1400 Mar 11 2005 usr/local/share/doc/py-curl/tests/test_multi4.py 2898377 4 -rw-r--r-- 1 root wheel 1472 Mar 11 2005 usr/local/share/doc/py-curl/tests/test_multi5.py 2898378 4 -rw-r--r-- 1 root wheel 1536 Mar 11 2005 usr/local/share/doc/py-curl/tests/test_multi6.py 2898379 4 -rw-r--r-- 1 root wheel 1924 Nov 10 2006 usr/local/share/doc/py-curl/tests/test_multi_socket.py 2898380 4 -rw-r--r-- 1 root wheel 1749 Nov 10 2006 usr/local/share/doc/py-curl/tests/test_multi_timer.py 2898381 12 -rw-r--r-- 1 root wheel 5773 Apr 12 2005 usr/local/share/doc/py-curl/tests/test_multi_vs_thread.py 2898382 4 -rw-r--r-- 1 root wheel 589 Apr 21 2003 usr/local/share/doc/py-curl/tests/test_post.py 2898383 4 -rw-r--r-- 1 root wheel 535 Mar 3 2005 usr/local/share/doc/py-curl/tests/test_post2.py 2898384 4 -rw-r--r-- 1 root wheel 804 Jun 21 2004 usr/local/share/doc/py-curl/tests/test_post3.py 2898385 4 -rw-r--r-- 1 root wheel 714 Jun 13 2006 usr/local/share/doc/py-curl/tests/test_share.py 2898386 4 -rw-r--r-- 1 root wheel 473 Apr 21 2003 usr/local/share/doc/py-curl/tests/test_stringio.py 2898387 4 -rw-r--r-- 1 root wheel 744 Apr 21 2003 usr/local/share/doc/py-curl/tests/test_xmlrpc.py 2898388 4 -rw-r--r-- 1 root wheel 949 Apr 21 2003 usr/local/share/doc/py-curl/tests/util.py ================================================================ build of /usr/ports/ftp/py-curl ended at Thu Sep 18 06:29:31 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Thu Sep 18 06:46:29 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 36EFF106566B for ; Thu, 18 Sep 2008 06:46:28 +0000 (UTC) (envelope-from roam@ringlet.net) Received: (qmail 2550 invoked by uid 1000); 18 Sep 2008 06:46:25 -0000 Date: Thu, 18 Sep 2008 09:46:25 +0300 From: Peter Pentchev To: Francisco Reyes Message-ID: <20080918064625.GA1118@straylight.m.ringlet.net> References: <48D09A6A.3060200@infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u3/rZRmxL6MmkK24" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Cc: FreeBSD Ports Subject: Re: Source install to look like installed package 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, 18 Sep 2008 06:46:29 -0000 --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 17, 2008 at 04:40:59PM -0400, Francisco Reyes wrote: > Matthew Seaman writes: >=20 > > You mean you want to generate a /var/db/pkg/portname-1.2.3 > > directory with appropriate contents so you can wrangle a bunch > > of files already on your hard drive as if they were a port? >=20 > Yes. > =20 > > Actually, that's pretty much what the ports system does when you > > do an install from source. Check out the commands the 'do-package' > > target runs as shown in /usr/ports/Mk/bsd.port.mk >=20 >=20 > Ok. > =20 > > Submitting PRs with updates to bring the FreePascal port up to date > > will earn you karma points... >=20 > I am thinking perhaps start out with a "binary" port or a package until I= =20 > get familiar with the port system. In most cases that's actually a bit harder than doing a simple port :) Of course, there are applications that do not lend themselves to porting simply, but in most cases even the "Quick Porting" procedure described in the Porters Handbook[1] is enough to get you a working, albeit not picture-perfect, package. [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/ G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@cnsys.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 You have, of course, just begun reading the sentence that you have just fin= ished reading. --u3/rZRmxL6MmkK24 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkjR+UAACgkQ7Ri2jRYZRVNs6gCgwgsuqEetm4QnMyiOH75yJafm sysAniJSFshBMrUJrCGzzo7r7TMEeM02 =8l+F -----END PGP SIGNATURE----- --u3/rZRmxL6MmkK24-- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 08:51: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 809881065673 for ; Thu, 18 Sep 2008 08:51:15 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from andxor.it (relay.andxor.it [195.223.2.3]) by mx1.freebsd.org (Postfix) with SMTP id AF73D8FC1A for ; Thu, 18 Sep 2008 08:51:13 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: (qmail 35869 invoked from network); 18 Sep 2008 08:51:12 -0000 Received: from unknown (HELO ale.andxor.it) (192.168.2.5) by andxor.it with SMTP; 18 Sep 2008 08:51:12 -0000 Message-ID: <48D2167F.3040203@FreeBSD.org> Date: Thu, 18 Sep 2008 10:51:11 +0200 From: Alex Dupre User-Agent: Thunderbird 2.0.0.16 (X11/20080906) MIME-Version: 1.0 To: John Baldwin References: <200809151036.19674.jhb@freebsd.org> <48D03248.1040109@FreeBSD.org> <48D0A683.9020802@FreeBSD.org> <200809171303.05759.jhb@freebsd.org> In-Reply-To: <200809171303.05759.jhb@freebsd.org> Content-Type: multipart/mixed; boundary="------------050206000609000202030101" Cc: ports@freebsd.org, Doug Barton Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 18 Sep 2008 08:51:15 -0000 This is a multi-part message in MIME format. --------------050206000609000202030101 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit John Baldwin ha scritto: > It used to work. I was thinking the same thing, but actually it never worked in that way. > I was just guessing about how it might not be working now > based on reading the existing logic. I have not delved into the history to > see what has changed. The attached patch should solve this erratic behavior. -- Alex Dupre --------------050206000609000202030101 Content-Type: text/plain; name="bsd.port.mk.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsd.port.mk.diff" --- bsd.port.mk.orig 2008-09-18 10:31:14.000000000 +0200 +++ bsd.port.mk 2008-09-18 10:46:02.000000000 +0200 @@ -3234,7 +3234,7 @@ # target or not. # ################################################################ -.if (!defined(OPTIONS) || defined(CONFIG_DONE) || \ +.if (!defined(OPTIONS) || defined(CONFIG_DONE_${UNIQUENAME:U}) || \ defined(PACKAGE_BUILDING) || defined(BATCH)) _OPTIONS_OK=yes .endif @@ -4169,7 +4169,7 @@ ${target}: ${${target:U}_COOKIE} .elif !target(${target}) ${target}: config-conditional - @cd ${.CURDIR} && ${MAKE} CONFIG_DONE=1 ${__softMAKEFLAGS} ${${target:U}_COOKIE} + @cd ${.CURDIR} && ${MAKE} CONFIG_DONE_${UNIQUENAME:U}=1 ${__softMAKEFLAGS} ${${target:U}_COOKIE} .elif target(${target}) && defined(IGNORE) .endif --------------050206000609000202030101-- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 08:56: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 BAC061065675 for ; Thu, 18 Sep 2008 08:56:26 +0000 (UTC) (envelope-from davidb@boothscientific.com) Received: from mx3.lsn.net (mx3.lsn.net [66.90.130.75]) by mx1.freebsd.org (Postfix) with ESMTP id 8CDF38FC0A for ; Thu, 18 Sep 2008 08:56:26 +0000 (UTC) (envelope-from davidb@boothscientific.com) Received: from 9400.boothscienfific.com (24-155-245-244.dyn.grandenetworks.net [24.155.245.244]) by mx3.lsn.net (8.13.5/8.13.5) with ESMTP id m8I8WRVd019894 for ; Thu, 18 Sep 2008 03:32:27 -0500 From: David Booth To: freebsd-ports@freebsd.org Date: Thu, 18 Sep 2008 03:32:26 -0500 User-Agent: KMail/1.9.10 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809180332.26464.davidb@boothscientific.com> X-Virus-Scanned: ClamAV version 0.93, clamav-milter version 0.93 on mx0.lsn.net X-Virus-Status: Clean Subject: Re: clamav port for 0.94 version , pls help X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: davidb@boothscientific.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Sep 2008 08:56:26 -0000 On Wednesday 17 September 2008, Snopy Land wrote: > Hi, > > My server version is freebsd6.2 amd64. I have installed clamav to > scan my incoming mail. Everything works smoothly for several years. > Recently, I need to upgrade clamav version from 0.92 to 0.94 > (latest version). Actually, I had done this upgrade clamav process > before. My procedures is : > > 1. run "make deinstall" to deinstall the clamav version of 0.92 > 2. Modify /usr/ports-supfile (to make sure security port can be > download from a correct default host) > *default host=ftp.tw.freebsd.org > ports-security <--- remark ports-all, and enable the > ports-security only 3. cd /usr ; run "cvsup -g -L 2 ports-supfile > 4. check /usr/port/security/clamav port is updated > 5. cd /usr/port/security/clamav > 6. run "make install clean" > > There is no error message found in the whole process, however, I > cannot find the file of "clamd", "clamscan" & "freshclam". > The previous version of these file can be found in /usr/local/sbin > and /usr/local/bin > > Anyone have encoutered the same problem ? I am not sure whether my > posting is put in the correct mailling list. > Any comments are appreciated. > > Thanks. They should still be in /usr/local/sbin and /usr/local/bin. Does the new version of the port show as installed? What does ls /var/db/pkg | grep clam show? From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 14:24: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 2F762106567A for ; Thu, 18 Sep 2008 14:24:14 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id E11298FC29 for ; Thu, 18 Sep 2008 14:24:13 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) for freebsd-ports@FreeBSD.org with esmtp (envelope-from ) id <1KgK8H-00021o-3Z>; Thu, 18 Sep 2008 16:05:21 +0200 Received: from telesto.geoinf.fu-berlin.de ([130.133.86.198]) by inpost2.zedat.fu-berlin.de (Exim 4.69) for freebsd-ports@FreeBSD.org with esmtpsa (envelope-from ) id <1KgK8H-00052Q-2a>; Thu, 18 Sep 2008 16:05:21 +0200 Message-ID: <48D25F95.3080504@zedat.fu-berlin.de> Date: Thu, 18 Sep 2008 14:03:01 +0000 From: "O. Hartmann" Organization: Freie =?ISO-8859-15?Q?Universit=E4t_Berlin?= User-Agent: Thunderbird 2.0.0.16 (X11/20080903) MIME-Version: 1.0 To: freebsd-ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: 130.133.86.198 Cc: Subject: teTeX/TeXLive: powerdot still missing ... 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, 18 Sep 2008 14:24:14 -0000 Still using teTeX, but as we all know, development has been canceld by Thomas Esser. I'm looking for a working 'powerdot' which is part of TeXLive now, but there is no TeXLive-port available for FreeBSD. Searching for that matter brings up some informations released a year ago and I'm wondering about the fact that there is no support for FreeBSD. Is there a workaround or 'master plan' how to bring TeXLive to a FreeBSD bx in a clean way? Can TeXLive coexists with teTeX. Thank you very much for your patience ... Regards, Oliver From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 14:30: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 EFB94106564A for ; Thu, 18 Sep 2008 14:30:59 +0000 (UTC) (envelope-from sbruno@miralink.com) Received: from plato.miralink.com (mail.miralink.com [70.103.185.20]) by mx1.freebsd.org (Postfix) with ESMTP id C33698FC0A for ; Thu, 18 Sep 2008 14:30:59 +0000 (UTC) (envelope-from sbruno@miralink.com) Received: from localhost (localhost.localdomain [127.0.0.1]) by plato.miralink.com (Postfix) with ESMTP id 429711A90B5 for ; Thu, 18 Sep 2008 07:27:37 -0700 (PDT) X-Virus-Scanned: amavisd-new at X-Spam-Flag: NO X-Spam-Score: -3.421 X-Spam-Level: X-Spam-Status: No, score=-3.421 tagged_above=-10 required=6.6 tests=[ALL_TRUSTED=-1.8, AWL=-0.978, BAYES_00=-2.599, URIBL_BLACK=1.955, WEIRD_PORT=0.001] Received: from plato.miralink.com ([127.0.0.1]) by localhost (plato.miralink.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XdF+0LM+kAvh for ; Thu, 18 Sep 2008 07:27:35 -0700 (PDT) Received: from [10.47.1.6] (vpn.office.miralink.com [10.0.0.5]) by plato.miralink.com (Postfix) with ESMTP id D47EA1A8E1C for ; Thu, 18 Sep 2008 07:27:34 -0700 (PDT) Message-ID: <48D26620.8060205@miralink.com> Date: Thu, 18 Sep 2008 07:30:56 -0700 From: Sean Bruno User-Agent: Thunderbird 2.0.0.16 (X11/20080723) MIME-Version: 1.0 To: freebsd-ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: [RELENG_6]apr-db configure warnings ... what the heck is this stuff? 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, 18 Sep 2008 14:31:00 -0000 Updated my ports tree this morning to build freebsd-subversion and this popped up during my build: ===> Configuring for apr-db42-1.3.3.1.3.4 cd /usr/ports/devel/apr-svn/work/apr-1.3.3 ; /usr/bin/env PYTHON="/usr/local/bin/python2.4" SHELL=/bin/sh CONFIG_SHELL=/bin/sh MAKE=gmake ACLOCAL=/usr/local/bin/aclocal-1.9 AUTOMAKE=/usr/local/bin/automake-1.9 AUTOMAKE_VERSION=19 AUTOCONF=/usr/local/bin/autoconf-2.62 AUTOHEADER=/usr/local/bin/autoheader-2.62 AUTOIFNAMES=/usr/local/bin/ifnames-2.62 AUTOM4TE=/usr/local/bin/autom4te-2.62 AUTORECONF=/usr/local/bin/autoreconf-2.62 AUTOSCAN=/usr/local/bin/autoscan-2.62 AUTOUPDATE=/usr/local/bin/autoupdate-2.62 AUTOCONF_VERSION=262 LIBTOOL=/usr/local/bin/libtool LIBTOOLIZE=/usr/local/bin/libtoolize LIBTOOL_M4=/usr/local/share/aclocal/libtool.m4 lt_cv_sys_max_cmd_len=262144 /bin/sh ./buildconf buildconf: checking installation... buildconf: python version 2.4.3 (ok) buildconf: autoconf version 2.62 (ok) buildconf: libtool version 1.5.22 (ok) Copying libtool helper files ... buildconf: Using libtool.m4 at /usr/local/share/aclocal/libtool.m4. Creating include/arch/unix/apr_private.h.in ... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached autoconf/general.m4:1987: AC_CACHE_VAL is expanded from... autoconf/general.m4:2000: AC_CACHE_CHECK is expanded from... build/libtool.m4:653: AC_LIBTOOL_COMPILER_OPTION is expanded from... build/libtool.m4:5336: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... build/libtool.m4:2723: _LT_AC_LANG_C_CONFIG is expanded from... build/libtool.m4:2650: AC_LIBTOOL_LANG_C_CONFIG is expanded from... build/libtool.m4:220: AC_LIBTOOL_SETUP is expanded from... build/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from... build/libtool.m4:55: AC_PROG_LIBTOOL is expanded from... configure.in:186: the top level configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached build/libtool.m4:690: AC_LIBTOOL_LINKER_OPTION is expanded from... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached build/libtool.m4:3731: _LT_AC_LANG_CXX_CONFIG is expanded from... build/libtool.m4:2731: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... build/libtool.m4:1886: _LT_AC_TAGCONFIG is expanded from... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached build/libtool.m4:3992: _LT_AC_LANG_F77_CONFIG is expanded from... build/libtool.m4:3898: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached build/libtool.m4:4052: _LT_AC_LANG_GCJ_CONFIG is expanded from... build/libtool.m4:4000: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached Creating configure ... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached autoconf/general.m4:1987: AC_CACHE_VAL is expanded from... autoconf/general.m4:2000: AC_CACHE_CHECK is expanded from... build/libtool.m4:653: AC_LIBTOOL_COMPILER_OPTION is expanded from... build/libtool.m4:5336: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... build/libtool.m4:2723: _LT_AC_LANG_C_CONFIG is expanded from... build/libtool.m4:2650: AC_LIBTOOL_LANG_C_CONFIG is expanded from... build/libtool.m4:220: AC_LIBTOOL_SETUP is expanded from... build/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from... build/libtool.m4:55: AC_PROG_LIBTOOL is expanded from... configure.in:186: the top level configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached build/libtool.m4:690: AC_LIBTOOL_LINKER_OPTION is expanded from... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached build/libtool.m4:3731: _LT_AC_LANG_CXX_CONFIG is expanded from... build/libtool.m4:2731: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... build/libtool.m4:1886: _LT_AC_TAGCONFIG is expanded from... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached build/libtool.m4:3992: _LT_AC_LANG_F77_CONFIG is expanded from... build/libtool.m4:3898: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached build/libtool.m4:4052: _LT_AC_LANG_GCJ_CONFIG is expanded from... build/libtool.m4:4000: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.in:186: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached -- Sean Bruno MiraLink Corporation 6015 NE 80th Ave, Ste 100 Portland, OR 97218 Cell 503-358-6832 Phone 503-621-5143 Fax 503-621-5199 MSN: sbruno@miralink.com Google: seanwbruno@gmail.com From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 18:04: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 7831A106567A for ; Thu, 18 Sep 2008 18:04:09 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with ESMTP id 0D4C88FC1A for ; Thu, 18 Sep 2008 18:04:09 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 23401 invoked by uid 399); 18 Sep 2008 18:04:08 -0000 Received: from localhost (HELO lap.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 18 Sep 2008 18:04:08 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <48D29816.4060407@FreeBSD.org> Date: Thu, 18 Sep 2008 11:04:06 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: freebsd-ports@freebsd.org, doceng@FreeBSD.org X-Enigmail-Version: 0.95.7 OpenPGP: id=D5B2F0FB Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Subject: Error building print/ghostscript8 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, 18 Sep 2008 18:04:09 -0000 Anyone else seeing this? cat ./obj/../soobj/ld.tr >>./obj/../soobj/ldt.tr ./obj/../soobj/echogs -a ./obj/../soobj/ldt.tr -s - -lm -liconv -lstdc++ -L/usr/local/lib -lfontconfig -Wl,-export-dynamic -lm if [ x != x ]; then LD_RUN_PATH=; export LD_RUN_PATH; fi; \ XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \ FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \ DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \ DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \ DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= DEVICE_DEVS16= \ DEVICE_DEVS17= DEVICE_DEVS18= DEVICE_DEVS19= DEVICE_DEVS20= \ DEVICE_DEVS_EXTRA= \ /bin/sh <./obj/../soobj/ldt.tr ./obj/../soobj/gdevl256.o(.text+0x7b0): In function `gs_shared_init': ./src/gdevl256.c:312: multiple definition of `gs_shared_init' ./obj/../soobj/gdevxalt.o(.text+0x1830):./src/gdevxalt.c:851: first defined here /usr/bin/ld: Warning: size of symbol `gs_shared_init' changed from 150 in ./obj/../soobj/gdevxalt.o to 38 in ./obj/../soobj/gdevl256.o ./obj/../soobj/gdevvglb.o(.text+0xa10): In function `gs_shared_init': ./src/gdevvglb.c:379: multiple definition of `gs_shared_init' ./obj/../soobj/gdevxalt.o(.text+0x1830):./src/gdevxalt.c:851: first defined here gmake[1]: *** [bin/../sobin/libgs.so.8.62] Error 1 gmake[1]: Leaving directory `/usr/ports/print/ghostscript8/work/ghostscript-8.62' gmake: *** [so] Error 2 *** Error code 2 -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 18:34: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 BFD301065684; Thu, 18 Sep 2008 18:34:54 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id 5ED818FC0C; Thu, 18 Sep 2008 18:34:54 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [IPv6:::1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m8IIYY7M019403; Thu, 18 Sep 2008 14:34:48 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Alex Dupre Date: Thu, 18 Sep 2008 10:33:56 -0400 User-Agent: KMail/1.9.7 References: <200809151036.19674.jhb@freebsd.org> <200809171303.05759.jhb@freebsd.org> <48D2167F.3040203@FreeBSD.org> In-Reply-To: <48D2167F.3040203@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809181033.56619.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [IPv6:::1]); Thu, 18 Sep 2008 14:34:48 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.1/8281/Thu Sep 18 13:13:14 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.3 required=4.2 tests=AWL,BAYES_00, DATE_IN_PAST_03_06,NO_RELAYS autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: ports@freebsd.org, Doug Barton Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 18 Sep 2008 18:34:54 -0000 On Thursday 18 September 2008 04:51:11 am Alex Dupre wrote: > John Baldwin ha scritto: > > It used to work. > > I was thinking the same thing, but actually it never worked in that way. Trust me, since I rebuild from scratch all the time, I quite remember when options were first added and I'd kick off a build of kde or some such overnight and check my screen session in the morning only find it hadn't build hardly anything b/c it had popped up the option screen for gettext. :) > > I was just guessing about how it might not be working now > > based on reading the existing logic. I have not delved into the history to > > see what has changed. > > The attached patch should solve this erratic behavior. I wonder why it has to be this hackish btw. Could config-conditional simply be in the list of targets before 'fetch' or some such? -- John Baldwin From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 18:39: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 2D4DF1065673 for ; Thu, 18 Sep 2008 18:39:34 +0000 (UTC) (envelope-from makc@issp.ac.ru) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id A02BA8FC26 for ; Thu, 18 Sep 2008 18:39:33 +0000 (UTC) (envelope-from makc@issp.ac.ru) Received: from [62.63.90.55] [62.63.90.55:42703] (HELO/EHLO [62.63.90.55], authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id m8IIe88E028742 (using TLSv1/SSLv3, with cipher DHE-DSS-AES256-SHA (256 bits), verified NO) Thu, 18 Sep 2008 22:40:08 +0400 (MSD) From: Max Brazhnikov Organization: ISSP RAS To: freebsd-ports@freebsd.org Date: Thu, 18 Sep 2008 22:39:31 +0400 User-Agent: KMail/1.9.10 References: <48D29816.4060407@FreeBSD.org> In-Reply-To: <48D29816.4060407@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809182239.31640.makc@issp.ac.ru> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (mail.issp.ac.ru [77.236.34.3]); Thu, 18 Sep 2008 22:40:08 +0400 (MSD) X-Virus-Scanned: ClamAV 0.94/8281/Thu Sep 18 21:13:14 2008 on mail.issp.ac.ru X-Virus-Status: Clean Cc: doceng@freebsd.org, Doug Barton Subject: Re: Error building print/ghostscript8 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, 18 Sep 2008 18:39:34 -0000 On Thu, 18 Sep 2008 11:04:06 -0700, Doug Barton wrote: > Anyone else seeing this? > > cat ./obj/../soobj/ld.tr >>./obj/../soobj/ldt.tr > ../obj/../soobj/echogs -a ./obj/../soobj/ldt.tr -s - -lm -liconv > -lstdc++ -L/usr/local/lib -lfontconfig -Wl,-export-dynamic -lm > if [ x != x ]; then LD_RUN_PATH=; export LD_RUN_PATH; fi; \ > XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \ > FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \ > DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \ > DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \ > DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= DEVICE_DEVS16= \ > DEVICE_DEVS17= DEVICE_DEVS18= DEVICE_DEVS19= DEVICE_DEVS20= \ > DEVICE_DEVS_EXTRA= \ > /bin/sh <./obj/../soobj/ldt.tr > ../obj/../soobj/gdevl256.o(.text+0x7b0): In function `gs_shared_init': > ../src/gdevl256.c:312: multiple definition of `gs_shared_init' > ../obj/../soobj/gdevxalt.o(.text+0x1830):./src/gdevxalt.c:851: first > defined here > /usr/bin/ld: Warning: size of symbol `gs_shared_init' changed from 150 > in ./obj/../soobj/gdevxalt.o to 38 in ./obj/../soobj/gdevl256.o > ../obj/../soobj/gdevvglb.o(.text+0xa10): In function `gs_shared_init': > ../src/gdevvglb.c:379: multiple definition of `gs_shared_init' > ../obj/../soobj/gdevxalt.o(.text+0x1830):./src/gdevxalt.c:851: first > defined here > gmake[1]: *** [bin/../sobin/libgs.so.8.62] Error 1 > gmake[1]: Leaving directory > `/usr/ports/print/ghostscript8/work/ghostscript-8.62' > gmake: *** [so] Error 2 > *** Error code 2 Yes, see http://www.freebsd.org/cgi/query-pr.cgi?pr=115593 with similar problem. Max From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 19:18:20 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 E03B41065673 for ; Thu, 18 Sep 2008 19:18:20 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from lab.alexdupre.com (cl-506.trn-01.it.sixxs.net [IPv6:2001:1418:100:1f9::2]) by mx1.freebsd.org (Postfix) with ESMTP id 10C898FC18 for ; Thu, 18 Sep 2008 19:18:19 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: (qmail 44492 invoked from network); 18 Sep 2008 19:18:18 -0000 Received: from unknown (HELO athlon.alexdupre.com) (192.168.178.2) by lab.alexdupre.com with SMTP; 18 Sep 2008 19:18:18 -0000 Message-ID: <48D2A979.7090809@FreeBSD.org> Date: Thu, 18 Sep 2008 21:18:17 +0200 From: Alex Dupre User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: John Baldwin References: <200809151036.19674.jhb@freebsd.org> <200809171303.05759.jhb@freebsd.org> <48D2167F.3040203@FreeBSD.org> <200809181033.56619.jhb@freebsd.org> In-Reply-To: <200809181033.56619.jhb@freebsd.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Doug Barton Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 18 Sep 2008 19:18:21 -0000 John Baldwin wrote: > Trust me, since I rebuild from scratch all the time, I quite remember when > options were first added and I'd kick off a build of kde or some such > overnight and check my screen session in the morning only find it hadn't > build hardly anything b/c it had popped up the option screen for gettext. :) Me, too, really :-) But kde3 meta-port doesn't use the OPTIONS framework, even if it displays the dialog box. And when the OPTIONS framework was added, very few ports actually used it, so it was very very rare to incur in *direct* dependencies between two OPTIONS-enabled ports. The kde4 meta-port now uses it, so it became obvious that something wasn't working as expected when you tried to build it. > I wonder why it has to be this hackish btw. Could config-conditional simply > be in the list of targets before 'fetch' or some such? I thought the same thing, probably yes, but I dunno why it was added in such way from the beginning, so I tried to create the simplest and surely working patch maintaining the current workflow. -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 19:31:50 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 903641065675 for ; Thu, 18 Sep 2008 19:31:50 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with ESMTP id 41ACF8FC12 for ; Thu, 18 Sep 2008 19:31:50 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 32355 invoked by uid 399); 18 Sep 2008 19:31:49 -0000 Received: from localhost (HELO lap.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 18 Sep 2008 19:31:49 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <48D2ACA3.3080709@FreeBSD.org> Date: Thu, 18 Sep 2008 12:31:47 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: Max Brazhnikov References: <48D29816.4060407@FreeBSD.org> <200809182239.31640.makc@issp.ac.ru> In-Reply-To: <200809182239.31640.makc@issp.ac.ru> X-Enigmail-Version: 0.95.7 OpenPGP: id=D5B2F0FB Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Cc: doceng@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Error building print/ghostscript8 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, 18 Sep 2008 19:31:50 -0000 Max Brazhnikov wrote: > On Thu, 18 Sep 2008 11:04:06 -0700, Doug Barton wrote: >> Anyone else seeing this? >> >> cat ./obj/../soobj/ld.tr >>./obj/../soobj/ldt.tr >> ../obj/../soobj/echogs -a ./obj/../soobj/ldt.tr -s - -lm -liconv >> -lstdc++ -L/usr/local/lib -lfontconfig -Wl,-export-dynamic -lm >> if [ x != x ]; then LD_RUN_PATH=; export LD_RUN_PATH; fi; \ >> XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \ >> FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \ >> DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \ >> DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \ >> DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= DEVICE_DEVS16= \ >> DEVICE_DEVS17= DEVICE_DEVS18= DEVICE_DEVS19= DEVICE_DEVS20= \ >> DEVICE_DEVS_EXTRA= \ >> /bin/sh <./obj/../soobj/ldt.tr >> ../obj/../soobj/gdevl256.o(.text+0x7b0): In function `gs_shared_init': >> ../src/gdevl256.c:312: multiple definition of `gs_shared_init' >> ../obj/../soobj/gdevxalt.o(.text+0x1830):./src/gdevxalt.c:851: first >> defined here >> /usr/bin/ld: Warning: size of symbol `gs_shared_init' changed from 150 >> in ./obj/../soobj/gdevxalt.o to 38 in ./obj/../soobj/gdevl256.o >> ../obj/../soobj/gdevvglb.o(.text+0xa10): In function `gs_shared_init': >> ../src/gdevvglb.c:379: multiple definition of `gs_shared_init' >> ../obj/../soobj/gdevxalt.o(.text+0x1830):./src/gdevxalt.c:851: first >> defined here >> gmake[1]: *** [bin/../sobin/libgs.so.8.62] Error 1 >> gmake[1]: Leaving directory >> `/usr/ports/print/ghostscript8/work/ghostscript-8.62' >> gmake: *** [so] Error 2 >> *** Error code 2 > > Yes, see http://www.freebsd.org/cgi/query-pr.cgi?pr=115593 with similar > problem. Removing svgalib from the config options got it building, thanks. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 20:01: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 1B5821065675; Thu, 18 Sep 2008 20:01:35 +0000 (UTC) (envelope-from chris@vindaloo.com) Received: from corellia.vindaloo.com (corellia.vindaloo.com [64.51.148.100]) by mx1.freebsd.org (Postfix) with ESMTP id E11248FC23; Thu, 18 Sep 2008 20:01:34 +0000 (UTC) (envelope-from chris@vindaloo.com) Received: from hadar.vindaloo.com (hadar.vindaloo.com [172.24.145.72]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by corellia.vindaloo.com (Postfix) with ESMTP id 29D715D8F; Thu, 18 Sep 2008 16:01:32 -0400 (EDT) Message-Id: <778E81B5-6492-4E71-963F-8A6FC4A3EF20@vindaloo.com> From: Christopher Sean Hilton To: Edwin Groothuis In-Reply-To: <20080917235217.GB83339@k7.mavetju> 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: Thu, 18 Sep 2008 16:01:31 -0400 References: <6C55E656-6B08-4B35-8CE7-6CCE00DDC871@vindaloo.com> <20080917235217.GB83339@k7.mavetju> X-Mailer: Apple Mail (2.929.2) Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: port: security/cfs 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, 18 Sep 2008 20:01:35 -0000 On Sep 17, 2008, at 7:52 PM, Edwin Groothuis wrote: > On Wed, Sep 17, 2008 at 06:38:56PM -0400, Christopher Sean Hilton > wrote: >> The port security/cfs, Matt Blaze's userland Cryptographic >> filesystem, >> is marked as broken because it does not compile under FreeBSD-7.0 or >> later. > > ports/127457 > Thanks for the patch once I recognized that it was against existing patches in the ports files directory it went smoothly. -- Chris -- Chris Hilton chris-at-vindaloo-dot-com ------------------------------------------------------------------------ "All I was doing was trying to get home from work!" -- Rosa Parks From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 21:38: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 38B9C1065670; Thu, 18 Sep 2008 21:38:02 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id AE15A8FC1E; Thu, 18 Sep 2008 21:38:01 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [IPv6:::1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m8ILbngf020803; Thu, 18 Sep 2008 17:37:55 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Alex Dupre Date: Thu, 18 Sep 2008 15:45:48 -0400 User-Agent: KMail/1.9.7 References: <200809151036.19674.jhb@freebsd.org> <200809181033.56619.jhb@freebsd.org> <48D2A979.7090809@FreeBSD.org> In-Reply-To: <48D2A979.7090809@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809181545.48487.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [IPv6:::1]); Thu, 18 Sep 2008 17:37:55 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.1/8282/Thu Sep 18 14:21:01 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.5 required=4.2 tests=AWL,BAYES_00,NO_RELAYS, SUBJECT_EXCESS_QP autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: ports@freebsd.org, Doug Barton Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 18 Sep 2008 21:38:02 -0000 On Thursday 18 September 2008 03:18:17 pm Alex Dupre wrote: > John Baldwin wrote: > > Trust me, since I rebuild from scratch all the time, I quite remember when > > options were first added and I'd kick off a build of kde or some such > > overnight and check my screen session in the morning only find it hadn't > > build hardly anything b/c it had popped up the option screen for gettext. :) > > Me, too, really :-) But kde3 meta-port doesn't use the OPTIONS > framework, even if it displays the dialog box. And when the OPTIONS > framework was added, very few ports actually used it, so it was very > very rare to incur in *direct* dependencies between two OPTIONS-enabled > ports. The kde4 meta-port now uses it, so it became obvious that > something wasn't working as expected when you tried to build it. Ahh, I think I see now. It requires one OPTIONS using port to mask the dependencies. > > I wonder why it has to be this hackish btw. Could config-conditional simply > > be in the list of targets before 'fetch' or some such? > > I thought the same thing, probably yes, but I dunno why it was added in > such way from the beginning, so I tried to create the simplest and > surely working patch maintaining the current workflow. Ok. -- John Baldwin From owner-freebsd-ports@FreeBSD.ORG Thu Sep 18 21:49:15 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 E0FBC1065679 for ; Thu, 18 Sep 2008 21:49:15 +0000 (UTC) (envelope-from alexanderchuranov@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 6A4598FC15 for ; Thu, 18 Sep 2008 21:49:15 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so42537eyi.7 for ; Thu, 18 Sep 2008 14:49:14 -0700 (PDT) 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=lxi/TEYMHt7ep2PSYd9LCGDoc2+71rzWyLnj40VaVcs=; b=CTdfm7xa6/DS/e6pe7tfRvrJi1h8wx547sty8I9nFV0ORpDh+TwXxlPASrzQ2f1LcH 3uWCdvxCvqGRXME/5FxlxTaPewyK0jqdAXDzY794f7tTC9nyQi4HdHtNWJ9vQgDhrYK6 XW25atiu+dP9iW9hUkoNINIqT4fffQEQ+oNkU= 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=jaXv2iQyMma+LR/T+2z8fG2WpM2qsVso+SvlxN6IqO5Y8ZTz8jobf9Xi2R2PpM9fhM 7BB4l1Nt8daZuyAhkLedqie/HaauErNsQg+0UiKTkzb0zki6B5jDQgfVf4ebLTtn+Xiu fg1ImLroavxYaF7kkntOErTkRP7hV/Hi31K4M= Received: by 10.210.127.13 with SMTP id z13mr816724ebc.173.1221774554220; Thu, 18 Sep 2008 14:49:14 -0700 (PDT) Received: by 10.210.58.4 with HTTP; Thu, 18 Sep 2008 14:49:14 -0700 (PDT) Message-ID: <3cb459ed0809181449h7b4b2eabie89fb4ebc33422ef@mail.gmail.com> Date: Fri, 19 Sep 2008 01:49:14 +0400 From: "Alexander Churanov" To: "Mark Linimon" In-Reply-To: <20080918032114.GB29511@soaustin.net> MIME-Version: 1.0 References: <3cb459ed0809171638y5f7f7255wf3f09ac6c0fa62fe@mail.gmail.com> <20080918032114.GB29511@soaustin.net> 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: wxs@freebsd.org, freebsd-ports@freebsd.org Subject: Re: STILL OPEN: Fwd: ports/127015: [patch] Impossible to fetch devel/valgrind from the jail 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, 18 Sep 2008 21:49:16 -0000 2008/9/18 Mark Linimon > For future reference, the address to contact with issues with > maintainers is portmgr@FreeBSD.org. I've already forwarded your email > to barner@. > > mcl > OK, Thank you From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 00:45: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 88840106567B for ; Fri, 19 Sep 2008 00:45:30 +0000 (UTC) (envelope-from lihong.chen@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.189]) by mx1.freebsd.org (Postfix) with ESMTP id 8B7A08FC17 for ; Fri, 19 Sep 2008 00:45:29 +0000 (UTC) (envelope-from lihong.chen@gmail.com) Received: by ti-out-0910.google.com with SMTP id d27so51907tid.3 for ; Thu, 18 Sep 2008 17:45:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender :to:subject:cc:in-reply-to:mime-version:content-type:references :x-google-sender-auth; bh=eO0h7A+mRYuu2YynIJgc5bdEnO+W473rUUyIl43LLzo=; b=PcAaC6wuLjY0mJ9LR1CbpDtfW9j1ZJ4UTGvNrEOv6gma/OyYOr8km8WoMnK2bnt8WH ZXL0j/fPh6gfB0LK5WJrB1XqLQQM+9yo+73WWVTEtE9tR94nr0SJtq9suby/+3bSAuZs 9+ggkWQ4UyFvR1RKC95QwjwjJya7nR5BiIwEo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version :content-type:references:x-google-sender-auth; b=ISRNrnc9ldDA+dhC6OKHwUOXMZQRyG8KNAv7Qdx95U1OEBl9oZA59CBtTrlb3OS0py AZtMgbix3SSXfxbArK7I0Lc8k5f+ANC30bCtcLEn4Dl9asAF6Na14SiklN8rT3QDpzXz 1MV+CDWSbJa86aySqlGnro4cyN/ywFMTX7NfQ= Received: by 10.110.109.12 with SMTP id h12mr5941143tic.34.1221783421881; Thu, 18 Sep 2008 17:17:01 -0700 (PDT) Received: by 10.110.70.3 with HTTP; Thu, 18 Sep 2008 17:17:01 -0700 (PDT) Message-ID: Date: Fri, 19 Sep 2008 08:17:01 +0800 From: "Eric L. Chen" Sender: lihong.chen@gmail.com To: "Snopy Land" In-Reply-To: MIME-Version: 1.0 References: X-Google-Sender-Auth: 0b1a4c910b0fdc0d Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org Subject: Re: clamav port for 0.94 version , pls help 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, 19 Sep 2008 00:45:30 -0000 I am using cvsup3.tw.FreeBSD.org, no any problem. > ls | grep clam clamav-0.94_1 > which clamd /usr/local/sbin/clamd /Eric On Thu, Sep 18, 2008 at 12:41 PM, Snopy Land wrote: > Hi, > > My server version is freebsd6.2 amd64. I have installed clamav to scan my > incoming mail. Everything works smoothly for several years. > Recently, I need to upgrade clamav version from 0.92 to 0.94 (latest > version). Actually, I had done this upgrade clamav process before. > My procedures is : > > 1. run "make deinstall" to deinstall the clamav version of 0.92 > 2. Modify /usr/ports-supfile (to make sure security port can be download > from a correct default host) > *default host=ftp.tw.freebsd.org > ports-security <--- remark ports-all, and enable the ports-security only > 3. cd /usr ; run "cvsup -g -L 2 ports-supfile > 4. check /usr/port/security/clamav port is updated > 5. cd /usr/port/security/clamav > 6. run "make install clean" > > There is no error message found in the whole process, however, I cannot > find > the file of "clamd", "clamscan" & "freshclam". > The previous version of these file can be found in /usr/local/sbin and > /usr/local/bin > > Anyone have encoutered the same problem ? I am not sure whether my posting > is put in the correct mailling list. > Any comments are appreciated. > > Thanks. > _______________________________________________ > 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 Fri Sep 19 04:15:03 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 03C7B106564A for ; Fri, 19 Sep 2008 04:15:03 +0000 (UTC) (envelope-from snopyland@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.156]) by mx1.freebsd.org (Postfix) with ESMTP id 563C68FC08 for ; Fri, 19 Sep 2008 04:15:02 +0000 (UTC) (envelope-from snopyland@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so421156fgb.35 for ; Thu, 18 Sep 2008 21:15:00 -0700 (PDT) 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=wNBE1h1fMlMdu4WyA8/mDzfb/RRJeZJXQvMzWYy1J7k=; b=dQP4p3dG8ZrZbvv7MF2fQ/x/mYX/FZaOpqynPoyqFhcba/trma+wkaiOVdVgCZ8SGz OwfkkxOeKMBQGZ3ditssnf72CPmmKVMQP4khMyW7wAgu/3EoJIZNC4RuoE0RD5zkamKX VaDz+CSZdwTsYU3tRV0H6QyrtCFlmKcHK63j8= 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=bDLTm7Ox2S5drEVbWBtV6Fo46U2UTkjg+f5kNV0zS7wO/xUzJUPtOg+Jg61SZielZ+ yZU8O2kzouoGkLJ6pXVUdauwujJOXm5dJ0XO1K4xIHN01EbO64SI+onBrDwJYCEXmjge 52EPLpqdWDbcVNPt0zw/kqGyERoS0/qaXEAK0= Received: by 10.86.23.17 with SMTP id 17mr1494766fgw.32.1221797700070; Thu, 18 Sep 2008 21:15:00 -0700 (PDT) Received: by 10.86.60.3 with HTTP; Thu, 18 Sep 2008 21:15:00 -0700 (PDT) Message-ID: Date: Fri, 19 Sep 2008 12:15:00 +0800 From: "Snopy Land" To: freebsd-ports@freebsd.org In-Reply-To: MIME-Version: 1.0 References: 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: davidb@boothscientific.com, "Eric L. Chen" Subject: Re: clamav port for 0.94 version , pls help 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, 19 Sep 2008 04:15:03 -0000 Hi, Thanks for your both reply. I get clamav-0.94_1 when run "ls /var/db/pkg | grep clam" Today, I have changed the default host to cvsup3.tw.FreeBSD.org and redo the upgrade of clamav. I find the following message when I run "make install clean" Making install in clamscan test -z "/usr/local/bin" || ../config/install-sh -c -d "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install install -s -o root -g wheel - m 555 'clamscan' '/usr/local/bin/amd64-portbld-freebsd6.2-clamscan' install -o root -g wheel -m 555 -s .libs/clamscan /usr/local/bin/amd64-portbld-f reebsd6.2-clamscan Making install in clamd test -z "/usr/local/sbin" || ../config/install-sh -c -d "/usr/local/sbin" /bin/sh /usr/local/bin/libtool --mode=install install -s -o root -g wheel - m 555 'clamd' '/usr/local/sbin/amd64-portbld-freebsd6.2-clamd' install -o root -g wheel -m 555 -s .libs/clamd /usr/local/sbin/amd64-portbld-fre ebsd6.2-clamd Making install in clamdscan test -z "/usr/local/bin" || ../config/install-sh -c -d "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install install -s -o root -g wheel - m 555 'clamdscan' '/usr/local/bin/amd64-portbld-freebsd6.2-clamdscan' install -o root -g wheel -m 555 -s clamdscan /usr/local/bin/amd64-portbld-freebs d6.2-clamdscan Making install in freshclam test -z "/usr/local/bin" || ../config/install-sh -c -d "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install install -s -o root -g wheel - m 555 'freshclam' '/usr/local/bin/amd64-portbld-freebsd6.2-freshclam' install -o root -g wheel -m 555 -s .libs/freshclam /usr/local/bin/amd64-portbld- freebsd6.2-freshclam Making install in sigtool test -z "/usr/local/bin" || ../config/install-sh -c -d "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install install -s -o root -g wheel - m 555 'sigtool' '/usr/local/bin/amd64-portbld-freebsd6.2-sigtool' install -o root -g wheel -m 555 -s .libs/sigtool /usr/local/bin/amd64-portbld-fr eebsd6.2-sigtool Making install in clamconf test -z "/usr/local/bin" || ../config/install-sh -c -d "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install install -s -o root -g wheel - m 555 'clamconf' '/usr/local/bin/amd64-portbld-freebsd6.2-clamconf' install -o root -g wheel -m 555 -s .libs/clamconf /usr/local/bin/amd64-portbld-f reebsd6.2-clamconf And I find that there are some files under /usr/local/bin/ and /usr/local/sbin ls -ltr /usr/local/bin -r-xr-xr-x 1 root wheel 80624 Sep 19 11:07 amd64-portbld-freebsd6.2-sigtool -r-xr-xr-x 1 root wheel 87944 Sep 19 11:07 amd64-portbld-freebsd6.2-freshcl am -r-xr-xr-x 1 root wheel 51968 Sep 19 11:07 amd64-portbld-freebsd6.2-clamsca n -r-xr-xr-x 1 root wheel 52592 Sep 19 11:07 amd64-portbld-freebsd6.2-clamdsc an -r-xr-xr-x 1 root wheel 28272 Sep 19 11:07 amd64-portbld-freebsd6.2-clamcon f -r-xr-xr-x 1 root wheel 1103 Sep 19 11:07 amd64-portbld-freebsd6.2-clamav- config ls -ltr /usr/local/sbin -r-xr-xr-x 1 root wheel 67536 Sep 19 11:07 amd64-portbld-freebsd6.2-clamd So I am not sure whether the file name has been changed. It seems that this version of clamav can only provide the above files. I have double checked that there is no clamd, clamscan & freshclam in /usr/local/bin and /usr/local/sbin. How can I know the ans. of these question ? Any comment are appreciated. On Fri, Sep 19, 2008 at 8:17 AM, Eric L. Chen wrote: > I am using cvsup3.tw.FreeBSD.org , no any > problem. > > ls | grep clam > clamav-0.94_1 > > which clamd > /usr/local/sbin/clamd > > /Eric > > On Thu, Sep 18, 2008 at 12:41 PM, Snopy Land wrote: > >> Hi, >> >> My server version is freebsd6.2 amd64. I have installed clamav to scan my >> incoming mail. Everything works smoothly for several years. >> Recently, I need to upgrade clamav version from 0.92 to 0.94 (latest >> version). Actually, I had done this upgrade clamav process before. >> My procedures is : >> >> 1. run "make deinstall" to deinstall the clamav version of 0.92 >> 2. Modify /usr/ports-supfile (to make sure security port can be download >> from a correct default host) >> *default host=ftp.tw.freebsd.org >> ports-security <--- remark ports-all, and enable the ports-security only >> 3. cd /usr ; run "cvsup -g -L 2 ports-supfile >> 4. check /usr/port/security/clamav port is updated >> 5. cd /usr/port/security/clamav >> 6. run "make install clean" >> >> There is no error message found in the whole process, however, I cannot >> find >> the file of "clamd", "clamscan" & "freshclam". >> The previous version of these file can be found in /usr/local/sbin and >> /usr/local/bin >> >> Anyone have encoutered the same problem ? I am not sure whether my posting >> is put in the correct mailling list. >> Any comments are appreciated. >> >> Thanks. >> _______________________________________________ >> 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 Fri Sep 19 04:16:55 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 4BAAE106566C for ; Fri, 19 Sep 2008 04:16:55 +0000 (UTC) (envelope-from stephen@math.missouri.edu) Received: from cauchy.math.missouri.edu (cauchy.math.missouri.edu [128.206.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id 030F38FC12 for ; Fri, 19 Sep 2008 04:16:54 +0000 (UTC) (envelope-from stephen@math.missouri.edu) Received: from laptop3.gateway.2wire.net (cauchy.math.missouri.edu [128.206.184.213]) by cauchy.math.missouri.edu (8.14.2/8.14.2) with ESMTP id m8J4GCKq053621 for ; Thu, 18 Sep 2008 23:16:12 -0500 (CDT) (envelope-from stephen@math.missouri.edu) Message-ID: <48D327B5.4010304@math.missouri.edu> Date: Thu, 18 Sep 2008 23:16:53 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8.1.16) Gecko/20080909 SeaMonkey/1.1.11 MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: two ptmalloc 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: Fri, 19 Sep 2008 04:16:55 -0000 There are two ports: devel/ptmalloc devel/ptmalloc2 They are identical! Which one is the "true" port? From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 04:29:27 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 20DC21065671 for ; Fri, 19 Sep 2008 04:29:27 +0000 (UTC) (envelope-from davidb@boothscientific.com) Received: from mx3.lsn.net (mx3.lsn.net [66.90.130.75]) by mx1.freebsd.org (Postfix) with ESMTP id E2F658FC08 for ; Fri, 19 Sep 2008 04:29:26 +0000 (UTC) (envelope-from davidb@boothscientific.com) Received: from 9400.boothscienfific.com (24-155-245-244.dyn.grandenetworks.net [24.155.245.244]) by mx3.lsn.net (8.13.5/8.13.5) with ESMTP id m8J4TQDO023241 for ; Thu, 18 Sep 2008 23:29:26 -0500 From: David Booth To: freebsd-ports@freebsd.org Date: Thu, 18 Sep 2008 23:29:24 -0500 User-Agent: KMail/1.9.10 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809182329.25028.davidb@boothscientific.com> X-Virus-Scanned: ClamAV version 0.93, clamav-milter version 0.93 on mx0.lsn.net X-Virus-Status: Clean Subject: Re: clamav port for 0.94 version , pls help X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: davidb@boothscientific.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Sep 2008 04:29:27 -0000 On Thursday 18 September 2008, Snopy Land wrote: > Hi, > > Thanks for your both reply. > > I get clamav-0.94_1 when run "ls /var/db/pkg | grep clam" > > Today, I have changed the default host to cvsup3.tw.FreeBSD.org and > redo the upgrade of clamav. I find the following message when I run > "make install clean" > > > Making install in clamscan > test -z "/usr/local/bin" || ../config/install-sh -c -d > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > install -s -o root -g wheel - > m 555 'clamscan' '/usr/local/bin/amd64-portbld-freebsd6.2-clamscan' > install -o root -g wheel -m 555 -s .libs/clamscan > /usr/local/bin/amd64-portbld-f > reebsd6.2-clamscan > Making install in clamd > test -z "/usr/local/sbin" || ../config/install-sh -c -d > "/usr/local/sbin" /bin/sh /usr/local/bin/libtool --mode=install > install -s -o root -g wheel - > m 555 'clamd' '/usr/local/sbin/amd64-portbld-freebsd6.2-clamd' > install -o root -g wheel -m 555 -s .libs/clamd > /usr/local/sbin/amd64-portbld-fre > ebsd6.2-clamd > Making install in clamdscan > test -z "/usr/local/bin" || ../config/install-sh -c -d > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > install -s -o root -g wheel - > m 555 'clamdscan' > '/usr/local/bin/amd64-portbld-freebsd6.2-clamdscan' install -o root > -g wheel -m 555 -s clamdscan > /usr/local/bin/amd64-portbld-freebs > d6.2-clamdscan > Making install in freshclam > test -z "/usr/local/bin" || ../config/install-sh -c -d > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > install -s -o root -g wheel - > m 555 'freshclam' > '/usr/local/bin/amd64-portbld-freebsd6.2-freshclam' install -o root > -g wheel -m 555 -s .libs/freshclam > /usr/local/bin/amd64-portbld- > freebsd6.2-freshclam > Making install in sigtool > test -z "/usr/local/bin" || ../config/install-sh -c -d > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > install -s -o root -g wheel - > m 555 'sigtool' '/usr/local/bin/amd64-portbld-freebsd6.2-sigtool' > install -o root -g wheel -m 555 -s .libs/sigtool > /usr/local/bin/amd64-portbld-fr > eebsd6.2-sigtool > Making install in clamconf > test -z "/usr/local/bin" || ../config/install-sh -c -d > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > install -s -o root -g wheel - > m 555 'clamconf' '/usr/local/bin/amd64-portbld-freebsd6.2-clamconf' > install -o root -g wheel -m 555 -s .libs/clamconf > /usr/local/bin/amd64-portbld-f > reebsd6.2-clamconf > > And I find that there are some files under /usr/local/bin/ and > /usr/local/sbin > > ls -ltr /usr/local/bin > -r-xr-xr-x 1 root wheel 80624 Sep 19 11:07 > amd64-portbld-freebsd6.2-sigtool > -r-xr-xr-x 1 root wheel 87944 Sep 19 11:07 > amd64-portbld-freebsd6.2-freshcl > am > -r-xr-xr-x 1 root wheel 51968 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamsca > n > -r-xr-xr-x 1 root wheel 52592 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamdsc > an > -r-xr-xr-x 1 root wheel 28272 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamcon > f > -r-xr-xr-x 1 root wheel 1103 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamav- > config > > ls -ltr /usr/local/sbin > > -r-xr-xr-x 1 root wheel 67536 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamd > > So I am not sure whether the file name has been changed. > It seems that this version of clamav can only provide the above > files. I have double checked that there is no clamd, clamscan & > freshclam in /usr/local/bin and /usr/local/sbin. > > How can I know the ans. of these question ? > > Any comment are appreciated. > I do not have an amd64 system, so I cannot tell from my system if the names are changed, but looking at the port install log, it looks as if they are. There are a couple of things to check. (1) is there a file in /usr/local/etc/rc.d/ called clamav-clamd ? (2) If so, or you can identify what the equivalent file is on your system, what is on the 'command' line in the file. Mine says command=/usr/local/sbin/clamd Does yours say command=/usr/local/sbin/amd64-portbld-freebsd6.2-clamd ? If so, then I would venture that that is the equivalent executable. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 04:56: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 5471E1065676 for ; Fri, 19 Sep 2008 04:56:59 +0000 (UTC) (envelope-from snopyland@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 A1D458FC0C for ; Fri, 19 Sep 2008 04:56:58 +0000 (UTC) (envelope-from snopyland@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so430147fgb.35 for ; Thu, 18 Sep 2008 21:56:57 -0700 (PDT) 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=nsCvjeh3sXyoT5nvl92rnZzQz/gDZq4yr/emhF7Ul+o=; b=pOfoNMd+CTVM7YX5qFe9c5iPYtUI2YfHVaAlalWTmZ8AEt2JWwq05kiuLxrMPM1gJi xr/oq6vgWJRgPu2PooiyjRggHugpyZmsEDtgowY2s7vgrNko3Xzeig6bRxtm8OpigUqV XM21WXWqg74KXeb2+h+eV0hdbLNo7UjId/yVc= 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=vQnxgr9ZRlwU5Rhco8sSlaqwjkRHDFXhpk00IkKzIKbwxGqG01l4XKpwKN+cpgDd49 ENiwpuTb4ajCMt8nfPZ6lRe+FJdmrSgdXCNs8M8JFUGAX0vUOPPJwbkGXCE34clN6Il2 gxLQaAlXGgE5OL46xtLwIGuese1LOJC98rHiw= Received: by 10.86.82.16 with SMTP id f16mr1520448fgb.9.1221800216128; Thu, 18 Sep 2008 21:56:56 -0700 (PDT) Received: by 10.86.60.3 with HTTP; Thu, 18 Sep 2008 21:56:56 -0700 (PDT) Message-ID: Date: Fri, 19 Sep 2008 12:56:56 +0800 From: "Snopy Land" To: freebsd-ports@freebsd.org In-Reply-To: <200809182329.25028.davidb@boothscientific.com> MIME-Version: 1.0 References: <200809182329.25028.davidb@boothscientific.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: davidb@boothscientific.com Subject: Re: clamav port for 0.94 version , pls help 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, 19 Sep 2008 04:56:59 -0000 Hi David, Thanks for your prompt reply. I have checked the files of "clamav-clamd" and "clamav-freshclam" under /usr/local/etc/rc.d. -r-xr-xr-x 1 root wheel 722 Sep 19 11:07 clamav-freshclam -r-xr-xr-x 1 root wheel 974 Sep 19 11:07 clamav-clamd The file date has been updated by today's upgrade process. However, the command is still using clamd and freshclam i.e. command=/usr/local/sbin/clamd <---clamav-clamd file command=/usr/local/bin/freshclam <--clamav-freshclam file So I worry that there may be some hidden problems if I run the "amd64-portbid-freebsd6.2-clamd" instead of "clamd" I will report this case to the admin of freebsd.org. Have you tried to send mail to them before? I find that garga@FreeBSD.org maintains the port of clamav from the port search of freebsd.org. Any other suggestions ? Thanks. On Fri, Sep 19, 2008 at 12:29 PM, David Booth wrote: > On Thursday 18 September 2008, Snopy Land wrote: > > Hi, > > > > Thanks for your both reply. > > > > I get clamav-0.94_1 when run "ls /var/db/pkg | grep clam" > > > > Today, I have changed the default host to cvsup3.tw.FreeBSD.organd > > redo the upgrade of clamav. I find the following message when I run > > "make install clean" > > > > > > Making install in clamscan > > test -z "/usr/local/bin" || ../config/install-sh -c -d > > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > > install -s -o root -g wheel - > > m 555 'clamscan' '/usr/local/bin/amd64-portbld-freebsd6.2-clamscan' > > install -o root -g wheel -m 555 -s .libs/clamscan > > /usr/local/bin/amd64-portbld-f > > reebsd6.2-clamscan > > Making install in clamd > > test -z "/usr/local/sbin" || ../config/install-sh -c -d > > "/usr/local/sbin" /bin/sh /usr/local/bin/libtool --mode=install > > install -s -o root -g wheel - > > m 555 'clamd' '/usr/local/sbin/amd64-portbld-freebsd6.2-clamd' > > install -o root -g wheel -m 555 -s .libs/clamd > > /usr/local/sbin/amd64-portbld-fre > > ebsd6.2-clamd > > Making install in clamdscan > > test -z "/usr/local/bin" || ../config/install-sh -c -d > > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > > install -s -o root -g wheel - > > m 555 'clamdscan' > > '/usr/local/bin/amd64-portbld-freebsd6.2-clamdscan' install -o root > > -g wheel -m 555 -s clamdscan > > /usr/local/bin/amd64-portbld-freebs > > d6.2-clamdscan > > Making install in freshclam > > test -z "/usr/local/bin" || ../config/install-sh -c -d > > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > > install -s -o root -g wheel - > > m 555 'freshclam' > > '/usr/local/bin/amd64-portbld-freebsd6.2-freshclam' install -o root > > -g wheel -m 555 -s .libs/freshclam > > /usr/local/bin/amd64-portbld- > > freebsd6.2-freshclam > > Making install in sigtool > > test -z "/usr/local/bin" || ../config/install-sh -c -d > > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > > install -s -o root -g wheel - > > m 555 'sigtool' '/usr/local/bin/amd64-portbld-freebsd6.2-sigtool' > > install -o root -g wheel -m 555 -s .libs/sigtool > > /usr/local/bin/amd64-portbld-fr > > eebsd6.2-sigtool > > Making install in clamconf > > test -z "/usr/local/bin" || ../config/install-sh -c -d > > "/usr/local/bin" /bin/sh /usr/local/bin/libtool --mode=install > > install -s -o root -g wheel - > > m 555 'clamconf' '/usr/local/bin/amd64-portbld-freebsd6.2-clamconf' > > install -o root -g wheel -m 555 -s .libs/clamconf > > /usr/local/bin/amd64-portbld-f > > reebsd6.2-clamconf > > > > And I find that there are some files under /usr/local/bin/ and > > /usr/local/sbin > > > > ls -ltr /usr/local/bin > > -r-xr-xr-x 1 root wheel 80624 Sep 19 11:07 > > amd64-portbld-freebsd6.2-sigtool > > -r-xr-xr-x 1 root wheel 87944 Sep 19 11:07 > > amd64-portbld-freebsd6.2-freshcl > > am > > -r-xr-xr-x 1 root wheel 51968 Sep 19 11:07 > > amd64-portbld-freebsd6.2-clamsca > > n > > -r-xr-xr-x 1 root wheel 52592 Sep 19 11:07 > > amd64-portbld-freebsd6.2-clamdsc > > an > > -r-xr-xr-x 1 root wheel 28272 Sep 19 11:07 > > amd64-portbld-freebsd6.2-clamcon > > f > > -r-xr-xr-x 1 root wheel 1103 Sep 19 11:07 > > amd64-portbld-freebsd6.2-clamav- > > config > > > > ls -ltr /usr/local/sbin > > > > -r-xr-xr-x 1 root wheel 67536 Sep 19 11:07 > > amd64-portbld-freebsd6.2-clamd > > > > So I am not sure whether the file name has been changed. > > It seems that this version of clamav can only provide the above > > files. I have double checked that there is no clamd, clamscan & > > freshclam in /usr/local/bin and /usr/local/sbin. > > > > How can I know the ans. of these question ? > > > > Any comment are appreciated. > > > I do not have an amd64 system, so I cannot tell from my system if the > names are changed, but looking at the port install log, it looks as > if they are. > There are a couple of things to check. > > (1) is there a file in /usr/local/etc/rc.d/ called clamav-clamd ? > > (2) If so, or you can identify what the equivalent file is on your > system, what is on the 'command' line in the file. Mine says > > command=/usr/local/sbin/clamd > > > Does yours say > > command=/usr/local/sbin/amd64-portbld-freebsd6.2-clamd > > ? > > If so, then I would venture that that is the equivalent executable. > > > _______________________________________________ > 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 Fri Sep 19 05:05: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 AE3C41065670 for ; Fri, 19 Sep 2008 05:05:41 +0000 (UTC) (envelope-from davidb@boothscientific.com) Received: from mx3.lsn.net (mx3.lsn.net [66.90.130.75]) by mx1.freebsd.org (Postfix) with ESMTP id 7C52A8FC17 for ; Fri, 19 Sep 2008 05:05:39 +0000 (UTC) (envelope-from davidb@boothscientific.com) Received: from 9400.boothscienfific.com (24-155-245-244.dyn.grandenetworks.net [24.155.245.244]) by mx3.lsn.net (8.13.5/8.13.5) with ESMTP id m8J55dns011931 for ; Fri, 19 Sep 2008 00:05:39 -0500 From: David Booth To: freebsd-ports@freebsd.org Date: Fri, 19 Sep 2008 00:05:37 -0500 User-Agent: KMail/1.9.10 References: <200809182329.25028.davidb@boothscientific.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809190005.37955.davidb@boothscientific.com> X-Virus-Scanned: ClamAV version 0.93, clamav-milter version 0.93 on mx0.lsn.net X-Virus-Status: Clean Subject: Re: clamav port for 0.94 version , pls help X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: davidb@boothscientific.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Sep 2008 05:05:41 -0000 On Thursday 18 September 2008, Snopy Land wrote: > Hi David, > > Thanks for your prompt reply. > > I have checked the files of "clamav-clamd" and "clamav-freshclam" > under /usr/local/etc/rc.d. > > -r-xr-xr-x 1 root wheel 722 Sep 19 11:07 clamav-freshclam > -r-xr-xr-x 1 root wheel 974 Sep 19 11:07 clamav-clamd > > The file date has been updated by today's upgrade process. However, > the command is still using clamd and freshclam > > i.e. command=/usr/local/sbin/clamd <---clamav-clamd file > command=/usr/local/bin/freshclam <--clamav-freshclam file > > So I worry that there may be some hidden problems if I run the > "amd64-portbid-freebsd6.2-clamd" instead of "clamd" > > I will report this case to the admin of freebsd.org. Have you tried > to send mail to them before? I find that > garga@FreeBSD.orgeeBSD%20Port:%20clamav-0.94_1> maintains > the port of clamav from the port search of freebsd.org. > > Any other suggestions ? > > Thanks. > I would just rename the amd64-borbfld-freebsd6.2- to and see clamav works after that. If it does then it is just a problem in the install part of the port which the maintainer will probably fix after the port freeze is over. You could either submit a pr (see http://www.freebsd.org/send-pr.html ) or shoot an email to the maintainer. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 05:07:56 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 97F2B1065674 for ; Fri, 19 Sep 2008 05:07:56 +0000 (UTC) (envelope-from snopyland@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.155]) by mx1.freebsd.org (Postfix) with ESMTP id 1B9978FC17 for ; Fri, 19 Sep 2008 05:07:55 +0000 (UTC) (envelope-from snopyland@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so432506fgb.35 for ; Thu, 18 Sep 2008 22:07:55 -0700 (PDT) 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:mime-version:content-type; bh=sEGCEStOWZsUX65xouP7PvEL3PfEQsmtwMkKX6yDWgE=; b=VMwqQshEXKtD9lmaiuLMKAjv6Pwqfo1Zp7Ne73cTEFCeS5qG+rMczSZyp0sozI0x0L snOEG5lj4iCdQZo3+xSuUVQQwOCqNQfQrzrSHuoHtkZPWZG8Mhp6pZwAqpQg/jtDzKgL 7ifxgSJOu8BneGHLb2QLwdZkClSS3aPfarhWk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:mime-version:content-type; b=qLMCLbO1XhwEaGLxeVlrJrTA8rtPhCZR9Pc1BJ5Sv9GSVa8j1pUnYv/PRNnCZBPvFC 39y0WamB1dCPfroCizKGFXNlTPyA+M698y88dmZTQ+NoJVFtI8YvgY/hUmMUHUhVIxaC CqvlXnS+yjOi89+VREFlABXK9rVrDq/rGOEQI= Received: by 10.86.90.13 with SMTP id n13mr1519425fgb.3.1221799235165; Thu, 18 Sep 2008 21:40:35 -0700 (PDT) Received: by 10.86.60.3 with HTTP; Thu, 18 Sep 2008 21:40:35 -0700 (PDT) Message-ID: Date: Fri, 19 Sep 2008 12:40:35 +0800 From: "Snopy Land" To: garga@FreeBSD.org MIME-Version: 1.0 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: ports@FreeBSD.org Subject: FreeBSD Port: clamav-0.94_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: Fri, 19 Sep 2008 05:07:56 -0000 Hi, My server version is freebsd6.2 amd64. I have installed clamav to scan my incoming mail. Everything works smoothly for several years. Recently, I need to upgrade clamav version from 0.92 to 0.94 (latest version). There is no error message found in the whole process, however, I cannot find the file of "clamd", "clamscan" & "freshclam". The previous version of these file can be found in /usr/local/sbin and /usr/local/bin I have posted my problem in the mailling list of freebsd-ports, however, I cannot get any hints. After redo the upgrade process, I find there are some files under /usr/local/bin and /usr/local/sbin but the file name is differenet. ls -ltr /usr/local/bin -r-xr-xr-x 1 root wheel 80624 Sep 19 11:07 amd64-portbld-freebsd6.2-sigtool -r-xr-xr-x 1 root wheel 87944 Sep 19 11:07 amd64-portbld-freebsd6.2-freshclam -r-xr-xr-x 1 root wheel 51968 Sep 19 11:07 amd64-portbld-freebsd6.2-clamscan -r-xr-xr-x 1 root wheel 52592 Sep 19 11:07 amd64-portbld-freebsd6.2-clamdscan -r-xr-xr-x 1 root wheel 28272 Sep 19 11:07 amd64-portbld-freebsd6.2-clamconf -r-xr-xr-x 1 root wheel 1103 Sep 19 11:07 amd64-portbld-freebsd6.2-clamav-config ls -ltr /usr/local/sbin -r-xr-xr-x 1 root wheel 67536 Sep 19 11:07 amd64-portbld-freebsd6.2-clamd Are these files are the same as the file of "clamd", "freshclam" and "clamscan". If yes, can I create symbolic link for these file so that I can keep my old setting? (i.e run "/usr/local/sbin/clamd -c /usr/local/etc/clamd.conf", and run "/usr/local/bin/freshclam --quiet" in the cronjob). How many configuration files location should I change ? Thanks. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 05:24:18 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 D157C106566C for ; Fri, 19 Sep 2008 05:24:18 +0000 (UTC) (envelope-from freysman@comcast.net) Received: from QMTA05.emeryville.ca.mail.comcast.net (qmta05.emeryville.ca.mail.comcast.net [76.96.30.48]) by mx1.freebsd.org (Postfix) with ESMTP id B63298FC1C for ; Fri, 19 Sep 2008 05:24:18 +0000 (UTC) (envelope-from freysman@comcast.net) Received: from OMTA04.emeryville.ca.mail.comcast.net ([76.96.30.35]) by QMTA05.emeryville.ca.mail.comcast.net with comcast id GUvk1a00C0lTkoCA5V8HGQ; Fri, 19 Sep 2008 05:08:17 +0000 Received: from [192.168.62.51] ([98.196.165.199]) by OMTA04.emeryville.ca.mail.comcast.net with comcast id GV8G1a0044JT4uy8QV8HB4; Fri, 19 Sep 2008 05:08:17 +0000 X-Authority-Analysis: v=1.0 c=1 a=8HYCz-3fHOgA:10 a=aeSdziWoY88A:10 a=TuZLvvi6ocThMThz4w8A:9 a=1DMDADP9LhFqAVUx-_fqm4_3fNEA:4 a=gi0PWCVxevcA:10 From: David J Brooks Organization: Tessier-Ashpool, S.A. To: ports@freebsd.org Date: Fri, 19 Sep 2008 00:08:15 -0500 User-Agent: KMail/1.9.7 X-Face: +\{75whsIB]=i--WqkV^U>!y`<~%(FUd, DQs, &e1yLt==9%It?7#?n>%Splqb, =?utf-8?q?=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=0A=09lDIEu=25W?= =?utf-8?q?sB7o+6k2n=606Q5Fl?=, vJei{$-.KlHPHu/.~VuE=C[}lQmL}>V1t\yTn2iTwCfM`% MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809190008.15927.freysman@comcast.net> Cc: Subject: how to upgrade ports that depend on openssl-stable? 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, 19 Sep 2008 05:24:18 -0000 I keep running into this error: ===> openssl-stable-0.9.7m_1 Conflicts with version in the base. *** Error code 1 Stop in /usr/ports/security/openssl-stable. ===>>> make failed for security/openssl-stable ===>>> Aborting update ===>>> Update for /usr/ports/security/openssl-stable failed ===>>> Aborting update ===>>> Update for qt4-network-4.3.4_1 failed ===>>> Aborting update -- Smell-O-Vision users insert nostril tubes now. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 05:24: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 6CEF51065673 for ; Fri, 19 Sep 2008 05:24:29 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id 2AB308FC21 for ; Fri, 19 Sep 2008 05:24:28 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id ADF6D221934B; Fri, 19 Sep 2008 15:24:27 +1000 (EST) X-Viruscan-Id: <48D3378600011B9703ADF1@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail5auth.barnet.com.au", Issuer "*.barnet.com.au" (verified OK)) by mail5.barnet.com.au (Postfix) with ESMTP id 631CC21B5D0F; Fri, 19 Sep 2008 15:24:22 +1000 (EST) Received: from k7.mavetju (ppp121-44-2-250.lns10.syd7.internode.on.net [121.44.2.250]) by mail5auth.barnet.com.au (Postfix) with ESMTP id 0A9AA2219328; Fri, 19 Sep 2008 15:24:22 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id B787D36E; Fri, 19 Sep 2008 15:24:24 +1000 (EST) Date: Fri, 19 Sep 2008 15:24:24 +1000 From: Edwin Groothuis To: Stephen Montgomery-Smith Message-ID: <20080919052424.GC83339@k7.mavetju> References: <48D327B5.4010304@math.missouri.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <48D327B5.4010304@math.missouri.edu> User-Agent: Mutt/1.4.2.3i Cc: ports@freebsd.org Subject: Re: two ptmalloc 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: Fri, 19 Sep 2008 05:24:29 -0000 On Thu, Sep 18, 2008 at 11:16:53PM -0500, Stephen Montgomery-Smith wrote: > There are two ports: > > devel/ptmalloc > devel/ptmalloc2 > > They are identical! > > Which one is the "true" port? See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/127012 ports/127012: Update devel/ptmalloc to version 3 But the assignee is wrong, I'll fix it. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 05: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 DB8D51065673 for ; Fri, 19 Sep 2008 05:52:53 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from lab.alexdupre.com (cl-506.trn-01.it.sixxs.net [IPv6:2001:1418:100:1f9::2]) by mx1.freebsd.org (Postfix) with ESMTP id 1BD958FC13 for ; Fri, 19 Sep 2008 05:52:52 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: (qmail 80715 invoked from network); 19 Sep 2008 05:52:51 -0000 Received: from unknown (HELO athlon.alexdupre.com) (192.168.178.2) by lab.alexdupre.com with SMTP; 19 Sep 2008 05:52:51 -0000 Message-ID: <48D33E32.2030607@FreeBSD.org> Date: Fri, 19 Sep 2008 07:52:50 +0200 From: Alex Dupre User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: John Baldwin References: <200809151036.19674.jhb@freebsd.org> <200809181033.56619.jhb@freebsd.org> <48D2A979.7090809@FreeBSD.org> <200809181545.48487.jhb@freebsd.org> In-Reply-To: <200809181545.48487.jhb@freebsd.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Doug Barton Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 19 Sep 2008 05:52:54 -0000 John Baldwin wrote: > Ahh, I think I see now. It requires one OPTIONS using port to mask the > dependencies. Exactly. >> I thought the same thing, probably yes, but I dunno why it was added in >> such way from the beginning, so I tried to create the simplest and >> surely working patch maintaining the current workflow. > > Ok. Probably it was added in such way because at the beginning there wasn't the config-conditional target and runing the config target for every port (re)build was not a bright idea. If I have time I'll try to make a patch following this rationale, but in the meanwhile my previous patch seems good enough. -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 06:37: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 4CB99106567A for ; Fri, 19 Sep 2008 06:37:34 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from QMTA06.emeryville.ca.mail.comcast.net (qmta06.emeryville.ca.mail.comcast.net [76.96.30.56]) by mx1.freebsd.org (Postfix) with ESMTP id 30DB78FC18 for ; Fri, 19 Sep 2008 06:37:34 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from OMTA02.emeryville.ca.mail.comcast.net ([76.96.30.19]) by QMTA06.emeryville.ca.mail.comcast.net with comcast id GVYW1a00A0QkzPwA6WTZQv; Fri, 19 Sep 2008 06:27:33 +0000 Received: from koitsu.dyndns.org ([67.180.253.227]) by OMTA02.emeryville.ca.mail.comcast.net with comcast id GWTY1a0014v8bD78NWTYnV; Fri, 19 Sep 2008 06:27:33 +0000 X-Authority-Analysis: v=1.0 c=1 a=JEAoL3wPed4A:10 a=y1M4WMdFjH0A:10 a=QycZ5dHgAAAA:8 a=T7HTtBajRCQH6qRUspIA:9 a=ODyB0DrDt1vQNGz6MuAWu9F59z0A:4 a=EoioJ0NPDVgA:10 a=LY0hPdMaydYA:10 Received: by icarus.home.lan (Postfix, from userid 1000) id 67CDA17B81A; Thu, 18 Sep 2008 23:27:32 -0700 (PDT) Date: Thu, 18 Sep 2008 23:27:32 -0700 From: Jeremy Chadwick To: David J Brooks Message-ID: <20080919062732.GA37698@icarus.home.lan> References: <200809190008.15927.freysman@comcast.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200809190008.15927.freysman@comcast.net> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@freebsd.org Subject: Re: how to upgrade ports that depend on openssl-stable? 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, 19 Sep 2008 06:37:34 -0000 On Fri, Sep 19, 2008 at 12:08:15AM -0500, David J Brooks wrote: > I keep running into this error: > > ===> openssl-stable-0.9.7m_1 Conflicts with version in the base. > *** Error code 1 OpenSSL is included in FreeBSD in the base system. The port you're trying to install requires a newer version of OpenSSL than what's in the base system. You need to define WITH_OPENSSL_BASE=yes in your /etc/make.conf. This should make the port build/install successfully, and will overwrite the OpenSSL installation in the base system. You will also need to set WITHOUT_OPENSSL=true in /etc/src.conf (assuming this is FreeBSD 7.x), to ensure the next time you build/install world, that you do not bother building the "base version" of OpenSSL, and instead continue to rely on the port version. -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 06:56:00 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 DB2C1106564A for ; Fri, 19 Sep 2008 06:56:00 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from QMTA07.westchester.pa.mail.comcast.net (qmta07.westchester.pa.mail.comcast.net [76.96.62.64]) by mx1.freebsd.org (Postfix) with ESMTP id 849CB8FC1A for ; Fri, 19 Sep 2008 06:56:00 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from OMTA13.westchester.pa.mail.comcast.net ([76.96.62.52]) by QMTA07.westchester.pa.mail.comcast.net with comcast id GWat1a00517dt5G57WlybC; Fri, 19 Sep 2008 06:45:58 +0000 Received: from koitsu.dyndns.org ([67.180.253.227]) by OMTA13.westchester.pa.mail.comcast.net with comcast id GWlx1a0014v8bD73ZWlxH2; Fri, 19 Sep 2008 06:45:58 +0000 X-Authority-Analysis: v=1.0 c=1 a=JEAoL3wPed4A:10 a=y1M4WMdFjH0A:10 a=QycZ5dHgAAAA:8 a=wbZ9fHYp2X26ExPgLxkA:9 a=UZUf8WeAMR28WqMzptaJMt3QZ7UA:4 a=EoioJ0NPDVgA:10 a=LY0hPdMaydYA:10 Received: by icarus.home.lan (Postfix, from userid 1000) id D16FC17B81A; Thu, 18 Sep 2008 23:45:56 -0700 (PDT) Date: Thu, 18 Sep 2008 23:45:56 -0700 From: Jeremy Chadwick To: David J Brooks Message-ID: <20080919064556.GA38073@icarus.home.lan> References: <200809190008.15927.freysman@comcast.net> <20080919062732.GA37698@icarus.home.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080919062732.GA37698@icarus.home.lan> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@freebsd.org Subject: Re: how to upgrade ports that depend on openssl-stable? 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, 19 Sep 2008 06:56:00 -0000 On Thu, Sep 18, 2008 at 11:27:32PM -0700, Jeremy Chadwick wrote: > On Fri, Sep 19, 2008 at 12:08:15AM -0500, David J Brooks wrote: > > I keep running into this error: > > > > ===> openssl-stable-0.9.7m_1 Conflicts with version in the base. > > *** Error code 1 > > OpenSSL is included in FreeBSD in the base system. The port you're > trying to install requires a newer version of OpenSSL than what's in the > base system. > > You need to define WITH_OPENSSL_BASE=yes in your /etc/make.conf. This > should make the port build/install successfully, and will overwrite > the OpenSSL installation in the base system. > > You will also need to set WITHOUT_OPENSSL=true in /etc/src.conf > (assuming this is FreeBSD 7.x), to ensure the next time you > build/install world, that you do not bother building the "base version" > of OpenSSL, and instead continue to rely on the port version. One other thing I forgot to mention: You will need to rebuild all ports reliant on SSL (this may be hard to determine reliably), as well as all base system utilities reliant on SSL (make world will suffice for this), as there will very likely be a library version mismatch between the old base OpenSSL and the port version of OpenSSL. There's a chance you won't have to do this ("I installed the port like you said and everything still works"), but I would recommend you not take any chances. -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 08:27: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 E5C32106566B for ; Fri, 19 Sep 2008 08:27:21 +0000 (UTC) (envelope-from lars@e.0x20.net) Received: from mail.0x20.net (mail.ipv6.0x20.net [IPv6:2001:aa8:fffb::3]) by mx1.freebsd.org (Postfix) with ESMTP id 768FB8FC24 for ; Fri, 19 Sep 2008 08:27:21 +0000 (UTC) (envelope-from lars@e.0x20.net) Received: by mail.0x20.net (Postfix, from userid 1002) id 46D853A6BC; Fri, 19 Sep 2008 10:27:19 +0200 (CEST) Date: Fri, 19 Sep 2008 10:27:19 +0200 From: Lars Engels To: Klaus Espenlaub Message-ID: <20080919082719.GH676@e.0x20.net> References: <48C52718.5080807@sun.com> <48C8F051.7060107@sun.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Rgf3q3z9SdmXC6oT" Content-Disposition: inline In-Reply-To: <48C8F051.7060107@sun.com> X-Editor: VIM - Vi IMproved 7.1 X-Operation-System: FreeBSD 5.5-RELEASE-p19 User-Agent: mutt-ng/devel-r804 (FreeBSD) Cc: freebsd-ports@freebsd.org Subject: Re: VirtualBox looks for FreeBSD developer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Lars Engels List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Sep 2008 08:27:22 -0000 --Rgf3q3z9SdmXC6oT Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 11, 2008 at 12:17:53PM +0200, Klaus Espenlaub wrote: > Hi, >=20 > Torfinn Ingolfsen wrote: > >On Mon, Sep 8, 2008 at 3:22 PM, Klaus Espenlaub wrote: > >>#include > >I speak for myself and nobody else. I do not claim that I in any way > >represent FreeBSD. > >>freebsd is yet another kernel for which the VirtualBox devs would have > >>to figure out how to safely achieve a few things normal applications > >>don't ever need. Like dealing with physical memory, getting along with > >>the scheduler and stuff like that. It's also true that the written > >>documentation in VirtualBox about this area leaves something to be > >>desired - again a manpower problem. > >It is easy for me as an outsider to see that this can be viewed from > >the opposite angle: > >"VirtualBox is just another virtualization solution for FreeBSD. We > >are sorry that the VirtualBox team can't find any time to provide the > >necessary documentation. Currently FreeBSD don't have any developers > >with enough free time to figure things out from the documentation > >available now. You see - it is simply a manpower problem." I think you could better ask for help on hackers@FreeBSD.org as there aren't too many kernel developers reading ports@ is guess. --Rgf3q3z9SdmXC6oT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkjTYmcACgkQKc512sD3afi4BACdE0C3p++jfzxDZOgp2gaqPHaB 4mwAmgLhcGKMVrDfYY7/tMUe5gKrJDid =fFOB -----END PGP SIGNATURE----- --Rgf3q3z9SdmXC6oT-- From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 08:37: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 A636B1065673 for ; Fri, 19 Sep 2008 08:37:06 +0000 (UTC) (envelope-from shuvaev@physik.uni-wuerzburg.de) Received: from mailrelay.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by mx1.freebsd.org (Postfix) with ESMTP id 2EBD38FC12 for ; Fri, 19 Sep 2008 08:37:06 +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 4BEB0198EA4; Fri, 19 Sep 2008 10:37:05 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by virusscan.mail (Postfix) with ESMTP id 3EB93198E9E; Fri, 19 Sep 2008 10:37:05 +0200 (CEST) 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 1F267198E9C; Fri, 19 Sep 2008 10:37:05 +0200 (CEST) Received: from wep4035.physik.uni-wuerzburg.de ([132.187.37.35]) by mail.physik.uni-wuerzburg.de (Lotus Domino Release 8.0.2) with ESMTP id 2008091910370421-32513 ; Fri, 19 Sep 2008 10:37:04 +0200 Received: by wep4035.physik.uni-wuerzburg.de (sSMTP sendmail emulation); Fri, 19 Sep 2008 10:37:04 +0200 From: "Alexey Shuvaev" Date: Fri, 19 Sep 2008 10:37:04 +0200 To: Snopy Land Message-ID: <20080919083704.GC44330@wep4035.physik.uni-wuerzburg.de> References: MIME-Version: 1.0 In-Reply-To: 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 09/19/2008 10:37:04 AM, Serialize by Router on domino1/uni-wuerzburg(Release 8.0.2|August 07, 2008) at 09/19/2008 10:37:05 AM, Serialize complete at 09/19/2008 10:37:05 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: FreeBSD Port: clamav-0.94_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: Fri, 19 Sep 2008 08:37:06 -0000 On Fri, Sep 19, 2008 at 12:40:35PM +0800, Snopy Land wrote: > Hi, > > My server version is freebsd6.2 amd64. I have installed clamav to scan my ^^^ According to http://www.freebsd.org/security/ it is not supported any more. Consider upgrading your base system (as opposed to ports) as well. > incoming mail. Everything works smoothly for several years. > Recently, I need to upgrade clamav version from 0.92 to 0.94 (latest > version). > The procedure used (from the original mail): > 1. run "make deinstall" to deinstall the clamav version of 0.92 > 2. Modify /usr/ports-supfile (to make sure security port can be download > from a correct default host) > *default host=ftp.tw.freebsd.org > ports-security <--- remark ports-all, and enable the ports-security only ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ That is not a good idea, I think. > 3. cd /usr ; run "cvsup -g -L 2 ports-supfile > 4. check /usr/port/security/clamav port is updated > 5. cd /usr/port/security/clamav > 6. run "make install clean" > There is no error message found in the whole process, however, I cannot find > the file of "clamd", "clamscan" & "freshclam". > The previous version of these file can be found in /usr/local/sbin and > /usr/local/bin > > After redo the upgrade process, I find there are some files under > /usr/local/bin and /usr/local/sbin but the file name is differenet. > > ls -ltr /usr/local/bin > -r-xr-xr-x 1 root wheel 80624 Sep 19 11:07 > amd64-portbld-freebsd6.2-sigtool > -r-xr-xr-x 1 root wheel 87944 Sep 19 11:07 > amd64-portbld-freebsd6.2-freshclam > -r-xr-xr-x 1 root wheel 51968 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamscan > -r-xr-xr-x 1 root wheel 52592 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamdscan > -r-xr-xr-x 1 root wheel 28272 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamconf > -r-xr-xr-x 1 root wheel 1103 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamav-config > > ls -ltr /usr/local/sbin > -r-xr-xr-x 1 root wheel 67536 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamd > Are these files are the same as the file of "clamd", "freshclam" and > "clamscan". If yes, can I create symbolic link for these file so that I can > keep my old setting? (i.e run "/usr/local/sbin/clamd -c > /usr/local/etc/clamd.conf", and run "/usr/local/bin/freshclam --quiet" in > the cronjob). How many configuration files location should I change ? > Yes, these files are the same. You have run into this problem because you have not updated the whole tree, namely ports/Mk* directory. There was a change which is responsible for fixing these ugly names. FWIW, from the /usr/share/examples/cvsup/ports-supfile: # These are the individual collections that make up "ports-all". If you # use these, be sure to comment out "ports-all" above. # # Be sure to ALWAYS cvsup the ports-base collection if you use any of the # other individual collections below. ports-base is a mandatory collection # for the ports collection, and your ports may not build correctly if it # is not kept up to date. #ports-base Good luck! Alexey. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 08:48: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 E0ECC106566B for ; Fri, 19 Sep 2008 08:48:17 +0000 (UTC) (envelope-from miwi@bsdcrew.de) Received: from bsdcrew.de (duro.unixfreunde.de [85.214.90.4]) by mx1.freebsd.org (Postfix) with ESMTP id A7FFA8FC0C for ; Fri, 19 Sep 2008 08:48:17 +0000 (UTC) (envelope-from miwi@bsdcrew.de) Received: by bsdcrew.de (Postfix, from userid 1001) id D26A54ACDE; Fri, 19 Sep 2008 10:48:12 +0200 (CEST) Date: Fri, 19 Sep 2008 10:48:12 +0200 From: Martin Wilke To: kde-freebsd@kde.org Message-ID: <20080919084812.GC86244@bsdcrew.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: CALL FOR TEST Qt 4.4.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: Fri, 19 Sep 2008 08:48:18 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello everybody! Yesterday Qt 4.4.2 was released, area51 is already updated, and I would like some testers before we commit it to the Ports tree after the freeze. You can find the changelog here: http://trolltech.com/developer/resources/notes/changes/changes-4.4.2 Note on area51: You now need subversion to checkout area51, svn co https://kf.athame.co.uk/kde-freebsd/trunk/area51 Happy Testing. Regards Martin - -- +-----------------------+-------------------------------+ | PGP : 0x05682353 | Jabber : miwi(at)BSDCrew.de | | ICQ : 169139903 | Mail : miwi(at)FreeBSD.org | +-----------------------+-------------------------------+ | Mess with the Best, Die like the Rest! | +-----------------------+-------------------------------+ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkjTZ0sACgkQFwpycAVoI1OxyQCglTwiiGJCcFLfkhL73wnnPDyE OO0An0jZhIGjA9C0wlsYrNuEdK0Ivlwf =noBp -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 08:50:32 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 129781065672 for ; Fri, 19 Sep 2008 08:50:32 +0000 (UTC) (envelope-from shuvaev@physik.uni-wuerzburg.de) Received: from mailrelay.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by mx1.freebsd.org (Postfix) with ESMTP id BA0EC8FC12 for ; Fri, 19 Sep 2008 08:50:31 +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 D691F198E85; Fri, 19 Sep 2008 10:50:30 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by virusscan.mail (Postfix) with ESMTP id C9E95198E84; Fri, 19 Sep 2008 10:50:30 +0200 (CEST) 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 B6B04198E77; Fri, 19 Sep 2008 10:50:30 +0200 (CEST) Received: from wep4035.physik.uni-wuerzburg.de ([132.187.37.35]) by mail.physik.uni-wuerzburg.de (Lotus Domino Release 8.0.2) with ESMTP id 2008091910502984-32580 ; Fri, 19 Sep 2008 10:50:29 +0200 Received: by wep4035.physik.uni-wuerzburg.de (sSMTP sendmail emulation); Fri, 19 Sep 2008 10:50:29 +0200 From: "Alexey Shuvaev" Date: Fri, 19 Sep 2008 10:50:29 +0200 To: "O. Hartmann" Message-ID: <20080919085029.GE44330@wep4035.physik.uni-wuerzburg.de> References: <48D25F95.3080504@zedat.fu-berlin.de> MIME-Version: 1.0 In-Reply-To: <48D25F95.3080504@zedat.fu-berlin.de> 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 09/19/2008 10:50:29 AM, Serialize by Router on domino1/uni-wuerzburg(Release 8.0.2|August 07, 2008) at 09/19/2008 10:50:30 AM, Serialize complete at 09/19/2008 10:50:30 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: teTeX/TeXLive: powerdot still missing ... 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, 19 Sep 2008 08:50:32 -0000 On Thu, Sep 18, 2008 at 02:03:01PM +0000, O. Hartmann wrote: > Still using teTeX, but as we all know, development has been canceld by > Thomas Esser. I'm looking for a working 'powerdot' which is part of > TeXLive now, but there is no TeXLive-port available for FreeBSD. > Searching for that matter brings up some informations released a year > ago and I'm wondering about the fact that there is no support for > FreeBSD. > Is there a workaround or 'master plan' how to bring TeXLive to a FreeBSD > bx in a clean way? Can TeXLive coexists with teTeX. > Not about porting TeXLive to FreeBSD actually. After a quick look at 'powerdot' class I can suggest you using 'beamer' as a workaround. It is in the teTeX. Porting of TeXLive is a todo anyway, I think. Alexey. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 10:50: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 B40EF10656DC for ; Fri, 19 Sep 2008 10:50:51 +0000 (UTC) (envelope-from trebestie@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.171]) by mx1.freebsd.org (Postfix) with ESMTP id 8755F8FC1E for ; Fri, 19 Sep 2008 10:50:51 +0000 (UTC) (envelope-from trebestie@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so382808wfg.7 for ; Fri, 19 Sep 2008 03:50:51 -0700 (PDT) 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 :content-transfer-encoding:content-disposition:references; bh=0uAYla4/eop4E1lnStviAQ3NnL8Yu9oFUacuGDORGAg=; b=Kr77w0hy+hEn/oUGZ7i5wCk6DwAGQmtrWVVQOBDqcZtpoNzYFnIV1BcFaFxQGbztS/ hYI99UvmiM1Q1BfZ3VueilRhdiSpgnBKUJjw2buzMeu3XT2PTk6YgVpsacyWmH40ijxr DsjNZFQM5mXj1LQjgsZ6a2/bEJq1Ef0cW5o+c= 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:content-transfer-encoding:content-disposition :references; b=F2wa7tjS04B1sNrk1cvsk4FAEuORGrxoaOJEznUCL6iBlmaeUikNyjHcV6jz0GdayH D8xf4jFJP+L/w1z2Pd96ROS69AIV75vWZWCd/AHpnVLO8owO0Rpn+R9SCe1HwHfQEiNR 6j7XPCocT9EerXyCIZiM6O4D5r5HTEv6ebAYQ= Received: by 10.142.156.2 with SMTP id d2mr1908232wfe.271.1221820097716; Fri, 19 Sep 2008 03:28:17 -0700 (PDT) Received: by 10.142.141.16 with HTTP; Fri, 19 Sep 2008 03:28:17 -0700 (PDT) Message-ID: <83e5fb980809190328k522e86f1kd230fdf9448ce75b@mail.gmail.com> Date: Fri, 19 Sep 2008 12:28:17 +0200 From: "Diego Depaoli" To: "O. Hartmann" , freebsd-ports@freebsd.org In-Reply-To: <20080919085029.GE44330@wep4035.physik.uni-wuerzburg.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <48D25F95.3080504@zedat.fu-berlin.de> <20080919085029.GE44330@wep4035.physik.uni-wuerzburg.de> Cc: Subject: Re: teTeX/TeXLive: powerdot still missing ... 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, 19 Sep 2008 10:50:51 -0000 2008/9/19 Alexey Shuvaev : > On Thu, Sep 18, 2008 at 02:03:01PM +0000, O. Hartmann wrote: >> Still using teTeX, but as we all know, development has been canceld by >> Thomas Esser. I'm looking for a working 'powerdot' which is part of >> TeXLive now, but there is no TeXLive-port available for FreeBSD. >> Searching for that matter brings up some informations released a year >> ago and I'm wondering about the fact that there is no support for >> FreeBSD. >> Is there a workaround or 'master plan' how to bring TeXLive to a FreeBSD >> bx in a clean way? Can TeXLive coexists with teTeX. >> > Not about porting TeXLive to FreeBSD actually. > After a quick look at 'powerdot' class I can suggest you using 'beamer' > as a workaround. or ConTeXT which provides support for FreeBSD. Regards -- Diego Depaoli From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 11:45:20 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 21380106568E for ; Fri, 19 Sep 2008 11:45:20 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from cpanel03.rubas-s03.net (cpanel03.rubas-s03.net [195.182.222.73]) by mx1.freebsd.org (Postfix) with ESMTP id D3A9D8FC34 for ; Fri, 19 Sep 2008 11:45:14 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from 80-218-191-31.dclient.hispeed.ch ([80.218.191.31] helo=gahrtop.gahr.ch) by cpanel03.rubas-s03.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1KgeQD-0005SC-KJ; Fri, 19 Sep 2008 13:45:13 +0200 Message-ID: <48D390B3.5060103@FreeBSD.org> Date: Fri, 19 Sep 2008 13:44:51 +0200 From: Pietro Cerutti Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.16 (X11/20080807) MIME-Version: 1.0 To: "O. Hartmann" References: <48D25F95.3080504@zedat.fu-berlin.de> In-Reply-To: <48D25F95.3080504@zedat.fu-berlin.de> X-Enigmail-Version: 0.95.6 OpenPGP: id=9571F78E; url=http://gahr.ch/pgp/ Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel03.rubas-s03.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-ports@FreeBSD.org Subject: Re: teTeX/TeXLive: powerdot still missing ... 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, 19 Sep 2008 11:45:20 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 O. Hartmann wrote: | Still using teTeX, but as we all know, development has been canceld by | Thomas Esser. I'm looking for a working 'powerdot' which is part of | TeXLive now, but there is no TeXLive-port available for FreeBSD. | Searching for that matter brings up some informations released a year | ago and I'm wondering about the fact that there is no support for FreeBSD. | Is there a workaround or 'master plan' how to bring TeXLive to a FreeBSD | bx in a clean way? Can TeXLive coexists with teTeX. | | Thank you very much for your patience ... Hi Oliver, I currently have a local working installation of TeXLive. However, there are a few problems which prevent me to commit the port to the ports tree. I am planning to gather feedback and do something about it in the near future, so stay tuned :) | Regards, Best regards, | Oliver - -- Pietro Cerutti gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEAREKAAYFAkjTkLIACgkQwMJqmJVx9462NwCdGOrDy4w4O5NJwZ/MxdgyFj+d ZasAnA8HKzvW7A/dI1OoibTuTQ37TaLa =KB/4 -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 12:00:19 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 AE4101065688 for ; Fri, 19 Sep 2008 12:00:19 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from capeta.freebsdbrasil.com.br (capeta.freebsdbrasil.com.br [201.48.151.3]) by mx1.freebsd.org (Postfix) with SMTP id E9BE68FC12 for ; Fri, 19 Sep 2008 12:00:18 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: (qmail 21884 invoked from network); 19 Sep 2008 08:33:36 -0300 Received: by simscan 1.1.0 ppid: 21867, pid: 21874, t: 1.0983s scanners: clamav: 0.91.1/m: spam: 3.1.1 X-Spam-Checker-Version: SpamAssassin: -last, FreeBSD Brasil LTDA rulesets: Yes X-Spam-Status: No, hits=-1.9 required=3.7 Received: from unknown (HELO botelhor.bluepex.com) (garga@189.19.84.134) by capeta.freebsdbrasil.com.br with SMTP; 19 Sep 2008 08:33:35 -0300 Received: (qmail 3156 invoked by uid 1001); 19 Sep 2008 08:35:14 -0300 Date: Fri, 19 Sep 2008 08:35:14 -0300 From: Renato Botelho To: Snopy Land Message-ID: <20080919113513.GA2735@bluepex.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; x-action=pgp-signed Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: clamav-0.94_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: Fri, 19 Sep 2008 12:00:19 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Fri, Sep 19, 2008 at 12:40:35PM +0800, Snopy Land wrote: > Hi, > > My server version is freebsd6.2 amd64. I have installed clamav to scan my > incoming mail. Everything works smoothly for several years. > Recently, I need to upgrade clamav version from 0.92 to 0.94 (latest > version). > > There is no error message found in the whole process, however, I cannot find > the file of "clamd", "clamscan" & "freshclam". > The previous version of these file can be found in /usr/local/sbin and > /usr/local/bin > > I have posted my problem in the mailling list of freebsd-ports, however, I > cannot get any hints. > > After redo the upgrade process, I find there are some files under > /usr/local/bin and /usr/local/sbin but the file name is differenet. > > ls -ltr /usr/local/bin > -r-xr-xr-x 1 root wheel 80624 Sep 19 11:07 > amd64-portbld-freebsd6.2-sigtool > -r-xr-xr-x 1 root wheel 87944 Sep 19 11:07 > amd64-portbld-freebsd6.2-freshclam > -r-xr-xr-x 1 root wheel 51968 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamscan > -r-xr-xr-x 1 root wheel 52592 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamdscan > -r-xr-xr-x 1 root wheel 28272 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamconf > -r-xr-xr-x 1 root wheel 1103 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamav-config > > ls -ltr /usr/local/sbin > -r-xr-xr-x 1 root wheel 67536 Sep 19 11:07 > amd64-portbld-freebsd6.2-clamd > Are these files are the same as the file of "clamd", "freshclam" and > "clamscan". If yes, can I create symbolic link for these file so that I can > keep my old setting? (i.e run "/usr/local/sbin/clamd -c > /usr/local/etc/clamd.conf", and run "/usr/local/bin/freshclam --quiet" in > the cronjob). How many configuration files location should I change ? > > Thanks. This same problem happened with another user, and the cause was his ports tree and autotools ports are not up-to-date. Please, update your ports tree, update all autotools ports (automake, autoconf, libtool) and rebuild clamav. Thanks - -- Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc The one good thing about repeating your mistakes is that you know when to cringe. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkjTjnEACgkQ6CRbiSJE7amXzwCePlC+uU715DPcmIlIxYfW5nJM XloAoLGXwcWWYPniW2VIXlv5fQU9JJns =VOj/ -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 15:33:56 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 027131065675 for ; Fri, 19 Sep 2008 15:33:56 +0000 (UTC) (envelope-from ghirai@ghirai.com) Received: from ghirai.com (ghirai.com [193.33.187.90]) by mx1.freebsd.org (Postfix) with ESMTP id C04E58FC08 for ; Fri, 19 Sep 2008 15:33:55 +0000 (UTC) (envelope-from ghirai@ghirai.com) Received: from deimos.bsd.nix (unknown [89.123.56.243]) by ghirai.com (Postfix) with ESMTPSA id 1C8A116FF4; Fri, 19 Sep 2008 16:16:33 +0100 (BST) Date: Fri, 19 Sep 2008 18:16:35 +0300 From: Ghirai To: neal@nelson.name Message-Id: <20080919181635.ae1e5fd4.ghirai@ghirai.com> X-Mailer: Sylpheed 2.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 Cc: ports@FreeBSD.org Subject: FreeBSD Port: py25-wxPython-2.8.7.1_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: Fri, 19 Sep 2008 15:33:56 -0000 Hello, The version in the ports tree is a bit dated (Nov. 2007). Any chance we can get an update (current is 2.8.8.1)? Thanks. -- Regards, Ghirai. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 17:11: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 492E1106567A for ; Fri, 19 Sep 2008 17:11:47 +0000 (UTC) (envelope-from estrabd@gmail.com) Received: from gate011.lsu.edu (gate011.ocs.lsu.edu [130.39.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id 2332E8FC18 for ; Fri, 19 Sep 2008 17:11:47 +0000 (UTC) (envelope-from estrabd@gmail.com) Received: from bc3.hpc.lsu.edu ([130.39.195.165]) by gate011.lsu.edu (Lotus Domino Release 6.0.3) with ESMTP id 2008091912013429-10927 ; Fri, 19 Sep 2008 12:01:34 -0500 Received: from bc3.hpc.lsu.edu (localhost [127.0.0.1]) by bc3.hpc.lsu.edu (8.14.2/8.14.2) with ESMTP id m8JGw8hE074171; Fri, 19 Sep 2008 11:58:08 -0500 (CDT) (envelope-from estrabd@gmail.com) Received: (from estrabd@localhost) by bc3.hpc.lsu.edu (8.14.2/8.14.2/Submit) id m8JGw8PO074170; Fri, 19 Sep 2008 11:58:08 -0500 (CDT) (envelope-from estrabd@gmail.com) X-Authentication-Warning: bc3.hpc.lsu.edu: estrabd set sender to estrabd@gmail.com using -f Date: Fri, 19 Sep 2008 11:58:08 -0500 From: "B. Estrade" To: ports@freebsd.org Message-ID: <20080919165808.GP71681@bc3.hpc.lsu.edu> Mime-Version: 1.0 User-Agent: Mutt/1.4.2.3i mailed-by: estrabd@lsu.edu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Cc: Subject: www/vee 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, 19 Sep 2008 17:11:47 -0000 I am the author of www/vee, and when checking to see if it's been upgraded to the latest I found out that there was no longer a maintainer for this port. http://www.freshports.org/www/?page=19 I am interested in getting the latest version into ports, and am willing to become port maintainer for it - if someone would kindly point me to the documentation describing how to do such a thing. The vee site is: http://www.0x743.com/vee/ Cheers, Brett From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 17:26:31 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 DA0191065677 for ; Fri, 19 Sep 2008 17:26:31 +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 B9E568FC08 for ; Fri, 19 Sep 2008 17:26:31 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 166B25C5C; Fri, 19 Sep 2008 13:26:31 -0400 (EDT) Date: Fri, 19 Sep 2008 13:26:31 -0400 From: Wesley Shields To: "B. Estrade" Message-ID: <20080919172631.GA28024@atarininja.org> References: <20080919165808.GP71681@bc3.hpc.lsu.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080919165808.GP71681@bc3.hpc.lsu.edu> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@freebsd.org Subject: Re: www/vee 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, 19 Sep 2008 17:26:31 -0000 On Fri, Sep 19, 2008 at 11:58:08AM -0500, B. Estrade wrote: > I am the author of www/vee, and when checking to see if it's been > upgraded to the latest I found out that there was no longer a > maintainer for this port. > > http://www.freshports.org/www/?page=19 > > I am interested in getting the latest version into ports, and am > willing to become port maintainer for it - if someone would kindly > point me to the documentation describing how to do such a thing. > > The vee site is: http://www.0x743.com/vee/ http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html Also, reading through /usr/ports/Mk/* is a good idea if you ever get stuck. Lastly, this list is also helpful in case you have questions that are not answered with the above resources. -- WXS From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 19:49:50 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 3612F106564A for ; Fri, 19 Sep 2008 19:49:50 +0000 (UTC) (envelope-from miwi@bsdcrew.de) Received: from bsdcrew.de (duro.unixfreunde.de [85.214.90.4]) by mx1.freebsd.org (Postfix) with ESMTP id F0A528FC15 for ; Fri, 19 Sep 2008 19:49:49 +0000 (UTC) (envelope-from miwi@bsdcrew.de) Received: by bsdcrew.de (Postfix, from userid 1001) id 79B034ACDE; Fri, 19 Sep 2008 21:49:45 +0200 (CEST) Date: Fri, 19 Sep 2008 21:49:45 +0200 From: Martin Wilke To: Dorian =?iso-8859-1?Q?B=FCttner?= Message-ID: <20080919194945.GF35488@bsdcrew.de> References: <20080919084812.GC86244@bsdcrew.de> <48D3E3F3.4020301@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; x-action=pgp-signed Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <48D3E3F3.4020301@gmx.de> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: kde-freebsd@kde.org, freebsd-ports@FreeBSD.org Subject: Re: [kde-freebsd] CALL FOR TEST Qt 4.4.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: Fri, 19 Sep 2008 19:49:50 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Yep we also documented that today, https://kf.athame.co.uk/access.php On Fri, Sep 19, 2008 at 07:40:03PM +0200, Dorian Bĵttner wrote: > Martin Wilke schrieb: > > Note on area51: > > You now need subversion to checkout area51, > > > > svn co https://kf.athame.co.uk/kde-freebsd/trunk/area51 > > > > > Anything else remains the same? > > 3. Choose a partition for the area51 repository checkout. I personally > > use /var, but you can use what you want. > > > > 4. If you use /var (or use your path here) then > > > > # cd /var > > > > 5. This creates a folder area51 into /var with checked out repository. > > > > # cvs -d:ext:anoncvs@orm.arved.priv.at:/home/kde-freebsd co area51 > > > > 6. If you use /var (or use your path here) then > > > > # mount -t unionfs /var/area51 /usr/ports > > > > You have now area51 repository on top of your existing ports tree. Use your > > ports tree now as usual. > > > > 7. Install / update QT 4 first. > > > > 8. Install KDE 4 ports you want. You can start with /usr/ports/x11/kdebase4 > > > > That is all. When you want to use your unmodified original ports tree just > > > > # umount /usr/ports > > > > and everything is like before. Of course do not downgrade / uninstall the new > > installed ports and run KDE 4 only with your test user accoun > > Thanks, > Dorian > - -- +-----------------------+-------------------------------+ | PGP : 0x05682353 | Jabber : miwi(at)BSDCrew.de | | ICQ : 169139903 | Mail : miwi(at)FreeBSD.org | +-----------------------+-------------------------------+ | Mess with the Best, Die like the Rest! | +-----------------------+-------------------------------+ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkjUAlgACgkQFwpycAVoI1MVYwCbBy/ZpiJQHhl+ymzrcx+pWPsg EmMAn2si+zExz69BDKS/inDBzl3mj6II =E3/p -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 20:06: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 ABF54106566B for ; Fri, 19 Sep 2008 20:06:45 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id EF3B88FC13 for ; Fri, 19 Sep 2008 20:06:44 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: (qmail invoked by alias); 19 Sep 2008 19:40:01 -0000 Received: from port-92-192-53-212.dynamic.qsc.de (EHLO [192.168.168.2]) [92.192.53.212] by mail.gmx.net (mp065) with SMTP; 19 Sep 2008 21:40:01 +0200 X-Authenticated: #1682771 X-Provags-ID: V01U2FsdGVkX19Bcf4G5K9BXSZc0yV/fnsoFaYvUzlAccHkUUd0Yo yyaDatUkss7uL8 Message-ID: <48D3E3F3.4020301@gmx.de> Date: Fri, 19 Sep 2008 19:40:03 +0200 From: =?ISO-8859-1?Q?Dorian_B=FCttner?= User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) MIME-Version: 1.0 To: Martin Wilke References: <20080919084812.GC86244@bsdcrew.de> In-Reply-To: <20080919084812.GC86244@bsdcrew.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.65 Cc: kde-freebsd@kde.org, freebsd-ports@FreeBSD.org Subject: Re: [kde-freebsd] CALL FOR TEST Qt 4.4.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: Fri, 19 Sep 2008 20:06:45 -0000 Martin Wilke schrieb: > Note on area51: > You now need subversion to checkout area51, > > svn co https://kf.athame.co.uk/kde-freebsd/trunk/area51 > > Anything else remains the same? 3. Choose a partition for the area51 repository checkout. I personally > use /var, but you can use what you want. > > 4. If you use /var (or use your path here) then > > # cd /var > > 5. This creates a folder area51 into /var with checked out repository. > > # cvs -d:ext:anoncvs@orm.arved.priv.at:/home/kde-freebsd co area51 > > 6. If you use /var (or use your path here) then > > # mount -t unionfs /var/area51 /usr/ports > > You have now area51 repository on top of your existing ports tree. Use your > ports tree now as usual. > > 7. Install / update QT 4 first. > > 8. Install KDE 4 ports you want. You can start with /usr/ports/x11/kdebase4 > > That is all. When you want to use your unmodified original ports tree just > > # umount /usr/ports > > and everything is like before. Of course do not downgrade / uninstall the new > installed ports and run KDE 4 only with your test user accoun Thanks, Dorian From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 21:36: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 0F1F1106567B for ; Fri, 19 Sep 2008 21:36:37 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from lab.alexdupre.com (cl-506.trn-01.it.sixxs.net [IPv6:2001:1418:100:1f9::2]) by mx1.freebsd.org (Postfix) with ESMTP id 54B568FC13 for ; Fri, 19 Sep 2008 21:36:36 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: (qmail 62911 invoked from network); 19 Sep 2008 21:36:35 -0000 Received: from unknown (HELO athlon.alexdupre.com) (192.168.178.2) by lab.alexdupre.com with SMTP; 19 Sep 2008 21:36:35 -0000 Message-ID: <48D41B62.90603@FreeBSD.org> Date: Fri, 19 Sep 2008 23:36:34 +0200 From: Alex Dupre User-Agent: Thunderbird 2.0.0.16 (X11/20080726) MIME-Version: 1.0 To: John Baldwin References: <200809151036.19674.jhb@freebsd.org> <48D03248.1040109@FreeBSD.org> <48D0A683.9020802@FreeBSD.org> <200809171303.05759.jhb@freebsd.org> <48D2167F.3040203@FreeBSD.org> In-Reply-To: <48D2167F.3040203@FreeBSD.org> Content-Type: multipart/mixed; boundary="------------000009000709080705080502" Cc: ports@freebsd.org, Doug Barton Subject: Re: OPTIONS handling doesn't seem to work fully in dependencies anymore 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, 19 Sep 2008 21:36:37 -0000 This is a multi-part message in MIME format. --------------000009000709080705080502 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Alex Dupre wrote: > The attached patch should solve this erratic behavior. Another quick patch, that removes handling OPTIONS as a special case. -- Alex Dupre --------------000009000709080705080502 Content-Type: text/plain; name="bsd.port.mk.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsd.port.mk.diff" --- bsd.port.mk.orig 2008-09-19 23:15:37.000000000 +0200 +++ bsd.port.mk 2008-09-19 23:29:30.000000000 +0200 @@ -3229,17 +3229,6 @@ .endif ################################################################ -# -# Do preliminary work to detect if we need to run the config -# target or not. -# -################################################################ -.if (!defined(OPTIONS) || defined(CONFIG_DONE) || \ - defined(PACKAGE_BUILDING) || defined(BATCH)) -_OPTIONS_OK=yes -.endif - -################################################################ # The following are used to create easy dummy targets for # disabling some bit of default target behavior you don't want. # They still check to see if the target exists, and if so don't @@ -4114,7 +4103,7 @@ _SANITY_SEQ= ${_CHROOT_SEQ} pre-everything check-makefile check-categories \ check-makevars check-desktop-entries check-depends \ check-deprecated check-vulnerable buildanyway-message \ - options-message + options-message config-conditional _FETCH_DEP= check-sanity _FETCH_SEQ= fetch-depends pre-fetch pre-fetch-script \ do-fetch post-fetch post-fetch-script @@ -4165,12 +4154,8 @@ .for target in extract patch configure build install package -.if !target(${target}) && defined(_OPTIONS_OK) +.if !target(${target}) ${target}: ${${target:U}_COOKIE} -.elif !target(${target}) -${target}: config-conditional - @cd ${.CURDIR} && ${MAKE} CONFIG_DONE=1 ${__softMAKEFLAGS} ${${target:U}_COOKIE} -.elif target(${target}) && defined(IGNORE) .endif .if !exists(${${target:U}_COOKIE}) @@ -5936,7 +5921,7 @@ .if !target(config-conditional) config-conditional: -.if defined(OPTIONS) +.if defined(OPTIONS) && !defined(PACKAGE_BUILDING) && !defined(BATCH) .if exists(${OPTIONSFILE}) # scan saved options and invalidate them, if the set of options does not match @. ${OPTIONSFILE}; \ --------------000009000709080705080502-- From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 22:45: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 63C2F1065689 for ; Fri, 19 Sep 2008 22:45:14 +0000 (UTC) (envelope-from freysman@comcast.net) Received: from QMTA05.emeryville.ca.mail.comcast.net (qmta05.emeryville.ca.mail.comcast.net [76.96.30.48]) by mx1.freebsd.org (Postfix) with ESMTP id 497BC8FC08 for ; Fri, 19 Sep 2008 22:45:09 +0000 (UTC) (envelope-from freysman@comcast.net) Received: from OMTA08.emeryville.ca.mail.comcast.net ([76.96.30.12]) by QMTA05.emeryville.ca.mail.comcast.net with comcast id GkLB1a0090FhH24A5mV93D; Fri, 19 Sep 2008 22:29:09 +0000 Received: from [192.168.62.51] ([98.196.165.199]) by OMTA08.emeryville.ca.mail.comcast.net with comcast id GmV71a0044JT4uy8UmV8kb; Fri, 19 Sep 2008 22:29:08 +0000 X-Authority-Analysis: v=1.0 c=1 a=JEAoL3wPed4A:10 a=y1M4WMdFjH0A:10 a=Vmsxc1wLTH7g_u7Vxy8A:9 a=1gJSqUPdin996uyP1q8wc3z1zEQA:4 a=LY0hPdMaydYA:10 From: David J Brooks Organization: Tessier-Ashpool, S.A. To: freebsd-ports@freebsd.org Date: Fri, 19 Sep 2008 17:29:05 -0500 User-Agent: KMail/1.9.7 References: <200809190008.15927.freysman@comcast.net> <20080919062732.GA37698@icarus.home.lan> In-Reply-To: <20080919062732.GA37698@icarus.home.lan> X-Face: +\{75whsIB]=i--WqkV^U>!y`<~%(FUd, DQs, &e1yLt==9%It?7#?n>%Splqb, =?utf-8?q?=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=0A=09lDIEu=25W?= =?utf-8?q?sB7o+6k2n=606Q5Fl?=, vJei{$-.KlHPHu/.~VuE=C[}lQmL}>V1t\yTn2iTwCfM`% MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809191729.05657.freysman@comcast.net> Subject: Re: how to upgrade ports that depend on openssl-stable? 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, 19 Sep 2008 22:45:14 -0000 On Friday 19 September 2008 01:27:32 am Jeremy Chadwick wrote: > On Fri, Sep 19, 2008 at 12:08:15AM -0500, David J Brooks wrote: > > I keep running into this error: > > > > ===> openssl-stable-0.9.7m_1 Conflicts with version in the base. > > *** Error code 1 > > OpenSSL is included in FreeBSD in the base system. The port you're > trying to install requires a newer version of OpenSSL than what's in the > base system. > > You need to define WITH_OPENSSL_BASE=yes in your /etc/make.conf. This > should make the port build/install successfully, and will overwrite > the OpenSSL installation in the base system. > > You will also need to set WITHOUT_OPENSSL=true in /etc/src.conf > (assuming this is FreeBSD 7.x), to ensure the next time you > build/install world, that you do not bother building the "base version" > of OpenSSL, and instead continue to rely on the port version. That did the trick. Thanks! -- This message has been foretold by Nostradamus. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 23:27: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 8EF641065670; Fri, 19 Sep 2008 23:27:07 +0000 (UTC) (envelope-from estrabd@gmail.com) Received: from gate011.lsu.edu (gate011.ocs.lsu.edu [130.39.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id 662FD8FC1D; Fri, 19 Sep 2008 23:27:07 +0000 (UTC) (envelope-from estrabd@gmail.com) Received: from bc3.hpc.lsu.edu ([130.39.195.165]) by gate011.lsu.edu (Lotus Domino Release 6.0.3) with ESMTP id 2008091918270335-13095 ; Fri, 19 Sep 2008 18:27:03 -0500 Received: from bc3.hpc.lsu.edu (localhost [127.0.0.1]) by bc3.hpc.lsu.edu (8.14.2/8.14.2) with ESMTP id m8JNNauO080048; Fri, 19 Sep 2008 18:23:37 -0500 (CDT) (envelope-from estrabd@gmail.com) Received: (from estrabd@localhost) by bc3.hpc.lsu.edu (8.14.2/8.14.2/Submit) id m8JNNa29080047; Fri, 19 Sep 2008 18:23:36 -0500 (CDT) (envelope-from estrabd@gmail.com) X-Authentication-Warning: bc3.hpc.lsu.edu: estrabd set sender to estrabd@gmail.com using -f Date: Fri, 19 Sep 2008 18:23:36 -0500 From: "B. Estrade" To: Wesley Shields Message-ID: <20080919232336.GH71681@bc3.hpc.lsu.edu> References: <20080919165808.GP71681@bc3.hpc.lsu.edu> <20080919172631.GA28024@atarininja.org> Mime-Version: 1.0 In-Reply-To: <20080919172631.GA28024@atarininja.org> User-Agent: Mutt/1.4.2.3i mailed-by: estrabd@lsu.edu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Cc: ports@FreeBSD.org Subject: Re: www/vee 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, 19 Sep 2008 23:27:07 -0000 On Fri, Sep 19, 2008 at 01:26:31PM -0400, Wesley Shields wrote: > On Fri, Sep 19, 2008 at 11:58:08AM -0500, B. Estrade wrote: > > I am the author of www/vee, and when checking to see if it's been > > upgraded to the latest I found out that there was no longer a > > maintainer for this port. > > > > http://www.freshports.org/www/?page=19 > > > > I am interested in getting the latest version into ports, and am > > willing to become port maintainer for it - if someone would kindly > > point me to the documentation describing how to do such a thing. > > > > The vee site is: http://www.0x743.com/vee/ > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html > > Also, reading through /usr/ports/Mk/* is a good idea if you ever get > stuck. > > Lastly, this list is also helpful in case you have questions that are > not answered with the above resources. > > -- WXS Okay. So I followed the instructions on updating at http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/port-upgrading.html, and during the process updated the checksum file with 'make makesum' and ran the suggested install/deinstall/reinstall/etc tests. Everything worked fine, so I sent in the result of 'diff -ruN vee.bak vee' in through send-pr. So is that about it? Also, I mentioned in the report that I'd like to be the maintainer for the port, but would like to reiterate it. Thanks - this was pretty fun and the replies I got were very helpful. Cheers, Brett From owner-freebsd-ports@FreeBSD.ORG Sat Sep 20 00:21: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 C2386106566B for ; Sat, 20 Sep 2008 00:21:07 +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 A15D88FC0A for ; Sat, 20 Sep 2008 00:21:07 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id B51835C5C; Fri, 19 Sep 2008 20:21:06 -0400 (EDT) Date: Fri, 19 Sep 2008 20:21:06 -0400 From: Wesley Shields To: "B. Estrade" Message-ID: <20080920002106.GA30884@atarininja.org> References: <20080919165808.GP71681@bc3.hpc.lsu.edu> <20080919172631.GA28024@atarininja.org> <20080919232336.GH71681@bc3.hpc.lsu.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080919232336.GH71681@bc3.hpc.lsu.edu> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@FreeBSD.org Subject: Re: www/vee 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, 20 Sep 2008 00:21:07 -0000 On Fri, Sep 19, 2008 at 06:23:36PM -0500, B. Estrade wrote: > On Fri, Sep 19, 2008 at 01:26:31PM -0400, Wesley Shields wrote: > > On Fri, Sep 19, 2008 at 11:58:08AM -0500, B. Estrade wrote: > > > I am the author of www/vee, and when checking to see if it's been > > > upgraded to the latest I found out that there was no longer a > > > maintainer for this port. > > > > > > http://www.freshports.org/www/?page=19 > > > > > > I am interested in getting the latest version into ports, and am > > > willing to become port maintainer for it - if someone would kindly > > > point me to the documentation describing how to do such a thing. > > > > > > The vee site is: http://www.0x743.com/vee/ > > > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html > > > > Also, reading through /usr/ports/Mk/* is a good idea if you ever get > > stuck. > > > > Lastly, this list is also helpful in case you have questions that are > > not answered with the above resources. > > > > -- WXS > > Okay. So I followed the instructions on updating at > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/port-upgrading.html, > and during the process updated the checksum file with 'make makesum' > and ran the suggested install/deinstall/reinstall/etc tests. > Everything worked fine, so I sent in the result of 'diff -ruN vee.bak > vee' in through send-pr. > > So is that about it? Also, I mentioned in the report that I'd like to > be the maintainer for the port, but would like to reiterate it. Provided it passes the tests that a committer will put your update through, then yes. We are currently in a freeze for the upcoming releases so please be patient as the kind of update you have prepared will have to wait until the tree is thawed. > Thanks - this was pretty fun and the replies I got were very helpful. Your welcome, and welcome to the club. :) -- WXS From owner-freebsd-ports@FreeBSD.ORG Sat Sep 20 04:16:50 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 02A36106566C for ; Sat, 20 Sep 2008 04:16:50 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.173]) by mx1.freebsd.org (Postfix) with ESMTP id CE0DC8FC12 for ; Sat, 20 Sep 2008 04:16:49 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so792692wfg.7 for ; Fri, 19 Sep 2008 21:16:49 -0700 (PDT) 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; bh=YS0GB6v1LvwoCjglw8Z7GcOL6poe6XzTnYfQs49L0KA=; b=bO93Pjg0OVWzkEfF8V5fNvwmE89vNpeI3RgJ5wY4+GkZLgqJ/VDC+cTnvWca6XUbnk GitGfxD/6TzZWw633qyEIFmFnAyX9dgGrRcuAVpAeYyq3ufZPf27RXLDrhKmvs1K+lCo tCf7jOyjYbFf4SCqFawFSRIwjRXGu66H47XkQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=i0MwtqXVZtjVGQd8+UddtaadbVM7YXOLFd0kcB3t3c7CiMfWD4tom73pwdBz7pqeQa t4Z1NjotTzMgxljrXO7WjXoNbGc1YUWCy8QRPvhiIDDpRoNqIatUmZwkYRrWcd/2RFkl Ig8B36+SvQulBx/bC7qXBOe07+ZGlHUZ1LR1A= Received: by 10.142.70.11 with SMTP id s11mr339774wfa.293.1221882626912; Fri, 19 Sep 2008 20:50:26 -0700 (PDT) Received: by 10.142.231.14 with HTTP; Fri, 19 Sep 2008 20:50:26 -0700 (PDT) Message-ID: <28283d910809192050l49e39bc5xcc229a711c66a29@mail.gmail.com> Date: Fri, 19 Sep 2008 23:50:26 -0400 From: "matt donovan" To: ports@freebsd.org MIME-Version: 1.0 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: Subject: Does anyone know nginx's www path 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, 20 Sep 2008 04:16:50 -0000 Since I am trying to get this setup for a developer machine and I can't get to the default index.html. and it seems that the pid file is not created either with the port. All I get with a default nginx install is a 404 error From owner-freebsd-ports@FreeBSD.ORG Sat Sep 20 11:57: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 AA74E1065671; Sat, 20 Sep 2008 11:57:53 +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 3B4598FC1A; Sat, 20 Sep 2008 11:57:53 +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 C8B4EFBEC40; Sat, 20 Sep 2008 14:57:51 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 8437812E467B; Sat, 20 Sep 2008 14:57:51 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: x11-clocks/emiclock X-QAT-Fail_Reason: mtree X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/emiclock-2.0.2_2.log X-QAT-Build_Reason: QA Run Message-Id: <20080920115751.8437812E467B@quark.ds9.tecnik93.com> Date: Sat, 20 Sep 2008 14:57:51 +0300 (EEST) Cc: Subject: x11-clocks/emiclock - fails: mtree 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, 20 Sep 2008 11:57:53 -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/emiclock-2.0.2_2.log : building emiclock-2.0.2_2 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/x11-clocks/emiclock Makefile ident: $FreeBSD: ports/x11-clocks/emiclock/Makefile,v 1.28 2008/04/19 17:54:49 miwi Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sat Sep 20 11:57:10 UTC 2008 ................................................... pkg_add fontconfig-2.5.0,1.tbz skipping fontconfig-2.5.0,1, already added pkg_add dmxproto-2.2.2.tbz skipping dmxproto-2.2.2, already added pkg_add expat-2.0.1.tbz skipping expat-2.0.1, already added pkg_add xorg-libraries-7.3_2.tbz skipping xorg-libraries-7.3_2, already added ===> Installing for emiclock-2.0.2_2 ===> emiclock-2.0.2_2 depends on file: /usr/local/libdata/xorg/libraries - found cd /work/a/ports/x11-clocks/emiclock/work/emiclock-2.0.2; install -o root -g wheel -m 444 -c -m 0444 resources/R6/EUC/EmiClock.ad /usr/local/lib/X11/ja_JP.eucJP/app-defaults/EmiClock cd /work/a/ports/x11-clocks/emiclock/work/emiclock-2.0.2; install -o root -g wheel -m 444 -c -m 0444 resources/R6/EUC/EmiClock.ad /usr/local/lib/X11/ja_JP.EUC/app-defaults/EmiClock cd /work/a/ports/x11-clocks/emiclock/work/emiclock-2.0.2; install -o root -g wheel -m 444 -c -m 0444 COPYRIGHT COPYRIGHT.en /usr/local/share/doc/emiclock ===> Generating temporary packing list ===> Checking if x11-clocks/emiclock already installed /usr/bin/install -c -s emiclock /usr/local/bin/emiclock cp resources/Xaw/EmiClock.ad . /usr/bin/install -c -m 0444 EmiClock.ad /usr/local/lib/X11/app-defaults/EmiClock install in . done rm -f /usr/local/man/man1/emiclock.1* /usr/bin/install -c -m 0444 emiclock._man /usr/local/man/man1/emiclock.1 gzip -n /usr/local/man/man1/emiclock.1 install.man in . done ===> Registering installation for emiclock-2.0.2_2 ================================================================ ======================================== ===> Building package for emiclock-2.0.2_2 Creating package /tmp/packages/All/emiclock-2.0.2_2.tbz Registering depends: xorg-libraries-7.3_2 libXfontcache-1.0.4 libXres-1.0.3_3 libXTrap-1.0.0 libXaw-1.0.4_1,1 libXpm-3.5.7 libXprintAppUtil-1.0.1 libXprintUtil-1.0.1 libXp-1.0.0,1 libXmu-1.0.3,1 libXcomposite-0.4.0,1 libXevie-1.0.2 libXi-1.1.3,1 libXinerama-1.0.2,1 libXrandr-1.2.2_1 libXScrnSaver-1.1.2 libXtst-1.0.3_1 libXvMC-1.0.4_1 libXv-1.0.3_1,1 libXxf86dga-1.0.2 libXxf86misc-1.0.1 libXxf86vm-1.0.1 libdmx-1.0.2_1 libXext-1.0.3,1 trapproto-3.4.3 libxkbui-1.0.2_1 libXt-1.0.5_1 libXcursor-1.1.9_1 libXdamage-1.1.1 libXfixes-4.0.3_1 libXft-2.1.13 libXrender-0.9.4_1 libxkbfile-1.0.4 liboldX-1.0.1 libX11-1.1.3_1,1 libXdmcp-1.0.2_1 libXau-1.0.3_2 libXfont-1.3.1_3,1 libfontenc-1.0.4 libSM-1.0.3_1,1 libICE-1.0.4_1,1 libFS-1.0.0_1 xproto-7.0.10_1 fontconfig-2.5.0,1 freetype2-2.3.7 xtrans-1.0.4 pixman-0.10.0_2 pkg-config-0.23_1 expat-2.0.1 fontcacheproto-0.1.2 fontsproto-2.0.2 compositeproto-0.4 damageproto-1.1.0_2 dmxproto-2.2.2 fixesproto-4.0 inputproto-1.4.2.1 kbproto-1.0.3 printp roto-1.0.3 randrproto-1.2.1 recordproto-1.13.2 renderproto-0.9.3 scrnsaverproto-1.1.0 videoproto-2.2.2 xextproto-7.0.2 xf86dgaproto-2.0.3 xf86miscproto-0.9.2 xf86vidmodeproto-2.2.2 xineramaproto-1.1.2. Creating bzip'd tar ball in '/tmp/packages/All/emiclock-2.0.2_2.tbz' Deleting emiclock-2.0.2_2 ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 2968745 4 drwxr-xr-x 2 root wheel 512 Sep 20 11:57 usr/local/share/doc/emiclock 2968746 12 -r--r--r-- 1 root wheel 4367 Sep 20 11:57 usr/local/share/doc/emiclock/COPYRIGHT 2968757 8 -r--r--r-- 1 root wheel 4067 Sep 20 11:57 usr/local/share/doc/emiclock/COPYRIGHT.en ================================================================ build of /usr/ports/x11-clocks/emiclock ended at Sat Sep 20 11:57:50 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Sep 20 14:01:40 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 D4D47106566C; Sat, 20 Sep 2008 14:01:40 +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 519838FC08; Sat, 20 Sep 2008 14:01:40 +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 5F297FBEC27; Sat, 20 Sep 2008 17:01:39 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 5AFF812E467B; Sat, 20 Sep 2008 17:01:39 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: x11-fm/workplace X-QAT-Fail_Reason: install_error X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/workplace-1.0.a3_5,1.log X-QAT-Build_Reason: QA Run Message-Id: <20080920140139.5AFF812E467B@quark.ds9.tecnik93.com> Date: Sat, 20 Sep 2008 17:01:39 +0300 (EEST) Cc: Subject: x11-fm/workplace - fails: 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: Sat, 20 Sep 2008 14:01:40 -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/workplace-1.0.a3_5,1.log : building workplace-1.0.a3_5,1 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/x11-fm/workplace Makefile ident: $FreeBSD: ports/x11-fm/workplace/Makefile,v 1.32 2008/06/06 14:12:23 edwin Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sat Sep 20 14:01:12 UTC 2008 ................................................... pkg_add libiconv-1.11_1.tbz skipping libiconv-1.11_1, already added pkg_add kbproto-1.0.3.tbz skipping kbproto-1.0.3, already added pkg_add libXau-1.0.3_2.tbz skipping libXau-1.0.3_2, already added pkg_add libXdmcp-1.0.2_1.tbz skipping libXdmcp-1.0.2_1, already added pkg_add xproto-7.0.10_1.tbz skipping xproto-7.0.10_1, already added pkg_add xextproto-7.0.2.tbz skipping xextproto-7.0.2, already added pkg_add inputproto-1.4.2.1.tbz skipping inputproto-1.4.2.1, already added pkg_add gtk-1.2.10_20.tbz skipping gtk-1.2.10_20, already added ===> Installing for workplace-1.0.a3_5,1 ===> workplace-1.0.a3_5,1 depends on executable: pkg-config - found ===> workplace-1.0.a3_5,1 depends on shared library: glib-12.3 - found ===> workplace-1.0.a3_5,1 depends on shared library: gtk-12.2 - found ===> Generating temporary packing list ===> Checking if x11-fm/workplace already installed ===> Registering installation for workplace-1.0.a3_5,1 ================================================================ ======================================== ===> Building package for workplace-1.0.a3_5,1 tar: share/doc/workplace/AUTHORS: Cannot stat: No such file or directory tar: share/doc/workplace/INSTALL: Cannot stat: No such file or directory tar: share/doc/workplace/README: Cannot stat: No such file or directory tar: share/doc/workplace/TODO: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. pkg_create: make_dist: tar command failed with code 256 Creating package /tmp/packages/All/workplace-1.0.a3_5,1.tbz Registering depends: gtk-1.2.10_20 gettext-0.17_1 libiconv-1.11_1 glib-1.2.10_12 libXi-1.1.3,1 libXext-1.0.3,1 libX11-1.1.3_1,1 libXdmcp-1.0.2_1 libXau-1.0.3_2 libSM-1.0.3_1,1 libICE-1.0.4_1,1 xproto-7.0.10_1 pkg-config-0.23_1 perl-5.8.8_1 inputproto-1.4.2.1 kbproto-1.0.3 xextproto-7.0.2. Creating bzip'd tar ball in '/tmp/packages/All/workplace-1.0.a3_5,1.tbz' *** Error code 1 Stop in /a/ports/x11-fm/workplace. ================================================================ build of /usr/ports/x11-fm/workplace ended at Sat Sep 20 14:01:37 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Sep 20 14:04:14 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 79154106566B; Sat, 20 Sep 2008 14:04:14 +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 E927B8FC1B; Sat, 20 Sep 2008 14:04:13 +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 EFB6EFBEC27; Sat, 20 Sep 2008 17:04:12 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id DC7BE12E467B; Sat, 20 Sep 2008 17:04:12 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: x11-fonts/intlfonts X-QAT-Fail_Reason: install_error X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/intlfonts-1.2.1_2.log X-QAT-Build_Reason: QA Run Message-Id: <20080920140412.DC7BE12E467B@quark.ds9.tecnik93.com> Date: Sat, 20 Sep 2008 17:04:12 +0300 (EEST) Cc: Subject: x11-fonts/intlfonts - fails: 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: Sat, 20 Sep 2008 14:04:14 -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/intlfonts-1.2.1_2.log : building intlfonts-1.2.1_2 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/x11-fonts/intlfonts Makefile ident: $FreeBSD: ports/x11-fonts/intlfonts/Makefile,v 1.16 2008/08/20 06:40:43 linimon Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sat Sep 20 14:02:40 UTC 2008 ................................................... skipping xproto-7.0.10_1, already added pkg_add libfontenc-1.0.4.tbz skipping libfontenc-1.0.4, already added pkg_add p5-type1inst-0.6.1_5.tbz pkg_add kbproto-1.0.3.tbz skipping kbproto-1.0.3, already added pkg_add libXau-1.0.3_2.tbz skipping libXau-1.0.3_2, already added pkg_add libXdmcp-1.0.2_1.tbz skipping libXdmcp-1.0.2_1, already added pkg_add libX11-1.1.3_1,1.tbz skipping libX11-1.1.3_1,1, already added ===> Installing for intlfonts-1.2.1_2 ===> intlfonts-1.2.1_2 depends on executable: type1inst - found ===> intlfonts-1.2.1_2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found ===> Generating temporary packing list ===> Checking if x11-fonts/intlfonts already installed (cd /work/a/ports/x11-fonts/intlfonts/work/intlfonts-1.2.1; /bin/mkdir -p /usr/local/lib/X11/fonts/local; for dir in Asian Chinese Ethiopic European Japanese Misc Chinese.BIG European.BIG Japanese.BIG; do install -o root -g wheel -m 444 $dir/*.pcf.gz /usr/local/lib/X11/fonts/local ; done; /bin/mkdir -p /usr/local/lib/X11/fonts/Type1; install -o root -g wheel -m 444 Type1/*.* /usr/local/lib/X11/fonts/Type1 ; /bin/mkdir -p /usr/local/lib/X11/fonts/TrueType; install -o root -g wheel -m 444 TrueType/*.ttf /usr/local/lib/X11/fonts/TrueType ; ) /work/a/ports/x11-fonts/intlfonts/work/INSTALL: /usr/local/bin/xset: not found ********************************************************** You should restart X server or do 'xset fp rehash' command to enable this update. ********************************************************** ===> Registering installation for intlfonts-1.2.1_2 ================================================================ ======================================== ===> Building package for intlfonts-1.2.1_2 tar: share/doc/intlfonts-1.2.1/README: Cannot stat: No such file or directory tar: share/doc/intlfonts-1.2.1/Emacs.ap: Cannot stat: No such file or directory tar: share/doc/intlfonts-1.2.1/NEWS: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. pkg_create: make_dist: tar command failed with code 256 Creating package /tmp/packages/All/intlfonts-1.2.1_2.tbz Registering depends: p5-type1inst-0.6.1_5 mkfontdir-1.0.3_1 mkfontscale-1.0.3 freetype2-2.3.7 libfontenc-1.0.4 libX11-1.1.3_1,1 libXau-1.0.3_2 libXdmcp-1.0.2_1 xproto-7.0.10_1 pkg-config-0.23_1 perl-5.8.8_1 kbproto-1.0.3. Creating bzip'd tar ball in '/tmp/packages/All/intlfonts-1.2.1_2.tbz' *** Error code 1 Stop in /a/ports/x11-fonts/intlfonts. ================================================================ build of /usr/ports/x11-fonts/intlfonts ended at Sat Sep 20 14:04:11 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Sep 20 14:05:23 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 0F6FF1065685; Sat, 20 Sep 2008 14:05:23 +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 8008D8FC16; Sat, 20 Sep 2008 14:05:22 +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 30866FBEC45; Sat, 20 Sep 2008 17:05:19 +0300 (EEST) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 8238312E467B; Sat, 20 Sep 2008 17:05:19 +0300 (EEST) From: QAT@FreeBSD.org To: ports@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: x11-fonts/mozilla-fonts X-QAT-Fail_Reason: install_error X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/mozilla-fonts-1.0_4.log X-QAT-Build_Reason: QA Run Message-Id: <20080920140519.8238312E467B@quark.ds9.tecnik93.com> Date: Sat, 20 Sep 2008 17:05:19 +0300 (EEST) Cc: Subject: x11-fonts/mozilla-fonts - fails: 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: Sat, 20 Sep 2008 14:05:23 -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/mozilla-fonts-1.0_4.log : building mozilla-fonts-1.0_4 in directory /var/tinderbox/7-STABLE-FTP maintained by: ports@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/x11-fonts/mozilla-fonts Makefile ident: $FreeBSD: ports/x11-fonts/mozilla-fonts/Makefile,v 1.15 2008/03/10 20:00:40 gahr Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sat Sep 20 14:05:13 UTC 2008 ................................................... install -m 644 timesi6.pcf /usr/local/lib/X11/fonts/mozilla/timesi6.pcf install -m 644 timesi7.pcf /usr/local/lib/X11/fonts/mozilla/timesi7.pcf install -o root -g wheel -m 444 -m 644 fonts.alias /usr/local/lib/X11/fonts/mozilla/fonts.alias cd /usr/local/lib/X11/fonts/mozilla && mkfontdir mozilla-fonts is a complete set of the three kingpin typefaces in Httpland-- Times, Helvetica, and Courier-- each in two weights, two slants, and seven sizes (for a grand total of 84). The sizes range from 13- to 57-point (all @ 100dpi) and have been individually selected to match the font display behavior of MS-Windows Netscape as closely as possible. Right down to the glaring scale disparity between sizes 6 and 7. Once installed, you'll have to add /usr/X11R6/lib/X11/fonts/mozilla to your X font path by either: $ xset fp+ /usr/X11R6/lib/X11/fonts/mozilla $ xset fp rehash or by adding it to your X server configuration file (usually /etc/XF86Config) and restarting the X server. You'll also need to configure netscape to use them. See /usr/X11R6/share/doc/mozilla-fonts/README. WWW: http://fox.mit.edu/skunk/xwin/#mozilla_fonts ===> Registering installation for mozilla-fonts-1.0_4 ================================================================ ======================================== ===> Building package for mozilla-fonts-1.0_4 tar: share/doc/mozilla-fonts/README: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. pkg_create: make_dist: tar command failed with code 256 Creating package /tmp/packages/All/mozilla-fonts-1.0_4.tbz Registering depends:. Creating bzip'd tar ball in '/tmp/packages/All/mozilla-fonts-1.0_4.tbz' *** Error code 1 Stop in /a/ports/x11-fonts/mozilla-fonts. ================================================================ build of /usr/ports/x11-fonts/mozilla-fonts ended at Sat Sep 20 14:05:18 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt 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 Sep 20 16:20:28 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 9170F1065684 for ; Sat, 20 Sep 2008 16:20:28 +0000 (UTC) (envelope-from robillard.etienne@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.25]) by mx1.freebsd.org (Postfix) with ESMTP id 43DEB8FC15 for ; Sat, 20 Sep 2008 16:20:28 +0000 (UTC) (envelope-from robillard.etienne@gmail.com) Received: by qw-out-2122.google.com with SMTP id 9so90605qwb.7 for ; Sat, 20 Sep 2008 09:20:27 -0700 (PDT) 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:organization:x-mailer:mime-version:content-type :content-transfer-encoding; bh=cBgyP8Jx087hvRwdcz3bJi1AoJ1UyBFZgbVbJWmDya8=; b=g4CbEevtwNzvxbR3hCJrbaSw872abpMPpzznMVOgBj7homZxMv11iZXRy7HTS6GJt7 jY2FiYdxdrZdzz48W+eygvDOB3rTRr2vo4Dst5O8REhzfR8WP88g3sgT+6YLkqUn+K0X 60lvIynZTy1HszUVPzQbuXB4akAEbJdvfMczU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:organization:x-mailer:mime-version :content-type:content-transfer-encoding; b=Bp+1CYFQfvIcar8LmKQSyJcOa8VHyQ6pXQpAuwPFjFoppPjJKg5q6NsvaMQ8YBnPCX IzyBG/pjmqaLucsGTojQoWj48JDWFCGer2g9tysiOGPj4VAhw1RB+Fcior2RuK78HkPL eTuEblecjJBJX6rUTYZ2bHNfK+uUT2obgLn7Q= Received: by 10.214.26.11 with SMTP id 11mr1328108qaz.81.1221927627378; Sat, 20 Sep 2008 09:20:27 -0700 (PDT) Received: from fluke ( [70.82.244.236]) by mx.google.com with ESMTPS id 7sm2610632qwf.0.2008.09.20.09.20.25 (version=SSLv3 cipher=RC4-MD5); Sat, 20 Sep 2008 09:20:26 -0700 (PDT) Date: Sat, 20 Sep 2008 12:35:35 -0400 From: Etienne Robillard To: danny@ricin.com, kde-freebsd@kde.org, ports@freebsd.org Message-ID: <20080920123535.60317137@fluke> Organization: Green Tea Hackers Club X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.10; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Subject: [patch] devel/py-sip 4.7.7 and x11-toolkits/py-qt4-gui 4.4.3 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, 20 Sep 2008 16:20:28 -0000 Hi, I've made 2 patches which updates x11-toolkits/py-qt4-gui and devel/py-sip to 4.4.3 and 4.7.7 respectively: http://gthc.org/distfiles/py-sip.patch - Updates py-sip (in bsd.pyqt.mk) to 4.7.7 http://gthc.org/distfiles/py-qt4-gui.distinfo.patch - Updates the distinfo file in x11-toolkits/py-qt4-gui To apply, I recommend the following steps: 1. cd /usr/ports 2. patch -p0 < /path/to/py-sip.patch 3. cd x11-toolkits/py-qt4-gui 4. patch -p0 < /path/to/py-qt4-gui.distinfo.patch Comments are welcome! Cheers, -Etienne -- Etienne Robillard Software Developer, Green Tea Hackers Club Mobile phone number: 514-962-7703 Website: http://gthc.org/ Email: robillard.etienne (at) gmail.com From owner-freebsd-ports@FreeBSD.ORG Sat Sep 20 17:41: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 77C4810656C5 for ; Sat, 20 Sep 2008 17:41:18 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 559BD8FC23 for ; Sat, 20 Sep 2008 17:41:17 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: (qmail invoked by alias); 20 Sep 2008 17:41:15 -0000 Received: from port-92-192-53-212.dynamic.qsc.de (EHLO zock.localnet) [92.192.53.212] by mail.gmx.net (mp016) with SMTP; 20 Sep 2008 19:41:15 +0200 X-Authenticated: #1682771 X-Provags-ID: V01U2FsdGVkX1+H3Z8sFnmHdWkW4X0p/1CceaG3EfdrWOiQTsrvYa 2CmnDklEMBJnRt From: Dorian =?utf-8?q?B=C3=BCttner?= To: kde-freebsd@kde.org Date: Sat, 20 Sep 2008 17:41:13 +0000 User-Agent: KMail/1.10.1 (FreeBSD/7.1-PRERELEASE; KDE/4.1.1; amd64; ; ) References: <20080919084812.GC86244@bsdcrew.de> <48D3E3F3.4020301@gmx.de> <20080919194945.GF35488@bsdcrew.de> In-Reply-To: <20080919194945.GF35488@bsdcrew.de> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_6WT1IfXxTwAxPJY" Message-Id: <200809201741.14224.dorian.buettner@gmx.de> X-Y-GMX-Trusted: 0 X-FuHaFi: 0.57 Cc: freebsd-ports@freebsd.org, Martin Wilke Subject: Re: [kde-freebsd] CALL FOR TEST Qt 4.4.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: Sat, 20 Sep 2008 17:41:18 -0000 --Boundary-00=_6WT1IfXxTwAxPJY Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 19 September 2008 19:49:45 Martin Wilke wrote: > Yep we also documented that today, > > https://kf.athame.co.uk/access.php > > On Fri, Sep 19, 2008 at 07:40:03PM +0200, Dorian B=C3=BCttner wrote: > > Martin Wilke schrieb: > > > Note on area51: > > > You now need subversion to checkout area51, > > > > > > svn co https://kf.athame.co.uk/kde-freebsd/trunk/area51 > > > > Anything else remains the same? > > > > 3. Choose a partition for the area51 repository checkout. I personally > > > > > use /var, but you can use what you want. > > > > > > 4. If you use /var (or use your path here) then > > > > > > # cd /var > > > > > > 5. This creates a folder area51 into /var with checked out repository. > > > > > > # cvs -d:ext:anoncvs@orm.arved.priv.at:/home/kde-freebsd co area51 > > > > > > 6. If you use /var (or use your path here) then > > > > > > # mount -t unionfs /var/area51 /usr/ports > > > > > > You have now area51 repository on top of your existing ports tree. Use > > > your ports tree now as usual. > > > > > > 7. Install / update QT 4 first. > > > > > > 8. Install KDE 4 ports you want. You can start with > > > /usr/ports/x11/kdebase4 > > > > > > That is all. When you want to use your unmodified original ports tree > > > just > > > > > > # umount /usr/ports > > > > > > and everything is like before. Of course do not downgrade / uninstall > > > the new installed ports and run KDE 4 only with your test user accoun > > > > Thanks, > > Dorian Doing an update with 'portmaster -ad qt\*', I get the attached error in qt4- designer, it does, however, work, when I cd /usr/ports/devel/qt4-designer a= nd=20 do a make install clean from there. No idea, if this is a port or a portmaster related problem? --Boundary-00=_6WT1IfXxTwAxPJY Content-Type: text/plain; charset="utf-8"; name="qt4-designer.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="qt4-designer.txt" ===>>> Dependency check complete for devel/qt4-designer qt4-4.4.1_2 >> qt4-designer-4.4.1 ===> Installing for qt4-designer-4.4.2 /usr/bin/sed -i.bak -e 's|/usr/local/lib/qt4/pkgconfig|/usr/local/libdata/pkgconfig|g' /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/Makefile /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/uitools/Makefile /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/components/lib/Makefile ===> Generating temporary packing list ===> Checking if devel/qt4-designer already installed cd src/ && /usr/bin/make -f Makefile install cd uitools/ && /usr/bin/make -f Makefile install cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/uitools/quiloader.h /usr/local/include/qt4/QtUiTools/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtUiTools/QtUiTools /usr/local/include/qt4/QtUiTools/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtUiTools/QUiLoader /usr/local/include/qt4/QtUiTools/ cp -f "../../../../lib/libQtUiTools.a" "/usr/local/lib/qt4/libQtUiTools.a" cp -f "../../../../lib/libQtUiTools.prl" "/usr/local/lib/qt4/libQtUiTools.prl" cp -f "../../../../lib/pkgconfig/QtUiTools.pc" "/usr/local/libdata/pkgconfig/QtUiTools.pc" cd lib/ && /usr/bin/make -f Makefile install cp -f "../../../../lib/libQtDesigner.so.4.4.2" "/usr/local/lib/qt4/libQtDesigner.so.4.4.2" ln -sf "libQtDesigner.so.4.4.2" "/usr/local/lib/qt4/libQtDesigner.so" ln -sf "libQtDesigner.so.4.4.2" "/usr/local/lib/qt4/libQtDesigner.so.4" ln -sf "libQtDesigner.so.4.4.2" "/usr/local/lib/qt4/libQtDesigner.so.4.4" cp -f "../../../../lib/libQtDesigner.prl" "/usr/local/lib/qt4/libQtDesigner.prl" cp -f "../../../../lib/pkgconfig/QtDesigner.pc" "/usr/local/libdata/pkgconfig/QtDesigner.pc" cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/components/qdesigner_components.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/components/qdesigner_components_global.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/extension/default_extensionfactory.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/extension/extension.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/extension/extension_global.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/extension/qextensionmanager.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractactioneditor.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractbrushmanager.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractdnditem.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractformeditor.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractformeditorplugin.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractformwindow.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractformwindowcursor.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractformwindowmanager.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractformwindowtool.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstracticoncache.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractintegration.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractlanguage.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractmetadatabase.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractobjectinspector.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractpromotioninterface.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractpropertyeditor.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractresourcebrowser.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractwidgetbox.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractwidgetdatabase.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/abstractwidgetfactory.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/dynamicpropertysheet.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/extrainfo.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/layoutdecoration.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/membersheet.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/propertysheet.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/sdk_global.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/sdk/taskmenu.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/uilib/abstractformbuilder.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/uilib/container.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/uilib/customwidget.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/uilib/formbuilder.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/uilib/qdesignerexportwidget.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/lib/uilib/uilib_global.h /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QtDesigner /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerComponents /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QExtensionFactory /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QAbstractExtensionFactory /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QAbstractExtensionManager /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QExtensionManager /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerActionEditorInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerBrushManagerInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerDnDItemInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerFormEditorInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerFormEditorPluginInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerFormWindowInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerFormWindowCursorInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerFormWindowManagerInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerFormWindowToolInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerIconCacheInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerIntegrationInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerLanguageExtension /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerMetaDataBaseItemInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerMetaDataBaseInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerObjectInspectorInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerPromotionInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerPropertyEditorInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerResourceBrowserInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerWidgetBoxInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerWidgetDataBaseItemInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerWidgetDataBaseInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerWidgetFactoryInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerDynamicPropertySheetExtension /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerExtraInfoExtension /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerLayoutDecorationExtension /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerMemberSheetExtension /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerPropertySheetExtension /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerTaskMenuExtension /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QAbstractFormBuilder /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerContainerExtension /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerCustomWidgetInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerCustomWidgetCollectionInterface /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QFormBuilder /usr/local/include/qt4/QtDesigner/ cp -f /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/include/QtDesigner/QDesignerExportWidget /usr/local/include/qt4/QtDesigner/ cd components/ && /usr/bin/make -f Makefile install cd lib/ && /usr/bin/make -f Makefile install /usr/local/bin/qmake-qt4 -spec /usr/local/share/qt4/mkspecs/freebsd-g++ -unix -o Makefile lib.pro Creating '/usr/local/lib/qt4/libQtDesigner.so.4.4.1' (cd /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.1/tools/designer/src/lib;/usr/bin/make) cd: can't cd to /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.1/tools/designer/src/lib *** Error code 2 Stop in /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/components/lib. *** Error code 1 Stop in /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src/components. *** Error code 1 Stop in /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer/src. *** Error code 1 Stop in /usr/ports/devel/qt4-designer/work/qt-x11-opensource-src-4.4.2/tools/designer. *** Error code 1 Stop in /usr/ports/devel/qt4-designer. ===>>> A backup package for qt4-designer-4.4.1 should be located in /usr/ports/packages/portmaster-backup ===>>> Installation of qt4-designer-4.4.2 (devel/qt4-designer) failed ===>>> Aborting update ===>>> Update for qt4-designer-4.4.1 failed ===>>> Aborting update ===>>> Update for qt4-4.4.1_2 failed ===>>> Aborting update --Boundary-00=_6WT1IfXxTwAxPJY-- From owner-freebsd-ports@FreeBSD.ORG Sat Sep 20 18:09: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 5397A1065677 for ; Sat, 20 Sep 2008 18:09:52 +0000 (UTC) (envelope-from unxfbsdi@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.30]) by mx1.freebsd.org (Postfix) with ESMTP id 0B3248FC18 for ; Sat, 20 Sep 2008 18:09:51 +0000 (UTC) (envelope-from unxfbsdi@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so150978yxb.13 for ; Sat, 20 Sep 2008 11:09:51 -0700 (PDT) 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:mime-version:content-type; bh=VMpZGX2DsYBovErnFdKOyZ8pmrALAnOjDQ+Rd6tEcEw=; b=I94HS3iAQdBFr3d8JkS8+JiZ6H3RNnkeldK470fpfZGHByepmQ9cp7Z6Co4WN/zHkl ZMWO8+QDwn47qOs66ink+4yHgz7B1iWTVHvC4aLMzqrKyOzsxMn0fg0qji841BEki3K0 ZygTKZJhocGgWCHpDCuhu36F282YBsdvG7zyE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:mime-version:content-type; b=GkKWpYZhAunRMKuBEbDgnJUIKZ0mgRxuLz4YRm0dXA84kMyRFWFjUVjj8OJ1f/e2Y3 SB26DzCgP9LH1N77iB0IVQg3rYsYAhun2iv6PSGIULyOycCySB5gTKRewQAyMSxMziiv 77/cCDJ5ugAgBz6jKQpw6x/W/hofLLd0qj1NY= Received: by 10.100.166.10 with SMTP id o10mr1478412ane.0.1221932924071; Sat, 20 Sep 2008 10:48:44 -0700 (PDT) Received: by 10.101.71.10 with HTTP; Sat, 20 Sep 2008 10:48:34 -0700 (PDT) Message-ID: <71a1c60e0809201048s168fe713j3ec661eeb93f4492@mail.gmail.com> Date: Sat, 20 Sep 2008 23:18:34 +0530 From: "manish jain" To: questions@freebsd.org MIME-Version: 1.0 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: ports@freebsd.org Subject: Incorrect commandline history with bash 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, 20 Sep 2008 18:09:52 -0000 Hi, I just migrated from Linux and I am now using FreeBSD 6.3. My keyboard layout is US-ISO and my TERM is con25. I am using bash#3 as my login shell. (I installed the bash package from the distribution media, not from /usr/ports). The problem is that bash does not remember my commands correctly. Almost all commands I enter in a login session are forgotten in the next session. Using the Up and Down arrow keys navigates a mangled and incomlete command history. Even using Ctrl-r for a reverse find almost never fetches a command I had actually typed in previously. The following are the contents of my .bash_profile and .bashrc: #.bash_profile : [ -f ~/.bashrc ] && source ~/.bashrc #end-of-file #.bashrc : export HISTFILESIZE=200 shopt -s cmdhist shopt -s histappend #end-of-file If anyone can help me to get bash remembering my command history correctly, I will be grateful. Thanks unxfbsdi@gmail.com From owner-freebsd-ports@FreeBSD.ORG Sat Sep 20 19:19: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 76B861065675 for ; Sat, 20 Sep 2008 19:19:22 +0000 (UTC) (envelope-from trebestie@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.172]) by mx1.freebsd.org (Postfix) with ESMTP id 4873C8FC19 for ; Sat, 20 Sep 2008 19:19:22 +0000 (UTC) (envelope-from trebestie@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so973197wfg.7 for ; Sat, 20 Sep 2008 12:19:21 -0700 (PDT) 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 :content-transfer-encoding:content-disposition:references; bh=n+ju8g2vI3jBxyQ/AkRkL/1gMeoIjTWcPtgEDTia6jc=; b=n4VeQqN53Ay4xo0KUXTs3d1w7i/i48t05RQ1VZ6Dmlzaga/zYEUr9398ywDnEiwWNq eWvlAf+Hf3YiJOdQjs81HW1olQQUAuz3QiJImKXsLe13goagKX3Nz1efiTYNXPDnrgjU 8Mr3zBTytMcVOowsoVUvJWJ6xyV4jGzemn5lU= 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:content-transfer-encoding:content-disposition :references; b=s1dSL/iVBKlFkxjnETXo+sUGOPyab6cGx9pUNJgxtQlSxCDTGCMq0PR1XECPRSGF+A ursKsvDx+ChN5CHG/zAjYQok4tJI94xZvoomAUgDFmnpsLEFEtmcXlLQ6OQ31nrPOMJx ldHjH0z4OoUOrV2XWNb999JlRIiIxNJ+FtHXY= Received: by 10.142.147.15 with SMTP id u15mr623793wfd.181.1221938361807; Sat, 20 Sep 2008 12:19:21 -0700 (PDT) Received: by 10.142.141.16 with HTTP; Sat, 20 Sep 2008 12:19:21 -0700 (PDT) Message-ID: <83e5fb980809201219h2693704dx4ed34d7d18066610@mail.gmail.com> Date: Sat, 20 Sep 2008 21:19:21 +0200 From: "Diego Depaoli" To: kde-freebsd@kde.org, freebsd-ports@freebsd.org In-Reply-To: <200809201741.14224.dorian.buettner@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20080919084812.GC86244@bsdcrew.de> <48D3E3F3.4020301@gmx.de> <20080919194945.GF35488@bsdcrew.de> <200809201741.14224.dorian.buettner@gmx.de> Cc: Subject: Re: [kde-freebsd] CALL FOR TEST Qt 4.4.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: Sat, 20 Sep 2008 19:19:22 -0000 2008/9/20 Dorian B=FCttner : > > Doing an update with 'portmaster -ad qt\*', I get the attached error in q= t4- > designer, it does, however, work, when I cd /usr/ports/devel/qt4-designer= and > do a make install clean from there. > No idea, if this is a port or a portmaster related problem? Just a 'me too'. Same error with portmaster, all well with 'old-style' make. Regards --=20 Diego Depaoli From owner-freebsd-ports@FreeBSD.ORG Sat Sep 20 18:28:16 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 75B0E1065675 for ; Sat, 20 Sep 2008 18:28:16 +0000 (UTC) (envelope-from xaenn@yahoo.com) Received: from web50101.mail.re2.yahoo.com (web50101.mail.re2.yahoo.com [206.190.38.29]) by mx1.freebsd.org (Postfix) with SMTP id 1E9868FC0C for ; Sat, 20 Sep 2008 18:28:15 +0000 (UTC) (envelope-from xaenn@yahoo.com) Received: (qmail 33276 invoked by uid 60001); 20 Sep 2008 18:28:15 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=eKl0F6zpidhflIt4Bmvb0xz6rEw2PaBRIEsv/YDprh55SW0+tW/DUFlJczi/fhUBztn5Vkofr6xJOrSXpr4NNKxK6Eh3Lq9J9ms96U5RvXc1DtqU6PZ5xJhi638MbarbTnJ84wpCBhPO/RnI0RbtUjF8cwg9y5RI35apPHgRUfc=; X-YMail-OSG: PCxunzAVM1mRKAWxt6Dfgpca0lOcU.EGJfupBvTXAZH4h42aLDrvF5VQ9wEV0_O8tMB_F6vb_SlsqNz.WEycDgZdlvE7lE6lhLMqIrWuo24v_kl10IXRtr1IC1uSbslcd2DZ5G6B5IrVSHDVa0AlGLh1FgoDZP.Km1JvEt9sGxUbqbY- Received: from [129.82.120.222] by web50101.mail.re2.yahoo.com via HTTP; Sat, 20 Sep 2008 11:28:15 PDT Date: Sat, 20 Sep 2008 11:28:15 -0700 (PDT) From: Dan Reinholz To: Jeremy Messenger , Mark Evenson In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <511145.32079.qm@web50101.mail.re2.yahoo.com> X-Mailman-Approved-At: Sat, 20 Sep 2008 21:28:10 +0000 Cc: Dan Reinholz , freebsd-ports@freebsd.org Subject: =?iso-8859-1?q?Re=3A_Evince_2=2E22=2E2=5F3=3A_=22Unhandled_MIME_?= =?iso-8859-1?q?type=3A_=E2=80=9Capplication/pdf=E2=80=9D=22=22?= 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, 20 Sep 2008 18:28:16 -0000 I've looked through /usr/ports/UPDATING but can't find an entry that is relevant to the situation (the closest thing was updating the mime-database). First things first I did a portupgrade -f shared-mime-info Then I ran update-mime-database ~/.local/share/mime/ as well as update-mime-database /usr/local/share/mime but I still have the same error. --- Jeremy Messenger wrote: > On Wed, 17 Sep 2008 07:56:55 -0500, Mark Evenson > > wrote: > > > Jeremy Messenger wrote: > >> On Tue, 16 Sep 2008 09:57:03 -0500, Mark Evenson > > >> wrote: > >> > >>> Dan Reinholz wrote: > >>>> Since updating to the latest revision of Evince > (to > >>>> 2.22.2_3 from 2.22.2_2) I am no longer able to > open > >>>> .pdf files. Anytime I try to do so I now get > the > >>>> error: > > > > [...] > > > >> Have you guys follow in /usr/ports/UPDATING? > > > > Which entry? Grep'ing for 'evince' doesn't show > anything. > > Grep for 'mime'. You shouldn't be use grep, which > you should be use your > own eyes. > > > On additional nosing around, it seems that GNOME > (at least Nautilus) has > > lost the notion of MIME types altogether. > > > > Is there a command-line equivalent to magic(1) for > GNOME to show what > > GNOME thinks the underlying MIME type consists of? > > > -- > mezz7@cox.net - mezz@FreeBSD.org > FreeBSD GNOME Team > http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org > From owner-freebsd-ports@FreeBSD.ORG Sat Sep 20 21:42:15 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 01DED1065670 for ; Sat, 20 Sep 2008 21:42:15 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from QMTA04.emeryville.ca.mail.comcast.net (qmta04.emeryville.ca.mail.comcast.net [76.96.30.40]) by mx1.freebsd.org (Postfix) with ESMTP id DAC7B8FC1A for ; Sat, 20 Sep 2008 21:42:13 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from OMTA12.emeryville.ca.mail.comcast.net ([76.96.30.44]) by QMTA04.emeryville.ca.mail.comcast.net with comcast id H8Zq1a0070x6nqcA49iDiK; Sat, 20 Sep 2008 21:42:13 +0000 Received: from koitsu.dyndns.org ([67.180.253.227]) by OMTA12.emeryville.ca.mail.comcast.net with comcast id H9iC1a0034v8bD78Y9iDDj; Sat, 20 Sep 2008 21:42:13 +0000 X-Authority-Analysis: v=1.0 c=1 a=JdViZEfnDJgA:10 a=2X2Dv3S5izkA:10 a=QycZ5dHgAAAA:8 a=m02veY6Q04nGri__SqwA:9 a=03B6K3lWbEtt6qluzEEA:7 a=kheiMneUdz42xFvmghrJWK8257kA:4 a=EoioJ0NPDVgA:10 a=SV7veod9ZcQA:10 a=LY0hPdMaydYA:10 Received: by icarus.home.lan (Postfix, from userid 1000) id 6A8D217B81A; Sat, 20 Sep 2008 14:42:12 -0700 (PDT) Date: Sat, 20 Sep 2008 14:42:12 -0700 From: Jeremy Chadwick To: manish jain Message-ID: <20080920214212.GA82955@icarus.home.lan> References: <71a1c60e0809201048s168fe713j3ec661eeb93f4492@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <71a1c60e0809201048s168fe713j3ec661eeb93f4492@mail.gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: Re: Incorrect commandline history with bash 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, 20 Sep 2008 21:42:15 -0000 On Sat, Sep 20, 2008 at 11:18:34PM +0530, manish jain wrote: > I just migrated from Linux and I am now using FreeBSD 6.3. My keyboard > layout is US-ISO and my TERM is con25. I am using bash#3 as my login shell. > (I installed the bash package from the distribution media, not from > /usr/ports). > > The problem is that bash does not remember my commands correctly. Almost all > commands I enter in a login session are forgotten in the next session. Using > the Up and Down arrow keys navigates a mangled and incomlete command > history. Even using Ctrl-r for a reverse find almost never fetches a command > I had actually typed in previously. > > The following are the contents of my .bash_profile and .bashrc: > > #.bash_profile : > [ -f ~/.bashrc ] && source ~/.bashrc > #end-of-file You have this backwards. ~/.bashrc should contain something like this: if [ -f "${HOME}/.bash_profile" ] then source "${HOME}/.bash_profile" fi And all of your applicable environment settings should go in .bash_profile. This probably won't solve your problem, but I thought I'd point it out. > #.bashrc : > export HISTFILESIZE=200 > shopt -s cmdhist > shopt -s histappend > #end-of-file I set none of these things (though I do use export HISTTIMEFORMAT="%T " but that should not affect your problem) and my .bash_history always contains commands from past sessions, including timestamps too. My options are defaults: $ shopt | egrep 'cmdhist|histappend' cmdhist on histappend off Can you please try pkg_delete'ing the bash you installed from the installation media, and instead update your ports tree via csup (not cvsup) and then build/install bash from /usr/ports/shells/bash? Finally, please do not cross-post to multiple lists. It's shunned upon, and generally pointless as not everyone is subscribed to both lists. I've removed freebsd-questions@freebsd.org, as this could be a ports issue rather than a generic question. -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB |