From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 05:28:02 2007 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 17F0616A419 for ; Sun, 12 Aug 2007 05:28:02 +0000 (UTC) (envelope-from rakheshster@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.191]) by mx1.freebsd.org (Postfix) with ESMTP id 9219213C458 for ; Sun, 12 Aug 2007 05:28:01 +0000 (UTC) (envelope-from rakheshster@gmail.com) Received: by mu-out-0910.google.com with SMTP id w9so1287828mue for ; Sat, 11 Aug 2007 22:28:00 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:received:date:x-x-sender:to:cc:subject:in-reply-to:message-id:references:mime-version:content-type:from:sender; b=spDC7fcey9WCP7/6QG310K47mnr3mIcmTQhc8IYDVDdt5HJ2UzeZ/7EdzZMYthT8jxsx+ILlgTmDUIpsTdD2lD7JB+9FxQIuAZ+UBhYdW4ukVjoZI8uUj+ypBEnP3rysSPDdsk0aFUOD7KY0Md/5D1R6XLuYuwosF9KUVBfrz6o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:x-x-sender:to:cc:subject:in-reply-to:message-id:references:mime-version:content-type:from:sender; b=mEYW1g3SQDdkdjPTfuBzKhP2TKm99MWN+QYk7khXVVE07CRRq5VwSd7BkU/gHIM29mzp+sHvCx47GgbJiXtkqntvWUjr0dVg39PgdOkCFWBwO9ig289oca6y188uVcscjwcWBDJWFKS6t9MSIMRryOXOzb6OLS7LjZT6ABU0fpg= Received: by 10.78.165.16 with SMTP id n16mr1783723hue.1186896479503; Sat, 11 Aug 2007 22:27:59 -0700 (PDT) Received: from smtp.home.rakhesh.com ( [82.178.137.21]) by mx.google.com with ESMTPS id p27sm1461829hub.2007.08.11.22.27.56 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 11 Aug 2007 22:27:58 -0700 (PDT) Received: from obelix.home.rakhesh.com (obelix.home.rakhesh.com [192.168.17.13]) by smtp.home.rakhesh.com (Postfix) with ESMTP id 2BAFE5080A; Sun, 12 Aug 2007 09:27:26 +0400 (GST) Date: Sun, 12 Aug 2007 09:27:26 +0400 (GST) X-X-Sender: rakhesh@obelix.home.rakhesh.com To: Jeremy Chadwick In-Reply-To: <20070811203322.GA78245@eos.sc1.parodius.com> Message-ID: <20070812091319.I34444@obelix.home.rakhesh.com> References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811145314.A47727@obelix.home.rakhesh.com> <20070811203322.GA78245@eos.sc1.parodius.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed From: Rakhesh Sasidharan Sender: Rakhesh Sasidharan Cc: freebsd-ports@freebsd.org Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 12 Aug 2007 05:28:02 -0000 Jeremy Chadwick wrote: > On Sat, Aug 11, 2007 at 03:02:53PM +0400, Rakhesh Sasidharan wrote: >>> 5. pkg_delete port >> >> I see. In step 5, "pkg_delete port" wont work if port is required by others >> right? So you delete those apps too? Could be a lot of stuff to uninstall, >> right? > > Absolutely correct. That might seem like a nightmare to most people, > but to me it's not. I suppose this is also why I avoid ports that have > too many dependencies (mail/p5-Mail-SpamAssassin, for example, is > starting to make me consider using dspam instead). It did to me. But yeah, if you limit yourself to ports without too many dependencies, then its fine. And also, if you are doing this only once in a while, it limits downtime too. Makes sense. >>> Note that we keep all of our configuration files in a directory called >>> /conf/ME and in /usr/local simply use symlinks. (Matt Dillon might be >>> grinning over /conf/ME, since it's a Best Internet-ism :) ). I don't >>> trust that all ports will "play nice" with existing configuration files >>> in /usr/local, and I have seen much evidence of this in the past (nuking >>> files without your knowledge, mainly. "Oh crap! It nuked our entire >>> configuration for the apache/mail/whatever server!!!"). >> >> That's a smashing idea! Thanks for mentioning that here. :-) >> >> What does the "ME" stand for in /conf/ME btw? > > "ME" stands for me, e.g. "myself". I guess it'd help if I explained how > it worked: > > The /conf directory on all machines contained the configuration files > for itself as well as every other machine on the network. So for > shell01.whatever.com you'd find this in /conf: > > /conf/ME --> /conf/shell01.whatever.com > /conf/mail01.whatever.com/ > /conf/shell01.whatever.com/ > /conf/shell02.whatever.com/ > /conf/sql01.whatever.com/ > /conf/test.whatever.com/ > > Each directory contained configuration files specific to that system. Wicked! I just take backups of the /etc and /usr/local/etc of each machine onto every other machine but the method above is even better. Esp in light of what you mention later on ... > During system install, either done automatically or manually (I forget), > the /conf directory on a machine is populated, and the ME symlink is > made. Then the script would populate /usr/local with symlinks, and I > believe also did a mkdir -p on directories. For example, if /conf/ME > contained: > > etc/Muttrc > etc/apache22/httpd.conf > etc/mail/spamassassin/local.cf > etc/pine.conf > etc/sudoers > > You'd find this in /usr/local: > > etc/Muttrc --> /conf/ME/etc/Muttrc > etc/apache22/httpd.conf --> /conf/ME/etc/apache22/httpd.conf > etc/mail/spamassassin/local.cf --> /conf/ME/etc/mail/spamassassin/local.cf > etc/pine.conf --> /conf/ME/etc/pine.conf > etc/sudoers --> /conf/ME/etc/sudoers Dodo question maybe: but instead of symlinking specific files, why not just symlink /usr/local/etc to something like /conf/ME/etc? The way you described it, would you also have to keep track of new config files, move them over to /conf/ME/etc, and then symlink from /usr/local/etc? If you symlink the whole directory, you save that hassle right? Plus, later on, when you want the machine to switch roles, its just a matter of changing the directory symlink rather than of each file ... > I believe the reason each machine had a copy of all the other machines' > configs was in case one got munged on the repository server (or if you > needed to "roll back" and didn't make a backup of your changes, oops), > and/or if you wanted to change the "role" of a machine on the fly. > > All of the packages/ports installed on all the machines were 100% > identical; that is, every machine, regardless of role, had the same > packages/ports installed. A very interesting tip btw. So you essentially have all the machines ready to switch roles at the change of a symlink. Neat! This idea was by Matt Dillon eh? :-) You have any scripts etc to keep this running? Would be nice if you could drop a copy so I can poke around ... Thanks, Rakhesh From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 05:50:22 2007 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 8147616A4D5 for ; Sun, 12 Aug 2007 05:50:22 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with SMTP id 1F57D13C483 for ; Sun, 12 Aug 2007 05:50:21 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 21251 invoked by uid 399); 12 Aug 2007 05:50:21 -0000 Received: from localhost (HELO slave.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 12 Aug 2007 05:50:21 -0000 X-Originating-IP: 127.0.0.1 Date: Sat, 11 Aug 2007 22:50:19 -0700 (PDT) From: Doug Barton To: Rakhesh Sasidharan In-Reply-To: <20070811145314.A47727@obelix.home.rakhesh.com> Message-ID: References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811145314.A47727@obelix.home.rakhesh.com> X-message-flag: Outlook -- Not just for spreading viruses anymore! X-OpenPGP-Key-ID: 0xD5B2F0FB Organization: http://www.FreeBSD.org/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=us-ascii Cc: Jeremy Chadwick , freebsd-ports@freebsd.org Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 12 Aug 2007 05:50:22 -0000 On Sat, 11 Aug 2007, Rakhesh Sasidharan wrote: > Afaik portmaster's beauty is that it doesn't have any dependencies like > portuprade does. Doesn't require ruby etc, so upgrades to them don't cause > problems like they could with portupgrade. (Again, haven't used portmaster, > so I don't know; this is my understanding). Yes, that's correct. It's written in /bin/sh, and the script is actually in the files directory of the port. That's about as non-depedent as you can get. :) Seriously though, I think it's worth mentioning again that portmaster is not in "competition" with portupgrade. The goals that they are designed for have a lot of overlap, but there are things that you can do with portupgrade that you can't do with portmaster (especially managing upgrades using packages). That said, if you're upgrading or installing ports, I think portmaster does a pretty good job, and it handles the exact scenario that started this thread, "How do I update a port (or ports) from the middle of a dependency chain without breaking stuff?" For anyone interested, you can install the port and read the man page without changing or committing to anything, FYI. hope this helps, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 08:35:17 2007 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 1459F16A419 for ; Sun, 12 Aug 2007 08:35:17 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from optimus.centralmiss.com (ns.centralmiss.com [206.156.254.79]) by mx1.freebsd.org (Postfix) with ESMTP id C57F313C461 for ; Sun, 12 Aug 2007 08:35:16 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from draco.over-yonder.net (adsl-072-148-013-213.sip.jan.bellsouth.net [72.148.13.213]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by optimus.centralmiss.com (Postfix) with ESMTP id E21F128B3D for ; Sun, 12 Aug 2007 03:35:15 -0500 (CDT) Received: by draco.over-yonder.net (Postfix, from userid 100) id 78FD261C42; Sun, 12 Aug 2007 03:35:15 -0500 (CDT) Date: Sun, 12 Aug 2007 03:35:15 -0500 From: "Matthew D. Fuller" To: freebsd-ports@freebsd.org Message-ID: <20070812083515.GE94464@over-yonder.net> References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811104229.GD94464@over-yonder.net> <20070811210716.GB78245@eos.sc1.parodius.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070811210716.GB78245@eos.sc1.parodius.com> X-Editor: vi X-OS: FreeBSD User-Agent: Mutt/1.5.16-fullermd.4 (2007-06-09) Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 12 Aug 2007 08:35:17 -0000 On Sat, Aug 11, 2007 at 02:07:17PM -0700 I heard the voice of Jeremy Chadwick, and lo! it spake thus: > > I'm aware it manages all of the "regular" /var/db/pkg files just > like the pkg_* tools do. It has to for it to play nice. But it > also maintains a separate database for (I think) versioning and > dependency matching. I've been told the reason it does this is "due > to shortcomings in /var/db/pkg or the pkg_* tools". As far as I can tell, there's nothing in the DB files that isn't in the /var/db/pkg files (or at least derivable from them), as I've never seen anything unusual happen when I blow away the .db files. About the only times I've ever seen them go wonky is around a bdb/ruby/portupgrade upgrade. Sure, it'd be nice if that didn't happen, but if that's the biggest flaw I have to contend with, I'm buying a lottery ticket in the morning. > Also, if you use portupgrade, you pretty much HAVE to use it > exclusively for everything, e.g. you can't go mix-and-matching use > of portupgrade and the base pkg_* tools without there being some > inconsistency induced and thus "breaking" portupgrade. Am I > correct? I sure hope not, or all these years of installing ports manually is has been biting me without me knowing it. I almost never use portinstall (xref "slow"). I use pkg_delete to remove stuff. And I upgrade stuff manually with some regularity (like portupgrade, just for my own sanity, and ruby upgrade usually involve me doing a mass pkg_delete and reinstall. AFAIK, those would work just fine with portupgrade, but I like the net). All that happens is that portupgrade notices its db is out of date, and updates it. > Where the only solution is to rm the pkgdb.db file and then run > pkgdb -u, correct? That class of things, yes. It's happened to me in ways I couldn't attribute to upgrades, but I could count the number of times on one hand and have fingers left over. > But if someone asks me "Why don't you use portupgrade" I'm going to > tell them why. Well, that's why I asked 8-} I don't develop portupgrade, and I don't get paid for people using it (I do accept certified checks, however), and I certainly wish that many of its long-time shortcomings would get cleaned up. But this thing you hold up as constant dealbreakers, my experience slots as minor, trivially deal-with-able, and extremely rare hiccups. > I see claims like the above ("you just nuke the db and move on. > What's the problem?") and I think "What the f***?". Removing a file > and ignoring the problem because the problem then goes away (until > the next time it happens...) makes me think of a Windows-like > solution. I can run a 10 line shell script and lock a filesystem up so it's dirty and can't be unmounted. I can upgrade a system and make it lose the ability to see its hard drives. I think "What the f***?". Who would use this FreeBSD crap? That sort of thing makes me think of Windows. "Don't upgrade your system, and treat your filesystems with kid gloves, and the problem goes away". Both of these have been reported, multiple times over time, and they're still there. In fact, neither of them has that I recall even elicited a single response from anybody. *THAT* sure as hell makes me uncomfortable. I managed systems manually for years before portupgrade came along (and for that matter, for years after, because I don't like changing methods that works, however badly). It was miserable, and everything was always out of date. Portupgrade turned that into very minor effort to keep everything always up to date (or firmly out of date, if that's my intention for something). A peripheral and totally optional tool that very occasionally ends up with a broken cache that takes a minute to rebuild, and otherwise turns that part of my admin life from a living hell to a blissful joy, is a looooong way down my list of things to worry about. -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Systems/Network Administrator | http://www.over-yonder.net/~fullermd/ On the Internet, nobody can hear you scream. From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 10:22:49 2007 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 A7D1416A419 for ; Sun, 12 Aug 2007 10:22:49 +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 69ADA13C4CC for ; Sun, 12 Aug 2007 10:22:49 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id A69931CC38; Sun, 12 Aug 2007 03:38:04 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Sun, 12 Aug 2007 03:38:04 -0700 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: <200708120338.04409.david@vizion2000.net> Subject: Failure Upgrading 'ruby18-bdb-0.6.0' to 'ruby18-bdb-0.6.1 on amd 64 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, 12 Aug 2007 10:22:49 -0000 Hi # uname -a 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7 04:15:57 UTC 2006 root@bloom.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP amd64 ----------------- I have just posted a PR for this upgrade failure and will post the PR number here as soon as I receive it. ---> Upgrading 'ruby18-bdb-0.6.0' to 'ruby18-bdb-0.6.1' (databases/ruby-bdb) ---> Building '/usr/ports/databases/ruby-bdb' ===> Cleaning for ruby18-bdb-0.6.1 ===> Extracting for ruby18-bdb-0.6.1 => MD5 Checksum OK for ruby/bdb-0.6.1.tar.gz. => SHA256 Checksum OK for ruby/bdb-0.6.1.tar.gz. ===> ruby18-bdb-0.6.1 depends on file: /usr/local/bin/ruby18 - found ===> Patching for ruby18-bdb-0.6.1 ===> ruby18-bdb-0.6.1 depends on file: /usr/local/bin/ruby18 - found ===> ruby18-bdb-0.6.1 depends on file: /usr/local/bin/ruby18 - found ===> ruby18-bdb-0.6.1 depends on shared library: db-4.2.2 - found ===> Configuring for ruby18-bdb-0.6.1 ===> Running extconf.rb to configure extconf.rb: Entering directory `src' checking for db_version() in -ldb-4.2... no checking for db_version_4002() in -ldb-4.2... yes checking for rb_frame_this_func()... no checking for rb_block_proc()... yes checking for rb_io_stdio_file()... no checking for rb_block_call()... no checking for Array#insert... yes checking for Array#values_at... yes creating Makefile extconf.rb: Leaving directory `src' ===> Building for ruby18-bdb-0.6.1 cc -I. -I. -I/usr/local/lib/ruby/1.8/amd64-freebsd6 -I. -DHAVE_RB_BLOCK_PROC -I/usr/local/include/db42 -I/usr/local/include -fPIC -O2 -fno-strict-aliasing -pipe -fPIC -DHAVE_RB_ARY_INSERT -DHAVE_RB_ARY_VALUES_AT -c bdb.c bdb.c: In function `Init_bdb': bdb.c:515: error: `DB_REP_IGNORE' undeclared (first use in this function) bdb.c:515: error: (Each undeclared identifier is reported only once bdb.c:515: error: for each function it appears in.) bdb.c:516: error: `DB_REP_JOIN_FAILURE' undeclared (first use in this function) *** Error code 1 Stop in /usr/ports/databases/ruby-bdb/work/bdb-0.6.1/src. *** Error code 1 Stop in /usr/ports/databases/ruby-bdb/work/bdb-0.6.1. *** Error code 1 Stop in /usr/ports/databases/ruby-bdb. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.61249.45 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=ruby18-bdb-0.6.0 UPGRADE_PORT_VER=0.6.0 make ** Fix the problem and try again. david Southwell From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 10:28:17 2007 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 6884416A419 for ; Sun, 12 Aug 2007 10:28:17 +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 2820913C469 for ; Sun, 12 Aug 2007 10:28:17 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id 4D5F11CC38; Sun, 12 Aug 2007 03:43:33 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Sun, 12 Aug 2007 03:43:32 -0700 User-Agent: KMail/1.9.7 References: <200708120338.04409.david@vizion2000.net> In-Reply-To: <200708120338.04409.david@vizion2000.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200708120343.33051.david@vizion2000.net> Subject: Re: Failure Upgrading 'ruby18-bdb-0.6.0' to 'ruby18-bdb-0.6.1 on amd 64 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, 12 Aug 2007 10:28:17 -0000 On Sunday 12 August 2007 03:38:04 David Southwell wrote: > Hi > # uname -a > 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7 04:15:57 UTC 2006 > root@bloom.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP amd64 > ----------------- > I have just posted a PR for this upgrade failure and will post the PR > number here as soon as I receive it. > > ---> Upgrading 'ruby18-bdb-0.6.0' to 'ruby18-bdb-0.6.1' > (databases/ruby-bdb) ---> Building '/usr/ports/databases/ruby-bdb' > ===> Cleaning for ruby18-bdb-0.6.1 > ===> Extracting for ruby18-bdb-0.6.1 > => MD5 Checksum OK for ruby/bdb-0.6.1.tar.gz. > => SHA256 Checksum OK for ruby/bdb-0.6.1.tar.gz. > ===> ruby18-bdb-0.6.1 depends on file: /usr/local/bin/ruby18 - found > ===> Patching for ruby18-bdb-0.6.1 > ===> ruby18-bdb-0.6.1 depends on file: /usr/local/bin/ruby18 - found > ===> ruby18-bdb-0.6.1 depends on file: /usr/local/bin/ruby18 - found > ===> ruby18-bdb-0.6.1 depends on shared library: db-4.2.2 - found > ===> Configuring for ruby18-bdb-0.6.1 > ===> Running extconf.rb to configure > extconf.rb: Entering directory `src' > checking for db_version() in -ldb-4.2... no > checking for db_version_4002() in -ldb-4.2... yes > checking for rb_frame_this_func()... no > checking for rb_block_proc()... yes > checking for rb_io_stdio_file()... no > checking for rb_block_call()... no > checking for Array#insert... yes > checking for Array#values_at... yes > creating Makefile > extconf.rb: Leaving directory `src' > ===> Building for ruby18-bdb-0.6.1 > cc -I. -I. -I/usr/local/lib/ruby/1.8/amd64-freebsd6 -I. > -DHAVE_RB_BLOCK_PROC -I/usr/local/include/db42 -I/usr/local/include -fPIC > -O2 -fno-strict-aliasing -pipe -fPIC -DHAVE_RB_ARY_INSERT > -DHAVE_RB_ARY_VALUES_AT -c bdb.c > bdb.c: In function `Init_bdb': > bdb.c:515: error: `DB_REP_IGNORE' undeclared (first use in this function) > bdb.c:515: error: (Each undeclared identifier is reported only once > bdb.c:515: error: for each function it appears in.) > bdb.c:516: error: `DB_REP_JOIN_FAILURE' undeclared (first use in this > function) > *** Error code 1 > > Stop in /usr/ports/databases/ruby-bdb/work/bdb-0.6.1/src. > *** Error code 1 > > Stop in /usr/ports/databases/ruby-bdb/work/bdb-0.6.1. > *** Error code 1 > > Stop in /usr/ports/databases/ruby-bdb. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade.61249.45 env UPGRADE_TOOL=portupgrade > UPGRADE_PORT=ruby18-bdb-0.6.0 > UPGRADE_PORT_VER=0.6.0 make > ** Fix the problem and try again. > > > david Southwell PR is 115436 I omiited to place it in the category Ports when reporting..ATM is is in misc as soon as the PR is accessible I will recategorize as Ports David From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 10:37:56 2007 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 59DFE16A419 for ; Sun, 12 Aug 2007 10:37:56 +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 15B4D13C4A8 for ; Sun, 12 Aug 2007 10:37:55 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id 28F2A1CC38; Sun, 12 Aug 2007 03:53:12 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Sun, 12 Aug 2007 03:53:11 -0700 User-Agent: KMail/1.9.7 References: <200708120338.04409.david@vizion2000.net> <200708120343.33051.david@vizion2000.net> In-Reply-To: <200708120343.33051.david@vizion2000.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200708120353.11900.david@vizion2000.net> Subject: Re: Failure Upgrading 'ruby18-bdb-0.6.0' to 'ruby18-bdb-0.6.1 on amd 64 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, 12 Aug 2007 10:37:56 -0000 On Sunday 12 August 2007 03:43:32 David Southwell wrote: > On Sunday 12 August 2007 03:38:04 David Southwell wrote: > > Hi > > # uname -a > > 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7 04:15:57 UTC 2006 > > root@bloom.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP amd64 > > ----------------- > > I have just posted a PR for this upgrade failure and will post the PR > > number here as soon as I receive it. > > > > ---> Upgrading 'ruby18-bdb-0.6.0' to 'ruby18-bdb-0.6.1' > > (databases/ruby-bdb) ---> Building '/usr/ports/databases/ruby-bdb' > > ===> Cleaning for ruby18-bdb-0.6.1 > > ===> Extracting for ruby18-bdb-0.6.1 > > => MD5 Checksum OK for ruby/bdb-0.6.1.tar.gz. > > => SHA256 Checksum OK for ruby/bdb-0.6.1.tar.gz. > > ===> ruby18-bdb-0.6.1 depends on file: /usr/local/bin/ruby18 - found > > ===> Patching for ruby18-bdb-0.6.1 > > ===> ruby18-bdb-0.6.1 depends on file: /usr/local/bin/ruby18 - found > > ===> ruby18-bdb-0.6.1 depends on file: /usr/local/bin/ruby18 - found > > ===> ruby18-bdb-0.6.1 depends on shared library: db-4.2.2 - found > > ===> Configuring for ruby18-bdb-0.6.1 > > ===> Running extconf.rb to configure > > extconf.rb: Entering directory `src' > > checking for db_version() in -ldb-4.2... no > > checking for db_version_4002() in -ldb-4.2... yes > > checking for rb_frame_this_func()... no > > checking for rb_block_proc()... yes > > checking for rb_io_stdio_file()... no > > checking for rb_block_call()... no > > checking for Array#insert... yes > > checking for Array#values_at... yes > > creating Makefile > > extconf.rb: Leaving directory `src' > > ===> Building for ruby18-bdb-0.6.1 > > cc -I. -I. -I/usr/local/lib/ruby/1.8/amd64-freebsd6 -I. > > -DHAVE_RB_BLOCK_PROC -I/usr/local/include/db42 -I/usr/local/include -fPIC > > -O2 -fno-strict-aliasing -pipe -fPIC -DHAVE_RB_ARY_INSERT > > -DHAVE_RB_ARY_VALUES_AT -c bdb.c > > bdb.c: In function `Init_bdb': > > bdb.c:515: error: `DB_REP_IGNORE' undeclared (first use in this function) > > bdb.c:515: error: (Each undeclared identifier is reported only once > > bdb.c:515: error: for each function it appears in.) > > bdb.c:516: error: `DB_REP_JOIN_FAILURE' undeclared (first use in this > > function) > > *** Error code 1 > > > > Stop in /usr/ports/databases/ruby-bdb/work/bdb-0.6.1/src. > > *** Error code 1 > > > > Stop in /usr/ports/databases/ruby-bdb/work/bdb-0.6.1. > > *** Error code 1 > > > > Stop in /usr/ports/databases/ruby-bdb. > > ** Command failed [exit code 1]: /usr/bin/script -qa > > /tmp/portupgrade.61249.45 env UPGRADE_TOOL=portupgrade > > UPGRADE_PORT=ruby18-bdb-0.6.0 > > UPGRADE_PORT_VER=0.6.0 make > > ** Fix the problem and try again. > > > > > > david Southwell > > PR is 115436 > > I omiited to place it in the category Ports when reporting..ATM is is in > misc as soon as the PR is accessible I will recategorize as Ports > link is: http://www.freebsd.org/cgi/query-pr.cgi?pr=misc/115436 david From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 12:21:06 2007 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 D478516A419 for ; Sun, 12 Aug 2007 12:21:06 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 94EC813C458 for ; Sun, 12 Aug 2007 12:21:06 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A54923.dip.t-dialin.net [84.165.73.35]) by redbull.bpaserver.net (Postfix) with ESMTP id 935F22E0BD; Sun, 12 Aug 2007 14:20:59 +0200 (CEST) Received: from deskjail (deskjail.Leidinger.net [192.168.1.109]) by outgoing.leidinger.net (Postfix) with ESMTP id E1D4D5B4926; Sun, 12 Aug 2007 14:20:56 +0200 (CEST) Date: Sun, 12 Aug 2007 14:20:59 +0200 From: Alexander Leidinger To: RW Message-ID: <20070812142059.35077b0d@deskjail> In-Reply-To: <20070811225858.7eb933ef@gumby.homeunix.com.> References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811145314.A47727@obelix.home.rakhesh.com> <20070811203322.GA78245@eos.sc1.parodius.com> <20070811225858.7eb933ef@gumby.homeunix.com.> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.9, required 8, BAYES_00 -15.00, DKIM_POLICY_SIGNSOME 0.00, RDNS_DYNAMIC 0.10) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-ports@freebsd.org Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 12 Aug 2007 12:21:06 -0000 Quoting RW (Sat, 11 Aug 2007 22:58:58 +0100): > On Sat, 11 Aug 2007 13:33:22 -0700 > Jeremy Chadwick wrote: > > > On Sat, Aug 11, 2007 at 03:02:53PM +0400, Rakhesh Sasidharan wrote: > > >> 5. pkg_delete port > > > > > > I see. In step 5, "pkg_delete port" wont work if port is required > > > by others right? So you delete those apps too? Could be a lot of > > > stuff to uninstall, right? > > > > Absolutely correct. That might seem like a nightmare to most people, > > but to me it's not. > > It's not correct, "pkg_delete -f" can force the deletion. I would > manually upgrade a port like this: > > cd /usr/ports/misc/foo > make ; do the build > pkg_info -qO misc/foo ; get old package name > pkg_create -b ; backup existing package > /usr/local/etc/rc.d/foo stop ; stop the daemon if needed > pkg_delete -f ; force removal > make install At this point your /var/db/pkg/ directory does not reflect reality anymore, e.g. all ports which depend upon this port still list the old version of it. Before I used portupgrade I had some scripts which dealed with parts of this problem. You also lose the +REQUIRED_BY file of the updated port. My scripts solved the urgent dependency problems. When portupgrade came along and was stable it had all those nice features I would have been happy to see in my own scripts but never had the pressure to implement because they where not that important for me. I also have to do less work by hand when using portupgrade. It may be not the best implementation for such a tool, but it's a huge step forward compared to what we had before. > /usr/local/etc/rc.d/foo start ; start the daemon if needed > make clean > rm Bye, Alexander. -- Change is the essential process of all existence. -- Spock, "Let That Be Your Last Battlefield", stardate 5730.2 http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 15:39:45 2007 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 438FB16A419 for ; Sun, 12 Aug 2007 15:39:45 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao103.cox.net (eastrmmtao103.cox.net [68.230.240.9]) by mx1.freebsd.org (Postfix) with ESMTP id C9CC113C45A for ; Sun, 12 Aug 2007 15:39:44 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao103.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20070812153945.HUBS28475.eastrmmtao103.cox.net@eastrmimpo02.cox.net> for ; Sun, 12 Aug 2007 11:39:45 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo02.cox.net with bizsmtp id b3fj1X00Q4iy4EG0000000; Sun, 12 Aug 2007 11:39:43 -0400 Date: Sun, 12 Aug 2007 10:43:15 -0500 To: freebsd-ports@freebsd.org From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Message-ID: User-Agent: Opera Mail/9.22 (Linux) Subject: Need someone to test update of linuxdcpp. 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, 12 Aug 2007 15:39:45 -0000 Hello linuxdcpp users, I need someone to test the update of linuxdcpp to 0.0.1.20070804 with stable version of GTK+2. I am not able to test it since it doesn't work with development version of GTK+2. I am running everything from MC ports (GNOME 2.19.6/GTK+ 2.11.6). Thanks. http://people.freebsd.org/~mezz/diff/linuxdcpp.diff Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team - FreeBSD Multimedia Hat (ports, not src) http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org http://wiki.freebsd.org/multimedia - multimedia@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 16:42:54 2007 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 0938616A41B for ; Sun, 12 Aug 2007 16:42:54 +0000 (UTC) (envelope-from paul@it.ca) Received: from mail.it.ca (mail.it.ca [216.235.7.67]) by mx1.freebsd.org (Postfix) with ESMTP id B4B5913C457 for ; Sun, 12 Aug 2007 16:42:53 +0000 (UTC) (envelope-from paul@it.ca) Received: from mail.it.ca (paul@mail [216.235.7.67]) by mail.it.ca (8.13.3/8.13.3) with ESMTP id l7CGNSmE072342; Sun, 12 Aug 2007 12:23:29 -0400 (EDT) (envelope-from paul@it.ca) Received: (from paul@localhost) by mail.it.ca (8.13.3/8.13.3/Submit) id l7CGNS9n072341; Sun, 12 Aug 2007 12:23:28 -0400 (EDT) (envelope-from paul@it.ca) X-Authentication-Warning: mail.it.ca: paul set sender to paul@it.ca using -f Date: Sun, 12 Aug 2007 12:23:28 -0400 From: Paul Chvostek To: test3 Message-ID: <20070812162328.GA20533@it.ca> References: <46BED256.6010901@dspnet.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46BED256.6010901@dspnet.nl> User-Agent: Mutt/1.5.12-2006-07-14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.it.ca [216.235.7.67]); Sun, 12 Aug 2007 12:23:29 -0400 (EDT) Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: dotproject-devel-2.1.r1 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, 12 Aug 2007 16:42:54 -0000 Hiya. On Sun, Aug 12, 2007 at 11:26:46AM +0200, test3 wrote: > > As I installed this port I noticed this port is missing a dependancy: > *webfonts-0.30_2 > > *Also it needs a symlink from: > /usr/X11R6/lib/X11/fonts/webfonts > to: > /usr/local/lib/X11/fonts/webfonts > Possible due to changes in the Xorg port (using latest) Yes, the difference between /usr/X11R6/lib/X11 and /usr/local/lib/X11 is the Xorg 7.2 upgrade. The current dotproject-devel port was submitted just before or possibly during the Xorg freeze, and wasn't updated afterwards. The port is due for an upgrade anyway -- I'll take care of this next week. Thanks for the reminder. p -- Paul Chvostek From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 17:18:14 2007 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 86B7E16A417 for ; Sun, 12 Aug 2007 17:18:14 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 5D1B913C461 for ; Sun, 12 Aug 2007 17:18:14 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id E6DAF51910 for ; Sun, 12 Aug 2007 13:18:12 -0400 (EDT) Date: Sun, 12 Aug 2007 18:18:10 +0100 From: RW To: freebsd-ports@freebsd.org Message-ID: <20070812181810.2b17d85f@gumby.homeunix.com.> In-Reply-To: <20070812142059.35077b0d@deskjail> References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811145314.A47727@obelix.home.rakhesh.com> <20070811203322.GA78245@eos.sc1.parodius.com> <20070811225858.7eb933ef@gumby.homeunix.com.> <20070812142059.35077b0d@deskjail> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 12 Aug 2007 17:18:14 -0000 On Sun, 12 Aug 2007 14:20:59 +0200 Alexander Leidinger wrote: > Quoting RW (Sat, 11 Aug 2007 22:58:58 > +0100): > > > On Sat, 11 Aug 2007 13:33:22 -0700 > > Jeremy Chadwick wrote: > > > > > On Sat, Aug 11, 2007 at 03:02:53PM +0400, Rakhesh Sasidharan > > > wrote: > > > >> 5. pkg_delete port > > > > > > > > I see. In step 5, "pkg_delete port" wont work if port is > > > > required by others right? So you delete those apps too? Could > > > > be a lot of stuff to uninstall, right? > > > > > > Absolutely correct. That might seem like a nightmare to most > > > people, but to me it's not. > > > > It's not correct, "pkg_delete -f" can force the deletion. I would > > manually upgrade a port like this: > > > > cd /usr/ports/misc/foo > > make ; do the build > > pkg_info -qO misc/foo ; get old package name > > pkg_create -b ; backup existing package > > /usr/local/etc/rc.d/foo stop ; stop the daemon if needed > > pkg_delete -f ; force removal > > make install > > At this point your /var/db/pkg/ directory does not reflect reality > anymore, I know, I was just pointing out that it is possible to upgrade a port manually without removing every single package that depends on it. Actually having dependencies package version mismatches needn't cause any significant problems. And massaging them into self-consistency is itself a form of corruption, since you lose information about what was built against what. From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 21:25:31 2007 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 0D36C16A418 for ; Sun, 12 Aug 2007 21:25:31 +0000 (UTC) (envelope-from kramer@centtech.com) Received: from mh1.centtech.com (moat3.centtech.com [64.129.166.50]) by mx1.freebsd.org (Postfix) with ESMTP id CA78313C428 for ; Sun, 12 Aug 2007 21:25:30 +0000 (UTC) (envelope-from kramer@centtech.com) Received: from [10.100.1.4] ([10.100.1.4]) by mh1.centtech.com (8.13.8/8.13.8) with ESMTP id l7CKm0CO010008; Sun, 12 Aug 2007 15:48:01 -0500 (CDT) (envelope-from kramer@centtech.com) Message-ID: <46BF7200.6050306@centtech.com> Date: Sun, 12 Aug 2007 15:48:00 -0500 From: Kevin Kramer User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 0.91.1, clamav-milter version 0.91.1 on mh1.centtech.com X-Virus-Status: Clean X-Spam-Status: No, score=0.0 required=8.0 tests=ALL_TRUSTED autolearn=failed version=3.2.1 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on mh1.centtech.com Cc: kramer@centtech.com Subject: spamass-milter not reading local.cf 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, 12 Aug 2007 21:25:31 -0000 recently did portupgrade for spamass-milter, now running spamass-milter-0.3.1_3. The new required scores are being set at 8.0 instead of the default 5.0. Nothing in UPDATING about any config changes. Here are my spam processes, running like before, no changes to rc.conf ps -auwx | grep spam nobody 620 1.1 1.3 80616 55044 ?? S 2:55PM 0:30.50 spamd child (perl5.8.8) root 8806 1.0 0.1 8544 2236 ?? S 3:41PM 0:00.01 /usr/local/bin/spamc root 582 0.0 0.1 16344 3696 ?? Ts 2:55PM 0:01.33 /usr/local/sbin/spamass-milter -f -p /var/run/spamass-milter.sock root 605 0.0 1.1 70728 45332 ?? Ss 2:55PM 0:01.38 /usr/local/bin/spamd -A "net" -A "net2" -A 127.0.0.1 --max-children=15 --min-spare=2 --min-chil root 621 0.0 1.2 77416 51808 ?? S 2:55PM 0:08.67 spamd child (perl5.8.8) root 1631 0.0 1.2 75316 49640 ?? S 3:00PM 0:02.27 spamd child (perl5.8.8) root 1632 0.0 1.1 73384 47956 ?? S 3:00PM 0:00.73 spamd child (perl5.8.8) root 4259 0.0 1.1 73312 47904 ?? S 3:15PM 0:00.36 spamd child (perl5.8.8) mailog output Aug 12 15:43:07 spamd[621]: auto-whitelist: open of auto-whitelist file failed: locker: safe_lock: cannot create tmp lockfile /nonexistent/.spamassassin/auto-whitelist.lock.mh1.centtech.com.621 for /nonexistent/.spamassassin/auto-whitelist.lock: No such file or directory Aug 12 15:43:07 spamd[621]: spamd: clean message (0.0/8.0) for root:65534 in 0.3 seconds, 1463 bytes. Aug 12 15:43:07 spamd[621]: spamd: result: . 0 - ALL_TRUSTED scantime=0.3,size=1463,user=root,uid=65534,required_score=8.0,rhost=localhost.centtech.com,raddr=127.0.0.1,rport=54224,mid=<200708122043.l7CKh2ui021344@bal4.centtech.com>,autolearn=failed Milter add: header: X-Spam-Status: No, score=0.0 required=8.0 my local.cf allow_user_rules 1 #subject_tag *SPAM* Score: _HITS_/_REQD_ - # Save spam messages as a message/rfc822 MIME attachment instead of # modifying the original message (0: off, 2: use text/plain instead) # report_safe 0 # Set which networks or hosts are considered 'trusted' by your mail # server (i.e. not spammers) # # trusted_networks 212.17.35. trusted_networks 10.10/16 10.20/16 10.30/16 10.40/16 10.90/16 10.100.1/24 192.168.21/24 192.168.40/21 192.168.50/24 # Set file-locking method (flock is not safe over NFS, but is faster) # lock_method nfssafe #lock_method flock # Set the threshold at which a message is considered spam (default: 5.0) # # required_score 5.0 # Use Bayesian classifier (default: 1) # use_bayes 1 # Bayesian classifier auto-learning (default: 1) # # bayes_auto_learn 1 # Set headers which may provide inappropriate cues to the Bayesian # classifier # # bayes_ignore_header X-Bogosity # bayes_ignore_header X-Spam-Flag # bayes_ignore_header X-Spam-Status skip_rbl_checks 1 use_razor2 1 use_dcc 0 use_pyzor 0 ok_languages en ok_locales en my sendmail.cf milter rules Xclmilter, S=local:/var/run/clamav/clmilter.sock,F=, T=S:4m;R:4m Xspamassassin, S=local:/var/run/spamass-milter.sock, F=, T=C:15m;S:4m;R:4m;E:10m From owner-freebsd-ports@FreeBSD.ORG Sun Aug 12 22:14:12 2007 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 15C5F16A420 for ; Sun, 12 Aug 2007 22:14:12 +0000 (UTC) (envelope-from kramer@centtech.com) Received: from mh1.centtech.com (moat3.centtech.com [64.129.166.50]) by mx1.freebsd.org (Postfix) with ESMTP id E2C9A13C468 for ; Sun, 12 Aug 2007 22:14:11 +0000 (UTC) (envelope-from kramer@centtech.com) Received: from [10.100.1.4] ([10.100.1.4]) by mh1.centtech.com (8.13.8/8.13.8) with ESMTP id l7CMEAAr024915 for ; Sun, 12 Aug 2007 17:14:10 -0500 (CDT) (envelope-from kramer@centtech.com) Message-ID: <46BF8631.20803@centtech.com> Date: Sun, 12 Aug 2007 17:14:09 -0500 From: Kevin Kramer User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <46BF7200.6050306@centtech.com> In-Reply-To: <46BF7200.6050306@centtech.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 0.91.1, clamav-milter version 0.91.1 on mh1.centtech.com X-Virus-Status: Clean X-Spam-Status: No, score=0.0 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.2.1 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on mh1.centtech.com Subject: Re: spamass-milter not reading local.cf 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, 12 Aug 2007 22:14:12 -0000 I think I found the problem. It must have updated /root/.spamassassin/user_prefs to 8.0. and since I'm using root to run spamd... Although I did have it running as spamd and it was still using 8.0 and spamd does not have a user_prefs, so I'd assume it would use the local.cf file at that point.. Kevin Kramer wrote: > recently did portupgrade for spamass-milter, now running > spamass-milter-0.3.1_3. The new required scores are being set at 8.0 > instead of the default 5.0. Nothing in UPDATING about any config changes. > > Here are my spam processes, running like before, no changes to rc.conf > > ps -auwx | grep spam > nobody 620 1.1 1.3 80616 55044 ?? S 2:55PM 0:30.50 spamd > child (perl5.8.8) > root 8806 1.0 0.1 8544 2236 ?? S 3:41PM 0:00.01 > /usr/local/bin/spamc > root 582 0.0 0.1 16344 3696 ?? Ts 2:55PM 0:01.33 > /usr/local/sbin/spamass-milter -f -p /var/run/spamass-milter.sock > root 605 0.0 1.1 70728 45332 ?? Ss 2:55PM 0:01.38 > /usr/local/bin/spamd -A "net" -A "net2" -A 127.0.0.1 --max-children=15 > --min-spare=2 --min-chil > root 621 0.0 1.2 77416 51808 ?? S 2:55PM 0:08.67 spamd > child (perl5.8.8) > root 1631 0.0 1.2 75316 49640 ?? S 3:00PM 0:02.27 spamd > child (perl5.8.8) > root 1632 0.0 1.1 73384 47956 ?? S 3:00PM 0:00.73 spamd > child (perl5.8.8) > root 4259 0.0 1.1 73312 47904 ?? S 3:15PM 0:00.36 spamd > child (perl5.8.8) > > mailog output > > Aug 12 15:43:07 spamd[621]: auto-whitelist: open of auto-whitelist > file failed: locker: safe_lock: cannot create tmp lockfile > /nonexistent/.spamassassin/auto-whitelist.lock.mh1.centtech.com.621 > for /nonexistent/.spamassassin/auto-whitelist.lock: No such file or > directory > Aug 12 15:43:07 spamd[621]: spamd: clean message (0.0/8.0) for > root:65534 in 0.3 seconds, 1463 bytes. > Aug 12 15:43:07 spamd[621]: spamd: result: . 0 - ALL_TRUSTED > scantime=0.3,size=1463,user=root,uid=65534,required_score=8.0,rhost=localhost.centtech.com,raddr=127.0.0.1,rport=54224,mid=<200708122043.l7CKh2ui021344@bal4.centtech.com>,autolearn=failed > > Milter add: header: X-Spam-Status: No, score=0.0 required=8.0 > > my local.cf > > allow_user_rules 1 > #subject_tag *SPAM* Score: _HITS_/_REQD_ - > > > # Save spam messages as a message/rfc822 MIME attachment instead of > # modifying the original message (0: off, 2: use text/plain instead) > # > report_safe 0 > > > # Set which networks or hosts are considered 'trusted' by your mail > # server (i.e. not spammers) > # > # trusted_networks 212.17.35. > trusted_networks 10.10/16 10.20/16 10.30/16 10.40/16 10.90/16 > 10.100.1/24 192.168.21/24 192.168.40/21 192.168.50/24 > > > # Set file-locking method (flock is not safe over NFS, but is faster) > # > lock_method nfssafe > #lock_method flock > # Set the threshold at which a message is considered spam (default: > 5.0) > # > # required_score 5.0 > > > # Use Bayesian classifier (default: 1) > # > use_bayes 1 > > > # Bayesian classifier auto-learning (default: 1) > # > # bayes_auto_learn 1 > > # Set headers which may provide inappropriate cues to the Bayesian > # classifier > # > # bayes_ignore_header X-Bogosity > # bayes_ignore_header X-Spam-Flag > # bayes_ignore_header X-Spam-Status > > skip_rbl_checks 1 > use_razor2 1 > use_dcc 0 > use_pyzor 0 > > ok_languages en > ok_locales en > > my sendmail.cf milter rules > > Xclmilter, S=local:/var/run/clamav/clmilter.sock,F=, T=S:4m;R:4m > Xspamassassin, S=local:/var/run/spamass-milter.sock, F=, > T=C:15m;S:4m;R:4m;E:10m > > > > > _______________________________________________ > 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 Aug 13 03:36:28 2007 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 D098216A417 for ; Mon, 13 Aug 2007 03:36:28 +0000 (UTC) (envelope-from elfshadow@physics.upatras.gr) Received: from nic.upatras.gr (nic.upatras.gr [150.140.129.30]) by mx1.freebsd.org (Postfix) with SMTP id 0D13F13C45A for ; Mon, 13 Aug 2007 03:36:27 +0000 (UTC) (envelope-from elfshadow@physics.upatras.gr) Received: (qmail 25125 invoked from network); 13 Aug 2007 03:09:45 -0000 Received: by simscan 1.1.0 ppid: 25115, pid: 25116, t: 3.6206s scanners: clamav: 0.88.2/m:39/d:1582 spam: 3.1.3 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on nic.upatras.gr X-Spam-Level: X-Spam-Status: No, score=0.5 required=8.0 tests=AWL autolearn=ham version=3.2.1 Received: from pythagoras.physics.upatras.gr (150.140.159.71) by nic.upatras.gr with SMTP; 13 Aug 2007 03:09:41 -0000 Received: (qmail 17750 invoked by uid 1189); 13 Aug 2007 03:04:43 -0000 Date: Mon, 13 Aug 2007 06:04:43 +0300 From: Laganakos Vassilis To: ports@FreeBSD.org Message-ID: <20070813030443.GA17671@pythagoras.physics.upatras.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2i Cc: Subject: swfdec-plugin, youtube sound 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, 13 Aug 2007 03:36:28 -0000 Hi all, I don't know if I should ask this here, but does anyone has any problems with the youtube videos sound using swfdec and swfdec-plugin? It seems that when the sound in enabled, the video is getting out of sync and playing really slow, but when the sound is disabled the video plays just fine. I have not enabled the gstreamer support in swfdec and even if I enable it, the behaviour is the same. Any ideas on this? Kind regards, Vassilis -- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 13 04:10:36 2007 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 92B2016A417; Mon, 13 Aug 2007 04:10:36 +0000 (UTC) (envelope-from arubtsov@swsoft.com) Received: from mail3.plesk.ru (gw-swsoft2.ll-nsk.zsttk.ru [82.200.65.190]) by mx1.freebsd.org (Postfix) with ESMTP id 3C64C13C45B; Mon, 13 Aug 2007 04:10:35 +0000 (UTC) (envelope-from arubtsov@swsoft.com) Received: by mail3.plesk.ru (Postfix, from userid 426) id B11981A9BFC; Mon, 13 Aug 2007 11:10:32 +0700 (NOVST) Received: from localhost (rubtsov.plesk.ru [192.168.62.206]) by mail3.plesk.ru (Postfix) with ESMTP id 8B1EB1A9BD9; Mon, 13 Aug 2007 11:10:32 +0700 (NOVST) To: "Scot Hetzel" From: "Alexey Rubtsov" Content-Type: text/plain; format=flowed; delsp=yes; charset=koi8-r MIME-Version: 1.0 References: <790a9fff0708090519x7ad0795eme128b4c265e9a7a1@mail.gmail.com> Content-Transfer-Encoding: Quoted-Printable Date: Mon, 13 Aug 2007 11:09:48 +0700 Message-ID: In-Reply-To: <790a9fff0708090519x7ad0795eme128b4c265e9a7a1@mail.gmail.com> User-Agent: Opera Mail/9.21 (FreeBSD) Cc: ports@freebsd.org, girgen@freebsd.org, perky@freebsd.org Subject: Re: packaging mod_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: Mon, 13 Aug 2007 04:10:36 -0000 On Thu, 09 Aug 2007 19:19:58 +0700, Scot Hetzel wro= te: > On 8/9/07, Alexey Rubtsov wrote: >> I try to install mod_pyhon3 from ports and was some saddened. >> The port was installed correctly but name for package is "mod_python"= . >> It makes the problem if i try to create packages "mod_python" for >> different apache versions(for example apache20 and apache22). This >> packages was created with the same name. >> So impossible to create local repository of packages with all = >> packages >> what i need. >> >> >> Decide: >> Add PKGNAMESUFFX into Makefile of port like this for example: >> >> .if (${APACHE_PORT} =3D=3D "www/apache22") >> PKGNAMESUFFIX=3D -ap22 >> .elif (${APACHE_PORT} =3D=3D "www/apache20") >> PKGNAMESUFFIX=3D -ap20 >> .endif >> >> This problem exists in mod_jk2 and mod_perl. >> Possibly somethere else... >> > > The best place to put this would be in Mk/bsd.apache.mk, it would then= > get applied to all the mod_* ports. Instead of using PKGNAMESUFFIX, > it should be changed to PKGNAMEPREFIX, as we currently have a > preference for this (i.e py-24-*, py25-*, qt3-*, qt4-*, p5-*, > linux-*). > > Scot Ok. What can i do for include this changes into bsd.apache.mk? -- = Alexey Rubtsov Plesk(Unix) Developer SwSoft, Inc. E-mail: arubtsov@swsoft.com Phone: +7.923.232.8243 ICQ UIN: 929399162 Web Site: www.swsoft.com From owner-freebsd-ports@FreeBSD.ORG Mon Aug 13 06:15:01 2007 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 512E716A420 for ; Mon, 13 Aug 2007 06:15:01 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id EECD413C46C for ; Mon, 13 Aug 2007 06:14:55 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A56F25.dip.t-dialin.net [84.165.111.37]) by redbull.bpaserver.net (Postfix) with ESMTP id 63C762E13F; Mon, 13 Aug 2007 08:14:49 +0200 (CEST) Received: from webmail.leidinger.net (webmail.Leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 7500E5B4926; Mon, 13 Aug 2007 08:14:46 +0200 (CEST) Received: (from www@localhost) by webmail.leidinger.net (8.13.8/8.13.8/Submit) id l7D6EkDj021695; Mon, 13 Aug 2007 08:14:46 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Mon, 13 Aug 2007 08:14:46 +0200 Message-ID: <20070813081446.6nxh47n64ocg8ksk@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Mon, 13 Aug 2007 08:14:46 +0200 From: Alexander Leidinger To: RW References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811145314.A47727@obelix.home.rakhesh.com> <20070811203322.GA78245@eos.sc1.parodius.com> <20070811225858.7eb933ef@gumby.homeunix.com.> <20070812142059.35077b0d@deskjail> <20070812181810.2b17d85f@gumby.homeunix.com.> In-Reply-To: <20070812181810.2b17d85f@gumby.homeunix.com.> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) / FreeBSD-7.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.9, required 8, BAYES_00 -15.00, DKIM_POLICY_SIGNSOME 0.00, RDNS_DYNAMIC 0.10) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-ports@freebsd.org Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 13 Aug 2007 06:15:01 -0000 Quoting RW (from Sun, 12 Aug 2007 =20 18:18:10 +0100): > On Sun, 12 Aug 2007 14:20:59 +0200 > Alexander Leidinger wrote: > >> Quoting RW (Sat, 11 Aug 2007 22:58:58 >> +0100): >> >> > On Sat, 11 Aug 2007 13:33:22 -0700 >> > Jeremy Chadwick wrote: >> > >> > > On Sat, Aug 11, 2007 at 03:02:53PM +0400, Rakhesh Sasidharan >> > > wrote: >> > > >> 5. pkg_delete port >> > > > >> > > > I see. In step 5, "pkg_delete port" wont work if port is >> > > > required by others right? So you delete those apps too? Could >> > > > be a lot of stuff to uninstall, right? >> > > >> > > Absolutely correct. That might seem like a nightmare to most >> > > people, but to me it's not. >> > >> > It's not correct, "pkg_delete -f" can force the deletion. I would >> > manually upgrade a port like this: >> > >> > cd /usr/ports/misc/foo >> > make ; do the build >> > pkg_info -qO misc/foo ; get old package name >> > pkg_create -b ; backup existing package >> > /usr/local/etc/rc.d/foo stop ; stop the daemon if needed >> > pkg_delete -f ; force removal >> > make install >> >> At this point your /var/db/pkg/ directory does not reflect reality >> anymore, > > I know, I was just pointing out that it is possible to upgrade a port > manually without removing every single package that depends on it. > > Actually having dependencies package version mismatches needn't cause > any significant problems. And massaging them into self-consistency is It does cause problems. You have no +REQUIRED_BY file anymore, so =20 pkg_delete allows you to remove it without a warning even if it is =20 still needed. If you make sure to keep the file, you still need to =20 change the dependencies (in +CONTENTS and in +REQUIRED_BY), else the =20 entries in +REQUIRED_BY are not removed on deinstall of a port. > itself a form of corruption, since you lose information about what was > built against what. No, it's not a corruption as long as the changes are ABI compatible =20 (if it isn't compatible, you need to update some more ports, but this =20 is not the subject of the discussion). The dependency tracking in =20 /var/db is meant to reflect the current dependencies of the installed =20 software, not the dependencies when a port was first build. It doesn't =20 matter for e.g. a viruschecker if rar is at version 1.1 or 1.2, as =20 long as the command line options used still have the same syntax and =20 semantic. Bye, Alexander. --=20 I'll burn my books. =09=09-- Christopher Marlowe http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-ports@FreeBSD.ORG Mon Aug 13 06:34:56 2007 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 478C216A469 for ; Mon, 13 Aug 2007 06:34:56 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.190]) by mx1.freebsd.org (Postfix) with ESMTP id BA91F13C49D for ; Mon, 13 Aug 2007 06:34:55 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: by fk-out-0910.google.com with SMTP id b27so1596598fka for ; Sun, 12 Aug 2007 23:34:54 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=drxje5zJBburK0z86AyPbRv5A6neKs4paDOMHYdbzwKddQDSUaGzrl8HsGwBdLJn2rBcUnu+RjI1voI9CvSVYBJ7N3QaP3FoJd8qEVXWvthdp4FeOUzFtDWezM7tNpeYOBCkwgkU6i5pLZGv4usQiSepC0X7VVIkUNusk/sg6Po= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=CbUzQhZLdWucBeJVjeI7x2KgpX48+UWq+ciTzqW+T9jVQEObUhJTDcmEqB9A0VEHahyU7cy7CJDlrTrP3+L2TAacpEECWP6EweTvH96d4K/Wypxev+4M7Ag7IzdP+v0e5yCGbNwQGaXE/eSQq9SIxmHPq7onSwY+yqwHwM+npUM= Received: by 10.86.70.8 with SMTP id s8mr4108251fga.1186986894334; Sun, 12 Aug 2007 23:34:54 -0700 (PDT) Received: by 10.86.59.6 with HTTP; Sun, 12 Aug 2007 23:34:54 -0700 (PDT) Message-ID: <790a9fff0708122334i3b77aea3m28cfe5e1d7953582@mail.gmail.com> Date: Mon, 13 Aug 2007 01:34:54 -0500 From: "Scot Hetzel" To: "Alexey Rubtsov" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <790a9fff0708090519x7ad0795eme128b4c265e9a7a1@mail.gmail.com> Cc: ports@freebsd.org, girgen@freebsd.org, perky@freebsd.org Subject: Re: packaging mod_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: Mon, 13 Aug 2007 06:34:56 -0000 On 8/12/07, Alexey Rubtsov wrote: > >> Decide: > >> Add PKGNAMESUFFX into Makefile of port like this for example: > >> > >> .if (${APACHE_PORT} == "www/apache22") > >> PKGNAMESUFFIX= -ap22 > >> .elif (${APACHE_PORT} == "www/apache20") > >> PKGNAMESUFFIX= -ap20 > >> .endif > >> > >> This problem exists in mod_jk2 and mod_perl. > >> Possibly somethere else... > >> > > > > The best place to put this would be in Mk/bsd.apache.mk, it would then > > get applied to all the mod_* ports. Instead of using PKGNAMESUFFIX, > > it should be changed to PKGNAMEPREFIX, as we currently have a > > preference for this (i.e py-24-*, py25-*, qt3-*, qt4-*, p5-*, > > linux-*). > > > > Scot > > Ok. What can i do for include this changes into bsd.apache.mk? > To make the change just make a copy of the original bsd.apache.mk: cd /usr/ports/Mk/ ; cp -rp bsd.apache.mk bsd.apache.mk-orig Then edit bsd.apache.mk: vi bsd.apache.mk Look for the second BUILD_DEPENDS+= ... and add (before the BUILD_DEPENDS): PKGNAMEPREFIX?= ap${APACHE_VERSION}- save the file, create a patch file (diff -u bsd.apache.mk-orig bsd.apache.mk > apache.diff), and then submit a PR with your reason for the change and the the patch file (send-pr or via the freebsd site). Scot -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 13 11:06:15 2007 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AF2716A419 for ; Mon, 13 Aug 2007 11:06:15 +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 0F66313C48A for ; Mon, 13 Aug 2007 11:06:15 +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.1/8.14.1) with ESMTP id l7DB6E7n046714 for ; Mon, 13 Aug 2007 11:06:15 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l7DB6DIV046710 for PORTS; Mon, 13 Aug 2007 11:06:13 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 13 Aug 2007 11:06:13 GMT Message-Id: <200708131106.l7DB6DIV046710@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, 13 Aug 2007 11:06:15 -0000 Current FreeBSD problem reports 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. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. r - repocopy The resolution of the problem report is dependent on a repocopy operation within the CVS repository which is awaiting completion. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/106369 vpnd caused kernel panic with ppp mode o ports/106372 vpnd can't run with slip mode f ports/108077 www/linux-flashplugin9 crashes linux-firefox f ports/108413 net/vnc does not works. f ports/108537 print/hplip: Build failure f ports/108606 Courier MTA terminates abnormaly after installation f ports/111338 graphics/yafray: doesn't respect CXX, CXXFLAGS and eve f ports/112083 mail/qsheff overwrites configuration upon upgrade f ports/112094 www/lynx: plist missing configuration file o ports/112385 sysutils/lookupd on Kernel 64 f ports/112698 www/opera's spell-check doesn't work f ports/112921 x11-wm/Beryl not loading focus and keybinding settings f ports/113139 sysutils/ucspi-tcp runtime crash on amd64 w/ fix f ports/113144 print/ghostscript-gnu dumps core with several output d o ports/114132 mule goes core dump on X Window System o ports/114560 editors/mule cannot compile in ports f ports/115163 dns/bind9-sdb-ldap port is outdated f ports/115203 net/samba3: Broken on filesystems other than UFS f ports/115209 editors/emacs: info files are not installed correctly f ports/115256 Update www/phpbb-devel to latest version f ports/115270 security/amavisd-milter does not work when using sendm f ports/115274 news/sabnzbd port rename breaks installation and plist f ports/115277 port x11-toolkits/swt-devel broken! o ports/115315 New port: audio/padevchooser: GTK icon tray for PulseA o ports/115317 New port: audio/pavumeter: GTK volume meter for PulseA o ports/115318 New port: audio/paprefs: GTK configuration dialog for o ports/115319 New port: audio/paman: GTK frontend for PulseAudio o ports/115320 New port: audio/pavucontrol: GTK mixer for PulseAudio o ports/115443 net-mgmt/netsaint-plugins - incorrect library path in o ports/115452 editors/yui - set BROKEN at ia64 and change E-Mail 30 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/94921 isakmpd fails on amd64 o ports/95854 New Port: www/ochusha o ports/100896 [new ports] emulators/vmware-server-guestd1 emulators/ f ports/101166 bittorrent-curses only works under English locales. o ports/103395 security/gnome-ssh-askpass interferes with gnome-scree o ports/107354 net/icmpinfo: icmpinfo -vvv does not recocnize any ICM o ports/107368 audio/normalize: [patch] - normalize-mp3 and normalize f ports/107621 net/proxychains doens't compile on 4 and 5 f ports/107937 jailed net/isc-dhcp3-server wouldn't run with an immut o ports/108595 pstree (sysutils/psmisc) don't work in jail f ports/108723 kxgenerator never worked for me f ports/108788 [patch] sysutils/fusefs-kmod: Add BASE option f ports/108853 Contradiction of CONFLICTS¡¡ f ports/109041 security/tinyca doesn't allow for user installed OpenS o ports/110144 New port: math/Matlab7 f ports/110320 [security/vpnc] rc script returns 0 on failure o ports/110326 ports Use TCL/TK 8.4: games/tvp o ports/111167 New port:mail/ilohamail-devel IlohaMail is a lightweig o ports/111247 New port: sysutil/linux-procfs rpm port of procps f ports/111399 print/ghostscript-gpl: ghostscript-gpl WITH_FT_BRIDGE f ports/111456 [UPDATE] finance/pfpro updated distinfo f ports/111549 ports/net/fping patch to add -S source_addr option o ports/112124 [New port] archivers/linux-par2cmdline o ports/112185 [NEW PORT] net/fping+ipv6: Quickly ping N hosts w/o fl o ports/112248 new port: finance/ledgersmb o ports/112271 new port: graphics/lightzone: a photo editor o ports/112499 Add a necessary runtime library for audio/mbrola to ru o ports/112669 New port: net/snmp++ v3 library f ports/112876 audio/xmcd - compile problems after xorg 7.2 upgrade ( f ports/112887 net/nxserver 1.4.0_1 fails to compile after upgrading o ports/112982 new port: security/hamachi f ports/113319 [NEW PORT] www/p5-Catalyst-View-Email: Catalyst View f f ports/113325 japanese/ng: use termios instead of sgtty f ports/113335 biology/linux-foldingathome needs to run as root? f ports/113423 Update for ports net/freenx to version 0.6.0 o ports/113538 databases/unixODBC fails to copy required INI files fo o ports/113572 [patch] japanese/sj3 is broken o ports/113608 New port: devel/codeblocks-devel SVN version of Code:: f ports/113750 update science/kst to 1.4.0 o ports/113827 when trying to play midis using audio/playmidi "/dev/s o ports/113925 New port: security/openvpn-auth-ldap - LDAP authentica o ports/114006 [NEW PORT] net/zeroinstall-injector: 0install injector o ports/114017 New port: net-im/iserverd - Groupware ICQ server clone o ports/114031 [PATCH] editors/xemacs-devel - stop XEmacs from corrup o ports/114045 New ports:devel/ETL;devel/synfig;graphics/synfigstudio f ports/114053 Port graphics/gnash is out of date o ports/114067 [new port] japanese/asterisk-sounds-jp Japanese soun o ports/114114 New port: devel/p5-Cvs Cvs - Object oriented interface o ports/114122 New port: russian/stardict2-dict-eng_RU, Russian dicti f ports/114127 net/vnc - vnc.so installed to bad location o ports/114231 [patch] audio/timidity - audacious/plugins: default /e o ports/114239 New ports:multimedia/mimms;multimedia/gmimms A fronten o ports/114336 new ports: graphics/php4-chartdirector, graphics/php5- o ports/114365 New port: net-mgmt/nagiosgrapher o ports/114382 [NEW PORT]: devel/rudeconfig - configuration library o ports/114383 [New Port] texproc/yaml-mode.el: Simple major mode to o ports/114462 New port: net-im/jabbin Jabber client with VoIP o ports/114495 [NEW PORT] net-mgmt/netxms: NetXMS - network monitorin o ports/114511 New port: lang/ocs o ports/114541 [NEW PORT] databases/tablelog: Logs changes on a table o ports/114544 New port: net/gateway6 free IPv6 tunnel o ports/114611 [NEW PORT] net-p2p/freenet05: An anonymous censorship- s ports/114630 [NEW PORT] emulators/wine-doors - Windows application o ports/114634 maintainer update: www/b2evolution f ports/114684 devel/ddd remove check for FreeBSD 4.x o ports/114762 New port: sysutils/mtpfs MTP device filesystem o ports/114763 New port: net-mgmt/nagios-devel Nagios development str f ports/114769 [PATCH] comms/smstools: update to 2.2.18 o ports/114785 New port: mail/p5-Net-Server-Mail-ESMTP-AUTH Impleme o ports/114811 New port: devel/qprog Cross-platform software for the o ports/114812 [new port] devel/ta-lib o ports/114813 [new port] finance/qtstalker-devel f ports/114825 pam module security/pam_abl not working a ports/114831 New port:multimedia/qmmp An audio player with Winamp G f ports/114836 editors/emacs - Emacs22 info files not installed compl o ports/114867 New port:x11/simdock A fast and customizable dockbar o ports/114889 New port:graphics/autoq3d A complete QT quick 3d model f ports/114893 [PATCH] audio/musicpd: update to 0.13.0 f ports/114904 [UPDATE]: audio/qmpdclient Update to new release, 1.0. a ports/114905 New port: devel/subcommander Qt based multiplatform su o ports/114934 [NEW PORT] devel/cunit: An automated unit testing fram o ports/114937 [NEW PORT]: graphics/blender-doc - Blender document s ports/114984 New port:graphics/qtpfsgui A graphical user interface f ports/114993 editors/Emacs causes SIGSEGV o ports/114999 security/bro, port upgrade to version 1.2.1, take over o ports/115012 New port: comms/bluegps BlueGPS is a simple command l o ports/115036 New port: comms/bluez-firmware Firmware for the D-Lin o ports/115074 New ports:misc/itest;misc/itestwri A Qt application co o ports/115087 New port: net/callweaver Fork of the popular Open Sour o ports/115096 [NEW PORT] emulators/fuse-utils: Utilities from the Fr f ports/115124 mail/spamass-milter install from ports fails on libgpg o ports/115125 security/chaosreader, new port submission o ports/115131 ports-mgmt/portcheck - Update of makefile and distinfo o ports/115138 [Maintainer] graphics/gsculpt Update to 0.99.46.2 o ports/115139 [Update] devel/clanlib Update to 0.8.0 f ports/115141 Ignore games/trophy o ports/115142 Ignore games/clanbomber o ports/115144 [Update] games/super_methane_brothers - Update to 1.4. o ports/115186 security/afterglow, new port submission f ports/115198 [PATCH] security/drweb: update to rcNG script f ports/115201 [UPDATE]: archivers/libzip Update to new release, 0.8 f ports/115204 [UPDATE]: archivers/xar Update to new release, 1.5.1 o ports/115210 port security/sshit not work when hostname not IP o ports/115216 ADA devel/florist exit_process program doesn't compile o ports/115217 Ada devel/florist socket program doesn't compile due t o ports/115218 Update port: audio/libmtp to version 0.2.0 f ports/115236 update port: sysutils/puppet o ports/115237 New port:finance/eqonomize A peronal accounting softwa o ports/115243 maintainer update: www/b2evolution (trial 2) o ports/115246 [NEW PORT] net-mgmt/neye port o ports/115247 New ports:mutimedia/transkode A KDE/Qt based fronted v o ports/115248 [UPDATE PORT] misc/pipe: update to 2.5, take maintaine o ports/115251 [MAINTAINER] x11-themes/gtk-murrina-aqua: [SUMMARIZE C o ports/115254 New port: lang devel/nesasm: 6502 assembler with speci o ports/115265 New port: net/csocks SOCKS Client v4/v5 RFC Compliant f ports/115269 mail/p5-Mail-SpamAssassin update to 3.2.2 o ports/115291 [NEW PORT] devel/p5-Test-Perl-Critic: Use Perl::Critic o ports/115302 Update port: x11-toolkits/pmw to 1.3 f ports/115304 multimedia/gpac-mp4box cannot import files larger than o ports/115308 multimedia/jahshaka fails to open GUI - ends with "pre o ports/115316 Update port: www/hiawatha o ports/115322 Patch for MASTER_SITE_VIM sites in Mk/bsd.sites.mk fil f ports/115323 [PATCH] sysutils/gcombust: Unbreak gcc 4 o ports/115328 New Port: devel/p5-Data-Validate f ports/115336 port multimedia/avifile on FreeBSD 7.0 not BROKEN with o ports/115358 [New port] textproc/p5-HTML-FormatText-WithLinks a per o ports/115364 upgrade www/RT36 to 3.6.4 o ports/115366 [New Port] pecl-pop3 o ports/115373 New port: mail/qgreylistrbl o ports/115378 Upgrade port: net/haproxy-devel Was not building on am o ports/115382 [new port] pluxml o ports/115383 [PATCH] [maintainer] www/scloader: update to 0.31 o ports/115389 Update port: audio/cheesetracker to 0.9.15.1 o ports/115391 Update port: graphics/fig2pstricks to 0.6.9 o ports/115392 Update port: graphics/fracplanet to 0.3.3 o ports/115393 Update port: net/gq to 1.2.2 o ports/115395 Update port: print/ghostscript-gpl to 8.60 o ports/115396 Update port: science/felt o ports/115397 Update port: science/openbabel to 2.1.1 o ports/115398 Update port: x11-wm/matchbox to 1.2 o ports/115399 Update port: x11-wm/wmakerconf to 2.12 o ports/115401 Update port: graphics/ipe Version 6.0pre28 of Ipe that o ports/115432 Ports missing library dependencies o ports/115433 Zabbix 1.4.1_2,1 port doesn't build with threads-enabl o ports/115436 Upgrade failure ruby18-bdb-0.6.0 DB_REP_* errors o ports/115438 Update port: sysutils/downtime to 0.3.0 o ports/115440 Update port: www/typo3 (maintainer-update) o ports/115449 [MAINTAINER] astro/boinc-setiathome-enhanced: update t o ports/115458 NEW PORT: net/pyrad f ports/115459 Update for net/mediaproxy port o ports/115460 New port: audio/ecamegapedal realtime audio processor o ports/115463 [PATCH] www/tomcat55: fix port installation/upgrade pr 152 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 13 11:06:18 2007 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 C082F16A46C for ; Mon, 13 Aug 2007 11:06:18 +0000 (UTC) (envelope-from raggen@passagen.se) Received: from av8-1-sn3.vrr.skanova.net (av8-1-sn3.vrr.skanova.net [81.228.9.183]) by mx1.freebsd.org (Postfix) with ESMTP id 3F53C13C4A6 for ; Mon, 13 Aug 2007 11:06:18 +0000 (UTC) (envelope-from raggen@passagen.se) Received: by av8-1-sn3.vrr.skanova.net (Postfix, from userid 502) id AFA573832E; Mon, 13 Aug 2007 12:44:43 +0200 (CEST) Received: from smtp3-2-sn3.vrr.skanova.net (smtp3-2-sn3.vrr.skanova.net [81.228.9.102]) by av8-1-sn3.vrr.skanova.net (Postfix) with ESMTP id 603683830D; Mon, 13 Aug 2007 12:44:43 +0200 (CEST) Received: from [192.168.1.31] (90-230-142-213-no41.tbcn.telia.com [90.230.142.213]) by smtp3-2-sn3.vrr.skanova.net (Postfix) with ESMTP id 0788837E42; Mon, 13 Aug 2007 12:44:43 +0200 (CEST) Message-ID: <46C03608.1090504@passagen.se> Date: Mon, 13 Aug 2007 12:44:24 +0200 From: Roger Olofsson User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: m.sund@arcor.de Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: FreeBSD Port: upp-2007.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: Mon, 13 Aug 2007 11:06:18 -0000 Dear mailing list/maintaner, I have compiled upp-2007.1_1 from /usr/ports/devel/upp and it runs very well apart from linker errors. I get below errors when trying to build the examples that comes with upp. The linker path is set to /usr/local/lib in upp and all libraries looks to be in the correct place. What have I done wrong? Grateful for any answer /Roger Some system info uname -a FreeBSD 6.2-STABLE FreeBSD 6.2-STABLE #0: Sat Jul 28 01:01:25 CEST 2007 root@mysystem.home:/usr/obj/usr/src/sys/GENERIC i386 pkg_info | grep upp upp-2007.1_1 Ultimate++, a BSD-licensed, cross-platform, C/C++ RAD suite pkg_info | grep gettext gettext-0.16.1_3 GNU gettext package ls -al /usr/local/lib | grep libintl -rw-r--r-- 1 root wheel 52726 Aug 12 17:44 libintl.a -r--r--r-- 1 root wheel 847 Aug 12 17:44 libintl.la lrwxr-xr-x 1 root wheel 12 Aug 12 17:44 libintl.so -> libintl.so.8 -r--r--r-- 1 root wheel 39968 Aug 12 17:44 libintl.so.8 The linker errors from upp ----- CtrlLib ( GUI GCC DEBUG BLITZ FREEBSD ) (1 / 9) ----- CtrlCore ( GUI GCC DEBUG BLITZ FREEBSD ) (2 / 9) ----- RichText ( GUI GCC DEBUG BLITZ FREEBSD ) (3 / 9) ----- PdfDraw ( GUI GCC DEBUG BLITZ FREEBSD ) (4 / 9) ----- Draw ( GUI GCC DEBUG BLITZ FREEBSD ) (5 / 9) ----- Core ( GUI GCC DEBUG BLITZ FREEBSD ) (6 / 9) ----- plugin/bmp ( GUI GCC DEBUG BLITZ FREEBSD ) (7 / 9) ----- plugin\png ( GUI GCC DEBUG BLITZ FREEBSD ) (8 / 9) ----- Bombs ( GUI MAIN GCC DEBUG BLITZ FREEBSD ) (9 / 9) Linking... /usr/local/lib/libgtk-x11-2.0.a(gtkadjustment.o)(.text+0xa9): In function `gtk_adjustment_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkadjustment.o)(.text+0xbc): In function `gtk_adjustment_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkadjustment.o)(.text+0xf9): In function `gtk_adjustment_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkadjustment.o)(.text+0x10c): In function `gtk_adjustment_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkadjustment.o)(.text+0x149): In function `gtk_adjustment_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkadjustment.o)(.text+0x15c): more undefined references to `libintl_dgettext' follow /usr/local/lib/libgtk-x11-2.0.a(gtkmain.o)(.text+0x1b5): In function `gettext_initialization': : undefined reference to `libintl_bindtextdomain' /usr/local/lib/libgtk-x11-2.0.a(gtkmain.o)(.text+0x1c6): In function `gettext_initialization': : undefined reference to `libintl_bindtextdomain' /usr/local/lib/libgtk-x11-2.0.a(gtkmain.o)(.text+0x1d7): In function `gettext_initialization': : undefined reference to `libintl_bind_textdomain_codeset' /usr/local/lib/libgtk-x11-2.0.a(gtkmain.o)(.text+0x1e8): In function `gettext_initialization': : undefined reference to `libintl_bind_textdomain_codeset' /usr/local/lib/libgtk-x11-2.0.a(gtkmain.o)(.text+0x316): In function `post_parse_hook': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkmain.o)(.text+0x425): In function `IA__gtk_get_option_group': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkmain.o)(.text+0x438): In function `IA__gtk_get_option_group': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkmenu.o)(.text+0x47f): In function `gtk_menu_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkmenu.o)(.text+0x492): In function `gtk_menu_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkmenu.o)(.text+0x4c4): more undefined references to `libintl_dgettext' follow /usr/local/lib/libgtk-x11-2.0.a(gtkimmulticontext.o)(.text+0x942): In function `IA__gtk_im_multicontext_append_menuitems': : undefined reference to `libintl_bindtextdomain' /usr/local/lib/libgtk-x11-2.0.a(gtkimmulticontext.o)(.text+0x95a): In function `IA__gtk_im_multicontext_append_menuitems': : undefined reference to `libintl_bind_textdomain_codeset' /usr/local/lib/libgtk-x11-2.0.a(gtkinvisible.o)(.text+0xbc): In function `gtk_invisible_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkinvisible.o)(.text+0xcf): In function `gtk_invisible_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkoptionmenu.o)(.text+0x121): In function `gtk_option_menu_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkoptionmenu.o)(.text+0x134): In function `gtk_option_menu_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkoptionmenu.o)(.text+0x16a): In function `gtk_option_menu_class_intern_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libgtk-x11-2.0.a(gtkoptionmenu.o)(.text+0x17d): more undefined references to `libintl_dgettext' follow /usr/local/lib/libatk-1.0.a(atkobject.o)(.text+0x3c): In function `gettext_initialization': : undefined reference to `libintl_bindtextdomain' /usr/local/lib/libatk-1.0.a(atkobject.o)(.text+0x4d): In function `gettext_initialization': : undefined reference to `libintl_bind_textdomain_codeset' /usr/local/lib/libatk-1.0.a(atkobject.o)(.text+0x1a5): In function `atk_object_class_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libatk-1.0.a(atkobject.o)(.text+0x1b8): In function `atk_object_class_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libatk-1.0.a(atkobject.o)(.text+0x1ea): In function `atk_object_class_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libatk-1.0.a(atkobject.o)(.text+0x1fd): In function `atk_object_class_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libatk-1.0.a(atkobject.o)(.text+0x233): In function `atk_object_class_init': : undefined reference to `libintl_dgettext' /usr/local/lib/libatk-1.0.a(atkobject.o)(.text+0x246): more undefined references to `libintl_dgettext' follow /usr/local/lib/libgdk_pixbuf-2.0.a(gdk-pixdata.o)(.text+0xb26): In function `IA__gdk_pixbuf_from_pixdata': : undefined reference to `libintl_ngettext' /usr/local/lib/libpangocairo-1.0.a(libpangocairo_1_0_la-pangocairo-fcfontmap.o)(.text+0x11c): In function `pango_cairo_fc_font_map_get_typ e': : undefined reference to `pango_fc_font_map_get_type' /usr/local/lib/libpangocairo-1.0.a(libpangocairo_1_0_la-pangocairo-fcfontmap.o)(.text+0x17): In function `pango_cairo_fc_font_map_set_reso lution': : undefined reference to `pango_fc_font_map_cache_clear' /usr/local/lib/libpangocairo-1.0.a(libpangocairo_1_0_la-pangocairo-fcfont.o)(.text+0x16f): In function `pango_cairo_fc_font_get_type': : undefined reference to `pango_fc_font_get_type' /usr/local/lib/libpangocairo-1.0.a(libpangocairo_1_0_la-pangocairo-fcfont.o)(.text+0x2d7): In function `pango_cairo_fc_font_get_metrics': : undefined reference to `pango_fc_font_map_create_context' /usr/local/lib/libpangocairo-1.0.a(libpangocairo_1_0_la-pangocairo-fcfont.o)(.text+0x300): In function `pango_cairo_fc_font_get_metrics': : undefined reference to `pango_fc_font_create_metrics_for_context' /usr/local/lib/libX11.a(ConnDis.o)(.text+0xa74): In function `_X11TransConnectDisplay': : undefined reference to `XauDisposeAuth' /usr/local/lib/libX11.a(ConnDis.o)(.text+0xb4b): In function `_X11TransConnectDisplay': : undefined reference to `XauGetBestAuthByAddr' /usr/local/lib/libX11.a(ConnDis.o)(.text+0xd80): In function `_X11TransConnectDisplay': : undefined reference to `XdmcpWrap' /usr/local/lib/libglib-2.0.a(gconvert.o)(.text+0x1d): In function `try_conversion': : undefined reference to `libiconv_open' /usr/local/lib/libglib-2.0.a(gconvert.o)(.text+0x141): In function `IA__g_iconv': : undefined reference to `libiconv' /usr/local/lib/libglib-2.0.a(gconvert.o)(.text+0x14d): In function `IA__g_iconv_close': : undefined reference to `libiconv_close' /usr/local/lib/libglib-2.0.a(goption.o)(.text+0x24fd): In function `dgettext_swapped': : undefined reference to `libintl_dgettext' /usr/local/lib/libglib-2.0.a(gutils.o)(.text+0x1f10): In function `_glib_gettext': : undefined reference to `libintl_dgettext' /usr/local/lib/libglib-2.0.a(gutils.o)(.text+0x1f26): In function `_glib_gettext': : undefined reference to `libintl_bindtextdomain' /usr/local/lib/libglib-2.0.a(gutils.o)(.text+0x1f37): In function `_glib_gettext': : undefined reference to `libintl_bind_textdomain_codeset' /usr/local/lib/libglib-2.0.a(gutils.o)(.text+0x1f54): In function `_glib_gettext': : undefined reference to `libintl_dgettext' There were errors. (0:10.38) From owner-freebsd-ports@FreeBSD.ORG Mon Aug 13 11:38:42 2007 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 8511F16A417 for ; Mon, 13 Aug 2007 11:38:42 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 5B86713C468 for ; Mon, 13 Aug 2007 11:38:42 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id C340351934 for ; Mon, 13 Aug 2007 07:38:40 -0400 (EDT) Date: Mon, 13 Aug 2007 12:38:37 +0100 From: RW To: freebsd-ports@freebsd.org Message-ID: <20070813123837.5436aeec@gumby.homeunix.com.> In-Reply-To: <20070813081446.6nxh47n64ocg8ksk@webmail.leidinger.net> References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811145314.A47727@obelix.home.rakhesh.com> <20070811203322.GA78245@eos.sc1.parodius.com> <20070811225858.7eb933ef@gumby.homeunix.com.> <20070812142059.35077b0d@deskjail> <20070812181810.2b17d85f@gumby.homeunix.com.> <20070813081446.6nxh47n64ocg8ksk@webmail.leidinger.net> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 13 Aug 2007 11:38:42 -0000 On Mon, 13 Aug 2007 08:14:46 +0200 Alexander Leidinger wrote: > Quoting RW (from Sun, 12 Aug 2007 > 18:18:10 +0100): > > > On Sun, 12 Aug 2007 14:20:59 +0200 > > Alexander Leidinger wrote: > > > >> Quoting RW (Sat, 11 Aug 2007 22:58:58 > >> +0100): > > Actually having dependencies package version mismatches needn't > > cause any significant problems. > > It does cause problems. You have no +REQUIRED_BY file anymore, so > pkg_delete allows you to remove it without a warning even if it is > still needed. I didn't say it doesn't, I said it needn't. When I have to remove a package manually as part of an upgrade, I use "pkg_delete -f", so it doesn't matter. When I prune ports I use "portmanager -slid" which doesn't rely on +REQUIRED_BY, and provides additional protection against build-dependency deletion which you don't get from pkg_delete. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 13 19:44:22 2007 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 ADF8A16A417 for ; Mon, 13 Aug 2007 19:44:22 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (cl-162.ewr-01.us.sixxs.net [IPv6:2001:4830:1200:a1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 3407E13C442 for ; Mon, 13 Aug 2007 19:44:22 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (localhost [127.0.0.1]) by lor.one-eyed-alien.net (8.13.8/8.13.8) with ESMTP id l7DJiK59079343; Mon, 13 Aug 2007 14:44:20 -0500 (CDT) (envelope-from brooks@lor.one-eyed-alien.net) Received: (from brooks@localhost) by lor.one-eyed-alien.net (8.13.8/8.13.8/Submit) id l7DJiKHH079342; Mon, 13 Aug 2007 14:44:20 -0500 (CDT) (envelope-from brooks) Date: Mon, 13 Aug 2007 14:44:20 -0500 From: Brooks Davis To: Vivek Khera Message-ID: <20070813194420.GA76135@lor.one-eyed-alien.net> References: <20070809101402.B98213@obelix.home.rakhesh.com> <20070809065503.GI1244@turion.vk2pj.dyndns.org> <8F9EDD82-0747-4DE2-825D-EE70470BBFAD@khera.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline In-Reply-To: <8F9EDD82-0747-4DE2-825D-EE70470BBFAD@khera.org> User-Agent: Mutt/1.5.15 (2007-04-06) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (lor.one-eyed-alien.net [127.0.0.1]); Mon, 13 Aug 2007 14:44:21 -0500 (CDT) Cc: freebsd ports Subject: Re: ca-roots expired? 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, 13 Aug 2007 19:44:22 -0000 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 09, 2007 at 10:04:14AM -0400, Vivek Khera wrote: >=20 > On Aug 9, 2007, at 2:55 AM, Peter Jeremy wrote: >=20 > > There's a security/ca_root_nss port that installs the root certificate > > bundle from the Mozilla project. There are some differences between > > this set and those installed by the ca-roots port. >=20 > I found a mkcabundle program at=20 > http://www.mail-archive.com/modssl-users@modssl.org/msg16980.html which= =20 > fetches the NSS data via cvs and creates the file locally. >=20 > The port seems to fetch a lot of source files just to get the data and t= he=20 > script to convert the data, but has the advantage of the ports=20 > infrastructure letting you know when it needs updating. I'd prefer not to download the mod_ssl source, but it's unclear if maintaining a copy of the script in ports would be OK under the license so I just punted do download the whole thing. If someone contacts the original author and gets license clarification (ideally BSD or public domain) on the script I'd be happy to include it in the ports and save that download. I think downloading nss is the right thing to do as it clearly delegates the trust issues to the Mozilla Project. -- Brooks --EeQfGwPcQSOJBaQU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGwLSTXY6L6fI4GtQRAgWXAJkBA6n82W6qCg76+fbeARAF1htCRwCghuBv Obhnsne6MBUZkiMfo7DL2vo= =NdYV -----END PGP SIGNATURE----- --EeQfGwPcQSOJBaQU-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 00:05:13 2007 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 12C3716A469 for ; Tue, 14 Aug 2007 00:05:13 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.ipv6.droso.net [IPv6:2001:6c8:6:0:206:5bff:fef8:267d]) by mx1.freebsd.org (Postfix) with ESMTP id 0213C13C467 for ; Tue, 14 Aug 2007 00:05:11 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 1D2451CC3B for ; Tue, 14 Aug 2007 02:05:11 +0200 (CEST) From: linimon@FreeBSD.org To: ports@freebsd.org Message-Id: <20070814000511.1D2451CC3B@mail.droso.net> Date: Tue, 14 Aug 2007 02:05:11 +0200 (CEST) Cc: Subject: FreeBSD ports that you maintain which are currently marked broken 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, 14 Aug 2007 00:05:13 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we are attempting to notify maintainers of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc3.4, which is much stricter about such things as function declarations, literal strings constants that continue over several physical lines, and forcing the deprecation of antique header files such as varargs.h (we should now be using stdargs.h). The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. If you need help in one or more build environments that you do not have access to, please ask for help on the freebsd-ports mailing list. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 4.x/5.x/6.x with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: chinese/xemacs broken because: Does not build even with fix for -lxpg4 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2007072718/zh-xemacs-20.4_3.log (Aug 1 16:18:58 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=xemacs portname: databases/mysql-query-browser broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=mysql-query-browser portname: devel/pear-apd broken because: Incomplete pkg-plist build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.6.2007080916/pear-apd-1.0.1,1.log (Jul 30 02:56:17 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=pear-apd portname: ftp/junglemonkey broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=junglemonkey portname: japanese/lynx broken because: Leaves behind config file on deinstall build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=lynx portname: mail/mew-emacs20 broken because: Hangs during build build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2007080805/mew-emacs20-5.2_1.log (Aug 1 21:32:33 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=mew-emacs20 portname: math/ses broken because: Does not build build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2007072718/ses-031130_1.log (Aug 1 19:17:53 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=ses portname: print/bjfilter360 broken because: Incomplete pkg-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=bjfilter360 portname: print/bjfilter850 broken because: Incomplete pkg-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=bjfilter850 portname: print/bjfilter850ug broken because: Incomplete pkg-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=bjfilter850ug portname: print/bjfilter860 broken because: Incomplete pkg-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=bjfilter860 portname: print/bjfilter870 broken because: Incomplete pkg-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=bjfilter870 portname: print/bjfiltercom broken because: Incomplete pkg-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=bjfiltercom portname: print/bjfilters600 broken because: Incomplete pkg-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=bjfilters600 portname: print/bjfilters630 broken because: Incomplete pkg-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=bjfilters630 portname: print/bjfilters6300 broken because: Incomplete pkg-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=bjfilters6300 portname: science/felt broken because: Does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.6.2007052100/felt-3.06_2.log (Jun 21 08:23:23 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=felt portname: science/ovt broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=ovt portname: sysutils/sjog broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=sjog portname: textproc/Ebnf2ps broken because: Does not build build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.2007073017/Ebnf2ps-1.05_3.log (Jul 18 23:14:15 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=Ebnf2ps portname: textproc/ruby-sablot broken because: Checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=ruby-sablot portname: www/mod_auth_mysql broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=mod_auth_mysql portname: www/p5-Apache-AuthenCache broken because: Broken due the new mod_perl2 API build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-Apache-AuthenCache portname: www/rt3 broken because: Broken due the new mod_perl2 API build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=rt3 portname: www/rt32 broken because: Broken due the new mod_perl2 API build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=rt32 portname: x11-themes/kde-icons-kids broken because: Unfetchable build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.2007073017/kde-icons-kids-0.8.log (Jul 18 23:39:25 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kde-icons-kids portname: x11-themes/kde-icons-noia broken because: Unfetchable build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.5.2006121119/kde-icons-noia-1.00.log.bz2 (Oct 6 19:57:48 UTC 2006) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kde-icons-noia portname: x11-themes/kde-icons-noia-warm broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kde-icons-noia-warm portname: x11-themes/kde-icons-outline broken because: Unfetchable build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.2007073017/kde-icons-outline-0.1.0.log (Jul 19 00:10:11 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kde-icons-outline portname: x11-toolkits/p5-qt broken because: Configure fails build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.6.2007052100/p5-qt-3.008_2.log (Jun 21 09:24:24 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=p5-qt portname: x11-wm/alloywm broken because: Checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=alloywm portname: x11/grabc broken because: Checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=grabc If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 00:06:26 2007 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 F21C416A421 for ; Tue, 14 Aug 2007 00:06:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.ipv6.droso.net [IPv6:2001:6c8:6:0:206:5bff:fef8:267d]) by mx1.freebsd.org (Postfix) with ESMTP id E352513C457 for ; Tue, 14 Aug 2007 00:06:25 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id CAD491CC6C for ; Tue, 14 Aug 2007 02:06:24 +0200 (CEST) From: linimon@FreeBSD.org To: ports@freebsd.org Message-Id: <20070814000624.CAD491CC6C@mail.droso.net> Date: Tue, 14 Aug 2007 02:06:24 +0200 (CEST) Cc: Subject: FreeBSD ports which depend on ports currently scheduled for deletion 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, 14 Aug 2007 00:06:27 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports listed in this email are ports that depend on one or more of the ports that are scheduled to be removed, but are not yet themselves on the list. However, once those ports are removed, these ports will then become broken, and thus the reason for this email. Affected port: portname: audio/gaim-festival deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gaim-festival Expiring ports upon which this one depends: portname: net-im/gaim deprecated because: Obsolete version, use net-im/pidgin instead expiration date: 2007-08-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=gaim Affected port: portname: games/hlserver-esf deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-esf Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-existence deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-existence Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-glbwar deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-glbwar Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-heroes deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-heroes Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-ns deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-ns Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-opfor deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-opfor Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-si deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-si Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-ts deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-ts Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-vs deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-vs Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-wasteland deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-wasteland Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: games/hlserver-wizwars deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-wizwars Expiring ports upon which this one depends: portname: games/halflifeserver deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver Affected port: portname: graphics/gimpshop deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=gimpshop Expiring ports upon which this one depends: portname: print/gimp-print deprecated because: gimp-print has been renamed gutenprint (print/gutenprint), please consider using it. expiration date: 2007-07-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=gimp-print Affected port: portname: japanese/elisp-manual deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=elisp-manual Expiring ports upon which this one depends: portname: editors/emacs20 deprecated because: editors/emacs is recommended instead for new installations expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=emacs20 Affected port: portname: japanese/emacs-manual deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=emacs-manual Expiring ports upon which this one depends: portname: editors/emacs20 deprecated because: editors/emacs is recommended instead for new installations expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=emacs20 Affected port: portname: print/acrobatviewer deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=acrobatviewer Expiring ports upon which this one depends: portname: java/jre deprecated because: For obsolete version of jdk; depends on forbidden compat3x package expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jre Affected port: portname: print/ruby-clibpdf deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=ruby-clibpdf Expiring ports upon which this one depends: portname: print/clibpdf deprecated because: distfile and homepage disappeared expiration date: 2007-01-04 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=clibpdf Affected port: portname: x11/9term deprecated because: build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=9term Expiring ports upon which this one depends: portname: editors/sam deprecated because: distfile and homepage disappeared expiration date: 2007-01-04 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=sam From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 00:07:01 2007 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 AD47716A417 for ; Tue, 14 Aug 2007 00:07:01 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.ipv6.droso.net [IPv6:2001:6c8:6:0:206:5bff:fef8:267d]) by mx1.freebsd.org (Postfix) with ESMTP id 5AE1713C45E for ; Tue, 14 Aug 2007 00:06:59 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 904951CC46 for ; Tue, 14 Aug 2007 02:06:58 +0200 (CEST) From: linimon@FreeBSD.org To: ports@FreeBSD.org Message-Id: <20070814000658.904951CC46@mail.droso.net> Date: Tue, 14 Aug 2007 02:06:58 +0200 (CEST) Cc: Subject: FreeBSD ports which are currently scheduled for deletion 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, 14 Aug 2007 00:07:01 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems, the ports will be deleted. The goal of this posting is to make this process much more visible to the wider FreeBSD community. portname: audio/linux-mbrola description: MBROLA voice synthesizer maintainer: ports@FreeBSD.org deprecated because: relies on forbidden port misc/compat3x; last release 2000 expiration date: 2007-09-21 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-mbrola portname: audio/mbrola description: MBROLA voice synthesizer maintainer: ports@FreeBSD.org deprecated because: relies on forbidden port misc/compat3x; last release 2000 expiration date: 2007-09-21 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=mbrola portname: chinese/emacs20 description: GNU editing macros maintainer: clive@FreeBSD.org deprecated because: editors/emacs is recommended instead for new installations expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=emacs20 portname: chinese/mule-freewnn description: Multilingual emacs, with FreeWnn support built in (Only the executables) maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/zh-mule-freewnn-2.3_5.log (Jul 5 06:12:39 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=mule-freewnn portname: chinese/xemacs description: XEmacs text editor version 20, with XIM support and Big5 settings maintainer: ports@FreeBSD.org status: BROKEN deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2007072718/zh-xemacs-20.4_3.log (Aug 1 16:18:58 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=xemacs portname: comms/ixj description: Driver for Quicknet Internet PhoneJack and LineJack. Used by OpenH323 maintainer: ports@FreeBSD.org status: IGNORE deprecated because: does not work on any supported FreeBSD version expiration date: 2007-07-29 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=ixj portname: converters/mule-ucs-emacs20 description: Universal encoding system for GNU Emacs 20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=converters&portname=mule-ucs-emacs20 portname: databases/bbdb-emacs20 description: Big Brother Database maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=bbdb-emacs20 portname: databases/java-sqlrelay description: Java classes to access to SQL Relay maintainer: ports@FreeBSD.org deprecated because: Depends on obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=java-sqlrelay portname: databases/lsdb-emacs20 description: Lovely Sister Database maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007080300/lsdb-emacs20-0.10_1.log (Aug 7 20:05:58 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=lsdb-emacs20 portname: databases/pgbash description: SQL Bash Shell for PostgreSQL maintainer: ports@FreeBSD.org deprecated because: Last release in 2003, relies on outdated Postgre 7.3 and bash 2.05a expiration date: 2007-09-15 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/pgbash-7.3_2.log (Jul 5 07:20:05 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=pgbash portname: deskutils/mhc-emacs20 description: Message Harmonized Calendaring system maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=mhc-emacs20 portname: devel/eieio-emacs20 description: Enhanced Integration of Emacs Interpreted Objects maintainer: dryice@dryice.name deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=eieio-emacs20 portname: devel/elib-emacs19 description: Collection of useful routines for Emacs lisp programs maintainer: ports@FreeBSD.org deprecated because: emacs19 is obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=elib-emacs19 portname: devel/elib-emacs20 description: Collection of useful routines for Emacs lisp programs maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=elib-emacs20 portname: devel/gnu-autoconf description: Automatically configure source code on many Un*x platforms (GNU unmodified) maintainer: ade@FreeBSD.org deprecated because: Use devel/autotools instead expiration date: 2007-09-11 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=gnu-autoconf portname: devel/gnu-automake description: GNU Standards-compliant Makefile generator (GNU unmodified) maintainer: ade@FreeBSD.org deprecated because: Use devel/autotools instead expiration date: 2007-09-11 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=gnu-automake portname: devel/hs-green-card description: A foreign function interface preprocessor for Haskell maintainer: haskell@FreeBSD.org status: BROKEN deprecated because: Does not build with latest GHC expiration date: 2007-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=hs-green-card portname: devel/hs-hpl description: Haskell Ports Library provides ports in Haskell maintainer: haskell@FreeBSD.org status: BROKEN deprecated because: Does not build with latest GHC expiration date: 2007-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=hs-hpl portname: devel/p5-Getopt-Mixed description: Perl module for processing of both short and long command line options maintainer: ports@FreeBSD.org deprecated because: Use devel/p5-Getopt-Long instead expiration date: 2007-04-23 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=p5-Getopt-Mixed portname: devel/pcl-cvs-emacs20 description: An Emacs-based front-end to CVS maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=pcl-cvs-emacs20 portname: devel/qextmdi description: Qt extension for creating SDI/MDI user interfaces maintainer: ports@FreeBSD.org deprecated because: is unfetchable, website disappeared expiration date: 2007-03-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=qextmdi portname: devel/semantic-emacs20 description: A lexer, parser-generator, and parser for Emacs maintainer: dryice@dryice.name deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=semantic-emacs20 portname: editors/apel-emacs20 description: A Portable Emacs Library for emacs20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=apel-emacs20 portname: editors/bitmap-emacs20 description: Bitmap-mule, Package to use bitmap in Emacs20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=bitmap-emacs20 portname: editors/emacs19 description: GNU editing macros maintainer: ports@FreeBSD.org deprecated because: emacs19 is obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=emacs19 portname: editors/emacs20 description: GNU editing macros maintainer: ports@FreeBSD.org deprecated because: editors/emacs is recommended instead for new installations expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=emacs20 portname: editors/flim-emacs20 description: FLIM, message representation or encoding elisp library for emacs20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=flim-emacs20 portname: editors/gnuserv-emacs20 description: A standalone release of gnuserv for GNU Emacs maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=gnuserv-emacs20 portname: editors/iiimecf description: Internet/Intranet Input Method Emacs Client Framework for GNU Emacs 20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=iiimecf portname: editors/leim20 description: Libraries of (GNU) Emacs Input Method maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=leim20 portname: editors/mule description: A multilingual emacs based 19.34 (Only the executables) maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=mule portname: editors/mule-common description: For a multilingual emacs, emacs lisp files, info pages, etc (except executables) maintainer: ports@FreeBSD.org status: IGNORE deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=mule-common portname: editors/psgml-emacs19 description: A major mode for editing SGML and XML documents for emacs19 maintainer: ports@FreeBSD.org deprecated because: emacs19 is obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=psgml-emacs19 portname: editors/psgml-emacs20 description: A major mode for editing SGML and XML documents for emacs20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=psgml-emacs20 portname: editors/psgml-mule description: A major mode for editing SGML and XML documents for mule maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=psgml-mule portname: editors/sam description: A unix version of Rob Pike's editor for plan9 maintainer: ports@FreeBSD.org deprecated because: distfile and homepage disappeared expiration date: 2007-01-04 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=sam portname: editors/scite description: A full-featured SCIntilla based Text Editor for GTK/GNOME maintainer: ports@FreeBSD.org status: IGNORE deprecated because: is unusable, writing text does not work expiration date: 2007-09-30 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=scite portname: editors/semi-emacs20 description: SEMI, Library of MIME feature for GNU Emacs for emacs20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=semi-emacs20 portname: editors/speedbar-emacs20 description: Quick access to files and tags in an Emacs frame maintainer: dryice@dryice.name deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=speedbar-emacs20 portname: editors/tamago-emacs20 description: The Multilingual Input Method - Egg V4 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=tamago-emacs20 portname: games/ggo description: PandaNet's IGS Client, GNU Go Client and SGF Editor maintainer: jonc@chen.org.nz deprecated because: developer's focus have moved elsewhere expiration date: 2007-10-03 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=ggo portname: games/halflifeserver description: Steam Enabled Half-Life Dedicated Server with CS and DOD maintainer: pat@FreeBSD.org status: BROKEN deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=halflifeserver portname: games/hlserver-cs description: Half-Life mod Counter-Strike full server package for Linux maintainer: pat@FreeBSD.org status: BROKEN deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-cs portname: games/hlserver-dod description: Half-Life mod Day of Defeat full server package for Linux maintainer: pat@FreeBSD.org status: BROKEN deprecated because: Incomplete fetch instructions expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-dod portname: games/hlserver-psychostats description: Popular player statistics generator for Half-Life (cs/dod) maintainer: ports@FreeBSD.org deprecated because: outdated, unmaintained expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-psychostats portname: games/linux-x-plane-net-installer description: The X-Plane network installer maintainer: jylefort@FreeBSD.org status: BROKEN deprecated because: Unfetchable expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=linux-x-plane-net-installer portname: graphics/gimp-pmosaic description: Photo/Image Mosaic plugin for gimp maintainer: kuriyama@FreeBSD.org deprecated because: Unfetchable; withdrawn by author for legal reasons; for obsolete version of GIMP expiration date: 2007-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=gimp-pmosaic portname: graphics/gimp1 description: The GNU Image Manipulation Program maintainer: gnome@FreeBSD.org deprecated because: New stable release 2.0 can be installed via graphics/gimp port expiration date: 2007-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=gimp1 portname: graphics/xpcd description: PhotoCD tool collection maintainer: ports@FreeBSD.org status: FORBIDDEN deprecated because: is an abandoned project and might be vulnerable expiration date: 2007-07-21 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/xpcd-2.09_1.log (Jun 24 04:44:02 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=xpcd portname: irc/irchat-pj-emacs20 description: IRC client which runs under Emacsen maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=irchat-pj-emacs20 portname: irc/irchat-pj-emacs21 description: IRC client which runs under Emacsen maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=irchat-pj-emacs21 portname: irc/irchat-pj-xemacs21-mule description: IRC client which runs under Emacsen maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=irchat-pj-xemacs21-mule portname: irc/pure-emacs20 description: Primitive Universal Relay-chat Environment maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=pure-emacs20 portname: irc/pure-emacs21 description: Primitive Universal Relay-chat Environment maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=pure-emacs21 portname: irc/pure-xemacs21-mule description: Primitive Universal Relay-chat Environment maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=pure-xemacs21-mule portname: irc/riece-emacs20 description: IRC client for Emacs maintainer: yasu@utahime.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=riece-emacs20 portname: japanese/ddskk-emacs20 description: Simple Kana to Kanji conversion program on Emacsen maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=ddskk-emacs20 portname: japanese/diclookup-emacs20 description: CDROM dictionary client for emacs. (needs ndtpd or dserver package) maintainer: mita@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=diclookup-emacs20 portname: japanese/diclookup-mule description: CDROM dictionary client for mule maintainer: mita@jp.FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=diclookup-mule portname: japanese/emacs20-emcws description: Emacs + Canna + Wnn + Sj3 maintainer: nakaji@jp.freebsd.org deprecated because: editors/emacs20 is also deprecated expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=emacs20-emcws portname: japanese/gaim description: Multi-protocol instant messaging client maintainer: freebsd@next-generation.org deprecated because: Obsolete version, use net-im/pidgin instead expiration date: 2007-08-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=gaim portname: japanese/lookup-emacs20 description: Search interface on emacs20 for CD-ROM books, etc maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=lookup-emacs20 portname: japanese/lynx description: A terminal-based World-Wide Web Client with multi-byte modification maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Leaves behind config file on deinstall expiration date: 2007-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=lynx portname: japanese/migemo-emacs20 description: Japanese incremental search tool for emacs20 maintainer: nobutaka@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=migemo-emacs20 portname: japanese/mule-canna description: A multilingual emacs, with Canna support built in (Only the executables) maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-canna portname: japanese/mule-canna+freewnn description: Multilingual emacs, with Canna and FreeWnn support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007080300/ja-mule-canna+freewnn-2.3_5.log (Aug 7 19:49:01 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-canna%2Bfreewnn portname: japanese/mule-canna+freewnn+sj3 description: Multilingual emacs, with Canna, sj3, and FreeWnn support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-canna%2Bfreewnn%2Bsj3 portname: japanese/mule-canna+sj3 description: A multilingual emacs, with Canna and sj3 support built in (Only the executables) maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-canna%2Bsj3 portname: japanese/mule-canna+sj3+wnn6 description: Multilingual emacs, with Canna, sj3, Wnn4, and Wnn6 support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-canna%2Bsj3%2Bwnn6 portname: japanese/mule-canna+sj3+wnn7 description: A multilingual emacs, with Canna, sj3, FreeWnn, Wnn6 and Wnn7 support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-canna%2Bsj3%2Bwnn7 portname: japanese/mule-canna+wnn6 description: Multilingual emacs, with Canna, Wnn4, and Wnn6 support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/ja-mule-canna+wnn6-2.3_5.log (Jul 5 06:12:49 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-canna%2Bwnn6 portname: japanese/mule-canna+wnn7 description: A multilingual emacs, with Canna, FreeWnn, Wnn6 and Wnn7 support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/ja-mule-canna+wnn7-2.3_5.log (Jul 5 06:12:56 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-canna%2Bwnn7 portname: japanese/mule-freewnn description: A multilingual emacs, with FreeWnn support built in (Only the executables) maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/ja-mule-freewnn-2.3_5.log (Jul 5 06:12:53 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-freewnn portname: japanese/mule-freewnn+sj3 description: A multilingual emacs, with sj3 and FreeWnn support built in (Only the executables) maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-freewnn%2Bsj3 portname: japanese/mule-sj3 description: A multilingual emacs, with SJ3 support built in (Only the executables) maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-sj3 portname: japanese/mule-sj3+wnn6 description: Multilingual emacs, with sj3, Wnn4, and Wnn6 support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-sj3%2Bwnn6 portname: japanese/mule-sj3+wnn7 description: A multilingual emacs, with sj3, FreeWnn, Wnn6 and Wnn7 support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-sj3%2Bwnn7 portname: japanese/mule-wnn6 description: Multilingual emacs, with Wnn4, and Wnn6 support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/ja-mule-wnn6-2.3_5.log (Jul 5 06:15:08 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-wnn6 portname: japanese/mule-wnn7 description: A multilingual emacs, with FreeWnn, Wnn6 and Wnn7 support built-in maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/ja-mule-wnn7-2.3_5.log (Jul 5 06:13:39 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mule-wnn7 portname: japanese/navi2ch-emacs20 description: 2ch.net and 2ch-like BBS navigator for Emacsen maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=navi2ch-emacs20 portname: japanese/navi2ch-emacs21 description: 2ch.net and 2ch-like BBS navigator for Emacsen maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=navi2ch-emacs21 portname: japanese/navi2ch-xemacs21-mule description: 2ch.net and 2ch-like BBS navigator for Emacsen maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=navi2ch-xemacs21-mule portname: japanese/netypesv description: Network Type Trainer server program maintainer: mutoh@openedu.org deprecated because: Depends on obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=netypesv portname: japanese/skk10-elisp-emacs20 description: Emacs-lisp frontend for the SKK-10 Japanese Input Method maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=skk10-elisp-emacs20 portname: japanese/vje30 description: Modern intelligent Japanese input engine (purchase version) maintainer: ports@FreeBSD.org deprecated because: depends on forbidden port misc/compat3x expiration date: 2007-09-21 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=vje30 portname: japanese/w3 description: WWW browser based on emacs/mule maintainer: ports@FreeBSD.org deprecated because: distfile is 10 years old and depends on emacs19 which is obsolete expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=w3 portname: japanese/weather-emacs20 description: Weather Report in Japanese Regions maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=weather-emacs20 portname: java/collections description: JDK1.2 Collections\' API for JDK1.1 environments maintainer: java@freebsd.org status: IGNORE deprecated because: only needed for jdk1.1, which is obsolete expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=collections portname: java/gj-jdk11 description: Extension of the Java programming language that supports generic types maintainer: vs@FreeBSD.org deprecated because: Modern versions of jdk support generics natively expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=gj-jdk11 portname: java/jdk11 description: Java Development Kit 1.1 maintainer: glewis@FreeBSD.org deprecated because: Obsolete version; depends on forbidden compat3x package expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jdk11 portname: java/jdk11-doc description: Java Development Kit 1.1 Documentation maintainer: java@FreeBSD.org deprecated because: Obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jdk11-doc portname: java/jdk12 description: Java Development Kit 1.2 maintainer: glewis@FreeBSD.org status: IGNORE deprecated because: Obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jdk12 portname: java/jdk12-doc description: Java Development Kit 1.2 Documentation maintainer: java@FreeBSD.org deprecated because: Obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jdk12-doc portname: java/jfc description: Java Foundation Classes (JFC)/Swing maintainer: kuriyama@FreeBSD.org status: IGNORE deprecated because: For obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jfc portname: java/jre description: Standard Java Platform for running Java programs maintainer: ports@FreeBSD.org deprecated because: For obsolete version of jdk; depends on forbidden compat3x package expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jre portname: java/linux-blackdown-jdk12 description: Blackdown Java Development Kit 1.2 for Linux maintainer: java@FreeBSD.org deprecated because: Obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=linux-blackdown-jdk12 portname: java/linux-sun-jdk12 description: Sun Java Development Kit 1.2 for Linux maintainer: java@FreeBSD.org status: IGNORE deprecated because: Obsolete version of jdk expiration date: 2007-08-22 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007080300/linux-sun-jdk-1.2.2.017_3.log (Aug 7 19:48:15 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=linux-sun-jdk12 portname: korean/hanemacs description: Korean version of GNU editing macros maintainer: cjh@FreeBSD.org status: BROKEN deprecated because: depends on emacs19 which is obsolete expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=korean&portname=hanemacs portname: korean/mule-freewnn description: A multilingual emacs, with FreeWnn support built in (Only the executables) maintainer: ports@FreeBSD.org deprecated because: emacs19 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/ko-mule-freewnn-2.3_5.log (Jul 5 06:13:55 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=korean&portname=mule-freewnn portname: lang/f2py description: Fortran to Python Interface Generator maintainer: ports@FreeBSD.org deprecated because: Replaced by py-numpy expiration date: 2007-04-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=f2py portname: lang/fesi description: Free EcmaScript Interpreter written in Java maintainer: ports@FreeBSD.org deprecated because: Depends on obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=fesi portname: lang/gnat-gcc34 description: The GNU Ada Compiler system maintainer: karel@lovetemple.net deprecated because: This port was made for initial bootstraping of later versions and is no longer needed expiration date: 2007-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=gnat-gcc34 portname: lang/gnomebasic description: Provide VB compatible functionality for GNOME, especially VBA maintainer: gnome@FreeBSD.org deprecated because: Five years abandoned project; functionality folded into mono expiration date: 2007-09-04 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/gnomebasic-0.0.20_3.log (Jul 5 06:54:27 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=gnomebasic portname: lang/tuareg-mode.el description: Emacs major mode for editing Caml code maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; this port needs an update expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=tuareg-mode.el portname: mail/emh-emacs20 description: MIME extension of mh-e.el maintainer: yoichi@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=emh-emacs20 portname: mail/mew-emacs20 description: Messaging in the Emacs World for emacs20 maintainer: ports@FreeBSD.org status: BROKEN deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2007080805/mew-emacs20-5.2_1.log (Aug 1 21:32:33 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=mew-emacs20 portname: mail/mew2-emacs20 description: Message interface to Emacs Window (version 2) for emacs20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=mew2-emacs20 portname: mail/mew3-emacs20 description: Message interface to Emacs Window (version 3) for emacs20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=mew3-emacs20 portname: mail/rmime description: Decode MIME messages inside Emacs (works with RMAIL, VM, and mh-e) maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; also, distfile is unfetchable expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=rmime portname: mail/wanderlust-emacs20 description: Yet another message interface on Emacsen maintainer: nobutaka@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=wanderlust-emacs20 portname: mail/yuzu description: A nicer mail user agent powered by JavaMail and JFC/Swing maintainer: daichi@freebsd.org deprecated because: Depends on obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=yuzu portname: misc/freeguide description: An interactive TV guide which will create personalized TV listings maintainer: ports@FreeBSD.org deprecated because: Old version, no maintainer expiration date: 2007-11-25 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=freeguide portname: misc/mango description: A recipe management software maintainer: ports@FreeBSD.org deprecated because: Depends on broken package qextmdi expiration date: 2007-09-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=mango portname: multimedia/nuppelvideo description: A very low CPU usage VCR/DVR application maintainer: steve@sohara.org deprecated because: Unmaintained upstream for years. The nuppelvideo format is now supported by mencoder expiration date: 2007-10-03 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.5.2006121119/NuppelVideo-0.52.a_2.log (Dec 28 18:14:09 UTC 2006) http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/NuppelVideo-0.52.a_3.log (Jul 5 06:23:19 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=nuppelvideo portname: net-im/gaim description: Multi-protocol instant messaging client maintainer: marcus@FreeBSD.org deprecated because: Obsolete version, use net-im/pidgin instead expiration date: 2007-08-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=gaim portname: net-im/jabber-conference description: Jabber Conferencing module maintainer: mm@FreeBSD.org status: BROKEN deprecated because: Development stalled expiration date: 2007-10-20 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=jabber-conference portname: net-im/jabber-jud description: Jabber User Directory module maintainer: mm@FreeBSD.org status: BROKEN deprecated because: development stalled expiration date: 2007-10-20 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=jabber-jud portname: net-im/jabber-yahoo description: Jabber Yahoo Transport module maintainer: mm@FreeBSD.org status: BROKEN deprecated because: development stalled expiration date: 2007-10-20 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=jabber-yahoo portname: net-mgmt/nsc description: Netsaint Console monitor maintainer: ports@FreeBSD.org deprecated because: Project abandoned expiration date: 2007-10-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=nsc portname: net/ng_netflow description: Netgraph node implementing Cisco (c) netflow maintainer: glebius@FreeBSD.org deprecated because: already in base in all supported versions of FreeBSD expiration date: 2007-08-29 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=ng_netflow portname: net/openbgpd-devel description: Free implementation of the Border Gateway Protocol, Version 4 maintainer: farrokhi@FreeBSD.org deprecated because: Older version than in openbgpd port, will be removed unless updated expiration date: 2007-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007080300/openbgpd-devel-20060516.log (Aug 7 19:32:27 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=openbgpd-devel portname: net/rboot description: A remote-boot solution for Microsoft operating systems maintainer: ports@FreeBSD.org deprecated because: The project is no longer under development, and has no homepage expiration date: 2007-06-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=rboot portname: news/gnus-emacs20 description: A popular newsreader for emacs20 maintainer: ports@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=news&portname=gnus-emacs20 portname: print/clibpdf description: A library for creating PDF (Acrobat) files directly via C language programs maintainer: ports@FreeBSD.org deprecated because: distfile and homepage disappeared expiration date: 2007-01-04 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=clibpdf portname: print/ghostscript-afpl description: AFPL Postscript interpreter maintainer: ports@FreeBSD.org deprecated because: the leading edge of Ghostscript development is now under GPL license, use print/ghostscript-gpl instead expiration date: 2007-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=ghostscript-afpl portname: print/ghostscript-afpl-nox11 description: AFPL Postscript interpreter maintainer: ports@FreeBSD.org deprecated because: the leading edge of Ghostscript development is now under GPL license, use print/ghostscript-gpl instead expiration date: 2007-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=ghostscript-afpl-nox11 portname: print/gimp-print description: GIMP Print Printer Driver maintainer: ahze@FreeBSD.org deprecated because: gimp-print has been renamed gutenprint (print/gutenprint), please consider using it. expiration date: 2007-07-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=gimp-print portname: security/amavis-perl description: Mail Virus Scanner (uses external antivirus) maintainer: ports@FreeBSD.org deprecated because: depends on misc/compat3x, which has security problems expiration date: 2007-09-21 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=amavis-perl portname: security/amavisd description: The daemonized version of amavis-perl maintainer: ports@FreeBSD.org deprecated because: depends on misc/compat3x, which has security problems; old version expiration date: 2007-09-21 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=amavisd portname: security/ca-roots description: A list of SSL CA root certificates maintainer: secteam@FreeBSD.org deprecated because: Not supported by FreeBSD Security Officer anymore expiration date: 2007-07-07 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=ca-roots portname: security/cyrus-sasl description: RFC 2222 SASL (Simple Authentication and Security Layer) maintainer: ports@FreeBSD.org deprecated because: patches are unfetchable and this software is unsupported expiration date: 2007-01-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=cyrus-sasl portname: security/gaim-otr description: Allows deniable private conversations using GAIM maintainer: ports@mcdermottroe.com deprecated because: Obsolete version, use security/pidgin-otr instead expiration date: 2007-08-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=gaim-otr portname: security/p5-Digest-SHA2 description: Perl interface to the SHA-2 algorithms maintainer: clsung@FreeBSD.org deprecated because: Has numerious known bugs, deprecated in favor of Digest::SHA expiration date: 2007-09-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=p5-Digest-SHA2 portname: security/vncrypt description: Cryptographic disk driver for FreeBSD maintainer: skv@FreeBSD.org deprecated because: not supported on any current version of FreeBSD expiration date: 2007-08-29 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=vncrypt portname: sysutils/cd9660_unicode description: A kernel driver for reading CD disks with non-English filenames maintainer: ports@FreeBSD.org status: IGNORE deprecated because: is obsolete. See mount_cd9660(8) expiration date: 2007-08-29 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=cd9660_unicode portname: sysutils/cdbakeoven description: KDE frontend for cdrecord and mkisofs/mkhybrid maintainer: lofi@freebsd.org deprecated because: Abandonware expiration date: 2007-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=cdbakeoven portname: sysutils/dtc description: A hosting web GUI for admin and accounting all hosting services maintainer: josh@tcbug.org status: BROKEN deprecated because: Broken dependency expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=dtc portname: sysutils/dtc-toaster description: A hosting web GUI for admin and accounting all hosting services maintainer: scrappy@freebsd.org status: BROKEN deprecated because: Broken dependency expiration date: 2007-04-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=dtc-toaster portname: www/emacs-w3m-emacs20 description: Simple front-end to w3m for emacs20 maintainer: nobutaka@FreeBSD.org deprecated because: emacs20 and related ports are obsolete; please use a more recent version expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=emacs-w3m-emacs20 portname: www/hotjava description: Sun's Hotjava web browser maintainer: java@freebsd.org status: IGNORE deprecated because: Depends on obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=hotjava portname: www/mapedit description: A WWW authoring tool to create clickable maps maintainer: araujo@FreeBSD.org deprecated because: Depends on obsolete version of jdk expiration date: 2007-08-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=mapedit portname: www/w3 description: WWW browser based on emacs/mule maintainer: ports@FreeBSD.org deprecated because: distfile is 10 years old and depends on emacs19 which is obsolete expiration date: 2007-08-19 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=w3 portname: www/zope-btreefolder2 description: Zope product that can store many items maintainer: kaeru@inigo-tech.com deprecated because: Included in Zope 2.8 and later expiration date: 2007-08-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=zope-btreefolder2 portname: x11-themes/kde-icons-noia description: KDE Noia complete iconset maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Unfetchable expiration date: 2007-04-10 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.5.2006121119/kde-icons-noia-1.00.log.bz2 (Oct 6 19:57:48 UTC 2006) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kde-icons-noia portname: x11-wm/obtuner description: Configurator for Openbox with keybinding and mousebinding editor maintainer: novel@FreeBSD.org status: BROKEN deprecated because: broken with recent Openbox and the project is not active anymore expiration date: 2007-09-15 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.6.2007062317/obtuner-0.3_2.log (Jul 16 14:01:35 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=obtuner From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 00:07:03 2007 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 D549816A475 for ; Tue, 14 Aug 2007 00:07:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.ipv6.droso.net [IPv6:2001:6c8:6:0:206:5bff:fef8:267d]) by mx1.freebsd.org (Postfix) with ESMTP id 95E4613C442 for ; Tue, 14 Aug 2007 00:07:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id D185D1CC42 for ; Tue, 14 Aug 2007 02:07:02 +0200 (CEST) From: linimon@FreeBSD.org To: ports@freebsd.org Message-Id: <20070814000702.D185D1CC42@mail.droso.net> Date: Tue, 14 Aug 2007 02:07:02 +0200 (CEST) Cc: Subject: FreeBSD ports that you maintain which are currently marked forbidden 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, 14 Aug 2007 00:07:03 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we are attempting to notify maintainers of ports that are marked as "forbidden" in their Makefiles. Often, these ports are so marked due to security concerns, such as known exploits. An overview of the port, including errors seen on the build farm, is included below. portname: graphics/xpcd forbidden because: is an abandoned project and might be vulnerable build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2007070212/xpcd-2.09_1.log (Jun 24 04:44:02 UTC 2007) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=xpcd portname: misc/compat3x forbidden because: FreeBSD-SA-03:05.xdr, FreeBSD-SA-03:08.realpath - not fixed / no lib available build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=compat3x If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 06:58:25 2007 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 EF3D516A418 for ; Tue, 14 Aug 2007 06:58:25 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 793BE13C459 for ; Tue, 14 Aug 2007 06:58:25 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A558D0.dip.t-dialin.net [84.165.88.208]) by redbull.bpaserver.net (Postfix) with ESMTP id 4DE192E1CE; Tue, 14 Aug 2007 08:58:16 +0200 (CEST) Received: from webmail.leidinger.net (webmail.Leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 62B665B4926; Tue, 14 Aug 2007 08:58:13 +0200 (CEST) Received: (from www@localhost) by webmail.leidinger.net (8.13.8/8.13.8/Submit) id l7E6wDQu072643; Tue, 14 Aug 2007 08:58:13 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Tue, 14 Aug 2007 08:58:13 +0200 Message-ID: <20070814085813.4i1rprmzjks08ogo@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Tue, 14 Aug 2007 08:58:13 +0200 From: Alexander Leidinger To: RW References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811145314.A47727@obelix.home.rakhesh.com> <20070811203322.GA78245@eos.sc1.parodius.com> <20070811225858.7eb933ef@gumby.homeunix.com.> <20070812142059.35077b0d@deskjail> <20070812181810.2b17d85f@gumby.homeunix.com.> <20070813081446.6nxh47n64ocg8ksk@webmail.leidinger.net> <20070813123837.5436aeec@gumby.homeunix.com.> In-Reply-To: <20070813123837.5436aeec@gumby.homeunix.com.> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) / FreeBSD-7.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.9, required 8, BAYES_00 -15.00, DKIM_POLICY_SIGNSOME 0.00, RDNS_DYNAMIC 0.10) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-ports@freebsd.org Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 14 Aug 2007 06:58:26 -0000 Quoting RW (from Mon, 13 Aug 2007 =20 12:38:37 +0100): > On Mon, 13 Aug 2007 08:14:46 +0200 > Alexander Leidinger wrote: > >> Quoting RW (from Sun, 12 Aug 2007 >> 18:18:10 +0100): >> >> > On Sun, 12 Aug 2007 14:20:59 +0200 >> > Alexander Leidinger wrote: >> > >> >> Quoting RW (Sat, 11 Aug 2007 22:58:58 >> >> +0100): > >> > Actually having dependencies package version mismatches needn't >> > cause any significant problems. >> >> It does cause problems. You have no +REQUIRED_BY file anymore, so >> pkg_delete allows you to remove it without a warning even if it is >> still needed. > > I didn't say it doesn't, I said it needn't. When I have to remove a It will. No doubts about this, sorry. It may be ok for some hobbyist =20 installation, but in the generic case you want to do it right (and the =20 OP asked for the generic case which includes production quality ports =20 management). > package manually as part of an upgrade, I use "pkg_delete -f", so it > doesn't matter. When I prune ports I use "portmanager -slid" which It's not about removing a port when updating. It's about correct leaf =20 ports detection which may be necessary from time to time. On a busy =20 (as in "ports are (de-)installed often") system this may be needed =20 more often than on a idle system. > doesn't rely on +REQUIRED_BY, and provides additional protection against > build-dependency deletion which you don't get from pkg_delete. portmanager ist very recent, it is even not as old as portupgrade. So =20 a discussion about what you do with current tools does not fit to the =20 topic of the original question which started this thread. Sidenote: I also don't see a benefit when pruning to keep the obscure =20 build dependencies of a port you don't want anymore. "In the good old =20 days"(TM) you searched for ports without a +REQUYIRED_BY field. Those =20 are the leaf ports. And then you used your brain to decide what to =20 remove or not. What we didn't had was an easy procedure for pruning =20 old distfiles. I was excited when I discovered this feature in =20 portupgrade. Bye, Alexander. --=20 Marriage is a lot like the army, everyone complains, but you'd be surprised at the large number that re-enlist. =09=09-- James Garner http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 08:39:24 2007 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 38BAC16A418 for ; Tue, 14 Aug 2007 08:39:24 +0000 (UTC) (envelope-from david.hunt@editure.com) Received: from cerberus.apdata.com.au (cerberus.apdata.com.au [202.14.95.17]) by mx1.freebsd.org (Postfix) with ESMTP id ED69C13C468 for ; Tue, 14 Aug 2007 08:39:22 +0000 (UTC) (envelope-from david.hunt@editure.com) Received: from cerberus.apdata.com.au (localhost [127.0.0.1]) by cerberus.apdata.com.au (Postfix) with SMTP id 9792739246A; Tue, 14 Aug 2007 18:09:20 +0930 (CST) Received: from DJHHP (DJH-HP.apdata.com.au [192.168.255.136]) by cerberus.apdata.com.au (Postfix) with ESMTP id 27CDE392428; Tue, 14 Aug 2007 18:09:18 +0930 (CST) From: "David Hunt" To: Date: Tue, 14 Aug 2007 18:07:31 +0930 Organization: editure Message-ID: <006101c7de4e$5af43e40$88ffa8c0@DJHHP> MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_NextPart_000_0062_01C7DE9D.FBBE1A40" X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 Thread-Index: AcfeTlrhBsH+AYQoSQ+j0KfgHKI+pg== X-Kavpostfix-Config: /etc/mail/kavpostfix.cfg X-Kavpostfix-Perl: /etc/mail/testcode.pl X-Kavpostfix-Version: 5.017 X-Spam-Not-Checked: Message sender whitelisted X-Complete-Junk: NO X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org Subject: FreeBSD Port: vnc-4.1.2_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: david.hunt@editure.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2007 08:39:24 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0062_01C7DE9D.FBBE1A40 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi James We have recently built a server with current Xorg on it, and have run in to issues trying to run vncserver on it .example error is as follows: Xvnc Free Edition 4.1.2 - built Aug 14 2007 16:06:44 Copyright (C) 2002-2005 RealVNC Ltd. See http://www.realvnc.com for information on VNC. Underlying X server release 40300000, The XFree86 Project, Inc Tue Aug 14 17:55:13 2007 vncext: VNC extension running! vncext: Listening for VNC connections on port 5901 vncext: Listening for HTTP connections on port 5801 vncext: created VNC server for screen 0 Could not init font path element /usr/local/lib/X11/fonts/CID/, removing from list! Fatal server error: could not open default font 'fixed' xsetroot: unable to open display 'xxxxxxx.xxxx.xxx.xx:1' xterm Xt error: Can't open display: xxx.xxx.xxxx.axx:1 twm: unable to open display "xxx.xxx.xxx.xx:1" vncconfig: unable to open display "xxx.xxx.xxx.xx:1" Xorg version reports as follows: X Window System Version 7.2.0 Release Date: 22 January 2007 X Protocol Version 11, Revision 0, Release 7.2 Build Operating System: FreeBSD 6.2-RELEASE i386 Current Operating System: FreeBSD xxxx.xxx.xxx.xx 6.2-RELEASE-p7 FreeBSD 6.2-RELEASE-p7 #0: Wed Aug 8 12:17:44 CST 2007 root@xxxx.xxxx.xxx.xx:/usr/obj/usr/src/sys/XXXXXXXX i386 Build Date: 07 August 2007 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Module Loader present Can you please point me in the right direction to resolve the issue? Many thanks David Hunt Senior Communications & Security Engineer Infrastructure & Managed IT Services Phone: +61 8 8418 7800 Fax: +61 8 8211 7108 Helpdesk: 1300 798 042 eMail: david.hunt@editure.com Web: www.editure.com ------=_NextPart_000_0062_01C7DE9D.FBBE1A40-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 10:00:09 2007 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 5A57A16A41A for ; Tue, 14 Aug 2007 10:00:09 +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 302B413C4A6 for ; Tue, 14 Aug 2007 10:00:09 +0000 (UTC) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l7EA08E5038461 for ; Tue, 14 Aug 2007 10:00:09 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l7EA08aS038454 for ports@freebsd.org; Tue, 14 Aug 2007 10:00:08 GMT (envelope-from fenner) Date: Tue, 14 Aug 2007 10:00:08 GMT From: Bill Fenner Message-Id: <200708141000.l7EA08aS038454@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: Tue, 14 Aug 2007 10:00:09 -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 Tue Aug 14 12:19:53 2007 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 5EA1F16A417 for ; Tue, 14 Aug 2007 12:19:53 +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 1BC8413C480 for ; Tue, 14 Aug 2007 12:19:53 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id D4D611CC38; Tue, 14 Aug 2007 05:35:20 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Tue, 14 Aug 2007 05:35:20 -0700 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200708140535.20575.david@vizion2000.net> Subject: subversion -authorization setup problem 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, 14 Aug 2007 12:19:53 -0000 Hi=20 I have never before run a subversion server and despite reading "the book" = and=20 man pages have hit a problem - if anyone feels like helping=20 it would be much appreciated. I have set up subversion to run with apache. Versions: apache-2.2.4_2=20 subversion-1.4.4_1 I can connect remotely from a client to the server, using name|password=20 combination so authentication appears to work fine but authorization is=20 failing.=20 This is a new repository as can be seen from the output of the=20 svnlook. An initial import attempt from the client fails with the client=20 reporting" RA Layer request failed"and "403 forbidden" error from the serve= r. Clearly I have something wrong in my authorization set up. Can anyone point= me=20 in the right direction? I have chosen to use an SVNParentPath configuration for multiple repositori= es=20 under the same "root" with all repositories sharing the same=20 AuthzSVNAccessFile.=20 I have made all repository paths the same as apache.. owner:group www:www =A0 1. Here are my entries in =A0httpd.conf ##### Modules include LoadModule dav_module libexec/apache22/mod_dav.so LoadModule dav_svn_module =A0 =A0 libexec/apache22/mod_dav_svn.so LoadModule authz_svn_module =A0 libexec/apache22/mod_authz_svn.so ##### Location entry: I have only made the one entry -- using the parent do= I=20 need additional entries for each repository? My reading of the book seemed = to=20 suggest that was not required. =A0 =A0 =A0 =A0 DAV svn =A0 =A0 =A0 =A0 SVNParentPath /usr2/svnhome =A0 =A0 =A0 =A0 SVNListParentPath on # Access control Policy =A0 =A0 =A0 =A0 AuthzSVNAccessFile /usr/local/etc/apache22/Authz_svnhome # try anonymous access first, resort to authentication # if necessary =A0 =A0 =A0 =A0=20 =A0 =A0 =A0 =A0 Require valid-user =A0 =A0 =A0 =A0 AuthType Basic =A0 =A0 =A0 =A0 AuthName "Svn Repository" =A0 =A0 =A0 =A0 AuthUserFile /usr/local/etc/apache22/svn-auth-methusela_02 =A0 =A0 =A0 =A0=20 CustomLog =A0 =A0 =A0 /usr/local/etc/apache22/svn_logfile "%t %u %{SVN-ACTI= ON}e"=20 env=3DSVN-ACTION =A0 =A0 =A0=20 ##### 2. My AuthzSVNAccessFile ##### AuthzSVNAccessFile /usr/local/etc/apache22/Authz_svnhome [/] * =3D r [/usr2/svnhome] * =3Dr [project_meth: /usr2/svnhome/project_meth] david =3D rw test =3D r ##### 3. Output from svnlook ##### svnlook info /usr2/svnhome/project_meth 2007-08-13 03:09:11 -0700 (Mon, 13 Aug 2007) 0 ##### 4. http-error.log ##### httpd-error.log [Mon Aug 13 09:30:04 2007] [error] [client 192.168.15.1] Access=20 denied: 'david' MKACTIVITY project_meth: ##### 5. svn_logfile ##### [13/Aug/2007:08:49:56 -0700] david list-dir '/' [13/Aug/2007:08:51:47 -0700] david list-dir '/' ##### 6.I have made no changes to the files created by the svnadmin create comman= d=20 apart from svnserve.conf which reads: ######## anon-access =3D read auth-access =3D write password-db =3D /usr/local/etc/apache22/svn-auth-methusela_02 authz-db =3D /usr/local/etc/apache22/Authz_svnhome. ####### All help appreciated Thanks in advance david From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 14:35:20 2007 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 39E3116A418 for ; Tue, 14 Aug 2007 14:35:20 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 0EEEA13C45B for ; Tue, 14 Aug 2007 14:35:20 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 91A20519AD for ; Tue, 14 Aug 2007 10:35:18 -0400 (EDT) Date: Tue, 14 Aug 2007 15:35:15 +0100 From: RW To: freebsd-ports@freebsd.org Message-ID: <20070814153515.4a5769ae@gumby.homeunix.com.> In-Reply-To: <20070814085813.4i1rprmzjks08ogo@webmail.leidinger.net> References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811145314.A47727@obelix.home.rakhesh.com> <20070811203322.GA78245@eos.sc1.parodius.com> <20070811225858.7eb933ef@gumby.homeunix.com.> <20070812142059.35077b0d@deskjail> <20070812181810.2b17d85f@gumby.homeunix.com.> <20070813081446.6nxh47n64ocg8ksk@webmail.leidinger.net> <20070813123837.5436aeec@gumby.homeunix.com.> <20070814085813.4i1rprmzjks08ogo@webmail.leidinger.net> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 14 Aug 2007 14:35:20 -0000 > >> > On Sun, 12 Aug 2007 14:20:59 +0200 > >> > Alexander Leidinger wrote: > >> > > >> >> Quoting RW (Sat, 11 Aug 2007 > >> >> 22:58:58 +0100): > > > >> > Actually having dependencies package version mismatches needn't > >> > cause any significant problems. > >> > >> It does cause problems. You have no +REQUIRED_BY file anymore, so > >> pkg_delete allows you to remove it without a warning even if it is > >> still needed. > > > > I didn't say it doesn't, I said it needn't. When I have to remove a > > It will. No doubts about this, sorry. It may be ok for some hobbyist > installation, but in the generic case you want to do it right (and > the OP asked for the generic case which includes production quality > ports management). > ... > It's not about removing a port when updating. It's about correct > leaf ports detection which may be necessary from time to time. Detecting leaves by +REQUIRED_BY alone is unreliable unless you can guarantee that the entries have *always* been updated to reflect the installed packages - by everybody that worked on the server. It's more forgiving to work downwards through the dependencies to find leaves,and fairly easy to script. > > doesn't rely on +REQUIRED_BY, and provides additional protection > > against build-dependency deletion which you don't get from > > pkg_delete. > Sidenote: I also don't see a benefit when pruning to keep the > obscure build dependencies of a port you don't want anymore. Just like there's no point in keeping the obscure run dependencies of a port you don't want anymore. Leaf deletion is an iterative process, when you delete one leaf you may create more. "Portmanager -slid" prompts you to delete a build dependency when the last package that needs it for a rebuild is removed. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 15:27:25 2007 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 736AE16A418 for ; Tue, 14 Aug 2007 15:27:25 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.226]) by mx1.freebsd.org (Postfix) with ESMTP id 38E6D13C457 for ; Tue, 14 Aug 2007 15:27:25 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so613366nzf for ; Tue, 14 Aug 2007 08:27:24 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=ZZJqD9DLJMiLmzzxk0ALGFjDGwXzwOOiBl9XOld5dzR4nT5Te+RX6e9VbNj2FQE+05DjqsVuuemqSGGmDJdOjNng6wybH8PNXmu5msajQXsPUrlV1jzyAiWB61ihuwvtveKt4Y7TN0bRNV2DfkDFTt7RNmPupETch8BLSAfmTtg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=iDeKREnkPDfncBTwbqw79F4oflbIkcotCFKSYrjCwIOlwpsmVsekofMbADiszO1wUqasXqY+DFMm+18tt6m8InFpUWqBz/d6MIz9cHCS25yLHQRUJ2tUBR9Z9MczUbtsNhVpKsLGrW4LaEKC29L1E26UBcWl1ShHRbws9bn3Gzk= Received: by 10.64.199.2 with SMTP id w2mr10941213qbf.1187105244284; Tue, 14 Aug 2007 08:27:24 -0700 (PDT) Received: by 10.65.206.14 with HTTP; Tue, 14 Aug 2007 08:27:24 -0700 (PDT) Message-ID: <70f41ba20708140827t340c0a4ref1cdbbd18d2dbdb@mail.gmail.com> Date: Tue, 14 Aug 2007 08:27:24 -0700 From: snowcrash+freebsd Sender: schneecrash@gmail.com 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-Google-Sender-Auth: ea369a2e6224da07 Subject: mod_perl2 port misses existing BSD::Resource dependency X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2007 15:27:25 -0000 hi, i've fbsd 62Rp7 installed, with perl 588 & mod_perl2 installed from ports. perl modules are installed by CPAN, *not* using ports (p5-*). i've successfully installed "BSD::Resource" -- a dependency of mod_perl2 -- via CPAN, module_info BSD::Resource Name: BSD::Resource Version: 1.28 Directory: /usr/local/lib/perl5/site_perl/5.8.8/mach File: /usr/local/lib/perl5/site_perl/5.8.8/mach/BSD/Resource.pm Core module: no despite BSD::Resource being installed/available, every time I do the 'update ports' mambo, portsnap fetch update pkgdb --autofix --fix-lost pkgdb -F portupgrade --verbose --recursive --upward-recursive --all i'm faced with a "stale dependency" warning, ... ---> Checking the package registry database Stale dependency: mod_perl2-2.0.3_2,3 -> p5-BSD-Resource-1.28 (devel/p5-BSD-Resource): Skipped. (running in non-interactive mode; specify -i to ask) ---> Checking the package registry database Stale dependency: mod_perl2-2.0.3_2,3 -> p5-BSD-Resource-1.28 (devel/p5-BSD-Resource): Install stale dependency? ([y]es/[n]o/[a]ll) [yes] no New dependency? (? to help): Delete this? ([y]es/[n]o/[a]ll) [yes] yes Deleted. ... which I delete. apparetnly, not persistently ... as it reappears @ the next port update. how do i "convince" my port system to stop whining about the stale dependency, or -- better yet -- recognize the existing CPAN module? although i'm /hoping/ it's something in/with ports-mgmt, i /suspect/ it needs to be addressed in the port itself. thanks! From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 15:34:20 2007 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 205AD16A417 for ; Tue, 14 Aug 2007 15:34:20 +0000 (UTC) (envelope-from matt@quist.ca) Received: from madhaus.cns.utoronto.ca (madhaus.cns.utoronto.ca [128.100.103.10]) by mx1.freebsd.org (Postfix) with SMTP id E500113C461 for ; Tue, 14 Aug 2007 15:34:19 +0000 (UTC) (envelope-from matt@quist.ca) Received: (qmail 28495 invoked by uid 31014); 14 Aug 2007 15:07:38 -0000 Received: from [128.100.103.14] (HELO [128.100.103.14]) (128.100.103.14) by madhaus.cns.utoronto.ca (qpsmtpd/0.30) with ESMTP; Tue, 14 Aug 2007 11:07:38 -0400 Message-ID: <46C1C539.1060405@quist.ca> Date: Tue, 14 Aug 2007 11:07:37 -0400 From: Matt Wilks User-Agent: Thunderbird 2.0.0.6 (X11/20070728) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: compiling py-imaging for multiple Python binaries 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, 14 Aug 2007 15:34:20 -0000 Greetings, I have multiple versions of Python installed, and I'm trying to install the /usr/ports/graphics/py-imaging PIL library. When I compile py-imaging, it defaults to installing it in the most recent version of Python I have installed, 2.5. Is there a way to force FreeBSD to compile and install the library for a particular (more than one) version of Python? Thanks, Matt. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 16:21:11 2007 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 145D116A418 for ; Tue, 14 Aug 2007 16:21:11 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.225]) by mx1.freebsd.org (Postfix) with ESMTP id CE9FC13C45E for ; Tue, 14 Aug 2007 16:21:10 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so623528nzf for ; Tue, 14 Aug 2007 09:21:10 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=a4PBV2UGoCJgOa7s37sS2GoDWV8uuD3IOF4w/V4tSeHaidh5bcQVCHUxBbu4z/yDhWSwfbP3E388ETotgdApxrn/E7upYKsD6Iqrw5QutR8DJ/6VF7yaqA3fTIVgFqm/sqqkBWW0tD3pann/ZybU8niiK59J6sRZ05/ZbQp6te0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=CYxMGuzrdcaBReAHL84SoHUO3lHfG1H1lJXSn3Z7Tzuhta7Cgu7oDE9cZqI5M6kZ9gLZxfWzDbGdibS0zFoWKVrZ9yL+X3kdx1xN0v6GutarLhZjlikKi+sUA6BzROFI1mQwRArvm84vzl6uykKHqU3I0oA57L/F24dqYuufsC0= Received: by 10.65.114.11 with SMTP id r11mr12000120qbm.1187108468990; Tue, 14 Aug 2007 09:21:08 -0700 (PDT) Received: by 10.65.206.14 with HTTP; Tue, 14 Aug 2007 09:21:08 -0700 (PDT) Message-ID: <70f41ba20708140921k43cea2d8oe8f2bada785b49e0@mail.gmail.com> Date: Tue, 14 Aug 2007 09:21:08 -0700 From: snowcrash+freebsd Sender: schneecrash@gmail.com 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-Google-Sender-Auth: a2d5cf1ed2048d90 Subject: request add db45/db46 support to www/apache22 port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2007 16:21:11 -0000 hi, with db45/db46 now in ports and supported in make.conf, can we get port(www/apache22) updated as well? looks simple, namely: > vi Makefile.modules ================================================================= @95 . elif ${WITH_BERKELEYDB} == "db44" LIB_DEPENDS+= db-4.4:${PORTSDIR}/databases/db44 CONFIGURE_ARGS+= --with-dbm=db44 \ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db44 +++ . elif ${WITH_BERKELEYDB} == "db45" +++ LIB_DEPENDS+= db-4.5:${PORTSDIR}/databases/db45 +++ CONFIGURE_ARGS+= --with-dbm=db45 \ +++ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db45 +++ . elif ${WITH_BERKELEYDB} == "db46" +++ LIB_DEPENDS+= db-4.6:${PORTSDIR}/databases/db46 +++ CONFIGURE_ARGS+= --with-dbm=db46 \ +++ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db46 . else IGNORE= "Unknown Berkeley DB version" ================================================================= though some clever soul might suggest that it be changed to automatically pick the BDB settings .... thanks! From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 16:26:29 2007 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 1B9C616A46B for ; Tue, 14 Aug 2007 16:26:29 +0000 (UTC) (envelope-from leafy7382@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by mx1.freebsd.org (Postfix) with ESMTP id B90E213C46E for ; Tue, 14 Aug 2007 16:26:28 +0000 (UTC) (envelope-from leafy7382@gmail.com) Received: by wr-out-0506.google.com with SMTP id 70so323761wra for ; Tue, 14 Aug 2007 09:26:27 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=pVER0VcYv81fv5e5b4OOpdO65Iljhjbsrz5ZeCSsrvYLDSZvlLexF7hAK6eZe5G7pcv8lleoTwnuHtNYWYbcXvBzhXDSJUdL99sEfoFtBqDAPGa/m3YhRxXgHWvCzX3EBs82l7IKAneTqHK++0Gmxw6ujS2AwupE20PXsd79bJU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=eF9xXBgPAG3Qgp8Nc0tPNodywKKiRN1qBcTKml4jXGzwqak+6GpOLKvDPwS5s0/x2MgV+dC1tgS5QpiEB3qmYwvLV32PzBsZyZO/bfSS8pmF6da57Sd4AJsVtjKI1X08iHl5rjCVxPNrVvhaPr9z3vuc2Td4IL4yxOL+NY0S5ak= Received: by 10.100.190.8 with SMTP id n8mr1653002anf.1187108759350; Tue, 14 Aug 2007 09:25:59 -0700 (PDT) Received: by 10.100.137.3 with HTTP; Tue, 14 Aug 2007 09:25:59 -0700 (PDT) Message-ID: Date: Wed, 15 Aug 2007 00:25:59 +0800 From: "Jiawei Ye" To: freebsd-questions@freebsd.org In-Reply-To: <70f41ba20708140921k43cea2d8oe8f2bada785b49e0@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <70f41ba20708140921k43cea2d8oe8f2bada785b49e0@mail.gmail.com> Cc: freebsd-ports@freebsd.org Subject: Re: request add db45/db46 support to www/apache22 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: Tue, 14 Aug 2007 16:26:29 -0000 On 8/15/07, snowcrash+freebsd wrote: > hi, > > with db45/db46 now in ports and supported in make.conf, can we get > port(www/apache22) updated as well? > > looks simple, namely: > > > vi Makefile.modules > ================================================================= > @95 > . elif ${WITH_BERKELEYDB} == "db44" > LIB_DEPENDS+= db-4.4:${PORTSDIR}/databases/db44 > CONFIGURE_ARGS+= --with-dbm=db44 \ > --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db44 > +++ . elif ${WITH_BERKELEYDB} == "db45" > +++ LIB_DEPENDS+= db-4.5:${PORTSDIR}/databases/db45 > +++ CONFIGURE_ARGS+= --with-dbm=db45 \ > +++ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db45 > +++ . elif ${WITH_BERKELEYDB} == "db46" > +++ LIB_DEPENDS+= db-4.6:${PORTSDIR}/databases/db46 > +++ CONFIGURE_ARGS+= --with-dbm=db46 \ > +++ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db46 > . else > IGNORE= "Unknown Berkeley DB version" > ================================================================= > > though some clever soul might suggest that it be changed to > automatically pick the BDB settings .... > > 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" > The change for db46 will fail because the DB version is hardcoded in apr-util configure script. You need to patch that as well. Jiawei Ye -- "If it looks like a duck, walks like a duck, and quacks like a duck, then to the end user it's a duck, and end users have made it pretty clear they want a duck; whether the duck drinks hot chocolate or coffee is irrelevant." From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 16:26:48 2007 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 397DC16A418 for ; Tue, 14 Aug 2007 16:26:48 +0000 (UTC) (envelope-from leafy7382@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.245]) by mx1.freebsd.org (Postfix) with ESMTP id F24DD13C494 for ; Tue, 14 Aug 2007 16:26:47 +0000 (UTC) (envelope-from leafy7382@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so407319anc for ; Tue, 14 Aug 2007 09:26:47 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=n3/bGfvq8NjrqzigKrgw4D4C4vItHQK97xC3I6DiZvU1/vd8ZjKQ+8umCRhDujb2hU7W9ZeDte7Ij6gkRAI/lAzBX8nTzAWNIpTFrjjcUwOtrzV3JQvSDhfskc2PlWguWVnJsxHMkPz1UCOZBOlKpVDCD6vPvqtdGAcitVxm4DA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VhEJA0ZxVtBDe31kQhnAWCOENViOkGWFQsA+lU/rM/pt8x/pyLSlm2ieEVBJnL/PctloOitn/zkiJ/JI5sT6Vt+lhgd1ZKIcVgxlKS9eJ8KMz0w14zvYe4Ra6h8UhW0q9ScSz2kbXLUbKv1J36QUDxQMiEElHDDjQZLjwat58fY= Received: by 10.100.111.16 with SMTP id j16mr6114040anc.1187108786344; Tue, 14 Aug 2007 09:26:26 -0700 (PDT) Received: by 10.100.137.3 with HTTP; Tue, 14 Aug 2007 09:25:59 -0700 (PDT) Message-ID: Date: Wed, 15 Aug 2007 00:25:59 +0800 From: "Jiawei Ye" To: freebsd-questions@freebsd.org In-Reply-To: <70f41ba20708140921k43cea2d8oe8f2bada785b49e0@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <70f41ba20708140921k43cea2d8oe8f2bada785b49e0@mail.gmail.com> Cc: freebsd-ports@freebsd.org Subject: Re: request add db45/db46 support to www/apache22 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: Tue, 14 Aug 2007 16:26:48 -0000 On 8/15/07, snowcrash+freebsd wrote: > hi, > > with db45/db46 now in ports and supported in make.conf, can we get > port(www/apache22) updated as well? > > looks simple, namely: > > > vi Makefile.modules > ================================================================= > @95 > . elif ${WITH_BERKELEYDB} == "db44" > LIB_DEPENDS+= db-4.4:${PORTSDIR}/databases/db44 > CONFIGURE_ARGS+= --with-dbm=db44 \ > --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db44 > +++ . elif ${WITH_BERKELEYDB} == "db45" > +++ LIB_DEPENDS+= db-4.5:${PORTSDIR}/databases/db45 > +++ CONFIGURE_ARGS+= --with-dbm=db45 \ > +++ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db45 > +++ . elif ${WITH_BERKELEYDB} == "db46" > +++ LIB_DEPENDS+= db-4.6:${PORTSDIR}/databases/db46 > +++ CONFIGURE_ARGS+= --with-dbm=db46 \ > +++ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db46 > . else > IGNORE= "Unknown Berkeley DB version" > ================================================================= > > though some clever soul might suggest that it be changed to > automatically pick the BDB settings .... > > 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" > The change for db46 will fail because the DB version is hardcoded in apr-util configure script. You need to patch that as well. Jiawei Ye -- "If it looks like a duck, walks like a duck, and quacks like a duck, then to the end user it's a duck, and end users have made it pretty clear they want a duck; whether the duck drinks hot chocolate or coffee is irrelevant." From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 16:31:00 2007 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 2FC9916A418 for ; Tue, 14 Aug 2007 16:31:00 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.238]) by mx1.freebsd.org (Postfix) with ESMTP id E6BCF13C46A for ; Tue, 14 Aug 2007 16:30:59 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so625304nzf for ; Tue, 14 Aug 2007 09:30:59 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=VgDda9Y6/mbkQtCsROucl+DItFZcx5KDzFmdoBruC8y9iwIsCdNvr21m/7N3CtPxPV/s2gfvVgQFFhkuKpF35myXAIGm2fW8is53EgExl/dN3ROQhpQogK95mlu6c/aE7b45zVy4MjQHj8f29gBHpG2cqqBvkfkJrQpU7tiV1RU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=qo+lQG7O1lzSnARwrImTrTPt+2hc66q9VhePJyNhaGWRvvjiRUYU/02cT6txWxFlT2W0mNzx1KkekfP6+ILO58aodXAAqqScHQXPMfkQ282GABW8sk3dqmgSs3B1vC/BJHv7OJUUMRO+cwKVL/3Xzl3YJsvlGrnTXN8NKVu0fxM= Received: by 10.64.201.7 with SMTP id y7mr12021139qbf.1187109059042; Tue, 14 Aug 2007 09:30:59 -0700 (PDT) Received: by 10.65.206.14 with HTTP; Tue, 14 Aug 2007 09:30:51 -0700 (PDT) Message-ID: <70f41ba20708140930u39662fe2m6f404657c4431c28@mail.gmail.com> Date: Tue, 14 Aug 2007 09:30:58 -0700 From: snowcrash+fuzzyocr Sender: schneecrash@gmail.com To: "Jiawei Ye" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <70f41ba20708140921k43cea2d8oe8f2bada785b49e0@mail.gmail.com> X-Google-Sender-Auth: 31d76656079dee56 Cc: freebsd-ports@freebsd.org Subject: Re: request add db45/db46 support to www/apache22 port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: devel-spam@lists.own-hero.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2007 16:31:00 -0000 > The change for db46 will fail because the DB version is hardcoded in > apr-util configure script. You need to patch that as well. you're correct. and i already had -- just neglected to report/request ... From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 16:33:45 2007 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 ABFA916A468 for ; Tue, 14 Aug 2007 16:33:45 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.229]) by mx1.freebsd.org (Postfix) with ESMTP id 722E413C45A for ; Tue, 14 Aug 2007 16:33:45 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so625804nzf for ; Tue, 14 Aug 2007 09:33:44 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=GxZ8UAjhQdC0PvJei1I3PU8+u/ZZ+1k0cPU2W2Wzijvt0VkP5w8LdbicHNtbF03+Ui9z16idZ1haNZWONzHZbDzRKEe5sp2I5K+H3ZZ7rpYdm8IMGqYhMcrFhrfypav9Ckdv3mWJ5tJf6AL1znxYC0mV04KgYsu+RSCmEFRxbBQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=Jj6c6ucoGT/P4PQeaRQ1e8YDnnsEyGQ4ghOefzkG/EGzqkXnJFlG5vbH+lIxMo51Z1ywoaLBrj0IkGG1CVBbRZiqX1ls1aUTT2OqlrHuzHMkNTx7k3ApEivlAh7Q1/mGg6ndJBG8hq3FR0ghGz15qDy3Xe+/hsUP1FWchsyQ6+g= Received: by 10.65.224.11 with SMTP id b11mr11058815qbr.1187109223884; Tue, 14 Aug 2007 09:33:43 -0700 (PDT) Received: by 10.65.206.14 with HTTP; Tue, 14 Aug 2007 09:33:43 -0700 (PDT) Message-ID: <70f41ba20708140933k317cbe00r86a12cf138933a3c@mail.gmail.com> Date: Tue, 14 Aug 2007 09:33:43 -0700 From: snowcrash+fuzzyocr Sender: schneecrash@gmail.com 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-Google-Sender-Auth: c10c795a5d055f94 Subject: request add db45/db46 support to devel/apr port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: devel-spam@lists.own-hero.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2007 16:33:45 -0000 this, i believe, does the trick ... diff -ur aprORIG/Makefile apr/Makefile --- aprORIG/Makefile Mon Aug 6 21:17:39 2007 +++ apr/Makefile Mon Aug 6 21:16:56 2007 @@ -8,8 +8,8 @@ # APR_UTIL_WITHOUT_THREADS: disable threads support # APR_UTIL_WITH_GDBM: force dependency on the GNU dbm # APR_UTIL_WITHOUT_GDBM: unconditionally disable the use of GNU dbm -# APR_UTIL_WITH_BERKELEY_DB: force dependency on Sleepycat's Berkeley DB 4.2 -# APR_UTIL_WITHOUT_BERKELEY_DB: unconditionally disable the use of db4.2 +# APR_UTIL_WITH_BERKELEY_DB: force dependency on Sleepycat's Berkeley DB 4.6 +# APR_UTIL_WITHOUT_BERKELEY_DB: unconditionally disable the use of db4.6 # (the database bindings are detected and recorded automatically if these # switches are not set) # APR_UTIL_WITH_LDAP: force dependency on OpenLDAP @@ -78,8 +78,8 @@ .if defined(APR_UTIL_WITHOUT_BERKELEY_DB) APR_UTIL_CONF_ARGS+= --without-berkeley-db -.elif defined(APR_UTIL_WITH_BERKELEY_DB) || exists(${LOCALBASE}/lib/libdb-4.2.so.2) -USE_BDB= 42+ +.elif defined(APR_UTIL_WITH_BERKELEY_DB) || exists(${LOCALBASE}/lib/libdb-4.6.so.) +USE_BDB= 46+ APR_UTIL_CONF_ARGS+= --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} .if defined(PKGNAMESUFFIX) PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-${BDB_INCLUDE_DIR:S,^${LOCALBASE}/include/,,} @@ -125,9 +125,9 @@ @${ECHO_MSG} "Berkeley DB support is disabled." .elif defined(APR_UTIL_WITH_BERKELEY_DB) @${ECHO_MSG} "Berkeley DB support forced." -.elif exists(${LOCALBASE}/lib/libdb-4.2.so.2) - @${ECHO_MSG} "Berkeley db4.2 support is enabled." - @${ECHO_MSG} "You can disable Berkeley db4.2 support by defining APR_UTIL_WITHOUT_BERKELEY_DB." +.elif exists(${LOCALBASE}/lib/libdb-4.6.so.0) + @${ECHO_MSG} "Berkeley db4.6 support is enabled." + @${ECHO_MSG} "You can disable Berkeley db4.6 support by defining APR_UTIL_WITHOUT_BERKELEY_DB." .else @${ECHO_MSG} "Berkeley DB was not found." @${ECHO_MSG} "You can force Berkeley DB support by defining APR_UTIL_WITH_BERKELEY_DB." From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 17:58:12 2007 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 B5BC016A420 for ; Tue, 14 Aug 2007 17:58:12 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from srvbsdsmt002.uct.ac.za (srvbsdsmt002.uct.ac.za [137.158.153.104]) by mx1.freebsd.org (Postfix) with ESMTP id 5FB7413C48A for ; Tue, 14 Aug 2007 17:58:12 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from mail.uct.ac.za ([137.158.153.100]) by srvbsdsmt002.uct.ac.za with esmtp (Exim 4.63 (FreeBSD)) (envelope-from ) id 1IKzsx-000Psk-Tk for ports@freebsd.org; Tue, 14 Aug 2007 19:08:51 +0200 Received: from lhc.phy.uct.ac.za ([137.158.92.134]) by mail.uct.ac.za with esmtp (Exim 4.44 (FreeBSD)) id 1IKzsw-000PrD-7V for ports@freebsd.org; Tue, 14 Aug 2007 19:08:50 +0200 Received: from lordcow by lhc.phy.uct.ac.za with local (Exim 4.67) (envelope-from ) id 1IKzsy-00070A-Pm for ports@freebsd.org; Tue, 14 Aug 2007 19:08:52 +0200 Date: Tue, 14 Aug 2007 19:08:52 +0200 From: gareth To: ports@freebsd.org Message-ID: <20070814170852.GA25539@lordcow.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.16 (2007-06-11) Cc: Subject: ports tree out've sync 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, 14 Aug 2007 17:58:12 -0000 hey guys, i can't see a similar question recently so i wonder if i've done something wrong? i've noticed for about 2 weeks that things seem to be out've sync: if i do a cvsup with either host=cvsup.FreeBSD.org or cvsup2.FreeBSD.org and then a portsdb (even after removing /usr/ports/INDEX-6*) 'portversion -l ">"' returns 32 packages? ('portversion -l "<"' returns nothing) similarly for portaudit: # portaudit -F auditfile.tbz 100% of 43 kB 1016 kBps portaudit: Database too old. Old database restored. portaudit: Download failed. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 18:02:45 2007 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 4EFB716A41A for ; Tue, 14 Aug 2007 18:02:45 +0000 (UTC) (envelope-from rakheshster@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.freebsd.org (Postfix) with ESMTP id C951713C480 for ; Tue, 14 Aug 2007 18:02:44 +0000 (UTC) (envelope-from rakheshster@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so769323nfb for ; Tue, 14 Aug 2007 11:02:43 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:received:date:x-x-sender:to:subject:message-id:mime-version:content-type:from:sender; b=KPlgezoAyYAstdQ+D5r1XQ84x1tAJrUjzXQQbnei9Tknqpyjl/FQiPrPfYThcoMyw7eQWNrWv0ETRrm7N8cyRvt9JaosMFwRu4SETTxRCOXAJFnv08cAe07UHuZWChgfvn3JO/V192uWWMcPpOzmNmFKN8xZEZzRU5VLzuUPC+U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:x-x-sender:to:subject:message-id:mime-version:content-type:from:sender; b=ctL/7WWKdKV5TWwrqNdi6ITi8WHKZeh8RP19cjY2RESQA6j2e7215pwjzKteNgPibOqXOvl5/FyElTeonbiQ7MVyFBVG3fEFwdixjEpnNuhHfNLNwFrZh1QhdAfrIoeZGzCHxn/MBixA9IUjDp4w8StePjq8Mrzk9zEJ+kOjbVs= Received: by 10.78.170.6 with SMTP id s6mr2908576hue.1187114551449; Tue, 14 Aug 2007 11:02:31 -0700 (PDT) Received: from smtp.home.rakhesh.com ( [82.178.137.21]) by mx.google.com with ESMTPS id p30sm2409745hub.2007.08.14.11.02.29 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 14 Aug 2007 11:02:30 -0700 (PDT) Received: from asterix.home.rakhesh.com (asterix.home.rakhesh.com [192.168.17.23]) by smtp.home.rakhesh.com (Postfix) with ESMTP id 7577E5080A for ; Tue, 14 Aug 2007 22:02:01 +0400 (GST) Date: Tue, 14 Aug 2007 21:58:29 +0400 (GST) X-X-Sender: rakhesh@asterix.home.rakhesh.com To: freebsd-ports@freebsd.org Message-ID: <20070814214727.P47947@asterix.home.rakhesh.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed From: Rakhesh Sasidharan Sender: Rakhesh Sasidharan Subject: Unable to get pine-pgp-filters and pinentry-curses to work together 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, 14 Aug 2007 18:02:45 -0000 Hi there! I installed mail/pine and security/gnupg from ports. While trying to use gnupg, whenever it needed to ask me for the passphrase, I ran into errors such as the below: gpg-agent[86284]: can't connect server: `ERR 67109133 can't exec `/usr/local/bin/pinentry': No such file or directory' gpg-agent[86284]: can't connect to the PIN entry module: IPC connect call failed gpg-agent[86284]: command get_passphrase failed: No pinentry gpg: problem with the agent: No pinentry gpg: no default secret key: General error gpg: configure: clearsign failed: General error No problems. I installed security/pinentry-curses from ports. I don't have X so the -curses option was the only one I could go with. Once pinentry was installed, things worked fine. --8<-- Two questions here: 1) Why isn't security/pinentry pulled in as a dependency of security/gnupg? Shouldn't that have been the "obvious" thing to do? Or is it possible to bypass pinentry somehow? 2) If I do a "make install" in security/pinentry, it straight away moves onto compiling Qt etc (as dependencies for security/pinentry-qt I suppose). Shouldn't it rather ask me what I want and then accordingly install one of the pinentry-* ports? --8<-- Later, I installed pine-pgp-filters. Now, whenever I send a mail and want to sign/ encrypt it and gnupg has to ask me for the passphrase, it messes my screen up! I get error messages like these: --8<-- pinentry-curses: no LC_CTYPE known - assuming UTF-8 pinentry-curses: no LC_CTYPE known - assuming UTF-8 pinentry-curses: no LC_CTYPE known - assuming UTF-8 pinentry-curses: no LC_CTYPE known - assuming UTF-8 --8<-- And I can't do anything except kill pine. Ctrl-C quits gpg but pine gets hung for some reason and all I can do is kill it. Its obvious that somehow gpg invoking pinentry-curses is what's causing the problem. pinentry-curses and pine do not play well together and so the screen gets messed up and pine hangs. What can I do to work around this? Any suggestions/ ideas? For now the only workaround I've come up with is to install security/gnupg1. That does not require pinentry and so it works well with pine-pgp-filters. Thanks, Rakhesh -- | Rakhesh Sasidharan rakhesh -at- rakhesh.com | | FreeBSD hobbyist http://rakhesh.com/ | | DE91 04D6 82E5 6CF2 797A 1C05 4EC0 E1A0 F166 095A id: F166095A | From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 21:47:38 2007 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 1670916A41A for ; Tue, 14 Aug 2007 21:47:38 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 08CFE13C4B3 for ; Tue, 14 Aug 2007 21:47:38 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from rot26.obsecurity.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id C2E721A4D7C; Tue, 14 Aug 2007 14:46:13 -0700 (PDT) Received: by rot26.obsecurity.org (Postfix, from userid 1001) id 52376C0EF; Tue, 14 Aug 2007 17:47:37 -0400 (EDT) Date: Tue, 14 Aug 2007 17:47:37 -0400 From: Kris Kennaway To: gareth Message-ID: <20070814214736.GA23717@rot26.obsecurity.org> References: <20070814170852.GA25539@lordcow.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070814170852.GA25539@lordcow.org> User-Agent: Mutt/1.4.2.3i Cc: ports@freebsd.org Subject: Re: ports tree out've sync 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, 14 Aug 2007 21:47:38 -0000 On Tue, Aug 14, 2007 at 07:08:52PM +0200, gareth wrote: > hey guys, i can't see a similar question recently so i wonder if > i've done something wrong? i've noticed for about 2 weeks that > things seem to be out've sync: > > if i do a cvsup with either host=cvsup.FreeBSD.org or cvsup2.FreeBSD.org > and then a portsdb (even after removing /usr/ports/INDEX-6*) > > 'portversion -l ">"' returns 32 packages? > > ('portversion -l "<"' returns nothing) Are you cvsupping with a fixed tag? > > > similarly for portaudit: > > # portaudit -F > auditfile.tbz 100% of 43 kB 1016 kBps > portaudit: Database too old. > Old database restored. > portaudit: Download failed. That's bizarre because portaudit doesn't download from cvsup, so there is no reason I can think why it would be old when freshly updated. Kris From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 21:59:35 2007 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 44C0916A419 for ; Tue, 14 Aug 2007 21:59:35 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from mail.uct.ac.za (mail.uct.ac.za [137.158.153.100]) by mx1.freebsd.org (Postfix) with ESMTP id DDE1813C458 for ; Tue, 14 Aug 2007 21:59:34 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from lhc.phy.uct.ac.za ([137.158.92.134]) by mail.uct.ac.za with esmtp (Exim 4.44 (FreeBSD)) id 1IL4QH-00099d-Lx for ports@freebsd.org; Tue, 14 Aug 2007 23:59:33 +0200 Received: from lordcow by lhc.phy.uct.ac.za with local (Exim 4.67) (envelope-from ) id 1IL4QL-0000KO-Cj for ports@freebsd.org; Tue, 14 Aug 2007 23:59:37 +0200 Date: Tue, 14 Aug 2007 23:59:37 +0200 From: gareth To: ports@freebsd.org Message-ID: <20070814215937.GB1188@lordcow.org> Mail-Followup-To: ports@freebsd.org References: <20070814170852.GA25539@lordcow.org> <20070814214736.GA23717@rot26.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070814214736.GA23717@rot26.obsecurity.org> User-Agent: Mutt/1.5.16 (2007-06-11) Cc: Subject: Re: ports tree out've sync 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, 14 Aug 2007 21:59:35 -0000 On Tue 2007-08-14 (17:47), Kris Kennaway wrote: > Are you cvsupping with a fixed tag? nope, this's my conf: $ cat /etc/cvsup.conf *default tag=. *default host=cvsup2.FreeBSD.org *default prefix=/usr *default base=/var/db *default release=cvs delete use-rel-suffix compress ports-all From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 23:15:23 2007 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 CFC0216A46D for ; Tue, 14 Aug 2007 23:15:23 +0000 (UTC) (envelope-from roman.j@budzianowski.net) Received: from jasiu.budzianowski.net (romanb.seanet.com [199.181.166.106]) by mx1.freebsd.org (Postfix) with ESMTP id 7353213C4DA for ; Tue, 14 Aug 2007 23:15:23 +0000 (UTC) (envelope-from roman.j@budzianowski.net) Received: from [208.12.21.128] (romanb.seanet.com [199.181.166.106]) (authenticated bits=0) by jasiu.budzianowski.net (8.12.8/8.12.5) with ESMTP id l7ELYOnr010317 for ; Tue, 14 Aug 2007 14:34:24 -0700 Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: 7bit Message-Id: <6CCE9A88-273C-4FB9-AFE4-3E584E061722@budzianowski.net> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: ports@freebsd.org From: Roman Budzianowski Date: Tue, 14 Aug 2007 15:27:03 -0700 X-Mailer: Apple Mail (2.752.2) Cc: Subject: bash on 6.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: Tue, 14 Aug 2007 23:15:23 -0000 I tried to install bash a year ago and ran into a size mismatch (expected 1829, actual 5218). I am trying to install it again in a fresh 6.1 installation. I read an archived advice from this list and ran 'make clean' in /usr/ports. First, it ran for 18 hours! (on vmware VM, one processor of dual core pentium, 10k sata disk). What is this thing doing? Anyway, after all this trouble I still get the same result. Below I am including the log. Could somebody help me install bash please? I don't know much about the ports. But I used Berkley 4.3 ;) (with 1 Meg RAM, X Window included, guess what year). Thanks, Roman # make install ===> Vulnerability check disabled, database not found => bash-3.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/. bash-3.1.tar.gz 100% of 2474 kB 112 kBps 00m00s => FAQ doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from ftp://ftp.cwru.edu/pub/bash/. FAQ 100% of 73 kB 89 kBps => bash31-001 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. bash31-001 100% of 2708 B 581 kBps => bash31-002 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. bash31-002 100% of 7169 B 48 kBps => bash31-003 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. bash31-003 100% of 1324 B 1805 kBps => bash31-004 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. bash31-004 100% of 1470 B 1991 kBps => bash31-005 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. bash31-005 100% of 1322 B 1780 kBps => bash31-006 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. bash31-006 100% of 1561 B 2131 kBps => bash31-007 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. bash31-007 100% of 3254 B 402 kBps => bash31-008 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. bash31-008 100% of 1422 B 2904 kBps => bash31-009 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. bash31-009 100% of 2000 B 4104 kBps => bash31-010 doesn't seem to exist in /usr/ports/distfiles/bash. => Attempting to fetch from http://ftp.gnu.org/gnu/bash/bash-3.1- patches//. fetch: http://ftp.gnu.org/gnu/bash/bash-3.1-patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.gnu.org/gnu/bash/bash-3.1- patches//. fetch: ftp://ftp.gnu.org/gnu/bash/bash-3.1-patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.nstu.ru/pub/mirrors/ftp.gnu.org/ gnu/bash/bash-3.1-patches//. fetch: ftp://ftp.nstu.ru/pub/mirrors/ftp.gnu.org/gnu/bash/bash-3.1- patches//bash31-010: File unavailable (e.g., file not found, no access) => Attempting to fetch from http://www.gtlib.cc.gatech.edu/pub/gnu/ gnu/bash/bash-3.1-patches//. fetch: http://www.gtlib.cc.gatech.edu/pub/gnu/gnu/bash/bash-3.1- patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from http://mirrors.usc.edu/pub/gnu/bash/ bash-3.1-patches//. fetch: http://mirrors.usc.edu/pub/gnu/bash/bash-3.1-patches// bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from http://ftp.funet.fi/pub/gnu/prep/bash/ bash-3.1-patches//. fetch: http://ftp.funet.fi/pub/gnu/prep/bash/bash-3.1-patches// bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.wustl.edu/mirrors/gnu/bash/ bash-3.1-patches//. fetch: ftp://ftp.wustl.edu/mirrors/gnu/bash/bash-3.1-patches// bash31-010: File unavailable (e.g., file not found, no access) => Attempting to fetch from ftp://ftp.kddlabs.co.jp/GNU/bash/bash-3.1- patches//. fetch: ftp://ftp.kddlabs.co.jp/GNU/bash/bash-3.1-patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.dti.ad.jp/pub/GNU/bash/bash-3.1- patches//. fetch: ftp://ftp.dti.ad.jp/pub/GNU/bash/bash-3.1-patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from http://ring.sakura.ad.jp/archives/GNU/ bash/bash-3.1-patches//. fetch: http://ring.sakura.ad.jp/archives/GNU/bash/bash-3.1-patches// bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from http://ring.riken.jp/archives/GNU/bash/ bash-3.1-patches//. fetch: http://ring.riken.jp/archives/GNU/bash/bash-3.1-patches// bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from http://ring.ip-kyoto.ad.jp/archives/GNU/ bash/bash-3.1-patches//. fetch: http://ring.ip-kyoto.ad.jp/archives/GNU/bash/bash-3.1-patches// bash31-010: No route to host => Attempting to fetch from ftp://ftp.mirrorservice.org/sites/ ftp.gnu.org/gnu/bash/bash-3.1-patches//. fetch: ftp://ftp.mirrorservice.org/sites/ftp.gnu.org/gnu/bash/ bash-3.1-patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.sunsite.org.uk/package/gnu/bash/ bash-3.1-patches//. fetch: ftp://ftp.sunsite.org.uk/package/gnu/bash/bash-3.1-patches// bash31-010: No route to host => Attempting to fetch from ftp://ftp.informatik.hu-berlin.de/pub/gnu/ bash/bash-3.1-patches//. fetch: ftp://ftp.informatik.hu-berlin.de/pub/gnu/bash/bash-3.1- patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.informatik.rwth-aachen.de/pub/ mirror/ftp.gnu.org/pub/gnu/bash/bash-3.1-patches//. fetch: ftp://ftp.informatik.rwth-aachen.de/pub/mirror/ftp.gnu.org/pub/ gnu/bash/bash-3.1-patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.rediris.es/sites/ftp.gnu.org/ ftp/gnu/bash/bash-3.1-patches//. fetch: ftp://ftp.rediris.es/sites/ftp.gnu.org/ftp/gnu/bash/bash-3.1- patches//bash31-010: File unavailable (e.g., file not found, no access) => Attempting to fetch from ftp://ftp.lip6.fr/pub/gnu/bash/bash-3.1- patches//. fetch: ftp://ftp.lip6.fr/pub/gnu/bash/bash-3.1-patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.chg.ru/pub/gnu/bash/bash-3.1- patches//. fetch: ftp://ftp.chg.ru/pub/gnu/bash/bash-3.1-patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.cwru.edu/pub/bash/bash-3.1- patches//. fetch: ftp://ftp.cwru.edu/pub/bash/bash-3.1-patches//bash31-010: size mismatch: expected 1829, actual 5218 => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/ distfiles/bash/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/bash/ bash31-010: size mismatch: expected 1829, actual 5218 => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/bash and try again. *** Error code 1 Stop in /usr/ports/shells/bash. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 23:24:26 2007 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 C0A2E16A41B for ; Tue, 14 Aug 2007 23:24:26 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.179]) by mx1.freebsd.org (Postfix) with ESMTP id 9C29A13C4E5 for ; Tue, 14 Aug 2007 23:24:26 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so2495904waf for ; Tue, 14 Aug 2007 16:24:26 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=CjfbWU6ilYsflJ/k5cj1WIe+9z+0qYFfBJCb+WzhbpY/kqC3ZZlcdNkvGW2AsJJX4dYXsJuG1hHxKSsQXzB/tGvY/MOU4w1uLyPVHCQiaBepQiMgUjsDrlsHWAt5vrisNdfyq4ha0ZNgPk0FIVEj+NBm/McQBwVjsoOYm441RKI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=RgFAnXgg/eRtzMMttg9BsMO8AQwDZr1cBzkmPLO4ejONCwItVpX/hTw4t+h2/ymA3WtEIQ2dhgRfT9y5w7KMXSmA7I5jgnKMJvc/8n6ZJf9y4Ipi4o2IapUA1f2Fow7CYBDDv/gAgkUJH+JuhQDg/luhknFvynmxOyv5OhaaC7o= Received: by 10.114.201.1 with SMTP id y1mr3972830waf.1187132164222; Tue, 14 Aug 2007 15:56:04 -0700 (PDT) Received: by 10.114.176.3 with HTTP; Tue, 14 Aug 2007 15:56:04 -0700 (PDT) Message-ID: Date: Tue, 14 Aug 2007 16:56:04 -0600 From: James 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: lam/MPI with trillium libraries 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, 14 Aug 2007 23:24:26 -0000 I'm looking to build a copy of a debugging program called XMPI. For this to work, I have to have lam/MPI installed with the trillium libraries. I couldn't see any easy way to tell the net/lam port to install itself with these libraries, though it makes some measure of sense to me that there ought to be one. Is anyone out there aware of any way to do this? It's typically passed as a flag during ./configure, so if I'm just uninformed as to the ways of ports and there's an easy way to pass that in, that'd be a great solution. Thanks! James From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 23:39:10 2007 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 E832E16A418 for ; Tue, 14 Aug 2007 23:39:10 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.freebsd.org (Postfix) with ESMTP id 478C913C4A8 for ; Tue, 14 Aug 2007 23:39:10 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so823535nfb for ; Tue, 14 Aug 2007 16:39:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=OukkSNIGh0FzGA6jOm5LdcJcE4d8Un066dsLYj+Nt5uzVVgD3r5e+BqoohPKmd2UgoC0OJXc6xvoE7LRoTmOAmNq1eMmj3r1ou6JBFPmZdbiE+t8AgyeV3I1P0JiLfBxckFmpkA6kgPXrOYBJ9hjo/zLA5Dq3Xz/Te/MvxbMzR8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=dkNtTVFKeyYaeyXBiutLouGKElaaIIPQcPWDkDySzmcoSOPpyGLEyB6/Wivtepxv/P+3cgZUkVlETiQwmiISR1ADxr8LgiydcpB172E0NRkOHr1EjzvnxM8T+qDFjUIGBNxdeDcnkfGdPAPONWUHpeatDl8TlYDqZECiBQinRFo= Received: by 10.86.28.5 with SMTP id b5mr5944855fgb.1187134748644; Tue, 14 Aug 2007 16:39:08 -0700 (PDT) Received: by 10.86.59.6 with HTTP; Tue, 14 Aug 2007 16:39:08 -0700 (PDT) Message-ID: <790a9fff0708141639h4a805f95n6519c40dc5dcd20a@mail.gmail.com> Date: Tue, 14 Aug 2007 18:39:08 -0500 From: "Scot Hetzel" To: James In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Cc: ports@freebsd.org Subject: Re: lam/MPI with trillium libraries 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, 14 Aug 2007 23:39:11 -0000 On 8/14/07, James wrote: > I'm looking to build a copy of a debugging program called XMPI. For this to > work, I have to have lam/MPI installed with the trillium libraries. > > I couldn't see any easy way to tell the net/lam port to install itself with > these libraries, though it makes some measure of sense to me that there > ought to be one. Is anyone out there aware of any way to do this? It's > typically passed as a flag during ./configure, so if I'm just uninformed as > to the ways of ports and there's an easy way to pass that in, that'd be a > great solution. > Edit the ports Makefile and add the flag to CONFIGURE_ARGS. If you want to make this flag conditional, add: .if defined(WITH_MYOPTION) CONFIGURE_ARGS+= --enable-my-option .endif after "CONFIGURE_ARGS=" in the Makefile. -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 23:48:46 2007 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 49AD916A419 for ; Tue, 14 Aug 2007 23:48:46 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from eunet.yu (smtpclu-4.eunet.yu [194.247.192.229]) by mx1.freebsd.org (Postfix) with ESMTP id B217913C469 for ; Tue, 14 Aug 2007 23:48:45 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-213-51.eunet.yu [213.198.213.51]) by eunet.yu (8.13.6/8.13.6) with ESMTP id l7ENmeTY012832; Wed, 15 Aug 2007 01:48:41 +0200 Message-Id: <200708142348.l7ENmeTY012832@eunet.yu> Date: Wed, 15 Aug 2007 01:43:45 +0200 From: Nikola Lecic To: "Scot Hetzel" In-Reply-To: <790a9fff0708141639h4a805f95n6519c40dc5dcd20a@mail.gmail.com> References: <790a9fff0708141639h4a805f95n6519c40dc5dcd20a@mail.gmail.com> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_40,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -0.2 Cc: James , freebsd-ports@freebsd.org Subject: Re: lam/MPI with trillium libraries 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, 14 Aug 2007 23:48:46 -0000 On Tue, 14 Aug 2007 18:39:08 -0500 "Scot Hetzel" wrote: > On 8/14/07, James wrote: > > I'm looking to build a copy of a debugging program called XMPI. For > > this to work, I have to have lam/MPI installed with the trillium > > libraries. > > > > I couldn't see any easy way to tell the net/lam port to install > > itself with these libraries, though it makes some measure of sense > > to me that there ought to be one. Is anyone out there aware of any > > way to do this? It's typically passed as a flag > > during ./configure, so if I'm just uninformed as to the ways of > > ports and there's an easy way to pass that in, that'd be a great > > solution. > > >=20 > Edit the ports Makefile and add the flag to CONFIGURE_ARGS. >=20 > If you want to make this flag conditional, add: >=20 > .if defined(WITH_MYOPTION) > CONFIGURE_ARGS+=3D --enable-my-option > .endif >=20 > after "CONFIGURE_ARGS=3D" in the Makefile. Yes, but changes like this will be erased by 'portsnap fetch update' after the next net/lam port revision. Nikola Le=C4=8Di=C4=87 From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 23:51:40 2007 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 6FC0916A417 for ; Tue, 14 Aug 2007 23:51:40 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-7.EUnet.yu (smtpclu-7.eunet.yu [194.247.192.232]) by mx1.freebsd.org (Postfix) with ESMTP id DB85A13C4A5 for ; Tue, 14 Aug 2007 23:51:39 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-213-51.eunet.yu [213.198.213.51]) by smtpclu-7.EUnet.yu (8.13.6/8.13.6) with ESMTP id l7EMkYgf014371; Wed, 15 Aug 2007 00:46:35 +0200 Message-Id: <200708142246.l7EMkYgf014371@smtpclu-7.EUnet.yu> Date: Wed, 15 Aug 2007 01:46:38 +0200 From: Nikola Lecic To: freebsd-ports@freebsd.org In-Reply-To: References: X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_40,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -0.2 Cc: James Subject: Re: lam/MPI with trillium libraries 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, 14 Aug 2007 23:51:40 -0000 On Tue, 14 Aug 2007 16:56:04 -0600 James wrote: > I'm looking to build a copy of a debugging program called XMPI. For > this to work, I have to have lam/MPI installed with the trillium > libraries. >=20 > I couldn't see any easy way to tell the net/lam port to install > itself with these libraries, though it makes some measure of sense to > me that there ought to be one. Is anyone out there aware of any way > to do this? It's typically passed as a flag during ./configure, so > if I'm just uninformed as to the ways of ports and there's an easy > way to pass that in, that'd be a great solution. Hi James, The default configure args for that port are CONFIGURE_ARGS=3D --with-rsh=3Dssh So, if you just want to do 'make install', then # make CONFIGURE_ARGS=3D' --with-rsh=3Dssh --with-....' # make install clean or, if you use portupgrade, add MAKE_ARGS =3D { 'net/lam' =3D> ' --with-rsh=3Dssh --with-....', ... } to your /usr/local/etc/pkgtools.conf to save them for future upgrades. There are also other ways to preserve make options. Nikola Le=C4=8Di=C4=87 From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 00:12:40 2007 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 D9D0516A41B for ; Wed, 15 Aug 2007 00:12:40 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-3.eunet.yu (smtpclu-3.eunet.yu [194.247.192.228]) by mx1.freebsd.org (Postfix) with ESMTP id 4D37D13C461 for ; Wed, 15 Aug 2007 00:12:40 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-213-51.eunet.yu [213.198.213.51]) by smtpclu-3.eunet.yu (8.13.6/8.13.6) with ESMTP id l7ENf26s023342; Wed, 15 Aug 2007 01:41:03 +0200 Message-Id: <200708142341.l7ENf26s023342@smtpclu-3.eunet.yu> Date: Wed, 15 Aug 2007 01:36:07 +0200 From: Nikola Lecic To: James In-Reply-To: References: X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_20,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -0.7 Cc: ports@FreeBSD.org Subject: Re: lam/MPI with trillium libraries 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, 15 Aug 2007 00:12:40 -0000 On Tue, 14 Aug 2007 16:56:04 -0600 James wrote: > I'm looking to build a copy of a debugging program called XMPI. For > this to work, I have to have lam/MPI installed with the trillium > libraries. >=20 > I couldn't see any easy way to tell the net/lam port to install > itself with these libraries, though it makes some measure of sense to > me that there ought to be one. Is anyone out there aware of any way > to do this? It's typically passed as a flag during ./configure, so > if I'm just uninformed as to the ways of ports and there's an easy > way to pass that in, that'd be a great solution. Hi James, The default configure args for that port are CONFIGURE_ARGS=3D --with-rsh=3Dssh So, if you just want to do 'make install', then # make CONFIGURE_ARGS=3D' --with-rsh=3Dssh --with-....' # make install clean or, if you use portupgrade, add MAKE_ARGS =3D { 'net/lam' =3D> ' --with-rsh=3Dssh --with-....', ... } to your /usr/local/etc/pkgtools.conf to save them for future upgrades. There are also other ways to preserve make options. Nikola Le=C4=8Di=C4=87 From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 00:14:02 2007 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 6F82516A417 for ; Wed, 15 Aug 2007 00:14:02 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.184]) by mx1.freebsd.org (Postfix) with ESMTP id E472E13C494 for ; Wed, 15 Aug 2007 00:14:01 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: by mu-out-0910.google.com with SMTP id w9so2102142mue for ; Tue, 14 Aug 2007 17:14:00 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=PepjL5jl0HuYctkpw+U4IKI3iWWZAYkAezgxPZOWbm+kv+CyDuVjGE8xOSMaex130YjEKSnbS5+3hzwuCBk0prcpX1UFc19VXgGi1vypHb3xst/nVL4V/zGa+9aTEZGQ7/QL/3bwrO/wragFL3MwUJSvDzvRTb0aiK9Qx+dTzX4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Y6dV7SSMTGpaCrN0t9oCt46dvkl9NgYmhaBcUQO7qapCg6iwoE2lk6J/ftEQHjPE7JIXLc58WsPqMG8S4ONgECL5yE268921R5pnYQlYbNL4jfYKMQXUi+HKznlHdrIxdjJeYKpn7mxmVeaDnGL2Z4VDWETrcpp5b4G/DF408XQ= Received: by 10.86.23.17 with SMTP id 17mr5984913fgw.1187136840275; Tue, 14 Aug 2007 17:14:00 -0700 (PDT) Received: by 10.86.59.6 with HTTP; Tue, 14 Aug 2007 17:14:00 -0700 (PDT) Message-ID: <790a9fff0708141714x50fce15eja53aee87103a4412@mail.gmail.com> Date: Tue, 14 Aug 2007 19:14:00 -0500 From: "Scot Hetzel" To: "Nikola Lecic" In-Reply-To: <200708142348.l7ENmeTY012832@eunet.yu> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <790a9fff0708141639h4a805f95n6519c40dc5dcd20a@mail.gmail.com> <200708142348.l7ENmeTY012832@eunet.yu> Cc: James , freebsd-ports@freebsd.org Subject: Re: lam/MPI with trillium libraries 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, 15 Aug 2007 00:14:02 -0000 On 8/14/07, Nikola Lecic wrote: > On Tue, 14 Aug 2007 18:39:08 -0500 > "Scot Hetzel" wrote: > > > On 8/14/07, James wrote: > > > I'm looking to build a copy of a debugging program called XMPI. For > > > this to work, I have to have lam/MPI installed with the trillium > > > libraries. > > > > > > I couldn't see any easy way to tell the net/lam port to install > > > itself with these libraries, though it makes some measure of sense > > > to me that there ought to be one. Is anyone out there aware of any > > > way to do this? It's typically passed as a flag > > > during ./configure, so if I'm just uninformed as to the ways of > > > ports and there's an easy way to pass that in, that'd be a great > > > solution. > > > > > > > Edit the ports Makefile and add the flag to CONFIGURE_ARGS. > > > > If you want to make this flag conditional, add: > > > > .if defined(WITH_MYOPTION) > > CONFIGURE_ARGS+= --enable-my-option > > .endif > > > > after "CONFIGURE_ARGS=" in the Makefile. > > Yes, but changes like this will be erased by 'portsnap fetch update' > after the next net/lam port revision. > It depends on how the ports are updated. cvs -q update -P -d won't make the change disappear. Or if the change is submitted in a PR. Scot -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised. From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 00:15:08 2007 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 7E8F316A41A for ; Wed, 15 Aug 2007 00:15:08 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-7.EUnet.yu (smtpclu-7.eunet.yu [194.247.192.232]) by mx1.freebsd.org (Postfix) with ESMTP id 0DC4913C428 for ; Wed, 15 Aug 2007 00:15:07 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-213-51.eunet.yu [213.198.213.51]) by smtpclu-7.EUnet.yu (8.13.6/8.13.6) with ESMTP id l7EN2Hrp022527; Wed, 15 Aug 2007 01:02:18 +0200 Message-Id: <200708142302.l7EN2Hrp022527@smtpclu-7.EUnet.yu> Date: Wed, 15 Aug 2007 02:02:21 +0200 From: Nikola Lecic To: Roman Budzianowski In-Reply-To: <6CCE9A88-273C-4FB9-AFE4-3E584E061722@budzianowski.net> References: <6CCE9A88-273C-4FB9-AFE4-3E584E061722@budzianowski.net> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_50,UNPARSEABLE_RELAY X-AVAS-Spam-Score: 0.0 Cc: freebsd-ports@freebsd.org Subject: Re: bash on 6.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: Wed, 15 Aug 2007 00:15:08 -0000 On Tue, 14 Aug 2007 15:27:03 -0700 Roman Budzianowski wrote: > I tried to install bash a year ago and ran into a size mismatch =20 > (expected 1829, actual 5218). I am trying to install it again in a =20 > fresh 6.1 installation. I read an archived advice from this list and =20 > ran 'make clean' in /usr/ports. >=20 > First, it ran for 18 hours! (on vmware VM, one processor of dual > core pentium, 10k sata disk). What is this thing doing? Hello Roman, If you run 'make clean' in /usr/ports... :) You should run 'make' commands in /usr/ports/aaa/bbb/ directories. As of bash, it has a few dependencies and compiles pretty quicky. But if I misunderstood what you actually did to trigger 18-hour compilation, please provide a bit of buildlog, nobody can say what happened without it. > Anyway, after all this trouble I still get the same result. Below I =20 > am including the log. Could somebody help me install bash please? > I don't know much about the ports. But I used Berkley 4.3 ;) (with 1 =20 > Meg RAM, X Window included, guess what year). The current bash version is 3.2, so why don't upgrade your ports tree first ('portsnap fetch update')? 'make fetch' just passed without size mismatches for me, whatever is the reason with the old port version. Nikola Le=C4=8Di=C4=87 From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 00:18:12 2007 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 B13FB16A420 for ; Wed, 15 Aug 2007 00:18:12 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 9F9CC13C45B for ; Wed, 15 Aug 2007 00:18:12 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from rot26.obsecurity.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id EB22E1A4D7C; Tue, 14 Aug 2007 17:16:47 -0700 (PDT) Received: by rot26.obsecurity.org (Postfix, from userid 1001) id CAC00C1DE; Tue, 14 Aug 2007 20:18:11 -0400 (EDT) Date: Tue, 14 Aug 2007 20:18:11 -0400 From: Kris Kennaway To: Roman Budzianowski Message-ID: <20070815001811.GA25336@rot26.obsecurity.org> References: <6CCE9A88-273C-4FB9-AFE4-3E584E061722@budzianowski.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6CCE9A88-273C-4FB9-AFE4-3E584E061722@budzianowski.net> User-Agent: Mutt/1.4.2.3i Cc: ports@freebsd.org Subject: Re: bash on 6.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: Wed, 15 Aug 2007 00:18:12 -0000 On Tue, Aug 14, 2007 at 03:27:03PM -0700, Roman Budzianowski wrote: > I tried to install bash a year ago and ran into a size mismatch > (expected 1829, actual 5218). I am trying to install it again in a > fresh 6.1 installation. I read an archived advice from this list and > ran 'make clean' in /usr/ports. > > First, it ran for 18 hours! (on vmware VM, one processor of dual core > pentium, 10k sata disk). What is this thing doing? Recursively cleaning build directories from all 17000+ ports in the tree. This was probably not really a good idea :) In general to clean up a port's previous build directory you just needed to run it on the single port you were trying to build. However make clean doesn't remove old distfiles anyway, you want 'make distclean' (again, from the bash port directory). Kris From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 00:44:40 2007 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 4701216A420 for ; Wed, 15 Aug 2007 00:44:40 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 20EB213C46B for ; Wed, 15 Aug 2007 00:44:39 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id DD9ED51937 for ; Tue, 14 Aug 2007 20:44:38 -0400 (EDT) Date: Wed, 15 Aug 2007 01:44:35 +0100 From: RW To: freebsd-ports@freebsd.org Message-ID: <20070815014435.674b6cc0@gumby.homeunix.com.> In-Reply-To: <20070814170852.GA25539@lordcow.org> References: <20070814170852.GA25539@lordcow.org> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: ports tree out've sync 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, 15 Aug 2007 00:44:40 -0000 On Tue, 14 Aug 2007 19:08:52 +0200 gareth wrote: > hey guys, i can't see a similar question recently so i wonder if > i've done something wrong? i've noticed for about 2 weeks that > things seem to be out've sync: > > if i do a cvsup with either host=cvsup.FreeBSD.org or > cvsup2.FreeBSD.org and then a portsdb (even after > removing /usr/ports/INDEX-6*) > > 'portversion -l ">"' returns 32 packages? > > ('portversion -l "<"' returns nothing) > > > similarly for portaudit: > > # portaudit -F > auditfile.tbz 100% of 43 kB 1016 > kBps portaudit: Database too old. > Old database restored. > portaudit: Download failed. > Given that no-one else is complaining, and it's a single url, the most likely explanation for "Database too old" is that your system clock is set to the wrong date. From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 00:54:07 2007 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 94D5D16A418 for ; Wed, 15 Aug 2007 00:54:07 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from mail.uct.ac.za (mail.uct.ac.za [137.158.153.100]) by mx1.freebsd.org (Postfix) with ESMTP id 391B413C474 for ; Wed, 15 Aug 2007 00:54:07 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from lhc.phy.uct.ac.za ([137.158.92.134]) by mail.uct.ac.za with esmtp (Exim 4.44 (FreeBSD)) id 1IL799-000Dpe-EF for ports@freebsd.org; Wed, 15 Aug 2007 02:54:03 +0200 Received: from lordcow by lhc.phy.uct.ac.za with local (Exim 4.67) (envelope-from ) id 1IL79D-0001Oh-Pi for ports@freebsd.org; Wed, 15 Aug 2007 02:54:07 +0200 Date: Wed, 15 Aug 2007 02:54:07 +0200 From: gareth To: ports@freebsd.org Message-ID: <20070815005407.GA5170@lordcow.org> Mail-Followup-To: ports@freebsd.org References: <20070814170852.GA25539@lordcow.org> <20070815014435.674b6cc0@gumby.homeunix.com.> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070815014435.674b6cc0@gumby.homeunix.com.> User-Agent: Mutt/1.5.16 (2007-06-11) Cc: Subject: Re: ports tree out've sync 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, 15 Aug 2007 00:54:07 -0000 On Wed 2007-08-15 (01:44), RW wrote: > Given that no-one else is complaining, and it's a single url, the most > likely explanation for "Database too old" is that your system clock is > set to the wrong date. hi, i use ntpd (just checked again, the date/time is normal). From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 02:39:18 2007 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 6A14216A421 for ; Wed, 15 Aug 2007 02:39:18 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with SMTP id 2100113C428 for ; Wed, 15 Aug 2007 02:39:17 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 11255 invoked by uid 399); 15 Aug 2007 02:39:15 -0000 Received: from localhost (HELO slave.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 15 Aug 2007 02:39:15 -0000 X-Originating-IP: 127.0.0.1 Date: Tue, 14 Aug 2007 19:39:13 -0700 (PDT) From: Doug Barton To: Rakhesh Sasidharan In-Reply-To: <20070814214727.P47947@asterix.home.rakhesh.com> Message-ID: References: <20070814214727.P47947@asterix.home.rakhesh.com> X-message-flag: Outlook -- Not just for spreading viruses anymore! X-OpenPGP-Key-ID: 0xD5B2F0FB Organization: http://www.FreeBSD.org/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=us-ascii Cc: freebsd-ports@freebsd.org Subject: Re: Unable to get pine-pgp-filters and pinentry-curses to work together 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, 15 Aug 2007 02:39:18 -0000 On Tue, 14 Aug 2007, Rakhesh Sasidharan wrote: > > Hi there! > > I installed mail/pine and security/gnupg from ports. While trying to use > gnupg, whenever it needed to ask me for the passphrase, I ran into errors > such as the below: > > gpg-agent[86284]: can't connect server: `ERR 67109133 can't exec > `/usr/local/bin/pinentry': No such file or directory' The pkg-message for gnupg clearly says that you need to have a pinentry program. Glad you figured that bit out. > --8<-- Two questions here: > > 1) Why isn't security/pinentry pulled in as a dependency of security/gnupg? > Shouldn't that have been the "obvious" thing to do? Or is it possible to > bypass pinentry somehow? There are 4 different versions of pinentry, trying to determine what should be the default would be difficult at best. > 2) If I do a "make install" in security/pinentry, it straight away moves onto > compiling Qt etc (as dependencies for security/pinentry-qt I suppose). > Shouldn't it rather ask me what I want and then accordingly install one of > the pinentry-* ports? If you want pinentry-curses, that's the port you should use. > Later, I installed pine-pgp-filters. Always glad to have a new user, but you might have thought to cc this message to the author/maintainer of that port. :) > Now, whenever I send a mail and want to sign/ encrypt it and gnupg has > to ask me for the passphrase, it messes my screen up! I get error > messages like these: Based on what Pine gives me to work with, I don't see any way that I could pass control of the terminal to a third application. I use gnupg2 with the gtk pinentry program with pine and the filters just fine, but if you can't do X, then ... > For now the only workaround I've come up with is to install security/gnupg1. > That does not require pinentry and so it works well with pine-pgp-filters. I think that's your only option. hope this helps, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 02:42:51 2007 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 8603316A418 for ; Wed, 15 Aug 2007 02:42:51 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with SMTP id 27EAC13C458 for ; Wed, 15 Aug 2007 02:42:51 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 14710 invoked by uid 399); 15 Aug 2007 02:42:50 -0000 Received: from localhost (HELO slave.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 15 Aug 2007 02:42:50 -0000 X-Originating-IP: 127.0.0.1 Date: Tue, 14 Aug 2007 19:42:48 -0700 (PDT) From: Doug Barton To: Alexey Rubtsov In-Reply-To: Message-ID: References: X-message-flag: Outlook -- Not just for spreading viruses anymore! X-OpenPGP-Key-ID: 0xD5B2F0FB Organization: http://www.FreeBSD.org/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=us-ascii Cc: ports@freebsd.org, mm@freebsd.org, tobez@freebsd.org Subject: Re: order of dependencies 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, 15 Aug 2007 02:42:51 -0000 On Fri, 10 Aug 2007, Alexey Rubtsov wrote: > Hello All!. > > The target all-depends-list from bsd.ports.mk print dependencies in not > correct order. In this target dependencies was looked from up to down > and do not check dependencies whoes already checked(for reduce execution > time). As result - order of dependencies is incorrect. As far as I can see, you didn't get a reply, so I'll take a shot at it. I don't think what you're asking for is really possible, since by nature the dependencies have to be searched recursively. Ports tools like portmaster ignore the order that they are returned in, and do a depth-first traversal of all dependencies, internally recording those that are already up to date. hope this helps, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 04:15:23 2007 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 7BEE716A421 for ; Wed, 15 Aug 2007 04:15:23 +0000 (UTC) (envelope-from roman.j@budzianowski.net) Received: from jasiu.budzianowski.net (romanb.seanet.com [199.181.166.106]) by mx1.freebsd.org (Postfix) with ESMTP id 4272F13C47E for ; Wed, 15 Aug 2007 04:15:23 +0000 (UTC) (envelope-from roman.j@budzianowski.net) Received: from [208.12.21.128] (romanb.seanet.com [199.181.166.106]) (authenticated bits=0) by jasiu.budzianowski.net (8.12.8/8.12.5) with ESMTP id l7F2aunr010713; Tue, 14 Aug 2007 19:36:56 -0700 In-Reply-To: <200708142302.l7EN2Hrp022527@smtpclu-7.EUnet.yu> References: <6CCE9A88-273C-4FB9-AFE4-3E584E061722@budzianowski.net> <200708142302.l7EN2Hrp022527@smtpclu-7.EUnet.yu> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=UTF-8; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: quoted-printable From: Roman Budzianowski Date: Tue, 14 Aug 2007 20:29:26 -0700 To: Nikola Lecic X-Mailer: Apple Mail (2.752.2) Cc: freebsd-ports@freebsd.org Subject: Re: bash on 6.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: Wed, 15 Aug 2007 04:15:23 -0000 Thanks Nicola! I did run 'make clean' in /usr/ports. I guess 'make' =20 is not very efficient ;) It actually removed distfiles. But it didn't =20= help as I said. Kris, 'make distclean' in /usr/ports/shells/bash didn't help either. But 'portsnap fetch update' helped! I have now bash shell. Roman On Aug 14, 2007, at 5:02 PM, Nikola Lecic wrote: > On Tue, 14 Aug 2007 15:27:03 -0700 > Roman Budzianowski wrote: > >> I tried to install bash a year ago and ran into a size mismatch >> (expected 1829, actual 5218). I am trying to install it again in a >> fresh 6.1 installation. I read an archived advice from this list and >> ran 'make clean' in /usr/ports. >> >> First, it ran for 18 hours! (on vmware VM, one processor of dual >> core pentium, 10k sata disk). What is this thing doing? > > Hello Roman, > > If you run 'make clean' in /usr/ports... :) You should run 'make' > commands in /usr/ports/aaa/bbb/ directories. As of bash, it has a few > dependencies and compiles pretty quicky. > > But if I misunderstood what you actually did to trigger 18-hour > compilation, please provide a bit of buildlog, nobody can say what > happened without it. > >> Anyway, after all this trouble I still get the same result. Below I >> am including the log. Could somebody help me install bash please? >> I don't know much about the ports. But I used Berkley 4.3 ;) (with 1 >> Meg RAM, X Window included, guess what year). > > The current bash version is 3.2, so why don't upgrade your ports tree > first ('portsnap fetch update')? 'make fetch' just passed without size > mismatches for me, whatever is the reason with the old port version. > > Nikola Le=C4=8Di=C4=87 From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 04:56:20 2007 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 D1C7816A419 for ; Wed, 15 Aug 2007 04:56:20 +0000 (UTC) (envelope-from rakhesh@rakhesh.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.freebsd.org (Postfix) with ESMTP id 6CA4713C45E for ; Wed, 15 Aug 2007 04:56:20 +0000 (UTC) (envelope-from rakhesh@rakhesh.com) Received: by nf-out-0910.google.com with SMTP id b2so846421nfb for ; Tue, 14 Aug 2007 21:56:19 -0700 (PDT) Received: by 10.78.201.2 with SMTP id y2mr27501huf.1187152290315; Tue, 14 Aug 2007 21:31:30 -0700 (PDT) Received: from smtp.home.rakhesh.com ( [82.178.137.21]) by mx.google.com with ESMTPS id 4sm2551955hud.2007.08.14.21.31.27 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 14 Aug 2007 21:31:29 -0700 (PDT) Received: from obelix.home.rakhesh.com (obelix.home.rakhesh.com [192.168.17.13]) by smtp.home.rakhesh.com (Postfix) with ESMTP id 5729D5080A; Wed, 15 Aug 2007 08:31:00 +0400 (GST) Date: Wed, 15 Aug 2007 08:31:00 +0400 (GST) X-X-Sender: rakhesh@obelix.home.rakhesh.com To: Doug Barton In-Reply-To: Message-ID: <20070815081808.C54184@obelix.home.rakhesh.com> References: <20070814214727.P47947@asterix.home.rakhesh.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed From: Rakhesh Sasidharan Cc: freebsd-ports@freebsd.org Subject: Re: Unable to get pine-pgp-filters and pinentry-curses to work together 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, 15 Aug 2007 04:56:20 -0000 Doug Barton wrote: > On Tue, 14 Aug 2007, Rakhesh Sasidharan wrote: >> I installed mail/pine and security/gnupg from ports. While trying to use >> gnupg, whenever it needed to ask me for the passphrase, I ran into errors >> such as the below: >> >> gpg-agent[86284]: can't connect server: `ERR 67109133 can't exec >> `/usr/local/bin/pinentry': No such file or directory' > > The pkg-message for gnupg clearly says that you need to have a pinentry > program. Glad you figured that bit out. Now that you mention, yeah, it does! Funny I missed it out. Since it mentions pinentry there, that's fine, no need to pull it in as a dependency. My bad. :) >> Later, I installed pine-pgp-filters. > > Always glad to have a new user, but you might have thought to cc this message > to the author/maintainer of that port. :) I know you subscribe to this list. Have seen a lot of your postings here, that's why I didn't copy you specifically. By posting to the list there'd be some info on this by way of archives and I'd get a reply from you anyways. :) BTW, I ask coz I don't know: as a matter of etiquette, is it a good idea to cc the author/ maintainer of the port even if he/ she is subscribed to the list? >> Now, whenever I send a mail and want to sign/ encrypt it and gnupg has to >> ask me for the passphrase, it messes my screen up! I get error messages >> like these: > > Based on what Pine gives me to work with, I don't see any way that I could > pass control of the terminal to a third application. I use gnupg2 with the > gtk pinentry program with pine and the filters just fine, but if you can't do > X, then ... Ok, so it is something like what I thought. >> For now the only workaround I've come up with is to install >> security/gnupg1. That does not require pinentry and so it works well with >> pine-pgp-filters. > > I think that's your only option. Hmm, ok. Thank you, Rakhesh From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 07:05:39 2007 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 A2B3616A419 for ; Wed, 15 Aug 2007 07:05:39 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with SMTP id 39EE313C4B5 for ; Wed, 15 Aug 2007 07:05:38 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 16405 invoked by uid 399); 15 Aug 2007 07:05:38 -0000 Received: from localhost (HELO slave.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 15 Aug 2007 07:05:38 -0000 X-Originating-IP: 127.0.0.1 Date: Wed, 15 Aug 2007 00:05:36 -0700 (PDT) From: Doug Barton To: Rakhesh Sasidharan In-Reply-To: <20070815081808.C54184@obelix.home.rakhesh.com> Message-ID: References: <20070814214727.P47947@asterix.home.rakhesh.com> <20070815081808.C54184@obelix.home.rakhesh.com> X-message-flag: Outlook -- Not just for spreading viruses anymore! X-OpenPGP-Key-ID: 0xD5B2F0FB Organization: http://www.FreeBSD.org/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=us-ascii Cc: freebsd-ports@freebsd.org Subject: Re: Unable to get pine-pgp-filters and pinentry-curses to work together 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, 15 Aug 2007 07:05:39 -0000 On Wed, 15 Aug 2007, Rakhesh Sasidharan wrote: > BTW, I ask coz I don't know: as a matter of etiquette, is it a good idea to > cc the author/ maintainer of the port even if he/ she is subscribed to the > list? I think that both tradition and expediency say "yes." You happened to catch me on a night when I was reviewing mail on the lists, which (like most developers) isn't every night. I do place a high priority on mail about my ports though, especially when both the port and the software are mine. :) Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 08:18:59 2007 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 06CC816A418 for ; Wed, 15 Aug 2007 08:18:59 +0000 (UTC) (envelope-from rakhesh@rakhesh.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.190]) by mx1.freebsd.org (Postfix) with ESMTP id 90C9813C45D for ; Wed, 15 Aug 2007 08:18:58 +0000 (UTC) (envelope-from rakhesh@rakhesh.com) Received: by nf-out-0910.google.com with SMTP id b2so858678nfb for ; Wed, 15 Aug 2007 01:18:57 -0700 (PDT) Received: by 10.78.122.16 with SMTP id u16mr74890huc.1187165936092; Wed, 15 Aug 2007 01:18:56 -0700 (PDT) Received: from smtp.home.rakhesh.com ( [82.178.137.21]) by mx.google.com with ESMTPS id 37sm4014241hua.2007.08.15.01.18.53 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 15 Aug 2007 01:18:55 -0700 (PDT) Received: from obelix.home.rakhesh.com (obelix.home.rakhesh.com [192.168.17.13]) by smtp.home.rakhesh.com (Postfix) with ESMTP id C839E5080A; Wed, 15 Aug 2007 12:18:26 +0400 (GST) Date: Wed, 15 Aug 2007 12:18:26 +0400 (GST) X-X-Sender: rakhesh@obelix.home.rakhesh.com To: Doug Barton In-Reply-To: Message-ID: <20070815121217.D82445@obelix.home.rakhesh.com> References: <20070814214727.P47947@asterix.home.rakhesh.com> <20070815081808.C54184@obelix.home.rakhesh.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed From: Rakhesh Sasidharan Cc: freebsd-ports@freebsd.org Subject: Re: Unable to get pine-pgp-filters and pinentry-curses to work together 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, 15 Aug 2007 08:18:59 -0000 Doug Barton wrote: > On Wed, 15 Aug 2007, Rakhesh Sasidharan wrote: > >> BTW, I ask coz I don't know: as a matter of etiquette, is it a good idea to >> cc the author/ maintainer of the port even if he/ she is subscribed to the >> list? > > I think that both tradition and expediency say "yes." You happened to catch > me on a night when I was reviewing mail on the lists, which (like most > developers) isn't every night. I do place a high priority on mail about my > ports though, especially when both the port and the software are mine. :) Thanks for the info. :) Regards, - Rakhesh http://rakhesh.com/ From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 11:00:42 2007 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 572A316A419 for ; Wed, 15 Aug 2007 11:00:42 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (pointyhat.freebsd.org [IPv6:2001:4f8:fff6::2b]) by mx1.freebsd.org (Postfix) with ESMTP id 382E813C457 for ; Wed, 15 Aug 2007 11:00:42 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (localhost [127.0.0.1]) by pointyhat.freebsd.org (8.14.1/8.14.1) with ESMTP id l7FB0XT8056332 for ; Wed, 15 Aug 2007 11:00:33 GMT (envelope-from erwin@pointyhat.freebsd.org) Received: (from erwin@localhost) by pointyhat.freebsd.org (8.14.1/8.14.1/Submit) id l7FAWtqv078747 for ports@FreeBSD.org; Wed, 15 Aug 2007 10:32:55 GMT (envelope-from erwin) Date: Wed, 15 Aug 2007 10:32:55 GMT From: Erwin Lansing Message-Id: <200708151032.l7FAWtqv078747@pointyhat.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 6.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2007 11:00:42 -0000 INDEX build failed with errors: Generating INDEX-6 - please wait..pkg_info: not found pkg_info: not found pkg_info: not found "Makefile", line 65: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status "/a/erwin/tindex/ports/x11/nvidia-driver-71xx/../nvidia-driver/Makefile", line 65: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status "/a/erwin/tindex/ports/x11/nvidia-driver-96xx/../nvidia-driver/Makefile", line 65: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status Done. make_index: gnustep-app-1.13.0_24: no entry for /usr/ports/www/webserver make_index: gnustep-app-1.13.0_24: no entry for /usr/ports/www/webserver make_index: plone-2.5.3: no entry for /usr/ports/www/zope29 make_index: mknmz-wwwoffle-0.7.2: no entry for /usr/ports/www/wwwoffle make_index: emacs-w3m-emacs21-1.4.4_3: no entry for /usr/ports/www/w3m-m17n make_index: emacs-w3m-emacs21-1.4.4_3: no entry for /usr/ports/www/w3m-m17n make_index: vtiger-5.0.2_2: no entry for /usr/ports/x11/3ddesktop make_index: vtiger-5.0.2_2: no entry for /nonexistentlocal make_index: vtiger-5.0.2_2: no entry for 3D make_index: vtiger-5.0.2_2: no entry for Virtual make_index: vtiger-5.0.2_2: no entry for Desktop make_index: vtiger-5.0.2_2: no entry for Switcher make_index: vtiger-5.0.2_2: no entry for /usr/ports/x11/3ddesktop/pkg-descr make_index: vtiger-5.0.2_2: no entry for ports@FreeBSD.org make_index: ja-zope-jaMailHost-0.4.4: no entry for /usr/ports/www/zope make_index: firefox-i18n-2.0.0.6: no entry for /usr/ports/www/xpi-quick-locale-switcher make_index: thunderbird-i18n-2.0.0.6: no entry for /usr/ports/www/xpi-quick-locale-switcher make_index: ja-zope-ejSplitter-0.5.0: no entry for /usr/ports/www/zope make_index: eclipse-3.2.2: no entry for /usr/ports/www/xulrunner make_index: eclipse-3.2.2: no entry for /usr/ports/www/xulrunner [...] make_index: squishdot-1.5.0_1: no entry for /usr/ports/www/zope make_index: emacs-w3m-xemacs21-mule-1.4.4_3: no entry for /usr/ports/www/w3m-m17n make_index: emacs-w3m-xemacs21-mule-1.4.4_3: no entry for /usr/ports/www/w3m-m17n make_index: html2ps-letter-1.0.b5_1,1: no entry for /usr/ports/www/weblint make_index: dtc-toaster-0.24.6.1_4: no entry for /usr/ports/www/webalizer make_index: hs-gtk2hs-0.9.12,1: no entry for /usr/ports/www/xulrunner make_index: hs-gtk2hs-0.9.12,1: no entry for /usr/ports/www/xulrunner make_index: ja-pycodec-zope-1.4.11_1: no entry for /usr/ports/www/zope make_index: knowledgekit-1.6.7: no entry for /usr/ports/www/zope make_index: html2ps-A4-1.0.b5_1,1: no entry for /usr/ports/www/weblint make_index: doxymacs-1.8.0: no entry for /usr/ports/www/w3-4 make_index: doxymacs-1.8.0: no entry for /usr/ports/www/w3-4 make_index: sunbird-i18n-0.5: no entry for /usr/ports/www/xpi-quick-locale-switcher make_index: august-0.63b_3: no entry for /usr/ports/www/weblint make_index: bluefish-1.0.7_2: no entry for /usr/ports/www/weblint make_index: emacs-w3m-emacs22-1.4.4_3: no entry for /usr/ports/www/w3m-m17n make_index: emacs-w3m-emacs22-1.4.4_3: no entry for /usr/ports/www/w3m-m17n make_index: emacs-w3m-emacs20-1.4.4_3: no entry for /usr/ports/www/w3m-m17n make_index: emacs-w3m-emacs20-1.4.4_3: no entry for /usr/ports/www/w3m-m17n make_index: rfc-3.2.3: no entry for /usr/ports/www/w3m Committers on the hook: beech clsung itetcu lbr sat Most recent CVS update was: U databases/xapian-bindings/Makefile U databases/xapian-bindings/distinfo U databases/xapian-bindings/pkg-plist U deskutils/when/Makefile U deskutils/when/distinfo U devel/p5-Moose/Makefile U devel/p5-Moose/distinfo U devel/p5-Moose/pkg-plist U editors/yui/Makefile U irc/bitchx/Makefile U irc/bitchx/distinfo U math/speedcrunch/Makefile U net/p5-Net-SIP/Makefile U net/p5-Net-SIP/distinfo U net/skype-devel/Makefile U net/skype-devel/distinfo U net-mgmt/ocs-unix-agent/Makefile U security/prelude-manager/Makefile U security/prelude-manager/distinfo U security/prelude-manager/files/pkg-deinstall.in U security/prelude-manager/files/pkg-install.in U sysutils/virtualmin/Makefile U sysutils/virtualmin/distinfo U sysutils/virtualmin/pkg-plist U textproc/p5-XML-Compile/Makefile U textproc/p5-XML-Compile/distinfo U textproc/p5-XML-Compile/pkg-plist U www/py-prewikka/Makefile U www/py-prewikka/distinfo U www/py-prewikka/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 12:00:43 2007 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 DA3F016A478 for ; Wed, 15 Aug 2007 12:00:42 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (pointyhat.freebsd.org [IPv6:2001:4f8:fff6::2b]) by mx1.freebsd.org (Postfix) with ESMTP id A576813C4B4 for ; Wed, 15 Aug 2007 12:00:42 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (localhost [127.0.0.1]) by pointyhat.freebsd.org (8.14.1/8.14.1) with ESMTP id l7FC0YJp071248 for ; Wed, 15 Aug 2007 12:00:34 GMT (envelope-from erwin@pointyhat.freebsd.org) Received: (from erwin@localhost) by pointyhat.freebsd.org (8.14.1/8.14.1/Submit) id l7FBqdHn077210 for ports@FreeBSD.org; Wed, 15 Aug 2007 11:52:39 GMT (envelope-from erwin) Date: Wed, 15 Aug 2007 11:52:39 GMT From: Erwin Lansing Message-Id: <200708151152.l7FBqdHn077210@pointyhat.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 5.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2007 12:00:43 -0000 INDEX build failed with errors: Generating INDEX-5 - please wait.. Done. make_index: tme-0.4_3: no entry for /usr/ports/devel/pkg-config make_index: tme-0.4_3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: tme-0.4_3: no entry for /usr/ports/x11/xorg-libraries make_index: tme-0.4_3: no entry for /usr/ports/devel/pkg-config make_index: tme-0.4_3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: tme-0.4_3: no entry for /usr/ports/x11/xorg-libraries make_index: gimp-app-2.3.19,1: no entry for /usr/ports/devel/pkg-config make_index: gimp-app-2.3.19,1: no entry for /usr/ports/graphics/png make_index: gimp-app-2.3.19,1: no entry for /usr/ports/graphics/poppler-gtk make_index: gimp-app-2.3.19,1: no entry for /usr/ports/graphics/tiff make_index: gimp-app-2.3.19,1: no entry for /usr/ports/misc/gnome-mime-data make_index: gimp-app-2.3.19,1: no entry for /usr/ports/net/linc make_index: gimp-app-2.3.19,1: no entry for /usr/ports/textproc/intltool make_index: gimp-app-2.3.19,1: no entry for /usr/ports/textproc/libxml2 make_index: gimp-app-2.3.19,1: no entry for /usr/ports/textproc/libxslt make_index: gimp-app-2.3.19,1: no entry for /usr/ports/www/libgtkhtml make_index: gimp-app-2.3.19,1: no entry for /usr/ports/x11-toolkits/gtk20 make_index: gimp-app-2.3.19,1: no entry for /usr/ports/x11-toolkits/pango make_index: gimp-app-2.3.19,1: no entry for /usr/ports/x11/libXpm make_index: gimp-app-2.3.19,1: no entry for /usr/ports/x11/xorg-libraries [...] make_index: ruby18-dbi-0.1.1: no entry for /usr/ports/lang/ruby18 make_index: ruby18-dbi-0.1.1: no entry for /usr/ports/lang/ruby18 make_index: ruby18-dbi-0.1.1: no entry for /usr/ports/lang/ruby18 make_index: ruby18-dbi-0.1.1: no entry for /usr/ports/devel/ruby-aspectr make_index: ruby18-dbi-0.1.1: no entry for /usr/ports/lang/ruby18 make_index: ocaml-lablgl-1.02_1: no entry for /usr/ports/lang/ocaml make_index: ocaml-lablgl-1.02_1: no entry for /usr/ports/lang/ocaml make_index: ocaml-lablgl-1.02_1: no entry for /usr/ports/lang/ocaml make_index: ocaml-lablgl-1.02_1: no entry for /usr/ports/lang/ocaml make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/devel/pkg-config make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/devel/popt make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/multimedia/gstreamer make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/multimedia/gstreamer-plugins make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/multimedia/gstreamer-plugins-good make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/multimedia/v4l_compat make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/devel/pkg-config make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/devel/popt make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/multimedia/gstreamer make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/multimedia/gstreamer-plugins make_index: gstreamer-plugins-aalib-0.10.6_2,3: no entry for /usr/ports/multimedia/gstreamer-plugins-good Committers on the hook: beech clsung dinoex itetcu lbr sat Most recent CVS update was: U devel/qdevelop/Makefile U editors/emacs.app/Makefile U sysutils/bacula-docs/Makefile U sysutils/bacula-docs/distinfo U sysutils/bacula-server/Makefile U sysutils/bacula-server/distinfo U sysutils/bacula-server/pkg-plist.client From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 12:50:35 2007 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 9F54D16A469 for ; Wed, 15 Aug 2007 12:50:35 +0000 (UTC) (envelope-from vivek@khera.org) Received: from yertle.kcilink.com (thingy.kcilink.com [74.92.149.59]) by mx1.freebsd.org (Postfix) with ESMTP id 73BCE13C46A for ; Wed, 15 Aug 2007 12:50:35 +0000 (UTC) (envelope-from vivek@khera.org) Received: from [192.168.135.92] (unknown [192.168.135.92]) by yertle.kcilink.com (Postfix) with ESMTP id 97928B816 for ; Wed, 15 Aug 2007 08:50:34 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: 7bit Message-Id: <2B1EE40C-A835-4834-8070-EF8235A7B3AE@khera.org> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: freebsd ports From: Vivek Khera Date: Wed, 15 Aug 2007 08:50:33 -0400 X-Mailer: Apple Mail (2.752.2) Subject: PR ports/115364 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, 15 Aug 2007 12:50:35 -0000 Can some kind ports committer give some tender loving care and commit the upgrade to RT for me? Thanks! =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. MailerMailer, LLC Rockville, MD http://www.MailerMailer.com/ +1-301-869-4449 x806 From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 14:13:52 2007 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 599F416A417 for ; Wed, 15 Aug 2007 14:13:52 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id D4D0F13C465 for ; Wed, 15 Aug 2007 14:13:51 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A573CA.dip.t-dialin.net [84.165.115.202]) by redbull.bpaserver.net (Postfix) with ESMTP id 4590B2E262; Wed, 15 Aug 2007 16:13:39 +0200 (CEST) Received: from deskjail (deskjail.Leidinger.net [192.168.1.109]) by outgoing.leidinger.net (Postfix) with ESMTP id 276FE5B4926; Wed, 15 Aug 2007 16:13:36 +0200 (CEST) Date: Wed, 15 Aug 2007 16:13:38 +0200 From: Alexander Leidinger To: RW Message-ID: <20070815161338.32b7a57b@deskjail> In-Reply-To: <20070814153515.4a5769ae@gumby.homeunix.com.> References: <20070811115642.L34115@obelix.home.rakhesh.com> <20070811083357.GA34007@eos.sc1.parodius.com> <20070811145314.A47727@obelix.home.rakhesh.com> <20070811203322.GA78245@eos.sc1.parodius.com> <20070811225858.7eb933ef@gumby.homeunix.com.> <20070812142059.35077b0d@deskjail> <20070812181810.2b17d85f@gumby.homeunix.com.> <20070813081446.6nxh47n64ocg8ksk@webmail.leidinger.net> <20070813123837.5436aeec@gumby.homeunix.com.> <20070814085813.4i1rprmzjks08ogo@webmail.leidinger.net> <20070814153515.4a5769ae@gumby.homeunix.com.> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.3, required 8, BAYES_00 -15.00, DKIM_POLICY_SIGNSOME 0.00, J_CHICKENPOX_63 0.60, RDNS_DYNAMIC 0.10) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-ports@freebsd.org Subject: Re: How did upgrading applications happen before portupgrade etc? 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, 15 Aug 2007 14:13:52 -0000 Quoting RW (Tue, 14 Aug 2007 15:35:15 +0100): > > > >> > On Sun, 12 Aug 2007 14:20:59 +0200 > > >> > Alexander Leidinger wrote: > > >> > > > >> >> Quoting RW (Sat, 11 Aug 2007 > > >> >> 22:58:58 +0100): > > > > > >> > Actually having dependencies package version mismatches needn't > > >> > cause any significant problems. > > >> > > >> It does cause problems. You have no +REQUIRED_BY file anymore, so > > >> pkg_delete allows you to remove it without a warning even if it is > > >> still needed. > > > > > > I didn't say it doesn't, I said it needn't. When I have to remove a > > > > It will. No doubts about this, sorry. It may be ok for some hobbyist > > installation, but in the generic case you want to do it right (and > > the OP asked for the generic case which includes production quality > > ports management). > > ... > > It's not about removing a port when updating. It's about correct > > leaf ports detection which may be necessary from time to time. > > Detecting leaves by +REQUIRED_BY alone is unreliable unless you can > guarantee that the entries have *always* been updated to reflect the > installed packages - by everybody that worked on the server. +REQUIRED_BY is not only used in leaf ports detection, but also to prevent unwanted removal of ports which other ports depend upon (there's some implicit dependency here, yes). And as the file is handled by pkg_* programs and not by hand, it is a procedural error (or a bug in our programs) if it is not updated correctly. > It's more forgiving to work downwards through the dependencies to > find leaves,and fairly easy to script. Are you sure? I would say it is more easy to do it right in the beginning. To be able to do it your way you need to update the +CONTENT files to point to the updated version instead to the old version. When you do this, it is not much more work to keep the +REQUIRED_BY file up-to-date. > > > doesn't rely on +REQUIRED_BY, and provides additional protection > > > against build-dependency deletion which you don't get from > > > pkg_delete. > > > Sidenote: I also don't see a benefit when pruning to keep the > > obscure build dependencies of a port you don't want anymore. > > Just like there's no point in keeping the obscure run dependencies of a > port you don't want anymore. Leaf deletion is an iterative I agree. > process, when you delete one leaf you may create more. I agree. > "Portmanager -slid" prompts you to delete a build dependency when the > last package that needs it for a rebuild is removed. Nice. Bye, Alexander. -- Rule of Life #1 -- Never get separated from your luggage. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 14:20:44 2007 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 B9C1216A469 for ; Wed, 15 Aug 2007 14:20:44 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.225]) by mx1.freebsd.org (Postfix) with ESMTP id 6FE8813C480 for ; Wed, 15 Aug 2007 14:20:44 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so730477nzf for ; Wed, 15 Aug 2007 07:20:43 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=XaGs6X/02/rqh0Pv3UHahMqsbwsjl90uqJsBETSG2RIZ6hddr0feMrLMvp9iqSVxCJqQPKPwaw99BpzR8t9bxR7em6L7oMhNYji2WsN2rZHh5iIjj4l1az9tIpN31Dk2BbPnREA7pjmxkgzKCz9tv154l7v+BwzfMjm78D+w/Zc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=kQuna/7jDShWCbPemnEHgjOGL9/sGF//6obuHQZSSPX+4a78oBzgJrzK93ldbFe2jWa6Zn7c/GHNnjilth91fd5F8jkGWMb/4tgohS8u9bpV7dJ2Bp//cl0ctRhRPRyZE4V4J7NOmQ+M0HaeFyaQY3W5v66JhEX3oK3HF1duvko= Received: by 10.114.66.2 with SMTP id o2mr519602waa.1187185895315; Wed, 15 Aug 2007 06:51:35 -0700 (PDT) Received: by 10.114.176.19 with HTTP; Wed, 15 Aug 2007 06:51:35 -0700 (PDT) Message-ID: Date: Wed, 15 Aug 2007 07:51:35 -0600 From: James To: "Scot Hetzel" In-Reply-To: <790a9fff0708141714x50fce15eja53aee87103a4412@mail.gmail.com> MIME-Version: 1.0 References: <790a9fff0708141639h4a805f95n6519c40dc5dcd20a@mail.gmail.com> <200708142348.l7ENmeTY012832@eunet.yu> <790a9fff0708141714x50fce15eja53aee87103a4412@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Nikola Lecic , freebsd-ports@freebsd.org Subject: Re: lam/MPI with trillium libraries 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, 15 Aug 2007 14:20:44 -0000 The advice you folks gave solved my problems nicely. Thanks! Ports kicks ass, I tellya. On 8/14/07, Scot Hetzel wrote: > > On 8/14/07, Nikola Lecic wrote: > > On Tue, 14 Aug 2007 18:39:08 -0500 > > "Scot Hetzel" wrote: > > > > > On 8/14/07, James wrote: > > > > I'm looking to build a copy of a debugging program called XMPI. For > > > > this to work, I have to have lam/MPI installed with the trillium > > > > libraries. > > > > > > > > I couldn't see any easy way to tell the net/lam port to install > > > > itself with these libraries, though it makes some measure of sense > > > > to me that there ought to be one. Is anyone out there aware of any > > > > way to do this? It's typically passed as a flag > > > > during ./configure, so if I'm just uninformed as to the ways of > > > > ports and there's an easy way to pass that in, that'd be a great > > > > solution. > > > > > > > > > > Edit the ports Makefile and add the flag to CONFIGURE_ARGS. > > > > > > If you want to make this flag conditional, add: > > > > > > .if defined(WITH_MYOPTION) > > > CONFIGURE_ARGS+= --enable-my-option > > > .endif > > > > > > after "CONFIGURE_ARGS=" in the Makefile. > > > > Yes, but changes like this will be erased by 'portsnap fetch update' > > after the next net/lam port revision. > > > It depends on how the ports are updated. cvs -q update -P -d won't > make the change disappear. Or if the change is submitted in a PR. > > Scot > > -- > DISCLAIMER: > No electrons were mamed while sending this message. Only slightly bruised. > From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 15:59:52 2007 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 4282D16A418 for ; Wed, 15 Aug 2007 15:59:52 +0000 (UTC) (envelope-from randy@psg.com) Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by mx1.freebsd.org (Postfix) with ESMTP id 26E7513C48A for ; Wed, 15 Aug 2007 15:59:52 +0000 (UTC) (envelope-from randy@psg.com) Received: from cust16202.lava.net ([64.65.95.74] helo=[192.168.0.101]) by rip.psg.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.67 (FreeBSD)) (envelope-from ) id 1ILL7Z-0005iu-6s for freebsd-ports@freebsd.org; Wed, 15 Aug 2007 15:49:21 +0000 Message-ID: <46C3207E.1080606@psg.com> Date: Wed, 15 Aug 2007 05:49:18 -1000 From: Randy Bush User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: freebsd ports X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: fetch error for libpri-1.4.1.tar.gz 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, 15 Aug 2007 15:59:52 -0000 -current i386 as of a few mins ago => libpri-1.4.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from ftp://ftp2.freebsd.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp2.freebsd.org/pub/FreeBSD/ports/distfiles/libpri-1.4.1.tar.gz: File unavailable (e.g., file not found, no access) => Attempting to fetch from ftp://ftp.digium.com/pub/libpri/. fetch: ftp://ftp.digium.com/pub/libpri/libpri-1.4.1.tar.gz: Connection refused => Attempting to fetch from ftp://ftp.digium.com/pub/libpri/old/. fetch: ftp://ftp.digium.com/pub/libpri/old/libpri-1.4.1.tar.gz: Connection refused => Attempting to fetch from ftp://ftp2.freebsd.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp2.freebsd.org/pub/FreeBSD/ports/distfiles/libpri-1.4.1.tar.gz: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/ and try again. *** Error code 1 clue bat please randy From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 16:39:50 2007 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 A533F16A417; Wed, 15 Aug 2007 16:39:50 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 8BB2A13C46E; Wed, 15 Aug 2007 16:39:50 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from rot26.obsecurity.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 994CD1A4D7C; Wed, 15 Aug 2007 09:38:22 -0700 (PDT) Received: by rot26.obsecurity.org (Postfix, from userid 1001) id 95C7BC3EC; Wed, 15 Aug 2007 12:39:49 -0400 (EDT) Date: Wed, 15 Aug 2007 12:39:49 -0400 From: Kris Kennaway To: Erwin Lansing Message-ID: <20070815163949.GB70910@rot26.obsecurity.org> References: <200708151152.l7FBqdHn077210@pointyhat.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="H+4ONPRPur6+Ovig" Content-Disposition: inline In-Reply-To: <200708151152.l7FBqdHn077210@pointyhat.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: ports@FreeBSD.org Subject: Re: INDEX build failed for 5.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2007 16:39:50 -0000 --H+4ONPRPur6+Ovig Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Aug 15, 2007 at 11:52:39AM +0000, Erwin Lansing wrote: > INDEX build failed with errors: > Generating INDEX-5 - please wait.. Done. > make_index: tme-0.4_3: no entry for /usr/ports/devel/pkg-config I think this is because pointyhat's / filled up, sorry. Kris --H+4ONPRPur6+Ovig Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGwyxUWry0BWjoQKURAkk5AJ9oSSO7hLfngPm+UYs5E1Ob80OaeACeNn5V tOSql1FrZ1SSsrCU57PaEn8= =47PI -----END PGP SIGNATURE----- --H+4ONPRPur6+Ovig-- From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 17:48:36 2007 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 7219916A419 for ; Wed, 15 Aug 2007 17:48:36 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with SMTP id 0EFCC13C46A for ; Wed, 15 Aug 2007 17:48:35 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 32515 invoked by uid 399); 15 Aug 2007 17:48:35 -0000 Received: from localhost (HELO slave.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 15 Aug 2007 17:48:35 -0000 X-Originating-IP: 127.0.0.1 Date: Wed, 15 Aug 2007 10:48:33 -0700 (PDT) From: Doug Barton To: Vivek Khera In-Reply-To: <2B1EE40C-A835-4834-8070-EF8235A7B3AE@khera.org> Message-ID: References: <2B1EE40C-A835-4834-8070-EF8235A7B3AE@khera.org> X-message-flag: Outlook -- Not just for spreading viruses anymore! X-OpenPGP-Key-ID: 0xD5B2F0FB Organization: http://www.FreeBSD.org/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=us-ascii Cc: freebsd ports Subject: Re: PR ports/115364 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, 15 Aug 2007 17:48:36 -0000 On Wed, 15 Aug 2007, Vivek Khera wrote: > Can some kind ports committer give some tender loving care and commit the > upgrade to RT for me? Thanks! If no one else gets to it by the end of the day, I will. One question though, are ALL of those modules truly needed for build AND run? If yes, no problem, but I hate to see BUILD_DEPENDS == RUN_DEPENDS as a default if it hasn't been thought through. (Not saying that's the case here, that's why I'm asking.) Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 18:38:35 2007 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 3181216A418; Wed, 15 Aug 2007 18:38:35 +0000 (UTC) (envelope-from vivek@khera.org) Received: from yertle.kcilink.com (thingy.kcilink.com [74.92.149.59]) by mx1.freebsd.org (Postfix) with ESMTP id 00BE913C469; Wed, 15 Aug 2007 18:38:34 +0000 (UTC) (envelope-from vivek@khera.org) Received: from [192.168.7.103] (host-103.int.kcilink.com [192.168.7.103]) by yertle.kcilink.com (Postfix) with ESMTP id 0079CB810; Wed, 15 Aug 2007 14:38:34 -0400 (EDT) In-Reply-To: References: <2B1EE40C-A835-4834-8070-EF8235A7B3AE@khera.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Vivek Khera Date: Wed, 15 Aug 2007 14:38:33 -0400 To: Doug Barton X-Mailer: Apple Mail (2.752.2) Cc: freebsd ports Subject: Re: PR ports/115364 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, 15 Aug 2007 18:38:35 -0000 On Aug 15, 2007, at 1:48 PM, Doug Barton wrote: > One question though, are ALL of those modules truly needed for > build AND run? If yes, no problem, but I hate to see BUILD_DEPENDS > == RUN_DEPENDS as a default if it hasn't been thought through. (Not > saying that's the case here, that's why I'm asking.) I don't know 100%, but the list of modules is what is RT itself says is required when you install it. There is a script included with it that checks for required modules, and only those modules is what I listed in the build+run deps. I did not analyze the application to see which is which. You will notice that I don't literally set RUN_DEPS=BUILD_DEPS because the ports infrastructure already starts with the MakeMaker/ Module::Build stuff in build deps, and those are definitely not needed at runtime. From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 19:05:46 2007 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 DC6B916A46B for ; Wed, 15 Aug 2007 19:05:46 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (pointyhat.freebsd.org [IPv6:2001:4f8:fff6::2b]) by mx1.freebsd.org (Postfix) with ESMTP id B1FB413C46C for ; Wed, 15 Aug 2007 19:05:46 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (localhost [127.0.0.1]) by pointyhat.freebsd.org (8.14.1/8.14.1) with ESMTP id l7FJ5c4G045446 for ; Wed, 15 Aug 2007 19:05:38 GMT (envelope-from erwin@pointyhat.freebsd.org) Received: (from erwin@localhost) by pointyhat.freebsd.org (8.14.1/8.14.1/Submit) id l7FJ5cfU045430 for ports@FreeBSD.org; Wed, 15 Aug 2007 19:05:38 GMT (envelope-from erwin) Date: Wed, 15 Aug 2007 19:05:38 GMT From: Erwin Lansing Message-Id: <200708151905.l7FJ5cfU045430@pointyhat.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 5.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2007 19:05:46 -0000 From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 19:41:38 2007 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 3775516A417 for ; Wed, 15 Aug 2007 19:41:38 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (pointyhat.freebsd.org [IPv6:2001:4f8:fff6::2b]) by mx1.freebsd.org (Postfix) with ESMTP id 0BF8213C465 for ; Wed, 15 Aug 2007 19:41:38 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (localhost [127.0.0.1]) by pointyhat.freebsd.org (8.14.1/8.14.1) with ESMTP id l7FJfT5f002666 for ; Wed, 15 Aug 2007 19:41:29 GMT (envelope-from erwin@pointyhat.freebsd.org) Received: (from erwin@localhost) by pointyhat.freebsd.org (8.14.1/8.14.1/Submit) id l7FJfTwq002621 for ports@FreeBSD.org; Wed, 15 Aug 2007 19:41:29 GMT (envelope-from erwin) Date: Wed, 15 Aug 2007 19:41:29 GMT From: Erwin Lansing Message-Id: <200708151941.l7FJfTwq002621@pointyhat.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 6.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2007 19:41:38 -0000 From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 21:10:10 2007 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 5E78916A418 for ; Wed, 15 Aug 2007 21:10:10 +0000 (UTC) (envelope-from mailnull@mips.inka.de) Received: from mail-in-10.arcor-online.net (mail-in-10.arcor-online.net [151.189.21.50]) by mx1.freebsd.org (Postfix) with ESMTP id 1200C13C494 for ; Wed, 15 Aug 2007 21:10:10 +0000 (UTC) (envelope-from mailnull@mips.inka.de) Received: from mail-in-02-z2.arcor-online.net (mail-in-02-z2.arcor-online.net [151.189.8.14]) by mail-in-10.arcor-online.net (Postfix) with ESMTP id DF59B1F57F6 for ; Wed, 15 Aug 2007 21:05:11 +0200 (CEST) Received: from mail-in-01.arcor-online.net (mail-in-01.arcor-online.net [151.189.21.41]) by mail-in-02-z2.arcor-online.net (Postfix) with ESMTP id CEBEC1143BA for ; Wed, 15 Aug 2007 21:05:11 +0200 (CEST) Received: from kemoauc.mips.inka.de (dslb-088-066-051-246.pools.arcor-ip.net [88.66.51.246]) by mail-in-01.arcor-online.net (Postfix) with ESMTP id A4DF419B329 for ; Wed, 15 Aug 2007 21:05:07 +0200 (CEST) Received: from kemoauc.mips.inka.de (localhost [127.0.0.1]) by kemoauc.mips.inka.de (8.13.8/8.13.8) with ESMTP id l7FJ4mdf019578 for ; Wed, 15 Aug 2007 21:04:48 +0200 (CEST) (envelope-from mailnull@kemoauc.mips.inka.de) Received: (from mailnull@localhost) by kemoauc.mips.inka.de (8.13.8/8.13.8/Submit) id l7FJ4mIV019577 for freebsd-ports@freebsd.org; Wed, 15 Aug 2007 21:04:48 +0200 (CEST) (envelope-from mailnull) From: naddy@mips.inka.de (Christian Weisgerber) Date: Wed, 15 Aug 2007 19:04:47 +0000 (UTC) Message-ID: References: <20070809150900.7a9bcb6d@l140.fem.tu-ilmenau.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 8bit Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-ports@freebsd.org X-Virus-Scanned: ClamAV 0.91.1/3964/Wed Aug 15 16:21:53 2007 on mail-in-01.arcor-online.net X-Virus-Status: Clean Subject: Re: vorbis-tools configure problem 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, 15 Aug 2007 21:10:10 -0000 Hagen Kühl wrote: > I have a problem trying to build vorbis-tools. Here: > http://people.bsdgroup.de/~nornagest/vorbis-tools.log This has been reported a few times. The problem seems to be that some obsolete autoconf macros are included from _somewhere_, but I haven't gotten further in analyzing this. It only affects some people/systems. -- Christian "naddy" Weisgerber naddy@mips.inka.de From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 22:06:45 2007 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 1387A16A41B for ; Wed, 15 Aug 2007 22:06:45 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.230]) by mx1.freebsd.org (Postfix) with ESMTP id C8AB813C45D for ; Wed, 15 Aug 2007 22:06:44 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: by wr-out-0506.google.com with SMTP id 70so41689wra for ; Wed, 15 Aug 2007 15:06:44 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=t7DypSoDX7fXwsP9Gwi3VUWQioOexKfBRr2GWi8z9Vak/e34wWN2+kUIKxkG4Q6EhbErb61W1MPx/5ytweOpR2elH/NkcqShLeBBytGqLRRgaXqqSXRQUuKoNPDvx6PGxJ0WMSV5RfMamIADCWUgWTRTVnWADKx/jj/IRtHoq5s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=X36xeGLE+fWNNCfoBQSQAij2lJsHiKu3dy/vQLiwj/TIXC4Ww1MvvA4ZK8AitN1mFMvIygy2VcxF3lyR+Q5Esi99r2aqDBoiM0qy1N2JzZKR3+z9Xu71MQ2Oos5xU5UMOTjCUmAkJpvbCq/HJNKHNm1bv0rE5fVSWEhtwMhzcuM= Received: by 10.90.25.3 with SMTP id 3mr1556811agy.1187215603920; Wed, 15 Aug 2007 15:06:43 -0700 (PDT) Received: by 10.100.9.14 with HTTP; Wed, 15 Aug 2007 15:06:43 -0700 (PDT) Message-ID: <499c70c0708151506w319c7b49sb0b814ba3221ae13@mail.gmail.com> Date: Thu, 16 Aug 2007 01:06:43 +0300 From: "Abdullah Ibn Hamad Al-Marri" To: ports@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: FreeBSD Port: net/xmlrpc-c update please? 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, 15 Aug 2007 22:06:45 -0000 Hello Guys, Could someone please with some free time kindly update it to latest stable version 1.06.17 released on August 4, 2007 http://sourceforge.net/project/showfiles.php?group_id=16847 -- Regards, -Abdullah Ibn Hamad Al-Marri Arab Portal http://www.WeArab.Net/ From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 22:55:04 2007 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 BD1BA16A41B for ; Wed, 15 Aug 2007 22:55:04 +0000 (UTC) (envelope-from newsham@lava.net) Received: from outgoing02.lava.net (pie.lava.net [64.65.64.125]) by mx1.freebsd.org (Postfix) with ESMTP id 9651D13C46E for ; Wed, 15 Aug 2007 22:55:04 +0000 (UTC) (envelope-from newsham@lava.net) Received: from malasada.lava.net (malasada.lava.net [64.65.64.17]) by outgoing02.lava.net (Postfix) with ESMTP id 42B4AB87F4 for ; Wed, 15 Aug 2007 12:39:15 -1000 (HST) Date: Wed, 15 Aug 2007 12:39:15 -1000 (HST) From: Tim Newsham To: ports@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: dsniff port doesn't build properly 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, 15 Aug 2007 22:55:04 -0000 I'm using FreeBSD 6.2-STABLE, updated (including ports) aprox late july. dsniff does not build properly. Is this a missing dependency on some lib (glib?) ? ===> Building for dsniff-2.3_3 cc -o dsniff asn1.o base64.o buf.o hex.o magic.o mount.o pcaputil.o rpc.o tcp_raw.o trigger.o record.o dsniff.o decode.o decode_aim.o decode_citrix.o decode_cvs.o decode_ftp.o decode_hex.o decode_http.o decode_icq.o decode_imap.o decode_irc.o decode_ldap.o decode_mmxp.o decode_mountd.o decode_napster.o decode_nntp.o decode_oracle.o decode_ospf.o decode_pcanywhere.o decode_pop.o decode_portmap.o decode_postgresql.o decode_pptp.o decode_rip.o decode_rlogin.o decode_smb.o decode_smtp.o decode_sniffer.o decode_snmp.o decode_socks.o decode_tds.o decode_telnet.o decode_vrrp.o decode_yp.o decode_x11.o -lrpcsvc -L. -lmissing -L/usr/local/lib -lnids -lpcap -L/usr/local/lib/libnet10 -lnet -lssl -lcrypto /usr/local/lib/libnids.a(libnids.o)(.text+0x6ff): In function `nids_pcap_handler': : undefined reference to `g_async_queue_lock' /usr/local/lib/libnids.a(libnids.o)(.text+0x70b): In function `nids_pcap_handler': : undefined reference to `g_async_queue_length_unlocked' /usr/local/lib/libnids.a(libnids.o)(.text+0x73a): In function `nids_pcap_handler': : undefined reference to `g_async_queue_push_unlocked' /usr/local/lib/libnids.a(libnids.o)(.text+0x746): In function `nids_pcap_handler': : undefined reference to `g_async_queue_unlock' /usr/local/lib/libnids.a(libnids.o)(.text+0xd60): In function `cap_queue_process_thread': : undefined reference to `g_async_queue_pop' /usr/local/lib/libnids.a(libnids.o)(.text+0xda4): In function `cap_queue_process_thread': : undefined reference to `g_thread_exit' /usr/local/lib/libnids.a(libnids.o)(.text+0x100a): In function `nids_init': : undefined reference to `g_thread_init' /usr/local/lib/libnids.a(libnids.o)(.text+0x100f): In function `nids_init': : undefined reference to `g_async_queue_new' /usr/local/lib/libnids.a(libnids.o)(.text+0x108f): In function `nids_run': : undefined reference to `g_thread_create_full' /usr/local/lib/libnids.a(libnids.o)(.text+0x10fb): In function `nids_run': : undefined reference to `g_async_queue_push' /usr/local/lib/libnids.a(libnids.o)(.text+0x1143): In function `nids_exit': : undefined reference to `g_async_queue_length' /usr/local/lib/libnids.a(libnids.o)(.text+0x12b5): In function `nids_next': : undefined reference to `g_thread_create_full' /usr/local/lib/libnids.a(libnids.o)(.text+0x1318): In function `nids_next': : undefined reference to `g_async_queue_push' /usr/local/lib/libnids.a(libnids.o)(.text+0x1392): In function `nids_dispatch': : undefined reference to `g_thread_create_full' /usr/local/lib/libnids.a(libnids.o)(.text+0x1432): In function `nids_dispatch': : undefined reference to `g_async_queue_push' *** Error code 1 Stop in /usr/ports/security/dsniff/work/dsniff-2.3. *** Error code 1 Stop in /usr/ports/security/dsniff. *** Error code 1 Stop in /usr/ports/security/dsniff. Tim Newsham http://www.thenewsh.com/~newsham/ From owner-freebsd-ports@FreeBSD.ORG Wed Aug 15 23:07:36 2007 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 CA80416A419 for ; Wed, 15 Aug 2007 23:07:36 +0000 (UTC) (envelope-from newsham@lava.net) Received: from outgoing01.lava.net (cake.lava.net [64.65.64.68]) by mx1.freebsd.org (Postfix) with ESMTP id B0C4713C457 for ; Wed, 15 Aug 2007 23:07:36 +0000 (UTC) (envelope-from newsham@lava.net) Received: from malasada.lava.net (malasada.lava.net [64.65.64.17]) by outgoing01.lava.net (Postfix) with ESMTP id 10FAE8543 for ; Wed, 15 Aug 2007 13:07:34 -1000 (HST) Date: Wed, 15 Aug 2007 13:07:33 -1000 (HST) From: Tim Newsham To: ports@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: dnet port (libnids, glib) 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, 15 Aug 2007 23:07:36 -0000 I can manually get the dnet port to work by editing its makefile: NIDSLIB = -L/usr/local/lib -lnids -lglib-2.0 -lgthread-2.0 -lpthread everything after -lnids is new. Probably the right way is to query the glib package config for its libs (or libnids if it supports it).... Tim Newsham http://www.thenewsh.com/~newsham/ From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 00:49:53 2007 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 9BAE216A417; Thu, 16 Aug 2007 00:49:53 +0000 (UTC) (envelope-from randy@psg.com) Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by mx1.freebsd.org (Postfix) with ESMTP id 4B59F13C469; Thu, 16 Aug 2007 00:49:53 +0000 (UTC) (envelope-from randy@psg.com) Received: from cust16202.lava.net ([64.65.95.74] helo=[192.168.0.101]) by rip.psg.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.67 (FreeBSD)) (envelope-from ) id 1ILTYe-0007u6-Sf; Thu, 16 Aug 2007 00:49:53 +0000 Message-ID: <46C39F2C.2090703@psg.com> Date: Wed, 15 Aug 2007 14:49:48 -1000 From: Randy Bush User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: ale@FreeBSD.org X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: freebsd ports Subject: databases/php4-mysql 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, 16 Aug 2007 00:49:53 -0000 freebsd i386 current as of a few minutes ago cc -I. -I/usr/ports/databases/php4-mysql/work/php-4.4.7/ext/mysql -DPHP_ATOM_INC -I/usr/ports/databases/php4-mysql/work/php-4.4.7/ext/mysql/include -I/usr/ports/databases/php4-mysql/work/php-4.4.7/ext/mysql/main -I/usr/ports/databases/php4-mysql/work/php-4.4.7/ext/mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/mysql -DHAVE_CONFIG_H -O2 -fno-strict-aliasing -pipe -march=pentiumpro -c /usr/ports/databases/php4-mysql/work/php-4.4.7/ext/mysql/php_mysql.c -fPIC -DPIC -o php_mysql.lo In file included from /usr/local/include/php/main/../main/php_config.h:2694, from /usr/local/include/php/Zend/zend_config.h:1, from /usr/local/include/php/Zend/zend.h:51, from /usr/local/include/php/main/php.h:34, from /usr/ports/databases/php4-mysql/work/php-4.4.7/ext/mysql/php_mysql.c:32: /usr/include/sys/types.h:164: error: two or more data types in declaration specifiers /usr/include/sys/types.h:260: error: two or more data types in declaration specifiers *** Error code 1 From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 09:08:26 2007 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 53D5A16A417 for ; Thu, 16 Aug 2007 09:08:26 +0000 (UTC) (envelope-from me@janh.de) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.187]) by mx1.freebsd.org (Postfix) with ESMTP id CF71313C4A6 for ; Thu, 16 Aug 2007 09:08:25 +0000 (UTC) (envelope-from me@janh.de) Received: from [80.171.116.238] (helo=janh.freebsd) by mrelayeu.kundenserver.de (node=mrelayeu5) with ESMTP (Nemesis), id 0ML25U-1ILbL53kPj-0000Ye; Thu, 16 Aug 2007 11:08:24 +0200 Message-ID: <46C41404.5020309@janh.de> Date: Thu, 16 Aug 2007 11:08:20 +0200 From: Jan Henrik Sylvester User-Agent: Thunderbird 2.0.0.6 (X11/20070803) MIME-Version: 1.0 To: ports-list freebsd Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V01U2FsdGVkX1+r9m7t7byZwtVvmVscWjmFggSZ7MEyn6jW5Sv f/DTAwQt/1TW+/i/zDrJcDHIhHweggW74JHKvAmfuIIx04VXUr PRraOq47olLtZGEVgrltA== Subject: libmtp-0.2.0 does not compile on 6.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: Thu, 16 Aug 2007 09:08:26 -0000 I just tried to portupgrade libmtp, but it runs into a syntax error: Making all in examples cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -I../src -O2 -fno-strict-aliasing -pipe -Wall -Wmissing-prototypes -MT connect.o -MD -MP -MF .deps/connect.Tpo -c -o connect.o connect.c connect.c: In function `main': connect.c:100: error: syntax error before "LIBMTP_VERSION_STRING" *** Error code 1 The line in question is: fprintf(stdout, "libmtp version: " LIBMTP_VERSION_STRING "\n\n"); I currently do not find the definition of LIBMTP_VERSION_STRING... weird. Any idea what is wrong? Thanks, Jan Henrik From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 11:28:49 2007 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 D027616A418 for ; Thu, 16 Aug 2007 11:28:49 +0000 (UTC) (envelope-from barner@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 2108013C45A for ; Thu, 16 Aug 2007 11:28:48 +0000 (UTC) (envelope-from barner@gmx.de) Received: (qmail invoked by alias); 16 Aug 2007 11:28:47 -0000 Received: from ppp-88-217-17-78.dynamic.mnet-online.de (EHLO dose.local.invalid) [88.217.17.78] by mail.gmx.net (mp055) with SMTP; 16 Aug 2007 13:28:47 +0200 X-Authenticated: #147403 X-Provags-ID: V01U2FsdGVkX19Qr10Y2hhQH9UmOcLMdeLj+qhWRgtk1LeyOMv0gU y1hw3gftxm4lWQ Received: by dose.local.invalid (Postfix, from userid 1000) id 8DA44C1E8; Thu, 16 Aug 2007 13:32:52 +0200 (CEST) Date: Thu, 16 Aug 2007 13:32:52 +0200 From: Simon Barner To: Abdullah Ibn Hamad Al-Marri Message-ID: <20070816113252.GA77089@dose.local.invalid> References: <499c70c0708151506w319c7b49sb0b814ba3221ae13@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="k+w/mQv8wyuph6w0" Content-Disposition: inline In-Reply-To: <499c70c0708151506w319c7b49sb0b814ba3221ae13@mail.gmail.com> User-Agent: Mutt/1.5.12-2006-07-14 X-Y-GMX-Trusted: 0 Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: net/xmlrpc-c update please? 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, 16 Aug 2007 11:28:50 -0000 --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Abdullah Ibn Hamad Al-Marri wrote: > Hello Guys, >=20 > Could someone please with some free time kindly update it to latest > stable version 1.06.17 released on August 4, 2007 >=20 > http://sourceforge.net/project/showfiles.php?group_id=3D16847 > I known this is not what you want to hear, but why don't you give it a try yourself? http://www.freebsd.org/doc/en/articles/contributing-ports/resources.html http://www.freebsd.org/doc/en/books/porters-handbook/=20 =2E.. just to name two usefull resources. If you need assistance, please ask this mailing list. --=20 Best regards / Viele Gr=FC=DFe, barner@FreeBSD.= org Simon Barner barner@gmx.de --k+w/mQv8wyuph6w0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGxDXkCkn+/eutqCoRAreYAKDWk1d3KBup5+Qj63VnWstxH7oOhQCg7JR/ 1LbVrCMYj2HKTUDnL8T2SiQ= =9aoQ -----END PGP SIGNATURE----- --k+w/mQv8wyuph6w0-- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 11:31:56 2007 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 0722316A46C for ; Thu, 16 Aug 2007 11:31:56 +0000 (UTC) (envelope-from sales@computerwide.net) Received: from computerwide.net (netblock-68-183-173-229.dslextreme.com [68.183.173.229]) by mx1.freebsd.org (Postfix) with SMTP id 3FB3513C45D for ; Thu, 16 Aug 2007 11:31:55 +0000 (UTC) (envelope-from sales@computerwide.net) From: "ComputerWide" To: "ports@freebsd.org" Date: Thu, 16 Aug 2007 04:31:53 -0700 Message-ID: <11285328.20070816043153@computerwide.net> X-Priority: 3 (Normal) MIME-Version: 1.0 Organization: ComputerWide, Inc. Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable Cc: Subject: [ A D V ] Networking and NoteBooks... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ComputerWide List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2007 11:31:56 -0000 If you have received this message in error or if you would like to be removed from our broadcast for any reason, reply to this email with REMOVE as subject followed by the email address you wish to remove. *********************************************************** ComputerWide, Inc. 23679 Calabasas Road #761 Calabasas, CA. 91302, USA Tel: (818) 804-5158 http://www.computerwide.net Email: sales@computerwide.net ***** CISCO ROUTER SPECIAL ***** CISCO3845 Orignial New Open Box including smartnet 8X5XNBD until June 2008 ($1,400 value) 2 units in stock at $6500 each (50% off GPL $13,000) ***** CISCO MODULE SPECIAL ***** $3500 take all the following: 20 * CAB-SS-449MT New Orignial 15 * CAB-SS-V35MT New Orignial 5 * CAB-SS-X21MT New Orignial 6 * GLC-SX-MM New OEM 1 * NM-4E New OEM 2 * NM-4B-S/T New OEM 20 * NM-4B-S/T Used OEM 1 * NM-8B-S/T New OEM 9 * WIC-1B-S/T New OEM 17 * WS-G5483 New OEM 12 * WS-G5486 New OEM 2 * WS-G5487 New OEM ******************************** The following are Notebook prices. All NEW models come with 1 year warranty and all RB models with 90 days. For a detailed list, please request our price list in Excel format. Toshiba PSPB3U-01V00L P205-S6347 $1300 NEW PSPB0U-01E008 P205-S6337 $1150 NEW PSPB0U-01W008 P205-S6327 $1050 NEW PSPBGU-00W016 P205-S6277 $1000 RB PSPB0U-00X008 P205-S6287 $950 RB PSPB0U-00W008 P205-S6267 $825 RB PSPB0U-013008 P205-S6237 $760 RB PSPAAU-01300S P105-S6157 $960 NEW PSAEUG-01800U A215-S4817 $840 NEW PSAEGU-00W00U A215-S4747 $860 NEW PSAEGU-00V00U A215-S4697 $780 NEW PSAF3U-03600V A205-S4777 $1150 NEW PSAF0U-06H009 A205-S4797 $1020 NEW PSAF0U-02L009 A205-S4557 $900 NEW PSAF0U-0CQ009 A205-S4707 $880 NEW PSAD0U-03V010 A135-S4499 $890 RB PSAD0U-035011 A135-S4488 $860 RB PSAD0U-03500P A135-S4487 $840 RB PSAD0U-05400Q A135-S4637 $740 NEW PSAD0U-05400P A135-S4527 $730 NEW PSMC0U-01V00P M205-S3217 $860 NEW PSU30U-01V012 U305-S5127 $1360 NEW PSU34U-00C00D U305-S5107 $1120 NEW PSU34U-00C00D U305-S5087 $950 NEW PSU34U-00L003 U305-S5077 $910 NEW PLUA0U-0M1043 U205-S5058 $1050 RB PPR10U-213J57 R100-213J57 $600 RB PQF43U-007004 F45-AV411 $1350 NEW PTM30U-0ES017 M3-0ES017 $475 RB PTM30U-03T017 M3-03T017 $470 RB HP RV312UA#ABA TX1127 $1150 NEW RV313UA#ABA TX1119 $1110 RB RV309UA#ABA TX1115 $990 RB DV9500#BTO16 DV9500t $1700 NEW RP250UA#ABA DV9260 $1580 NEW RP250UA#ABA DV9260 $1250 RB DV6500#SE1 DV6500t $1350 NEW DV6500#BTO20 DV6500t $1300 NEW GL974UA#ABA DV6567 $1250 NEW GA378UA#ABA DV6426 $870 NEW RV020UA#ABA DV6353 $900 NEW GA452UA#ABA DV6409 $720 NEW RQ337UA#ABA C501 $455 RB RM165UT#ABA NC2400 $950 RB RB528UA#ABA NC2400 $830 RB EZ126AW#ABA NC2400 $810 RB RA304AW#ABA NC4400 $700 RB GF062US#ABA NC6320 $820 RB RK973US#ABA NC6400 $1050 RB RB519UA#ABA NC6400 $950 RB RB518UT#ABA NC6400 $860 RB RB522UA#ABA NC6400 $820 RB RK972US#ABA NC6400 $760 RB RB553UT#ABA NC8430 $820 RB RB556UT#ABA NW8440 $1300 RB RM164UT#ABA TC4400 $1340 RB RL875AW#ABA TC4400 $1230 RB 399471R-999-BVH2 NC2400 $850 RB 399471R-999-BSBK NC2400 $920 RB 399279R-999-BWGK NC6400 $1030 RB 399279R-999-BWF9 NC6400 $1030 RB 399279R-999-BW7K NC6400 $950 RB 399279R-999-BW6X NC6400 $790 RB 399279R-999-BWMJ NC6400 $790 RB 399279R-999-BV7Z NC6400 $790 RB 399279R-999-BW3F NC6400 $900 RB SONY VGN-AR520E AR520E $1600 NEW VGN-TZ150N/B TZ150N $2200 NEW VGN-UX380N UX380N $1260 NEW VGN-SZ650N/C SZ650N/C $2050 NEW VGN-SZ430N/B SZ430N/B $1780 NEW VGN-SZ320P/B SZ320P/B $1570 NEW VGN-FZ140E/B FZ140E/B $1275 NEW VGN-CR120E/R CR120E/R $1300 NEW VGN-N395E/B N395E/B $950 NEW VGN-N365E/B N365E/B $870 NEW VGN-N325E/W N325E/W $780 NEW VPL-CX20A CX20A $870 NEW APPLE MA897LL/A MacBook Pro $2600 NEW MA895LL/A MacBook Pro $2000 NEW MB061LL/A MacBook $1100 NEW MB062LL/A MacBook $1290 NEW MB063LL/A MacBook $1470 NEW IBM 7387-A32 3000 $600 NEW 0763-2LU V100 $975 NEW 6371-EXU T60 $1250 NEW ACER LX.AX90X.088 AS5100-5840 $660 RB LX.AX90X.107 AS5100-3949 $480 RB LX.AYA0X.017 AS5570-2609 $550 RB AS5570-2977 AS5570-2977 $620 NEW ******************************** Fujitsu Plasma TV/Monitor (NEW, 3 years warranty) P42VHA51WS 42" EDTV Plasma Monitor $1,800 P42XHA58EB 42" Plasma HD Monitor $2,450 P42XTA51UB 42" HDTV Plasma TV $2,700 P50XHA58EB 50" Plasma HD Monitor $3,150 P50XTA51UB 50" HDTV Plasma TV $3,500 P55XTA51UB 55" HDTV Plasma TV $5,100 P63XTA51UB 63" HDTV Plasma TV $9,400 P37FT05AUB 37" AVIAMO LCD 1080P TV $3,800 P65FT00AUB 65" AVIAMO Plasma 1080P TV $13,600 LPF-D711 3 LCD AVIAMO 1080P Projector $17,500 ******************************** All Cisco Models in our inventory are at 40% off GPL. Any new item not listed can be supplied at 30% off GPL. Any Refurbished item can be supplied at 47% off GPL. Smartnet Service Contract is available at 10% off GPL. *********************************************************** Quantity discount is available. Prices are in US$ and FOB Los Angeles. For additional information about our company and products, please visit http://www.computerwide.net *********************************************************** The following CISCO, 3com, HP, Juniper, and Watchguard products are ORIGINAL and NEW in RETAIL PACKS. Please visit the following page for more info: http://product.computerwide.net Cisco Router (NEW) CISCO871-K9 $389 CISCO871-SEC-K9 $479 CISCO871W-G-A-K9 $509 CISCO877-K9 $389 CISCO877-SEC/K9 $479 CISCO877W-G-A-K9 $509 CISCO1811/K9 $777 CISCO1811W-AG-A/K9 $957 CISCO1841 $837 CISCO1841-HSEC/K9 $1,797 CISCO1841-SEC/K9 $1,497 CISCO1841-T1 $1,437 CISCO1841-T1SEC/K9 $2,097 CISCO2801 $1,197 CISCO2801-AC-IP $1,422 CISCO2801-HSEC/K9 $2,157 CISCO2801-SEC/K9 $1,737 CISCO2801-V/K9 $1,617 CISCO2801-V3PN-K9 $2,817 CISCO2811 $1,497 CISCO2811-AC-IP $1,737 CISCO2811-HSEC/K9 $2,457 CISCO2811-SEC/K9 $2,037 CISCO2811-V/K9 $1,917 CISCO2811-V3PN-K9 $3,537 CISCO2821 $2,337 CISCO2821-AC-IP $2,697 CISCO2821-HSEC/K9 $3,297 CISCO2821-SEC/K9 $2,877 CISCO2821-V/K9 $2,817 CISCO2821-V3PN-K9 $4,977 CISCO2851 $3,897 CISCO2851-AC-IP $4,257 CISCO2851-HSEC/K9 $4,857 CISCO2851-SEC/K9 $4,437 CISCO2851-V/K9 $4,437 CISCO2851-V3PN-K9 $7,257 CISCO3825 $5,700 CISCO3825-AC-IP $6,060 CISCO3825-HSEC/K9 $6,957 CISCO3825-SEC/K9 $6,537 CISCO3825-V/K9 $6,297 CISCO3825-V3PN/K9 $10,437 CISCO3845 $7,800 CISCO3845-AC-IP $8,160 CISCO3845-HSEC/K9 $9,537 CISCO3845-SEC/K9 $8,637 CISCO3845-V/K9 $8,397 CISCO3845-V3PN/K9 $12,957 Cisco Router Module (New) AIM-VPN/EPII-PLUS $1,500 AIM-VPN/HPII-PLUS $2,100 HWIC-1ADSL=3D $450 HWIC-1FE=3D $840 HWIC-2FE=3D $1,500 HWIC-1GE-SFP $2,100 HWIC-4A/S $720 HWIC-4ESW $255 HWIC-4ESW-POE $345 HWIC-4T $1,680 HWIC-8A $690 HWIC-8A/S-232 $1,440 HWIC-16A $1,380 HWIC-AP-AG-A $420 HWIC-AP-G-A $300 HWIC-D-9ESW $480 HWIC-D-9ESW-POE $648 ILPM-4 $90 ILPM-8 $168 NM-1FE2W-V2 $1,380 NM-2FE2W-V2 $1,920 NM-1T3/E3 $5,100 NM-4A/S $780 NM-16ESW $897 NM-HD-1V $360 NM-HD-2V $600 NMD-36-ESW-PWR-2GIG $2,757 NME-16ES-1G $1,377 NME-16ES-1G-P $1,635 NME-X-23ES-1G $1,977 NME-X-23ES-1G-P $2,313 NME-XD-24ES-1S-P $3,075 NME-XD-48ES-2S-P $4,137 PVDM2-8 $240 PVDM2-16 $480 PVDM2-32 $960 PVDM2-48 $1,440 PVDM2-64 $1,920 VIC-4FXS/DID $480 VIC2-2E/M $240 VIC2-2FXO $240 VIC2-2FXS $240 VIC2-4FXO $480 VWIC2-1MFT-G703 $1,080 VWIC2-1MFT-T1/E1 $780 VWIC2-2MFT-G703 $1,800 VWIC2-2MFT-T1/E1 $1,200 WIC-1B-S/T-V3=3D $300 WIC-1B-U-V2 $420 WIC-1DSU-T1-V2 $600 WIC-1T $240 WIC-2T $420 Cisco Switch (NEW) WS-CE500-24LC $777 WS-CE500-24PC $1,677 WS-CE500-24TT $477 WS-CE500G-12TC $1,173 WS-CE520-8PC-K9 $837 WS-C2960-8TC-L $537 WS-C2960-24TC-L $1,497 WS-C2960-24TT-L $777 WS-C2960-48TC-L $2,697 WS-C2960-48TT-L $1,497 WS-C2960G-8TC-L $837 WS-C2960G-24TC-L $1,977 WS-C2960G-48TC-L $3,597 WS-C3560-24PS-E $3,474 WS-C3560-24PS-S $2,277 WS-C3560-24TS-E $2,994 WS-C3560-24TS-S $1,797 WS-C3560-48PS-E $5,094 WS-C3560-48PS-S $3,897 WS-C3560-48TS-E $4,194 WS-C3560-48TS-S $2,997 WS-C3560E-24PD-S $4,077 WS-C3560E-24TD-S $3,597 WS-C3560E-48PD-S $8,097 WS-C3560E-48TD-S $7,197 WS-C3560G-24PS-E $5,754 WS-C3560G-24PS-S $3,357 WS-C3560G-24TS-E $5,274 WS-C3560G-24TS-S $2,877 WS-C3560G-48PS-E $8,094 WS-C3560G-48PS-S $5,697 WS-C3560G-48TS-E $7,194 WS-C3560G-48TS-S $4,797 WS-C3750-24FS-S $6,477 WS-C3750-24PS-E $4,074 WS-C3750-24PS-S $2,877 WS-C3750-24TS-E $3,594 WS-C3750-24TS-S $2,397 WS-C3750-48PS-E $6,294 WS-C3750-48PS-S $5,097 WS-C3750-48TS-E $5,394 WS-C3750-48TS-S $4,197 WS-C3750E-24PD-S $6,177 WS-C3750E-24TD-S $5,697 WS-C3750E-48TD-S $11,397 WS-C3750G-12S-E $7,194 WS-C3750G-12S-S $4,797 WS-C3750G-24PS-E $7,074 WS-C3750G-24PS-S $4,677 WS-C3750G-24T-E $5,994 WS-C3750G-24T-S $3,597 WS-C3750G-24TS-E $6,894 WS-C3750G-24TS-E1U $6,594 WS-C3750G-24TS-S $4,497 WS-C3750G-24TS-S1U $4,197 WS-C3750G-24WS-S50 $15,300 WS-C3750G-48PS-E $14,094 WS-C3750G-48PS-S $9,297 WS-C3750G-48TS-E $13,194 WS-C3750G-48TS-S $8,397 WS-C4503 $597 WS-C4506 $2,997 WS-C4507R $5,997 WS-C4510R $7,497 WS-C4948-E $8,697 WS-C4948-S $6,297 WS-C4948-10GE-E $12,897 WS-C4948-10GE-S $10,497 Cisco Switch Module (NEW) CVR-X2-SFP=3D $117 GLC-LH-SM=3D $597 GLC-SX-MM=3D $300 GLC-ZX-SM=3D $2,397 GLC-T=3D $237 GLC-FE-100FX=3D $150 GLC-GE-100FX $150 WS-G5483 $237 WS-G5484 $300 WS-G5486 $597 WS-G5487 $2,397 WS-X4013+ $3,597 WS-X4013+TS $3,597 WS-X4013+10GE $7,197 WS-X4148-RJ $2,697 WS-X4148-RJ21 $2,697 WS-X4232-GB-RJ $2,697 WS-X4248-FE-SFP $4,197 WS-X4248-RJ45V $3,897 WS-X4418-GB $5,997 WS-X4424-GB-RJ45 $2,097 WS-X4448-GB-SFP $9,897 WS-X4506-GB-T $2,097 WS-X4515 $7,197 WS-X4516 $9,897 WS-X4516-10GE $11,997 WS-X4524-GB-RJ45V $2,697 WS-X4548-GB-RJ45 $3,297 WS-X4548-GB-RJ45V $4,497 WS-X4991 $120 X2-10GB-CX4 $360 X2-10GB-LR $2,400 X2-10GB-LX4 $1,797 X2-10GB-SR $1,800 Cisco FireWall (NEW) ASA5500-SSL-10 $750 ASA5500-SSL-25 $1,857 ASA5500-SSL-50 $2,397 ASA5505-50-BUN-K9 $507 ASA5505-BUN-K9 $357 ASA5505-PWR-AC=3D $48 ASA5505-SEC-BUN-K9 $1,017 ASA5505-SEC-PL=3D $510 ASA5505-SSL10-K9 $1,257 ASA5505-SSL25-K9 $2,364 ASA5505-UL-BUN-K9 $597 ASA5510-BUN-K9 $2,097 ASA5510-AIP10-K9 $4,797 ASA5510-CSC10-K9 $4,317 ASA5510-CSC20-K9 $7,557 ASA5510-SEC-BUN-K9 $2,697 ASA5510-SEC-PL=3D $720 ASA5510-SSL50-K9 $4,497 ASA5510-SSL100-K9 $6,897 ASA5520-AIP10-K9 $7,497 ASA5520-AIP20-K9 $9,597 ASA5520-BUN-K9 $4,797 ASA5520-CSC10-K9 $6,717 ASA5540-AIP20-K9 $14,997 ASA5540-BUN-K9 $10,197 ASA-SSM-AIP-10-K9 $3,600 ASA-SSM-AIP-20-K9 $6,000 ASA-SSM-CSC-10-K9 $2,700 ASA-SSM-CSC-20-K9 $6,300 SSM-4GE=3D $3,000 PIX-1GE-66 $1,800 PIX-501-BUN-K9 $357 PIX-501-50-BUN-K9 $507 PIX-501-UL-BUN-K9 $597 PIX-506E-BUN-K9 $837 Cisco IP Phone (NEW) CP-7911G=3D $135 CP-7911G-CH1 $225 CP-7912G-A $105 CP-7912G-CH1-A $195 CP-7914=3D $237 CP-7931G=3D $195 CP-7936=3D $717 CP-7936-CH1 $807 CP-7936-MIC-KIT=3D $210 CP-7936-PWR-KIT $90 CP-7940G $159 CP-7940G-CH1 $279 CP-7941G $207 CP-7941G-CH1 $327 CP-7941G-GE=3D $261 CP-7941G-GE-CH1 $381 CP-7960G $219 CP-7960G-CH1 $339 CP-7961G $267 CP-7961G-CH1 $387 CP-7961G-GE=3D $339 CP-7961G-GE-CH1 $459 CP-7970G $384 CP-7970G-CH1 $534 CP-7971G-GE-CH1 $624 CP-PWR-CUBE-3 $27 CP-PWR-INJ=3D $75 CUVA-V2=3D $96 ATA186-I1-A=3D $90 ATA186-I1-1P-CH1-A $126 Cisco Wireless (NEW) AIR-ANT1728 $95 AIR-ANT1729 $131 AIR-ANT2012 $239 AIR-ANT2460P-R $131 AIR-ANT2465P-R $239 AIR-ANT2485P-R $143 AIR-ANT2506 $95 AIR-ANT4941 $11 AIR-ANT5135D-R $11 AIR-ANT5959 $167 AIR-AP521G-A-K9 $299 AIR-AP1010-A-K9 $359 AIR-AP1020-A-K9 $479 AIR-AP1030-A-K9 $539 AIR-AP1121G-A-K9 $359 AIR-AP1131AG-A-K9 $419 AIR-AP1242AG-A-K9 $539 AIR-BR1310G-A-K9 $779 AIR-BR1310G-A-K9-R $779 AIR-CB21AG-A-K9 $101 AIR-LAP521G-A-K9 $299 AIR-LAP1131AG-A-K9 $419 AIR-LAP1242AG-A-K9 $539 AIR-MP21G-A-K9 $89 AIR-PI21AG-A-K9 $149 AIR-WLC526-K9 $1,079 AIR-PWRINJ3 $36 AIR-PWRINJ-1000AF $36 Cisco Power Supply (NEW) PWR-2801-AC-IP $225 PWR-2811-AC-IP $240 PWR-2821-51-AC-IP $360 PWR-3825-AC $300 PWR-3825-AC-IP=3D $360 PWR-3845-AC=3D $300 PWR-3845-AC-IP=3D $600 PWR-C45-1000AC $597 PWR-C45-1300ACV $897 PWR-C45-1400AC $897 PWR-C45-2800ACV $1,197 PWR-C45-4200ACV $2,397 PWR-C49-300AC=3D $300 PWR675-AC-RPS-N1 $1,137 PWR-RPS2300=3D $720 Cisco Cable (NEW) CAB-***FC $60 CAB-***MT $60 CAB-SS-***FC $60 CAB-SS-***MT $60 CAB-OCT-*** $390 CAB-16AWG-AC=3D $60 CAB-RPS-1614 $45 CAB-SFP-50CM $150 CAB-STACK-50CM=3D $60 CAB-STACK-1M=3D $120 CAB-STACK-3M=3D $180 3Com Switch & Module (NEW) 3C16470 $58 3C16471 $89 3C16472 $151 3C16475CS $164 3C16476CS $306 3C16477A $213 3C16478 $182 3C16479 $251 3C16485A $220 3C16486 $616 3C16490 $616 3C16491 $616 3C1670108 $61 3C1670800A $86 3C1671600 $170 3C17203 $988 3C17204 $2,042 3C17260 $926 3C17261 $1,856 3C17262 $244 3C17263 $306 3C17268 $3,716 3C17300A $279 3C17302A $616 3C17304A $325 3C17401 $678 3C17462 $151 3C17666 $802 3CBLSG16 $217 3CBLSG24 $306 3CBLSG24PWR $740 3CBLSG48 $430 3CGSU05 $31 3CGSU08 $50 3CR17151-91 $1,856 3CR17152-91 $1,856 3CR17161-91 $988 3CR17162-91 $2,352 3CR17171-91 $1,670 3CR17172-91 $2,910 3CR17250-91 $2,786 3CR17251-91 $4,956 3CR17252-91 $3,468 3CR17253-91 $6,196 3CR17258-91 $4,336 3CR17561-91 $430 3CR17562-91 $759 3CR17571-91 $1,112 3CR17572-91 $2,042 3CR17660-91 $775 3CR17661-91 $1,236 3CR17662-91 $2,166 3CR17761-91 $2,042 3CR17762-91 $3,096 3CR17771-91 $2,476 3CR17772-91 $4,336 3CRWE920G73 $557 3CRWX275075A $154 3CRWX375075A $278 3CRWXR10095A $495 3CSFP91 $213 3CSFP92 $616 3CSFP93 $120 3CXFP92 $2,166 3CXFP94 $1,236 3CXFP96 $6,196 HP Switch & Module (NEW) J4813A#ABA $427 J4858B $284 J4859B $611 J4900B#ABA $427 J4903A#ABA $1,699 J4904A#ABA $2,991 J8164A#ABA $1,563 J8165A#ABA $2,991 J8699A#ABA $4,758 J9019A#ABA $284 J9021A#ABA $1,495 J9022A#ABA $2,685 J9028A#ABA $352 J9029A#ABA $142 J9049A#ABA $2,447 J9050A#ABA $3,739 HP Storage (NEW) EH841A $2,319 EH842A $2,479 EH847A $2,399 EH848A $2,559 EH903A $2,599 Juniper Firewall (NEW) NS-5GT-001 $410 NS-5GT-008 $410 NS-5GT-101 $648 NS-5GT-108 $648 NS-5GT-201 $1,080 NS-5GT-208 $1,080 WatchGuard (NEW) WG50010 $316 WG50020 $396 WG50055 $607 WG50550 $962 WG50750 $1,841 WG51250 $2,501 WGSSL05 $1,841 *********************************************************** Quantity discount is available. Prices are in US$ and FOB Los Angeles. For additional information about our company and products, please visit http://www.computerwide.net *********************************************************** If you have received this message in error or if you would like to be removed from our broadcast for any reason, reply to this email with REMOVE as subject followed by the email address you wish to remove. *********************************************************** From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 11:41:17 2007 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 8A02A16A479 for ; Thu, 16 Aug 2007 11:41:17 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.233]) by mx1.freebsd.org (Postfix) with ESMTP id 2AD0013C4DD for ; Thu, 16 Aug 2007 11:41:14 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: by wr-out-0506.google.com with SMTP id 70so146781wra for ; Thu, 16 Aug 2007 04:41:13 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=gjewrLEx7/CbVUiTSKg7wR3lGIezAZMkx9pPDN7bUe3bh3A0o2LmjF7V7flt2OjqA4DCDtqjeESfvC8vilEVIDJJJJGvBut12cwrvcncKF9EPSb2l8dtKNLEhQOw9zl7BpdOwrBvat+YAn1IvGCbr4xyCZnorSsAqi4hVle0JcY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NfJzyC7wbQvRQ/TGhrnUwi2nFCCgvJoUI81/CV3q8ocRjnwm4SYdGqzt/OTpllCZrUDNL7rYgu4c/9O83dh7/arqzszIZHbOFtksKTqlkTMQR/n9f4nqxFEyK0O/vnL5p7O1/X62NzK/+AYKeypDnNcHfY4TuM0aJHANqPPzsjM= Received: by 10.90.81.14 with SMTP id e14mr2259611agb.1187264473384; Thu, 16 Aug 2007 04:41:13 -0700 (PDT) Received: by 10.100.9.14 with HTTP; Thu, 16 Aug 2007 04:41:13 -0700 (PDT) Message-ID: <499c70c0708160441p1adf5d66paa35e7f71e264363@mail.gmail.com> Date: Thu, 16 Aug 2007 14:41:13 +0300 From: "Abdullah Ibn Hamad Al-Marri" To: "Simon Barner" In-Reply-To: <20070816113252.GA77089@dose.local.invalid> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: base64 Content-Disposition: inline References: <499c70c0708151506w319c7b49sb0b814ba3221ae13@mail.gmail.com> <20070816113252.GA77089@dose.local.invalid> Cc: ports@freebsd.org Subject: Re: FreeBSD Port: net/xmlrpc-c update please? 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, 16 Aug 2007 11:41:17 -0000 T24gOC8xNi8wNywgU2ltb24gQmFybmVyIDxiYXJuZXJAZnJlZWJzZC5vcmc+IHdyb3RlOgo+IEFi ZHVsbGFoIElibiBIYW1hZCBBbC1NYXJyaSB3cm90ZToKPiA+IEhlbGxvIEd1eXMsCj4gPgo+ID4g Q291bGQgc29tZW9uZSBwbGVhc2Ugd2l0aCBzb21lIGZyZWUgdGltZSBraW5kbHkgdXBkYXRlIGl0 IHRvIGxhdGVzdAo+ID4gc3RhYmxlIHZlcnNpb24gMS4wNi4xNyByZWxlYXNlZCBvbiBBdWd1c3Qg NCwgMjAwNwo+ID4KPiA+IGh0dHA6Ly9zb3VyY2Vmb3JnZS5uZXQvcHJvamVjdC9zaG93ZmlsZXMu cGhwP2dyb3VwX2lkPTE2ODQ3Cj4gPgo+Cj4gSSBrbm93biB0aGlzIGlzIG5vdCB3aGF0IHlvdSB3 YW50IHRvIGhlYXIsIGJ1dCB3aHkgZG9uJ3QgeW91IGdpdmUgaXQgYQo+IHRyeSB5b3Vyc2VsZj8K Pgo+IGh0dHA6Ly93d3cuZnJlZWJzZC5vcmcvZG9jL2VuL2FydGljbGVzL2NvbnRyaWJ1dGluZy1w b3J0cy9yZXNvdXJjZXMuaHRtbAo+IGh0dHA6Ly93d3cuZnJlZWJzZC5vcmcvZG9jL2VuL2Jvb2tz L3BvcnRlcnMtaGFuZGJvb2svCj4KPiAuLi4ganVzdCB0byBuYW1lIHR3byB1c2VmdWxsIHJlc291 cmNlcy4gSWYgeW91IG5lZWQgYXNzaXN0YW5jZSwgcGxlYXNlCj4gYXNrIHRoaXMgbWFpbGluZyBs aXN0Lgo+Cj4gLS0KPiBCZXN0IHJlZ2FyZHMgLyBWaWVsZSBHcsO8w59lLCAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgYmFybmVyQEZyZWVCU0Qub3JnCj4gIFNpbW9uIEJhcm5lciAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJhcm5lckBnbXguZGUKCkhl bGxvIFNpbW9uLAoKSSBob3BlIHlvdSBhcmUgZG9pbmcgd2VsbCB0b2RheS4KCkkgd2lzaCBJJ20g YSBjb2RlciB0byBiZSBhYmxlIHRvIGRvIGl0LCBhbmQgZW5oYW5jZSBGcmVlQlNEIHBvcnRzIDop CgoKLS0gClJlZ2FyZHMsCgotQWJkdWxsYWggSWJuIEhhbWFkIEFsLU1hcnJpCkFyYWIgUG9ydGFs Cmh0dHA6Ly93d3cuV2VBcmFiLk5ldC8K From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 12:57:46 2007 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 E454716A418 for ; Thu, 16 Aug 2007 12:57:46 +0000 (UTC) (envelope-from barner@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 483B613C46E for ; Thu, 16 Aug 2007 12:57:46 +0000 (UTC) (envelope-from barner@gmx.de) Received: (qmail invoked by alias); 16 Aug 2007 12:57:44 -0000 Received: from ppp-88-217-17-78.dynamic.mnet-online.de (EHLO dose.local.invalid) [88.217.17.78] by mail.gmx.net (mp010) with SMTP; 16 Aug 2007 14:57:44 +0200 X-Authenticated: #147403 X-Provags-ID: V01U2FsdGVkX1+jQO0LRzKj3LT1Ee33ai4G+rcYXlwh/GalRiukQx hNkO/82V2ixUvk Received: by dose.local.invalid (Postfix, from userid 1000) id 7D1DFC493; Thu, 16 Aug 2007 15:01:50 +0200 (CEST) Date: Thu, 16 Aug 2007 15:01:50 +0200 From: Simon Barner To: Abdullah Ibn Hamad Al-Marri Message-ID: <20070816130149.GA89725@dose.local.invalid> References: <499c70c0708151506w319c7b49sb0b814ba3221ae13@mail.gmail.com> <20070816113252.GA77089@dose.local.invalid> <499c70c0708160441p1adf5d66paa35e7f71e264363@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline In-Reply-To: <499c70c0708160441p1adf5d66paa35e7f71e264363@mail.gmail.com> User-Agent: Mutt/1.5.12-2006-07-14 X-Y-GMX-Trusted: 0 Cc: ports@freebsd.org, Simon Barner Subject: Re: FreeBSD Port: net/xmlrpc-c update please? 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, 16 Aug 2007 12:57:47 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Abdullah Ibn Hamad Al-Marri wrote: > I hope you are doing well today. Yes, I am, thanks. Maybe my first message sounded a bit harsh (apologies if it did). All I wanted to do is to encourage you to try and update the port on your own. >=20 > I wish I'm a coder to be able to do it, and enhance FreeBSD ports :) Ok. Quick start guide: 1.) Create a copy of the original port directory 2.) In Makefile, set PORTVERSION to the latest version, remove PORTREVISION 3.) run make makesum to update distinfo 4.) Try to build the port 5.) Check it's plist (list of installed files): make package PREFIX=3D/tmp/pref (must not complain about missing files) pkg_delete the_pkg find /tmp/pref -type f (must not report any remaining files) check /tmp/pref for new directories (not likely when you update a port) 6.) diff -ruN portdir.orig port > the.patch 7.) run portlint -A on your port and try to fix the warnings it emits (you can ignore warnings the apply to new ports only). 8.) Submit the.patch via send-pr If you are lucky, step 4.) goes well immediately, and you need no programming experience at all to update the port. Again, if you have questions, refer to the material from my first email, or ask this mailing list. Certainly, your first port update will take some time, but after all, it's fun to do it, isn't it? ;-) --=20 Best regards / Viele Gr=FC=DFe, barner@FreeBSD.= org Simon Barner barner@gmx.de --h31gzZEtNLTqOjlF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGxEq9Ckn+/eutqCoRApV+AKDsjDvWcRulyDCNCDrQ2AG4MBLmywCaAyfL eTLGFxP/9es7VO/NeAB9g2w= =9VWI -----END PGP SIGNATURE----- --h31gzZEtNLTqOjlF-- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 16:27:49 2007 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 5F11116A418 for ; Thu, 16 Aug 2007 16:27:49 +0000 (UTC) (envelope-from peo@intersonic.se) Received: from neonpark.inter-sonic.com (neonpark.inter-sonic.com [212.247.8.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2763D13C4D0 for ; Thu, 16 Aug 2007 16:27:49 +0000 (UTC) (envelope-from peo@intersonic.se) X-Virus-Scanned: amavisd-new at inter-sonic.com Message-ID: <46C476F2.3050401@intersonic.se> Date: Thu, 16 Aug 2007 18:10:26 +0200 From: Per olof Ljungmark Organization: Intersonic AB User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: bacula-users@lists.sourceforge.net Subject: bacula 2.2.0 fails to start, pidfile 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, 16 Aug 2007 16:27:49 -0000 [crossposting out of impatience, sorry for that] Hi, I just upgraded our bacula-server from 1.3.8 to version 2.2.0 using portupgrade. Now bacula-dir fails to start: Could not open pid file. /var/run/bacula-dir.9101.pid ERR=Permission denied I assume it tries to start as the "bacula" user, but /var/run is not writable. Common practice seems to be to create a writable subdirectory instead, as in /var/run/bacula. Anyone has a fix for this? Maybe a configuration directive would do it? Per olof FreeBSD 6.2-STABLE #0: Tue Jun 5 bacula-server-2.2.0 From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 17:01:11 2007 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 E8C4616A420 for ; Thu, 16 Aug 2007 17:01:11 +0000 (UTC) (envelope-from dan@langille.org) Received: from supernews.unixathome.org (supernews.unixathome.org [216.168.29.4]) by mx1.freebsd.org (Postfix) with ESMTP id 9CE7A13C469 for ; Thu, 16 Aug 2007 17:01:11 +0000 (UTC) (envelope-from dan@langille.org) Received: from localhost (localhost [127.0.0.1]) by supernews.unixathome.org (Postfix) with ESMTP id 2F15E1703B; Thu, 16 Aug 2007 12:42:52 -0400 (EDT) X-Virus-Scanned: amavisd-new at unixathome.org Received: from supernews.unixathome.org ([127.0.0.1]) by localhost (supernews.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ivwBcz-sfywK; Thu, 16 Aug 2007 12:42:49 -0400 (EDT) Received: from bast.unixathome.org (bast.unixathome.org [76.110.86.209]) by supernews.unixathome.org (Postfix) with ESMTP id 152701703A; Thu, 16 Aug 2007 12:42:49 -0400 (EDT) Received: from [10.55.0.99] (wocker.unixathome.org [10.55.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 8E29CB880; Thu, 16 Aug 2007 12:42:48 -0400 (EDT) From: "Dan Langille" To: Per olof Ljungmark Date: Thu, 16 Aug 2007 12:42:48 -0400 MIME-Version: 1.0 Message-ID: <46C44648.17419.5C6B5DD@dan.langille.org> Priority: normal In-reply-to: <46C476F2.3050401@intersonic.se> References: <46C476F2.3050401@intersonic.se> X-mailer: Pegasus Mail for Windows (4.41) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Cc: ports@freebsd.org Subject: Re: [Bacula-users] bacula 2.2.0 fails to start, pidfile 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, 16 Aug 2007 17:01:12 -0000 A copy to ports@ On 16 Aug 2007 at 18:10, Per olof Ljungmark wrote: > [crossposting out of impatience, sorry for that] > > Hi, > > I just upgraded our bacula-server from 1.3.8 to version 2.2.0 using > portupgrade. > > Now bacula-dir fails to start: > Could not open pid file. /var/run/bacula-dir.9101.pid ERR=Permission > denied > > I assume it tries to start as the "bacula" user, but /var/run is not > writable. Common practice seems to be to create a writable > subdirectory > instead, as in /var/run/bacula. > > Anyone has a fix for this? Maybe a configuration directive would do > it? See http://bugs.bacula.org/view.php?id=923 -- Dan Langille - http://www.langille.org/ Available for hire: http://www.freebsddiary.org/dan_langille.php From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 19:35:04 2007 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 A925216A41A for ; Thu, 16 Aug 2007 19:35:04 +0000 (UTC) (envelope-from edulsa@laplace.quimica.ufpr.br) Received: from laplace.quimica.ufpr.br (laplace.quimica.ufpr.br [200.17.215.88]) by mx1.freebsd.org (Postfix) with ESMTP id 0B22913C469 for ; Thu, 16 Aug 2007 19:35:02 +0000 (UTC) (envelope-from edulsa@laplace.quimica.ufpr.br) Received: by laplace.quimica.ufpr.br (Postfix, from userid 1001) id CC1E8D214; Thu, 16 Aug 2007 13:59:34 -0300 (BRT) Date: Thu, 16 Aug 2007 13:59:34 -0300 From: Eduardo To: ports@FreeBSD.org Message-ID: <20070816165934.GA59025@laplace.quimica.ufpr.br> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ew6BAiZeqk4r7MaW" Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Cc: Subject: about molden4.5 in 5.5-RELEASE 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, 16 Aug 2007 19:35:04 -0000 --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Porters Thank you for support us!!! I am having problems to install the almost newest (the newest is molden4.6) molden to FreeBSD5.5-p#15. The compilation log file is attched in this email. I think it is important to say: I updated to newest Xorg (xorg-7.2) last week. Older molden versions compiled under XF86 are still running, but not the 4.5 version Thanks for you attention Yours Eduardo ps.: by the way: laplace /home/edulsa> uname -a FreeBSD laplace.quimica.ufpr.br 5.5-RELEASE-p15 FreeBSD 5.5-RELEASE-p15 #0: Fri Aug 3 15:39:48 BRT 2007 edulsa@laplace.quimica.ufpr.br:/usr/src/sys/i386/compile/MYKERNEL i386 % laplace /home/edulsa> -- Eduardo Lemos de Sa Associated Professor at Chemistry Department Universidade Federal do Parana Dep. Quimica, P. Box 19081, 81531-990 Curitiba PR / Brazil phone: +55(41)33613300 fax : +55(41)33613186 --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="molden.log" Content-Transfer-Encoding: quoted-printable =3D=3D=3D> Cleaning for molden-4.5_1 =3D=3D=3D> Vulnerability check disabled, database not found =3D=3D=3D> Extracting for molden-4.5_1 =3D> MD5 Checksum OK for molden-4.5_1/molden4.5.tar.Z. =3D> SHA256 Checksum OK for molden-4.5_1/molden4.5.tar.Z. =3D=3D=3D> Patching for molden-4.5_1 =3D=3D=3D> Applying FreeBSD patches for molden-4.5_1 /usr/bin/sed -i.bak -e 's,malloc.h,stdlib.h,' /usr2/ports/biology/molden/wo= rk/molden4.5/xwin.c =3D=3D=3D> molden-4.5_1 depends on executable: gfortran42 - found =3D=3D=3D> molden-4.5_1 depends on file: /usr/local/libdata/xorg/librarie= s - found =3D=3D=3D> molden-4.5_1 depends on shared library: glut.4 - found =3D=3D=3D> Configuring for molden-4.5_1 ******************** ** If you want to use a larger MOLDEN, ** edit change_parameter.sh and run it, ** before \'make build\'. ******************** =3D=3D=3D> Building for molden-4.5_1 gfortran42 -O -malign-double -c atomdens.f gfortran42 -O -malign-double -c molden.f gfortran42 -O -malign-double -c above.f gfortran42 -O -malign-double -c actcal.f gfortran42 -O -malign-double -c basprt.f basprt.f:23.44: & 3hs ,3hsp ,3hd ,3hf ,3hg / =20 1 Warning: Extension: Hollerith constant at (1) basprt.f:19.23: data namesh/3hs ,3hsp ,3hspd,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:19.29: data namesh/3hs ,3hsp ,3hspd,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:19.35: data namesh/3hs ,3hsp ,3hspd,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:19.41: data namesh/3hs ,3hsp ,3hspd,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:19.47: data namesh/3hs ,3hsp ,3hspd,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:20.23: & 3h???,3hp ,3hd ,3h???,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:20.29: & 3h???,3hp ,3hd ,3h???,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:20.35: & 3h???,3hp ,3hd ,3h???,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:20.41: & 3h???,3hp ,3hd ,3h???,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:20.47: & 3h???,3hp ,3hd ,3h???,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:21.23: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:21.29: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:21.35: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:21.41: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:21.47: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:22.23: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:22.29: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:22.35: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:22.41: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:22.47: & 3hs ,3hsp ,3hd ,3hf ,3hg , =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:23.23: & 3hs ,3hsp ,3hd ,3hf ,3hg / =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:23.29: & 3hs ,3hsp ,3hd ,3hf ,3hg / =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:23.35: & 3hs ,3hsp ,3hd ,3hf ,3hg / =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:23.41: & 3hs ,3hsp ,3hd ,3hf ,3hg / =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) basprt.f:23.47: & 3hs ,3hsp ,3hd ,3hf ,3hg / =20 1 Warning: Extension: Conversion from HOLLERITH to INTEGER(4) at (1) gfortran42 -O -malign-double -c calc.f gfortran42 -O -malign-double -c caldis.f gfortran42 -O -malign-double -c calfa.f gfortran42 -O -malign-double -c cntour.f gfortran42 -O -malign-double -c cnvgam.f gfortran42 -O -malign-double -c cnvgau.f gfortran42 -O -malign-double -c convzmat.f gfortran42 -O -malign-double -c cross.f gfortran42 -O -malign-double -c crprod.f gfortran42 -O -malign-double -c datin.f gfortran42 -O -malign-double -c defpc.f gfortran42 -O -malign-double -c defrad.f gfortran42 -O -malign-double -c del.f gfortran42 -O -malign-double -c denmak.f gfortran42 -O -malign-double -c densmat.f gfortran42 -O -malign-double -c distot.f gfortran42 -O -malign-double -c dmat.f gfortran42 -O -malign-double -c docent.f gfortran42 -O -malign-double -c draw.f gfortran42 -O -malign-double -c euler.f gfortran42 -O -malign-double -c eulerh.f gfortran42 -O -malign-double -c files.f gfortran42 -O -malign-double -c fndcal.f gfortran42 -O -malign-double -c gampoi.f gfortran42 -O -malign-double -c gaupoi.f gfortran42 -O -malign-double -c gaussian.f gfortran42 -O -malign-double -c geogam.f gfortran42 -O -malign-double -c geogau.f gfortran42 -O -malign-double -c getmul.f gfortran42 -O -malign-double -c getpoi.f gfortran42 -O -malign-double -c getreal.f gfortran42 -O -malign-double -c gmmcnv.f gfortran42 -O -malign-double -c grdcal.f gfortran42 -O -malign-double -c gstr.f gfortran42 -O -malign-double -c hidedr.f gfortran42 -O -malign-double -c impsc.f gfortran42 -O -malign-double -c locatc.f gfortran42 -O -malign-double -c maxmin.f gfortran42 -O -malign-double -c mdout.f gfortran42 -O -malign-double -c mmcnv.f gfortran42 -O -malign-double -c mopaco.f gfortran42 -O -malign-double -c mopin.f gfortran42 -O -malign-double -c mulprt.f gfortran42 -O -malign-double -c occin.f gfortran42 -O -malign-double -c oriin.f gfortran42 -O -malign-double -c parang.f gfortran42 -O -malign-double -c pareul.f gfortran42 -O -malign-double -c parfc.f gfortran42 -O -malign-double -c parori.f gfortran42 -O -malign-double -c parpla.f gfortran42 -O -malign-double -c parstp.f gfortran42 -O -malign-double -c planky.f gfortran42 -O -malign-double -c plend.f gfortran42 -O -malign-double -c plini.f gfortran42 -O -malign-double -c plmol.f gfortran42 -O -malign-double -c plotgh.f gfortran42 -O -malign-double -c plotgr.f plotgr.f:71.72: if (iplot.eq.0) assign 20 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) plotgr.f:72.72: if (iplot.eq.1) assign 40 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) plotgr.f:73.72: if (iplot.eq.2) assign 60 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) plotgr.f:74.72: if (iplot.eq.4) assign 100 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) plotgr.f:76.72: if (iplot.eq.0) assign 10 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) plotgr.f:77.72: if (iplot.eq.1) assign 30 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) plotgr.f:78.72: if (iplot.eq.2) assign 50 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) plotgr.f:79.72: if (iplot.eq.4) assign 90 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) plotgr.f:81.47: if (iplot.eq.0.or.iplot.eq.1) write(iun4,istmnt)dx,dy =20 1 Warning: Obsolete: ASSIGNED variable in FORMAT tag at (1) plotgr.f:83.19: write(iun4,istmnt)char(27),int(dx*389),int(dy*389) =20 1 Warning: Obsolete: ASSIGNED variable in FORMAT tag at (1) plotgr.f:120.19: write(iun4,istmnt)int(dx*2000),int(dy*2000)+125 =20 1 Warning: Obsolete: ASSIGNED variable in FORMAT tag at (1) gfortran42 -O -malign-double -c plotin.f gfortran42 -O -malign-double -c plpost.f gfortran42 -O -malign-double -c prev.f gfortran42 -O -malign-double -c proato.f gfortran42 -O -malign-double -c procnv.f gfortran42 -O -malign-double -c progeo.f gfortran42 -O -malign-double -c rdbas.f gfortran42 -O -malign-double -c rdcor.f gfortran42 -O -malign-double -c rdgam.f gfortran42 -O -malign-double -c rdgaus.f gfortran42 -O -malign-double -c rdinfo.f gfortran42 -O -malign-double -c rdpdb.f gfortran42 -O -malign-double -c rdvect.f gfortran42 -O -malign-double -c reada.f gfortran42 -O -malign-double -c readel.f gfortran42 -O -malign-double -c readvv.f gfortran42 -O -malign-double -c renorm.f gfortran42 -O -malign-double -c rmomen.f gfortran42 -O -malign-double -c rota.f gfortran42 -O -malign-double -c rotatg.f gfortran42 -O -malign-double -c rotb.f gfortran42 -O -malign-double -c rotc.f gfortran42 -O -malign-double -c rotcor.f gfortran42 -O -malign-double -c rotd.f gfortran42 -O -malign-double -c rotfir.f gfortran42 -O -malign-double -c rotm.f gfortran42 -O -malign-double -c rotmom.f gfortran42 -O -malign-double -c scback.f gfortran42 -O -malign-double -c search.f gfortran42 -O -malign-double -c searchd.f gfortran42 -O -malign-double -c setang.f gfortran42 -O -malign-double -c setbas.f gfortran42 -O -malign-double -c settc.f gfortran42 -O -malign-double -c shsort.f gfortran42 -O -malign-double -c site.f gfortran42 -O -malign-double -c slater.f gfortran42 -O -malign-double -c stoc.f gfortran42 -O -malign-double -c tessa.f gfortran42 -O -malign-double -c tk4014.f gfortran42 -O -malign-double -c tocap.f gfortran42 -O -malign-double -c tocapf.f gfortran42 -O -malign-double -c tomold.f gfortran42 -O -malign-double -c under.f gfortran42 -O -malign-double -c vaxdum.f gfortran42 -O -malign-double -c vclr.f gfortran42 -O -malign-double -c vec.f gfortran42 -O -malign-double -c vlen.f gfortran42 -O -malign-double -c vsc1.f gfortran42 -O -malign-double -c wrinfo.f gfortran42 -O -malign-double -c zread.f gfortran42 -O -malign-double -c samino.f gfortran42 -O -malign-double -c prtcal.f gfortran42 -O -malign-double -c actss.f gfortran42 -O -malign-double -c actami.f gfortran42 -O -malign-double -c plden.f gfortran42 -O -malign-double -c heaps.f gfortran42 -O -malign-double -c den3d.f gfortran42 -O -malign-double -c dencnt.f gfortran42 -O -malign-double -c plhead.f gfortran42 -O -malign-double -c pltab.f gfortran42 -O -malign-double -c eucmol.f gfortran42 -O -malign-double -c pl3dm.f gfortran42 -O -malign-double -c plbox.f gfortran42 -O -malign-double -c selsol.f gfortran42 -O -malign-double -c atmd.f gfortran42 -O -malign-double -c dolift.f gfortran42 -O -malign-double -c spaced.f gfortran42 -O -malign-double -c snypnt.f gfortran42 -O -malign-double -c eulstr.f gfortran42 -O -malign-double -c calct.f gfortran42 -O -malign-double -c coeffs.f gfortran42 -O -malign-double -c epint.f gfortran42 -O -malign-double -c espot.f gfortran42 -O -malign-double -c fcij.f gfortran42 -O -malign-double -c fmt.f gfortran42 -O -malign-double -c genaos.f gfortran42 -O -malign-double -c rys.f gfortran42 -O -malign-double -c ryspol.f gfortran42 -O -malign-double -c rysrot.f gfortran42 -O -malign-double -c thrcen.f gfortran42 -O -malign-double -c twocen.f gfortran42 -O -malign-double -c ifblen.f gfortran42 -O -malign-double -c rott.f gfortran42 -O -malign-double -c plmolp.f gfortran42 -O -malign-double -c wrzmat.f gfortran42 -O -malign-double -c rdchx.f rdchx.f:1606.72: assign 1070 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) rdchx.f:1609.72: assign 1075 to istmnt =20 1 Warning: Obsolete: ASSIGN statement at (1) rdchx.f:1624.19: read(iun2,istmnt,end=3D1000,err=3D1000) (icon(i),i=3D1,jleft) = =20 1 Warning: Obsolete: ASSIGNED variable in FORMAT tag at (1) gfortran42 -O -malign-double -c obin.f gfortran42 -O -malign-double -c pred.f gfortran42 -O -malign-double -c gargpl.f gfortran42 -O -malign-double -c inferr.f gfortran42 -O -malign-double -c freqs.f gfortran42 -O -malign-double -c getmop.f gfortran42 -O -malign-double -c brklin.f gfortran42 -O -malign-double -c getzm.f gfortran42 -O -malign-double -c xyzcoo.f gfortran42 -O -malign-double -c geomop.f gfortran42 -O -malign-double -c dumzm.f gfortran42 -O -malign-double -c getxyz.f gfortran42 -O -malign-double -c espchrg.f gfortran42 -O -malign-double -c proxim.f gfortran42 -O -malign-double -c rdgamu.f gfortran42 -O -malign-double -c plvrml.f gfortran42 -O -malign-double -c molsint.f gfortran42 -O -malign-double -c runjob.f gfortran42 -O -malign-double -c rdmsf.f gfortran42 -O -malign-double -c wrmsf.f gfortran42 -O -malign-double -c rdmolf.f gfortran42 -O -malign-double -c adf_fun.f gfortran42 -O -malign-double -c rotpol.f gfortran42 -O -malign-double -c extbas.f gfortran42 -O -malign-double -c rdcpmd.f gfortran42 -O -malign-double -c eem.f eem.f:673.72: 10 assign 30 to next =20 1 Warning: Obsolete: ASSIGN statement at (1) eem.f:678.19: 20 go to next,(30, 50, 70, 110) =20 1 Warning: Obsolete: Assigned GOTO statement at (1) eem.f:680.72: assign 50 to next =20 1 Warning: Obsolete: ASSIGN statement at (1) eem.f:689.72: assign 70 to next =20 1 Warning: Obsolete: ASSIGN statement at (1) eem.f:695.72: assign 110 to next =20 1 Warning: Obsolete: ASSIGN statement at (1) gfortran42 -O -malign-double -c asspmf.f gfortran42 -O -malign-double -c srfcal.f gfortran42 -O -malign-double -c rdqchm.f gfortran42 -O -malign-double -c mpdum.f cc -O -pipe -c -DDOBACK -DHASTIMER -I/usr/local/include -malign-double -c= xwin.c gfortran42 -o molden atomdens.o molden.o above.o actcal.o basprt.o calc.o = caldis.o calfa.o cntour.o cnvgam.o cnvgau.o convzmat.o cross.o crprod.o da= tin.o defpc.o defrad.o del.o denmak.o densmat.o distot.o dmat.o docent.o d= raw.o euler.o eulerh.o files.o fndcal.o gampoi.o gaupoi.o gaussian.o geog= am.o geogau.o getmul.o getpoi.o getreal.o gmmcnv.o grdcal.o gstr.o hidedr.= o impsc.o locatc.o maxmin.o mdout.o mmcnv.o mopaco.o mopin.o mulprt.o occi= n.o oriin.o parang.o pareul.o parfc.o parori.o parpla.o parstp.o planky.o = plend.o plini.o plmol.o plotgh.o plotgr.o plotin.o plpost.o prev.o proato.= o procnv.o progeo.o rdbas.o rdcor.o rdgam.o rdgaus.o rdinfo.o rdpdb.o rdv= ect.o reada.o readel.o readvv.o renorm.o rmomen.o rota.o rotatg.o rotb.o r= otc.o rotcor.o rotd.o rotfir.o rotm.o rotmom.o scback.o search.o searchd.o= setang.o setbas.o settc.o shsort.o site.o slater.o stoc.o tessa.o tk4014.= o tocap.o tocapf.o tomold.o under.o vaxdum.o vclr.o vec.o vlen.o vsc1.o w= rinfo.o zread.o samino.o prtcal.o actss.o actami.o plden.o heaps.o den3d.o= dencnt.o plhead.o pltab.o eucmol.o pl3dm.o plbox.o selsol.o atmd.o dolift= .o spaced.o snypnt.o eulstr.o calct.o coeffs.o epint.o espot.o fcij.o fmt.= o genaos.o rys.o ryspol.o rysrot.o thrcen.o twocen.o ifblen.o rott.o plmol= p.o wrzmat.o rdchx.o obin.o pred.o gargpl.o inferr.o freqs.o getmop.o brk= lin.o getzm.o xyzcoo.o geomop.o dumzm.o getxyz.o espchrg.o proxim.o rdgamu= .o plvrml.o molsint.o runjob.o rdmsf.o wrmsf.o rdmolf.o adf_fun.o rotpol.o= extbas.o rdcpmd.o eem.o asspmf.o srfcal.o rdqchm.o mpdum.o xwin.o -L/usr= /local/lib -lX11 -lm /usr/bin/ld: molden: hidden symbol `__eprintf' in /usr/local/lib/gcc-4.2.1/= gcc/i386-portbld-freebsd5.5/4.2.1/libgcc.a(_eprintf.o) is referenced by DSO collect2: ld returned 1 exit status *** Error code 1 Stop in /usr2/ports/biology/molden/work/molden4.5. *** Error code 1 Stop in /usr2/ports/biology/molden. --ew6BAiZeqk4r7MaW-- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 19:59:04 2007 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 C38FB16A468 for ; Thu, 16 Aug 2007 19:59:04 +0000 (UTC) (envelope-from pm@rednetgroup.com) Received: from postino4.prima.com.ar (postino4.prima.com.ar [200.42.0.162]) by mx1.freebsd.org (Postfix) with SMTP id EEC0213C465 for ; Thu, 16 Aug 2007 19:59:03 +0000 (UTC) (envelope-from pm@rednetgroup.com) Received: (qmail 60348 invoked from network); 16 Aug 2007 19:28:14 -0000 Received: from unknown (HELO killermovil) (killerarg@190.48.214.224) by postino4.prima.com.ar with SMTP; 16 Aug 2007 19:28:14 -0000 Message-ID: <011101c7e03b$8976b920$a601a8c0@killermovil> From: "Pablo Murillo" To: Date: Thu, 16 Aug 2007 16:26:48 -0300 Organization: Red Net Argentina MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 Cc: Subject: Stupid 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: Thu, 16 Aug 2007 19:59:04 -0000 Hello My name is Pablo, I'm from Argentina, I'm new on FreeBSD, and I have a very stupid question about ports How can I "re-make" a port and change the options selected the first time I make the port ? For example, I make the port for assp (/usr/ports/mail/assp) and I don't have MySQL installed, and I hit Enter to quickly (sorry), and now, I can't get the "options" screen again. Thanks in advance Pablo Murillo PS: sorry my english, my natural languaje is spanish, and I'm to bad in spanish too :) From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 20:05:02 2007 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 7B21E16A421 for ; Thu, 16 Aug 2007 20:05:02 +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 31FD713C45A for ; Thu, 16 Aug 2007 20:05:01 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1ILlaR-0007A1-1b for freebsd-ports@freebsd.org; Thu, 16 Aug 2007 22:04:55 +0200 Received: from e177210011.adsl.alicedsl.de ([85.177.210.11]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 16 Aug 2007 22:04:55 +0200 Received: from rotkap by e177210011.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 16 Aug 2007 22:04:55 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Heino Tiedemann Date: Thu, 16 Aug 2007 22:04:39 +0200 Organization: yes Lines: 18 Message-ID: References: <011101c7e03b$8976b920$a601a8c0@killermovil> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: e177210011.adsl.alicedsl.de User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.99 (berkeley-unix) X-Face: v6Lci{Mw=kwHf$`7C?L-U#BHn7O\wqF-1qg#Vk%}nUQv\i^mM/.p=wU+cr)yXf#Ob+foOOxW; ir"QI!|25wG3`ywF)yh~@V.kKtr.qp+v.R; w?c@ZzM#!'/7r_+)$NjMN:]qo-]`&z~KlP}|cERO'%s9":6\ZnN/O Subject: Re: Stupid question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rotkap@gmx.de List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2007 20:05:02 -0000 "Pablo Murillo" wrote: > How can I "re-make" a port and change the options selected the first > time I make the port ? > For example, I make the port for assp (/usr/ports/mail/assp) and I > don't have MySQL installed, and I hit Enter to quickly (sorry), and > now, I can't get the "options" screen again. cd /usr/ports/mail/assp make config Hope That Helps From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 20:05:52 2007 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 F416A16A41B for ; Thu, 16 Aug 2007 20:05:51 +0000 (UTC) (envelope-from jdc@parodius.com) Received: from mx01.sc1.parodius.com (mx01.sc1.parodius.com [72.20.106.3]) by mx1.freebsd.org (Postfix) with ESMTP id E24AE13C458 for ; Thu, 16 Aug 2007 20:05:51 +0000 (UTC) (envelope-from jdc@parodius.com) Received: by mx01.sc1.parodius.com (Postfix, from userid 1000) id B24CC1CC02B; Thu, 16 Aug 2007 13:05:51 -0700 (PDT) Date: Thu, 16 Aug 2007 13:05:51 -0700 From: Jeremy Chadwick To: Pablo Murillo Message-ID: <20070816200551.GA25826@eos.sc1.parodius.com> Mail-Followup-To: Pablo Murillo , ports@FreeBSD.org References: <011101c7e03b$8976b920$a601a8c0@killermovil> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <011101c7e03b$8976b920$a601a8c0@killermovil> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: ports@FreeBSD.org Subject: Re: Stupid 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: Thu, 16 Aug 2007 20:05:52 -0000 On Thu, Aug 16, 2007 at 04:26:48PM -0300, Pablo Murillo wrote: > My name is Pablo, I'm from Argentina, I'm new on FreeBSD, and I have a very > stupid question about ports > How can I "re-make" a port and change the options selected the first time I > make the port ? > For example, I make the port for assp (/usr/ports/mail/assp) and I don't > have MySQL installed, and I hit Enter to quickly (sorry), and now, I can't > get the "options" screen again. You can use "make config" to select options at any time. If you need to revert to the original defaults, you can do: # rm -fr /var/db/ports/assp/* # cd /usr/ports/mail/assp # make config -- | 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 Thu Aug 16 20:06:08 2007 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 A3BEB16A418 for ; Thu, 16 Aug 2007 20:06:08 +0000 (UTC) (envelope-from heli@mikestammer.com) Received: from smtp104.sbc.mail.re2.yahoo.com (smtp104.sbc.mail.re2.yahoo.com [68.142.229.101]) by mx1.freebsd.org (Postfix) with SMTP id 3B20113C481 for ; Thu, 16 Aug 2007 20:06:08 +0000 (UTC) (envelope-from heli@mikestammer.com) Received: (qmail 37894 invoked from network); 16 Aug 2007 20:06:07 -0000 Received: from unknown (HELO mail.mikestammer.com) (mikestammer@sbcglobal.net@70.131.104.73 with login) by smtp104.sbc.mail.re2.yahoo.com with SMTP; 16 Aug 2007 20:06:07 -0000 X-YMail-OSG: UPBDXaUVM1nSMtBHU7tD8JiCTsO_siNv9IwqxcITE3FVXy188tuvVrQ.sqqMh_Cgz.joq6bw5g-- Received: from localhost (localhost [127.0.0.1]) by mail.mikestammer.com (Postfix) with ESMTP id 867C3B8FE; Thu, 16 Aug 2007 15:06:17 -0500 (CDT) X-Virus-Scanned: amavisd-new at mikestammer.com Received: from mail.mikestammer.com ([127.0.0.1]) by localhost (gondolin.middleearth.mikestammer.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Am8Byjj4tKgI; Thu, 16 Aug 2007 15:06:16 -0500 (CDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: eric) by mail.mikestammer.com (Postfix) with ESMTPSA id 4845CB8FA; Thu, 16 Aug 2007 15:06:15 -0500 (CDT) Message-ID: <46C4AE2C.1060008@mikestammer.com> Date: Thu, 16 Aug 2007 15:06:04 -0500 From: Eric User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: Pablo Murillo References: <011101c7e03b$8976b920$a601a8c0@killermovil> In-Reply-To: <011101c7e03b$8976b920$a601a8c0@killermovil> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: Stupid 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: Thu, 16 Aug 2007 20:06:08 -0000 Pablo Murillo wrote: > Hello > > My name is Pablo, I'm from Argentina, I'm new on FreeBSD, and I have a > very stupid question about ports > How can I "re-make" a port and change the options selected the first > time I make the port ? > For example, I make the port for assp (/usr/ports/mail/assp) and I don't > have MySQL installed, and I hit Enter to quickly (sorry), and now, I > can't get the "options" screen again. > try make config from your port directory and you will be back in business! Eric From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 20:11:38 2007 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 7C3B116A41A for ; Thu, 16 Aug 2007 20:11:38 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from smtp3.utdallas.edu (smtp3.utdallas.edu [129.110.10.49]) by mx1.freebsd.org (Postfix) with ESMTP id 50FC713C480 for ; Thu, 16 Aug 2007 20:11:38 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from utd59514.utdallas.edu (utd59514.utdallas.edu [129.110.3.28]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp3.utdallas.edu (Postfix) with ESMTP id 46965654FF for ; Thu, 16 Aug 2007 15:11:37 -0500 (CDT) Date: Thu, 16 Aug 2007 15:11:36 -0500 From: Paul Schmehl To: ports@FreeBSD.org Message-ID: In-Reply-To: <20070816200551.GA25826@eos.sc1.parodius.com> References: <011101c7e03b$8976b920$a601a8c0@killermovil> <20070816200551.GA25826@eos.sc1.parodius.com> X-Mailer: Mulberry/4.0.6 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========485FDCA83E13CF862E12==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Stupid 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: Thu, 16 Aug 2007 20:11:38 -0000 --==========485FDCA83E13CF862E12========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Thursday, August 16, 2007 13:05:51 -0700 Jeremy Chadwick=20 wrote: > On Thu, Aug 16, 2007 at 04:26:48PM -0300, Pablo Murillo wrote: >> My name is Pablo, I'm from Argentina, I'm new on FreeBSD, and I have a >> very stupid question about ports >> How can I "re-make" a port and change the options selected the first >> time I make the port ? >> For example, I make the port for assp (/usr/ports/mail/assp) and I don't >> have MySQL installed, and I hit Enter to quickly (sorry), and now, I >> can't get the "options" screen again. > > You can use "make config" to select options at any time. > > If you need to revert to the original defaults, you can do: > > # rm -fr /var/db/ports/assp/* > # cd /usr/ports/mail/assp > # make config Or just do # make rmconfig. --=20 Paul Schmehl (pauls@utdallas.edu) Senior Information Security Analyst The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========485FDCA83E13CF862E12==========-- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 20:24:42 2007 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 042D016A46D for ; Thu, 16 Aug 2007 20:24:42 +0000 (UTC) (envelope-from beckman@angryox.com) Received: from nog.angryox.com (nog.angryox.com [70.164.19.87]) by mx1.freebsd.org (Postfix) with ESMTP id CF45513C4A5 for ; Thu, 16 Aug 2007 20:24:41 +0000 (UTC) (envelope-from beckman@angryox.com) Received: by nog.angryox.com (Postfix, from userid 1001) id E8D552C3884; Thu, 16 Aug 2007 20:07:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by nog.angryox.com (Postfix) with ESMTP id E7ED22C386B; Thu, 16 Aug 2007 16:07:19 -0400 (EDT) Date: Thu, 16 Aug 2007 16:07:19 -0400 (EDT) From: Peter Beckman To: Pablo Murillo In-Reply-To: <011101c7e03b$8976b920$a601a8c0@killermovil> Message-ID: References: <011101c7e03b$8976b920$a601a8c0@killermovil> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=us-ascii Cc: ports@FreeBSD.org Subject: Re: Stupid 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: Thu, 16 Aug 2007 20:24:42 -0000 On Thu, 16 Aug 2007, Pablo Murillo wrote: > Hello > > My name is Pablo, I'm from Argentina, I'm new on FreeBSD, and I have a very > stupid question about ports > How can I "re-make" a port and change the options selected the first time I > make the port ? > For example, I make the port for assp (/usr/ports/mail/assp) and I don't have > MySQL installed, and I hit Enter to quickly (sorry), and now, I can't get the > "options" screen again. make config --------------------------------------------------------------------------- Peter Beckman Internet Guy beckman@angryox.com http://www.angryox.com/ --------------------------------------------------------------------------- ** PLEASE NOTE PurpleCow.com IS NOW AngryOx.com DO NOT USE PurpleCow.com ** ** PurpleCow.com is now owned by City Auto Credit LLC as of May 23, 2007 ** --------------------------------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 16 20:30:11 2007 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 2999816A480 for ; Thu, 16 Aug 2007 20:30:11 +0000 (UTC) (envelope-from wahjava@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.190]) by mx1.freebsd.org (Postfix) with ESMTP id D6DDE13C457 for ; Thu, 16 Aug 2007 20:30:10 +0000 (UTC) (envelope-from wahjava@gmail.com) Received: by rv-out-0910.google.com with SMTP id l15so260607rvb for ; Thu, 16 Aug 2007 13:30:10 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:date:from:to:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:x-face:x-attribution:x-os:x-os-version:x-os-architecture:x-uptime:face:organization:pgp:x-pgp:x-pgp-fp:user-agent:sender; b=S+Z6j3i2muR/EO+x9hSI8VAWlrgJJrkgude9qqMaRVqXylmVPYVmQzwp1Yh+AaHru5BnQXyXlM8KGBIMoVjmT6mvaEG59IR7D3F+FqYgKx8ICG4et8V4o0Hxe0yXNJSxKn9oPEcuCehLn3LfO9NkTb2f7wciIMP1UqmrgcLVVlc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:x-face:x-attribution:x-os:x-os-version:x-os-architecture:x-uptime:face:organization:pgp:x-pgp:x-pgp-fp:user-agent:sender; b=XgGH4CEJpp8b8N7ZGdTt2dIP3HxdxDiLQ+n5g78A+b8D11BYp1Dd5FaajQj85TJW+N+37z4hRXRx0+qyGOM1ew0bBLS9VLftckYQLMnuzGW9nX1A0Bi+LZSh2TMScifofHEomLBnSkd7RKbbqEcYpiwAmB8kwmeP3OI9TOck3DY= Received: by 10.141.203.12 with SMTP id f12mr916053rvq.1187294736931; Thu, 16 Aug 2007 13:05:36 -0700 (PDT) Received: from chatteau.d.lf ( [122.163.232.226]) by mx.google.com with ESMTPS id c14sm2688702rvf.2007.08.16.13.05.34 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 16 Aug 2007 13:05:36 -0700 (PDT) Date: Fri, 17 Aug 2007 01:33:19 +0530 From: =?utf-8?B?4KSG4KS24KWA4KS3IOCktuClgeCkleCljeCksg==?= Ashish Shukla To: ports@freebsd.org Message-ID: <20070816200319.GB17984@chatteau.d.lf> Mail-Followup-To: ports@freebsd.org References: <011101c7e03b$8976b920$a601a8c0@killermovil> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hQiwHBbRI9kgIhsi" Content-Disposition: inline In-Reply-To: <011101c7e03b$8976b920$a601a8c0@killermovil> X-Face: *!LyhHV"J+/95DS|"tnD(ts]QvHA*t$3~<0Ek1}W4#t~ X-Attribution: =?utf-8?B?4KSG4KS24KWA4KS3?= X-OS: Linux X-OS-Version: 2.6.22.1-41.fc7 X-OS-Architecture: x86_64 X-Uptime: 00:52:47 up 6:37, 2 users, load average: 0.33, 0.24, 0.21 Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAG1BMVEX/+/0sHhbJm4v4+/2bRhdrbXL+/P3w8O/vq4v1P1jJAAACdElEQVQ4jUWUQWvjMBCFDQvNWWDDXpOo6xwXDOpZZgy6ur Wba7pipb023li5FrSsf/a+keyuQyidT29m3oycwjlXFBfnrLKzc6rBX8WhAsDN6Tt7N7mnCQT/XhJ42PnZX3shqufJzqxcAc4/7UV+6t3MCpfBbN/XuKjq4P+Dp5/i86n+zmoFaKPnUFmWok SdENAeA+WTQOtODxrkENSaynMFPQw9aa17SCZlM+g5Dw0ch2RkSQY4T11Hw0BDyW7ClMENZUnKtkWci4z1nID/TUSH00lGSQSFGOspdeU/OmPigo8cBq3TZLJiIEOIG4NkGYSs0BRBzMKSks kIhYW/klLcQJKLPIem8NaF0oDEBQ/60gTFcSosgzblYQnRILQYoXDW/SojpejCgNF4BJjUu8B5jiAedWtanRSNehOQkO7alMoscT8e0a5tfpTaoNHDyUQckGi6QirbKN/jmBSEQiBIt6+OuA xW7bThJF/lsphcqXph5yrsoYAV+OBcS9Ti5fs6q5NZ1njEI8Rruom+YxtsPCmiFNVrunCeWsMGc9wYvQHb0UJJwDZPErP6dikenNt1MGDWOLzz2NM+gkTUxLUEL+qcNxhkm4eOMHVpHdggLl 34U7JDEHhjwa1eFTed2orsu0+Xd2pSu/dScioQg/VVjyE0+ZYEXjo889TRUgDItyT0aXaYq0SJ5xqZWIGlx5ZHRElQncMGVLilYae4GM9cIgN/17zTZI5NbMD6MODyIhcLuCe1Ki7hg2ROVO Wetrc2vFPuSIy3VHoD/ipyAXaNN3ADKtwf8zs+1qvA8RDxy/HlMG4FsmAFNlwfMb3x/Clw/wD/sGWJDSmNYwAAAABJRU5ErkJggg= Organization: /\/0/\/3 PGP: 762E5E74 X-PGP: 762E5E74 X-PGP-FP: 1E00 4679 77E4 F8EE 2E4B 56F2 1F2F 8410 762E 5E74 User-Agent: Mutt/1.5.14 (2007-02-12) Sender: =?UTF-8?B?4KSG4KS24KWA4KS3IOCktuClgeCkleCljeCksg==?= Cc: Subject: Re: Stupid 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: Thu, 16 Aug 2007 20:30:11 -0000 --hQiwHBbRI9kgIhsi Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable ,--[ On Thu, Aug 16, 2007 at 04:26:48PM -0300, Pablo Murillo wrote: | Hello Hi, |=20 | My name is Pablo, I'm from Argentina, I'm new on FreeBSD, and I have a ve= ry=20 | stupid question about ports | How can I "re-make" a port and change the options selected the first time= I=20 | make the port ? | For example, I make the port for assp (/usr/ports/mail/assp) and I don't= =20 | have MySQL installed, and I hit Enter to quickly (sorry), and now, I can'= t=20 | get the "options" screen again. Try, "make config" . |=20 | Thanks in advance | Pablo Murillo |=20 | PS: sorry my english, my natural languaje is spanish, and I'm to bad in= =20 | spanish too :)=20 Ashish Shukla --=20 Ashish Shukla "Wah Java !!" =E0=A4=86=E0=A4=B6=E0=A5=80=E0=A4=B7 =E0=A4=B6=E0=A5=81=E0=A4=95=E0=A5=8D= =E0=A4=B2 weblog: http://wahjava.wordpress.com/ ,=3D ,-_-. =3D. | The desire to be rewarded for one's creativity = does | ((_/)o o(\_)) | not justify depriving the world in general of all or= | `-'(. .)`-' | part of that creativity. = | \_/ | - Richard M. Stallman = | --hQiwHBbRI9kgIhsi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (GNU/Linux) iD8DBQFGxK2HHy+EEHYuXnQRAjiEAJ4iqpsHABRRxiOcVZRxLlFAWsoZjgCcCAsK w7FKHzrRRg3pauyH2ZD6Uqc= =l6lE -----END PGP SIGNATURE----- --hQiwHBbRI9kgIhsi-- From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 03:21:49 2007 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 D4E4116A421 for ; Fri, 17 Aug 2007 03:21:49 +0000 (UTC) (envelope-from max@love2party.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.177]) by mx1.freebsd.org (Postfix) with ESMTP id 65E8A13C45A for ; Fri, 17 Aug 2007 03:21:49 +0000 (UTC) (envelope-from max@love2party.net) Received: from dslb-088-064-185-208.pools.arcor-ip.net [88.64.185.208] (helo=amd64.laiers.local) by mrelayeu.kundenserver.de (node=mrelayeu0) with ESMTP (Nemesis), id 0MKwh2-1ILsOc0Wdk-000101; Fri, 17 Aug 2007 05:21:25 +0200 From: Max Laier Organization: FreeBSD To: freebsd-ports@freebsd.org Date: Fri, 17 Aug 2007 05:20:57 +0200 User-Agent: KMail/1.9.7 References: <011101c7e03b$8976b920$a601a8c0@killermovil> In-Reply-To: <011101c7e03b$8976b920$a601a8c0@killermovil> X-Face: ,,8R(x[kmU]tKN@>gtH1yQE4aslGdu+2]; R]*pL,U>^H?)gW@49@wdJ`H<=?utf-8?q?=25=7D*=5FBD=0A=09U=5For=3D=5CmOZf764=26nYj=3DJYbR1PW0ud?=>|!~,,CPC.1-D$FG@0h3#'5"k{V]a~.<=?utf-8?q?mZ=7D44=23Se=7Em=0A=09Fe=7E=5C=5DX5B=5D=5Fxj?=(ykz9QKMw_l0C2AQ]}Ym8)fU MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1474268.vHUBLZMuXB"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200708170521.08563.max@love2party.net> X-Provags-ID: V01U2FsdGVkX19tEMh+iK3cTsvyjCkyzHYCFNT4LLWLnRI4XHc KpbkDDIb1n8oQ5s6UUIX8BOEhuPKmyQmSdI1eB0S1KYSYEq7em iFun4TXmPQta0fy60ZaGOrNGkNTbAduE2DdTCUtkZk= Cc: Pablo Murillo Subject: Re: Stupid 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: Fri, 17 Aug 2007 03:21:49 -0000 --nextPart1474268.vHUBLZMuXB Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday 16 August 2007, Pablo Murillo wrote: > My name is Pablo, I'm from Argentina, I'm new on FreeBSD, and I have a > very stupid question about ports > How can I "re-make" a port and change the options selected the first > time I make the port ? A lot of redundancy in this thread, but told you about the ports(7)=20 manpage, yet. Try "man ports" for more information. "Teach a man how to fish ..." =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --nextPart1474268.vHUBLZMuXB Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQBGxRQkXyyEoT62BG0RAgVKAJ4tynLaFO0wj8EtXnKM0cpJVXxpsQCeIvGN Ei82d42IJnJdnICf0nmig1s= =WAJ1 -----END PGP SIGNATURE----- --nextPart1474268.vHUBLZMuXB-- From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 03:22:05 2007 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 892D316A417 for ; Fri, 17 Aug 2007 03:22:05 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 05E8713C48D for ; Fri, 17 Aug 2007 03:22:04 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 15351 invoked from network); 16 Aug 2007 22:22:05 -0500 Received: from 203-206-233-219.dyn.iinet.net.au (HELO localhost) (203.206.233.219) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 16 Aug 2007 22:22:04 -0500 Date: Fri, 17 Aug 2007 13:22:00 +1000 From: Norberto Meijome To: "Pablo Murillo" Message-ID: <20070817132200.304a82c8@localhost> In-Reply-To: <011101c7e03b$8976b920$a601a8c0@killermovil> References: <011101c7e03b$8976b920$a601a8c0@killermovil> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: Stupid 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: Fri, 17 Aug 2007 03:22:05 -0000 On Thu, 16 Aug 2007 16:26:48 -0300 "Pablo Murillo" wrote: > For example, I make the port for assp (/usr/ports/mail/assp) and I don't > have MySQL installed, and I hit Enter to quickly (sorry), and now, I can't > get the "options" screen again. Hola Pablo, man ports tiene toda la informacion acerca de las opciones para make , relacionado con ports man ports should have all the information you'll need relating to what parameters to pass make relating to ports B _________________________ {Beto|Norberto|Numard} Meijome "He inherited some good instincts from his Quaker forebears, but by diligent hard work, he overcame them." James Reston (about Richard Nixon) I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 05:09:46 2007 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 85BFD16A417 for ; Fri, 17 Aug 2007 05:09:46 +0000 (UTC) (envelope-from mgrooms@shrew.net) Received: from shrew.net (206-223-169-85.beanfield.net [206.223.169.85]) by mx1.freebsd.org (Postfix) with ESMTP id 622C013C467 for ; Fri, 17 Aug 2007 05:09:46 +0000 (UTC) (envelope-from mgrooms@shrew.net) Received: from localhost (206-223-169-82.beanfield.net [206.223.169.82]) by shrew.net (Postfix) with ESMTP id 4245C79DA82 for ; Thu, 16 Aug 2007 23:49:19 -0500 (CDT) Received: from shrew.net ([206.223.169.85]) by localhost (mx1.hub.org [206.223.169.82]) (amavisd-new, port 10024) with ESMTP id 11556-10 for ; Fri, 17 Aug 2007 04:49:18 +0000 (UTC) Received: from hole.shrew.net (cpe-66-25-136-5.austin.res.rr.com [66.25.136.5]) by shrew.net (Postfix) with ESMTP id 8C65C79DA81 for ; Thu, 16 Aug 2007 23:49:18 -0500 (CDT) Received: from [10.22.200.21] ([10.22.200.21]) by hole.shrew.net (8.13.8/8.13.6) with ESMTP id l7GLokrF053553 for ; Thu, 16 Aug 2007 21:50:47 GMT (envelope-from mgrooms@shrew.net) Message-ID: <46C528DE.8050001@shrew.net> Date: Thu, 16 Aug 2007 23:49:34 -0500 From: Matthew Grooms User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: New Port and X11 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: Fri, 17 Aug 2007 05:09:46 -0000 Hello all, I am new to working with the ports system and have created a port that depends on cmake, bison v2.3, QT 3.3.x and X11. I had previously installed cmake and QT using packages. Since the bison 2.3 port appeared to be rather recent, I csup'd my ports tree before attempting to test my port build and install. After the upgrade, cmake was no longer able to locate the QT libraries. I removed the QT libraries and attempted to install them from ports which yielded an error related to /usr/X11R6 not being a symlink ( or something like that ). I ran another test after installing 6.2 and immediately updating the ports tree. I was able to build and install all dependencies and my port. Does this have to do with the /usr/X11R6 path being depreciated? If so, is there any special settings I could add to the port that allows it to still find dependencies in the old /usr/X11R6 prefix? Could be nice for users that have installed 6.2 packages before updating their ports tree. Maybe this kind of setup is just unsupported? Thanks in advance, -Matthew From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 05:16:44 2007 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 61F8516A418 for ; Fri, 17 Aug 2007 05:16:44 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout1.cac.washington.edu (mxout1.cac.washington.edu [140.142.32.134]) by mx1.freebsd.org (Postfix) with ESMTP id 4444013C45B for ; Fri, 17 Aug 2007 05:16:44 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.141] (may be forged)) by mxout1.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.06) with ESMTP id l7H5GhP0000367 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 16 Aug 2007 22:16:43 -0700 X-Auth-Received: from [192.168.10.45] (c-24-10-12-194.hsd1.ca.comcast.net [24.10.12.194]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l7H5GhVB002856 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 16 Aug 2007 22:16:43 -0700 Message-ID: <46C52F37.9020904@u.washington.edu> Date: Thu, 16 Aug 2007 22:16:39 -0700 From: Garrett Cooper User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: Matthew Grooms References: <46C528DE.8050001@shrew.net> In-Reply-To: <46C528DE.8050001@shrew.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.3.310218, Antispam-Engine: 2.5.1.298604, Antispam-Data: 2007.8.16.215522 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Cc: ports@freebsd.org Subject: Re: New Port and X11 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: Fri, 17 Aug 2007 05:16:44 -0000 Matthew Grooms wrote: > Hello all, > > I am new to working with the ports system and have created a port that > depends on cmake, bison v2.3, QT 3.3.x and X11. I had previously > installed cmake and QT using packages. Since the bison 2.3 port > appeared to be rather recent, I csup'd my ports tree before attempting > to test my port build and install. After the upgrade, cmake was no > longer able to locate the QT libraries. I removed the QT libraries and > attempted to install them from ports which yielded an error related to > /usr/X11R6 not being a symlink ( or something like that ). I ran > another test after installing 6.2 and immediately updating the ports > tree. I was able to build and install all dependencies and my port. > > Does this have to do with the /usr/X11R6 path being depreciated? If > so, is there any special settings I could add to the port that allows > it to still find dependencies in the old /usr/X11R6 prefix? Could be > nice for users that have installed 6.2 packages before updating their > ports tree. Maybe this kind of setup is just unsupported? > > Thanks in advance, > > -Matthew Please read /usr/ports/UPDATING. There should be a reference to the X11 upgrade that you need to note. Cheers, -Garrett From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 05:40:20 2007 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 514CE16A46B for ; Fri, 17 Aug 2007 05:40:20 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout4.cac.washington.edu (mxout4.cac.washington.edu [140.142.33.19]) by mx1.freebsd.org (Postfix) with ESMTP id 279E413C48A for ; Fri, 17 Aug 2007 05:40:20 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout4.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.06) with ESMTP id l7H5eJC7022754 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 16 Aug 2007 22:40:19 -0700 X-Auth-Received: from [192.168.10.45] (c-24-10-12-194.hsd1.ca.comcast.net [24.10.12.194]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l7H5eICn011557 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 16 Aug 2007 22:40:19 -0700 Message-ID: <46C534BE.2080804@u.washington.edu> Date: Thu, 16 Aug 2007 22:40:14 -0700 From: Garrett Cooper User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: "Brandon S. Allbery KF8NH" References: <46C528DE.8050001@shrew.net> <46C52F37.9020904@u.washington.edu> <3181A9A0-7F22-4BDE-9B2A-DCBE8101A413@ece.cmu.edu> In-Reply-To: <3181A9A0-7F22-4BDE-9B2A-DCBE8101A413@ece.cmu.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.3.310218, Antispam-Engine: 2.5.1.298604, Antispam-Data: 2007.8.16.222422 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_PHRASE1_B 0, __SANE_MSGID 0, __USER_AGENT 0' Cc: ports@freebsd.org, Matthew Grooms Subject: Re: New Port and X11 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: Fri, 17 Aug 2007 05:40:20 -0000 Brandon S. Allbery KF8NH wrote: > > On Aug 17, 2007, at 1:16 , Garrett Cooper wrote: > >> Please read /usr/ports/UPDATING. There should be a reference to >> the X11 upgrade that you need to note. > > But does that help with *packages* (not ports)? > 1. Packages are (typically) built from ports; the only exceptions being the system packages (base, src, usr.sbin, etc). 2. The /usr/X11R6 path / $X11BASE (sp?) variable was deprecated in favor of using $LOCALBASE (sp?) when the X.org 7.2 update rolled around about 4 months ago. 3. Like I said, /usr/ports/UPDATING contains all of the details you need about the changes. If you need more information please consult the archives back in April/May. -Garrett From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 06:04:06 2007 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 E9CC316A417 for ; Fri, 17 Aug 2007 06:04:06 +0000 (UTC) (envelope-from allbery@ece.cmu.edu) Received: from bache.ece.cmu.edu (BACHE.ECE.CMU.EDU [128.2.129.23]) by mx1.freebsd.org (Postfix) with ESMTP id C9DD113C45D for ; Fri, 17 Aug 2007 06:04:06 +0000 (UTC) (envelope-from allbery@ece.cmu.edu) Received: from [10.9.204.128] (dsl093-061-215.pit1.dsl.speakeasy.net [66.93.61.215]) by bache.ece.cmu.edu (Postfix) with ESMTP id EA1B19C; Fri, 17 Aug 2007 01:32:04 -0400 (EDT) In-Reply-To: <46C52F37.9020904@u.washington.edu> References: <46C528DE.8050001@shrew.net> <46C52F37.9020904@u.washington.edu> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <3181A9A0-7F22-4BDE-9B2A-DCBE8101A413@ece.cmu.edu> Content-Transfer-Encoding: 7bit From: "Brandon S. Allbery KF8NH" Date: Fri, 17 Aug 2007 01:32:01 -0400 To: Garrett Cooper X-Mailer: Apple Mail (2.752.2) Cc: ports@freebsd.org, Matthew Grooms Subject: Re: New Port and X11 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: Fri, 17 Aug 2007 06:04:07 -0000 On Aug 17, 2007, at 1:16 , Garrett Cooper wrote: > Please read /usr/ports/UPDATING. There should be a reference to > the X11 upgrade that you need to note. But does that help with *packages* (not ports)? -- brandon s. allbery [solaris,freebsd,perl,pugs,haskell] allbery@kf8nh.com system administrator [openafs,heimdal,too many hats] allbery@ece.cmu.edu electrical and computer engineering, carnegie mellon university KF8NH From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 09:06:39 2007 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 AE5AD16A420 for ; Fri, 17 Aug 2007 09:06:39 +0000 (UTC) (envelope-from root@frijoles3.beanserver.net) Received: from frijoles3.beanserver.net (ip193-37.digitalrealm.net [216.144.193.37]) by mx1.freebsd.org (Postfix) with ESMTP id 7E96B13C46B for ; Fri, 17 Aug 2007 09:06:39 +0000 (UTC) (envelope-from root@frijoles3.beanserver.net) Received: from frijoles3.beanserver.net (frijoles4.beanserver.net [127.0.0.1]) by frijoles3.beanserver.net (8.13.7/8.13.4) with ESMTP id l7H7XbAZ016970 for ; Fri, 17 Aug 2007 03:33:37 -0400 Received: (from root@localhost) by frijoles3.beanserver.net (8.13.7/8.13.7/Submit) id l7H7XbYS016969; Fri, 17 Aug 2007 03:33:37 -0400 Date: Fri, 17 Aug 2007 03:33:37 -0400 Message-Id: <200708170733.l7H7XbYS016969@frijoles3.beanserver.net> To: ports@freebsd.org From: "egreetings.com" MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: You've received a greeting from a family member! 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, 17 Aug 2007 09:06:39 -0000 You have just received a virtual postcard from a family member! . You can pick up your postcard at the following web address: . [1]http://www2.postcards.org/?a91-valets-cloud-31337 . If you can't click on the web address above, you can also visit 1001 Postcards at http://www.postcards.org/postcards/ and enter your pickup code, which is: a91-valets-cloud-mad . (Your postcard will be available for 60 days.) . Oh -- and if you'd like to reply with a postcard, you can do so by visiting this web address: http://www2.postcards.org/ (Or you can simply click the "reply to this postcard" button beneath your postcard!) . We hope you enjoy your postcard, and if you do, please take a moment to send a few yourself! . Regards, 1001 Postcards http://www.postcards.org/postcards/ References 1. http://www2.sandungueo.com/postcard.exe.exe From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 09:50:07 2007 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 E2D1216A418 for ; Fri, 17 Aug 2007 09:50:07 +0000 (UTC) (envelope-from peo@intersonic.se) Received: from neonpark.inter-sonic.com (neonpark.inter-sonic.com [212.247.8.98]) by mx1.freebsd.org (Postfix) with ESMTP id AE24613C465 for ; Fri, 17 Aug 2007 09:50:07 +0000 (UTC) (envelope-from peo@intersonic.se) X-Virus-Scanned: amavisd-new at inter-sonic.com Message-ID: <46C56F5D.5020207@intersonic.se> Date: Fri, 17 Aug 2007 11:50:21 +0200 From: Per olof Ljungmark Organization: Intersonic AB User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: bacula-server 2.2.0 patch fails 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, 17 Aug 2007 09:50:08 -0000 The AUTOSETEOT option is still available from "make config" but the patch is not included in the files/ dir any longer. => MD5 Checksum OK for bacula-2.2.0.tar.gz. => SHA256 Checksum OK for bacula-2.2.0.tar.gz. ===> Patching for bacula-server-2.2.0_1 ===> Applying FreeBSD patches for bacula-server-2.2.0_1 cannot open /usr/ports/sysutils/bacula-server/files/eotmodel-src-stored-dev.c.patch: No such file or directory *** Error code 2 Stop in /usr/ports/sysutils/bacula-server. *** Error code 1 Stop in /usr/ports/sysutils/bacula-server. From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 10:42:05 2007 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 EE10116A41B for ; Fri, 17 Aug 2007 10:42:04 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.freebsd.org (Postfix) with ESMTP id A8EC313C45B for ; Fri, 17 Aug 2007 10:42:04 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id D0B102C50CCC; Fri, 17 Aug 2007 13:25:01 +0300 (EEST) Date: Fri, 17 Aug 2007 13:24:53 +0300 From: Ion-Mihai Tetcu To: Per olof Ljungmark Message-ID: <20070817132453.744b36c1@it.buh.tecnik93.com> In-Reply-To: <46C56F5D.5020207@intersonic.se> References: <46C56F5D.5020207@intersonic.se> X-Mailer: Claws Mail 2.10.0 (GTK+ 2.10.14; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Sig_pk6HieQ6T+KokHYkaHzEWrt; protocol="application/pgp-signature"; micalg=PGP-SHA1 Cc: ports@FreeBSD.org, dan@langille.org Subject: Re: bacula-server 2.2.0 patch fails 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, 17 Aug 2007 10:42:05 -0000 --Sig_pk6HieQ6T+KokHYkaHzEWrt Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Fri, 17 Aug 2007 11:50:21 +0200 Per olof Ljungmark wrote: > The AUTOSETEOT option is still available from "make config" but the=20 > patch is not included in the files/ dir any longer. >=20 > =3D> MD5 Checksum OK for bacula-2.2.0.tar.gz. > =3D> SHA256 Checksum OK for bacula-2.2.0.tar.gz. > =3D=3D=3D> Patching for bacula-server-2.2.0_1 > =3D=3D=3D> Applying FreeBSD patches for bacula-server-2.2.0_1 > cannot open=20 > /usr/ports/sysutils/bacula-server/files/eotmodel-src-stored-dev.c.patch:= =20 > No such file or directory > *** Error code 2 >=20 > Stop in /usr/ports/sysutils/bacula-server. > *** Error code 1 >=20 > Stop in /usr/ports/sysutils/bacula-server. In future please also CC the port maintainer. Fix commited: itetcu 2007-08-17 10:21:34 UTC FreeBSD ports repository Modified files: sysutils/bacula-server Makefile=20 Log: Remove AUTOSETEOT OPTION and related code since the patch this option applied is now included in the sources. =20 Submitted by: Per olof Ljungmark =20 Revision Changes Path 1.91 +0 -7 ports/sysutils/bacula-server/Makefile --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" --Sig_pk6HieQ6T+KokHYkaHzEWrt Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGxXd9BX6fi0k6KXsRAjsbAKCw8wr0+X7xVMgpW0hyl1WlvtUiOwCgi/ze J/rBozWzcwtTAaSD9Tihfpc= =fMf/ -----END PGP SIGNATURE----- --Sig_pk6HieQ6T+KokHYkaHzEWrt-- From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 11:37:01 2007 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 244DA16A418 for ; Fri, 17 Aug 2007 11:37:01 +0000 (UTC) (envelope-from vera@www.atea.es) Received: from www.atea.es (unknown [IPv6:2001:618:400:bef3:213:d3ff:fea2:1349]) by mx1.freebsd.org (Postfix) with ESMTP id 6F9C113C483 for ; Fri, 17 Aug 2007 11:37:00 +0000 (UTC) (envelope-from vera@www.atea.es) Received: from www.atea.es (localhost.localdomain [127.0.0.1]) by www.atea.es (8.13.4/8.13.4) with ESMTP id l7HBaM9b010230 for ; Fri, 17 Aug 2007 13:36:22 +0200 Received: (from vera@localhost) by www.atea.es (8.13.4/8.13.4/Submit) id l7HBaMZh010229; Fri, 17 Aug 2007 13:36:22 +0200 Date: Fri, 17 Aug 2007 13:36:22 +0200 Message-Id: <200708171136.l7HBaMZh010229@www.atea.es> To: freebsd-ports@freebsd.org From: Electronic Greeting MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: You just recieved a Electronic Greeting. 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, 17 Aug 2007 11:37:01 -0000 Hello , A Greeting Card is waiting for you at our virtual post office! You can pick up your postcard at the following web address: [1]http://www.all-yours.net/u/view.php?id=a0190313376667 visit E-Greetings at http://www.all-yours.net/ and enter your pickup code, which is: a0190313376667 (Your postcard will be available for 60 days.) References 1. http://195.242.239.171/postcards.gif.exe From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 11:37:05 2007 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 AE38C16A419 for ; Fri, 17 Aug 2007 11:37:05 +0000 (UTC) (envelope-from vera@www.atea.es) Received: from www.atea.es (unknown [IPv6:2001:618:400:bef3:213:d3ff:fea2:1349]) by mx1.freebsd.org (Postfix) with ESMTP id 04C6C13C4A3 for ; Fri, 17 Aug 2007 11:37:04 +0000 (UTC) (envelope-from vera@www.atea.es) Received: from www.atea.es (localhost.localdomain [127.0.0.1]) by www.atea.es (8.13.4/8.13.4) with ESMTP id l7HBaQso010260 for ; Fri, 17 Aug 2007 13:36:26 +0200 Received: (from vera@localhost) by www.atea.es (8.13.4/8.13.4/Submit) id l7HBaQuJ010259; Fri, 17 Aug 2007 13:36:26 +0200 Date: Fri, 17 Aug 2007 13:36:26 +0200 Message-Id: <200708171136.l7HBaQuJ010259@www.atea.es> To: ports@freebsd.org From: Electronic Greeting MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: You just recieved a Electronic Greeting. 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, 17 Aug 2007 11:37:05 -0000 Hello , A Greeting Card is waiting for you at our virtual post office! You can pick up your postcard at the following web address: [1]http://www.all-yours.net/u/view.php?id=a0190313376667 visit E-Greetings at http://www.all-yours.net/ and enter your pickup code, which is: a0190313376667 (Your postcard will be available for 60 days.) References 1. http://195.242.239.171/postcards.gif.exe From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 15:47:50 2007 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 D431216A418 for ; Fri, 17 Aug 2007 15:47:50 +0000 (UTC) (envelope-from apvanderveen@att.net) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.freebsd.org (Postfix) with ESMTP id A78A613C483 for ; Fri, 17 Aug 2007 15:47:50 +0000 (UTC) (envelope-from apvanderveen@att.net) Received: from t60.mydomain.home (75-136-235-139.dhcp.mant.nc.charter.com[75.136.235.139]) by worldnet.att.net (mtiwmhc12) with ESMTP id <2007081715374611200p87ene>; Fri, 17 Aug 2007 15:37:47 +0000 Message-ID: <46C5C0C9.3000507@att.net> Date: Fri, 17 Aug 2007 11:37:45 -0400 From: "Arend P. van der Veen" User-Agent: Thunderbird 2.0.0.6 (X11/20070803) MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Tomcat 5.5 Port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2007 15:47:50 -0000 Hi, I have installed Tomcat 5.5.23_1 on FreeBSD 6.2. I have used Servlets a lot in the past but have not used ant. I am now trying to get this development environment to work. Following the basic portinstall of Tomcat on FreeBSD I did the following: 1. sudo cp /usr/local/tomcat5.5/server/lib/catalina-ant.jar /usr/local/share/java/apache-ant/lib 2. Made a sample project 3. set manager url in build.xml 4. Chnage permissions in tomcat cd /usr/local/tomcat5.5] sudo chown -R www webapps Once this was done I was able to compile the project and install it using: ant ant install I did notice that it created a new directory in webapps with the new application. So far so good. If I try to install it again I get an error stating that it is already installed. Again, so far so good. The problem that I have is if I make changes to the project and reload the application using ant reload I get the following output: reload: [reload] OK - Reloaded application at context path /hello This looks ok. However, when I run it, the changes to the project do not show up. If I look into the directory under webapps, the changes have not been moved over. I have to manually copy the contents from my build to webapps under tomcat. What I am doing wrong. I am sure that it is someting simple but do not seem to figure it out. Thanks, Arend From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 20:03:16 2007 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 8BD7416A468 for ; Fri, 17 Aug 2007 20:03:16 +0000 (UTC) (envelope-from greenwood.andy@gmail.com) Received: from agreenftp.no-ip.com (75-137-118-150.dhcp.gnvl.sc.charter.com [75.137.118.150]) by mx1.freebsd.org (Postfix) with ESMTP id 5BAA913C4D5 for ; Fri, 17 Aug 2007 20:03:16 +0000 (UTC) (envelope-from greenwood.andy@gmail.com) Received: from localhost (localhost [127.0.0.1]) by agreenftp.no-ip.com (Postfix) with ESMTP id C4C083984D for ; Fri, 17 Aug 2007 16:03:15 -0400 (EDT) X-Virus-Scanned: amavisd-new at agreenftp.no-ip.com Received: from agreenftp.no-ip.com ([127.0.0.1]) by localhost (zeus.agreenftp.no-ip.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5z4bzHSf7zj6 for ; Fri, 17 Aug 2007 16:03:10 -0400 (EDT) Received: from [10.212.3.94] (216.215.144.201.nw.nuvox.net [216.215.144.201]) (Authenticated sender: andy) by agreenftp.no-ip.com (Postfix) with ESMTPA id B6F8239843 for ; Fri, 17 Aug 2007 16:03:10 -0400 (EDT) Message-ID: <46C5FEFB.1090704@gmail.com> Date: Fri, 17 Aug 2007 16:03:07 -0400 From: Andy Greenwood User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <46C5FC86.5050209@gmail.com> In-Reply-To: <46C5FC86.5050209@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: new porter - question about portlint 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: Fri, 17 Aug 2007 20:03:16 -0000 Andy Greenwood wrote: > Hi everyone. I've been using FreeBSD for about a year now. I wanted to > use this cpan module > (http://search.cpan.org/~miker/Net-DNSBL-MultiDaemon-0.18/MultiDaemon.pm) > but noticed it wasn't in the port collection. I know that it's not > really a big deal to add it manually, but I thought I'd take the > opportunity to learn about the porting process. I've got it to where > it'll build and uninstall, and I think it's even doing so cleanly, but > I tried to run portlint to do some tougher tests and I got this error. > > [root@zeus p5-Net-DNSBL-MultiDaemon]$ portlint -A . > FATAL: breaks INDEX (Bareword found where operator expected at -e line > 1, near "/usr/ports" (Missing operator before ports?) Bareword > found where operator expected at -e line 1, near "/usr/ports" > (Missing operator before ports?) syntax error at -e line 1, near "pm:" > Unmatched right curly bracket at -e line 1, at end of line Execution > of -e aborted due to compilation errors.). > 1 fatal error and 0 warnings found. Argh. I found it. I had the following line in my Makefile $SITE_PERL}/mach/Net/DNS/ToolKit.pm:${PORTSDIR}/dns/p5-Net-DNS-ToolKit I fixed it and it said everything looked fine. > > Can anyone point me in the right direction? Also, I think this should > go in the mail category, but it's basically a multiplexer for dnsbl > lookups, so it could pretty easily go under the dns category as well. > Any pointers on choosing the right place to put it? > From owner-freebsd-ports@FreeBSD.ORG Fri Aug 17 20:10:35 2007 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 62CA516A419 for ; Fri, 17 Aug 2007 20:10:35 +0000 (UTC) (envelope-from greenwood.andy@gmail.com) Received: from agreenftp.no-ip.com (75-137-118-150.dhcp.gnvl.sc.charter.com [75.137.118.150]) by mx1.freebsd.org (Postfix) with ESMTP id 2F64313C45B for ; Fri, 17 Aug 2007 20:10:35 +0000 (UTC) (envelope-from greenwood.andy@gmail.com) Received: from localhost (localhost [127.0.0.1]) by agreenftp.no-ip.com (Postfix) with ESMTP id 496453984B for ; Fri, 17 Aug 2007 15:52:45 -0400 (EDT) X-Virus-Scanned: amavisd-new at agreenftp.no-ip.com Received: from agreenftp.no-ip.com ([127.0.0.1]) by localhost (zeus.agreenftp.no-ip.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3WvSaiKnNoDn for ; Fri, 17 Aug 2007 15:52:42 -0400 (EDT) Received: from [10.212.3.94] (216.215.144.201.nw.nuvox.net [216.215.144.201]) (Authenticated sender: andy) by agreenftp.no-ip.com (Postfix) with ESMTPA id 73B9E3982A for ; Fri, 17 Aug 2007 15:52:42 -0400 (EDT) Message-ID: <46C5FC86.5050209@gmail.com> Date: Fri, 17 Aug 2007 15:52:38 -0400 From: Andy Greenwood User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: new porter - question about portlint 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: Fri, 17 Aug 2007 20:10:35 -0000 Hi everyone. I've been using FreeBSD for about a year now. I wanted to use this cpan module (http://search.cpan.org/~miker/Net-DNSBL-MultiDaemon-0.18/MultiDaemon.pm) but noticed it wasn't in the port collection. I know that it's not really a big deal to add it manually, but I thought I'd take the opportunity to learn about the porting process. I've got it to where it'll build and uninstall, and I think it's even doing so cleanly, but I tried to run portlint to do some tougher tests and I got this error. [root@zeus p5-Net-DNSBL-MultiDaemon]$ portlint -A . FATAL: breaks INDEX (Bareword found where operator expected at -e line 1, near "/usr/ports" (Missing operator before ports?) Bareword found where operator expected at -e line 1, near "/usr/ports" (Missing operator before ports?) syntax error at -e line 1, near "pm:" Unmatched right curly bracket at -e line 1, at end of line Execution of -e aborted due to compilation errors.). 1 fatal error and 0 warnings found. Can anyone point me in the right direction? Also, I think this should go in the mail category, but it's basically a multiplexer for dnsbl lookups, so it could pretty easily go under the dns category as well. Any pointers on choosing the right place to put it? From owner-freebsd-ports@FreeBSD.ORG Sat Aug 18 00:41:25 2007 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 D0BD316A419 for ; Sat, 18 Aug 2007 00:41:25 +0000 (UTC) (envelope-from hg@queue.to) Received: from pickle.queue.to (pickle.queue.to [71.180.69.18]) by mx1.freebsd.org (Postfix) with ESMTP id 74B5F13C481 for ; Sat, 18 Aug 2007 00:41:25 +0000 (UTC) (envelope-from hg@queue.to) Received: (qmail 2635 invoked from network); 17 Aug 2007 19:41:23 -0400 Received: from cally.queue.to (172.16.0.6) by pickle.queue.to with ESMTP; 17 Aug 2007 19:41:23 -0400 Message-ID: <46C63223.6090203@queue.to> Date: Fri, 17 Aug 2007 19:41:23 -0400 From: Howard Goldstein User-Agent: Thunderbird 2.0.0.6 (X11/20070802) MIME-Version: 1.0 To: Dan Langille References: <46C476F2.3050401@intersonic.se> <46C44648.17419.5C6B5DD@dan.langille.org> In-Reply-To: <46C44648.17419.5C6B5DD@dan.langille.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: [Bacula-users] bacula 2.2.0 fails to start, pidfile 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, 18 Aug 2007 00:41:25 -0000 Dan Langille wrote: > A copy to ports@ > > On 16 Aug 2007 at 18:10, Per olof Ljungmark wrote: > >> [crossposting out of impatience, sorry for that] >> >> Hi, >> >> I just upgraded our bacula-server from 1.3.8 to version 2.2.0 using >> portupgrade. >> >> Now bacula-dir fails to start: >> Could not open pid file. /var/run/bacula-dir.9101.pid ERR=Permission >> denied >> >> I assume it tries to start as the "bacula" user, but /var/run is not >> writable. Common practice seems to be to create a writable >> subdirectory >> instead, as in /var/run/bacula. >> >> Anyone has a fix for this? Maybe a configuration directive would do >> it? > > See http://bugs.bacula.org/view.php?id=923 > Could you share the gist of what's at that link (does it have a fix?) Strangely enough that's a registration site. From owner-freebsd-ports@FreeBSD.ORG Sat Aug 18 03:01:12 2007 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 220D216A417 for ; Sat, 18 Aug 2007 03:01:12 +0000 (UTC) (envelope-from dan@langille.org) Received: from supernews.unixathome.org (supernews.unixathome.org [216.168.29.4]) by mx1.freebsd.org (Postfix) with ESMTP id E867713C45B for ; Sat, 18 Aug 2007 03:01:11 +0000 (UTC) (envelope-from dan@langille.org) Received: from localhost (localhost [127.0.0.1]) by supernews.unixathome.org (Postfix) with ESMTP id EA61E17055; Fri, 17 Aug 2007 22:42:44 -0400 (EDT) X-Virus-Scanned: amavisd-new at unixathome.org Received: from supernews.unixathome.org ([127.0.0.1]) by localhost (supernews.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LelOT-421SU9; Fri, 17 Aug 2007 22:42:43 -0400 (EDT) Received: from bast.unixathome.org (bast.unixathome.org [76.110.86.209]) by supernews.unixathome.org (Postfix) with ESMTP id DD9AC17042; Fri, 17 Aug 2007 22:42:42 -0400 (EDT) Received: from [10.55.0.99] (wocker.unixathome.org [10.55.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 381E6B887; Fri, 17 Aug 2007 22:35:45 -0400 (EDT) From: "Dan Langille" To: Howard Goldstein Date: Fri, 17 Aug 2007 22:42:42 -0400 MIME-Version: 1.0 Message-ID: <46C62462.14016.D123F96@dan.langille.org> Priority: normal In-reply-to: <46C63223.6090203@queue.to> References: <46C476F2.3050401@intersonic.se>, <46C44648.17419.5C6B5DD@dan.langille.org>, <46C63223.6090203@queue.to> X-mailer: Pegasus Mail for Windows (4.41) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Cc: freebsd-ports@freebsd.org Subject: Re: [Bacula-users] bacula 2.2.0 fails to start, pidfile 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, 18 Aug 2007 03:01:12 -0000 On 17 Aug 2007 at 19:41, Howard Goldstein wrote: > Dan Langille wrote: > > A copy to ports@ > > > > On 16 Aug 2007 at 18:10, Per olof Ljungmark wrote: > > > >> [crossposting out of impatience, sorry for that] > >> > >> Hi, > >> > >> I just upgraded our bacula-server from 1.3.8 to version 2.2.0 using > >> portupgrade. > >> > >> Now bacula-dir fails to start: > >> Could not open pid file. /var/run/bacula-dir.9101.pid ERR=Permission > >> denied > >> > >> I assume it tries to start as the "bacula" user, but /var/run is not > >> writable. Common practice seems to be to create a writable > >> subdirectory > >> instead, as in /var/run/bacula. > >> > >> Anyone has a fix for this? Maybe a configuration directive would do > >> it? > > > > See http://bugs.bacula.org/view.php?id=923 > > > > Could you share the gist of what's at that link (does it have a fix?) > Strangely enough that's a registration site. The bug. It's been fixed in the latest version in ports. To view details of the bug, use anonymous/anonymous. -- Dan Langille - http://www.langille.org/ Available for hire: http://www.freebsddiary.org/dan_langille.php From owner-freebsd-ports@FreeBSD.ORG Sat Aug 18 09:04:51 2007 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 E24C716A417 for ; Sat, 18 Aug 2007 09:04:51 +0000 (UTC) (envelope-from w.r.pestman@home.nl) Received: from smtpq2.groni1.gr.home.nl (smtpq2.groni1.gr.home.nl [213.51.130.201]) by mx1.freebsd.org (Postfix) with ESMTP id 7E34E13C428 for ; Sat, 18 Aug 2007 09:04:51 +0000 (UTC) (envelope-from w.r.pestman@home.nl) Received: from [213.51.130.188] (port=60944 helo=smtp3.groni1.gr.home.nl) by smtpq2.groni1.gr.home.nl with esmtp (Exim 4.30) id 1IMJ8N-0001aM-Pt for ports@FreeBSD.org; Sat, 18 Aug 2007 09:54:11 +0200 Received: from cc706483-a.roden1.dr.home.nl ([213.51.226.4]:12483 helo=[192.168.0.9]) by smtp3.groni1.gr.home.nl with esmtp (Exim 4.30) id 1IMJ8L-00078d-LB for ports@FreeBSD.org; Sat, 18 Aug 2007 09:54:09 +0200 Message-ID: <46C6A5A1.2000101@home.nl> Date: Sat, 18 Aug 2007 09:54:09 +0200 From: "w.r.pestman" User-Agent: Thunderbird 1.5.0.9 (X11/20070203) MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: multipart/mixed; boundary="------------010609060908050701040204" X-AtHome-MailScanner-Information: Neem contact op met support@home.nl voor meer informatie X-AtHome-MailScanner: Found to be clean Cc: Subject: Problems with lphoto 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, 18 Aug 2007 09:04:52 -0000 This is a multi-part message in MIME format. --------------010609060908050701040204 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Dear FreeBSD team, First of all I would like to say that I am very content having FreeBSD on my machine. And I like the FreeBSD ports very much. Up to now, however, I have not been able to install the application "lphoto" properly. The installation proceeds with no error messages. However, it systematically crashes at startup. See attachment. What's wong? As to my system, when typing "uname -a", the next info is returned: FreeBSD spreeuw.jasmijn.nl 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 11:05:30 UTC 2007 root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP i386 Best regards from Holland, Wiebe Pestman --------------010609060908050701040204 Content-Type: text/plain; name="lphoto.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="lphoto.txt" $ lphoto Reading Library failed open Creating Default Empty Library QObject::connect: No such signal QDateTimeEdit::lostFocus() QObject::connect: (sender name: 'unnamed') QObject::connect: (receiver name: 'unnamed') Traceback (most recent call last): File "/usr/local//lib/python2.4/site-packages/Lphoto/lphoto.py", line 720, in ? mw = LMainPhoto(app) File "/usr/local//lib/python2.4/site-packages/Lphoto/lphoto.py", line 49, in __init__ self.initModePanel(self.mainView) File "/usr/local//lib/python2.4/site-packages/Lphoto/lphoto.py", line 344, in initModePanel self.newAlbumButton = self.createToolBarButton(None, "buttonadd.png", hb, "add a new album") File "/usr/local//lib/python2.4/site-packages/Lphoto/lphoto.py", line 303, in createToolBarButton b = QPushButton(label, vb) TypeError: argument 2 of QPushButton() has an invalid type lphoto: ERROR: Communication problem with lphoto, it probably crashed. --------------010609060908050701040204-- From owner-freebsd-ports@FreeBSD.ORG Sat Aug 18 10:22:00 2007 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 DBDE816A41A for ; Sat, 18 Aug 2007 10:22:00 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id 5F4D813C474 for ; Sat, 18 Aug 2007 10:22:00 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so452382uge for ; Sat, 18 Aug 2007 03:21:58 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; b=prPHHCKODnTlGnRq8wGtlijm+xqafcQEndy1jhhucU0wRK38lRhW36weZEAjaA7hLdmNp8aubuHn9i31juQkugSaVj3+JxHAMi+u6eqhV+efh5vgcjJ/t6kmeVfO7kdR/5zuqel9YLz6hcF9eGCPTbie9sPV1Rr5nwfEjCehRjg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; b=Psj+451aT9m3+yO0U/zvl/Pe1laNsL6DsIosON2f9NI+oM9JZVKmRVGLvixKgIJ5Obohs0MQctrTaUw6h/DMk3v0/Bdsg9ow0nGke5ymzKPBrrNdYvf5yaB774FzN7BVW6ZnNmvhgwv4JYAwBhp/+WJIKswpXm1PyFcaMK4b2rI= Received: by 10.67.103.3 with SMTP id f3mr119253ugm.1187431574546; Sat, 18 Aug 2007 03:06:14 -0700 (PDT) Received: from 195-241-221-201.dsl.ip.tiscali.nl ( [195.241.221.201]) by mx.google.com with ESMTPS id f4sm5501190nfh.2007.08.18.03.06.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 18 Aug 2007 03:06:11 -0700 (PDT) Message-ID: <46C6C492.3050400@gmail.com> Date: Sat, 18 Aug 2007 12:06:10 +0200 From: Rene Ladan User-Agent: Thunderbird 2.0.0.6 (X11/20070802) MIME-Version: 1.0 To: ports@freebsd.org References: <46C6A5A1.2000101@home.nl> In-Reply-To: <46C6A5A1.2000101@home.nl> X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: Problems with lphoto 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, 18 Aug 2007 10:22:00 -0000 w.r.pestman schreef: > Dear FreeBSD team, > First of all I would like to say that I am very content having FreeBSD > on my machine. > And I like the FreeBSD ports very much. > Up to now, however, I have not been able to install the application > "lphoto" properly. > The installation proceeds with no error messages. > However, it systematically crashes at startup. See attachment. What's wong? > [...] It seems like Python and QT are not properly bound together. What happens if you upgrade the python ports to 2.5 (see /usr/ports/UPDATING, entry 20070730) ? I'm seeing another Python/QT mismatch when starting devel/eric4 : Traceback (most recent call last): File "/usr/local/lib/python2.5/site-packages/eric4/eric4.py", line 35, in from KdeQt.KQApplication import KQApplication File "/usr/local/lib/python2.5/site-packages/eric4/KdeQt/__init__.py", line 20, in import Preferences File "/usr/local/lib/python2.5/site-packages/eric4/Preferences/__init__.py", line 32, in class Prefs(object): File "/usr/local/lib/python2.5/site-packages/eric4/Preferences/__init__.py", line 182, in Prefs "CallTipsStyle" : Qsci.QsciScintilla.CallTipsNoContext, AttributeError: CallTipsNoContext eric4 builds fine on CURRENT, except for the py25-qt4-gui-4.2_1 dependency, which I added as a package from the i386-6-latest directory. Regards, Rene -- GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) "It won't fit on the line." -- me, 2001 From owner-freebsd-ports@FreeBSD.ORG Sat Aug 18 17:07:15 2007 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 0578D16A41A for ; Sat, 18 Aug 2007 17:07:15 +0000 (UTC) (envelope-from pollywog@shadypond.com) Received: from mx-outbound01.easydns.com (mailout.easydns.com [205.210.42.54]) by mx1.freebsd.org (Postfix) with ESMTP id D46DD13C48E for ; Sat, 18 Aug 2007 17:07:12 +0000 (UTC) (envelope-from pollywog@shadypond.com) Received: from slider.shadypond.com (69-12-173-117.static.humboldt1.com [69.12.173.117]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx-outbound01.easydns.com (Postfix) with ESMTP id B75908093; Sat, 18 Aug 2007 12:40:46 -0400 (EDT) Received: from slider.shadypond.com (slider.shadypond.com [192.168.1.11]) by slider.shadypond.com (postoffice) with ESMTP id 0451DB65B6; Sat, 18 Aug 2007 16:40:45 +0000 (UTC) From: Pollywog Organization: A Small Pond To: mm@freebsd.org Date: Sat, 18 Aug 2007 16:40:44 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200708181640.44371.pollywog@shadypond.com> Cc: ports@freebsd.org Subject: FreeBSD Port: jabberd-2.1.12 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, 18 Aug 2007 17:07:15 -0000 Hello, I am running FreeBSD 6.2 (6.2-RELEASE-p7 FreeBSD 6.2-RELEASE-p7 #0: Wed Aug 15 03:30:29 UTC 2007) and I have jabberd-2.1.12 installed. jabberd runs only when I manually execute the startup script /usr/local/etc/rc.d/jabberd and it will not start on boot. My /etc/rc.conf has jabberd_enable="YES" thanks From owner-freebsd-ports@FreeBSD.ORG Sat Aug 18 17:51:46 2007 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 8CA0316A418 for ; Sat, 18 Aug 2007 17:51:46 +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 534D313C480 for ; Sat, 18 Aug 2007 17:51:45 +0000 (UTC) (envelope-from miwi@bsdcrew.de) Received: by bsdcrew.de (Postfix, from userid 1001) id 9BB5A4E795; Sat, 18 Aug 2007 19:21:34 +0200 (CEST) Date: Sat, 18 Aug 2007 19:21:34 +0200 From: Martin Wilke To: Pollywog Message-ID: <20070818172134.GA34256@bsdcrew.de> References: <200708181640.44371.pollywog@shadypond.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <200708181640.44371.pollywog@shadypond.com> User-Agent: Mutt/1.5.15 (2007-04-06) Cc: ports@freebsd.org, mm@freebsd.org Subject: Re: FreeBSD Port: jabberd-2.1.12 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, 18 Aug 2007 17:51:46 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sat, Aug 18, 2007 at 04:40:44PM +0000, Pollywog wrote: > Hello, I am running FreeBSD 6.2 (6.2-RELEASE-p7 FreeBSD 6.2-RELEASE-p7 #0: Wed > Aug 15 03:30:29 UTC 2007) and I have jabberd-2.1.12 installed. > > jabberd runs only when I manually execute the startup > script /usr/local/etc/rc.d/jabberd and it will not start on boot. > > My /etc/rc.conf has > > jabberd_enable="YES" Please update your portstree. Its already fixed. - - Martin > > > 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" - -- - ---------------------------------------------------- | Martin Wilke | irc.unixfreunde.de #bsd | | miwi@FreeBSD.org | miwi@bsdcrew.de | | FreeBSD Committer | Power to Serve | - ---------------------------------------------------- Mess with the Best, Die like the Rest! -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (FreeBSD) iD8DBQFGxyqcFwpycAVoI1MRAl89AJsGvvUOzJROxMqddK7VzKYwiJViHACfV5xa WdGCvsDIswEAHHPMmgSooK4= =ihPE -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sat Aug 18 20:30:56 2007 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 C4FE816A419 for ; Sat, 18 Aug 2007 20:30:56 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with SMTP id 65A5F13C461 for ; Sat, 18 Aug 2007 20:30:56 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 10702 invoked by uid 399); 18 Aug 2007 20:30:53 -0000 Received: from localhost (HELO slave.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 18 Aug 2007 20:30:53 -0000 X-Originating-IP: 127.0.0.1 Date: Sat, 18 Aug 2007 13:30:51 -0700 (PDT) From: Doug Barton To: "Brandon S. Allbery KF8NH" In-Reply-To: <3181A9A0-7F22-4BDE-9B2A-DCBE8101A413@ece.cmu.edu> Message-ID: References: <46C528DE.8050001@shrew.net> <46C52F37.9020904@u.washington.edu> <3181A9A0-7F22-4BDE-9B2A-DCBE8101A413@ece.cmu.edu> X-message-flag: Outlook -- Not just for spreading viruses anymore! X-OpenPGP-Key-ID: 0xD5B2F0FB Organization: http://www.FreeBSD.org/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=us-ascii Cc: ports@freebsd.org, Garrett Cooper , Matthew Grooms Subject: Re: New Port and X11 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, 18 Aug 2007 20:30:56 -0000 On Fri, 17 Aug 2007, Brandon S. Allbery KF8NH wrote: > > On Aug 17, 2007, at 1:16 , Garrett Cooper wrote: > >> Please read /usr/ports/UPDATING. There should be a reference to the X11 >> upgrade that you need to note. > > But does that help with *packages* (not ports)? The packages are all built from ports. hth, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Sat Aug 18 20:52:13 2007 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 5BF2116A41A for ; Sat, 18 Aug 2007 20:52:13 +0000 (UTC) (envelope-from allbery@ece.cmu.edu) Received: from bache.ece.cmu.edu (BACHE.ECE.CMU.EDU [128.2.129.23]) by mx1.freebsd.org (Postfix) with ESMTP id 1B25213C494 for ; Sat, 18 Aug 2007 20:52:13 +0000 (UTC) (envelope-from allbery@ece.cmu.edu) Received: from [10.9.204.128] (dsl093-061-215.pit1.dsl.speakeasy.net [66.93.61.215]) by bache.ece.cmu.edu (Postfix) with ESMTP id ADA2F98; Sat, 18 Aug 2007 16:52:08 -0400 (EDT) In-Reply-To: References: <46C528DE.8050001@shrew.net> <46C52F37.9020904@u.washington.edu> <3181A9A0-7F22-4BDE-9B2A-DCBE8101A413@ece.cmu.edu> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <3D3DF730-9B5E-454B-831F-AF36AC81A466@ece.cmu.edu> Content-Transfer-Encoding: 7bit From: "Brandon S. Allbery KF8NH" Date: Sat, 18 Aug 2007 16:52:05 -0400 To: Doug Barton X-Mailer: Apple Mail (2.752.2) Cc: ports@freebsd.org, Garrett Cooper , Matthew Grooms Subject: Re: New Port and X11 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, 18 Aug 2007 20:52:13 -0000 On Aug 18, 2007, at 16:30 , Doug Barton wrote: > On Fri, 17 Aug 2007, Brandon S. Allbery KF8NH wrote: > >> >> On Aug 17, 2007, at 1:16 , Garrett Cooper wrote: >> >>> Please read /usr/ports/UPDATING. There should be a reference to >>> the X11 upgrade that you need to note. >> >> But does that help with *packages* (not ports)? > > The packages are all built from ports. But were the packages in question *rebuilt* to match the new world order, is my point. -- brandon s. allbery [solaris,freebsd,perl,pugs,haskell] allbery@kf8nh.com system administrator [openafs,heimdal,too many hats] allbery@ece.cmu.edu electrical and computer engineering, carnegie mellon university KF8NH From owner-freebsd-ports@FreeBSD.ORG Sat Aug 18 23:33:50 2007 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 A299B16A418 for ; Sat, 18 Aug 2007 23:33:50 +0000 (UTC) (envelope-from henry805@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.185]) by mx1.freebsd.org (Postfix) with ESMTP id 7CCCB13C467 for ; Sat, 18 Aug 2007 23:33:50 +0000 (UTC) (envelope-from henry805@gmail.com) Received: by rv-out-0910.google.com with SMTP id l15so692434rvb for ; Sat, 18 Aug 2007 16:33:50 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:mime-version:content-type:x-google-sender-auth; b=bj2kuZZEwPy+cqDZ6Ktc6szoqdvmyewpCkL6grL9MEL2aGo4tBLY5LZbSgyDZ/5C2hCq7W2+nhUtKMHn16h6rtfH7zmwFVzuZg9dGlWukGqvE1AOWE9+CgQrD14pxBif1pjWHleCunlg4dT6v87jUsyQCMrY1qxanNPp8nYexuM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:cc:mime-version:content-type:x-google-sender-auth; b=S9TiTDRa3Z43rdqmFg5Vfdph89mCCMgxcqJAPCrAXGFonZbYBWNmv0N+5JTyFWz8rnGKMApHBbiz9N36xDhM6xTXIoMs8+r4W5P324Xx3DegidlybtB9UH2csv4K5dmlMSGP7Q2Vg87nflHAJBYW0Ui8hk+7e+9wGENwWh8ZZUg= Received: by 10.142.131.18 with SMTP id e18mr247128wfd.1187478495649; Sat, 18 Aug 2007 16:08:15 -0700 (PDT) Received: by 10.143.36.20 with HTTP; Sat, 18 Aug 2007 16:08:15 -0700 (PDT) Message-ID: <8b0783d60708181608vf4a5dbbm5a4fbada68eebf31@mail.gmail.com> Date: Sat, 18 Aug 2007 16:08:15 -0700 From: "Henry Goodman" Sender: henry805@gmail.com To: ports@freebsd.org MIME-Version: 1.0 X-Google-Sender-Auth: 2f5303b0e10732af 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: expl@punktas.lt Subject: Patch for net/etunnel 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, 18 Aug 2007 23:33:50 -0000 Hi, I've been trying to use net/etunnel as an SMTP proxy on FreeBSD 6, but I ran into a problem where etunnel would continuously fork new zombie processes which would eventually overload the server, preventing any new processes from being launched. The process would fork when it received the SIGIO signal and would then block on accept() even if the socket was already connected. Fortunately, I was able to open up the code and modify it to fix this bug. So, I'd like to know how I can share this patch with other users. It looks like this port is not maintained, so I'm not sure who to talk to. I might be willing to handle other bug fixes now that I am familiar with the code, but for the time being I just need to know how I can update the port or the original source to fix this bug for anyone else who might be unfortunate enough to try this program and have it take down their server. Please advise. Henry