From owner-freebsd-ports Sun Dec 9 1:10:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7373437B416 for ; Sun, 9 Dec 2001 01:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB99A1r20905; Sun, 9 Dec 2001 01:10:01 -0800 (PST) (envelope-from gnats) Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id DF6CB37B416 for ; Sun, 9 Dec 2001 01:03:32 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fB992u294974; Sun, 9 Dec 2001 04:02:56 -0500 (EST) (envelope-from alane) Message-Id: <200112090902.fB992u294974@wwweasel.geeksrus.net> Date: Sun, 9 Dec 2001 04:02:56 -0500 (EST) From: Alan E Reply-To: Alan E To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32639: freeamp: preference AllowMultipleInstances=false does not work Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32639 >Category: ports >Synopsis: freeamp: preference AllowMultipleInstances=false does not work >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 01:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alan E >Release: FreeBSD 4.4-STABLE i386 >Organization: Geeksrus.NET >Environment: System: FreeBSD wwweasel.geeksrus.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:14:12 EST 2001 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 >Description: Freeamp has a preference to cause it to delegate actions to an already running freeamp and exit. This does not, and *cannot*, work on FreeBSD the way it is designed. I'm going to describe a mismatch between freeamp's design and FreeBSD's process implementation. The first instance of freeamp to start up creates a semaphore. It puts its PID in the semaphore using semctl. Other freeamps check the value in the semaphore to see if they are subordinate to the first and should exit if the user pref AllowMultipleInstances is false. Semctl uses a union semun to hold values. This union is just a bit misleading. It looks like this (/usr/include/sys/sem.h): union semun { int val; /* value for SETVAL */ struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */ u_short *array; /* array for GETALL & SETALL */ }; You'd think you could put an int value into a semaphore with the SETVAL operator, wouldn't you? Yes? You'd be wrong. The value a semaphore can hold is really a "u_short", seen in the array for GETALL and SETALL values. (Is this clearly documented anywhere? Well, no, but I don't recall ever seeing it clearly documented anywhere outside of a Stevens book.) FreeBSD uses an int as its PID type. A 32 bit int. It's defined in , which is included by , which is included by , which is included by . Easy to find. C++ does type checking. So, we'll get warned when we try to store a 32-bit PID into a 16-bit semaphore value, right? Umm, no, that brain-damaged union with the "int val" that really only holds a short int kills our hopes of that. So, can this be fixed? No, not short of a design change in freeamp to communicate that PID some other way to other, non-child freeamp processes. >How-To-Repeat: Set the AllowMultipleInstances preference to false. Start up two Freeamp instances. See two Freeamp instances. Note: if the master freeamp has a low process ID (< USHRT_MAX), the feature should work. If this happens, start and kill a few thousand processes and try again. You can also patch freeamp/base/unix/src/bootstrap.cpp to show you what PID it thinks is its master. I can supply that patch on request. To see the semaphore problem in an isolated state, compile and run this program: ---8<-snip---8<-snip---8<-snip---8<-snip---8<-snip---8<-snip---8<--- #include #include #include #include #include #include #include #include const int iSemKey = 0xDEADBEEF; int main(int argc, char **argv) { int rc = 0; int iCmdSem = -1; key_t tSemKey = iSemKey; int iSemVal; union semun unsem; iCmdSem = semget(tSemKey, 1, IPC_CREAT | 0660); unsem.val = 0xDEADBEEF; semctl(iCmdSem, 0, SETVAL, unsem); iSemVal = semctl(iCmdSem, 0, GETVAL, unsem); if (iSemVal == unsem.val) { printf("semctl(SETVAL) and GETVAL agree\n"); } else { rc = 1; printf("OHSHIT! semctl(SETVAL,%08x) but GETVAL=> %08x\n", unsem.val, iSemVal); } return rc; } ---8<-snip---8<-snip---8<-snip---8<-snip---8<-snip---8<-snip---8<--- >Fix: Design a new method for freeamp to use to communicate the PID of the "master" instance to any new new freeamps that are started. For Extra Credit: Try to get the freeamp team, who have never answered email in my experience, to accept a design-changing patch for an OS they don't officially support. For Extra Extra Credit: Try to get the freeamp team to admit to having brain-lock when they assumed that a PID was a short int. For the Nobel Prize: Fix the "union semun" to have a "short int" val, or fix the semaphore implementation to allow "int" values. Fix all the applications and ports that break because of the fix; remember, things will break because of signedness as well as number of bits. Convince at least 2 authors whose apps you broke that *you* aren't brain-damaged for changing a broken legacy structure that so many things depend on. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 1:10:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8ED7237B419 for ; Sun, 9 Dec 2001 01:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB99A1u20914; Sun, 9 Dec 2001 01:10:01 -0800 (PST) (envelope-from gnats) Received: from mail004.syd.optusnet.com.au (mail004.syd.optusnet.com.au [203.2.75.228]) by hub.freebsd.org (Postfix) with ESMTP id D787537B405 for ; Sun, 9 Dec 2001 01:05:59 -0800 (PST) Received: from dt.home (c31516.thorn1.nsw.optusnet.com.au [203.164.22.4]) by mail004.syd.optusnet.com.au (8.11.1/8.11.1) with ESMTP id fB995wJ18725 for ; Sun, 9 Dec 2001 20:05:58 +1100 Received: (from tonym@localhost) by dt.home (8.11.6/8.11.6) id fB995w310664; Sun, 9 Dec 2001 20:05:58 +1100 (EST) (envelope-from tonym) Message-Id: <200112090905.fB995w310664@dt.home> Date: Sun, 9 Dec 2001 20:05:58 +1100 (EST) From: Tony Maher Reply-To: Tony Maher To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32640: New port: p5-Class-ObjectTemplate Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32640 >Category: ports >Synopsis: New port: p5-Class-ObjectTemplate >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 01:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Tony Maher >Release: FreeBSD 4.4-STABLE i386 >Organization: BioLateral >Environment: System: FreeBSD dt.home 4.4-STABLE FreeBSD 4.4-STABLE #3: Sat Dec 8 16:24:41 EST 2001 root@dt.home:/usr/obj/usr/src/sys/DT i386 >Description: "Class::ObjectTemplate is a utility class to assist in the building of other Object Oriented Perl classes. It was described in detail in the O'Reilly book, "Advanced Perl Programming" by Sriram Srinivasam." - from the manual page. This is (one of many) dependant port required for a large biology port I am working one. A second one p5-Class-ObjectTemplate-DB will follow shortly. I have no real way of testing this port so if a perl guru can look this over before committing ... It is covered in the O'reilly book and from the book package Employee; use Class::ObjectTemplate; @ISA = qw(ObjectTemplate); attributes qw(name age position); running perl on this looks ok. Otherwise it can sit in the PR's until I get the big port going and tested. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Class-ObjectTemplate # p5-Class-ObjectTemplate/files # p5-Class-ObjectTemplate/files/patch-aa # p5-Class-ObjectTemplate/Makefile # p5-Class-ObjectTemplate/pkg-comment # p5-Class-ObjectTemplate/pkg-descr # p5-Class-ObjectTemplate/pkg-plist # p5-Class-ObjectTemplate/distinfo # echo c - p5-Class-ObjectTemplate mkdir -p p5-Class-ObjectTemplate > /dev/null 2>&1 echo c - p5-Class-ObjectTemplate/files mkdir -p p5-Class-ObjectTemplate/files > /dev/null 2>&1 echo x - p5-Class-ObjectTemplate/files/patch-aa sed 's/^X//' >p5-Class-ObjectTemplate/files/patch-aa << 'END-of-p5-Class-ObjectTemplate/files/patch-aa' X--- ObjectTemplate.pm.orig Sun Dec 9 13:38:22 2001 X+++ ObjectTemplate.pm Sun Dec 9 13:38:35 2001 X@@ -194,6 +194,7 @@ X X 1; X __END__ X+ X =head1 NAME X X Class::ObjectTemplate - Perl extension for an optimized template END-of-p5-Class-ObjectTemplate/files/patch-aa echo x - p5-Class-ObjectTemplate/Makefile sed 's/^X//' >p5-Class-ObjectTemplate/Makefile << 'END-of-p5-Class-ObjectTemplate/Makefile' X# New ports collection makefile for: Class::ObjectTemplate X# Date created: 9 Nov 2001 X# Whom: Tony Maher X# X# $FreeBSD$ X# X XPORTNAME= Class-ObjectTemplate XPORTVERSION= 0.4 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Class XPKGNAMEPREFIX= p5- X XMAINTAINER= tonym@biolateral.com.au X XPERL_CONFIGURE= yes X X#MAN3= Class::ObjectTemplate.3 X#MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X X.include END-of-p5-Class-ObjectTemplate/Makefile echo x - p5-Class-ObjectTemplate/pkg-comment sed 's/^X//' >p5-Class-ObjectTemplate/pkg-comment << 'END-of-p5-Class-ObjectTemplate/pkg-comment' XAn optimized template builder base class END-of-p5-Class-ObjectTemplate/pkg-comment echo x - p5-Class-ObjectTemplate/pkg-descr sed 's/^X//' >p5-Class-ObjectTemplate/pkg-descr << 'END-of-p5-Class-ObjectTemplate/pkg-descr' X"Class::ObjectTemplate is a utility class to assist in the building Xof other Object Oriented Perl classes. XIt was described in detail in the O'Reilly book, "Advanced Perl XProgramming" by Sriram Srinivasam." X- from the manual page. X X-- XTony Maher END-of-p5-Class-ObjectTemplate/pkg-descr echo x - p5-Class-ObjectTemplate/pkg-plist sed 's/^X//' >p5-Class-ObjectTemplate/pkg-plist << 'END-of-p5-Class-ObjectTemplate/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Class/ObjectTemplate/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Class/ObjectTemplate.pm X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Class 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Class 2>/dev/null || true END-of-p5-Class-ObjectTemplate/pkg-plist echo x - p5-Class-ObjectTemplate/distinfo sed 's/^X//' >p5-Class-ObjectTemplate/distinfo << 'END-of-p5-Class-ObjectTemplate/distinfo' XMD5 (Class-ObjectTemplate-0.4.tar.gz) = b186a19a567375c0b8b5f19321128013 END-of-p5-Class-ObjectTemplate/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 1:20:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C66CD37B416 for ; Sun, 9 Dec 2001 01:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB99K0S21509; Sun, 9 Dec 2001 01:20:00 -0800 (PST) (envelope-from gnats) Received: from mail016.syd.optusnet.com.au (mail016.syd.optusnet.com.au [203.2.75.176]) by hub.freebsd.org (Postfix) with ESMTP id 724BB37B416 for ; Sun, 9 Dec 2001 01:15:03 -0800 (PST) Received: from dt.home (c31516.thorn1.nsw.optusnet.com.au [203.164.22.4]) by mail016.syd.optusnet.com.au (8.11.1/8.11.1) with ESMTP id fB99F2O00424 for ; Sun, 9 Dec 2001 20:15:02 +1100 Received: (from tonym@localhost) by dt.home (8.11.6/8.11.6) id fB99F2J19938; Sun, 9 Dec 2001 20:15:02 +1100 (EST) (envelope-from tonym) Message-Id: <200112090915.fB99F2J19938@dt.home> Date: Sun, 9 Dec 2001 20:15:02 +1100 (EST) From: Tony Maher Reply-To: Tony Maher To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32641: New port: p5-Class-ObjectTemplate-DB Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32641 >Category: ports >Synopsis: New port: p5-Class-ObjectTemplate-DB >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 01:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Tony Maher >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD dt.home 4.4-STABLE FreeBSD 4.4-STABLE #3: Sat Dec 8 16:24:41 EST 2001 root@dt.home:/usr/obj/usr/src/sys/DT i386 >Description: This is associated with PR ports/32640 "Class::ObjectTemplate::DB extends Class::ObjectTemplate in one simple way: the undefined() method. ... The author finds this useful when representing classes based on objects stored in databases (hence the name of the module). That way an object can be created, without triggering a DB lookup. Later if data is accessed and it is not currently present in the object, it can be retrieved on an as-need basis." - from the manual page. This is (one of many) dependant port required for a large biology port I am working on. I have no real way of testing this port so if a perl guru can look this over before committing ... >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Class-ObjectTemplate-DB # p5-Class-ObjectTemplate-DB/pkg-comment # p5-Class-ObjectTemplate-DB/pkg-plist # p5-Class-ObjectTemplate-DB/Makefile # p5-Class-ObjectTemplate-DB/distinfo # p5-Class-ObjectTemplate-DB/pkg-descr # echo c - p5-Class-ObjectTemplate-DB mkdir -p p5-Class-ObjectTemplate-DB > /dev/null 2>&1 echo x - p5-Class-ObjectTemplate-DB/pkg-comment sed 's/^X//' >p5-Class-ObjectTemplate-DB/pkg-comment << 'END-of-p5-Class-ObjectTemplate-DB/pkg-comment' XAn optimized template builder base class with lookup capability END-of-p5-Class-ObjectTemplate-DB/pkg-comment echo x - p5-Class-ObjectTemplate-DB/pkg-plist sed 's/^X//' >p5-Class-ObjectTemplate-DB/pkg-plist << 'END-of-p5-Class-ObjectTemplate-DB/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Class/ObjectTemplate/DB/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Class/ObjectTemplate/DB.pm X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Class/ObjectTemplate 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Class 2>/dev/null || true END-of-p5-Class-ObjectTemplate-DB/pkg-plist echo x - p5-Class-ObjectTemplate-DB/Makefile sed 's/^X//' >p5-Class-ObjectTemplate-DB/Makefile << 'END-of-p5-Class-ObjectTemplate-DB/Makefile' X# New ports collection makefile for: Class::ObjectTemplate X# Date created: 9 Nov 2001 X# Whom: Tony Maher X# X# $FreeBSD$ X# X XPORTNAME= Class-ObjectTemplate-DB XPORTVERSION= 0.23 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Class XPKGNAMEPREFIX= p5- X XMAINTAINER= tonym@biolateral.com.au X XRUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Class/ObjectTemplate.pm:${PORTSDIR}/devel/p5-Class-ObjectTemplate X XPERL_CONFIGURE= yes X XMAN3= Class::ObjectTemplate::DB.3 XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X X.include END-of-p5-Class-ObjectTemplate-DB/Makefile echo x - p5-Class-ObjectTemplate-DB/distinfo sed 's/^X//' >p5-Class-ObjectTemplate-DB/distinfo << 'END-of-p5-Class-ObjectTemplate-DB/distinfo' XMD5 (Class-ObjectTemplate-DB-0.23.tar.gz) = 5465cf8b7f9ebbee5d2703e9c5f86986 END-of-p5-Class-ObjectTemplate-DB/distinfo echo x - p5-Class-ObjectTemplate-DB/pkg-descr sed 's/^X//' >p5-Class-ObjectTemplate-DB/pkg-descr << 'END-of-p5-Class-ObjectTemplate-DB/pkg-descr' X"Class::ObjectTemplate::DB extends Class::ObjectTemplate in one Xsimple way: the undefined() method. X... XThe author finds this useful when representing classes based on Xobjects stored in databases (hence the name of the module). XThat way an object can be created, without triggering a DB lookup. XLater if data is accessed and it is not currently present in the object, Xit can be retrieved on an as-need basis." X- from the manual page. X X-- XTony Maher END-of-p5-Class-ObjectTemplate-DB/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 1:23:22 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 427CF37B419; Sun, 9 Dec 2001 01:23:14 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fB99N7b96767; Sun, 9 Dec 2001 01:23:07 -0800 (PST) (envelope-from obrien) Date: Sun, 9 Dec 2001 01:23:06 -0800 From: "David O'Brien" To: portmgr@freebsd.org Cc: ports@freebsd.org Subject: Re: GNOME/KDE issue with disc1 Message-ID: <20011209012306.A96687@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <20011207181333.A97777@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011207181333.A97777@dragon.nuxi.com>; from obrien@freebsd.org on Fri, Dec 07, 2001 at 06:13:33PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Dec 07, 2001 at 06:13:33PM -0800, David O'Brien wrote: > We had a problem with the 4.4-RELEASE disc1. > That being the total lack of non-GNOME, non-KDE related packages. To follow up on this I counted up the size of each category. Note that some packages are counted more than once as sysinstall shows a port in each category it is in. 115M x11 79M kde 61M print 47M gnome 22M editors 19M x11-toolkits 19M www 18M ipv6 17M net 17M linux 17M graphics 17M emulators 16M x11-wm 16M games 15M misc 13M devel 11M lang 8.5M audio 7.7M mail 7.2M databases 6.3M news 5.9M python 4.1M textproc 4.0M sysutils 3.8M windowmaker 3.3M converters 2.9M perl5 2.7M x11-fm 2.6M shells 1.9M ftp 1.8M tcl83 1.7M tk83 1.7M tk82 1.7M tcl82 1.5M ruby 1.4M archivers 1.3M security 987M total (on-CD size is 393M) As is seen biggest are x11 (which includes gnome and kde), kde, print (which includes *two* copies of ghostscript), gnome (7.2 MB of that is just the docs!) , editors, x11-toolkits (includes the KDE and GNOME dependacies of qt and gtk* and other KDE and GNOME dependancies), Note there isn't a single version of Netscape on the 4.4 disc1! Talk about not having the most required package in today's Internet. The number of packages in each category are: afterstep 1 archivers 5 astro 3 audio 11 benchmarks 1 comms 2 converters 8 databases 10 deskutils 1 devel 45 editors 4 elisp 1 emulators 4 ftp 5 games 3 gnome 46 graphics 36 ipv6 14 irc 1 java 1 kde 9 korean 2 lang 7 linux 2 mail 16 math 2 misc 17 net 27 news 6 perl5 3 print 18 python 5 ruby 13 security 7 shells 4 sysutils 23 tcl82 2 tcl83 1 textproc 9 tk82 2 tk83 1 windowmaker 3 www 22 x11 22 x11-fm 4 x11-toolkits 16 x11-wm 5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 1:49:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B043E37B416; Sun, 9 Dec 2001 01:49:28 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB99gaE23958; Sun, 9 Dec 2001 01:42:36 -0800 (PST) (envelope-from clive) Date: Sun, 9 Dec 2001 01:42:36 -0800 (PST) From: Message-Id: <200112090942.fB99gaE23958@freefall.freebsd.org> To: statue@softwareliberty.org, clive@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32487: New port: chinese/bbsnet A front-end of telnet client Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: chinese/bbsnet A front-end of telnet client State-Changed-From-To: open->closed State-Changed-By: clive State-Changed-When: Sun Dec 9 01:42:21 PST 2001 State-Changed-Why: Committed, thanks. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32487 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 1:50:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 422D437B416 for ; Sun, 9 Dec 2001 01:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB99o1s25151; Sun, 9 Dec 2001 01:50:01 -0800 (PST) (envelope-from gnats) Received: from serio.al.rim.or.jp (serio.al.rim.or.jp [202.247.191.123]) by hub.freebsd.org (Postfix) with ESMTP id B644937B416 for ; Sun, 9 Dec 2001 01:42:53 -0800 (PST) Received: from mail2.rim.or.jp by serio.al.rim.or.jp (3.7W/HMX-13) id SAA28831 for ; Sun, 9 Dec 2001 18:42:52 +0900 (JST) Received: from yoshiaki_kt.rim.or.jp (adsl4028.ea.rim.or.jp [202.247.150.28]) by mail2.rim.or.jp (8.9.3/3.7W) id SAA29865 for ; Sun, 9 Dec 2001 18:42:52 +0900 (JST) Received: (from yoshiaki@localhost) by yoshiaki_kt.rim.or.jp (8.11.6/3.7W-ppp-010112) id fB99gR177971; Sun, 9 Dec 2001 18:42:27 +0900 (JST) Message-Id: <200112090942.SAA29865@mail2.rim.or.jp> Date: Sun, 9 Dec 2001 18:42:27 +0900 (JST) From: Yoshiaki Uchikawa Reply-To: Yoshiaki Uchikawa To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32642: Lame port, fix download site Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32642 >Category: ports >Synopsis: Lame port, fix download site >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 01:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yoshiaki Uchikawa >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD singer.tertio.atoll 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Sun Dec 9 02:11:17 JST 2001 yoshiaki@singer.localsite :/usr/obj/usr/src/sys/CRUSE i386 >Description: Fix Lame ftp/http site. >How-To-Repeat: >Fix: --- fix begins here --- --- Makefile.orig Mon Jan 8 09:54:29 2001 +++ Makefile Sun Dec 9 18:30:26 2001 @@ -11,7 +11,7 @@ CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ ftp://lame.sourceforge.net/pub/ -MASTER_SITE_SUBDIR= lame/src +MASTER_SITE_SUBDIR= lame DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= yoshiaki@kt.rim.or.jp --- fix ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 1:59:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 30E3C37B41B; Sun, 9 Dec 2001 01:59:28 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB99om225429; Sun, 9 Dec 2001 01:50:48 -0800 (PST) (envelope-from clive) Date: Sun, 9 Dec 2001 01:50:48 -0800 (PST) From: Message-Id: <200112090950.fB99om225429@freefall.freebsd.org> To: jo-c@is.aist-nara.ac.jp, clive@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/31849: Port update of chinese/gb2jis: Convert GuoBiao Hanzi to JIS Kanji Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Port update of chinese/gb2jis: Convert GuoBiao Hanzi to JIS Kanji State-Changed-From-To: open->closed State-Changed-By: clive State-Changed-When: Sun Dec 9 01:50:37 PST 2001 State-Changed-Why: Committed, thanks. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31849 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 1:59:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CEB1A37B419; Sun, 9 Dec 2001 01:59:27 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB99sQ026456; Sun, 9 Dec 2001 01:54:26 -0800 (PST) (envelope-from clive) Date: Sun, 9 Dec 2001 01:54:26 -0800 (PST) From: Message-Id: <200112090954.fB99sQ026456@freefall.freebsd.org> To: jo-c@is.aist-nara.ac.jp, clive@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/31868: New port--chinese/jis2gb: Convert JIS Kanji to GuoBiao Hanzi Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port--chinese/jis2gb: Convert JIS Kanji to GuoBiao Hanzi State-Changed-From-To: open->closed State-Changed-By: clive State-Changed-When: Sun Dec 9 01:54:16 PST 2001 State-Changed-Why: Committed, thanks. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31868 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 2: 0:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9714D37B417 for ; Sun, 9 Dec 2001 02:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9A02t26936; Sun, 9 Dec 2001 02:00:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DA6E37B405 for ; Sun, 9 Dec 2001 01:52:03 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB99q3525622; Sun, 9 Dec 2001 01:52:03 -0800 (PST) (envelope-from nobody) Message-Id: <200112090952.fB99q3525622@freefall.freebsd.org> Date: Sun, 9 Dec 2001 01:52:03 -0800 (PST) From: Paul Andrews To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32643: update mod_watch from 2.4 to 3.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32643 >Category: ports >Synopsis: update mod_watch from 2.4 to 3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 02:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Paul Andrews >Release: FreeBSD 4.4 >Organization: N/A >Environment: FreeBSD hexadecimal.extorted.ca 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Sat Oct 27 15:47:43 MDT 2001 root@hexadecimal.extorted.ca:/usr/src/sys/compile/HEXADECIMAL i386 >Description: Current port version for mod_watch is mod_watch2.4, however the author has since release mod_watch3.0. Requesting that port be updated. >How-To-Repeat: Update port to download and install mod_watch3.0, rather than mod_watch2.4. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 2:10:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A69437B41B for ; Sun, 9 Dec 2001 02:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9AA4j30973; Sun, 9 Dec 2001 02:10:04 -0800 (PST) (envelope-from gnats) Received: from www.mmlab.cse.yzu.edu.tw (www.mmlab.cse.yzu.edu.tw [140.138.145.166]) by hub.freebsd.org (Postfix) with SMTP id 4AB4837B416 for ; Sun, 9 Dec 2001 02:08:44 -0800 (PST) Received: (qmail 11851 invoked by uid 1000); 7 Dec 2001 03:22:15 -0000 Message-Id: <20011207032215.11850.qmail@www.mmlab.cse.yzu.edu.tw> Date: 7 Dec 2001 03:22:15 -0000 From: Tai-hwa Liang Reply-To: Tai-hwa Liang To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32644: upgrade port chinese/pine4 from 4.40 to 4.43 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32644 >Category: ports >Synopsis: upgrade port chinese/pine4 from 4.40 to 4.43 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 02:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Tai-hwa Liang >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD www.mmlab.cse.yzu.edu.tw 4.4-STABLE FreeBSD 4.4-20011203-STABLE #0 i386 >Description: Upgrade port chinese/pine4 from 4.40 to 4.43. This upgrade also takes out of the Message-ID header the information about the operating system, the version of Pine, and the word "PINE" (see PR26051). >How-To-Repeat: Please check and commit the patch presented in "Fix" section, thanks. >Fix: --- Makefile.orig Sun Sep 23 00:43:31 2001 +++ Makefile Sun Dec 9 17:40:10 2001 @@ -6,7 +6,7 @@ # PORTNAME= pine -PORTVERSION= 4.40 +PORTVERSION= 4.43 PORTREVISION= 0 CATEGORIES= chinese mail news MASTER_SITES= ftp://ftp.cac.washington.edu/pine/ --- distinfo.orig Sun Sep 23 00:43:31 2001 +++ distinfo Sun Dec 9 16:45:07 2001 @@ -1,2 +1,2 @@ -MD5 (pine4.40.patch.gz) = e1dc760e9de75b388b2dc98f52ec9954 -MD5 (pine4.40.tar.gz) = 5173fecdd0cc7c3b7da7394817ae869f +MD5 (pine4.43.patch.gz) = cee0b14bef0ae566d2471e0bfe739602 +MD5 (pine4.43.tar.gz) = 9395df6346b9c0748a93163df83e6150 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 3:26:46 2001 Delivered-To: freebsd-ports@freebsd.org Received: from post.webmailer.de (natwar.webmailer.de [192.67.198.70]) by hub.freebsd.org (Postfix) with ESMTP id B89FF37B417 for ; Sun, 9 Dec 2001 03:26:41 -0800 (PST) Received: from master (pD9049542.dip.t-dialin.net [217.4.149.66]) by post.webmailer.de (8.9.3/8.8.7) with ESMTP id MAA10826 for ; Sun, 9 Dec 2001 12:22:23 +0100 (MET) From: "=?ISO-8859-1?Q?Boris_K=F6ster_?=" Organization: X-ITEC IT-Consulting http://www.x-itec.de To: freebsd-ports@freebsd.org Date: Sun, 9 Dec 2001 12:26:36 +0100 MIME-Version: 1.0 Subject: /usr/ports/graphics/graphviz broken Message-ID: <3C13587C.28509.2F7C76@localhost> X-mailer: Pegasus Mail for Win32 (v4.0, beta 40) Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: Quoted-printable Content-description: Mail message body Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I wanted to install devel/doxygen, and graphics/graphviz seems to have som= e trouble with iconv: gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-1= .7.7/d otneato/neatogen' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-1.= 7.7/do tneato/neatogen' gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-1= .7.7/d otneato' /bin/sh ../libtool --mode=3Dlink cc -O -pipe -DDATE=3D"\"`date`\"" -L/us= r/local/li b -o dot dot.o common/libdotneato.la dotgen/libdot.la common/lib= dotnea to.la ../pathplan/libpathplan.la ../graph/libgraph.la ..= /cdt/l ibcdt.la ../gd/libgd.la -lm -lfreetype -lpng -ljpeg -lz cc -O -pipe "-DDATE=3D\"Sun Dec 9 13:23:25 CET 2001\"" -L/usr/local/lib -= o dot do t.o common/.libs/libdotneato.al dotgen/.libs/libdot.al common/.libs/libdot= neato. al ../pathplan/.libs/libpathplan.al ../graph/.libs/libgraph.al ../cdt/.lib= s/libc dt.al ../gd/.libs/libgd.al -lm -lfreetype -lpng -ljpeg -lz ../gd/.libs/libgd.al(gdkanji.lo): In function `do_convert': gdkanji.lo(.text+0x4fc): undefined reference to `iconv_open' gdkanji.lo(.text+0x574): undefined reference to `iconv' gdkanji.lo(.text+0x5f1): undefined reference to `iconv_close' gmake[3]: *** [dot] Error 1 gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-1.= 7.7/do tneato' gmake[2]: *** [all-recursive] Error 1 -- Boris K=F6ster [C / C++ / PHP / FreeBSD / Security / Consulting] Maintainer of IPSEC Mini-HowTo | QSP | and more. HTTP://www.x-itec.de * koester@x-itec.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 4:50:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B94A537B448 for ; Sun, 9 Dec 2001 04:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9Co2C57621; Sun, 9 Dec 2001 04:50:02 -0800 (PST) (envelope-from gnats) Received: from camel.ck.tp.edu.tw (camel.ck.tp.edu.tw [203.64.26.1]) by hub.freebsd.org (Postfix) with ESMTP id 481EA37B416 for ; Sun, 9 Dec 2001 04:43:37 -0800 (PST) Received: by camel.ck.tp.edu.tw (Postfix, from userid 263) id C34586E731; Sun, 9 Dec 2001 20:43:09 +0800 (CST) Message-Id: <20011209124309.C34586E731@camel.ck.tp.edu.tw> Date: Sun, 9 Dec 2001 20:43:09 +0800 (CST) From: Kuang-che Wu Reply-To: Kuang-che Wu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32645: build broken on lang/fpc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32645 >Category: ports >Synopsis: build broken on lang/fpc >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 04:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Kuang-che Wu >Release: FreeBSD 5.0-CURRENT i386 >Organization: Taipei Chien-kuo Senior High School >Environment: System: FreeBSD 5.0-CURRENT #17: Fri Nov 30 17:09:19 CST 2001 >Description: root@m722 /usr/ports/lang/fpc# make all install ===> Extracting for fpc-1.0.4 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for fpc-1.0.4.freebsd4.tar. ===> fpc-1.0.4 depends on file: /usr/local/bin/gtar - found ===> Patching for fpc-1.0.4 ===> Configuring for fpc-1.0.4 ===> Installing for fpc-1.0.4 ===> fpc-1.0.4 depends on file: /usr/local/bin/nasm - found ===> fpc-1.0.4 depends on file: /usr/local/bin/acroread4 - found Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- samplecfg Sat Dec 23 15:02:40 2000 |+++ samplecfg.new Thu Nov 29 07:44:20 2001 -------------------------- Patching file samplecfg using Plan A... Hunk #1 succeeded at 4. Hunk #2 succeeded at 38. done ===> Generating temporary packing list install: /usr/ports/lang/fpc/work/temp/bin/ppc386: No such file or directory /usr/libexec/elf/strip: /usr/local/bin/rstconv: File format not recognized /usr/ports/lang/fpc/work/files.sh: /usr/ports/lang/fpc/work/temp/etc/ppc386.cfg: not found /usr/ports/lang/fpc/pkg-install: @/bin/ln: not found /usr/ports/lang/fpc/pkg-install: @/bin/sh: not found *** Error code 127 Stop in /usr/ports/lang/fpc. *** Error code 1 Stop in /usr/ports/lang/fpc. *** Error code 1 Stop in /usr/ports/lang/fpc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 4:59:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D63D37B417; Sun, 9 Dec 2001 04:59:27 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9CwbK58275; Sun, 9 Dec 2001 04:58:37 -0800 (PST) (envelope-from des) Date: Sun, 9 Dec 2001 04:58:37 -0800 (PST) From: Message-Id: <200112091258.fB9CwbK58275@freefall.freebsd.org> To: des@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32575: www/mod_auth_kerb does not compile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/mod_auth_kerb does not compile Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: des Responsible-Changed-When: Sun Dec 9 04:58:25 PST 2001 Responsible-Changed-Why: Misfiled. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32575 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 5:20: 7 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E27C037B41C for ; Sun, 9 Dec 2001 05:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9DK2T63289; Sun, 9 Dec 2001 05:20:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 58FF637B405 for ; Sun, 9 Dec 2001 05:14:36 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9DEaD62770; Sun, 9 Dec 2001 05:14:36 -0800 (PST) (envelope-from nobody) Message-Id: <200112091314.fB9DEaD62770@freefall.freebsd.org> Date: Sun, 9 Dec 2001 05:14:36 -0800 (PST) From: Sven Petai To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32647: kdebase 2.2.2 build is not dependant on kdelibs 2.2.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32647 >Category: ports >Synopsis: kdebase 2.2.2 build is not dependant on kdelibs 2.2.2 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 05:20:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sven Petai >Release: 4.4 Stable >Organization: >Environment: FreeBSD depression.softematic.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Fri Oct 12 10:45:40 EET 2001 root@depression.softematic.com:/usr/src/sys/compile/HADARA i386 >Description: Kdebase 2.2.2 build lets you get away with using old version of kdelibs in my case kdelibs-2.2_3 (from package), and of course it will not compile against this version of libraries >How-To-Repeat: install kdelibs 2.2_3 and try to build kdebase 2.2.2 port >Fix: probably it would help if kdelibs 2.2.2 were in the BUILD_DEPENDS list of the kdebase 2.2.2 port >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 5:40:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0733437B419 for ; Sun, 9 Dec 2001 05:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9De1P66555; Sun, 9 Dec 2001 05:40:01 -0800 (PST) (envelope-from gnats) Received: from adansonia.wanadoo.fr (smtp-rt-14.wanadoo.fr [193.252.19.224]) by hub.freebsd.org (Postfix) with ESMTP id D5FB837B41B for ; Sun, 9 Dec 2001 05:33:27 -0800 (PST) Received: from citronier.wanadoo.fr (193.252.19.222) by adansonia.wanadoo.fr; 9 Dec 2001 14:33:26 +0100 Received: from sequoia.mondomaineamoi.megalo (193.253.242.201) by citronier.wanadoo.fr; 9 Dec 2001 14:33:05 +0100 Received: (from stephane@localhost) by sequoia.mondomaineamoi.megalo (8.11.6/8.11.1) id fB9DWtH15755; Sun, 9 Dec 2001 14:32:55 +0100 (CET) (envelope-from stephane) Message-Id: <200112091332.fB9DWtH15755@sequoia.mondomaineamoi.megalo> Date: Sun, 9 Dec 2001 14:32:55 +0100 (CET) From: Stephane Legrand Reply-To: Stephane Legrand To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32648: Port update for www/jetty Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32648 >Category: ports >Synopsis: Port update for www/jetty >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 05:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Stephane Legrand >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: Port update for www/jetty begin 644 jetty.diff.gz M'XL(""IE$SP``VIE='1Y+F1I9F8`M%UM=]JXMOX]G;]D&&["Q9-%9D\3V?AY)6UM; M6[(DFWPZ)74OO"/?6!"\-/OTD4VYQ:++D^5UK5ZOKXD]S]>#_L=4?O#YZ>GL@W^IW62+\]&G>'7T>],=Z?!X%[T6R:SI-M.=1L^$[H M&6SJ>#/6L%G0C,I)_K=&#@ZF0E3<:2P<+YC0EX;A+)IN.&F*O+?.WARWR"'^ M.A7Y[[=[=V/XOSM\?^`'S)U3FS4L-O.H;7Z8\-G4<0*DP&(.'^Z^7G4'W;LK MR-:K/V_:G]N?^S\N7OV)11M=]88_FE@`\>/[XLFCKLL\R%C]`*1O[SOMV\OV MJ/NCR0(CEO&W@#U6.Y0"F(^M$\Q>E)__>I_%3K@=8VOD[O[KY4/O]NK]P0OS M`7(XN.V-QE]'#Y?OB?AWTQV/__MK4DM14O'5C]IAC;B.']39<^!1([@`A4^Y M;9)7?WX9_C8:=GZ0NDT7C'0^C\A?Y)EZ,Q^>#?MPWYOF"3>,[SZ?V8['MF%J MQ'3JW/8#:ED7H,?X&+K0!LG__+_O&?_W#_)+5+]_D0A0G$Z:IQ[:%KB-!G8*LL1-E4$(,"<-KAM6*')R'],?+/A0OMM+![_LV:N M>3V3^P&WIT[BM9+KE-=+;I7R>BMA&D1>KT5:9QOWI*? M;Q!:%YZM$FX:Y\='TW=OS\[?G6UHP'V!"#";=(Z.GI-;L"L&Z07 M`+R&28,78"8)'#)AQ.*S>4">&/YZ0^;PBX`K!9^_H+;!WA"VF##3I!,+_WX& M5I_#WY`+LU:?6NR9BR?!//3)@CYR>T9X@'GD)J,6<2T:(!>!'\2'W*&`^0+^ MB!M1UCWVKY#Y`61LZCD+0+Z([!+PZ!8W:,`=NU$[K%SZVJ$H/IDXP9Q0,@TM MBTP9#4(/-($LS5:C)7((#%`XD/%C6L.Q`\IMYBU)UE28(7NS2Z.UPWR5DO(: MK1WN5"D1&@4IE-RN6'`%UU'&?0*]#/BLIGBY MU.3`*!<'KN$I(Q[&G?!9Z0G4@_1!PBX-5=BSJ^]C)0RGZM^0C`U.)9"#) MFTM(XZ;_.^G9`88ZXC[D\V, MTO*)._KUXN@4HM&T.SIY*]S1B0CF($DRGC/"[._<<^P%*)!\IQX7M1S%-I_N M^UWBSYW0,K&5^%"5T%X"`,5=9*Q(0DSN024YWDN#C%]<,$[+>@%S/*R01.V0 M9)+)2T-8Y)+K_:K/34<$4:A]6%*POM8#UTCRCST+"UW11'K$L0#QP4;)"[0K MTKEMCT:#]O@3B3MI\'I@JEBJ;V#4.&KPT;GAC5@-^69'>15.^IO!O/@*ZLRQP9#0Y7+L M2O@4*Q$).#1X6W01'D1&H"S(N(LC2-0N.BPC\AL--*RD+M)VA:.-Q@FZPG7[ M2:31D=3),+1M[`.0]XHMG*@RHA*8<`UU%/F=I'N;4Q\RC#7ZG1&7!G,?^SCA MV[#_\AV1_8`L0C]`J\#\BZYDS>+2UO``W'YL20@'0A\Z+(^$/N:-3GS'"@,F MK%>D27!,DM@Q]Y8Y$#GU10ZF^.B%/'%_GJ@QB@.6D<(J`ZM*PR(G)36@VXP+ M\,0A32S`U+$LYPDS!14"7;+I7R#X`(<#J999/XB&!] M#F,05.W%^='Y$;H>!VT\?M@Z_K5Q!/^UQ%-"?HYTO$P*8ALOMB8G3MPK->+(2JBK3:-T/.@2VG,@X55&F2R23B3@SC?,#!=2^1$#!2F`;3@FDT&@/Y:4A\A8"N%X3]23*L8L"J&E,A;'2G(0 MDSW'HPP9'(8.$N*6XSRV;?.:,4L&YGH.#!N#E\!C4J4"W/.+%"#TI:S>E]=8 M##&Y#ZW2D$S-]S$BD,&$KIB^+H?`2YEFL)+?T0M$XCU["FT@'F.73$)@YM!I M860C`8%Q/8/AJPS$CT;-)2$P0HK=S<:C8;=]U>_FU.SX_NH^YU$\V,MYBH%>HC(<4UTY MQC:ID%MF/;3YH^F[LI)';<*Y)(&+@;HV]L1$?0K^-M>Y)_(X91D/D9O"77<*HM!"4/?98*Z8FI9%7X%[Z,#`4CY= M;+@P4!MQ^U$>JZ0>2$T%HY1#P'WQ>$',GHL(2AM*+=)F@_7"QH?NRU$U\4LV\#7X\':,!T4!"*Y>&N@]S12`&DLS!' MD$NZ4&IQ,4D5[)"YUHLR`9J(0L&5K2,-5C".-%S6-O"E4K/MN@5A@!*YK,:6B7CM* M(&\A#Y(U\!5JI&!GGQ@UN2W5J0F2_5X,4C"K@8HR M$*1J_R/#XZY\/D?,8H8"+'C)GV0I1BG5P1A?R@PJ!2Q9M,!&@999P5.#"D#@>S*J3#'"B MMGBBI@1+/$=0.3<5;&,KCY*5;&52LI>.XSSR_`G77-PR(OT4S5!*$T1+AYH? M_^#N=>&[DET,GP#6?7:YQZKS5&/HLV#NF-+N;46@.*!+4U0SSS425=MHC:%[IE;K3#8*[:X#:(Q'R<,@V,"6AH M!97]0,*'784.CAOJQ:[^UJ%F-3(PXLI9BM[J5J6Y=695*>ZMI!J/HO7+5(HV9 MYS-MSJ)*1[GD\*CMXRO9JIGYS+T@I-8GQZ]<\15[K#46Y4YKC4>MWV+45)JV MC-!!X%8;A""#8CB'4.6:1"Q3:W$`%5,OT82S$A[G4_`%NA+X/@RJI3Z,-E14 MP5[%2U\4BY#L3%`"*XX-$8H.2=X5X=H"Y1KK0_3%H2,-5+6>(E!4VJ!XZ6`N M+NY3XDY7'A[:E33W&?HB%9=2S3M7]DXH95T1%OQ7P,3\I%23%&!\NSBA"JJZFJBJZ#=?\<)Y5ZV1GCY6"F-.VXI(,6J+/1; M*ND^B*7.RHI6;QH9N$K;R!#(-HYD963\NN"J8&-%(?P*=Z,H:&]%L&-)>REP MI0RH%KW[S-52[)78-E%(<+O:$%&%!M]\#PKV+A2#X]T58S"\KLFQRU8(VXOH M\%?;FTF%:KOX'$]M'%G$._!"F^G,J`I-_$>EUK3&T?4\1V6:.X]/`]6=Y!OL M%%X,+)7;NK*;WV!0\/0;'++.'@]::+8]C^+;0PDEZ`(9;CB<`8#P1AD0<3#Y8K.@;9J>[,KF)3C9]B.+A;'\@')O[#CR=G<+QB^]6%`@[R?BY('+P.VKM!/PA="/XY_RT"@8TN!9L>+!/QAV)/'>%97 MG.\@[R2JU7352I:I7Y.Y'C-P:WG=*K&&?LXLMPY_[)(31SW4\2"6,H*[A)+] MY^7TN90NJ;^E?!E]);J-#LG9);:SB4#TPJG%_P#U3TNL@?=Q<;X_9Q`0&[Z_ M1;#@P*ZMLNF#N;8*\+/SLSK$9^$S7D(D_M"[:N")55NE\7+MK+'M2!'$J8F23DZK(CATBO*5)!CONW"K`HV%``+A?6RV-E$;(%NY9-`N<# MI!"EA'<*Y0N(8\/QZ*P"@?R'A=03;N<_W'Y`2FGYGCC+N:3PM3@RI:1P=$9> M2>'(-,N*EY$;%1C4VJ%KNP5S)6J'ZW?JKU]G#G9__3I[&$T90'P&S?CW<2GQ MY.B9LO+;#J,IBQ//&A,:2"+\N2S@Q?_.;5X^'<>;Q:-?F<0\:I=/PF,6`VNH MRQ4)C^UH/)>L>G`$GN,$XG@IOVERX[$)=A.=_JA*@#_$&2GR^``<*/ROB*Z2 M\]5Y7(I8M2R#O/=2*>,1@_@IGP>(N*-]:PI%!^S'[E@-.+@?*2+_&3+O10T> M-2-#4LL\>U"F:\_D$O7=U3`7QM>6/<>IA462`U%]PN[=N%?G`UERP@ MVL\6'P?)6;GVDH`?V0L>(\A*@Z1\7P28X7)6"7D7Y[K+&TCD*%S'XD:YB&L% MDE&U/>%R=9.9>BD+>L*E!*8SDTH)FI09;4LL#2N83)*!K\V;R4"WSN3)$&P_ MA4PZ]_*P[&29DK8S4WU*#(I%%CXP.6]U^\QM=3HU6]K.I:6<>"JY[L)F.'64 M.$.HK]C)#A^XD=DQHY,VO8]&"Z^_VJBBC^\2VCNW9]G],_KH,^L#*]+*AOGE M*FI/"NU^7QYVI8$;YX`57&N6#8-JS>T]3:FCN:?YM+1V)`R`[5F[7]_"K$L# M:[2Z%7'IF"_+@TFT,.IEP_P)OU&]`6V6>I0^NUM7X=M!X/%)&#"<&]9+C6O@ M]#)V\?N8^C.JG_&63SQHJ/J)]=O`Y_@#4;KRBC[_QG=7A]M5H]-+U;5G8JV? MGJ("8>8HOLILZ9-[JY&ASC0%,(GJLCLE*_.)YJR),F?3O3JAI@!K=2K+\M`W M'60Z:E7O$$+SR&$$4:C%HC57?<=D"M,164*Q0Y$;>JMUXY"+RHR;:PHK4VIK M8P\V7'(+NXH*G(XW:U(7SVV'6[Z;=\J+'DJUH#:?3S&:W20THD\#[J7P&]RZ MM+!!K%\=8D'V%3,L&JU)'LRIBC,I2B$ZM3K>L>PH=!0%Y%?@23WG)3H_47_> M<7W"7I6S'ZWT;![L2R4W(-*)+[02]RGV0'HY!Q3/#L/)%?4IJUWT7J-MZ/+, M2V;L2KC!]E6)HP#LV4`SB=:B>OJ3N&34WH]UXX(AB&;W4J.8ZZYM[BGC0#YD MXD!]I0%,D9,%%AS\[R?CHI.XT][U1!^'Q:U@>W$H>R%-]09[ZM'"Q63/;JLK MSF5ZL#EN=5`=`!?Q/[M>-+V]'Q7%)Z/NA_PC"Y*=4OOJG,6W%?9#?D,?J1?0 MO<9H]ZLTT?V3^WN(*Z"KVQ;OG=@HI#%,'0NIC76W%T\SY&:()9^^WGXGA.*Z7X_MU^LAM]7,1B>VKG\73&'CJ(T;Y][`@79.W96/`LR7WY MK#&=7;*]V0VPI[[CIX]T;X'S\O4.5UHR5()8O#?J+5R];C&V#:V3=VMC6YW4 M7F@'?)'S@1&]U+IFR-9YM4V0)<2IU\NZS".ACE_;76H:>2>TJU=DNC.,@VY' M5SR2(AU&?\8M43-YU'WI5D7J99\N:FTK"G=3ZVI]FE8:YA/?B$M]1K>-MW6L ME=E77RJ6SYJ\61+OTG42CYV%00/M],LQEY@H47Y_NDE\+SH[+4%`9OI)6P:! MR@^H'6C)HOB($4O.'M58=JP?33R1T6C48-0V*P8VR39F!.OQJ%L9U1WI5KH* M_C/#U]GZV=9*E.G/XU8B2GTPMQK/ZA.Z576U4%H[F*]U#5R9[^968LI\2;<2 MT^K;NA5I/(65%ILTFMI*]HN\E:@RW^BMQ)3Z:F\UGO1W?"LR+0_KJ\2S^LYL M11HMC4-MG>,&3?HKO]6(4@?^5R-:?0FX.H^F.DM]EJ`ZCR8OHK06?0N+-]/B M0<;*,=0&37OY^6)U*AU;OG(9=<1.U;=[;?#-BSZ%II59DP+6:74K8L2,T./! M\GN)V/+P(Z`05'!#?:IW:UIXBF[F%'`MK-N^I*F%^-.X+79RZV?>^LE-/B; MO-%\3)69TZPU1G9=:9IGC="?ZZP?;"ZMH^B(::YAO!M30H%M5F%YYP:A.%]6 MPR`QIKOFS#(5IP0WR/K0E6D8$,5LROM<Y5IE`X]OQ[<1:HK$L997]O/FL\0M,+4VJB'D/ M"DD2<*S*@?168BW.-8=91V>_E7HTNM7)^H5-\/4BSB9572V03>")VR?'^W`9 M66)=#B/+JLU=1+3QCC(=A*LOYE;C^7=OY[+=M@V$X7V?HHMN*R6IV^/N:LER M*A_%=B+[*+L>B((I5!3!@*`LY>F+"VF))IER,&-O?.7_@2)Q&5Q_BB#\5=H% M^A;A%=J""GEAS\A$K3EZ21Q_G-*`G/K9F!%+*D>#:6`G72N">KR%2E&' M5]AJ4)DTL[PX".2>["$T'#E#@46GPPX)$5\Y%!T&0BC>3#SR\2'"SKAZEHSG MZ#E@1QK]<3:6V`4)18<]*(YWT-QYED[GM^?GO_^)V?;2#CX=X@U<<]H`CXK' MQS9C-!28Z`U=,LT1^TQJ+'L0`UTN)%@[5+1;;^)PMP20:Z:JR3@"6L/C$U>/ ML.\'_,J=>O7FCRPB(=8L28E8]B=?2&GJ81H*6>7F(A7T@&W1-';%H4[J0[I: MHVX@BD-57LD$K,^%U'SE/3;OY8:G]CP/`BYA+>(/%],R)2K\_L/29+N7YJ0H M&#[Z?<:0C.$774::!,`[FC;A!&:_D%7G#ZG8C]4!NRRSJ'F)XB@OW$51,%^# MTU5N-N8CFJ0X-@Q$P#WU'HX]Z1:./>T.COW65P"5FR"C>8!D=8J%?=TFQ+=G MB)C3%]I1R),HVJ$W0;VCO,WV%0*H6,#OY-L$)GP*C>Y$IYR98X$3;C,*@-W7>AM M^PUPO=7:E&CSFO(A2[(U6W+]KK>W4D/ZOK?TB2]9EN7#TBYGN)B,?IW>7#E3 MJK[6.2\90!>92NYG$:H;*)UL:B6W?N6U_3IU:0&]GO`I_L/3MTITLJ\&>-VU MK_\!W2Z:-TSKEWFY).^-TJ1ZG.:OI;4EM*`T.($$N]8(-'E;ET_<> MJ?\-J3]#Z>U^B#LI4M!X6)VS%CELEW5=+KX&*S'MIJ^)^@9V=6TB8TC07Q>S M0J^]LR/,2+:%@M7#7$-;`(HG;(^Y#)=\MQ`; M@4(<4K8-<*UHDB;?"I'=0/RBFXPK98(EV![U)N2CXO%")!L!.3JFB7&]&%NN MD!1A/I`=)-.8V,V1-$\2$?-4SY^$7;*ZFA]RS;@$S`[<0N1KV$Q<)TBO+S+8$H\?H-PYT!C2C*5Q8:K+.R6A MDUTM,,Y4:MN3V_3>1/C8:G@F8[(2.)/I2J;CQ-RAB=[^E@5DA6`3]TEL^?TA MPSU[NYGS_!V&8/=^P7SBVAGVI&C$`(7#F+C>=(P)PH`3"S$F0#N\.EG@?4\M MI#R!;SEKP7AKQ,7%%W1@\'`SML'37$T6 MJJ]N`>ZGAT^S09;&(6,%]DBI?+A,6+K!(4PVU@4.X7Y9QCC(=FGJ5#EB"H?) MY!-7?(6#^"[PHU2FD0@#Z4(/0W8F-REX`E6^MRQ4OK>`1,8QHCJW"*E!&]I: M`#N[>X8_A3)FT_'D9A[H0E/2S M."3E\GM0PI46DJ[[+T]W@R7K602=S"YFVY9CPW^MA%+;GWMHER*%7&ZB`R6E M=L/0^7`EHDVX6LMMN-AKC<1DV/,(R MCD>\4;"P#!]@(-]1RX9N$A060O2Q[(IA+&./SCJ!\@`91)*()>AR&8.:PVHE M($33L000@0B1^K+0>RG7JR;Q*G!2*!D,#0H''!>.(!ENU0:.$:X&EO^VX:9P FO2["RUJ`,$#RHWXZ&0X-"@8$"4&BTZXN6`@1_/0?A5%"O\+_```` ` end >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 5:49:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F2B9437B405; Sun, 9 Dec 2001 05:49:27 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9Dg5o66895; Sun, 9 Dec 2001 05:42:05 -0800 (PST) (envelope-from ijliao) Date: Sun, 9 Dec 2001 05:42:05 -0800 (PST) From: Message-Id: <200112091342.fB9Dg5o66895@freefall.freebsd.org> To: yoshiaki@kt.rim.or.jp, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32642: Lame port, fix download site Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Lame port, fix download site State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sun Dec 9 05:41:52 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32642 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 5:49:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78E0037B41B; Sun, 9 Dec 2001 05:49:38 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9DhEk67118; Sun, 9 Dec 2001 05:43:14 -0800 (PST) (envelope-from ijliao) Date: Sun, 9 Dec 2001 05:43:14 -0800 (PST) From: Message-Id: <200112091343.fB9DhEk67118@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/32647: kdebase 2.2.2 build is not dependant on kdelibs 2.2.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: kdebase 2.2.2 build is not dependant on kdelibs 2.2.2 Responsible-Changed-From-To: freebsd-ports->kde Responsible-Changed-By: ijliao Responsible-Changed-When: Sun Dec 9 05:43:03 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32647 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 5:49:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D99537B419; Sun, 9 Dec 2001 05:49:38 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9DdTD66447; Sun, 9 Dec 2001 05:39:29 -0800 (PST) (envelope-from ijliao) Date: Sun, 9 Dec 2001 05:39:29 -0800 (PST) From: Message-Id: <200112091339.fB9DdTD66447@freefall.freebsd.org> To: avatar@mmlab.cse.yzu.edu.tw, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32644: upgrade port chinese/pine4 from 4.40 to 4.43 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: upgrade port chinese/pine4 from 4.40 to 4.43 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sun Dec 9 05:39:21 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32644 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 6:20: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EF8537B41B for ; Sun, 9 Dec 2001 06:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9EK1281273; Sun, 9 Dec 2001 06:20:01 -0800 (PST) (envelope-from gnats) Received: from pureftpd.org (r209m36.cybercable.tm.fr [195.132.209.36]) by hub.freebsd.org (Postfix) with SMTP id CC93137B419 for ; Sun, 9 Dec 2001 06:19:52 -0800 (PST) Received: (qmail 475 invoked by uid 0); 9 Dec 2001 14:20:19 -0000 Message-Id: <20011209142019.474.qmail@> Date: 9 Dec 2001 14:20:19 -0000 From: Frank Denis Reply-To: Frank Denis To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32650: port update: ftp/pure-ftpd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32650 >Category: ports >Synopsis: port update: ftp/pure-ftpd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 06:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD tidiable.home.rtchat.com 4.4-STABLE FreeBSD 4.4-STABLE #8: Sat Dec 8 22:39:11 CET 2001 root@tidiable.home.rtchat.com:/usr/obj/usr/src/sys/JEDI i386 >Description: diff -urN ports/ftp/pure-ftpd.orig/Makefile ports/ftp/pure-ftpd/Makefile --- ports/ftp/pure-ftpd.orig/Makefile Fri Nov 23 07:18:16 2001 +++ ports/ftp/pure-ftpd/Makefile Sun Dec 9 15:18:01 2001 @@ -6,7 +6,7 @@ # PORTNAME= pure-ftpd -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 CATEGORIES= ftp ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= pureftpd diff -urN ports/ftp/pure-ftpd.orig/distinfo ports/ftp/pure-ftpd/distinfo --- ports/ftp/pure-ftpd.orig/distinfo Fri Nov 23 07:18:16 2001 +++ ports/ftp/pure-ftpd/distinfo Sun Dec 9 15:18:17 2001 @@ -1 +1 @@ -MD5 (pure-ftpd-1.0.3.tar.gz) = 9b29ddbd00d5c47bf2f7cf0f70e77883 +MD5 (pure-ftpd-1.0.4.tar.gz) = b506e27f2e59db3a08a500d5aec473b9 >How-To-Repeat: - >Fix: Minor bug fixes. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 7:13: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from savvyworld.net (adsl-64-173-182-158.dsl.mtry01.pacbell.net [64.173.182.158]) by hub.freebsd.org (Postfix) with ESMTP id AC35537B405 for ; Sun, 9 Dec 2001 07:12:56 -0800 (PST) Received: (from root@localhost) by savvyworld.net (8.11.6/8.11.4) id fB9FCuj01010 for ports@FreeBSD.Org; Sun, 9 Dec 2001 07:12:56 -0800 (PST) (envelope-from eculp@EnContacto.Net) Received: from 64.173.182.155 ( [64.173.182.155]) as user eculp@EnContacto.Net by Mail.SavvyWorld.Net with HTTP; Sun, 9 Dec 2001 07:12:56 -0800 Message-ID: <1007910776.3c137f7852230@Mail.SavvyWorld.Net> Date: Sun, 9 Dec 2001 07:12:56 -0800 From: Edwin Culp To: ports@FreeBSD.Org Subject: x11-toolkits/qt23 (qt-2.3.1) (missing header) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 4.0-cvs X-Originating-IP: 64.173.182.155 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org While trying to be sure that all dependencies are up to date for kde2 I ran across this problem in updating qt-2.3.1' to 'qt-2.3.1_1 ed The Qt library is now built in ./lib The Qt examples are built in the directories in ./examples The Qt tutorials are built in the directories in ./tutorial Note: be sure to set $QTDIR to point to here or to wherever you move these directories. Enjoy! - the Trolltech team (cd /usr/ports/x11-toolkits/qt23/work/qt-2.3.1/src && /usr/bin/env QTDIR=/usr/ports/x11-toolkits/qt23/work/qt-2.3.1 LD_LIBRARY_PATH=/usr/ports/x11-toolkits/qt23/work/qt-2.3.1/lib PORTOBJFORMAT=elf PREFIX=/usr/X11R6 LOCALBASE=/usr/local X11BASE=/usr/X11R6 MOTIFLIB="-L/usr/X11R6/lib -lXm -lXp" LIBDIR="/usr/lib" CFLAGS="-O -pipe " CXXFLAGS=" -O -pipe " BSD_INSTALL_PROGRAM="install -c -s -o root -g wheel -m 555" BSD_INSTALL_SCRIPT="install -c -o root -g wheel -m 555" BSD_INSTALL_DATA="install -c -o root -g wheel -m 444" BSD_INSTALL_MAN="install -c -o root -g wheel -m 444" gmake -f Makefile opengl/qgl.o opengl/qgl_x11.o opengl/moc_qgl.o) c++ -c -I/usr/X11R6/include -I/usr/ports/x11-toolkits/qt23/work/qt-2.3.1/include -pthread -D_THREAD_SAFE -I/usr/X11R6/include -DQT_PREFIX=\"/usr/X11R6\" -pipe -fno-exceptions -O -pipe -I/usr/include -D_PTH_H_ -D_PTH_PTHREAD_H_ -frerun-cse-after-loop -O2 -fPIC -DQT_BUILTIN_GIF_READER=1 -DQT_XFT -fno-exceptions -I/usr/local/include -o opengl/qgl.o opengl/qgl.cpp In file included from opengl/qgl.cpp:38: opengl/qgl.h:63: GL/gl.h: No such file or directory opengl/qgl.h:64: GL/glu.h: No such file or directory opengl/qgl.cpp: In method `void QGLWidget::glDraw()': opengl/qgl.cpp:1604: `GL_FRONT_LEFT' undeclared (first use this function) opengl/qgl.cpp:1604: (Each undeclared identifier is reported only once opengl/qgl.cpp:1604: for each function it appears in.) opengl/qgl.cpp:1604: implicit declaration of function `int glDrawBuffer(...)' opengl/qgl.cpp:1616: implicit declaration of function `int glFlush(...)' opengl/qgl.cpp: In method `void QGLWidget::qglColor(const QColor &) const': opengl/qgl.cpp:1634: implicit declaration of function `int glColor3ub(...)' opengl/qgl.cpp:1636: implicit declaration of function `int glIndexi(...)' opengl/qgl.cpp: In method `void QGLWidget::qglClearColor(const QColor &) const': opengl/qgl.cpp:1654: `GLfloat' undeclared (first use this function) opengl/qgl.cpp:1654: syntax error before `.' opengl/qgl.cpp:1659: confused by earlier errors, bailing out gmake: *** [opengl/qgl.o] Error 1 *** Error code 2 Stop in /usr/ports/x11-toolkits/qt23. *** Error code 1 Stop in /usr/ports/x11-toolkits/qt23. *** Error code 1 Stop in /usr/ports/x11-toolkits/qt23. ** --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 7:40: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 451E937B416 for ; Sun, 9 Dec 2001 07:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9Fe2c09896; Sun, 9 Dec 2001 07:40:02 -0800 (PST) (envelope-from gnats) Date: Sun, 9 Dec 2001 07:40:02 -0800 (PST) Message-Id: <200112091540.fB9Fe2c09896@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: John Merryweather Cooper Subject: ports/32645 build broken on lang/fpc Reply-To: John Merryweather Cooper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32645; it has been noted by GNATS. From: John Merryweather Cooper To: "FreeBSD-gnats-submit @ freebsd . org" Cc: Kuang-che Wu , Mario Sergio Fujikawa Ferreira Subject: ports/32645 build broken on lang/fpc Date: Sun, 9 Dec 2001 07:31:28 -0800 --=_GlQXeG3ziZS81+ Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit See attached patch. This fixes things. There was a remaining BASH-ism in the configure script that need eradicating, and two files needed execute permission that weren't getting it. Also, resynced the build so repeated make deinstall reinstall sequences won't fail. P.S. lioux, this patch fixes the remaining issues that I discussed with you earlier. Use this patch. -- jmc || MacroHard -- \ || the perfection of form over | ----------------------------------|| substance, marketing over | Web: http://www.borgsdemons.com || performance, and greed over | || design . . . | =====================================================================/ Public Key: http://www.borgsdemons.com/Personal/pgpkey.asc | =====================================================================\ --=_GlQXeG3ziZS81+ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="fix-fpc1.txt" # This is a patch for fpc to update it to fpc.new # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # STEP 2: Run the 'patch' program with this file as input. # #### End of Preamble #### #### Patch data follows #### diff -u 'fpc/Makefile' 'fpc.new/Makefile' Index: ./Makefile --- ./Makefile Sat Dec 8 18:28:27 2001 +++ ./Makefile Sun Dec 9 07:16:55 2001 @@ -54,9 +54,10 @@ PLIST_SUB= LIBDIR=${LIBDIR} # install staging area -pre-install: +pre-patch: @${TAR} xf ${WRKSRC}/binary.tar --directory ${WRKSRC} @${TAR} xf ${WRKSRC}/sources.tar --directory ${WRKSRC} + @${RM} -f ${WRKSRC}/install.sh @${MKDIR} ${TEMP_PREFIX} #unpack base system @${TAR} zxf ${WRKSRC}/basefreebsd.tar.gz \ @@ -66,7 +67,6 @@ @${TAR} zxf ${WRKSRC}/basefreebsd.tar.gz \ --files-from ${FILESDIR}/tar-xlist \ --directory ${TEMP_PREFIX}/share - @${RM} -f ${TEMP_EXECDIR}/ppc386 #unpack units @${TAR} zxf ${WRKSRC}/utilfreebsd.tar.gz --directory ${TEMP_PREFIX} @${TAR} zxf ${WRKSRC}/unitsfclfreebsd.tar.gz --directory ${TEMP_PREFIX} @@ -99,8 +99,14 @@ ${TEMP_PREFIX}/share/examples @${RM} -rfd ${TEMP_EXMPDIR}/src .endif + +do-patch: #unpack and patch sample (working) configuration file @${PATCH} --dir ${TEMP_LIBDIR} < ${FILESDIR}/fix-samplecfg + +post-patch: + @${RM} -f ${TEMP_EXECDIR}/ppc386 + @${RM} -f ${TEMP_EXECDIR}/rstconv do-install: install-parse-plist install-run-scripts run-pkg-install-script diff -u 'fpc/files/fix-samplecfg' 'fpc.new/files/fix-samplecfg' Index: ./files/fix-samplecfg --- ./files/fix-samplecfg Thu Nov 29 07:44:42 2001 +++ ./files/fix-samplecfg Sun Dec 9 07:12:48 2001 @@ -1,5 +1,5 @@ --- samplecfg Sat Dec 23 15:02:40 2000 -+++ samplecfg.new Thu Nov 29 07:44:20 2001 ++++ samplecfg.new Sun Dec 9 07:12:15 2001 @@ -4,7 +4,7 @@ # # Generate Sample Free Pascal configuration file @@ -9,6 +9,15 @@ echo 'Usage :' echo 'samplecfg fpcdir confdir' echo 'fpcdir = Path where FPC is installed' +@@ -29,7 +29,7 @@ + # + if [ -f $thefile ] ; then + mv $thefile $thefile.orig >/dev/null 2>&1 +- if [ $? == 0 ]; then ++ if [ $? -eq 0 ]; then + echo Saved old config to $thefile.orig + else + echo Could not save old config. Bailing out... @@ -38,9 +38,15 @@ fi diff -u 'fpc/pkg-install' 'fpc.new/pkg-install' Index: ./pkg-install --- ./pkg-install Sat Dec 8 18:28:27 2001 +++ ./pkg-install Sun Dec 9 07:16:12 2001 @@ -9,12 +9,15 @@ LN=/bin/ln SH=/bin/sh +CHMOD=/bin/chmod case "$ACTION" in POST-INSTALL) - @${LN} -sf ${LIBDIR}/ppc386 ${PKG_PREFIX}/bin/ppc386 - @${SH} ${LIBDIR}/samplecfg ${LIBDIR} ${PKG_PREFIX}/etc + ${CHMOD} +x ${LIBDIR}/ppc386 + ${CHMOD} +x ${LIBDIR}/samplecfg + ${LN} -sf ${LIBDIR}/ppc386 ${PKG_PREFIX}/bin/ppc386 + ${SH} ${LIBDIR}/samplecfg ${LIBDIR} ${PKG_PREFIX}/etc ;; DEINSTALL) diff -u 'fpc/pkg-plist' 'fpc.new/pkg-plist' Index: ./pkg-plist --- ./pkg-plist Sat Dec 8 18:28:27 2001 +++ ./pkg-plist Sat Dec 8 23:22:54 2001 @@ -8,15 +8,12 @@ bin/h2pas bin/plex bin/postw32 -bin/ppc386 bin/ppdep bin/ppudump bin/ppufiles bin/ppumove bin/ptop bin/pyacc -bin/rstconv -etc/ppc386.cfg lib/fpc/1.0.4/msg/errord.msg lib/fpc/1.0.4/msg/errore.msg lib/fpc/1.0.4/msg/errores.msg #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Sun Dec 9 07:21:19 2001 # Generated by : makepatch 2.00 # Recurse directories : Yes # p 'Makefile' 5454 1007911015 0100644 # p 'files/fix-samplecfg' 794 1007910768 0100644 # p 'pkg-install' 427 1007910972 0100644 # p 'pkg-plist' 126580 1007882574 0100644 #### End of ApplyPatch data #### #### End of Patch kit [created: Sun Dec 9 07:21:19 2001] #### #### Checksum: 140 4120 51876 #### --=_GlQXeG3ziZS81+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 8:20: 5 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C0B637B416 for ; Sun, 9 Dec 2001 08:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9GK1516798; Sun, 9 Dec 2001 08:20:01 -0800 (PST) (envelope-from gnats) Received: from mistral.imasy.or.jp (mistral.imasy.or.jp [202.227.24.84]) by hub.freebsd.org (Postfix) with ESMTP id 8547737B419; Sun, 9 Dec 2001 08:10:04 -0800 (PST) Received: (from yohta@localhost) by mistral.imasy.or.jp (8.11.6/8.11.6/mistral) id fB9G9h918341; Mon, 10 Dec 2001 01:09:43 +0900 (JST) (envelope-from yohta) Message-Id: <200112091609.fB9G9h918341@mistral.imasy.or.jp> Date: Mon, 10 Dec 2001 01:09:43 +0900 (JST) From: Yoshihiko Sarumaru Reply-To: Yoshihiko Sarumaru To: FreeBSD-gnats-submit@freebsd.org Cc: ache@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32651: a small patch to obtain socks5 support to ports/ftp/ncftp2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32651 >Category: ports >Synopsis: a small patch to obtain socks5 support to ports/ftp/ncftp2 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 08:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yoshihiko Sarumaru >Release: FreeBSD 4.4-STABLE i386 >Organization: Internet Mutual Aid Society Yokohama >Environment: System: FreeBSD mistral.imasy.or.jp 4.4-STABLE FreeBSD 4.4-STABLE #2: Thu Dec 6 01:59:25 JST 2001 yohta@mistral.imasy.or.jp:/usr/obj/usr/src/sys/PCG-505R i386 >Description: Ncftp2 has its own SOCKS5 support code in source code and user can enable the code by adding --enable-socks5 option to configure. In other ported softwares seems have a manner to use WITH_SOCKS to specify SOCKS5 support (ports/net/licq, ports/irc/xchat, and others). This patch let ncftp2 to use this manner to use SOCKS5. >How-To-Repeat: >Fix: --- Makefile.bak Wed Apr 12 14:31:17 2000 +++ Makefile Mon Dec 10 00:59:01 2001 @@ -16,6 +16,10 @@ CONFIGURE_ENV= ac_cv_func_getmaxyx=yes ac_cv_lib_readline=yes MAN1= ncftp2.1 +.if defined(WITH_SOCKS) +CONFIGURE_ARGS+= --enable-socks5 +.endif + do-install: $(INSTALL_PROGRAM) $(WRKSRC)/ncftp $(PREFIX)/bin/ncftp2 $(INSTALL_MAN) $(WRKSRC)/ncftp.1 $(PREFIX)/man/man1/ncftp2.1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 9: 0: 6 2001 Delivered-To: freebsd-ports@freebsd.org Received: from trex.fandom.net (CPE-203-45-79-235.nsw.bigpond.net.au [203.45.79.235]) by hub.freebsd.org (Postfix) with ESMTP id D9BB937B405 for ; Sun, 9 Dec 2001 09:00:04 -0800 (PST) Received: from localhost.fandom.net ([127.0.0.1] helo=fandom.net) by trex.fandom.net with smtp (Exim 3.22 #1) id 16D7Ob-0003ye-00 for ports@freebsd.org; Mon, 10 Dec 2001 04:05:45 +1100 Received: from 192.168.167.2 (proxying for 192.168.167.5) (SquirrelMail authenticated user daeron@fandom.net) by 192.168.167.1 with HTTP; Mon, 10 Dec 2001 04:05:45 +1100 (EST) Message-ID: <3177.192.168.167.2.1007917545.squirrel@192.168.167.1> Date: Mon, 10 Dec 2001 04:05:45 +1100 (EST) Subject: KDreamSite From: "Daeron" To: ports@freebsd.org X-Mailer: SquirrelMail (version 1.0.6) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi Guys :) , KDreamSite is still demanding kdelibs ver.1.1 As most people would now be using either ver. 2.2.2 or 2.2 , could someone have a look at it sometime? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 9: 9:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48D0B37B405; Sun, 9 Dec 2001 09:09:28 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9H07e19708; Sun, 9 Dec 2001 09:00:07 -0800 (PST) (envelope-from ijliao) Date: Sun, 9 Dec 2001 09:00:07 -0800 (PST) From: Message-Id: <200112091700.fB9H07e19708@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, ache@FreeBSD.org Subject: Re: ports/32651: a small patch to obtain socks5 support to ports/ftp/ncftp2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: a small patch to obtain socks5 support to ports/ftp/ncftp2 Responsible-Changed-From-To: freebsd-ports->ache Responsible-Changed-By: ijliao Responsible-Changed-When: Sun Dec 9 08:59:58 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32651 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 10:21:59 2001 Delivered-To: freebsd-ports@freebsd.org Received: from post.webmailer.de (natwar.webmailer.de [192.67.198.70]) by hub.freebsd.org (Postfix) with ESMTP id 063D137B416 for ; Sun, 9 Dec 2001 10:21:55 -0800 (PST) Received: from master (pD9049478.dip.t-dialin.net [217.4.148.120]) by post.webmailer.de (8.9.3/8.8.7) with ESMTP id TAA12325 for ; Sun, 9 Dec 2001 19:17:36 +0100 (MET) From: "=?ISO-8859-1?Q?Boris_K=F6ster_?=" Organization: X-ITEC IT-Consulting http://www.x-itec.de To: freebsd-ports@freebsd.org Date: Sun, 9 Dec 2001 19:20:26 +0100 MIME-Version: 1.0 Subject: /usr/ports/devel/SN broken Message-ID: <3C13B97A.27375.F8C231@localhost> X-mailer: Pegasus Mail for Win32 (v4.0, beta 40) Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: Quoted-printable Content-description: Mail message body Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Making all in src gmake[3]: Entering directory `/usr/ports/devel/SN/work/compile/grep/src' gcc -DHAVE_CONFIG_H -I. -I/usr/ports/devel/SN/work/SN452-source/grep/src -= I.. -I ../intl -DLOCALEDIR=3D\"/usr/local/SN/share/locale\" -g -O2 -c /usr/por= ts/devel /SN/work/SN452-source/grep/src/regex.c /usr/ports/devel/SN/work/SN452-source/grep/src/regex.c: In function `regex= _compi le': /usr/ports/devel/SN/work/SN452-source/grep/src/regex.c:2186: syntax error = before `wt' /usr/ports/devel/SN/work/SN452-source/grep/src/regex.c:2189: `wt' undeclar= ed (fi rst use in this function) /usr/ports/devel/SN/work/SN452-source/grep/src/regex.c:2189: (Each undecla= red id entifier is reported only once /usr/ports/devel/SN/work/SN452-source/grep/src/regex.c:2189: for each func= tion i t appears in.) gmake[3]: *** [regex.o] Error 1 gmake[3]: Leaving directory `/usr/ports/devel/SN/work/compile/grep/src' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/devel/SN/work/compile/grep' gmake[1]: *** [all-recursive-am] Error 2 gmake[1]: Leaving directory `/usr/ports/devel/SN/work/compile/grep' gmake: *** [all-grep] Error 2 *** Error code 2 Stop in /usr/ports/devel/SN. *** Error code 1 Stop in /usr/ports/devel/SN. *** Error code 1 Stop in /usr/ports/devel/SN. *** Error code 1 -- Boris K=F6ster [C / C++ / PHP / FreeBSD / Security / Consulting] Maintainer of IPSEC Mini-HowTo | QSP | and more. HTTP://www.x-itec.de * koester@x-itec.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 10:37:42 2001 Delivered-To: freebsd-ports@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id 3D90237B416 for ; Sun, 9 Dec 2001 10:37:40 -0800 (PST) Received: from 200.181.49.91 (unknown [200.181.49.91]) by heaven.gigo.com (Postfix) with ESMTP id A0B10B8B9 for ; Sun, 9 Dec 2001 10:37:28 -0800 (PST) Received: (qmail 1468 invoked by uid 1001); 9 Dec 2001 18:35:12 -0000 Message-ID: <20011209183512.1467.qmail@exxodus.fedaykin.here> Date: Sun, 9 Dec 2001 16:34:50 -0200 From: Mario Sergio Fujikawa Ferreira To: David O'Brien Cc: portmgr@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: GNOME/KDE issue with disc1 References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011209012306.A96687@dragon.nuxi.com>; from obrien@FreeBSD.ORG on Sun, Dec 09, 2001 at 01:22:44AM -0800 X-Operating-System: FreeBSD 4.4-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hummm, I am certainly no release expert but what is the role of /usr/src/release/scripts/print-cdrom-packages.sh According to the comments inside the script # This script prints out the list of "minimum required packages" for # a given CDROM number, that numer currently referring to the 4 CD # "official set" published by BSDi. If there is no minimum package # set for the given CDROM, or none is known, the script will exit # with a error code of 1. At some point, this script should be extende d # to at least cope with other official CD distributions, like non-US on es. It seems that this script is either informative as to what should go in a CDROM or mandatory as to what really goes in a CDROM. If it is mandatory, we just need to adapt/tweak this script with what we want to go in a release. No flames, I am just trying to get some insight here. -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 11: 9:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BB5537B41C; Sun, 9 Dec 2001 11:09:29 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9J1vP36286; Sun, 9 Dec 2001 11:01:57 -0800 (PST) (envelope-from dd) Date: Sun, 9 Dec 2001 11:01:57 -0800 (PST) From: Message-Id: <200112091901.fB9J1vP36286@freefall.freebsd.org> To: dd@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32608: Whoops.. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Whoops.. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: dd Responsible-Changed-When: Sun Dec 9 11:01:29 PST 2001 Responsible-Changed-Why: ports-related http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32608 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 11: 9:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3F9C37B421; Sun, 9 Dec 2001 11:09:29 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9Ixvi35769; Sun, 9 Dec 2001 10:59:57 -0800 (PST) (envelope-from dd) Date: Sun, 9 Dec 2001 10:59:57 -0800 (PST) From: Message-Id: <200112091859.fB9Ixvi35769@freefall.freebsd.org> To: dd@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32493: [palm/malsync checksum mismatch] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Old Synopsis: New Synopsis: [palm/malsync checksum mismatch] Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: dd Responsible-Changed-When: Sun Dec 9 10:59:09 PST 2001 Responsible-Changed-Why: misfiled http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32493 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 11:39:33 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 90B5F37B41D; Sun, 9 Dec 2001 11:39:28 -0800 (PST) Received: (from tom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9JZ3c44252; Sun, 9 Dec 2001 11:35:03 -0800 (PST) (envelope-from tom) Date: Sun, 9 Dec 2001 11:35:03 -0800 (PST) From: Message-Id: <200112091935.fB9JZ3c44252@freefall.freebsd.org> To: tom@FreeBSD.org, freebsd-ports@FreeBSD.org, wollman@FreeBSD.org Subject: Re: ports/32575: www/mod_auth_kerb does not compile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/mod_auth_kerb does not compile Responsible-Changed-From-To: freebsd-ports->wollman Responsible-Changed-By: tom Responsible-Changed-When: Sun Dec 9 11:34:25 PST 2001 Responsible-Changed-Why: Over to MAINTAINER http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32575 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 12:21: 1 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 911D437B416; Sun, 9 Dec 2001 12:20:54 -0800 (PST) Received: from bsd.havk.org (user-24-214-88-13.knology.net [24.214.88.13]) by mail.hiwaay.net (8.12.1/8.12.1) with ESMTP id fB9KKohM032371; Sun, 9 Dec 2001 14:20:51 -0600 (CST) Received: by bsd.havk.org (Postfix, from userid 1001) id 1F5641A787; Sun, 9 Dec 2001 14:20:50 -0600 (CST) Date: Sun, 9 Dec 2001 14:20:50 -0600 From: Steve Price To: Mario Sergio Fujikawa Ferreira Cc: "David O'Brien" , portmgr@FreeBSD.org, ports@FreeBSD.org Subject: Re: GNOME/KDE issue with disc1 Message-ID: <20011209142050.M46667@bsd.havk.org> References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011209183512.1467.qmail@exxodus.fedaykin.here>; from lioux@FreeBSD.org on Sun, Dec 09, 2001 at 04:34:50PM -0200 X-Operating-System: FreeBSD 4.4-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Dec 09, 2001 at 04:34:50PM -0200, Mario Sergio Fujikawa Ferreira wrote: > Hummm, > > I am certainly no release expert but what is the role of > /usr/src/release/scripts/print-cdrom-packages.sh I use this script to split up the packages for the release discs. Here's the one I used for the 4.4 release. bento:/a/steve/4.4/RELEASE/i386/scripts/print-cdrom-packages.sh I believe this is a slightly modified version of the one that I got from olgeni upon Jordan's recomendation. > It seems that this script is either informative as to what > should go in a CDROM or mandatory as to what really goes in a CDROM. If it is > mandatory, we just need to adapt/tweak this script with what we want to go in > a release. Indeed. I'd rather not see KDE or GNOME at all on the first disc but some don't feel that way and will probably call me a heretic for saying it. Jordan wrote print-cdrom-packages.sh as a yardstick that I use when doing the "split" to guage what people want on the discs for a release. Other than that the squeaky wheel usually get greased first. No offense to David but he's usually one of them not because he's trying to be a pain mind you he just cares a great deal about the release and doesn't mind hounding me until I make sure I get vim for instance on the first disc. Before we go off willy-nilly making changes to this script we need to take some sort of poll (like I did several releases ago) to get a sense for what people feel *must* be on the first disc. The nice-to-haves can go on the other discs. And just so people understand I define must-haves as being those things that absolutely must be present on the first boot of the box. For instance, the kernel, init, and sh are definitely essential for the first boot whereas xspringies and ocaml are not. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 14:20:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 082E637B419 for ; Sun, 9 Dec 2001 14:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9MK2K68853; Sun, 9 Dec 2001 14:20:02 -0800 (PST) (envelope-from gnats) Received: from steinbit.troll.no (steinbit.troll.no [213.203.59.113]) by hub.freebsd.org (Postfix) with ESMTP id 83A3B37B41B for ; Sun, 9 Dec 2001 14:10:16 -0800 (PST) Received: (from root@localhost) by steinbit.troll.no (8.11.6/8.11.3) id fB9M73779097; Sun, 9 Dec 2001 23:07:03 +0100 (CET) (envelope-from ebakke) Message-Id: <200112092207.fB9M73779097@steinbit.troll.no> Date: Sun, 9 Dec 2001 23:07:03 +0100 (CET) From: "Erik H. Bakke" Reply-To: "Erik H. Bakke" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32653: Added patches to improve USB scanner supportOB Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32653 >Category: ports >Synopsis: Added patches to improve USB scanner supportOB >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 14:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Erik H. Bakke >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD steinbit.troll.no 5.0-CURRENT FreeBSD 5.0-CURRENT #14: Sun Dec 9 20:12:22 CET 2001 root@steinbit.troll.no:/usr/src/sys/i386/compile/WETLANDER i386 >Description: Added two patches to improve the support for USB scanners on FreeBSD. The port maintainer is ports@freebsd.org, so I submit my patches here. The patches rely on pr kern/32652 for the new ioctl. >How-To-Repeat: >Fix: diff -ruN sane-backends.bak/files/patch-backend_snapscan.c sane-backends/files/patch-backend_snapscan.c --- sane-backends.bak/files/patch-backend_snapscan.c Thu Jan 1 01:00:00 1970 +++ sane-backends/files/patch-backend_snapscan.c Sun Dec 9 22:52:08 2001 @@ -0,0 +1,19 @@ +--- backend/snapscan.c.bak Sun Dec 9 22:51:01 2001 ++++ backend/snapscan.c Sun Dec 9 22:51:01 2001 +@@ -1016,7 +1016,11 @@ + + vendor[0] = model[0] = '\0'; + ++#if defined( __FreeBSD__ ) ++ if(strstr (name, "uscanner")) ++#else /* __FreeBSD__ */ + if((strstr (name, "usb")) || (strstr (name, "USB"))) ++#endif /* __FreeBSD__ */ + { + DBG (DL_VERBOSE, "%s: Detected (kind of) an USB device\n", me); + +@@ -3540,3 +3544,4 @@ + * Revision 1.1 1997/10/13 02:25:54 charter + * Initial revision + * */ ++ diff -ruN sane-backends.bak/files/patch-sanei_sanei_usb.c sane-backends/files/patch-sanei_sanei_usb.c --- sane-backends.bak/files/patch-sanei_sanei_usb.c Thu Jan 1 01:00:00 1970 +++ sane-backends/files/patch-sanei_sanei_usb.c Sun Dec 9 22:49:43 2001 @@ -0,0 +1,42 @@ +--- sanei/sanei_usb.c.bak Sun Dec 9 22:40:14 2001 ++++ sanei/sanei_usb.c Sun Dec 9 22:49:04 2001 +@@ -112,6 +112,9 @@ + SANE_Word * product) + { + SANE_Word vendorID, productID; ++#if defined( __FreeBSD__ ) ++ u_int32_t vendorproductID; ++#endif /* __FreeBSD__ */ + + #if defined (__linux__) + #define IOCTL_SCANNER_VENDOR _IOR('U', 0x20, int) +@@ -145,8 +148,24 @@ + if (product) + *product = productID; + #else /* not defined (__linux__) */ ++#if defined( __FreeBSD__ ) ++#define USB_GET_DEVICE_ID _IOR('U', 140, int) ++ /* read the vendo and product IDs via the IOCTLs */ ++ if( ioctl( fd, USB_GET_DEVICE_ID, &vendorproductID ) == -1 ) ++ { ++ DBG( 3, "sanei_usb_get_vendor_product: ioctl( productid ) of fd %d " ++ "failed: %s\n", fd, strerror( errno ) ); ++ } ++ productID = vendorproductID & 0xffff; ++ vendorID = ( vendorproductID >> 16 ) & 0xffff; ++ if( vendor ) ++ *vendor = vendorID; ++ if( product ) ++ *product = productID; ++#else /* __FreeBSD__ */ + vendorID = 0; + productID = 0; ++#endif /* __FreeBSD__ */ + #endif /* not defined (__linux__) */ + + if (!vendorID || !productID) +@@ -309,3 +328,4 @@ + *size = write_size; + return SANE_STATUS_GOOD; + } ++ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 14:39:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C78AD37B405; Sun, 9 Dec 2001 14:39:28 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9McmH71700; Sun, 9 Dec 2001 14:38:48 -0800 (PST) (envelope-from petef) Date: Sun, 9 Dec 2001 14:38:48 -0800 (PST) From: Message-Id: <200112092238.fB9McmH71700@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, anders@FreeBSD.org Subject: Re: ports/32643: update mod_watch from 2.4 to 3.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update mod_watch from 2.4 to 3.0 Responsible-Changed-From-To: freebsd-ports->anders Responsible-Changed-By: petef Responsible-Changed-When: Sun Dec 9 14:38:41 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32643 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 15:10:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E93E437B416 for ; Sun, 9 Dec 2001 15:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9NA1977574; Sun, 9 Dec 2001 15:10:01 -0800 (PST) (envelope-from gnats) Received: from mailhost.topic.com.au (topic-gw2.topic.com.au [203.37.31.2]) by hub.freebsd.org (Postfix) with ESMTP id 7211737B405 for ; Sun, 9 Dec 2001 15:04:57 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mailhost.topic.com.au (Postfix) with ESMTP id 72C1BFF046 for ; Mon, 10 Dec 2001 10:04:52 +1100 (EST) Received: from sideshowbob.tsa (sideshowbob.tsa [10.1.0.201]) by mailhost.topic.com.au (Postfix) with ESMTP id 178BCFF026 for ; Mon, 10 Dec 2001 10:04:47 +1100 (EST) Received: by sideshowbob.tsa (Postfix, from userid 1013) id 70B1E1E0F; Mon, 10 Dec 2001 10:05:42 +1100 (EST) Message-Id: <20011209230542.70B1E1E0F@sideshowbob.tsa> Date: Mon, 10 Dec 2001 10:05:42 +1100 (EST) From: Matthew Hawkins Reply-To: Matthew Hawkins To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32655: New Port: fluxbox x11 window manager Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32655 >Category: ports >Synopsis: New Port: fluxbox x11 window manager >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 15:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Matthew Hawkins >Release: FreeBSD 4.4-STABLE i386 >Organization: tSA Group Pty Ltd >Environment: System: FreeBSD sideshowbob.tsa 4.4-STABLE FreeBSD 4.4-STABLE #2: Mon Dec 3 10:32:13 EST 2001 root@sideshowbob.tsa:/usr/obj/usr/src/sys/SSB i386 >Description: Fluxbox is a new x11 window manager under active development, based on blackbox but with extra functionality including pwm-like tabs, customisable titlebar button placement and more. >How-To-Repeat: cvsup ports, notice fluxbox is not there ;-) >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 15:10:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EA2B37B419 for ; Sun, 9 Dec 2001 15:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9NA2R77583; Sun, 9 Dec 2001 15:10:02 -0800 (PST) (envelope-from gnats) Received: from mcqueen.wolfsburg.de (pns.wobline.de [212.68.68.5]) by hub.freebsd.org (Postfix) with ESMTP id 594D437B405 for ; Sun, 9 Dec 2001 15:05:17 -0800 (PST) Received: from colt.ncptiddische.net (ppp-219.wobline.de [212.68.69.230]) by mcqueen.wolfsburg.de (8.11.3/8.11.3/tw-20010821) with ESMTP id fB9N5EA21980 for ; Mon, 10 Dec 2001 00:05:14 +0100 Received: from tisys.org (poison.ncptiddische.net [192.168.0.5]) by colt.ncptiddische.net (8.11.6/8.11.6) with ESMTP id fB9N66X07261 for ; Mon, 10 Dec 2001 00:06:07 +0100 (CET) (envelope-from nils@tisys.org) Received: (from nils@localhost) by tisys.org (8.11.6/8.11.6) id fB9N51H20315; Mon, 10 Dec 2001 00:05:01 +0100 (CET) (envelope-from nils) Message-Id: <200112092305.fB9N51H20315@tisys.org> Date: Mon, 10 Dec 2001 00:05:01 +0100 (CET) From: Nils Holland Reply-To: Nils Holland To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32656: New Entry for handbook bibliography hardware reference section Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32656 >Category: ports >Synopsis: New Entry for handbook bibliography hardware reference section >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 15:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Nils Holland >Release: FreeBSD 4.4-STABLE i386 >Organization: Ti Systems >Environment: System: FreeBSD poison.ncptiddische.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 8 10:38:50 CET 2001 root@poison.ncptiddische.net:/usr/obj/usr/src/sys/POISON i386 >Description: Add "The Indispensable PC Hardware Book" by Hans-Peter Messmer to the bibliography section of the handbook. I own the German version of this book, and it's really great. About 1000 pages full of accurate and well-written information. So I had teh feeling that this one should not be missing from our bibliography section. Notice that I added the fourth edition of the book. This is not yet available, but will be released on the 28th of December, according to Addison-Wesley. It can already be pre-ordered AW and most online booksellers, so I thought I might well add this soon-to-be-released edition instead of the two years old, current edition. >How-To-Repeat: Not much to be repeated here... >Fix: Apply the following diff to handbook/bibliography/chapter.sgml *** chapter.sgml Thu Nov 15 10:04:20 2001 --- chapter_new.sgml Sun Dec 9 23:53:56 2001 *************** *** 409,414 **** --- 409,421 ---- Reading, Mass: Addison-Wesley Pub. Co., 1996. ISBN 0-201-47950-8 + + Messmer, Hans-Peter. The Indispensable PC Hardware Book + , 4th Ed. + Reading, Mass: Addison-Wesley Pub. Co., 2002. ISBN + 0-201-59616-4 + + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 15:10:52 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 0546537B405; Sun, 9 Dec 2001 15:10:49 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fB9NAmC36272; Sun, 9 Dec 2001 15:10:48 -0800 (PST) (envelope-from obrien) Date: Sun, 9 Dec 2001 15:10:48 -0800 From: "David O'Brien" To: Steve Price Cc: Mario Sergio Fujikawa Ferreira , portmgr@FreeBSD.org, ports@FreeBSD.org Subject: Re: GNOME/KDE issue with disc1 Message-ID: <20011209151048.B92399@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011209142050.M46667@bsd.havk.org>; from steve@FreeBSD.org on Sun, Dec 09, 2001 at 02:20:50PM -0600 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Dec 09, 2001 at 02:20:50PM -0600, Steve Price wrote: > Before we go off willy-nilly making changes to this script we > need to take some sort of poll (like I did several releases > ago) to get a sense for what people feel *must* be on the first > disc. Maybe we need an exclude list also. I know an underlaying issue is keeping dependencies together since we don't handle dependencies across CD's. GNOME and KDE are two very popular desktops and thus their basic bits certainly need to be on disc1. But due to the dependency issue, "lesser" related ports make the disc1 cut-off -- things like the 7.2MB (*compressed*) GNOME user documentation (which can easily be found on a website). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 15:20: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B8A537B416 for ; Sun, 9 Dec 2001 15:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB9NK1a79151; Sun, 9 Dec 2001 15:20:01 -0800 (PST) (envelope-from gnats) Date: Sun, 9 Dec 2001 15:20:01 -0800 (PST) Message-Id: <200112092320.fB9NK1a79151@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Nils Holland Subject: Re: ports/32656: New Entry for handbook bibliography hardware reference section Reply-To: Nils Holland Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32656; it has been noted by GNATS. From: Nils Holland To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/32656: New Entry for handbook bibliography hardware reference section Date: Mon, 10 Dec 2001 00:18:57 +0100 Oops, five minutes past midnight in Germany... Of course, this was supposed to go to "docs" and not to "ports". I would appreciate it if someone could fire it over to "docs". Sorry that I sent this to the wrong place - I guess I need to get more sleep... Greetings Nils On Mon, Dec 10, 2001 at 12:05:01AM +0100, Nils Holland stood up and spoke: > > >Number: 32656 > >Category: ports > >Synopsis: New Entry for handbook bibliography hardware reference section > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: change-request > >Submitter-Id: current-users > >Arrival-Date: Sun Dec 09 15:10:01 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: Nils Holland > >Release: FreeBSD 4.4-STABLE i386 > >Organization: > Ti Systems > >Environment: > System: FreeBSD poison.ncptiddische.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 8 10:38:50 CET 2001 root@poison.ncptiddische.net:/usr/obj/usr/src/sys/POISON i386 > > > >Description: > Add "The Indispensable PC Hardware Book" by Hans-Peter Messmer to > the bibliography section of the handbook. I own the German version > of this book, and it's really great. About 1000 pages full of accurate > and well-written information. So I had teh feeling that this one should > not be missing from our bibliography section. Notice that I added > the fourth edition of the book. This is not yet available, but > will be released on the 28th of December, according to Addison-Wesley. > It can already be pre-ordered AW and most online booksellers, so I > thought I might well add this soon-to-be-released edition instead > of the two years old, current edition. > > >How-To-Repeat: > Not much to be repeated here... > > >Fix: > Apply the following diff to handbook/bibliography/chapter.sgml > > > *** chapter.sgml Thu Nov 15 10:04:20 2001 > --- chapter_new.sgml Sun Dec 9 23:53:56 2001 > *************** > *** 409,414 **** > --- 409,421 ---- > Reading, Mass: Addison-Wesley Pub. Co., 1996. ISBN > 0-201-47950-8 > > + > + Messmer, Hans-Peter. The Indispensable PC Hardware Book > + , 4th Ed. > + Reading, Mass: Addison-Wesley Pub. Co., 2002. ISBN > + 0-201-59616-4 > + > + > > > > > >Release-Note: > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > -- Nils Holland Ti Systems - FreeBSD in Tiddische, Germany http://www.tisys.org * nils@tisys.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 16:20:23 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 64DB737B41B for ; Sun, 9 Dec 2001 16:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA0K0986886; Sun, 9 Dec 2001 16:20:00 -0800 (PST) (envelope-from gnats) Received: from cathbad.happygiraffe.net (myrddin.demon.co.uk [158.152.54.180]) by hub.freebsd.org (Postfix) with ESMTP id C5C7337B41D for ; Sun, 9 Dec 2001 16:15:53 -0800 (PST) Received: by cathbad.happygiraffe.net (Postfix, from userid 1001) id 81B9C5DF4; Mon, 10 Dec 2001 00:15:10 +0000 (GMT) Message-Id: <20011210001510.81B9C5DF4@cathbad.happygiraffe.net> Date: Mon, 10 Dec 2001 00:15:10 +0000 (GMT) From: Dominic Mitchell Reply-To: Dominic Mitchell To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32658: MAINTAINER-UPDATE for graphics/cthumb Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32658 >Category: ports >Synopsis: MAINTAINER-UPDATE for graphics/cthumb >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 16:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dominic Mitchell >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cathbad.happygiraffe.net 5.0-CURRENT FreeBSD 5.0-CURRENT #12: Sat Dec 8 12:14:09 GMT 2001 root@cathbad.happygiraffe.net:/usr/obj/usr/src/sys/CATHBAD i386 >Description: This is the latest version of cthumb. >How-To-Repeat: n/a >Fix: Here's the diff to the existing port. No new files added or removed to the port itself. diff -urN /usr/ports/graphics/cthumb/Makefile cthumb/Makefile --- /usr/ports/graphics/cthumb/Makefile Sat Aug 18 10:07:50 2001 +++ cthumb/Makefile Mon Dec 10 00:04:43 2001 @@ -6,7 +6,7 @@ # PORTNAME= cthumb -PORTVERSION= 3.4 +PORTVERSION= 4.0 CATEGORIES= graphics www MASTER_SITES= http://puchol.com/cpg/software/cthumb/ @@ -29,12 +29,15 @@ classic.theme \ crosshair.theme \ film.theme \ + flaps.theme \ float-medium.theme \ float-more.theme \ float-thick.theme \ float.theme \ + ithumb.theme \ neat-round.theme \ neat-square.theme \ + oak.theme \ postcard.theme \ shiny-tube.theme \ simpleframe.theme \ @@ -42,6 +45,7 @@ slides-clean.theme \ slides-huge.theme \ slides-small.theme \ + spotlight.theme \ tv-large.theme \ tv.theme diff -urN /usr/ports/graphics/cthumb/distinfo cthumb/distinfo --- /usr/ports/graphics/cthumb/distinfo Sat Aug 18 10:07:50 2001 +++ cthumb/distinfo Sun Dec 9 23:45:10 2001 @@ -1 +1 @@ -MD5 (cthumb-3.4.tar.gz) = eb4399d9f28a58dfda3009cfacc8bb40 +MD5 (cthumb-4.0.tar.gz) = 729a1a566288aba5413ec320fa969ac8 diff -urN /usr/ports/graphics/cthumb/pkg-plist cthumb/pkg-plist --- /usr/ports/graphics/cthumb/pkg-plist Sat Aug 18 10:07:51 2001 +++ cthumb/pkg-plist Mon Dec 10 00:07:04 2001 @@ -1,33 +1,38 @@ bin/cthumb -share/cthumb/blue-steel.theme/theme.conf -share/cthumb/blue-steel.theme/top.png +share/cthumb/blue-steel.theme/1.gif share/cthumb/blue-steel.theme/bot.png share/cthumb/blue-steel.theme/left.png +share/cthumb/blue-steel.theme/next.png +share/cthumb/blue-steel.theme/prev.png share/cthumb/blue-steel.theme/right.png -share/cthumb/classic-clips.theme/theme.conf -share/cthumb/classic-clips.theme/top.png +share/cthumb/blue-steel.theme/theme.conf +share/cthumb/blue-steel.theme/top.png +share/cthumb/classic-clips.theme/1.gif share/cthumb/classic-clips.theme/bot.png share/cthumb/classic-clips.theme/left.png +share/cthumb/classic-clips.theme/next.png +share/cthumb/classic-clips.theme/prev.png share/cthumb/classic-clips.theme/right.png -share/cthumb/classic.theme/theme.conf -share/cthumb/classic.theme/top.png +share/cthumb/classic-clips.theme/theme.conf +share/cthumb/classic-clips.theme/top.png +share/cthumb/classic.theme/1.gif share/cthumb/classic.theme/bot.png share/cthumb/classic.theme/left.png +share/cthumb/classic.theme/next.png +share/cthumb/classic.theme/prev.png share/cthumb/classic.theme/right.png -share/cthumb/crosshair.theme/theme.conf -share/cthumb/crosshair.theme/top.png +share/cthumb/classic.theme/theme.conf +share/cthumb/classic.theme/top.png +share/cthumb/crosshair.theme/1.gif share/cthumb/crosshair.theme/bot.png share/cthumb/crosshair.theme/left.png +share/cthumb/crosshair.theme/next.png +share/cthumb/crosshair.theme/prev.png share/cthumb/crosshair.theme/right.png -share/cthumb/film.theme/top-1.png -share/cthumb/film.theme/top-2.png -share/cthumb/film.theme/top-3.png -share/cthumb/film.theme/top-4.png -share/cthumb/film.theme/top-5.png -share/cthumb/film.theme/top-6.png -share/cthumb/film.theme/top-7.png -share/cthumb/film.theme/top-8.png -share/cthumb/film.theme/top-9.png +share/cthumb/crosshair.theme/theme.conf +share/cthumb/crosshair.theme/top.png +share/cthumb/film.theme/1.gif +share/cthumb/film.theme/back.png share/cthumb/film.theme/bot-1.png share/cthumb/film.theme/bot-2.png share/cthumb/film.theme/bot-3.png @@ -37,82 +42,171 @@ share/cthumb/film.theme/bot-7.png share/cthumb/film.theme/bot-8.png share/cthumb/film.theme/bot-9.png +share/cthumb/film.theme/next.png +share/cthumb/film.theme/prev.png share/cthumb/film.theme/theme.conf -share/cthumb/float-medium.theme/theme.conf -share/cthumb/float-medium.theme/top.png +share/cthumb/film.theme/top-1.png +share/cthumb/film.theme/top-2.png +share/cthumb/film.theme/top-3.png +share/cthumb/film.theme/top-4.png +share/cthumb/film.theme/top-5.png +share/cthumb/film.theme/top-6.png +share/cthumb/film.theme/top-7.png +share/cthumb/film.theme/top-8.png +share/cthumb/film.theme/top-9.png +share/cthumb/flaps.theme/1.gif +share/cthumb/flaps.theme/bot.png +share/cthumb/flaps.theme/left.png +share/cthumb/flaps.theme/next.png +share/cthumb/flaps.theme/prev.png +share/cthumb/flaps.theme/right.png +share/cthumb/flaps.theme/theme.conf +share/cthumb/flaps.theme/top.png +share/cthumb/float-medium.theme/1.gif share/cthumb/float-medium.theme/bot.png share/cthumb/float-medium.theme/left.png +share/cthumb/float-medium.theme/next.png +share/cthumb/float-medium.theme/prev.png share/cthumb/float-medium.theme/right.png -share/cthumb/float-more.theme/top.png +share/cthumb/float-medium.theme/theme.conf +share/cthumb/float-medium.theme/top.png +share/cthumb/float-more.theme/1.gif share/cthumb/float-more.theme/bot.png share/cthumb/float-more.theme/left.png +share/cthumb/float-more.theme/next.png +share/cthumb/float-more.theme/prev.png share/cthumb/float-more.theme/right.png share/cthumb/float-more.theme/theme.conf -share/cthumb/float-thick.theme/top.png +share/cthumb/float-more.theme/top.png +share/cthumb/float-thick.theme/1.gif share/cthumb/float-thick.theme/bot.png share/cthumb/float-thick.theme/left.png +share/cthumb/float-thick.theme/next.png +share/cthumb/float-thick.theme/prev.png share/cthumb/float-thick.theme/right.png share/cthumb/float-thick.theme/theme.conf -share/cthumb/float.theme/top.png +share/cthumb/float-thick.theme/top.png +share/cthumb/float.theme/1.gif share/cthumb/float.theme/bot.png share/cthumb/float.theme/left.png +share/cthumb/float.theme/next.png +share/cthumb/float.theme/prev.png share/cthumb/float.theme/right.png share/cthumb/float.theme/theme.conf +share/cthumb/float.theme/top.png +share/cthumb/ithumb.theme/1.gif +share/cthumb/ithumb.theme/bot.png +share/cthumb/ithumb.theme/left.png +share/cthumb/ithumb.theme/next.png +share/cthumb/ithumb.theme/prev.png +share/cthumb/ithumb.theme/right.png +share/cthumb/ithumb.theme/theme.conf +share/cthumb/ithumb.theme/top.png +share/cthumb/neat-round.theme/1.gif share/cthumb/neat-round.theme/bot.png share/cthumb/neat-round.theme/left.png +share/cthumb/neat-round.theme/next.png +share/cthumb/neat-round.theme/prev.png share/cthumb/neat-round.theme/right.png share/cthumb/neat-round.theme/theme.conf share/cthumb/neat-round.theme/top.png +share/cthumb/neat-square.theme/1.gif share/cthumb/neat-square.theme/bot.png share/cthumb/neat-square.theme/left.png +share/cthumb/neat-square.theme/next.png +share/cthumb/neat-square.theme/prev.png share/cthumb/neat-square.theme/right.png share/cthumb/neat-square.theme/theme.conf share/cthumb/neat-square.theme/top.png -share/cthumb/postcard.theme/theme.conf -share/cthumb/postcard.theme/top.png +share/cthumb/oak.theme/1.gif +share/cthumb/oak.theme/Copyright +share/cthumb/oak.theme/bot.png +share/cthumb/oak.theme/left.png +share/cthumb/oak.theme/next.png +share/cthumb/oak.theme/prev.png +share/cthumb/oak.theme/right.png +share/cthumb/oak.theme/theme.conf +share/cthumb/oak.theme/top.png +share/cthumb/postcard.theme/1.gif share/cthumb/postcard.theme/bot.png share/cthumb/postcard.theme/left.png +share/cthumb/postcard.theme/next.png +share/cthumb/postcard.theme/prev.png share/cthumb/postcard.theme/right.png -share/cthumb/shiny-tube.theme/top.png +share/cthumb/postcard.theme/theme.conf +share/cthumb/postcard.theme/top.png +share/cthumb/shiny-tube.theme/1.gif share/cthumb/shiny-tube.theme/bot.png share/cthumb/shiny-tube.theme/left.png +share/cthumb/shiny-tube.theme/next.png +share/cthumb/shiny-tube.theme/prev.png share/cthumb/shiny-tube.theme/right.png share/cthumb/shiny-tube.theme/theme.conf -share/cthumb/simpleframe.theme/theme.conf -share/cthumb/simpleframe.theme/top.png +share/cthumb/shiny-tube.theme/top.png +share/cthumb/simpleframe.theme/1.gif share/cthumb/simpleframe.theme/bot.png share/cthumb/simpleframe.theme/left.png +share/cthumb/simpleframe.theme/next.png +share/cthumb/simpleframe.theme/prev.png share/cthumb/simpleframe.theme/right.png +share/cthumb/simpleframe.theme/theme.conf +share/cthumb/simpleframe.theme/top.png +share/cthumb/slides-big.theme/1.gif share/cthumb/slides-big.theme/bot.png share/cthumb/slides-big.theme/left.png +share/cthumb/slides-big.theme/next.png +share/cthumb/slides-big.theme/prev.png share/cthumb/slides-big.theme/right.png share/cthumb/slides-big.theme/theme.conf share/cthumb/slides-big.theme/top.png +share/cthumb/slides-clean.theme/1.gif share/cthumb/slides-clean.theme/bot.png share/cthumb/slides-clean.theme/left.png +share/cthumb/slides-clean.theme/next.png +share/cthumb/slides-clean.theme/prev.png share/cthumb/slides-clean.theme/right.png share/cthumb/slides-clean.theme/theme.conf share/cthumb/slides-clean.theme/top.png -share/cthumb/slides-huge.theme/top.png +share/cthumb/slides-huge.theme/1.gif share/cthumb/slides-huge.theme/bot.png share/cthumb/slides-huge.theme/left.png +share/cthumb/slides-huge.theme/next.png +share/cthumb/slides-huge.theme/prev.png share/cthumb/slides-huge.theme/right.png share/cthumb/slides-huge.theme/theme.conf -share/cthumb/slides-small.theme/top.png +share/cthumb/slides-huge.theme/top.png +share/cthumb/slides-small.theme/1.gif share/cthumb/slides-small.theme/bot.png share/cthumb/slides-small.theme/left.png +share/cthumb/slides-small.theme/next.png +share/cthumb/slides-small.theme/prev.png share/cthumb/slides-small.theme/right.png share/cthumb/slides-small.theme/theme.conf -share/cthumb/tv-large.theme/theme.conf -share/cthumb/tv-large.theme/top.png +share/cthumb/slides-small.theme/top.png +share/cthumb/spotlight.theme/1.gif +share/cthumb/spotlight.theme/bot.png +share/cthumb/spotlight.theme/left.png +share/cthumb/spotlight.theme/next.png +share/cthumb/spotlight.theme/prev.png +share/cthumb/spotlight.theme/right.png +share/cthumb/spotlight.theme/theme.conf +share/cthumb/spotlight.theme/top.png +share/cthumb/tv-large.theme/1.gif share/cthumb/tv-large.theme/bot.png share/cthumb/tv-large.theme/left.png +share/cthumb/tv-large.theme/next.png +share/cthumb/tv-large.theme/prev.png share/cthumb/tv-large.theme/right.png -share/cthumb/tv.theme/theme.conf -share/cthumb/tv.theme/top.png +share/cthumb/tv-large.theme/theme.conf +share/cthumb/tv-large.theme/top.png +share/cthumb/tv.theme/1.gif share/cthumb/tv.theme/bot.png share/cthumb/tv.theme/left.png +share/cthumb/tv.theme/next.png +share/cthumb/tv.theme/prev.png share/cthumb/tv.theme/right.png +share/cthumb/tv.theme/theme.conf +share/cthumb/tv.theme/top.png share/doc/cthumb/ChangeLog share/doc/cthumb/INSTALL share/doc/cthumb/README @@ -124,12 +218,15 @@ @dirrm share/cthumb/classic.theme @dirrm share/cthumb/crosshair.theme @dirrm share/cthumb/film.theme +@dirrm share/cthumb/flaps.theme @dirrm share/cthumb/float-medium.theme @dirrm share/cthumb/float-more.theme @dirrm share/cthumb/float-thick.theme @dirrm share/cthumb/float.theme +@dirrm share/cthumb/ithumb.theme @dirrm share/cthumb/neat-round.theme @dirrm share/cthumb/neat-square.theme +@dirrm share/cthumb/oak.theme @dirrm share/cthumb/postcard.theme @dirrm share/cthumb/shiny-tube.theme @dirrm share/cthumb/simpleframe.theme @@ -137,6 +234,7 @@ @dirrm share/cthumb/slides-clean.theme @dirrm share/cthumb/slides-huge.theme @dirrm share/cthumb/slides-small.theme +@dirrm share/cthumb/spotlight.theme @dirrm share/cthumb/tv-large.theme @dirrm share/cthumb/tv.theme @dirrm share/cthumb >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 16:27:52 2001 Delivered-To: freebsd-ports@freebsd.org Received: from fep6.cogeco.net (smtp.cogeco.net [216.221.81.25]) by hub.freebsd.org (Postfix) with ESMTP id 77A5A37B417; Sun, 9 Dec 2001 16:27:46 -0800 (PST) Received: from earth.upton.net (d141-18-230.home.cgocable.net [24.141.18.230]) by fep6.cogeco.net (Postfix) with SMTP id 395393B7E; Sun, 9 Dec 2001 19:27:45 -0500 (EST) Date: Sun, 9 Dec 2001 19:27:45 -0500 From: Paul Murphy To: "David O'Brien" Cc: steve@FreeBSD.ORG, lioux@FreeBSD.ORG, portmgr@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: GNOME/KDE issue with disc1 Message-Id: <20011209192745.3597e2dc.pnmurphy@cogeco.ca> In-Reply-To: <20011209151048.B92399@dragon.nuxi.com> References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> <20011209151048.B92399@dragon.nuxi.com> X-Mailer: Sylpheed version 0.6.5claws8 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, 9 Dec 2001 15:10:48 -0800 "David O'Brien" wrote: > On Sun, Dec 09, 2001 at 02:20:50PM -0600, Steve Price wrote: > > Before we go off willy-nilly making changes to this script we > > need to take some sort of poll (like I did several releases > > ago) to get a sense for what people feel *must* be on the first > > disc. > > Maybe we need an exclude list also. I know an underlaying issue is > keeping dependencies together since we don't handle dependencies across > CD's. GNOME and KDE are two very popular desktops and thus their basic > bits certainly need to be on disc1. But due to the dependency issue, > "lesser" related ports make the disc1 cut-off -- things like the 7.2MB > (*compressed*) GNOME user documentation (which can easily be found on a > website). > Personally I would think disc1 should take a "lets get up and running" attitude, and contain a "simpler" desktop. KDE and GNOME are way too bloated for a _basic_ install. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 16:44:34 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id CDAC237B416; Sun, 9 Dec 2001 16:44:22 -0800 (PST) Received: from bsd.havk.org (user-24-214-88-13.knology.net [24.214.88.13]) by mail.hiwaay.net (8.12.1/8.12.1) with ESMTP id fBA0iChM030178; Sun, 9 Dec 2001 18:44:13 -0600 (CST) Received: by bsd.havk.org (Postfix, from userid 1001) id B4DC51A789; Sun, 9 Dec 2001 18:44:11 -0600 (CST) Date: Sun, 9 Dec 2001 18:44:11 -0600 From: Steve Price To: Paul Murphy Cc: "David O'Brien" , lioux@FreeBSD.ORG, portmgr@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: GNOME/KDE issue with disc1 Message-ID: <20011209184411.Z46667@bsd.havk.org> References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> <20011209151048.B92399@dragon.nuxi.com> <20011209192745.3597e2dc.pnmurphy@cogeco.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011209192745.3597e2dc.pnmurphy@cogeco.ca>; from pnmurphy@cogeco.ca on Sun, Dec 09, 2001 at 07:27:45PM -0500 X-Operating-System: FreeBSD 4.4-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Dec 09, 2001 at 07:27:45PM -0500, Paul Murphy wrote: >> Maybe we need an exclude list also. I know an underlaying issue is >> keeping dependencies together since we don't handle dependencies across >> CD's. GNOME and KDE are two very popular desktops and thus their basic >> bits certainly need to be on disc1. But due to the dependency issue, >> "lesser" related ports make the disc1 cut-off -- things like the 7.2MB >> (*compressed*) GNOME user documentation (which can easily be found on a >> website). >> > > Personally I would think disc1 should take a "lets get up and running" > attitude, and contain a "simpler" desktop. KDE and GNOME are way too > bloated for a _basic_ install. That was along the lines of what I was thinking as well. What we really need is a "sysinstall" that could handle packages across multiple discs. In the meantime couldn't we do something like put the must-haves on disc 1, put KDE on disc 3, and put GNOME on disc 4. The user still states their desire to setup KDE or GNOME during install and then a "first (re)boot" script would be run and ask for the appropriate disc to finish adding the desktop. In fact if we had a smart enough "first (re)boot" script when the machine came up for the first time we could use information like whether they were doing a net install or from a disc to show them a list of all the packages from which they can choose. If they are doing a disc-based install we'd have to prompt them to stick in the right disc but this would give us greater flexibility on what bits go on which disc and we could optimize the disc usage without having to put multiple copies of gd, xpm, png, and a bunch of other ports on every disc just to satisfy dependencies. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 16:56:24 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id DD56937B417; Sun, 9 Dec 2001 16:56:21 -0800 (PST) Received: from bsd.havk.org (user-24-214-88-13.knology.net [24.214.88.13]) by mail.hiwaay.net (8.12.1/8.12.1) with ESMTP id fBA0uHhM013938; Sun, 9 Dec 2001 18:56:17 -0600 (CST) Received: by bsd.havk.org (Postfix, from userid 1001) id 358F91A787; Sun, 9 Dec 2001 18:56:16 -0600 (CST) Date: Sun, 9 Dec 2001 18:56:16 -0600 From: Steve Price To: Paul Murphy Cc: "David O'Brien" , lioux@FreeBSD.ORG, portmgr@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: GNOME/KDE issue with disc1 Message-ID: <20011209185616.A46667@bsd.havk.org> References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> <20011209151048.B92399@dragon.nuxi.com> <20011209192745.3597e2dc.pnmurphy@cogeco.ca> <20011209184411.Z46667@bsd.havk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011209184411.Z46667@bsd.havk.org>; from steve@FreeBSD.ORG on Sun, Dec 09, 2001 at 06:44:11PM -0600 X-Operating-System: FreeBSD 4.4-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Man I hate to followup to my own post but... In short I think we should address the crux of the problem - no way to handle package dependencies across multiple discs. Solve this problem once and we won't have to keep coming back to it on each release. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 17:59:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A9FF37B405; Sun, 9 Dec 2001 17:59:29 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA1pJj99116; Sun, 9 Dec 2001 17:51:19 -0800 (PST) (envelope-from lioux) Date: Sun, 9 Dec 2001 17:51:19 -0800 (PST) From: Message-Id: <200112100151.fBA1pJj99116@freefall.freebsd.org> To: kcwu@ck.tp.edu.tw, lioux@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32645: build broken on lang/fpc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: build broken on lang/fpc State-Changed-From-To: open->closed State-Changed-By: lioux State-Changed-When: Sun Dec 9 17:50:57 PST 2001 State-Changed-Why: Fix submitted by maintainer, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32645 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 18:11:39 2001 Delivered-To: freebsd-ports@freebsd.org Received: from lists.unixathome.org (lists.unixathome.org [210.48.103.158]) by hub.freebsd.org (Postfix) with ESMTP id EA21437B405 for ; Sun, 9 Dec 2001 18:11:34 -0800 (PST) Received: from wocker (lists.unixathome.org [210.48.103.158]) by lists.unixathome.org (8.11.6/8.11.6) with ESMTP id fBA2BR542631 for ; Mon, 10 Dec 2001 15:11:27 +1300 (NZDT) (envelope-from dan@langille.org) From: "Dan Langille" Organization: novice in training To: ports@freebsd.org Date: Sun, 9 Dec 2001 21:11:25 -0500 MIME-Version: 1.0 Subject: WINE fails to build Reply-To: dan@langille.org Message-ID: <3C13D37D.13381.20F704C7@localhost> X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'm building wine on a 4.3-RELEASE box from an NFS mounted ports tree. Here's an extract from the build. The full text can be found at http://langille.org/wine.fails.txt (106496 bytes). Clues please? [root@laptop:/usr/ports/emulators/wine] # make install >> Wine-20011108.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://metalab.unc.edu/pub/Linux/ALPHA/wine/developme nt/. Receiving Wine-20011108.tar.gz (6573122 bytes): 100% 6573122 bytes transferred in 52.7 seconds (121.70 kBps) ===> Extracting for wine-2001.11.08_1 >> Checksum OK for Wine-20011108.tar.gz. ===> wine-2001.11.08_1 depends on executable: gmake - found ===> wine-2001.11.08_1 depends on shared library: Xpm.4 - found ===> Patching for wine-2001.11.08_1 ===> Applying FreeBSD patches for wine-2001.11.08_1 ===> Configuring for wine-2001.11.08_1 [snip] cc -c -I. -I. -I../../include -I../../include -O -pipe -g -Wall - mpreferred-st ack-boundary=2 -fPIC -D__WINE__ -D_REENTRANT -D_THREAD_SAFE - I/usr/X11R6/includ e -o string.o string.c string.c:5: wctype.h: No such file or directory string.c: In function `StrRChrIW': string.c:380: warning: implicit declaration of function `towupper' gmake[2]: *** [string.o] Error 1 gmake[2]: Leaving directory `/usr/ports/emulators/wine/work/wine- 20011108/dlls/s hlwapi' gmake[1]: *** [shlwapi/libshlwapi.so] Error 2 gmake[1]: Leaving directory `/usr/ports/emulators/wine/work/wine- 20011108/dlls' gmake: *** [dlls] Error 2 *** Error code 2 Stop in /usr/ports/emulators/wine. *** Error code 1 Stop in /usr/ports/emulators/wine. *** Error code 1 Stop in /usr/ports/emulators/wine. *** Error code 1 Stop in /usr/ports/emulators/wine. -- Dan Langille The FreeBSD Diary - http://freebsddiary.org/ - practical examples To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 18:15:18 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 05BD737B50E; Sun, 9 Dec 2001 18:15:13 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBA2F3A02091; Sun, 9 Dec 2001 18:15:03 -0800 (PST) (envelope-from obrien) Date: Sun, 9 Dec 2001 18:15:03 -0800 From: "David O'Brien" To: Paul Murphy Cc: steve@FreeBSD.ORG, lioux@FreeBSD.ORG, portmgr@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: GNOME/KDE issue with disc1 Message-ID: <20011209181503.A1921@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> <20011209151048.B92399@dragon.nuxi.com> <20011209192745.3597e2dc.pnmurphy@cogeco.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011209192745.3597e2dc.pnmurphy@cogeco.ca>; from pnmurphy@cogeco.ca on Sun, Dec 09, 2001 at 07:27:45PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Dec 09, 2001 at 07:27:45PM -0500, Paul Murphy wrote: > Personally I would think disc1 should take a "lets get up and running" > attitude, and contain a "simpler" desktop. KDE and GNOME are way too > bloated for a _basic_ install. I still use the same desktop and window manager I have for the past 8 years (which means not GNOME or KDE) so I'm not giving favors to either -- but we cannot ignore that these are the two most popular desktops today. W/o the added functionality those two give over my own CTWM, we cannot attract and please those of the M$ generation. Maybe I should be saying it simpler -- that getting KDE and GNOME installed from get go *is* a basic install today. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 18:15:49 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 6A8A937B417; Sun, 9 Dec 2001 18:15:36 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBA2FYT02103; Sun, 9 Dec 2001 18:15:34 -0800 (PST) (envelope-from obrien) Date: Sun, 9 Dec 2001 18:15:34 -0800 From: "David O'Brien" To: Paul Murphy Cc: steve@FreeBSD.ORG, lioux@FreeBSD.ORG, portmgr@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: GNOME/KDE issue with disc1 Message-ID: <20011209181534.B1921@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> <20011209151048.B92399@dragon.nuxi.com> <20011209192745.3597e2dc.pnmurphy@cogeco.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011209192745.3597e2dc.pnmurphy@cogeco.ca>; from pnmurphy@cogeco.ca on Sun, Dec 09, 2001 at 07:27:45PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Dec 09, 2001 at 07:27:45PM -0500, Paul Murphy wrote: > Personally I would think disc1 should take a "lets get up and running" > attitude, and contain a "simpler" desktop. KDE and GNOME are way too > bloated for a _basic_ install. To follow up on this, We however can do a little bit better about what KDE and GNOME bits we put on the first CDROM -- I got this private email (I don't believe they will mind if I quote part of it anonymously): So far as KDE goes, it is not at all monolithic and is already quite well organized into modules which are easily broken up from each other. You will get a working, if sparse, desktop including a browser, file manager, and editors, with just kdelibs and kdebase (and Qt of course). You'll get a pretty much full featured and powerful "average joe user" desktop with the addition of say, kdemultimedia and kdenetwork. You could have a really quite powerful office or home office desktop, by adding back the KOffice package. I'm basing this, by the way, on a general feeling of which packages KDE users find most useful - the exact arrangement is what we're here to discuss. libs + base = 18 Mb libs + base + network + multimedia = 27 Mb libs + base + network + multimedia + office = 36 Mb Even this would be a very useful Desktop Environment, and it's half the size of installing every package that's required (the script said something around 79 Mb) -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 18:23:23 2001 Delivered-To: freebsd-ports@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id 1B67537B419; Sun, 9 Dec 2001 18:23:17 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 9E12E9B08; Sun, 9 Dec 2001 21:21:16 -0500 (EST) Date: Sun, 9 Dec 2001 21:21:16 -0500 From: Will Andrews To: David O'Brien Cc: ports@FreeBSD.org, kde-freebsd@lists.csociety.org Subject: Re: GNOME/KDE issue with disc1 Message-ID: <20011209212116.C23826@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: David O'Brien , ports@FreeBSD.org, kde-freebsd@lists.csociety.org References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> <20011209151048.B92399@dragon.nuxi.com> <20011209192745.3597e2dc.pnmurphy@cogeco.ca> <20011209181534.B1921@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011209181534.B1921@dragon.nuxi.com> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Dec 09, 2001 at 06:15:34PM -0800, David O'Brien wrote: > To follow up on this, > > We however can do a little bit better about what KDE and GNOME bits we > put on the first CDROM -- I got this private email (I don't believe they > will mind if I quote part of it anonymously): It was not a private email, it was To: kde-freebsd@lists.csociety.org (see http://lists.csociety.org/listinfo/kde-freebsd/ for more info) and Cc:'d to you. Message here: http://lists.csociety.org/pipermail/kde-freebsd/2001-December/000319.html > So far as KDE goes, it is not at all monolithic and is already quite > well organized into modules which are easily broken up from each > other. You will get a working, if sparse, desktop including a > browser, file manager, and editors, with just kdelibs and kdebase > (and Qt of course). > > You'll get a pretty much full featured and powerful "average joe > user" desktop with the addition of say, kdemultimedia and kdenetwork. > > You could have a really quite powerful office or home office desktop, > by adding back the KOffice package. I'm basing this, by the way, on > a general feeling of which packages KDE users find most useful - the > exact arrangement is what we're here to discuss. > > libs + base = 18 Mb > libs + base + network + multimedia = 27 Mb > libs + base + network + multimedia + office = 36 Mb > > Even this would be a very useful Desktop Environment, and it's half > the size of installing every package that's required (the script said > something around 79 Mb) The above is certainly correct. I guess it depends on how useful a KDE people would want from disc1. I *will* object to removing any more than libs+base. Of course, if sysinstall is fixed to work with more than one CD as far as deps go, it's all moot. But I'm not volunteering to fix sysinstall -- are you? Regards, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 19:20: 7 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E00B437B417 for ; Sun, 9 Dec 2001 19:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA3K1O16807; Sun, 9 Dec 2001 19:20:01 -0800 (PST) (envelope-from gnats) Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id DAB5C37B417 for ; Sun, 9 Dec 2001 19:14:21 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBA3Dhn15125; Sun, 9 Dec 2001 22:13:43 -0500 (EST) (envelope-from alane) Message-Id: <200112100313.fBA3Dhn15125@wwweasel.geeksrus.net> Date: Sun, 9 Dec 2001 22:13:43 -0500 (EST) From: Alan E Reply-To: Alan E To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32660: kdebase-2.2.2: patch-ksysguardd.c fails to apply Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32660 >Category: ports >Synopsis: kdebase-2.2.2: patch-ksysguardd.c fails to apply >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 19:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alan E >Release: FreeBSD 4.4-STABLE i386 >Organization: Geeksrus.NET >Environment: System: FreeBSD wwweasel.geeksrus.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:14:12 EST 2001 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 >Description: ===> Patching for kdebase-2.2.2 ===> Applying FreeBSD patches for kdebase-2.2.2 1 out of 1 hunks failed--saving rejects to ksysguard/ksysguardd/FreeBSD/ksysguardd.c.rej >How-To-Repeat: cd $PORTSDIR/x11/kdebase2; make patch >Fix: I'm working on it. :) Will go to petef for commit tonight or tomorrow. >Release-Note: >Audit-Trail: >Unformatted: >> Patch patch-ksysguardd.c failed to apply cleanly. >> Patch(es) patch-apm.c patch-apm.h patch-conf.c patch-conf.h patch-diskstat.c patch-diskstat.h patch-kdm::kfrontend::genkdmconf.c applied cleanly. *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 19:30: 7 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CA1337B417 for ; Sun, 9 Dec 2001 19:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA3U2W17699; Sun, 9 Dec 2001 19:30:02 -0800 (PST) (envelope-from gnats) Date: Sun, 9 Dec 2001 19:30:02 -0800 (PST) Message-Id: <200112100330.fBA3U2W17699@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Alan Eldridge Subject: Re: ports/32660: kdebase-2.2.2: patch-ksysguardd.c fails to apply Reply-To: Alan Eldridge Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32660; it has been noted by GNATS. From: Alan Eldridge To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Pete Fritchman Subject: Re: ports/32660: kdebase-2.2.2: patch-ksysguardd.c fails to apply Date: Sun, 9 Dec 2001 22:25:49 -0500 On Sun, Dec 09, 2001 at 10:13:43PM -0500, Alan E wrote: >cd $PORTSDIR/x11/kdebase2; make patch >>Fix: >I'm working on it. :) Will go to petef for commit tonight or tomorrow. > Problem is that patch was made right after header of file, so the RCS $Id$ is in the patch. >>Release-Note: >>Audit-Trail: >>Unformatted: > >> Patch patch-ksysguardd.c failed to apply cleanly. > >> Patch(es) patch-apm.c patch-apm.h patch-conf.c patch-conf.h > patch-diskstat.c > patch-diskstat.h patch-kdm::kfrontend::genkdmconf.c applied cleanly. > *** Error code 1 > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-ports" in the body of the message -- Alan Eldridge #include free(sklyarov); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 20:21:27 2001 Delivered-To: freebsd-ports@freebsd.org Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by hub.freebsd.org (Postfix) with ESMTP id 67A3837B405 for ; Sun, 9 Dec 2001 20:21:25 -0800 (PST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2:290:27ff:fe98:c0b7]) by white.imgsrc.co.jp (Postfix) with ESMTP id 7D1A224D22 for ; Mon, 10 Dec 2001 13:21:24 +0900 (JST) Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [2001:218:422:2:230:48ff:fe41:161b]) by black.imgsrc.co.jp (Postfix) with ESMTP id 5CBF4D1401 for ; Mon, 10 Dec 2001 13:21:23 +0900 (JST) Date: Mon, 10 Dec 2001 13:20:57 +0900 Message-ID: <7madwremdy.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: Ports Team Subject: Re: www/mod_php4 with bison-1.29 In-Reply-To: <7msnb18zjy.wl@waterblue.imgsrc.co.jp> References: <7msnb18zjy.wl@waterblue.imgsrc.co.jp> User-Agent: Wanderlust/2.6.0 (Twist And Shout) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.1 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org At Mon, 26 Nov 2001 12:52:30 +0000 (UTC), > On my environment (with devel/bison of 1.29), I cannot build > www/mod_php4. It seems these patches are required. Could you please > check these in? FWIW, my PR to PHP team is closed with fix in CVS. http://bugs.php.net/bug.php?id=14228 -- Jun Kuriyama // IMG SRC, Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 21:10: 5 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 29E4437B41B for ; Sun, 9 Dec 2001 21:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA5A0032788; Sun, 9 Dec 2001 21:10:00 -0800 (PST) (envelope-from gnats) Received: from c418236-a.clmba1.mo.home.com (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id EE02D37B416 for ; Sun, 9 Dec 2001 21:09:08 -0800 (PST) Received: from babylon.merseine.nu (babylon.domain.local [192.168.1.5]) by c418236-a.clmba1.mo.home.com (8.11.6/8.11.6) with ESMTP id fBA596L07778 for ; Sun, 9 Dec 2001 23:09:06 -0600 (CST) (envelope-from ishmael@home.com) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.6/8.11.6) id fBA595715898; Sun, 9 Dec 2001 23:09:05 -0600 (CST) (envelope-from ishmael) Message-Id: <200112100509.fBA595715898@babylon.merseine.nu> Date: Sun, 9 Dec 2001 23:09:05 -0600 (CST) From: Jeremy Norris Reply-To: Jeremy Norris To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32663: kdelibs2 port potentially conflicts with libtool port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32663 >Category: ports >Synopsis: kdelibs2 port potentially conflicts with libtool port >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 21:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jeremy Norris >Release: FreeBSD 4.4-STABLE i386 >Organization: None >Environment: System: FreeBSD babylon.merseine.nu 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:23:18 CST 2001 ishmael@babylon.merseine.nu:/usr/obj/usr/src/sys/BABYLON i386 >Description: I happened to be installing kdelibs2 port today (version 2.2.2) and noticed that it installs ${PREFIX}/include/ltdl.h. ${PREFIX} defaults to ${X11BASE} for this port; however if one sets ${X11BASE} = ${LOCALBASE}, as I do, this causes a conflict. Furthermore, this could cause a conflict even in standard situations, if software that used libltdl searched ${X11BASE}/include before ${LOCALBASE}/include, as these two versions of ltdl.h differ and could cause incompatibilities. >How-To-Repeat: Set LOCALBASE and X11BASE to the same value in /etc/make.conf and build/install ports/devel/libtool and ports/x11/kdelibs2. >Fix: I don't have a fix (kde's build system is quite complex). However, kdelibs2 should either be taught not to install ltdl.h or install it somewhere besides ${PREFIX}/include. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 21:42: 1 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (f53.law12.hotmail.com [64.4.19.53]) by hub.freebsd.org (Postfix) with ESMTP id 71AF537B405 for ; Sun, 9 Dec 2001 21:41:59 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 9 Dec 2001 21:41:59 -0800 Received: from 24.67.253.204 by lw12fd.law12.hotmail.msn.com with HTTP; Mon, 10 Dec 2001 05:41:59 GMT X-Originating-IP: [24.67.253.204] From: "Dan B" To: ports@FreeBSD.ORG Subject: arm-gcc 3.x? Date: Mon, 10 Dec 2001 05:41:59 +0000 Mime-Version: 1.0 Content-Type: text/html Message-ID: X-OriginalArrivalTime: 10 Dec 2001 05:41:59.0315 (UTC) FILETIME=[62C4FE30:01C1813D] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org
Hey all,
 
You guys are doing a GREAT job keeping ports up to date. But i'm interested in Game Boy Advance development wich requires arm-gcc-3.x. I'm just wondering if you guys are working on it, if so, do you have an approximate ETA?
Thanks very much
 
-dan


Get your FREE download of MSN Explorer at http://explorer.msn.com
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 21:57:22 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ws4-4.us4.outblaze.com (205-158-62-105.outblaze.com [205.158.62.105]) by hub.freebsd.org (Postfix) with SMTP id 43CF337B417 for ; Sun, 9 Dec 2001 21:57:20 -0800 (PST) Received: (qmail 5751 invoked by uid 1001); 10 Dec 2001 05:57:20 -0000 Message-ID: <20011210055720.5750.qmail@linuxmail.org> Content-Type: text/plain; charset="iso-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-Mailer: MIME-tools 5.41 (Entity 5.404) Received: from ws4-4.us4.outblaze.com for [24.67.181.37] via web-mailer on Mon, 10 Dec 2001 13:57:20 +0800 From: "Dan B" To: ports@freebsd.org Date: Mon, 10 Dec 2001 13:57:20 +0800 Subject: arm-gcc-3.x? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hey, You guys are doing a great job with the ports. I'm interested in Game Boy Advance development wich requires arm-gcc-3.x, so I'm wondering if it's being worked on. If so, do you have an approximate ETA? Thanks very much. keep up the great work, -dan B -- Get your free email from www.linuxmail.org Powered by Outblaze To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 22:39:23 2001 Delivered-To: freebsd-ports@freebsd.org Received: from creme-brulee.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id AFA6937B419 for ; Sun, 9 Dec 2001 22:39:21 -0800 (PST) Received: from shumai.marcuscom.com (marcus@shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.11.6/8.11.6) with ESMTP id fBA6YVJ48871; Mon, 10 Dec 2001 01:34:32 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: bison port From: Joe Clarke To: obrien@nuxi.com Cc: freebsd-ports@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0 (Preview Release) Date: 10 Dec 2001 01:39:21 -0500 Message-Id: <1007966362.48232.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Not sure if it applies here, but should PORTEPOCH be incremeted when bison moved from 1.30 back to 1.28? Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 9 23:40: 5 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DAB537B41B for ; Sun, 9 Dec 2001 23:40:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA7e0r55390; Sun, 9 Dec 2001 23:40:00 -0800 (PST) (envelope-from gnats) Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 481AC37B41D for ; Sun, 9 Dec 2001 23:36:30 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBA7ZoT18403; Mon, 10 Dec 2001 02:35:50 -0500 (EST) (envelope-from alane) Message-Id: <200112100735.fBA7ZoT18403@wwweasel.geeksrus.net> Date: Mon, 10 Dec 2001 02:35:50 -0500 (EST) From: Alan E Reply-To: Alan E To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32664: open-motif-devel-2.1.30 registers itself as openmotif-devel-2.1.30-4-MIL Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32664 >Category: ports >Synopsis: open-motif-devel-2.1.30 registers itself as openmotif-devel-2.1.30-4-MIL >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 09 23:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alan E >Release: FreeBSD 4.4-STABLE i386 >Organization: Geeksrus.NET >Environment: System: FreeBSD wwweasel.geeksrus.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:14:12 EST 2001 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 >Description: The package name and version that get registered in the package db do not follow the FBSD standard. The pkgdb utility from the portupgrade package exits with a fatal error upon encounting the package name. >How-To-Repeat: 1. install the open-motif-devel-2.1.30.tgz package. 2. run pkgdb -F. >Fix: None yet. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 0:21: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E662437B41D for ; Mon, 10 Dec 2001 00:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA8K0H63832; Mon, 10 Dec 2001 00:20:00 -0800 (PST) (envelope-from gnats) Received: from mailoutvl21.berlin.de (mail.berlin.de [195.243.105.33]) by hub.freebsd.org (Postfix) with ESMTP id 9207A37B41B for ; Mon, 10 Dec 2001 00:16:11 -0800 (PST) Received: from herceg.de ([213.7.61.27]) by mailoutvl21.berlin.de (InterMail vK.4.03.05.00 201-232-132 license c0e4b842f1eddc5308d584e55543c802) with ESMTP id <20011210081729.FVAY27460.mailoutvl21@herceg.de> for ; Mon, 10 Dec 2001 09:17:29 +0100 Received: (from eserte@localhost) by vran.herceg.de (8.11.4/8.9.3) id fBA8FB504736; Mon, 10 Dec 2001 09:15:11 +0100 (CET) (envelope-from eserte) Message-Id: <200112100815.fBA8FB504736@vran.herceg.de> Date: Mon, 10 Dec 2001 09:15:11 +0100 (CET) From: Slaven Rezic Reply-To: Slaven Rezic To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32665: Update of german/BBBike port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32665 >Category: ports >Synopsis: Update of german/BBBike port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 00:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Slaven Rezic >Release: FreeBSD 4.3-STABLE i386 >Organization: Private FreeBSD site, Berlin, Germany >Environment: System: FreeBSD vran.herceg.de 4.3-STABLE FreeBSD 4.3-STABLE #6: Mon Jul 9 11:49:47 CEST 2001 root@vran.herceg.de:/vran/home/src/FreeBSD-4/src/sys/compile/VRAN i386 FreeBSD 4.3 >Description: An update to the new 3.08 version of BBBike. >How-To-Repeat: Apply the diff. >Fix: diff --new-file -u /usr/ports/german/BBBike/Makefile BBBike/Makefile --- /usr/ports/german/BBBike/Makefile Wed May 9 20:30:02 2001 +++ BBBike/Makefile Mon Dec 10 09:13:14 2001 @@ -2,15 +2,16 @@ # Date created: Fri Aug 14 15:32:26 CEST 1998 # Whom: Slaven Rezic # -# $FreeBSD: ports/german/BBBike/Makefile,v 1.9 2001/05/09 09:49:48 alex Exp $ +# $FreeBSD: ports/german/BBBike/Makefile,v 1.8 2000/12/19 11:36:19 wosch Exp $ # PORTNAME= BBBike -PORTVERSION= 3.03 +PORTVERSION= 3.08 CATEGORIES= german -MASTER_SITES= http://prdownloads.sourceforge.net/bbbike/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}/ +MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= eserte@onlineoffice.de +MAINTAINER= slaven.rezic@berlin.de RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Tk.pm:${PORTSDIR}/x11-toolkits/p5-Tk diff --new-file -u /usr/ports/german/BBBike/distinfo BBBike/distinfo --- /usr/ports/german/BBBike/distinfo Wed May 9 20:30:02 2001 +++ BBBike/distinfo Mon Dec 10 09:13:15 2001 @@ -1 +1 @@ -MD5 (BBBike-3.03.tar.gz) = ef496c90b0a60eb66111074999319781 +MD5 (BBBike-3.08.tar.gz) = 99828cf3b4adb229dd52489317283934 diff --new-file -u /usr/ports/german/BBBike/pkg-comment BBBike/pkg-comment --- /usr/ports/german/BBBike/pkg-comment Sat Jun 26 18:53:26 1999 +++ BBBike/pkg-comment Mon Dec 10 09:13:15 2001 @@ -1 +1 @@ -A route-finder for cyclists in Berlin and Brandenburg (only german) +A route-finder for cyclists in Berlin and Brandenburg diff --new-file -u /usr/ports/german/BBBike/pkg-descr BBBike/pkg-descr --- /usr/ports/german/BBBike/pkg-descr Sat Dec 8 11:51:00 2001 +++ BBBike/pkg-descr Mon Dec 10 09:13:15 2001 @@ -1,4 +1,4 @@ -A route-finder for cyclists in Berlin and Brandenburg (only german). +A route-finder for cyclists in Berlin and Brandenburg. Mit BBBike koennen Fahrrad-Routen in Berlin und Umgebung automatisch oder manuell erstellt werden. @@ -20,5 +20,4 @@ * Wo gibt es Steigungen und Gefaelle? -There is also a CGI script version available: -WWW: http://www.bbbike.de/ +WWW: http://www.bbbike.de diff --new-file -u /usr/ports/german/BBBike/pkg-message BBBike/pkg-message --- /usr/ports/german/BBBike/pkg-message Wed May 9 11:49:48 2001 +++ BBBike/pkg-message Mon Dec 10 09:13:15 2001 @@ -3,4 +3,4 @@ Zusätzliche Anpassung für KDE mit - /usr/local/BBBike/bsdinstall.pl + /usr/local/BBBike/install.pl diff --new-file -u /usr/ports/german/BBBike/pkg-plist BBBike/pkg-plist --- /usr/ports/german/BBBike/pkg-plist Sat Oct 27 01:15:47 2001 +++ BBBike/pkg-plist Mon Dec 10 09:13:15 2001 @@ -1,32 +1,49 @@ BBBike/Ampelschaltung.pm BBBike/BBBikeAdvanced.pm BBBike/BBBikeAlarm.pm -BBBike/BBBikeExp.pm BBBike/BBBikeCalc.pm +BBBike/BBBikeDebug.pm BBBike/BBBikeDraw.pm -BBBike/BBBikeDraw/PDF.pm BBBike/BBBikeDraw/GD.pm +BBBike/BBBikeDraw/PDF.pm BBBike/BBBikeEdit.pm +BBBike/BBBikeEditUtil.pm +BBBike/BBBikeExp.pm BBBike/BBBikeMail.pm BBBike/BBBikeMenubar.pm BBBike/BBBikePalm.pm +BBBike/BBBikePlugin.pm BBBike/BBBikePrint.pm BBBike/BBBikeProfil.pm BBBike/BBBikeServer.pm +BBBike/BBBikeThunder.pm BBBike/BBBikeTrans.pm BBBike/BBBikeUtil.pm BBBike/BBBikeVar.pm BBBike/Bundle/BBBike.pm BBBike/Bundle/BBBike_small.pm BBBike/COPYING -BBBike/Fahrinfo.pm +BBBike/ESRI/Makefile.PL +BBBike/ESRI/Shapefile.pm +BBBike/ESRI/Shapefile/DBase.pm +BBBike/ESRI/Shapefile/Index.pm +BBBike/ESRI/Shapefile/Main.pm +BBBike/ESRI/esri2bbd.pl +BBBike/ESRI/t/shapefile.t BBBike/FURadar.pm -BBBike/Geography.pm -BBBike/Geography/Berlin_DE.pm -BBBike/GfxConvert.pm +BBBike/Fahrinfo.pm BBBike/GIS/Globe.pm BBBike/GIS/NSD.pm BBBike/GIS/globe_to_bbd.pl +BBBike/GPS.pm +BBBike/GPS/G7toWin_ASCII.pm +BBBike/GPS/Unknown1.pm +BBBike/GPS/Unknown2.pm +BBBike/Geography.pm +BBBike/Geography/Berlin_DE.pm +BBBike/Geography/Brandenburg_DE.pm +BBBike/Geography/Muenchen_DE.pm +BBBike/GfxConvert.pm BBBike/Hooks.pm BBBike/Karte.pm BBBike/Karte/Berlinmap1996.pm @@ -34,8 +51,10 @@ BBBike/Karte/Berlinmap1998.pm BBBike/Karte/Berlinmap1999.pm BBBike/Karte/Berlinmap2000.pm +BBBike/Karte/Berlinmap2001.pm BBBike/Karte/FURadar.pm BBBike/Karte/FURadar2.pm +BBBike/Karte/FURadar3.pm BBBike/Karte/GDF.pm BBBike/Karte/GIS.pm BBBike/Karte/GISmap.pm @@ -43,22 +62,31 @@ BBBike/Karte/Polar.pm BBBike/Karte/Satmap.pm BBBike/Karte/SatmapGIF.pm +BBBike/Karte/Soldner_alt.pm BBBike/Karte/Standard.pm +BBBike/Karte/T2001.pm BBBike/Karte/T99.pm BBBike/MANIFEST +BBBike/Makefile.PL BBBike/MasterPunkte.pm BBBike/MasterStrassen.pm BBBike/PLZ.pm BBBike/PointEdit.pm -BBBike/Radwege.pm BBBike/README BBBike/README.english +BBBike/README.english.html BBBike/README.html -BBBike/README.en.html +BBBike/RELEASE +BBBike/Radwege.pm BBBike/Route.pm BBBike/Salesman.pm BBBike/Strassen.pm +BBBike/Strassen/CDB.pm +BBBike/Strassen/ESRI.pm +BBBike/Strassen/Rare.pm +BBBike/Strassen/Storable.pm BBBike/Telefonbuch.pm +BBBike/Telefonbuch2001.pm BBBike/Telefonbuch98.pm BBBike/Telefonbuch99.pm BBBike/Update.pm @@ -70,8 +98,8 @@ @unexec rm -f %D/bin/bbbike BBBike/bbbike-fast.bat BBBike/bbbike.bat -BBBike/bbbike.pod BBBike/bbbike.html +BBBike/bbbike.pod BBBike/bbbikeapplet BBBike/bbbikeclient @exec ln -fs %D/%F %D/bin/bbbikeclient @@ -80,14 +108,15 @@ @exec ln -fs %D/%F %D/bin/cbbbike @unexec rm -f %D/bin/cbbbike BBBike/cbbbike.bat -BBBike/cmdbbbike +BBBike/cgi/README BBBike/cgi/bbbike.cgi BBBike/cgi/berlinmap.cgi -BBBike/cgi/wapbbbike.cgi -BBBike/cgi/README -BBBike/cgi/runbbbikecgi BBBike/cgi/httpi +BBBike/cgi/mksymlinks +BBBike/cgi/runbbbikecgi BBBike/cgi/tinyhttpd +BBBike/cgi/wapbbbike.cgi +BBBike/cmdbbbike BBBike/data/.modified BBBike/data/Berlin.coords.data BBBike/data/ampeln @@ -97,12 +126,15 @@ BBBike/data/faehren BBBike/data/flaechen BBBike/data/gesperrt +BBBike/data/handicap_l +BBBike/data/handicap_s BBBike/data/hoehe BBBike/data/kinos BBBike/data/kneipen BBBike/data/kneipen-info BBBike/data/label BBBike/data/landstrassen +BBBike/data/landstrassen.desc BBBike/data/landstrassen2 BBBike/data/multi_bez_str BBBike/data/obst @@ -111,8 +143,8 @@ BBBike/data/orte_city BBBike/data/plaetze BBBike/data/plz -BBBike/data/qualitaet_s BBBike/data/qualitaet_l +BBBike/data/qualitaet_s BBBike/data/radwege BBBike/data/radwege_exact BBBike/data/rbahn @@ -121,14 +153,17 @@ BBBike/data/sbahn BBBike/data/sbahnhof BBBike/data/sehenswuerdigkeit +BBBike/data/sehenswuerdigkeit.desc +BBBike/data/sehenswuerdigkeit_img/brandenburger_tor.gif BBBike/data/strassen +BBBike/data/strassen.desc BBBike/data/ubahn BBBike/data/ubahnhof BBBike/data/umsteigebhf +BBBike/data/vorfahrt BBBike/data/wasserstrassen BBBike/data/wasserumland BBBike/data/wasserumland2 -BBBike/data/vorfahrt BBBike/ext/BBBikeXS/BBBikeXS.pm BBBike/ext/BBBikeXS/BBBikeXS.xs BBBike/ext/BBBikeXS/MANIFEST @@ -148,176 +183,213 @@ BBBike/gnome/bbbike.keys BBBike/gnome/bbbike.mime BBBike/html/allstreet.html +BBBike/html/bbbike.css +BBBike/html/bbbike_sidebar.en.html +BBBike/html/bbbike_sidebar.html +BBBike/html/bbbike_small.en.html +BBBike/html/bbbike_small.html +BBBike/html/bbbike_start.js +BBBike/html/bbbikepod.css BBBike/html/empty.html BBBike/html/legende.html BBBike/html/pleasewait.html BBBike/html/presse.html -BBBike/html/bbbike_start.js +BBBike/images/PoweredByPerl.gif BBBike/images/abc.gif +BBBike/images/abc.xpm BBBike/images/abc_hi.gif -BBBike/images/add_ptr.xbm +BBBike/images/abc_hi.xpm +BBBike/images/addnet_ptr.xbm +BBBike/images/addnet_ptr_mask.xbm BBBike/images/ampel.gif +BBBike/images/ampel.xpm BBBike/images/ampel_klein.gif -BBBike/images/ampel_klein2.gif -BBBike/images/ampel_klein_grey.xpm +BBBike/images/ampel_klein.jpg BBBike/images/ampel_klein.png +BBBike/images/ampel_klein.xpm +BBBike/images/ampel_klein2.gif +BBBike/images/ampel_klein2.jpg BBBike/images/ampel_klein2.png +BBBike/images/ampel_klein2.xpm +BBBike/images/ampel_klein_grey.xpm BBBike/images/andreaskr.gif +BBBike/images/andreaskr.xpm BBBike/images/andreaskr_klein.gif -BBBike/images/andreaskr_klein2.gif +BBBike/images/andreaskr_klein.jpg BBBike/images/andreaskr_klein.png +BBBike/images/andreaskr_klein.xpm +BBBike/images/andreaskr_klein2.gif +BBBike/images/andreaskr_klein2.jpg BBBike/images/andreaskr_klein2.png +BBBike/images/andreaskr_klein2.xpm BBBike/images/apfel.gif +BBBike/images/apfel.xpm BBBike/images/bbbike_splash.gif +BBBike/images/bbbike_splash.xpm BBBike/images/bbbike_splash_oo.gif BBBike/images/berlin_overview_small.gif +BBBike/images/berlin_overview_small.xpm BBBike/images/berlin_small.gif +BBBike/images/berlin_small.xpm BBBike/images/berlin_small_hi.gif +BBBike/images/berlin_small_hi.xpm +BBBike/images/bg.gif +BBBike/images/bg.jpg BBBike/images/bicycle.gif +BBBike/images/bicycle.xpm BBBike/images/birne.gif +BBBike/images/birne.xpm BBBike/images/bw_hleft.wbmp BBBike/images/bw_hright.wbmp BBBike/images/bw_left.wbmp BBBike/images/bw_right.wbmp BBBike/images/bw_straight.wbmp BBBike/images/cgi_legende.gif +BBBike/images/cgi_legende.xpm BBBike/images/click.gif +BBBike/images/click.xpm BBBike/images/cross.gif +BBBike/images/cross.xpm +BBBike/images/delete_ovl.gif BBBike/images/delnet_ptr.xbm BBBike/images/delnet_ptr_mask.xbm +BBBike/images/dest_ptr.xbm +BBBike/images/dest_ptr_mask.xbm BBBike/images/essen.gif BBBike/images/essen.xpm BBBike/images/essen_klein.gif BBBike/images/essen_klein.xpm BBBike/images/exit.gif +BBBike/images/exit.xpm +BBBike/images/favicon.ico BBBike/images/flaechen.gif +BBBike/images/flaechen.xpm BBBike/images/flag2_bl.gif +BBBike/images/flag2_bl.jpg BBBike/images/flag2_bl.png +BBBike/images/flag2_bl.xpm BBBike/images/flag_ziel.gif +BBBike/images/flag_ziel.jpg BBBike/images/flag_ziel.png +BBBike/images/flag_ziel.xpm +BBBike/images/gefaelle.gif +BBBike/images/gefaelle.xpm BBBike/images/glas.gif BBBike/images/glas.xpm BBBike/images/glas_klein.gif BBBike/images/glas_klein.xpm BBBike/images/haltestelle.gif +BBBike/images/haltestelle.xpm BBBike/images/help.gif +BBBike/images/help.xpm BBBike/images/info.gif +BBBike/images/info.xpm BBBike/images/info_ptr.xbm BBBike/images/info_ptr_mask.xbm +BBBike/images/inwork.gif +BBBike/images/inwork.xpm BBBike/images/kino_klein.gif BBBike/images/kino_klein.xpm BBBike/images/kirsche.gif +BBBike/images/kirsche.xpm BBBike/images/koord.gif +BBBike/images/koord.xpm BBBike/images/landstrasse.gif +BBBike/images/landstrasse.xpm +BBBike/images/lightning.gif +BBBike/images/lightning_cursor.xbm BBBike/images/map.gif +BBBike/images/map.xpm BBBike/images/menupfeil.gif +BBBike/images/menupfeil.xpm BBBike/images/open.gif +BBBike/images/open.xpm +BBBike/images/open_ovl.gif BBBike/images/opt.gif +BBBike/images/opt.xpm BBBike/images/ort.gif +BBBike/images/ort.xpm BBBike/images/pflaume.gif +BBBike/images/pflaume.xpm BBBike/images/printer.gif +BBBike/images/printer.xpm BBBike/images/rbahn.gif +BBBike/images/rbahn.xpm +BBBike/images/reddot.gif BBBike/images/rueckweg.gif +BBBike/images/rueckweg.xpm BBBike/images/salesman.gif BBBike/images/salesman.xpm BBBike/images/salesman_ptr.xbm BBBike/images/salesman_ptr_mask.xbm BBBike/images/save.gif +BBBike/images/save.xpm BBBike/images/sbahn.gif +BBBike/images/sbahn.xpm BBBike/images/search.gif +BBBike/images/search.xpm BBBike/images/srtbike.gif -BBBike/images/srtbike.xpm -BBBike/images/srtbike.xbm BBBike/images/srtbike.ico +BBBike/images/srtbike.jpg +BBBike/images/srtbike.png +BBBike/images/srtbike.xbm +BBBike/images/srtbike.xpm +BBBike/images/srtbike16.gif +BBBike/images/srtbike16.xpm +BBBike/images/srtbike32.gif +BBBike/images/srtbike32.xpm BBBike/images/srtbike_mini.xpm BBBike/images/srtbike_solid.gif -BBBike/images/srtbike_www.xpm +BBBike/images/srtbike_solid.xpm +BBBike/images/srtbike_url.png BBBike/images/srtbike_www.ico -BBBike/images/srtbike16.gif -BBBike/images/srtbike32.gif -BBBike/images/strlist.gif +BBBike/images/srtbike_www.xpm BBBike/images/start.gif +BBBike/images/start.xpm BBBike/images/start_ptr.xbm BBBike/images/start_ptr_mask.xbm +BBBike/images/steigung.gif +BBBike/images/steigung.xpm BBBike/images/stip.xbm BBBike/images/strasse.gif +BBBike/images/strasse.xpm +BBBike/images/strlist.gif +BBBike/images/strlist.xpm +BBBike/images/thunder_cursor.xbm BBBike/images/ubahn.gif +BBBike/images/ubahn.xpm BBBike/images/usercross.gif BBBike/images/usercross.xpm BBBike/images/via.gif -BBBike/images/viewmag-.gif -BBBike/images/viewmag+.gif -BBBike/images/vorfahrt.gif -BBBike/images/wasser.gif -BBBike/images/windrose.gif -BBBike/images/windrose2.gif -BBBike/images/ziel.gif -BBBike/images/ziel_ptr.xbm -BBBike/images/ziel_ptr_mask.xbm -BBBike/images/abc.xpm -BBBike/images/abc_hi.xpm -BBBike/images/ampel.xpm -BBBike/images/ampel_klein.xpm -BBBike/images/ampel_klein2.xpm -BBBike/images/andreaskr.xpm -BBBike/images/andreaskr_klein.xpm -BBBike/images/andreaskr_klein2.xpm -BBBike/images/apfel.xpm -BBBike/images/berlin_overview_small.xpm -BBBike/images/berlin_small.xpm -BBBike/images/berlin_small_hi.xpm -BBBike/images/bicycle.xpm -BBBike/images/birne.xpm -BBBike/images/cgi_legende.xpm -BBBike/images/click.xpm -BBBike/images/cross.xpm -BBBike/images/exit.xpm -BBBike/images/flaechen.xpm -BBBike/images/flag2_bl.xpm -BBBike/images/flag_ziel.xpm -BBBike/images/haltestelle.xpm -BBBike/images/help.xpm -BBBike/images/info.xpm -BBBike/images/kirsche.xpm -BBBike/images/koord.xpm -BBBike/images/landstrasse.xpm -BBBike/images/map.xpm -BBBike/images/menupfeil.xpm -BBBike/images/open.xpm -BBBike/images/opt.xpm -BBBike/images/ort.xpm -BBBike/images/pflaume.xpm -BBBike/images/printer.xpm -BBBike/images/rbahn.xpm -BBBike/images/rueckweg.xpm -BBBike/images/save.xpm -BBBike/images/sbahn.xpm -BBBike/images/search.xpm -BBBike/images/srtbike.jpg -BBBike/images/srtbike.png -BBBike/images/srtbike16.xpm -BBBike/images/srtbike32.xpm -BBBike/images/srtbike_solid.xpm -BBBike/images/start.xpm -BBBike/images/strasse.xpm -BBBike/images/strlist.xpm -BBBike/images/ubahn.xpm BBBike/images/via.xpm +BBBike/images/viewmag+.gif BBBike/images/viewmag+.xpm +BBBike/images/viewmag-.gif BBBike/images/viewmag-.xpm +BBBike/images/vorfahrt.gif BBBike/images/vorfahrt.xpm +BBBike/images/wasser.gif BBBike/images/wasser.xpm +BBBike/images/watch_ptr.xbm +BBBike/images/watch_ptr_mask.xbm +BBBike/images/windrose.gif BBBike/images/windrose.xpm +BBBike/images/windrose2.gif BBBike/images/windrose2.xpm +BBBike/images/xy_ptr.xbm +BBBike/images/xy_ptr_mask.xbm +BBBike/images/ziel.gif BBBike/images/ziel.xpm +BBBike/images/ziel_ptr.xbm +BBBike/images/ziel_ptr_mask.xbm BBBike/install.bat BBBike/install.pl BBBike/install.pl.config BBBike/kde/BBBike.kdelnk.tmpl BBBike/kde/BBBikeDoc.kdelnk.tmpl BBBike/kde/BBBikeWWW.kdelnk -BBBike/kde/x-bbbike-route.kdelnk BBBike/kde/x-bbbike-data.kdelnk +BBBike/kde/x-bbbike-route.kdelnk BBBike/kde/x-gpstrack.kdelnk BBBike/lib/AutoInstall/Tk.pm BBBike/lib/BikePower.pm @@ -335,77 +407,76 @@ BBBike/lib/BrowserInfo.pm BBBike/lib/Devel/WidgetDump.pm BBBike/lib/EasySound.pm -BBBike/lib/Geometry.pm BBBike/lib/GD/Wbmp.pm +BBBike/lib/Geometry.pm BBBike/lib/Http.pm BBBike/lib/KDEUtil.pm BBBike/lib/Met/Wind.pm +BBBike/lib/Msg.pm BBBike/lib/MyFile.pm +BBBike/lib/Text/ScriptTemplate.pm BBBike/lib/Tk/Arrow.pm BBBike/lib/Tk/Autoscroll.pm +BBBike/lib/Tk/BreakMenu.pm BBBike/lib/Tk/CanvasBalloon.pm BBBike/lib/Tk/CanvasExt.pm +BBBike/lib/Tk/CanvasFig.pm +BBBike/lib/Tk/CanvasUtil.pm BBBike/lib/Tk/ContextHelp.pm -BBBike/lib/Tk/context_help.xbm -BBBike/lib/Tk/context_help_mask.xbm -BBBike/lib/Tk/context_nohelp.xbm -BBBike/lib/Tk/context_nohelp_mask.xbm BBBike/lib/Tk/Enscript.pm -BBBike/lib/Tk/enscript.cfg +BBBike/lib/Tk/FastSplash.pm BBBike/lib/Tk/FileDialogExt.pm BBBike/lib/Tk/FlatCheckbox.pm +BBBike/lib/Tk/FlatRadiobutton.pm BBBike/lib/Tk/Getopt.pm -BBBike/lib/Tk/KListbox.pm BBBike/lib/Tk/K2Listbox.pm +BBBike/lib/Tk/KListbox.pm BBBike/lib/Tk/LayerEditor.pm BBBike/lib/Tk/LayerEditorCore.pm BBBike/lib/Tk/LayerEditorToplevel.pm BBBike/lib/Tk/LogScale.pm -BBBike/lib/Tk/layereye.gif -BBBike/lib/Tk/UnderlineAll.pm -BBBike/lib/Tk/Splash.pm -BBBike/lib/Tk/FastSplash.pm +BBBike/lib/Tk/ProgressSplash.pm +BBBike/lib/Tk/RaisedButton.pm BBBike/lib/Tk/RotFont.pm +BBBike/lib/Tk/SRTProgress.pm +BBBike/lib/Tk/SRTScrollbar.pm +BBBike/lib/Tk/Splash.pm BBBike/lib/Tk/StippleLine.pm +BBBike/lib/Tk/TextProgress.pm +BBBike/lib/Tk/UnderlineAll.pm +BBBike/lib/Tk/WListbox.pm +BBBike/lib/Tk/WidgetDump.pm +BBBike/lib/Tk/context_help.xbm +BBBike/lib/Tk/context_help_mask.xbm +BBBike/lib/Tk/context_nohelp.xbm +BBBike/lib/Tk/context_nohelp_mask.xbm +BBBike/lib/Tk/enscript.cfg BBBike/lib/Tk/grid000.xbm BBBike/lib/Tk/grid045.xbm BBBike/lib/Tk/grid090.xbm BBBike/lib/Tk/grid135.xbm +BBBike/lib/Tk/layereye.gif BBBike/lib/Tk/resizeButton.pm -BBBike/lib/Tk/SRTProgress.pm -BBBike/lib/Tk/TextProgress.pm -BBBike/lib/Tk/WidgetDump.pm -BBBike/lib/Tk/BreakMenu.pm -BBBike/lib/Tk/RaisedButton.pm -BBBike/lib/Tk/SRTScrollbar.pm -BBBike/lib/Tk/WListbox.pm BBBike/lib/TkChange.pm BBBike/lib/TkCompat.pm BBBike/lib/UnixUtil.pm +BBBike/lib/VectorUtil.pm +BBBike/lib/WWWBrowser.pm BBBike/lib/Waitproc.pm BBBike/lib/Win32Util.pm BBBike/lib/WinCompat.pm -BBBike/lib/WWWBrowser.pm BBBike/lib/click.au BBBike/lib/click.wav -BBBike/lib/wettermeldung2 +BBBike/lib/enum.pm BBBike/lib/savevars.pm +BBBike/lib/wettermeldung2 +BBBike/lib/your.pm +BBBike/msg/bbbike/en +BBBike/msg/install/en +BBBike/podindex.html BBBike/smsbbbike BBBike/tkbikepwr BBBike/tmp/.keep_me -BBBike/ESRI/Makefile.PL -BBBike/ESRI/Shapefile.pm -BBBike/ESRI/Shapefile/DBase.pm -BBBike/ESRI/Shapefile/Index.pm -BBBike/ESRI/Shapefile/Main.pm -BBBike/ESRI/t/shapefile.t -BBBike/GPS.pm -BBBike/GPS/G7toWin_ASCII.pm -BBBike/GPS/Unknown1.pm -BBBike/GPS/Unknown2.pm -BBBike/Geography/Muenchen_DE.pm -BBBike/msg/bbbike/en -BBBike/Makefile.PL BBBike/lib/%%PERL_VER%%/%%PERL_ARCH%%/auto/BBBikeXS/BBBikeXS.so BBBike/lib/%%PERL_VER%%/%%PERL_ARCH%%/auto/BBBikeXS/BBBikeXS.bs BBBike/lib/%%PERL_VER%%/%%PERL_ARCH%%/auto/VirtArray/VirtArray.so @@ -419,35 +490,39 @@ @dirrm BBBike/lib/%%PERL_ARCH%%/auto/BBBikeXS @dirrm BBBike/lib/%%PERL_ARCH%%/auto @dirrm BBBike/lib/%%PERL_VER%%/%%PERL_ARCH%% -@dirrm BBBike/lib/BikePower -@dirrm BBBike/ESRI/Shapefile @dirrm BBBike/msg/bbbike -@dirrm BBBike/ESRI/t -@dirrm BBBike/lib/Devel -@dirrm BBBike/lib/AutoInstall @dirrm BBBike/lib/%%PERL_VER%% @dirrm BBBike/ext/VirtArray +@dirrm BBBike/lib/Devel +@dirrm BBBike/lib/AutoInstall @dirrm BBBike/lib/%%PERL_ARCH%% +@dirrm BBBike/ESRI/t +@dirrm BBBike/lib/Text +@dirrm BBBike/data/sehenswuerdigkeit_img @dirrm BBBike/lib/GD @dirrm BBBike/lib/Tk @dirrm BBBike/ext/BBBikeXS @dirrm BBBike/lib/Met -@dirrm BBBike/ESRI +@dirrm BBBike/msg/install +@dirrm BBBike/lib/BikePower +@dirrm BBBike/ESRI/Shapefile @dirrm BBBike/cgi +@dirrm BBBike/ESRI @dirrm BBBike/html @dirrm BBBike/images @dirrm BBBike/lib @dirrm BBBike/Karte -@dirrm BBBike/Bundle -@dirrm BBBike/gnome +@dirrm BBBike/data @dirrm BBBike/tmp @dirrm BBBike/GIS -@dirrm BBBike/GPS +@dirrm BBBike/Strassen @dirrm BBBike/msg @dirrm BBBike/Geography +@dirrm BBBike/GPS @dirrm BBBike/kde -@dirrm BBBike/data +@dirrm BBBike/Bundle @dirrm BBBike/BBBikeDraw @dirrm BBBike/ext @dirrm BBBike/Way +@dirrm BBBike/gnome @dirrm BBBike diff --new-file -u /usr/ports/german/BBBike/pkg-plist.5005 BBBike/pkg-plist.5005 --- /usr/ports/german/BBBike/pkg-plist.5005 Sat Oct 27 01:15:47 2001 +++ BBBike/pkg-plist.5005 Mon Dec 10 09:13:15 2001 @@ -1,32 +1,49 @@ BBBike/Ampelschaltung.pm BBBike/BBBikeAdvanced.pm BBBike/BBBikeAlarm.pm -BBBike/BBBikeExp.pm BBBike/BBBikeCalc.pm +BBBike/BBBikeDebug.pm BBBike/BBBikeDraw.pm -BBBike/BBBikeDraw/PDF.pm BBBike/BBBikeDraw/GD.pm +BBBike/BBBikeDraw/PDF.pm BBBike/BBBikeEdit.pm +BBBike/BBBikeEditUtil.pm +BBBike/BBBikeExp.pm BBBike/BBBikeMail.pm BBBike/BBBikeMenubar.pm BBBike/BBBikePalm.pm +BBBike/BBBikePlugin.pm BBBike/BBBikePrint.pm BBBike/BBBikeProfil.pm BBBike/BBBikeServer.pm +BBBike/BBBikeThunder.pm BBBike/BBBikeTrans.pm BBBike/BBBikeUtil.pm BBBike/BBBikeVar.pm BBBike/Bundle/BBBike.pm BBBike/Bundle/BBBike_small.pm BBBike/COPYING -BBBike/Fahrinfo.pm +BBBike/ESRI/Makefile.PL +BBBike/ESRI/Shapefile.pm +BBBike/ESRI/Shapefile/DBase.pm +BBBike/ESRI/Shapefile/Index.pm +BBBike/ESRI/Shapefile/Main.pm +BBBike/ESRI/esri2bbd.pl +BBBike/ESRI/t/shapefile.t BBBike/FURadar.pm -BBBike/Geography.pm -BBBike/Geography/Berlin_DE.pm -BBBike/GfxConvert.pm +BBBike/Fahrinfo.pm BBBike/GIS/Globe.pm BBBike/GIS/NSD.pm BBBike/GIS/globe_to_bbd.pl +BBBike/GPS.pm +BBBike/GPS/G7toWin_ASCII.pm +BBBike/GPS/Unknown1.pm +BBBike/GPS/Unknown2.pm +BBBike/Geography.pm +BBBike/Geography/Berlin_DE.pm +BBBike/Geography/Brandenburg_DE.pm +BBBike/Geography/Muenchen_DE.pm +BBBike/GfxConvert.pm BBBike/Hooks.pm BBBike/Karte.pm BBBike/Karte/Berlinmap1996.pm @@ -34,8 +51,10 @@ BBBike/Karte/Berlinmap1998.pm BBBike/Karte/Berlinmap1999.pm BBBike/Karte/Berlinmap2000.pm +BBBike/Karte/Berlinmap2001.pm BBBike/Karte/FURadar.pm BBBike/Karte/FURadar2.pm +BBBike/Karte/FURadar3.pm BBBike/Karte/GDF.pm BBBike/Karte/GIS.pm BBBike/Karte/GISmap.pm @@ -43,22 +62,31 @@ BBBike/Karte/Polar.pm BBBike/Karte/Satmap.pm BBBike/Karte/SatmapGIF.pm +BBBike/Karte/Soldner_alt.pm BBBike/Karte/Standard.pm +BBBike/Karte/T2001.pm BBBike/Karte/T99.pm BBBike/MANIFEST +BBBike/Makefile.PL BBBike/MasterPunkte.pm BBBike/MasterStrassen.pm BBBike/PLZ.pm BBBike/PointEdit.pm -BBBike/Radwege.pm BBBike/README BBBike/README.english +BBBike/README.english.html BBBike/README.html -BBBike/README.en.html +BBBike/RELEASE +BBBike/Radwege.pm BBBike/Route.pm BBBike/Salesman.pm BBBike/Strassen.pm +BBBike/Strassen/CDB.pm +BBBike/Strassen/ESRI.pm +BBBike/Strassen/Rare.pm +BBBike/Strassen/Storable.pm BBBike/Telefonbuch.pm +BBBike/Telefonbuch2001.pm BBBike/Telefonbuch98.pm BBBike/Telefonbuch99.pm BBBike/Update.pm @@ -70,8 +98,8 @@ @unexec rm -f %D/bin/bbbike BBBike/bbbike-fast.bat BBBike/bbbike.bat -BBBike/bbbike.pod BBBike/bbbike.html +BBBike/bbbike.pod BBBike/bbbikeapplet BBBike/bbbikeclient @exec ln -fs %D/%F %D/bin/bbbikeclient @@ -80,14 +108,15 @@ @exec ln -fs %D/%F %D/bin/cbbbike @unexec rm -f %D/bin/cbbbike BBBike/cbbbike.bat -BBBike/cmdbbbike +BBBike/cgi/README BBBike/cgi/bbbike.cgi BBBike/cgi/berlinmap.cgi -BBBike/cgi/wapbbbike.cgi -BBBike/cgi/README -BBBike/cgi/runbbbikecgi BBBike/cgi/httpi +BBBike/cgi/mksymlinks +BBBike/cgi/runbbbikecgi BBBike/cgi/tinyhttpd +BBBike/cgi/wapbbbike.cgi +BBBike/cmdbbbike BBBike/data/.modified BBBike/data/Berlin.coords.data BBBike/data/ampeln @@ -97,12 +126,15 @@ BBBike/data/faehren BBBike/data/flaechen BBBike/data/gesperrt +BBBike/data/handicap_l +BBBike/data/handicap_s BBBike/data/hoehe BBBike/data/kinos BBBike/data/kneipen BBBike/data/kneipen-info BBBike/data/label BBBike/data/landstrassen +BBBike/data/landstrassen.desc BBBike/data/landstrassen2 BBBike/data/multi_bez_str BBBike/data/obst @@ -111,8 +143,8 @@ BBBike/data/orte_city BBBike/data/plaetze BBBike/data/plz -BBBike/data/qualitaet_s BBBike/data/qualitaet_l +BBBike/data/qualitaet_s BBBike/data/radwege BBBike/data/radwege_exact BBBike/data/rbahn @@ -121,14 +153,17 @@ BBBike/data/sbahn BBBike/data/sbahnhof BBBike/data/sehenswuerdigkeit +BBBike/data/sehenswuerdigkeit.desc +BBBike/data/sehenswuerdigkeit_img/brandenburger_tor.gif BBBike/data/strassen +BBBike/data/strassen.desc BBBike/data/ubahn BBBike/data/ubahnhof BBBike/data/umsteigebhf +BBBike/data/vorfahrt BBBike/data/wasserstrassen BBBike/data/wasserumland BBBike/data/wasserumland2 -BBBike/data/vorfahrt BBBike/ext/BBBikeXS/BBBikeXS.pm BBBike/ext/BBBikeXS/BBBikeXS.xs BBBike/ext/BBBikeXS/MANIFEST @@ -148,176 +183,213 @@ BBBike/gnome/bbbike.keys BBBike/gnome/bbbike.mime BBBike/html/allstreet.html +BBBike/html/bbbike.css +BBBike/html/bbbike_sidebar.en.html +BBBike/html/bbbike_sidebar.html +BBBike/html/bbbike_small.en.html +BBBike/html/bbbike_small.html +BBBike/html/bbbike_start.js +BBBike/html/bbbikepod.css BBBike/html/empty.html BBBike/html/legende.html BBBike/html/pleasewait.html BBBike/html/presse.html -BBBike/html/bbbike_start.js +BBBike/images/PoweredByPerl.gif BBBike/images/abc.gif +BBBike/images/abc.xpm BBBike/images/abc_hi.gif -BBBike/images/add_ptr.xbm +BBBike/images/abc_hi.xpm +BBBike/images/addnet_ptr.xbm +BBBike/images/addnet_ptr_mask.xbm BBBike/images/ampel.gif +BBBike/images/ampel.xpm BBBike/images/ampel_klein.gif -BBBike/images/ampel_klein2.gif -BBBike/images/ampel_klein_grey.xpm +BBBike/images/ampel_klein.jpg BBBike/images/ampel_klein.png +BBBike/images/ampel_klein.xpm +BBBike/images/ampel_klein2.gif +BBBike/images/ampel_klein2.jpg BBBike/images/ampel_klein2.png +BBBike/images/ampel_klein2.xpm +BBBike/images/ampel_klein_grey.xpm BBBike/images/andreaskr.gif +BBBike/images/andreaskr.xpm BBBike/images/andreaskr_klein.gif -BBBike/images/andreaskr_klein2.gif +BBBike/images/andreaskr_klein.jpg BBBike/images/andreaskr_klein.png +BBBike/images/andreaskr_klein.xpm +BBBike/images/andreaskr_klein2.gif +BBBike/images/andreaskr_klein2.jpg BBBike/images/andreaskr_klein2.png +BBBike/images/andreaskr_klein2.xpm BBBike/images/apfel.gif +BBBike/images/apfel.xpm BBBike/images/bbbike_splash.gif +BBBike/images/bbbike_splash.xpm BBBike/images/bbbike_splash_oo.gif BBBike/images/berlin_overview_small.gif +BBBike/images/berlin_overview_small.xpm BBBike/images/berlin_small.gif +BBBike/images/berlin_small.xpm BBBike/images/berlin_small_hi.gif +BBBike/images/berlin_small_hi.xpm +BBBike/images/bg.gif +BBBike/images/bg.jpg BBBike/images/bicycle.gif +BBBike/images/bicycle.xpm BBBike/images/birne.gif +BBBike/images/birne.xpm BBBike/images/bw_hleft.wbmp BBBike/images/bw_hright.wbmp BBBike/images/bw_left.wbmp BBBike/images/bw_right.wbmp BBBike/images/bw_straight.wbmp BBBike/images/cgi_legende.gif +BBBike/images/cgi_legende.xpm BBBike/images/click.gif +BBBike/images/click.xpm BBBike/images/cross.gif +BBBike/images/cross.xpm +BBBike/images/delete_ovl.gif BBBike/images/delnet_ptr.xbm BBBike/images/delnet_ptr_mask.xbm +BBBike/images/dest_ptr.xbm +BBBike/images/dest_ptr_mask.xbm BBBike/images/essen.gif BBBike/images/essen.xpm BBBike/images/essen_klein.gif BBBike/images/essen_klein.xpm BBBike/images/exit.gif +BBBike/images/exit.xpm +BBBike/images/favicon.ico BBBike/images/flaechen.gif +BBBike/images/flaechen.xpm BBBike/images/flag2_bl.gif +BBBike/images/flag2_bl.jpg BBBike/images/flag2_bl.png +BBBike/images/flag2_bl.xpm BBBike/images/flag_ziel.gif +BBBike/images/flag_ziel.jpg BBBike/images/flag_ziel.png +BBBike/images/flag_ziel.xpm +BBBike/images/gefaelle.gif +BBBike/images/gefaelle.xpm BBBike/images/glas.gif BBBike/images/glas.xpm BBBike/images/glas_klein.gif BBBike/images/glas_klein.xpm BBBike/images/haltestelle.gif +BBBike/images/haltestelle.xpm BBBike/images/help.gif +BBBike/images/help.xpm BBBike/images/info.gif +BBBike/images/info.xpm BBBike/images/info_ptr.xbm BBBike/images/info_ptr_mask.xbm +BBBike/images/inwork.gif +BBBike/images/inwork.xpm BBBike/images/kino_klein.gif BBBike/images/kino_klein.xpm BBBike/images/kirsche.gif +BBBike/images/kirsche.xpm BBBike/images/koord.gif +BBBike/images/koord.xpm BBBike/images/landstrasse.gif +BBBike/images/landstrasse.xpm +BBBike/images/lightning.gif +BBBike/images/lightning_cursor.xbm BBBike/images/map.gif +BBBike/images/map.xpm BBBike/images/menupfeil.gif +BBBike/images/menupfeil.xpm BBBike/images/open.gif +BBBike/images/open.xpm +BBBike/images/open_ovl.gif BBBike/images/opt.gif +BBBike/images/opt.xpm BBBike/images/ort.gif +BBBike/images/ort.xpm BBBike/images/pflaume.gif +BBBike/images/pflaume.xpm BBBike/images/printer.gif +BBBike/images/printer.xpm BBBike/images/rbahn.gif +BBBike/images/rbahn.xpm +BBBike/images/reddot.gif BBBike/images/rueckweg.gif +BBBike/images/rueckweg.xpm BBBike/images/salesman.gif BBBike/images/salesman.xpm BBBike/images/salesman_ptr.xbm BBBike/images/salesman_ptr_mask.xbm BBBike/images/save.gif +BBBike/images/save.xpm BBBike/images/sbahn.gif +BBBike/images/sbahn.xpm BBBike/images/search.gif +BBBike/images/search.xpm BBBike/images/srtbike.gif -BBBike/images/srtbike.xpm -BBBike/images/srtbike.xbm BBBike/images/srtbike.ico +BBBike/images/srtbike.jpg +BBBike/images/srtbike.png +BBBike/images/srtbike.xbm +BBBike/images/srtbike.xpm +BBBike/images/srtbike16.gif +BBBike/images/srtbike16.xpm +BBBike/images/srtbike32.gif +BBBike/images/srtbike32.xpm BBBike/images/srtbike_mini.xpm BBBike/images/srtbike_solid.gif -BBBike/images/srtbike_www.xpm +BBBike/images/srtbike_solid.xpm +BBBike/images/srtbike_url.png BBBike/images/srtbike_www.ico -BBBike/images/srtbike16.gif -BBBike/images/srtbike32.gif -BBBike/images/strlist.gif +BBBike/images/srtbike_www.xpm BBBike/images/start.gif +BBBike/images/start.xpm BBBike/images/start_ptr.xbm BBBike/images/start_ptr_mask.xbm +BBBike/images/steigung.gif +BBBike/images/steigung.xpm BBBike/images/stip.xbm BBBike/images/strasse.gif +BBBike/images/strasse.xpm +BBBike/images/strlist.gif +BBBike/images/strlist.xpm +BBBike/images/thunder_cursor.xbm BBBike/images/ubahn.gif +BBBike/images/ubahn.xpm BBBike/images/usercross.gif BBBike/images/usercross.xpm BBBike/images/via.gif -BBBike/images/viewmag-.gif -BBBike/images/viewmag+.gif -BBBike/images/vorfahrt.gif -BBBike/images/wasser.gif -BBBike/images/windrose.gif -BBBike/images/windrose2.gif -BBBike/images/ziel.gif -BBBike/images/ziel_ptr.xbm -BBBike/images/ziel_ptr_mask.xbm -BBBike/images/abc.xpm -BBBike/images/abc_hi.xpm -BBBike/images/ampel.xpm -BBBike/images/ampel_klein.xpm -BBBike/images/ampel_klein2.xpm -BBBike/images/andreaskr.xpm -BBBike/images/andreaskr_klein.xpm -BBBike/images/andreaskr_klein2.xpm -BBBike/images/apfel.xpm -BBBike/images/berlin_overview_small.xpm -BBBike/images/berlin_small.xpm -BBBike/images/berlin_small_hi.xpm -BBBike/images/bicycle.xpm -BBBike/images/birne.xpm -BBBike/images/cgi_legende.xpm -BBBike/images/click.xpm -BBBike/images/cross.xpm -BBBike/images/exit.xpm -BBBike/images/flaechen.xpm -BBBike/images/flag2_bl.xpm -BBBike/images/flag_ziel.xpm -BBBike/images/haltestelle.xpm -BBBike/images/help.xpm -BBBike/images/info.xpm -BBBike/images/kirsche.xpm -BBBike/images/koord.xpm -BBBike/images/landstrasse.xpm -BBBike/images/map.xpm -BBBike/images/menupfeil.xpm -BBBike/images/open.xpm -BBBike/images/opt.xpm -BBBike/images/ort.xpm -BBBike/images/pflaume.xpm -BBBike/images/printer.xpm -BBBike/images/rbahn.xpm -BBBike/images/rueckweg.xpm -BBBike/images/save.xpm -BBBike/images/sbahn.xpm -BBBike/images/search.xpm -BBBike/images/srtbike.jpg -BBBike/images/srtbike.png -BBBike/images/srtbike16.xpm -BBBike/images/srtbike32.xpm -BBBike/images/srtbike_solid.xpm -BBBike/images/start.xpm -BBBike/images/strasse.xpm -BBBike/images/strlist.xpm -BBBike/images/ubahn.xpm BBBike/images/via.xpm +BBBike/images/viewmag+.gif BBBike/images/viewmag+.xpm +BBBike/images/viewmag-.gif BBBike/images/viewmag-.xpm +BBBike/images/vorfahrt.gif BBBike/images/vorfahrt.xpm +BBBike/images/wasser.gif BBBike/images/wasser.xpm +BBBike/images/watch_ptr.xbm +BBBike/images/watch_ptr_mask.xbm +BBBike/images/windrose.gif BBBike/images/windrose.xpm +BBBike/images/windrose2.gif BBBike/images/windrose2.xpm +BBBike/images/xy_ptr.xbm +BBBike/images/xy_ptr_mask.xbm +BBBike/images/ziel.gif BBBike/images/ziel.xpm +BBBike/images/ziel_ptr.xbm +BBBike/images/ziel_ptr_mask.xbm BBBike/install.bat BBBike/install.pl BBBike/install.pl.config BBBike/kde/BBBike.kdelnk.tmpl BBBike/kde/BBBikeDoc.kdelnk.tmpl BBBike/kde/BBBikeWWW.kdelnk -BBBike/kde/x-bbbike-route.kdelnk BBBike/kde/x-bbbike-data.kdelnk +BBBike/kde/x-bbbike-route.kdelnk BBBike/kde/x-gpstrack.kdelnk BBBike/lib/AutoInstall/Tk.pm BBBike/lib/BikePower.pm @@ -335,77 +407,76 @@ BBBike/lib/BrowserInfo.pm BBBike/lib/Devel/WidgetDump.pm BBBike/lib/EasySound.pm -BBBike/lib/Geometry.pm BBBike/lib/GD/Wbmp.pm +BBBike/lib/Geometry.pm BBBike/lib/Http.pm BBBike/lib/KDEUtil.pm BBBike/lib/Met/Wind.pm +BBBike/lib/Msg.pm BBBike/lib/MyFile.pm +BBBike/lib/Text/ScriptTemplate.pm BBBike/lib/Tk/Arrow.pm BBBike/lib/Tk/Autoscroll.pm +BBBike/lib/Tk/BreakMenu.pm BBBike/lib/Tk/CanvasBalloon.pm BBBike/lib/Tk/CanvasExt.pm +BBBike/lib/Tk/CanvasFig.pm +BBBike/lib/Tk/CanvasUtil.pm BBBike/lib/Tk/ContextHelp.pm -BBBike/lib/Tk/context_help.xbm -BBBike/lib/Tk/context_help_mask.xbm -BBBike/lib/Tk/context_nohelp.xbm -BBBike/lib/Tk/context_nohelp_mask.xbm BBBike/lib/Tk/Enscript.pm -BBBike/lib/Tk/enscript.cfg +BBBike/lib/Tk/FastSplash.pm BBBike/lib/Tk/FileDialogExt.pm BBBike/lib/Tk/FlatCheckbox.pm +BBBike/lib/Tk/FlatRadiobutton.pm BBBike/lib/Tk/Getopt.pm -BBBike/lib/Tk/KListbox.pm BBBike/lib/Tk/K2Listbox.pm +BBBike/lib/Tk/KListbox.pm BBBike/lib/Tk/LayerEditor.pm BBBike/lib/Tk/LayerEditorCore.pm BBBike/lib/Tk/LayerEditorToplevel.pm BBBike/lib/Tk/LogScale.pm -BBBike/lib/Tk/layereye.gif -BBBike/lib/Tk/UnderlineAll.pm -BBBike/lib/Tk/Splash.pm -BBBike/lib/Tk/FastSplash.pm +BBBike/lib/Tk/ProgressSplash.pm +BBBike/lib/Tk/RaisedButton.pm BBBike/lib/Tk/RotFont.pm +BBBike/lib/Tk/SRTProgress.pm +BBBike/lib/Tk/SRTScrollbar.pm +BBBike/lib/Tk/Splash.pm BBBike/lib/Tk/StippleLine.pm +BBBike/lib/Tk/TextProgress.pm +BBBike/lib/Tk/UnderlineAll.pm +BBBike/lib/Tk/WListbox.pm +BBBike/lib/Tk/WidgetDump.pm +BBBike/lib/Tk/context_help.xbm +BBBike/lib/Tk/context_help_mask.xbm +BBBike/lib/Tk/context_nohelp.xbm +BBBike/lib/Tk/context_nohelp_mask.xbm +BBBike/lib/Tk/enscript.cfg BBBike/lib/Tk/grid000.xbm BBBike/lib/Tk/grid045.xbm BBBike/lib/Tk/grid090.xbm BBBike/lib/Tk/grid135.xbm +BBBike/lib/Tk/layereye.gif BBBike/lib/Tk/resizeButton.pm -BBBike/lib/Tk/SRTProgress.pm -BBBike/lib/Tk/TextProgress.pm -BBBike/lib/Tk/WidgetDump.pm -BBBike/lib/Tk/BreakMenu.pm -BBBike/lib/Tk/RaisedButton.pm -BBBike/lib/Tk/SRTScrollbar.pm -BBBike/lib/Tk/WListbox.pm BBBike/lib/TkChange.pm BBBike/lib/TkCompat.pm BBBike/lib/UnixUtil.pm +BBBike/lib/VectorUtil.pm +BBBike/lib/WWWBrowser.pm BBBike/lib/Waitproc.pm BBBike/lib/Win32Util.pm BBBike/lib/WinCompat.pm -BBBike/lib/WWWBrowser.pm BBBike/lib/click.au BBBike/lib/click.wav -BBBike/lib/wettermeldung2 +BBBike/lib/enum.pm BBBike/lib/savevars.pm +BBBike/lib/wettermeldung2 +BBBike/lib/your.pm +BBBike/msg/bbbike/en +BBBike/msg/install/en +BBBike/podindex.html BBBike/smsbbbike BBBike/tkbikepwr BBBike/tmp/.keep_me -BBBike/ESRI/Makefile.PL -BBBike/ESRI/Shapefile.pm -BBBike/ESRI/Shapefile/DBase.pm -BBBike/ESRI/Shapefile/Index.pm -BBBike/ESRI/Shapefile/Main.pm -BBBike/ESRI/t/shapefile.t -BBBike/GPS.pm -BBBike/GPS/G7toWin_ASCII.pm -BBBike/GPS/Unknown1.pm -BBBike/GPS/Unknown2.pm -BBBike/Geography/Muenchen_DE.pm -BBBike/msg/bbbike/en -BBBike/Makefile.PL BBBike/lib/%%PERL_ARCH%%/auto/BBBikeXS/BBBikeXS.so BBBike/lib/%%PERL_ARCH%%/auto/BBBikeXS/BBBikeXS.bs BBBike/lib/%%PERL_ARCH%%/auto/VirtArray/VirtArray.so @@ -420,35 +491,39 @@ @dirrm BBBike/lib/%%PERL_ARCH%%/auto/BBBikeXS @dirrm BBBike/lib/%%PERL_ARCH%%/auto @dirrm BBBike/lib/%%PERL_VER%%/%%PERL_ARCH%% -@dirrm BBBike/lib/BikePower -@dirrm BBBike/ESRI/Shapefile @dirrm BBBike/msg/bbbike -@dirrm BBBike/ESRI/t -@dirrm BBBike/lib/Devel -@dirrm BBBike/lib/AutoInstall @dirrm BBBike/lib/%%PERL_VER%% @dirrm BBBike/ext/VirtArray +@dirrm BBBike/lib/Devel +@dirrm BBBike/lib/AutoInstall @dirrm BBBike/lib/%%PERL_ARCH%% +@dirrm BBBike/ESRI/t +@dirrm BBBike/lib/Text +@dirrm BBBike/data/sehenswuerdigkeit_img @dirrm BBBike/lib/GD @dirrm BBBike/lib/Tk @dirrm BBBike/ext/BBBikeXS @dirrm BBBike/lib/Met -@dirrm BBBike/ESRI +@dirrm BBBike/msg/install +@dirrm BBBike/lib/BikePower +@dirrm BBBike/ESRI/Shapefile @dirrm BBBike/cgi +@dirrm BBBike/ESRI @dirrm BBBike/html @dirrm BBBike/images @dirrm BBBike/lib @dirrm BBBike/Karte -@dirrm BBBike/Bundle -@dirrm BBBike/gnome +@dirrm BBBike/data @dirrm BBBike/tmp @dirrm BBBike/GIS -@dirrm BBBike/GPS +@dirrm BBBike/Strassen @dirrm BBBike/msg @dirrm BBBike/Geography +@dirrm BBBike/GPS @dirrm BBBike/kde -@dirrm BBBike/data +@dirrm BBBike/Bundle @dirrm BBBike/BBBikeDraw @dirrm BBBike/ext @dirrm BBBike/Way +@dirrm BBBike/gnome @dirrm BBBike >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 1: 8: 6 2001 Delivered-To: freebsd-ports@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id CFF6637B41D; Mon, 10 Dec 2001 01:08:04 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 65ADD81D01; Mon, 10 Dec 2001 03:08:04 -0600 (CST) Date: Mon, 10 Dec 2001 03:08:04 -0600 From: Alfred Perlstein To: knu@FreeBSD.org Cc: ports@freebsd.org Subject: request for enhancment: portupgrade Message-ID: <20011210030804.Y92148@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Two issues: when doing portupgrade one doesn't see which port is actually being built, this is epecially odd when doing portupgrade -a. portupgrade blocks ^Z (suspend) or at least seems to. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' http://www.morons.org/rants/gpl-harmful.php3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 1: 9:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7CF9D37B416; Mon, 10 Dec 2001 01:09:33 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA944A68767; Mon, 10 Dec 2001 01:04:04 -0800 (PST) (envelope-from ijliao) Date: Mon, 10 Dec 2001 01:04:04 -0800 (PST) From: Message-Id: <200112100904.fBA944A68767@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/32663: kdelibs2 port potentially conflicts with libtool port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: kdelibs2 port potentially conflicts with libtool port Responsible-Changed-From-To: freebsd-ports->kde Responsible-Changed-By: ijliao Responsible-Changed-When: Mon Dec 10 01:03:53 PST 2001 Responsible-Changed-Why: over to maintainier http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32663 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 1: 9:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1D4837B41B; Mon, 10 Dec 2001 01:09:33 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA952b68998; Mon, 10 Dec 2001 01:05:02 -0800 (PST) (envelope-from ijliao) Date: Mon, 10 Dec 2001 01:05:02 -0800 (PST) From: Message-Id: <200112100905.fBA952b68998@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/32664: open-motif-devel-2.1.30 registers itself as openmotif-devel-2.1.30-4-MIL Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: open-motif-devel-2.1.30 registers itself as openmotif-devel-2.1.30-4-MIL Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: ijliao Responsible-Changed-When: Mon Dec 10 01:04:39 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32664 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 1:19:32 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C7E7537B416; Mon, 10 Dec 2001 01:19:29 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBA9A6Q73023; Mon, 10 Dec 2001 01:10:06 -0800 (PST) (envelope-from ijliao) Date: Mon, 10 Dec 2001 01:10:06 -0800 (PST) From: Message-Id: <200112100910.fBA9A6Q73023@freefall.freebsd.org> To: slaven.rezic@berlin.de, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32665: Update of german/BBBike port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update of german/BBBike port State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Mon Dec 10 01:09:56 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32665 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 1:45:53 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id D275437B416 for ; Mon, 10 Dec 2001 01:45:50 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 729F84D961; Mon, 10 Dec 2001 18:45:49 +0900 (JST) Date: Mon, 10 Dec 2001 18:45:49 +0900 Message-ID: <86vgff4dde.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Alfred Perlstein Cc: ports@freebsd.org Subject: Re: request for enhancment: portupgrade In-Reply-To: <20011210030804.Y92148@elvis.mu.org> References: <20011210030804.Y92148@elvis.mu.org> User-Agent: Wanderlust/2.7.6 (Too Funky) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org At Mon, 10 Dec 2001 03:08:04 -0600, Alfred Perlstein wrote: > when doing portupgrade one doesn't see which port is actually being > built, this is epecially odd when doing portupgrade -a. Answer 1: Specify -v/--verbose from each command line, in the PORTUPGRADE environment variable, or in your own pkgtools.conf. Answer 2: Maybe I should make portupgrade more verbose even if -v isn't given. Let me think about it. > portupgrade blocks ^Z (suspend) or at least seems to. Yes, this is a known issue. Do you know if or how I can keep script(1) from blocking SUSP? I haven't figured it out yet.. -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 3:39:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E71237B41D; Mon, 10 Dec 2001 03:39:35 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBABbCb00474; Mon, 10 Dec 2001 03:37:12 -0800 (PST) (envelope-from murray) Date: Mon, 10 Dec 2001 03:37:12 -0800 (PST) From: Message-Id: <200112101137.fBABbCb00474@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-ports@FreeBSD.org, freebsd-docs@FreeBSD.org Subject: Re: docs/32656: New Entry for handbook bibliography hardware reference section Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New Entry for handbook bibliography hardware reference section Responsible-Changed-From-To: freebsd-ports->freebsd-docs Responsible-Changed-By: murray Responsible-Changed-When: Mon Dec 10 03:36:56 PST 2001 Responsible-Changed-Why: Misfiled PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32656 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 3:59:32 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F2A937B417; Mon, 10 Dec 2001 03:59:30 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAButI02519; Mon, 10 Dec 2001 03:56:55 -0800 (PST) (envelope-from sheldonh) Date: Mon, 10 Dec 2001 03:56:55 -0800 (PST) From: Message-Id: <200112101156.fBAButI02519@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/32645: build broken on lang/fpc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: build broken on lang/fpc Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Dec 10 03:55:56 PST 2001 Responsible-Changed-Why: Mario, could you take a look at this one? Nobody's touched the port since you first imported it. Note the change of address of maintainer. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32645 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 4:30:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D94C37B421 for ; Mon, 10 Dec 2001 04:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBACU1X16088; Mon, 10 Dec 2001 04:30:01 -0800 (PST) (envelope-from gnats) Received: from atlantis.dp.ua (atlantis.dp.ua [193.108.46.1]) by hub.freebsd.org (Postfix) with ESMTP id 7604237B405 for ; Mon, 10 Dec 2001 04:21:18 -0800 (PST) Received: from localhost (dmitry@localhost) by atlantis.dp.ua (8.11.1/8.11.1) with ESMTP id fBACLBA64247 for ; Mon, 10 Dec 2001 14:21:14 +0200 (EET) (envelope-from dmitry@atlantis.dp.ua) Message-Id: Date: Mon, 10 Dec 2001 14:21:11 +0200 (EET) From: Dmitry Pryanishnikov To: In-Reply-To: <200112090047.fB90lvb00446@localhost> Subject: ports/32669: mpg123 can't play mono mp3 file after stereo one Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32669 >Category: ports >Synopsis: mpg123 can't play mono mp3 file after stereo one >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 04:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dmitry Pryanishnikov >Release: FreeBSD 4.4-RELEASE i386 >Organization: Home >Environment: System: FreeBSD Lynx.Homenet.dp.ua 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Sat Dec 8 18:02:11 EET 2001 root@Lynx.Homenet.dp.ua:/usr/src/sys/compile/lynx i386 Machine: iP200-MMX, RAM 32Mb, Ensoniq AudioPCI (ES1370) soundcard. Also verified on Creative SB16 ISA soundcard - results are the same. >Description: mpg123 fails to play mono mp3 file after stereo one (despite being able to play both files during the separate run, or stereo after mono). Program complains "No supported rate found!" and exits. >How-To-Repeat: Take 2 mp3 files (1.mp3 is a join-stereo one, while 2.mp3 is a mono): root@Lynx# mpg123 1.mp3 2.mp3 High Performance MPEG 1.0/2.0/2.5 Audio Player for Layer 1, 2 and 3. Version 0.59r (1999/Jun/15). Written and copyrights by Michael Hipp. Uses code from various people. See 'README' for more! THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY! USE AT YOUR OWN RISK! Playing MPEG stream from 1.mp3 ... MPEG 1.0 layer III, 48 kbit/s, 44100 Hz joint-stereo [1:10] Decoding of 1.mp3 finished. Playing MPEG stream from 2.mp3 ... MPEG 1.0 layer III, 48 kbit/s, 44100 Hz mono No supported rate found! Note than "mpg123 1.mp3", "mpg123 2.mp3" and even "mpg123 2.mp3 1.mp3" works fine. >Fix: Don't know (--reopen doesn't help). >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 4:30:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 166FC37B423 for ; Mon, 10 Dec 2001 04:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBACU1e16098; Mon, 10 Dec 2001 04:30:01 -0800 (PST) (envelope-from gnats) Received: from atlantis.dp.ua (atlantis.dp.ua [193.108.46.1]) by hub.freebsd.org (Postfix) with ESMTP id 7ADBA37B417 for ; Mon, 10 Dec 2001 04:24:16 -0800 (PST) Received: from localhost (dmitry@localhost) by atlantis.dp.ua (8.11.1/8.11.1) with ESMTP id fBACOCq64336 for ; Mon, 10 Dec 2001 14:24:12 +0200 (EET) (envelope-from dmitry@atlantis.dp.ua) Message-Id: Date: Mon, 10 Dec 2001 14:24:12 +0200 (EET) From: Dmitry Pryanishnikov To: In-Reply-To: Subject: ports/32670: Re: your mail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32670 >Category: ports >Synopsis: mpg123: -b doesn't work >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 04:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dmitry Pryanishnikov >Release: FreeBSD 4.4-RELEASE i386 >Organization: Home >Environment: System: FreeBSD Lynx.Homenet.dp.ua 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Sat Dec 8 18:02:11 EET 2001 root@Lynx.Homenet.dp.ua:/usr/src/sys/compile/lynx i386 Machine: iP200-MMX, RAM 32Mb, Ensoniq AudioPCI (ES1370) soundcard. Also verified on Creative SB16 ISA soundcard - results are the same. >Description: mpg123 fails to play any mp3 files with -b (buffer size) option. Program complains "No supported rate found!", "Yuck! Error in buffer handling...: Invalid argument" and exits. >How-To-Repeat: Take any mp3 file: root@Lynx# mpg123 -b 1000 1.mp3 High Performance MPEG 1.0/2.0/2.5 Audio Player for Layer 1, 2 and 3. Version 0.59r (1999/Jun/15). Written and copyrights by Michael Hipp. Uses code from various people. See 'README' for more! THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY! USE AT YOUR OWN RISK! Playing MPEG stream from 1.mp3 ... MPEG 1.0 layer III, 48 kbit/s, 44100 Hz joint-stereo No supported rate found! root@Lynx# Yuck! Error in buffer handling...: Invalid argument >Fix: Don't know. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 5:50: 6 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A429837B41B for ; Mon, 10 Dec 2001 05:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBADo3w29584; Mon, 10 Dec 2001 05:50:03 -0800 (PST) (envelope-from gnats) Date: Mon, 10 Dec 2001 05:50:03 -0800 (PST) Message-Id: <200112101350.fBADo3w29584@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Ceri Subject: Re: ports/32271: [PATCH] pkg-plist for net/isc-dhcp2 incorrect Reply-To: Ceri Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32271; it has been noted by GNATS. From: Ceri To: "David W. Chapman Jr." Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/32271: [PATCH] pkg-plist for net/isc-dhcp2 incorrect Date: Mon, 10 Dec 2001 13:32:13 +0000 On Sat, Dec 08, 2001 at 04:10:03PM -0800, David W. Chapman Jr. wrote: > > I am actually thinking of removing this port, does anyone have any > objections? I think it's quite good for the timid (read: "me"), as it doesn't install dhclient, only the server stuff. Ceri -- keep a mild groove on To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 6:18: 7 2001 Delivered-To: freebsd-ports@freebsd.org Received: from smtp.bmi.net (smtp.bmi.net [204.57.191.31]) by hub.freebsd.org (Postfix) with ESMTP id 3987D37B416; Mon, 10 Dec 2001 06:18:04 -0800 (PST) Received: from johncoop.MSHOME (drumheller-router.bmi.net [206.63.201.3] (may be forged)) by smtp.bmi.net (Pro-8.9.3/Pro-8.9.3) with ESMTP id OAA32416; Mon, 10 Dec 2001 14:25:24 -0800 Date: Mon, 10 Dec 2001 06:17:58 -0800 From: John Merryweather Cooper To: sheldonh@FreeBSD.org Cc: sheldonh@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/32645: build broken on lang/fpc Message-ID: <20011210061758.I37088@johncoop.MSHOME> References: <200112101156.fBAButI02519@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=_X2DjefcQXOx3fn" Content-Transfer-Encoding: 8bit In-Reply-To: <200112101156.fBAButI02519@freefall.freebsd.org>; from sheldonh@FreeBSD.org on Mon, Dec 10, 2001 at 03:56:55 -0800 X-Mailer: Balsa 1.2.3 Lines: 74 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --=_X2DjefcQXOx3fn Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit On 2001.12.10 03:56 sheldonh@FreeBSD.org wrote: > Synopsis: build broken on lang/fpc > > Responsible-Changed-From-To: freebsd-ports->lioux > Responsible-Changed-By: sheldonh > Responsible-Changed-When: Mon Dec 10 03:55:56 PST 2001 > Responsible-Changed-Why: > Mario, could you take a look at this one? Nobody's touched the port > since Actually, lioux made a subsequent commit that allows the port to install. One of my patches inadvertently got left out though, and this creates a bug should the port be reinstalled. (See attached replacement for files/fix-samplecfg). > you first imported it. Note the change of address of maintainer. > My address is a somewhat complicated issue. I can't talk to FreeBSD anymore on jmcoopr@webmail.bmi.net because my ISP's reverse-DNS is hopelessly broken. But some people can't talk to me on my yahoo.com address because some brain-dead SPAM filters nuke the message in transit. Hence, I've stuck to jmcoopr@webmail.bmi.net as my MAINTAINER address because I can reliably be reached on it (even if I can't talk back reliably on it). :) > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32645 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > -- jmc || MacroHard -- \ || the perfection of form over | ----------------------------------|| substance, marketing over | Web: http://www.borgsdemons.com || performance, and greed over | || design . . . | =====================================================================/ Public Key: http://www.borgsdemons.com/Personal/pgpkey.asc | =====================================================================\ --=_X2DjefcQXOx3fn Content-Type: application/octet-stream; charset=us-ascii Content-Disposition: attachment; filename=fix-samplecfg Content-Transfer-Encoding: base64 LS0tIHNhbXBsZWNmZwlTYXQgRGVjIDIzIDE1OjAyOjQwIDIwMDAKKysrIHNhbXBsZWNmZy5u ZXcJU3VuIERlYyAgOSAwNzoxMjoxNSAyMDAxCkBAIC00LDcgKzQsNyBAQAogIwogIyAgR2Vu ZXJhdGUgU2FtcGxlIEZyZWUgUGFzY2FsIGNvbmZpZ3VyYXRpb24gZmlsZQogIwotaWYgWyAk IyA9PSAwIF07IHRoZW4KK2lmIFsgJCMgLWVxIDAgXTsgdGhlbgogICBlY2hvICdVc2FnZSA6 JwogICBlY2hvICdzYW1wbGVjZmcgZnBjZGlyIGNvbmZkaXInCiAgIGVjaG8gJ2ZwY2RpciA9 IFBhdGggd2hlcmUgRlBDIGlzIGluc3RhbGxlZCcKQEAgLTI5LDcgKzI5LDcgQEAKICMKIGlm IFsgLWYgJHRoZWZpbGUgXSA7IHRoZW4KICAgbXYgJHRoZWZpbGUgJHRoZWZpbGUub3JpZyAg Pi9kZXYvbnVsbCAyPiYxCi0gIGlmIFsgJD8gPT0gMCBdOyB0aGVuCisgIGlmIFsgJD8gLWVx IDAgXTsgdGhlbgogICAgIGVjaG8gU2F2ZWQgb2xkIGNvbmZpZyB0byAkdGhlZmlsZS5vcmln CiAgIGVsc2UKICAgICBlY2hvIENvdWxkIG5vdCBzYXZlIG9sZCBjb25maWcuIEJhaWxpbmcg b3V0Li4uCkBAIC0zOCw5ICszOCwxNSBAQAogZmkKIAogIyBGaW5kIHBhdGggdG8gbGliZ2Nj LmEKLUdDQ1NQRUM9YChnY2MgLXYgMj4mMSl8IGhlYWQgLW4gMXwgYXdrICd7IHByaW50ICQ0 IH0gJ2AKLUdDQ0RJUj1gZGlybmFtZSAkR0NDU1BFQ2AKLWVjaG8gRm91bmQgbGliZ2NjLmEg aW4gJEdDQ0RJUgorI0dDQ1NQRUM9YChnY2MgLXYgMj4mMSl8IGhlYWQgLW4gMXwgYXdrICd7 IHByaW50ICQ0IH0gJ2AKKyNHQ0NESVI9YGRpcm5hbWUgJEdDQ1NQRUNgCitHQ0NESVI9L3Vz ci9saWIKK2lmIFsgLWYgJEdDQ0RJUi9saWJnY2MuYSBdOyB0aGVuCisgICAgZWNobyBGb3Vu ZCBsaWJnY2MuYSBpbiAkR0NDRElSCitlbHNlCisgICAgZWNobyBGcmVlQlNEIGxpYmdjYy5h IGNvdWxkIG5vdCBiZSBmb3VuZC4gIEJhaWxpbmcgb3V0Li4uCisgICAgZXhpdAorZmkKIAog IyBXcml0ZSB0aGUgZmlsZQogZWNobyBXcml0aW5nIHNhbXBsZSBjb25maWd1cmF0aW9uIGZp bGUgdG8gJHRoZWZpbGUK --=_X2DjefcQXOx3fn-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 6:29:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A98737B417; Mon, 10 Dec 2001 06:29:30 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAEKrC45162; Mon, 10 Dec 2001 06:20:53 -0800 (PST) (envelope-from joe) Date: Mon, 10 Dec 2001 06:20:53 -0800 (PST) From: Message-Id: <200112101420.fBAEKrC45162@freefall.freebsd.org> To: joe@FreeBSD.org, cvs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32231: Update port devel/fam Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port devel/fam Responsible-Changed-From-To: cvs->freebsd-ports Responsible-Changed-By: joe Responsible-Changed-When: Mon Dec 10 06:20:39 PST 2001 Responsible-Changed-Why: This needs to be managed by a ports person. They should pick up the changes and when ready email cvs@ requesting the repo-copy in the normal way. It is incorrect to assign this PR directly to cvs@ because in general the repomeisters don't do port upgrades. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32231 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 6:30:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83B5637B419 for ; Mon, 10 Dec 2001 06:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAEU0u46216; Mon, 10 Dec 2001 06:30:00 -0800 (PST) (envelope-from gnats) Received: from phobos.raisdorf.net (phobos.raisdorf.net [195.244.235.251]) by hub.freebsd.org (Postfix) with ESMTP id 0ADD037B405 for ; Mon, 10 Dec 2001 06:22:39 -0800 (PST) Received: from localhost (localhost [[UNIX: localhost]]) by phobos.raisdorf.net (8.11.6/8.11.6) id fBAEDbD21727; Mon, 10 Dec 2001 15:13:37 +0100 (CET) Message-Id: <200112101413.fBAEDbD21727@phobos.raisdorf.net> Date: Mon, 10 Dec 2001 15:13:37 +0100 (CET) From: Oliver Lehmann Reply-To: Oliver Lehmann To: FreeBSD-gnats-submit@freebsd.org Cc: Oliver Lehmann X-Send-Pr-Version: 3.113 Subject: ports/32673: update port: graphics/xawtv Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32673 >Category: ports >Synopsis: update port: graphics/xawtv >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 06:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Oliver Lehmann >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD localhost138.brainwire.de 4.4-STABLE FreeBSD 4.4-STABLE #5: Wed Oct 17 21:33:39 CEST 2001 olivleh1@localhost138.brainwire.de:/usr/obj/usr/src/sys/LOCALHOST138 i386 >Description: update xawtv 3.37 to 3.65 obsolte PR's: [2001/09/02] ports/30264 greid Update port: graphics/xawtv [2001/11/01] ports/31691 greid update port: graphics/xawtv I hope, somone will deal with these PR, or greid drop his maintainership (he told me, he has not enougth time for maintainig this port). Xawtv 3.37 is really slow and the TV quality is bad in comparsion with xawtv 3.65. >How-To-Repeat: >Fix: diff -ruN xawtv.old/Makefile xawtv/Makefile --- xawtv.old/Makefile Mon Dec 10 14:47:53 2001 +++ xawtv/Makefile Mon Dec 10 14:57:15 2001 @@ -6,9 +6,10 @@ # PORTNAME= xawtv -PORTVERSION= 3.37 +PORTVERSION= 3.65 CATEGORIES= graphics -MASTER_SITES= http://www.strusel007.de/linux/xawtv/ +WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/} +MASTER_SITES= http://bytesex.org/xawtv/ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= greid@ukug.uk.freebsd.org @@ -17,27 +18,34 @@ png.5:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg -WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/} +CONFIGURE_ARGS= --prefix=${PREFIX} -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes USE_X_PREFIX= yes -SEDFILES= . font i2c man src radio contrib/cc webcam oldstuff/vtx \ + +FILES_CFLAGS= . font i2c man src radio webcam oldstuff/vtx \ libng libvbi http +FILES_X11BASE= configure Make.config.in -MAN1= alevtd.1 fbtv.1 propwatch.1 rootv.1 showriff.1 v4l-conf.1 \ - v4lctl.1 webcam.1 xawtv-remote.1 xawtv.1 -post-configure: -.for M in ${SEDFILES} - @(${SED} -e 's,^CFLAGS=,CFLAGS+=,g' ${WRKSRC}/$M/Makefile | \ - ${SED} -e 's,-O2,,g' > ${WRKSRC}/foo && ${MV} ${WRKSRC}/foo ${WRKSRC}/$M/Makefile) +MAN1= alevtd.1 dump-mixers.1 fbtv.1 motv.1 ntsc-cc.1 propwatch.1 record.1 \ + rootv.1 scantv.1 showriff.1 \ + streamer.1 subtitles.1 ttv.1 v4lctl.1 \ + webcam.1 xawtv-remote.1 xawtv.1 +MAN5= xawtvrc.5 +MAN8= v4l-conf.8 + +post-patch: +.for i in ${FILES_X11BASE} + ${PERL} -pi -e "s|%%X11BASE%%|${X11BASE}|g" ${WRKSRC}/$i .endfor -post-install: -.for F in led-koi8.pcf led-latin1.pcf led-latin2.pcf - @gzip ${PREFIX}/lib/X11/fonts/misc/$F +post-configure: +.for i in ${FILES_CFLAGS} + ${PERL} -pi -e "s|^CFLAGS=|CFLAGS+=|g" ${WRKSRC}/$i/Makefile .endfor .include diff -ruN xawtv.old/distinfo xawtv/distinfo --- xawtv.old/distinfo Mon Dec 10 14:47:53 2001 +++ xawtv/distinfo Mon Dec 10 15:00:21 2001 @@ -1 +1 @@ -MD5 (xawtv_3.37.tar.gz) = a264eddc95fa92b83b14be386abc7be8 +MD5 (xawtv_3.65.tar.gz) = 6695dc3ef1c6ad4caa4b22b5cc0930ca diff -ruN xawtv.old/files/patch-configure xawtv/files/patch-configure --- xawtv.old/files/patch-configure Thu Jan 1 01:00:00 1970 +++ xawtv/files/patch-configure Mon Dec 10 14:55:52 2001 @@ -0,0 +1,24 @@ +--- configure.orig Wed Oct 10 12:31:37 2001 ++++ configure Wed Oct 31 21:47:19 2001 +@@ -2833,19 +2833,13 @@ + + echo $ac_n "checking for X11 config directory""... $ac_c" 1>&6 + echo "configure:2836: checking for X11 config directory" >&5 +-x11conf=/usr/X11R6/lib/X11 +-if test -d /etc/X11; then +- x11conf=/etc/X11 +-fi ++x11conf=%%X11BASE%%/lib/X11 + echo "$ac_t""$x11conf" 1>&6 + + + echo $ac_n "checking for X11 app-defaults directory""... $ac_c" 1>&6 + echo "configure:2845: checking for X11 app-defaults directory" >&5 +-resdir=/usr/X11R6/lib/X11 +-if test -d /etc/X11/app-defaults; then +- resdir=/etc/X11 +-fi ++resdir=%%X11BASE%%/lib/X11 + echo "$ac_t""$resdir/app-defaults" 1>&6 + + diff -ruN xawtv.old/files/patch-font::Makefile.in xawtv/files/patch-font::Makefile.in --- xawtv.old/files/patch-font::Makefile.in Mon Dec 10 14:47:53 2001 +++ xawtv/files/patch-font::Makefile.in Mon Dec 10 14:55:52 2001 @@ -1,9 +1,10 @@ ---- font/Makefile.in.orig Sat Mar 3 22:50:32 2001 -+++ font/Makefile.in Sat Mar 3 22:50:44 2001 -@@ -16,7 +16,6 @@ +--- font/Makefile.in.orig Sun Sep 2 12:01:30 2001 ++++ font/Makefile.in Sun Sep 2 12:01:45 2001 +@@ -23,7 +23,6 @@ done - if test "$(ROOT)" = ""; then \ - (cd $(FONTDIR); mkfontdir); \ -- xset fp rehash; \ - true; \ + if test "$(DESTDIR)" = ""; then \ + (cd $(fontdir); mkfontdir); \ +- xset fp rehash || true; \ fi + + diff -ruN xawtv.old/files/patch-src::Makefile.in xawtv/files/patch-src::Makefile.in --- xawtv.old/files/patch-src::Makefile.in Thu Jan 1 01:00:00 1970 +++ xawtv/files/patch-src::Makefile.in Mon Dec 10 14:55:52 2001 @@ -0,0 +1,19 @@ +--- src/Makefile.in.orig Mon Oct 8 10:26:40 2001 ++++ src/Makefile.in Wed Oct 31 21:07:03 2001 +@@ -120,12 +120,14 @@ + install-dirs: + $(INSTALL_DIR) $(bindir) + $(INSTALL_DIR) $(resdir)/app-defaults +- $(INSTALL_DIR) $(resdir)/de/app-defaults ++ for lang in $(LANG); do \ ++ $(INSTALL_DIR) $(resdir)/$$lang/app-defaults;\ ++ done + + install-common: + $(INSTALL_DIR) $(bindir) + $(INSTALL_DIR) $(resdir)/app-defaults +- $(INSTALL_PROGRAM) $(srcdir)/subtitles $(bindir) ++ $(INSTALL_DATA) -m 555 $(srcdir)/subtitles $(bindir) + $(INSTALL_PROGRAM) -s xawtv-remote $(bindir) + $(INSTALL_PROGRAM) -s streamer $(bindir) + $(INSTALL_PROGRAM) -s v4lctl $(bindir) diff -ruN xawtv.old/files/patch-src::motif.c xawtv/files/patch-src::motif.c --- xawtv.old/files/patch-src::motif.c Thu Jan 1 01:00:00 1970 +++ xawtv/files/patch-src::motif.c Mon Dec 10 14:55:53 2001 @@ -0,0 +1,22 @@ +--- src/motif.c.orig Mon Sep 17 00:42:53 2001 ++++ src/motif.c Mon Sep 17 00:45:40 2001 +@@ -24,6 +24,19 @@ + # include + #endif + ++#if defined(__FreeBSD__) ++typedef struct mixer_info ++{ ++ char id[16]; ++ char name[32]; ++ int modify_counter; ++ int fillers[10]; ++} mixer_info; ++ ++ ++# define SOUND_MIXER_INFO _IOR ('M', 101, mixer_info) ++#endif ++ + #include + #include + #include diff -ruN xawtv.old/files/patch-src::xt.c xawtv/files/patch-src::xt.c --- xawtv.old/files/patch-src::xt.c Thu Jan 1 01:00:00 1970 +++ xawtv/files/patch-src::xt.c Mon Dec 10 14:55:53 2001 @@ -0,0 +1,16 @@ +--- src/xt.c.orig Mon Sep 17 00:39:58 2001 ++++ src/xt.c Mon Sep 17 00:40:07 2001 +@@ -27,6 +27,13 @@ + # include + #endif + ++#if defined(__FreeBSD__) ++#define VIDEO_SOUND_MONO 1 ++#define VIDEO_SOUND_STEREO 2 ++#define VIDEO_SOUND_LANG1 4 ++#define VIDEO_SOUND_LANG2 8 ++#endif ++ + #include "config.h" + + #include diff -ruN xawtv.old/pkg-descr xawtv/pkg-descr --- xawtv.old/pkg-descr Mon Dec 10 14:47:53 2001 +++ xawtv/pkg-descr Mon Dec 10 14:55:53 2001 @@ -1,7 +1,7 @@ This is a _simple_ xaw-based TV Program which uses the bttv driver or video4linux (included in 2.1.x). Copy Policy is GNU GPL. -WWW: http://www.strusel007.de/linux/xawtv/ +WWW: http://bytesex.org/xawtv/ - George Reid greid@ukug.uk.freebsd.org diff -ruN xawtv.old/pkg-plist xawtv/pkg-plist --- xawtv.old/pkg-plist Mon Dec 10 14:47:53 2001 +++ xawtv/pkg-plist Mon Dec 10 14:55:53 2001 @@ -1,16 +1,26 @@ bin/alevtd bin/dump-mixers +bin/ntsc-cc bin/propwatch bin/record bin/rootv bin/scantv bin/showriff bin/streamer +bin/subtitles +bin/ttv bin/v4lctl bin/webcam bin/xawtv bin/xawtv-remote -lib/X11/app-defaults/Xawtv -lib/X11/fonts/misc/led-koi8.pcf.gz -lib/X11/fonts/misc/led-latin1.pcf.gz -lib/X11/fonts/misc/led-latin2.pcf.gz +lib/X11/app-defaults/MoTV +lib/X11/fonts/misc/led-iso8859-1.pcf.gz +lib/X11/fonts/misc/led-iso8859-2.pcf.gz +lib/X11/fonts/misc/led-koi8-r.pcf.gz +lib/X11/de/app-defaults/MoTV +lib/X11/it/app-defaults/MoTV +@dirrm lib/X11/de/app-defaults +@dirrm lib/X11/de +@dirrm lib/X11/it/app-defaults +@dirrm lib/X11/it + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 6:59:32 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54A3337B417; Mon, 10 Dec 2001 06:59:30 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAErSV65921; Mon, 10 Dec 2001 06:53:28 -0800 (PST) (envelope-from ijliao) Date: Mon, 10 Dec 2001 06:53:28 -0800 (PST) From: Message-Id: <200112101453.fBAErSV65921@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, greid@FreeBSD.org Subject: Re: ports/32673: update port: graphics/xawtv Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: graphics/xawtv Responsible-Changed-From-To: freebsd-ports->greid Responsible-Changed-By: ijliao Responsible-Changed-When: Mon Dec 10 06:52:59 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32673 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 7: 5: 9 2001 Delivered-To: freebsd-ports@freebsd.org Received: from fep6.cogeco.net (smtp.cogeco.net [216.221.81.25]) by hub.freebsd.org (Postfix) with ESMTP id 7137E37B41B; Mon, 10 Dec 2001 07:05:05 -0800 (PST) Received: from earth.upton.net (d141-18-230.home.cgocable.net [24.141.18.230]) by fep6.cogeco.net (Postfix) with SMTP id 224762EE7; Mon, 10 Dec 2001 10:05:04 -0500 (EST) Date: Mon, 10 Dec 2001 10:05:03 -0500 From: Paul Murphy To: "David O'Brien" Cc: steve@FreeBSD.ORG, lioux@FreeBSD.ORG, portmgr@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: GNOME/KDE issue with disc1 Message-Id: <20011210100503.70a33f5d.pnmurphy@cogeco.ca> In-Reply-To: <20011209181503.A1921@dragon.nuxi.com> References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> <20011209151048.B92399@dragon.nuxi.com> <20011209192745.3597e2dc.pnmurphy@cogeco.ca> <20011209181503.A1921@dragon.nuxi.com> X-Mailer: Sylpheed version 0.6.5claws8 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, 9 Dec 2001 18:15:03 -0800 "David O'Brien" wrote: > On Sun, Dec 09, 2001 at 07:27:45PM -0500, Paul Murphy wrote: > > Personally I would think disc1 should take a "lets get up and running" > > attitude, and contain a "simpler" desktop. KDE and GNOME are way too > > bloated for a _basic_ install. > > I still use the same desktop and window manager I have for the past 8 > years (which means not GNOME or KDE) so I'm not giving favors to either I DO use KDE, but it was not the _first_ desktop I installed (AfterStep was). > -- but we cannot ignore that these are the two most popular desktops > today. W/o the added functionality those two give over my own CTWM, we > cannot attract and please those of the M$ generation. > If people buy(?) a four disc set I'm sure they would realise that not everything could go on the #1 disc. [ They might even feel cheated if all they needed was one disk, but they had to pay for four] > Maybe I should be saying it simpler -- that getting KDE and GNOME > installed from get go *is* a basic install today. > The label on my disc one says "Insallation Boot, ESSENTIAL Packages, XFree86" [emphasis mine]. I would think this contained things like Bash, pine, etc - all console apps. The only reason I would expect ANY X11 apps is because XFree86 is on the disc, and I would only expect to find enough to get X11 running. Pesonally I wouldn't even put XFree86 on disc one but I realise it might be difficult to fill the disc space otherwise. > -- > -- David (obrien@FreeBSD.org) > -- I call it "No-Pants Wonderday," but it turns out the police just call it "Thursday." Go figure. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 7:20: 5 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B888E37B419 for ; Mon, 10 Dec 2001 07:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAFK1I72588; Mon, 10 Dec 2001 07:20:01 -0800 (PST) (envelope-from gnats) Date: Mon, 10 Dec 2001 07:20:01 -0800 (PST) Message-Id: <200112101520.fBAFK1I72588@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jochem Kossen Subject: Re: ports/32655: New Port: fluxbox x11 window manager Reply-To: Jochem Kossen Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32655; it has been noted by GNATS. From: Jochem Kossen To: freebsd-gnats-submit@FreeBSD.org, matthew@topic.com.au Cc: Subject: Re: ports/32655: New Port: fluxbox x11 window manager Date: Mon, 10 Dec 2001 16:13:53 +0100 I sent this earlier, but that somehow didn't seem to come through in gnats... I think this can be closed, ports/32390 is a request for the same windowmanager, but that one has a port in it... Greetz, Jochem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 7:20:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DF7137B41E for ; Mon, 10 Dec 2001 07:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAFK4n72604; Mon, 10 Dec 2001 07:20:04 -0800 (PST) (envelope-from gnats) Date: Mon, 10 Dec 2001 07:20:04 -0800 (PST) Message-Id: <200112101520.fBAFK4n72604@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David W. Chapman Jr." Subject: Re: ports/32268: Port of TightVNC overwrites existing VNC install Reply-To: "David W. Chapman Jr." Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32268; it has been noted by GNATS. From: "David W. Chapman Jr." To: , "Dominic Marks" Cc: Subject: Re: ports/32268: Port of TightVNC overwrites existing VNC install Date: Mon, 10 Dec 2001 09:15:15 -0600 vnc-tight has just been renamed to tightvnc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 7:46:24 2001 Delivered-To: freebsd-ports@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id 3B8C737B405 for ; Mon, 10 Dec 2001 07:46:18 -0800 (PST) Received: from 200.181.48.115 (unknown [200.181.48.115]) by heaven.gigo.com (Postfix) with ESMTP id 36FBAB8D3 for ; Mon, 10 Dec 2001 07:46:17 -0800 (PST) Received: (qmail 1258 invoked by uid 1001); 10 Dec 2001 15:45:54 -0000 Message-ID: <20011210154554.1257.qmail@exxodus.fedaykin.here> Date: Mon, 10 Dec 2001 13:45:32 -0200 From: Mario Sergio Fujikawa Ferreira To: John Merryweather Cooper Cc: sheldonh@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/32645: build broken on lang/fpc References: <200112101156.fBAButI02519@freefall.freebsd.org> <20011210061758.I37088@johncoop.MSHOME> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210061758.I37088@johncoop.MSHOME>; from john_m_cooper@yahoo.com on Mon, Dec 10, 2001 at 06:17:36AM -0800 X-Operating-System: FreeBSD 4.4-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 06:17:36AM -0800, John Merryweather Cooper wrote: > > On 2001.12.10 03:56 sheldonh@FreeBSD.org wrote: > > Synopsis: build broken on lang/fpc > > > > Responsible-Changed-From-To: freebsd-ports->lioux > > Responsible-Changed-By: sheldonh > > Responsible-Changed-When: Mon Dec 10 03:55:56 PST 2001 > > Responsible-Changed-Why: > > Mario, could you take a look at this one? Nobody's touched the port Thanks Sheldon. :) > Actually, lioux made a subsequent commit that allows the port to > install. One of my patches inadvertently got left out though, and I have just noticed that. For some reason, cvs believed the patch shouldn't have been updated. :( I committed the exact version I have send you for verification. Weird. I am recommitting. > My address is a somewhat complicated issue. I can't talk to FreeBSD > anymore on jmcoopr@webmail.bmi.net because my ISP's reverse-DNS is > hopelessly broken. But some people can't talk to me on my yahoo.com > address because some brain-dead SPAM filters nuke the message in > transit. Hence, I've stuck to jmcoopr@webmail.bmi.net as my MAINTAINER > address because I can reliably be reached on it (even if I can't talk > back reliably on it). :) Sigh, I had such issues. I had to make very complicated email arrangements to make sure I do not miss any. Sigh. Perhaps, you can find a free email relayer. There are none in my country but I heard that there are many in US. Unfortunaly, switching ISPs is not always a choice ... or, can make things even worse as I have found out. -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 7:46:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id D706B37B417 for ; Mon, 10 Dec 2001 07:46:20 -0800 (PST) Received: from 200.181.48.115 (unknown [200.181.48.115]) by heaven.gigo.com (Postfix) with ESMTP id 3ABA3B8CA for ; Mon, 10 Dec 2001 07:46:15 -0800 (PST) Received: (qmail 833 invoked by uid 1001); 10 Dec 2001 15:22:23 -0000 Message-ID: <20011210152223.832.qmail@exxodus.fedaykin.here> Date: Mon, 10 Dec 2001 13:22:01 -0200 From: Mario Sergio Fujikawa Ferreira To: Dan B Cc: ports@FreeBSD.ORG Subject: Re: arm-gcc-3.x? References: <20011210055720.5750.qmail@linuxmail.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210055720.5750.qmail@linuxmail.org>; from linuxmandan@linuxmail.org on Mon, Dec 10, 2001 at 01:56:58PM +0800 X-Operating-System: FreeBSD 4.4-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 01:56:58PM +0800, Dan B wrote: > You guys are doing a great job with the ports. I'm interested in Game Boy Advance development wich requires arm-gcc-3.x, so I'm wondering if it's being worked on. If so, do you have an approximate ETA? Thanks very much. AFAIK, David Obrien and possibly others (I am not very well informed :) are working on this as we speak. Give them time. :) Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 10:25: 5 2001 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kcilink.com [216.194.193.105]) by hub.freebsd.org (Postfix) with ESMTP id A592E37B41B for ; Mon, 10 Dec 2001 10:24:59 -0800 (PST) Received: from onceler.kciLink.com (onceler.kciLink.com [216.194.193.106]) by yertle.kciLink.com (Postfix) with ESMTP id BE7881E841 for ; Mon, 10 Dec 2001 13:24:54 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.6/8.11.6) id fBAIOsI03199 for freebsd-ports@freebsd.org; Mon, 10 Dec 2001 13:24:54 -0500 (EST) (envelope-from khera) Date: Mon, 10 Dec 2001 13:24:54 -0500 (EST) Message-Id: <200112101824.fBAIOsI03199@onceler.kciLink.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: Vivek Khera To: freebsd-ports@freebsd.org Subject: Re: www:www in apache ports Newsgroups: ml.freebsd.ports References: <3C11333B.2538.16B61E5E@localhost> X-Trace: lorax.kciLink.com 1008007685 42796 216.194.193.106 (10 Dec 2001 18:08:05 GMT) X-Complaints-To: daemon@kciLink.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >>>>> "DL" == Dan Langille writes: DL> One side effect of this new "add www:www" to the system is that upgrading DL> to apache, on a system where I already had www defined, has given it a DL> new UID/GID, and I need to do some chmods. See http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32536 -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-240-453-8497 AIM: vivekkhera Y!: vivek_khera http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 10:31: 3 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4945D37B431 for ; Mon, 10 Dec 2001 10:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAIU4t05104; Mon, 10 Dec 2001 10:30:04 -0800 (PST) (envelope-from gnats) Received: from missouri.cs.pdx.edu (missouri.cs.pdx.edu [131.252.222.97]) by hub.freebsd.org (Postfix) with ESMTP id 9B63137B419 for ; Mon, 10 Dec 2001 10:23:10 -0800 (PST) Received: (from jrb@localhost) by missouri.cs.pdx.edu (8.11.6/8.11.3) id fBAIN7N07483; Mon, 10 Dec 2001 10:23:07 -0800 (PST) (envelope-from jrb) Message-Id: <200112101823.fBAIN7N07483@missouri.cs.pdx.edu> Date: Mon, 10 Dec 2001 10:23:07 -0800 (PST) From: jrb@cs.pdx.edu Reply-To: jrb@cs.pdx.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32678: New port: wscan, 802.11 wireless signal strength meter Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32678 >Category: ports >Synopsis: New port: wscan, 802.11 wireless signal strength meter >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 10:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jim Binkley >Release: FreeBSD 4.4-RELEASE i386 >Organization: Portland State University/Computer Science >Environment: System: FreeBSD missouri.cs.pdx.edu 4.4-RELEASE FreeBSD 4.4-RELEASE #1: Sat Nov 17 15:37:54 PST 2001 root@missouri.cs.pdx.edu:/usr/src/44.release/src/sys/compile/PSUMIP i386 >Description: New port for FreeBSD. wscan ... Lucent 802.11 card visual signal strength meter. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # bsdport.wscan # bsdport.wscan/Makefile # bsdport.wscan/distinfo # bsdport.wscan/pkg-comment # bsdport.wscan/pkg-descr # bsdport.wscan/pkg-plist # echo c - bsdport.wscan mkdir -p bsdport.wscan > /dev/null 2>&1 echo x - bsdport.wscan/Makefile sed 's/^X//' >bsdport.wscan/Makefile << 'END-of-bsdport.wscan/Makefile' X# New ports collection makefile for: wscan X# Date created: 10 December 2001 X# Whom: Jim Binkley X# X# $FreeBSD$ X# X XPORTNAME= wscan XPORTVERSION= 1.00 XCATEGORIES= x11 XMASTER_SITES= ftp://ftp.cs.pdx.edu/pub/mobile/ XEXTRACT_SUFX= .tgz X XMAINTAINER= ports@freebsd.org X XLIB_DEPENDS= fltk.1:${PORTSDIR}/x11-toolkits/fltk X XWRKSRC= $(WRKDIR)/wscan XUSE_XLIB= yes XMAN1= wscan.1 X Xpost-install: X strip ${PREFIX}/bin/wscan X X.include X END-of-bsdport.wscan/Makefile echo x - bsdport.wscan/distinfo sed 's/^X//' >bsdport.wscan/distinfo << 'END-of-bsdport.wscan/distinfo' XMD5 (wscan-1.00.tgz) = 2d030959cd178c4222184885e6c48112 END-of-bsdport.wscan/distinfo echo x - bsdport.wscan/pkg-comment sed 's/^X//' >bsdport.wscan/pkg-comment << 'END-of-bsdport.wscan/pkg-comment' XA 802.11 wireless visual signal strength meter END-of-bsdport.wscan/pkg-comment echo x - bsdport.wscan/pkg-descr sed 's/^X//' >bsdport.wscan/pkg-descr << 'END-of-bsdport.wscan/pkg-descr' Xwscan is a small X-based (fltk) program that shows signal strength, Xgraphically, for Lucent/Orinoco 802.11 cards. On FreeBSD, it uses Xthe wi0 driver. X XWWW: http://www.cs.pdx.edu/research/SMN X X- Jim Binkley Xjrb@cs.pdx.edu END-of-bsdport.wscan/pkg-descr echo x - bsdport.wscan/pkg-plist sed 's/^X//' >bsdport.wscan/pkg-plist << 'END-of-bsdport.wscan/pkg-plist' Xbin/wscan Xbin/wscanlog.sh END-of-bsdport.wscan/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 10:31:39 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 865C437B41C for ; Mon, 10 Dec 2001 10:31:34 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBAIVVq65810; Mon, 10 Dec 2001 10:31:31 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Dec 2001 10:31:31 -0800 From: "David O'Brien" To: Dan B Cc: ports@freebsd.org Subject: Re: arm-gcc-3.x? Message-ID: <20011210103130.A64816@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <20011210055720.5750.qmail@linuxmail.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210055720.5750.qmail@linuxmail.org>; from linuxmandan@linuxmail.org on Mon, Dec 10, 2001 at 01:57:20PM +0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 01:57:20PM +0800, Dan B wrote: > Hey, > > You guys are doing a great job with the ports. I'm interested in Game > Boy Advance development wich requires arm-gcc-3.x, so I'm wondering if > it's being worked on. If so, do you have an approximate ETA? Thanks > very much. Exactly which target do you need? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 10:32:27 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 58A5F37B405 for ; Mon, 10 Dec 2001 10:32:25 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBAIW7r65820; Mon, 10 Dec 2001 10:32:07 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Dec 2001 10:32:07 -0800 From: "David O'Brien" To: Joe Clarke Cc: freebsd-ports@freebsd.org Subject: Re: bison port Message-ID: <20011210103207.B64816@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <1007966362.48232.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1007966362.48232.2.camel@shumai.marcuscom.com>; from marcus@marcuscom.com on Mon, Dec 10, 2001 at 01:39:21AM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 01:39:21AM -0500, Joe Clarke wrote: > Not sure if it applies here, but should PORTEPOCH be incremeted when > bison moved from 1.30 back to 1.28? Maybe, probably, not sure. There will be a 1.31 some day, so maybe we can live with it as-is until then? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 10:36:28 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 2288337B419; Mon, 10 Dec 2001 10:36:25 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBAIaOF65908; Mon, 10 Dec 2001 10:36:24 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Dec 2001 10:36:24 -0800 From: "David O'Brien" To: Steve Price Cc: Mario Sergio Fujikawa Ferreira , portmgr@FreeBSD.org, ports@FreeBSD.org Subject: Re: GNOME/KDE issue with disc1 Message-ID: <20011210103624.C64816@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> <20011209151048.B92399@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011209151048.B92399@dragon.nuxi.com>; from obrien@FreeBSD.org on Sun, Dec 09, 2001 at 03:10:48PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Dec 09, 2001 at 03:10:48PM -0800, David O'Brien wrote: > Maybe we need an exclude list also. Speaking of an exclude list. Should we have XFree86 4 on disc1? Since al the packages are built against XFree64 3, the dependencies are all wrong if you install XF4 and then try to add any other X-using package. (the monolithic XF4 package is 50MB, and if we are going to include it, shouldn't it be the broken down XF4 ports?) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 10:59:10 2001 Delivered-To: freebsd-ports@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id 33FBC37B41B for ; Mon, 10 Dec 2001 10:59:04 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id B214981D01; Mon, 10 Dec 2001 12:58:58 -0600 (CST) Date: Mon, 10 Dec 2001 12:58:58 -0600 From: Alfred Perlstein To: Akinori MUSHA Cc: ports@freebsd.org Subject: Re: request for enhancment: portupgrade Message-ID: <20011210125858.A92148@elvis.mu.org> References: <20011210030804.Y92148@elvis.mu.org> <86vgff4dde.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <86vgff4dde.wl@archon.local.idaemons.org>; from knu@iDaemons.org on Mon, Dec 10, 2001 at 06:45:49PM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * Akinori MUSHA [011210 03:45] wrote: > At Mon, 10 Dec 2001 03:08:04 -0600, > Alfred Perlstein wrote: > > when doing portupgrade one doesn't see which port is actually being > > built, this is epecially odd when doing portupgrade -a. > > Answer 1: Specify -v/--verbose from each command line, in the > PORTUPGRADE environment variable, or in your own pkgtools.conf. > > Answer 2: Maybe I should make portupgrade more verbose even if -v > isn't given. Let me think about it. I think #2 is good, i mean, without -v i see something like.. no need to upgrade foo-1.2.3 no need to upgrade bar-4.1 no need to upgrade baz-6.3.2 Cleaning aaa The cleaning of 'aaa' isn't for baz, what is it for? :) > > portupgrade blocks ^Z (suspend) or at least seems to. > > Yes, this is a known issue. Do you know if or how I can keep > script(1) from blocking SUSP? I haven't figured it out yet.. Can you point me at where and why script(1) is run? I may be able to assist. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' http://www.morons.org/rants/gpl-harmful.php3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 11: 1:31 2001 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C95F137B41C for ; Mon, 10 Dec 2001 11:00:18 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAJ0IM08258 for freebsd-ports@freebsd.org; Mon, 10 Dec 2001 11:00:18 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 10 Dec 2001 11:00:18 -0800 (PST) Message-Id: <200112101900.fBAJ0IM08258@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org 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 report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. 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. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/07/30] ports/29325 ports Dbview contains an error, because of whic o [2001/11/12] ports/31938 ports Broken cookie handling in lynx-ssl-2.8.4. o [2001/12/04] ports/32506 ports mod_auth_pam doesn't works o [2001/12/09] ports/32660 ports kdebase-2.2.2: patch-ksysguardd.c fails t 4 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1999/11/27] ports/15123 ports www/apache13-modssl has PREFIX problems f a [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/11/26] ports/23125 ports Successful emulation of StarOffice depend o [2000/12/07] ports/23358 ports New port: java/jakarta-oro o [2000/12/09] ports/23401 ports NetHack 3.3.1 with GNOME support a [2001/01/31] ports/24753 ports Pipsecd may get a tun device with the IFH o [2001/04/09] ports/26464 ports Citrix client no longer reads files in lo a [2001/05/29] ports/27739 ports Broken Port: textproc/pspell-ispell -- co o [2001/06/04] ports/27875 ports invoked on boot, SIGHUP is delivered and o [2001/06/20] ports/28301 ports Isakmpd port hogs 99% of cpu capacity. o [2001/06/24] ports/28398 ports ja-dvips cannot find tex.pro o [2001/06/27] ports/28458 ports Gnome-1.4's use of Xalf out of sync with o [2001/08/03] ports/29422 ports New port: archivers/stuffit (un)compress f [2001/08/05] ports/29468 ports apache+ssl-1.3.12.1.40 port doesn't insta o [2001/09/09] ports/30477 ports mogrify (ImageMagick-5.3.7) is not moving a [2001/09/17] ports/30638 ports SQL-Ledger port update o [2001/09/18] ports/30663 ports NEW PORT: devel/libCxClient f [2001/09/20] ports/30679 ports Update port: Sablot-0.70 o [2001/09/25] ports/30823 ports New port: KinterbasDB, Python module to a o [2001/09/30] ports/30947 ports mail/mahogany fails to build, conflicts w a [2001/10/08] ports/31143 ports gd does not compile, uses nonexistent ftg o [2001/10/09] ports/31184 ports Latex2html problem o [2001/10/10] ports/31191 ports netsaint - plugins sometimes not found o [2001/10/18] ports/31352 ports Netsaint check_by_ssh: fcntl(0, F_SETFL, o [2001/10/20] ports/31390 ports Citrix ICA client 6.0.908 is no longer av o [2001/10/21] ports/31414 ports gd won't compile on 4.3 o [2001/10/28] ports/31567 ports tgif -print fails to create temp files o [2001/10/28] ports/31578 ports ports: patch for /usr/ports/java/linux-ib o [2001/11/01] ports/31688 ports JDK 1.3.1 Update for Sun's Java Communica o [2001/11/01] ports/31689 ports JDK 1.3.1 update for FreeBSD/Java Commapi o [2001/11/01] ports/31699 ports The graphics/gd2 port conflicts with grap o [2001/11/04] ports/31767 ports Fix glide3 includes for DRI compile o [2001/11/08] ports/31869 ports New port: ruby-interbase o [2001/11/09] ports/31893 ports gnats-3.113.1 conflicts with /usr/bin/sen o [2001/11/16] ports/32047 ports Existence of linux_base-62 appeares to be o [2001/11/19] ports/32123 ports send-pr aborts after editing if VISUAL=je a [2001/11/21] ports/32164 ports New port: p5-XML-SAX-Simple-0.01 o [2001/11/21] ports/32166 ports Installing avifile emphasizes problems wi o [2001/11/23] ports/32223 ports Port databases/mysql-jdbc-mm is quite out a [2001/11/24] ports/32249 ports New port: net/vicq-devel : ICQ client wit o [2001/11/25] ports/32268 ports Port of TightVNC overwrites existing VNC o [2001/12/03] ports/32465 ports emulators/vmware2 doesn't build o [2001/12/03] ports/32471 ports amavis-perl only usable for sendmail o [2001/12/03] ports/32476 ports New port: oracle7-client o [2001/12/03] ports/32477 ports New port: p5-DBD-Oracle-1.12 o [2001/12/03] ports/32491 ports XF86 4.1.0 DPMS not functioning o [2001/12/03] ports/32493 ports [palm/malsync checksum mismatch] o [2001/12/08] ports/32599 ports [PATCH] games/xrobots does not build/inst o [2001/12/08] ports/32608 ports Whoops.. o [2001/12/08] ports/32637 ports Can't make install ja-mozilla-jlp-0.9.6, o [2001/12/09] ports/32639 ports freeamp: preference AllowMultipleInstance o [2001/12/10] ports/32669 ports mpg123 can't play mono mp3 file after ste o [2001/12/10] ports/32670 ports mpg123: -b doesn't work 53 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1999/04/05] ports/10965 ports lcc-3.6 unable to compile anything o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl a [2000/08/14] ports/20601 ports DESTDIR and /etc/shells f [2000/09/10] ports/21179 ports New port: math/gul-vdog-qt f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 f [2000/11/07] ports/22683 ports New port net/dnip-update a [2000/12/02] ports/23232 ports gettext/xview port collision a [2000/12/12] ports/23499 ports [NEW PORT]: Two LaTeX macro package ports o [2000/12/19] ports/23649 ports the port of mod_php4 does not install cor o [2000/12/24] ports/23822 ports mtree entries for German X11 man pages o [2001/01/12] ports/24299 ports Configure the synaptics touchpad. a [2001/01/26] ports/24660 ports New port: Xerces-C 1.3.0 o [2001/01/27] ports/24687 ports QUAKE FORGE & SVGALIB a [2001/01/30] ports/24736 ports New port: SGI's open inventor (graphics/i a [2001/02/17] ports/25177 ports New port: java/jdbcpool-current a [2001/02/24] ports/25342 ports saint: user authentication fails in remot a [2001/02/28] ports/25448 ports mpmf20 fails to correctly display the dir a [2001/03/05] ports/25560 ports New port: ftp/kbear: An ftp client for KD a [2001/03/11] ports/25710 ports New port: news/slrn-pl, slrn with polish o [2001/03/28] ports/26192 ports apel appeared both in xemacs/site-package a [2001/04/01] ports/26274 ports New port: Perl/TK Jabber client a [2001/04/02] ports/26297 ports New port: devel/florist a [2001/04/03] ports/26313 ports New Port: german/eagle: A tool for design a [2001/04/16] ports/26628 ports New port: audio/qtecasound, well done o [2001/04/23] ports/26801 ports cyrus port should add periodic file to pr a [2001/04/24] ports/26825 ports port xmms-avi won't compile libavixmms.so a [2001/04/26] ports/26884 ports new port for visualworks 5i.3 o [2001/05/06] ports/27167 ports ETHOberonV4 won't run f [2001/05/15] ports/27332 ports New port: swedish/staroffice52 a [2001/05/23] ports/27569 ports bootup error problem with Apache 2 a [2001/05/31] ports/27805 ports New port: SQL-Ledger Accounting o [2001/06/07] ports/27931 ports devel/pth vs. native pthreads conflict fi a [2001/06/08] ports/27956 ports New port:A messenging client supporting A o [2001/06/12] ports/28111 ports pcb port has unlisted dependencies a [2001/06/12] ports/28115 ports New Port - textproc/htmldoc o [2001/06/18] ports/28256 ports New port: citadel-5.74 a [2001/06/19] ports/28272 ports Update port: net/libsocket++ o [2001/06/21] ports/28332 ports Gimp manual port 1-2 years out of date, m o [2001/06/23] ports/28363 ports New port: audacity-0.95 - a graphical wav o [2001/06/27] ports/28450 ports New ports: sword bible library, sword-mod a [2001/06/28] ports/28482 ports PostgreSQL Compile problem o [2001/06/29] ports/28521 ports inconsistency: daemontools and serialmail f [2001/06/30] ports/28551 ports ports/mail/faces doesn't build (linking w o [2001/07/02] ports/28658 ports new port: x11/mwheel.el o [2001/07/06] ports/28771 ports opendx server fails to start o [2001/07/09] ports/28851 ports New port: conserver-7.0.2 o [2001/07/19] ports/29080 ports New port: net/icradius - IC-Radius daemon o [2001/07/19] ports/29081 ports New port: net/p5-IC-Radius o [2001/07/21] ports/29120 ports [PATCH] net/radiusd-cistron: Add PAM supp o [2001/07/25] ports/29223 ports cyrus-imapd and postfix master.8 manpage o [2001/07/25] ports/29227 ports New port: zclock time/date applet for GNO o [2001/07/28] ports/29286 ports New port: french/xtel - an emulator for t o [2001/07/29] ports/29297 ports NEW PORT: System Maintenance Aid written o [2001/07/30] ports/29332 ports Refiling New Port: ripem-2.1 o [2001/07/30] ports/29343 ports new postgresql7 port feature o [2001/07/31] ports/29346 ports New port: misc/afbackup-beta o [2001/08/01] ports/29369 ports new port for the CHTML package o [2001/08/03] ports/29426 ports New port: he2 - a Hebrew LaTeX oriented e o [2001/08/04] ports/29456 ports New port of blimitd (daemon to enforce lo o [2001/08/07] ports/29514 ports new port submission: games/xlogical (SDL o [2001/08/07] ports/29519 ports X11 ports generate undef pthread refs wit o [2001/08/09] ports/29573 ports New port: A script to fetch mail from a H o [2001/08/09] ports/29590 ports [new port] www/parser-bin One more server a [2001/08/11] ports/29630 ports New port : xtexsh o [2001/08/12] ports/29667 ports New port: www/mod_auth_pwcheck o [2001/08/14] ports/29711 ports New port: xjumpx -- improved version of g o [2001/08/15] ports/29731 ports minor errors in docs, install o [2001/08/17] ports/29836 ports New port: cyrus-imspd o [2001/08/18] ports/29843 ports StarOffice 5.2 port does not find CD-ROM o [2001/08/21] ports/29924 ports remove port smalleiffel-0.76.b4 o [2001/08/21] ports/29929 ports wginstall.pl script chokes on calculated o [2001/08/24] ports/30029 ports new port: net/papaya-plugins (plugins for o [2001/08/24] ports/30030 ports new port: net/papaya-plugins (graphical m f [2001/08/28] ports/30166 ports ports/net/nettest2001 f [2001/09/01] ports/30249 ports SmallEiffel update to -0.75 o [2001/09/04] ports/30314 ports [PATCH] Add Exim packages to CDROM 1 f [2001/09/06] ports/30395 ports New port: lang/spl o [2001/09/13] ports/30549 ports Maintainer update: Jakarta Ant 1.4 o [2001/09/13] ports/30557 ports bitchx fails to build when WITH_TCL=yes i o [2001/09/13] ports/30560 ports Typos in /usr/ports/french/staroffice52/p o [2001/09/15] ports/30604 ports postgresql7 doesn't build with kerberos5 f [2001/09/16] ports/30615 ports The 'bcwipe' port installs Linux binaries o [2001/09/17] ports/30625 ports [PATCH] vmware2 patch for -current with K o [2001/09/20] ports/30698 ports New port: news/pl-slrn o [2001/09/20] ports/30701 ports setiathome port misuses the 'nobody' user o [2001/09/26] ports/30841 ports News port: fortuneru, contains fortune fi o [2001/09/26] ports/30845 ports New port: textproc/xerces-c: Xerces C++ X o [2001/09/26] ports/30849 ports news/ntpcache fails compiling authinfo_pa o [2001/09/26] ports/30859 ports A New Port o [2001/09/27] ports/30870 ports httpd in free(): warning: recursive call o [2001/09/29] ports/30926 ports LPRngTool port update o [2001/09/30] ports/30933 ports New port : lang/linux-j o [2001/09/30] ports/30942 ports New port: Pike 7.0 from CVS o [2001/10/01] ports/30979 ports New port for "txfonts" TeX's font package a [2001/10/02] ports/30997 ports new port: security/p5-Digest-HMAC o [2001/10/03] ports/31026 ports New Port: Internet Message Support Protoc o [2001/10/04] ports/31036 ports NEW PORT: KWebget o [2001/10/04] ports/31037 ports NEW PORT: Krusader o [2001/10/04] ports/31039 ports New Port: nhc98 1.08 - a haskell compiler f [2001/10/04] ports/31053 ports Update port: devel/stlport o [2001/10/05] ports/31061 ports New port: security/gnupg-devel o [2001/10/05] ports/31063 ports Upgrade aim-transport in jabber port. o [2001/10/05] ports/31082 ports New port: LaBrea security utility a [2001/10/06] ports/31093 ports new port "flyway" a [2001/10/08] ports/31144 ports New port: x11/xcursor o [2001/10/11] ports/31222 ports ports:astro/SETIsupport(version is wrong) o [2001/10/11] ports/31223 ports ImageMagick utilities link without -lciph o [2001/10/11] ports/31229 ports new port: astro/linux-setiathome-i686 o [2001/10/14] ports/31268 ports New port: comms/zssh o [2001/10/15] ports/31282 ports NEW PORT: aolserver+ad o [2001/10/15] ports/31286 ports ifhp-3.4.7 port (LPRng) update o [2001/10/15] ports/31288 ports LPRng-3.7.9 port (LPRng) update o [2001/10/15] ports/31295 ports Update port: games/nethack-qt|games/netha o [2001/10/17] ports/31331 ports new port of adpcm library o [2001/10/17] ports/31342 ports I was trying to install xscreensaver and o [2001/10/19] ports/31369 ports New KMerlin Port o [2001/10/19] ports/31377 ports New port: squidpurge a [2001/10/19] ports/31385 ports grip fails to build out of the box o [2001/10/23] ports/31451 ports Update port: graphics/gd o [2001/10/23] ports/31453 ports New Port: nhc98 1.10 - a haskell compiler o [2001/10/23] ports/31461 ports New ports: deskutils/mcal & gmcal - a lib o [2001/10/23] ports/31463 ports Updates to vterrain-sdk and vterrain-apps o [2001/10/24] ports/31473 ports New port: Courier-MTA SMTP IMAP POP3 HTTP o [2001/10/24] ports/31475 ports New port: sysconftool o [2001/10/26] ports/31505 ports New port: linux-dri o [2001/10/26] ports/31508 ports Coding error in py-4suite: Ft/Lib/Uuid.py f [2001/10/26] ports/31509 ports bbkeys port outdated! o [2001/10/26] ports/31517 ports New Port: kdetheme-qnix o [2001/10/26] ports/31518 ports GD 1.8.4 port fails to build TTF support o [2001/10/27] ports/31528 ports New port: GTK client for StaticCling.org o [2001/10/27] ports/31529 ports avifile-0.60.20010429_1 doesn't build if o [2001/10/27] ports/31539 ports New port: graphics/xpcd (PhotoCD tool col o [2001/10/28] ports/31547 ports cthumb port is stale o [2001/10/29] ports/31606 ports New port: irc/gruftistats o [2001/10/29] ports/31625 ports New Port: Frontpage v5.0 + language speci o [2001/10/29] ports/31626 ports Update to mod_frontpage v5, removal of FP o [2001/10/30] ports/31630 ports Port se-ispell install the dictionary in o [2001/10/31] ports/31669 ports New port: graphics/xawtv_applet o [2001/10/31] ports/31674 ports port math/plplot doesn't build a TCL enab o [2001/10/31] ports/31679 ports Maintainer update: graphics/linux_mesa3 o [2001/10/31] ports/31684 ports ports/comms/hylafax fixes o [2001/11/01] ports/31697 ports Jabber port doesn't install jud o [2001/11/02] ports/31712 ports Add the Linux to flash Cisco/Aironet card o [2001/11/03] ports/31727 ports update pnet 0.1.8->0.2.2 o [2001/11/03] ports/31739 ports New port: lang/python-devel o [2001/11/03] ports/31740 ports Update port: ftp/py-curl o [2001/11/03] ports/31744 ports New port: emulators/minix (2.0.0) o [2001/11/04] ports/31757 ports devel/gvd doesn't build without tex o [2001/11/05] ports/31773 ports New port: audio/cplay, audioplayer for th o [2001/11/05] ports/31775 ports Better path for the X11 fonts from the po o [2001/11/06] ports/31813 ports New Port - Update: dbXML - Java Native XM o [2001/11/07] ports/31827 ports New port: Mird database library o [2001/11/07] ports/31841 ports update to geda tool set o [2001/11/08] ports/31856 ports New port: security/pcsc-lite o [2001/11/08] ports/31858 ports New port: pike 7.2.234 (current CVS versi o [2001/11/11] ports/31920 ports sniffit does not detect packets on some i o [2001/11/11] ports/31922 ports new port o [2001/11/12] ports/31926 ports New port security/drweb-qmail: Qmail mess o [2001/11/12] ports/31945 ports new port: devel/xbkregex library o [2001/11/12] ports/31950 ports New port: japanese/celrw o [2001/11/13] ports/31965 ports New port: editss, an editor for XPilot sh o [2001/11/13] ports/31970 ports New port o [2001/11/14] ports/31974 ports Update port: japanese/gqmpeg o [2001/11/14] ports/31975 ports "Error in backend/storage/lmgr/proc.c: Pr o [2001/11/14] ports/31984 ports Update orion port for config of rmi serve o [2001/11/14] ports/31996 ports Build of db3 fails at ./configure o [2001/11/15] ports/32034 ports [NEW PORT] ncurses-ada -- an Ada 95 bindi o [2001/11/16] ports/32037 ports New port: pm-lib o [2001/11/16] ports/32046 ports Port cleanup: x11-fonts/webfonts o [2001/11/16] ports/32048 ports New port: palm/hdunix (1.0) o [2001/11/17] ports/32056 ports New Port: emulators/adamem o [2001/11/17] ports/32060 ports New port: mkfile(8) for FreeBSD o [2001/11/18] ports/32076 ports WISH: merge icon patch to blackbox port o [2001/11/18] ports/32099 ports Update port: x11-wm/mosfet-liquid (BY MAI o [2001/11/19] ports/32115 ports create port mail/sylpheed-devel [sylpheed o [2001/11/21] ports/32179 ports New port: editss (an editor for XPilot sh o [2001/11/22] ports/32195 ports New port: icradius: a powerful RADIUS dae o [2001/11/22] ports/32196 ports New port: p5-IC-Radius: required for icra o [2001/11/22] ports/32199 ports linking dict is at /usr/local/share/doc/t o [2001/11/22] ports/32202 ports ports/devel/py-htmlkit distribution does a [2001/11/23] ports/32231 ports Update port devel/fam o [2001/11/24] ports/32263 ports [PATCH] freebsd-uucp to build under 4.3 t o [2001/11/25] ports/32271 ports [PATCH] pkg-plist for net/isc-dhcp2 incor o [2001/11/25] ports/32281 ports Dead project for openverse. o [2001/11/26] ports/32284 ports ports/devel/tclreadline has a checksum pr o [2001/11/26] ports/32298 ports mail/nmh port fails with new autoconf por o [2001/11/26] ports/32302 ports [NEW PORT] mtx 1.2.14 o [2001/11/27] ports/32345 ports New port: devel/hmake o [2001/11/28] ports/32361 ports port doesn't work o [2001/11/28] ports/32362 ports postgresql7 port should install more *.h o [2001/11/29] ports/32376 ports New port: GPS Manager (astro/gpsman) o [2001/11/29] ports/32379 ports NEW PORT: wots 1.22 o [2001/11/29] ports/32390 ports New port:A small and fast window manager o [2001/11/30] ports/32408 ports Update port: print/ghostscript-afpl o [2001/12/01] ports/32429 ports NEW PORT: graphics/jhead o [2001/12/01] ports/32434 ports New Port: TeXmacs, a free wysiwyg scienti o [2001/12/02] ports/32440 ports graphics/gd does not build (requires free o [2001/12/02] ports/32457 ports New port: mail/p5-razor-agents o [2001/12/03] ports/32481 ports New port: devel/chora - the Horde CVS web o [2001/12/04] ports/32516 ports Update www/horde-devel, mail/turba and ma o [2001/12/04] ports/32523 ports Update port: print/ghostscript-gnu (fix p o [2001/12/05] ports/32533 ports new port: databases/db4 (DB v4) o [2001/12/05] ports/32535 ports update of /usr/ports/www/roxen/ o [2001/12/05] ports/32540 ports Add Python Xlib port o [2001/12/05] ports/32543 ports Update of Click Modular Router to version o [2001/12/05] ports/32547 ports update cadaver port o [2001/12/06] ports/32553 ports [NEW PORT] databases/firebird-devel o [2001/12/06] ports/32565 ports New port: QScheme scheme interpretor o [2001/12/06] ports/32571 ports build broken on eperl o [2001/12/07] ports/32577 ports little patch for textproc/catdoc o [2001/12/07] ports/32580 ports Two ports to be put in the ports tree o [2001/12/08] ports/32604 ports Many ports which depends on apache don't o [2001/12/08] ports/32622 ports Update port: japanese/truetypefonts to 20 o [2001/12/08] ports/32633 ports Update port: x11-wm/golem o [2001/12/08] ports/32638 ports Fix port: www/apache2 o [2001/12/09] ports/32640 ports New port: p5-Class-ObjectTemplate o [2001/12/09] ports/32641 ports New port: p5-Class-ObjectTemplate-DB o [2001/12/09] ports/32648 ports Port update for www/jetty o [2001/12/09] ports/32650 ports port update: ftp/pure-ftpd o [2001/12/09] ports/32653 ports Added patches to improve USB scanner supp o [2001/12/09] ports/32655 ports New Port: fluxbox x11 window manager o [2001/12/09] ports/32658 ports MAINTAINER-UPDATE for graphics/cthumb o [2001/12/10] ports/32678 ports New port: wscan, 802.11 wireless signal s 223 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 11:29:52 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 737DA37B43F; Mon, 10 Dec 2001 11:29:33 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAJNJ815652; Mon, 10 Dec 2001 11:23:19 -0800 (PST) (envelope-from yoichi) Date: Mon, 10 Dec 2001 11:23:19 -0800 (PST) From: Message-Id: <200112101923.fBAJNJ815652@freefall.freebsd.org> To: yoichi@FreeBSD.org, freebsd-ports@FreeBSD.org, yoichi@FreeBSD.org Subject: Re: ports/28658: new port: x11/mwheel.el Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new port: x11/mwheel.el Responsible-Changed-From-To: freebsd-ports->yoichi Responsible-Changed-By: yoichi Responsible-Changed-When: Mon Dec 10 11:22:55 PST 2001 Responsible-Changed-Why: I'll handle this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28658 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 11:59:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 24A0D37B41E; Mon, 10 Dec 2001 11:59:31 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAJok719926; Mon, 10 Dec 2001 11:50:46 -0800 (PST) (envelope-from petef) Date: Mon, 10 Dec 2001 11:50:46 -0800 (PST) From: Message-Id: <200112101950.fBAJok719926@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/32669: mpg123 can't play mono mp3 file after stereo one Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mpg123 can't play mono mp3 file after stereo one Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: petef Responsible-Changed-When: Mon Dec 10 11:50:32 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32669 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 11:59:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C6C5037B41B; Mon, 10 Dec 2001 11:59:30 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAJp8O20015; Mon, 10 Dec 2001 11:51:08 -0800 (PST) (envelope-from petef) Date: Mon, 10 Dec 2001 11:51:08 -0800 (PST) From: Message-Id: <200112101951.fBAJp8O20015@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/32670: mpg123: -b doesn't work Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mpg123: -b doesn't work Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: petef Responsible-Changed-When: Mon Dec 10 11:51:03 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32670 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 13:28:11 2001 Delivered-To: freebsd-ports@freebsd.org Received: from yahoo.com (adsl-66-125-200-51.dsl.lsan03.pacbell.net [66.125.200.51]) by hub.freebsd.org (Postfix) with SMTP id 27C8C37B420 for ; Mon, 10 Dec 2001 13:27:21 -0800 (PST) From: <6@yahoo.com> Subject: Software Development Services Date: Tue, 11 Dec 2001 01:26:55 Message-Id: <79.51373.13742@yahoo.com> Reply-To: foxmartin@consultant.com Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: undisclosed-recipients:; Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dear Sir/Madam, I offer you cost-effective and reliable contracting services for any kind of software development your business might need. Our services include: various E-Commerce and Internet/Intranet solutions, Business Processing software, marvelous Web site development, remote network administration, desktop applications development - and any other software solutions your company needs to grow and prosper. We provide services to small, medium and even Fortune 500 companies. We have done projects for Big 5 firms, Health Care Systems/Hospitals, Dot Coms, Manufacturing Planets, Food Companies, Entertainment and even major law firms. Projects done: Pay-Per-Click Engines Search Engines Catalog Sites Corporate Sites Auctions Sites E-Commerce Shopping Sites Affiliate Programs Flash Movies 3-D Animation ( like they do at Disney or Paramount) Different Customized Applications (ERP systems and others) Services: Technical Consulting Software and Web Development (Front and Backend applications) Technical Support Network/Server Administration (Locally or Remotely) Security Adults Language: C/C++, Python, Prolog, Lingo, Pascal, Fortran, Ada, JAVA, Javascript, MS Visual Basic, PHP, ASP, HTML, XML, DHTML, CSS, MFC, XSL, Delphi, CFML, Databases: MS SQL, Oracle, MySQL, MS Access, Fox Pro, IBM DB/2, Siebel, and more… Web Server Applications: Zeus, Apache, IIS and more… Hardware: Cisco, Sun, HP, Compaq, Arrowpoint, NetGear, NetSreen, Nokia/CheckPoint, Apple, IBM, Linksys, F5, CacheFlow Systems, and more… Software: 3-D Max, Visio, MS Project, Microsoft Office, MS Development Tools, Macromedia Director, Dreamweaver, Firworks, Adobe Illustrator, Photoshop, Borland, and much more… I offer you to enjoy all the advantages of cooperation with a development dream-team from Fox/Martin Consulting Group And please keep in mind: we work at "no risk for customer" basis. You could start with a small contract and pay us only after you see the result and are satisfied with it. You pay for the ready job only! Contact me by e-mail at foxmartin@consultant.com or 818/501-8601 (Direct Line) I look forward to hearing from you, Steven Zeltser Marketing Manager Fox/Martin Consulting Group Los Angeles, California 818/501-8601 -Direct Line ------------------------ * Disclaimer * ------------------------- IF YOU THINK THIS MESSAGE REACHED YOU IN ERROR PLEASE SEND BACK BLANK E-MAIL MESSAGE WITH "UNSUBSCRIBE" TO: sorryaboutthat@mail.com _____________________________________________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 13:41:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 059EB37B639 for ; Mon, 10 Dec 2001 13:40:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBALe0b41565; Mon, 10 Dec 2001 13:40:00 -0800 (PST) (envelope-from gnats) Received: from mail.uni-kl.de (mail.uni-kl.de [131.246.137.52]) by hub.freebsd.org (Postfix) with ESMTP id 5358D37B625 for ; Mon, 10 Dec 2001 13:38:07 -0800 (PST) Received: from postamt.eit.uni-kl.de (postamt.eit.uni-kl.de [131.246.73.100]) by mail.uni-kl.de (8.10.2+Sun/8.11.5) with ESMTP id fBALc5F08530 for ; Mon, 10 Dec 2001 22:38:05 +0100 (MET) Received: from ernie.eit.uni-kl.de (fs.eit.uni-kl.de [131.246.12.176]) by postamt.eit.uni-kl.de (8.9.3/8.9.3) with ESMTP id WAA12922 for ; Mon, 10 Dec 2001 22:38:06 +0100 Received: (from holger@localhost) by ernie.eit.uni-kl.de (8.10.2/8.10.2/SuSE Linux 8.10.0-0.3) id fBALc0a30029 for FreeBSD-gnats-submit@freebsd.org; Mon, 10 Dec 2001 22:38:00 +0100 Message-Id: <200112102138.fBALc0a30029@ernie.eit.uni-kl.de> Date: Mon, 10 Dec 2001 22:38:00 +0100 From: Holger Lamm To: FreeBSD-gnats-submit@freebsd.org Subject: ports/32682: Bugfix graphics/avifile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32682 >Category: ports >Synopsis: Bugfix graphics/avifile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 13:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: holger@eit.uni-kl.de >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD Trinity.garnix.de 4.4-STABLE FreeBSD 4.4-STABLE #6: Fri Oct 19 18:23:41 CEST 2001 root@Trinity.garnix.de:/usr/obj/usr/src/sys/TRINITY i386 >Description: The new autoconf/automake concepts makes compiling problems. Updated to use automake15 New file: - files/patch-libwin32loader >How-To-Repeat: >Fix: diff -Nur avifile/Makefile avifile.new/Makefile --- avifile/Makefile Tue Sep 25 18:22:31 2001 +++ avifile/Makefile Mon Dec 10 22:08:27 2001 @@ -28,8 +28,8 @@ INSTALLS_SHLIB= yes WRKSRC= ${WRKDIR}/${PORTNAME}-0.6 -USE_AUTOCONF= yes -USE_AUTOMAKE= yes +USE_AUTOCONF_VER=213 +USE_AUTOMAKE_VER=15 USE_LIBTOOL= yes LIBTOOLFILES= acinclude.m4 CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" \ diff -Nur avifile/files/patch-libwin32loader avifile.new/files/patch-libwin32loader --- avifile/files/patch-libwin32loader Thu Jan 1 01:00:00 1970 +++ avifile/files/patch-libwin32loader Mon Dec 10 22:04:27 2001 @@ -0,0 +1,13 @@ +--- plugins/libwin32/loader/Makefile.in.orig Mon Dec 10 22:03:16 2001 ++++ plugins/libwin32/loader/Makefile.in Mon Dec 10 21:51:23 2001 +@@ -534,8 +534,8 @@ + # so we eliminate .rel.text section from library + # it works this way too + # we actually don't need this line +-stubs.lo: stubs.s +- $(CC) -c $(srcdir)/stubs.s -o stubs.lo ++#stubs.lo: stubs.s ++# $(CC) -c $(srcdir)/stubs.s -o stubs.lo + + #win32.lo: win32.c + # $(CC) -O2 -fno-inline -fno-strict-aliasing $(DEFS) $(WINFLAGS) -c $< -o $@ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 14: 8:40 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 8EF6037B405; Mon, 10 Dec 2001 14:08:36 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id AAA53520; Tue, 11 Dec 2001 00:08:33 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from notebook.vega.com (h195.229.dialup.iptcom.net [212.9.229.195]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id AAA18514; Tue, 11 Dec 2001 00:08:30 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-Id: <200112102208.AAA18514@ipcard.iptcom.net> To: obrien@FreeBSD.org, marcus@marcuscom.com Cc: freebsd-ports@FreeBSD.org From: Maxim Sobolev Subject: Re: bison port X-Mailer: Pygmy (v0.5.13) Date: Tue, 11 Dec 2001 00:08:25 EET In-Reply-To: <20011210103207.B64816@dragon.nuxi.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 10 Dec 2001 10:32:07 -0800, David O'Brien wrote: > On Mon, Dec 10, 2001 at 01:39:21AM -0500, Joe Clarke wrote: > > Not sure if it applies here, but should PORTEPOCH be incremeted when > > bison moved from 1.30 back to 1.28? > > Maybe, probably, not sure. There will be a 1.31 some day, so maybe we > can live with it as-is until then? No, as long as we care, or pretend to care, about binary upgradebility we should bump PORTEPOCH each time PORTREVISION decreases, no matter how soon we expect it to be restored. BTW, I've already bumped POREPOCH for bison, some 12 hours ago. :-P -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 14:10:15 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA58C37B417 for ; Mon, 10 Dec 2001 14:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAMA0c47707; Mon, 10 Dec 2001 14:10:00 -0800 (PST) (envelope-from gnats) Received: from h132-197-179-27.gte.com (h132-197-179-27.gte.com [132.197.179.27]) by hub.freebsd.org (Postfix) with ESMTP id 083B637B417 for ; Mon, 10 Dec 2001 14:00:04 -0800 (PST) Received: (from ak03@localhost) by h132-197-179-27.gte.com (8.11.6/8.11.4) id fBAM02E40677; Mon, 10 Dec 2001 17:00:02 -0500 (EST) (envelope-from ak03) Message-Id: <200112102200.fBAM02E40677@h132-197-179-27.gte.com> Date: Mon, 10 Dec 2001 17:00:02 -0500 (EST) From: "Alexander N. Kabaev" Reply-To: "Alexander N. Kabaev" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32683: pspell-ispell version update to catch up with pspell Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32683 >Category: ports >Synopsis: pspell-ispell version update to catch up with pspell >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 14:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alexander N. Kabaev >Release: FreeBSD 5.0-CURRENT i386 >Organization: Verizon Data Services >Environment: System: FreeBSD kanpc.gte.com 5.0-CURRENT FreeBSD 5.0-CURRENT #10: Wed Dec 5 13:23:00 EST 2001 root@kanpc.gte.com:/usr/src/sys/i386/compile/KANPC i386 >Description: pspell-ispell port in the ports three has the version number 0.10.2, while pspell, on which it depends, is at 0.12.x already. Pspell-ispell fails to compile as a result. >How-To-Repeat: N/A >Fix: The patch below updates port with the latest version. It builds and appears to work on both -STABLE and -CURRENT. Index: Makefile =================================================================== RCS file: /usr/ncvs/ports/textproc/pspell-ispell/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 5 Feb 2001 16:35:08 -0000 1.5 +++ Makefile 10 Dec 2001 21:42:09 -0000 @@ -6,11 +6,11 @@ # PORTNAME= pspell-ispell -PORTVERSION= 0.10.2 +PORTVERSION= 0.12 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= pspell -DISTNAME= ${PORTNAME}-.10.2 +DISTNAME= ${PORTNAME}-.12 MAINTAINER= ports@FreeBSD.org @@ -22,6 +22,6 @@ USE_GMAKE= yes INSTALLS_SHLIB= yes CONFIGURE_ENV+= CXXFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" + LIBS="-L${LOCALBASE}/lib" LIBTOOL="${LIBTOOL}" .include Index: distinfo =================================================================== RCS file: /usr/ncvs/ports/textproc/pspell-ispell/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 8 Aug 2000 21:50:05 -0000 1.2 +++ distinfo 10 Dec 2001 21:06:29 -0000 @@ -1 +1 @@ -MD5 (pspell-ispell-.10.2.tar.gz) = 7bf731b6f66617ee5f49f428e2eb15ff +MD5 (pspell-ispell-.12.tar.gz) = 7329d4122b302057a18d3a55d8d1f64c Index: pkg-plist =================================================================== RCS file: /usr/ncvs/ports/textproc/pspell-ispell/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- pkg-plist 29 Jun 2000 19:24:08 -0000 1.1 +++ pkg-plist 10 Dec 2001 21:44:55 -0000 @@ -1,6 +1,6 @@ bin/make-ispell-pwli lib/libpspell_ispell.a lib/libpspell_ispell.so -lib/libpspell_ispell.so.0 +lib/libpspell_ispell.so.1 share/pspell/en-american-ispell.pwli share/pspell/en-ispell.pwli Index: files/patch-aa =================================================================== RCS file: /usr/ncvs/ports/textproc/pspell-ispell/files/patch-aa,v retrieving revision 1.2 diff -u -r1.2 patch-aa --- files/patch-aa 25 Sep 2000 08:14:28 -0000 1.2 +++ files/patch-aa 10 Dec 2001 21:48:34 -0000 @@ -1,11 +1,29 @@ ---- configure.orig Tue Jun 20 00:25:46 2000 -+++ configure Thu Jun 29 12:16:30 2000 -@@ -2149,7 +2149,7 @@ +--- configure.orig Tue May 29 23:04:03 2001 ++++ configure Mon Dec 10 16:48:26 2001 +@@ -2237,7 +2237,7 @@ objext="$OBJEXT" exeext="$EXEEXT" reload_flag="$reload_flag" \ deplibs_check_method="$deplibs_check_method" file_magic_cmd="$file_magic_cmd" \ ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \ --$libtool_flags --no-verify --build="$build" $ac_aux_dir/ltmain.sh $lt_target \ -+$libtool_flags --build="$build" $ac_aux_dir/ltmain.sh $lt_target \ +-$libtool_flags --no-verify --build="$build" $ac_aux_dir/ltmain.sh $host \ ++$libtool_flags --build="$build" $ac_aux_dir/ltmain.sh $host \ || { echo "configure: error: libtool configure failed" 1>&2; exit 1; } # Reload cache, that may have been modified by ltconfig +@@ -2254,7 +2254,7 @@ + LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh $ac_aux_dir/ltcf-c.sh" + + # Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' ++LIBTOOL=${LIBTOOL} + + # Redirect the config.log output again, so that the ltconfig log is not + # clobbered by the next message. +@@ -2273,7 +2273,7 @@ + deplibs_check_method="$deplibs_check_method" \ + file_magic_cmd="$file_magic_cmd" \ + ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig -o libtool $libtool_flags \ +---build="$build" --add-tag=CXX $ac_aux_dir/ltcf-cxx.sh $host \ ++--build="$build" $ac_aux_dir/ltcf-cxx.sh $host \ + || { echo "configure: error: libtool tag configuration failed" 1>&2; exit 1; } + CC="$lt_save_CC" + CFLAGS="$lt_save_CFLAGS" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 14:10:54 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 9235937B416; Mon, 10 Dec 2001 14:10:49 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBAMAnr36105; Mon, 10 Dec 2001 14:10:49 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Dec 2001 14:10:48 -0800 From: "David O'Brien" To: Maxim Sobolev Cc: marcus@marcuscom.com, freebsd-ports@FreeBSD.org Subject: Re: bison port Message-ID: <20011210141048.A36083@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20011210103207.B64816@dragon.nuxi.com> <200112102208.AAA18514@ipcard.iptcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200112102208.AAA18514@ipcard.iptcom.net>; from sobomax@FreeBSD.org on Tue, Dec 11, 2001 at 12:08:25AM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Dec 11, 2001 at 12:08:25AM +0200, Maxim Sobolev wrote: > > BTW, I've already bumped POREPOCH for bison, some 12 hours ago. :-P When can POREPOCH go away for Bison? Once the version number goes above 1.30? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 14:12:15 2001 Delivered-To: freebsd-ports@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 7DD2237B417; Mon, 10 Dec 2001 14:12:11 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id fBAMCJ128447; Mon, 10 Dec 2001 17:12:20 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 10 Dec 2001 17:12:19 -0500 (EST) From: Joe Clarke To: "David O'Brien" Cc: Maxim Sobolev , Subject: Re: bison port In-Reply-To: <20011210141048.A36083@dragon.nuxi.com> Message-ID: <20011210171148.K17865-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org According to the Porter's Handbook, PORTEPOCH never goes away. This number can never be decremented....unless you rename the port, I guess. Joe On Mon, 10 Dec 2001, David O'Brien wrote: > On Tue, Dec 11, 2001 at 12:08:25AM +0200, Maxim Sobolev wrote: > > > > BTW, I've already bumped POREPOCH for bison, some 12 hours ago. :-P > > When can POREPOCH go away for Bison? > Once the version number goes above 1.30? > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 14:17:21 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 88B4837B419; Mon, 10 Dec 2001 14:17:18 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBAMHGn36272; Mon, 10 Dec 2001 14:17:16 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Dec 2001 14:17:16 -0800 From: "David O'Brien" To: Joe Clarke Cc: Maxim Sobolev , freebsd-ports@FreeBSD.org Subject: Re: bison port Message-ID: <20011210141716.A36250@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20011210141048.A36083@dragon.nuxi.com> <20011210171148.K17865-100000@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210171148.K17865-100000@shumai.marcuscom.com>; from marcus@marcuscom.com on Mon, Dec 10, 2001 at 05:12:19PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 05:12:19PM -0500, Joe Clarke wrote: > According to the Porter's Handbook, PORTEPOCH never goes away. This > number can never be decremented....unless you rename the port, I guess. I believe the assumption there is that the version number will never surpase some previous value. That is not the case here. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 14:20:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCB7D37B416 for ; Mon, 10 Dec 2001 14:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBAMK1W48781; Mon, 10 Dec 2001 14:20:01 -0800 (PST) (envelope-from gnats) Date: Mon, 10 Dec 2001 14:20:01 -0800 (PST) Message-Id: <200112102220.fBAMK1W48781@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Matthew Hawkins Subject: Re: ports/32655: New Port: fluxbox x11 window manager Reply-To: Matthew Hawkins Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32655; it has been noted by GNATS. From: Matthew Hawkins To: Jochem Kossen Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/32655: New Port: fluxbox x11 window manager Date: Tue, 11 Dec 2001 09:11:06 +1100 On Mon, 10 Dec 2001, Jochem Kossen wrote: > I sent this earlier, but that somehow didn't seem to come through in > gnats... > > I think this can be closed, ports/32390 is a request for the same > windowmanager, but that one has a port in it... Speaking of not coming through, I used "pr-send -a sharfile" when submitting, though from what I read above you did not get my port attached :-( Lets see if this works... Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # fluxbox # fluxbox/Makefile # fluxbox/distinfo # fluxbox/pkg-comment # fluxbox/pkg-descr # fluxbox/pkg-plist # echo c - fluxbox mkdir -p fluxbox > /dev/null 2>&1 echo x - fluxbox/Makefile sed 's/^X//' >fluxbox/Makefile << 'END-of-fluxbox/Makefile' X# New ports collection makefile for: fluxbox X# Date created: November 28, 2001 X# Whom: Matthew Hawkins X# X# $FreeBSD$ X# X XPORTNAME= fluxbox XPORTVERSION= 0.1.5 XCATEGORIES= x11-wm XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE}/fluxbox/ X XMAINTAINER= matt@mh.dropbear.id.au X XMAN1= fluxbox.1 bsetroot.1 X XUSE_X_PREFIX= yes XGNU_CONFIGURE= yes X X.include END-of-fluxbox/Makefile echo x - fluxbox/distinfo sed 's/^X//' >fluxbox/distinfo << 'END-of-fluxbox/distinfo' XMD5 (fluxbox-0.1.5.tar.gz) = 1a57f7bb382092d6673b30ee1d508e05 END-of-fluxbox/distinfo echo x - fluxbox/pkg-comment sed 's/^X//' >fluxbox/pkg-comment << 'END-of-fluxbox/pkg-comment' XA small and fast window manager for X11R6 END-of-fluxbox/pkg-comment echo x - fluxbox/pkg-descr sed 's/^X//' >fluxbox/pkg-descr << 'END-of-fluxbox/pkg-descr' XFluxbox is a window manager for X11R6 that embraces and extends XBlackbox with extra functionality like PWM-style tabbed Xwindows, customisable titlebar button placement, and more. X XWWW: http://fluxbox.sf.net/ X X- Matt Xmatt@mh.dropbear.id.au END-of-fluxbox/pkg-descr echo x - fluxbox/pkg-plist sed 's/^X//' >fluxbox/pkg-plist << 'END-of-fluxbox/pkg-plist' Xbin/fluxbox Xbin/bsetroot Xbin/bsetbg Xshare/fluxbox/menu Xshare/fluxbox/keys Xshare/fluxbox/init Xshare/fluxbox/titlebar Xshare/fluxbox/nls/C/blackbox.cat Xshare/fluxbox/nls/da_DK/blackbox.cat Xshare/fluxbox/nls/es_ES/blackbox.cat Xshare/fluxbox/nls/et_EE/blackbox.cat Xshare/fluxbox/nls/fr_FR/blackbox.cat Xshare/fluxbox/nls/pt_BR/blackbox.cat Xshare/fluxbox/nls/ru_RU/blackbox.cat Xshare/fluxbox/nls/sv_SE/blackbox.cat Xshare/fluxbox/nls/tr_TR/blackbox.cat Xshare/fluxbox/styles/Artwiz Xshare/fluxbox/styles/Blue Xshare/fluxbox/styles/Carbondioxide Xshare/fluxbox/styles/Clean Xshare/fluxbox/styles/CleanColor Xshare/fluxbox/styles/Cthulhain Xshare/fluxbox/styles/Flux Xshare/fluxbox/styles/Makro Xshare/fluxbox/styles/MerleyKay Xshare/fluxbox/styles/Minimal Xshare/fluxbox/styles/Nyz Xshare/fluxbox/styles/Operation Xshare/fluxbox/styles/Outcomes Xshare/fluxbox/styles/Rampage Xshare/fluxbox/styles/Rancor Xshare/fluxbox/styles/Results Xshare/fluxbox/styles/Shade Xshare/fluxbox/styles/Spiff Xshare/fluxbox/styles/TDF Xshare/fluxbox/styles/Twice Xshare/fluxbox/styles/qnx-photon X@dirrm share/fluxbox/nls/C X@dirrm share/fluxbox/nls/da_DK X@dirrm share/fluxbox/nls/es_ES X@dirrm share/fluxbox/nls/et_EE X@dirrm share/fluxbox/nls/fr_FR X@dirrm share/fluxbox/nls/pt_BR X@dirrm share/fluxbox/nls/ru_RU X@dirrm share/fluxbox/nls/sv_SE X@dirrm share/fluxbox/nls/tr_TR X@exec ln -s C %D/share/fluxbox/nls/POSIX X@unexec rm %D/share/fluxbox/nls/POSIX X@exec ln -s C %D/share/fluxbox/nls/US_ASCII X@unexec rm %D/share/fluxbox/nls/US_ASCII X@exec ln -s C %D/share/fluxbox/nls/en X@unexec rm %D/share/fluxbox/nls/en X@exec ln -s C %D/share/fluxbox/nls/en_US X@unexec rm %D/share/fluxbox/nls/en_US X@exec ln -s es_ES %D/share/fluxbox/nls/es X@unexec rm %D/share/fluxbox/nls/es X@exec ln -s fr_FR %D/share/fluxbox/nls/fr X@unexec rm %D/share/fluxbox/nls/fr X@dirrm share/fluxbox/nls X@dirrm share/fluxbox/styles X@dirrm share/fluxbox END-of-fluxbox/pkg-plist exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 14:52:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.net (leviathan.inethouston.net [66.64.12.249]) by hub.freebsd.org (Postfix) with ESMTP id 0315437B417; Mon, 10 Dec 2001 14:52:36 -0800 (PST) Received: by leviathan.inethouston.net (Postfix, from userid 1001) id 6FB7D3198F9; Mon, 10 Dec 2001 16:52:28 -0600 (CST) Date: Mon, 10 Dec 2001 16:52:28 -0600 From: "David W. Chapman Jr." To: David O'Brien Cc: Joe Clarke , Maxim Sobolev , freebsd-ports@FreeBSD.org Subject: Re: bison port Message-ID: <20011210225228.GA1250@leviathan.inethouston.net> Reply-To: "David W. Chapman Jr." Mail-Followup-To: "David W. Chapman Jr." , David O'Brien , Joe Clarke , Maxim Sobolev , freebsd-ports@FreeBSD.org References: <20011210141048.A36083@dragon.nuxi.com> <20011210171148.K17865-100000@shumai.marcuscom.com> <20011210141716.A36250@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011210141716.A36250@dragon.nuxi.com> User-Agent: Mutt/1.3.24i X-Operating-System: FreeBSD 4.4-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 02:17:16PM -0800, David O'Brien wrote: > On Mon, Dec 10, 2001 at 05:12:19PM -0500, Joe Clarke wrote: > > According to the Porter's Handbook, PORTEPOCH never goes away. This > > number can never be decremented....unless you rename the port, I guess. > > I believe the assumption there is that the version number will never > surpase some previous value. That is not the case here. > But wouldn't anyone with the PORTEPOCH version installed think they have a newer version than whatever version the non PORTEPOCH version strictly from a pkg_version -v standpoint? -- David W. Chapman Jr. dwcjr@inethouston.net Raintree Network Services, Inc. dwcjr@freebsd.org FreeBSD Committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 15: 1:52 2001 Delivered-To: freebsd-ports@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 8170E37B405; Mon, 10 Dec 2001 15:01:45 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id fBAN1qk33113; Mon, 10 Dec 2001 18:01:52 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 10 Dec 2001 18:01:52 -0500 (EST) From: Joe Clarke To: "David W. Chapman Jr." Cc: "David O'Brien" , Maxim Sobolev , Subject: Re: bison port In-Reply-To: <20011210225228.GA1250@leviathan.inethouston.net> Message-ID: <20011210180042.G17865-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 10 Dec 2001, David W. Chapman Jr. wrote: > On Mon, Dec 10, 2001 at 02:17:16PM -0800, David O'Brien wrote: > > On Mon, Dec 10, 2001 at 05:12:19PM -0500, Joe Clarke wrote: > > > According to the Porter's Handbook, PORTEPOCH never goes away. This > > > number can never be decremented....unless you rename the port, I guess. > > > > I believe the assumption there is that the version number will never > > surpase some previous value. That is not the case here. > > > But wouldn't anyone with the PORTEPOCH version installed think they > have a newer version than whatever version the non PORTEPOCH version > strictly from a pkg_version -v standpoint? It looks that way from the handbook: "...the new version number (e.g. 1.0,1 in the above example) is still numerically less than the previous version (20000801), but the ,1 suffix is treated specially by automated tools and found to be greater than the implied suffix ",0" on the earlier package." Joe > > -- > David W. Chapman Jr. > dwcjr@inethouston.net Raintree Network Services, Inc. > dwcjr@freebsd.org FreeBSD Committer > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 15:11:15 2001 Delivered-To: freebsd-ports@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id EE94E37B417 for ; Mon, 10 Dec 2001 15:11:11 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 034789B08; Mon, 10 Dec 2001 18:09:12 -0500 (EST) Date: Mon, 10 Dec 2001 18:09:12 -0500 From: Will Andrews To: Alfred Perlstein Cc: Akinori MUSHA , ports@freebsd.org Subject: Re: request for enhancment: portupgrade Message-ID: <20011210180912.B30626@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: Alfred Perlstein , Akinori MUSHA , ports@freebsd.org References: <20011210030804.Y92148@elvis.mu.org> <86vgff4dde.wl@archon.local.idaemons.org> <20011210125858.A92148@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011210125858.A92148@elvis.mu.org> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 12:58:58PM -0600, Alfred Perlstein wrote: > I think #2 is good, i mean, without -v i see something like.. > > no need to upgrade foo-1.2.3 > no need to upgrade bar-4.1 > no need to upgrade baz-6.3.2 > Cleaning aaa > > The cleaning of 'aaa' isn't for baz, what is it for? :) Right, and I was hoping that portupgrade could specify what it's going to upgrade if you do -a (heck any time you execute it), BEFORE you do it, so you can see if there's something that you may not want upgraded. > Can you point me at where and why script(1) is run? > I may be able to assist. It's run when portupgrade builds ports or downloads packages. I am not sure about the 'why' part, but presumably it's for keeping logs of the build in case you want to look at it. In any case, script is probably the wrong tool for this job, since according to the script(1) manpage: [...] The results are meant to emulate a hardcopy terminal, not an addressable one. [...] -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 15:14:56 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.yadt.co.uk (yadt.demon.co.uk [158.152.4.134]) by hub.freebsd.org (Postfix) with SMTP id 6EA6D37B420 for ; Mon, 10 Dec 2001 15:14:36 -0800 (PST) Received: (qmail 62722 invoked from network); 10 Dec 2001 23:14:33 -0000 Received: from gattaca.local.yadt.co.uk (HELO mail.gattaca.yadt.co.uk) (qmailr@10.0.0.2) by xfiles.yadt.co.uk with SMTP; 10 Dec 2001 23:14:33 -0000 Received: (qmail 16504 invoked by uid 1000); 10 Dec 2001 23:14:33 -0000 Date: Mon, 10 Dec 2001 23:14:33 +0000 From: David Taylor To: David O'Brien Cc: Joe Clarke , Maxim Sobolev , freebsd-ports@FreeBSD.org Subject: Re: bison port Message-ID: <20011210231433.A16085@gattaca.yadt.co.uk> Mail-Followup-To: David O'Brien , Joe Clarke , Maxim Sobolev , freebsd-ports@FreeBSD.org References: <20011210141048.A36083@dragon.nuxi.com> <20011210171148.K17865-100000@shumai.marcuscom.com> <20011210141716.A36250@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210141716.A36250@dragon.nuxi.com>; from obrien@FreeBSD.org on Mon, Dec 10, 2001 at 14:17:16 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 10 Dec 2001, David O'Brien wrote: > On Mon, Dec 10, 2001 at 05:12:19PM -0500, Joe Clarke wrote: > > According to the Porter's Handbook, PORTEPOCH never goes away. This > > number can never be decremented....unless you rename the port, I guess. > > I believe the assumption there is that the version number will never > surpase some previous value. That is not the case here. But 1.28,1 is greater than 1.28,0 1.30,0 1.31,0 or 9.999999,0... -- David Taylor davidt@yadt.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 15:32:32 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mydomain.com (massy-1-2-3-227.dial.9tel.net [212.30.101.227]) by hub.freebsd.org (Postfix) with ESMTP id E64EC37B496; Mon, 10 Dec 2001 15:32:19 -0800 (PST) Date: Tue, 11 Dec 2001 00:29:48 +0100 From: fabricehalimi@aol.com To: RESPONSABLE@FreeBSD.ORG Subject: LA ROLLS DES SITES POUR 3500 FHT X-Mailer: DMailer for Windows V1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Message-Id: <20011210233221.E64EC37B496@hub.freebsd.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org BONJOUR, SI VOTRE SITE INTERNET NE VOUS DONNE PAS TOUT A FAIT SATISFACTION, - IMPOSSIBLE OU DIFFICILE A METTRE A JOUR - COUTEUX EN HEBERGEMENT - MAL REFERENCE - PAS RENTABLE - PAS DE COMMERCE EN LIGNE - PEU GRAPHIQUE OU PEU RATIONNEL - SIMPLE SITE VITRINE SANS INTELLIGENCE INFORMATIQUE - LIMITE EN NOMBRE DE PAGES ET PHOTOS - MANQUE D'AUTONOMIE OU SI VOUS SOUHAITEZ SIMPLEMENT LE FAIRE DEVELOPPER. PRENEZ QUELQUES INSTANTS POUR DECOUVRIR NOTRE OFFRE. AVEC DE TRES NOMBREUX SITES A SON ACTIF, A.B.S DEMOCRATISE LE MARCHE EN LANÇANT UNE MATRICE INTERNET REVOLUTIONNAIRE. POUR 3 500 FHT (COUT UNIQUE), POSSEDER ET ADMINISTRER D'UNE MANIERE SIMPLE ET INTUITIVE UN PUISSANT SITE DYNAMIQUE. SA CONCEPTION INFORMATIQUE ET GRAPHIQUE REUNIT LE MEILLEUR DE LA TECHNOLOGIE : -------------------------------------------------------------------------------- 1. LE SITE VOUS DISPOSEZ DE PLUS DE TRENTE OPTIONS INTEGREES EN SERIE (VENTE EN LIGNE, FORUM, RECHERCHE MULTICRITERES, BASE DE DONNEES, PLAN D'ACCES AUTOMATIQUE, CATALOGUE, GENERATEUR DE RUBRIQUE, MAILING LISTE, GENERATEUR DE FICHIERS CLIENTS, MISE EN PAGE INTERCHANGEABLE, VIDEO , SON, ZOOM, STATISTIQUES, REPONDEUR, MULTILINGUES, MARKETING DIRECT...) BIEN ENTENDU VOUS N'ACTIVEZ QUE CE DONT VOUS AVEZ BESOIN. 2. LA MISE A JOUR ABS, VOUS OFFRE LA POSSIBILITE TECHNIQUE DE METTRE A JOUR VOUS-MEME VOTRE SITE SANS AUCUNE CONNAISSANCE INFORMATIQUE GRACE A UNE INTERFACE INTEGREE A VOTRE SITE. VOUS POUVEZ EN PERMANENCE MODIFIER LES TEXTES, IMAGES, PHOTOS, GRAPHISME, MENU, STRUCTURE, COULEUR, FOND DE PAGE, MISE EN PAGE... VOUS AVEZ LA TOTALE MAITRISE DE VOTRE SITE. A PARTIR DE SIMPLES IMAGES TELECHARGEES, LES ANIMATIONS SONT GENEREES AUTOMATIQUEMENT EN FLASH. 3. L' HEBERGEMENT ABS VOUS HEBERGE POUR 350 FHT/AN (NOM DE DOMAINE COMPRIS EN .COM) SUR UN SERVEUR NT (17 000 SITES HEBERGES). LIMITE 10 MO. 4. L'ASSISTANCE FORMATION ET HOT-LINE GRATUITE. SOURCES LIVREE SUR UN CD ROM. -------------------------------------------------------------------------------- UN TEL SITE EST FACTURE PLUS DE 50 000 FHT SANS INTERFACE DE MISE A JOUR CHEZ LA PLUPART DE NOS CONCURRENTS. OBTENEZ IMMEDIATEMENT ET SANS ENGAGEMENT, VOTRE SITE DE DEMONSTRATION AINSI QUE SON MOT DE PASSE ET LOGIN POUR SA MISE A JOUR. CONTACTEZ NOUS AU 0 800 00 39 40 (NUMERO VERT GRATUIT), OFFRE VALABLE JUSQU'AU 15/12/2001 *** NE PAS UTILISER L'ADRESSE DE REPONSE, ELLE N'EST PAS ACTIVEE *** *** AUCUNE REPONSE N'EST TRAITEE PAR MAIL *** BONNE RECEPTION. NADINE BIZIEN, 0 800 00 39 40 (NUMERO VERT GRATUIT) ABS 33 RUE ROUGET DE LISLE 94100 SAINT MAUR 116 RUE DE CHARENTON 75012 PARIS R.C.S PARIS B 405 002 759 *** NE PAS UTILISER L'ADRESSE DE REPONSE, ELLE N'EST PAS ACTIVEE *** *** AUCUNE REPONSE N'EST TRAITEE PAR MAIL *** POUR ETRE RETIRER DE LA LISTE : MAILTO : MODERATEUR@CREABS.COM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 15:57: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from noc.unix.lt (noc.unix.lt [213.197.156.162]) by hub.freebsd.org (Postfix) with ESMTP id 3075F37B405 for ; Mon, 10 Dec 2001 15:56:58 -0800 (PST) Received: from partyservice (root@localhost [127.0.0.1]) by noc.unix.lt (8.11.6/8.11.6) with SMTP id fBB1vXi28883; Tue, 11 Dec 2001 01:57:49 GMT (envelope-from noc@unix.lt) Message-ID: <000501c181d6$53def670$a5043bd4@partyservice> From: "Aistis Zenkevicius" To: Cc: Subject: 404 error Date: Tue, 11 Dec 2001 01:56:09 +0200 Organization: UNIX:LT | Alfa1Lab MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1257" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hello, while visiting http://www.freebsd.org/cgi/url.cgi?ports/net/proxy-suite/pkg-descr I followed the link http://www.suse.de/en/support/proxy_suite/ which is $subj. Bye, Aistis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 16: 7:12 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ariel.phys.wesleyan.edu (ariel.phys.wesleyan.edu [129.133.95.129]) by hub.freebsd.org (Postfix) with ESMTP id 623A637B405; Mon, 10 Dec 2001 16:07:07 -0800 (PST) Received: from ariel.phys.wesleyan.edu (ariel.phys.wesleyan.edu [129.133.95.129]) by ariel.phys.wesleyan.edu (Postfix) with ESMTP id 9938A1EA303; Mon, 10 Dec 2001 19:07:06 -0500 (EST) Date: Mon, 10 Dec 2001 19:07:06 -0500 (EST) From: Vladimir Savichev To: freebsd-ports@freebsd.org Cc: tg@FreeBSD.org Subject: xlockmore vs libkrb Message-ID: <20011210183809.A49657-100000@ariel.phys.wesleyan.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org xlockmore stumple over libkrb while doing plain 'make install'. Neither of KERBEROS options are turned on in Makefile by default, KRB5_HOME is undefined either. It doesn't matter if I set MAKE_KERBEROS on or off in /etc/make.conf. So, why does it try to link against -lkrb ? >r/local/lib:/usr/X11R6/lib:/usr/lib -L/usr/X11R6/lib -L/usr/X11R6/lib >-L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib -lSM -lICE -pthread -lXpm >-lttf -lGL -lGLU -lcrypt -L/usr/athena/lib -lkrb -ldes -lX11 -lXext -lm >/usr/lib/libkrb.so: undefined reference to `init_error_table' >/usr/lib/libkrb.so: undefined reference to `initialize_error_table_r' >*** Error code 1 >Stop in /usr/ports/x11/xlockmore/work/xlockmore-5.02/modes. --Vlad To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 16:40:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F86337B41B for ; Mon, 10 Dec 2001 16:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB0e3270322; Mon, 10 Dec 2001 16:40:03 -0800 (PST) (envelope-from gnats) Received: from w250.z064001178.sjc-ca.dsl.cnc.net (w250.z064001178.sjc-ca.dsl.cnc.net [64.1.178.250]) by hub.freebsd.org (Postfix) with SMTP id C487037B417 for ; Mon, 10 Dec 2001 16:35:29 -0800 (PST) Received: (qmail 15390 invoked by uid 1000); 11 Dec 2001 00:35:50 -0000 Message-Id: <20011211003550.15389.qmail@lizzy.bugworks.com> Date: 11 Dec 2001 00:35:50 -0000 From: Jos Backus Reply-To: Jos@lizzy.bugworks.com, "Backus <@lizzy.bugworks.com Jos Backus" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32685: Upgrade integrit port to latest version, 2.03.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32685 >Category: ports >Synopsis: Upgrade integrit port to latest version, 2.03.02 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 16:40:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jos Backus >Release: FreeBSD 5.0-CURRENT i386 >Organization: non >Environment: System: FreeBSD lizzy.bugworks.com 5.0-CURRENT FreeBSD 5.0-CURRENT #8: Sun Dec 9 14:11:20 PST 2001 jos@lizzy.bugworks.com:/disk0/usr/obj/usr/src/sys/LIZZY i386 >Description: This patch updates the security/integrit port to the latest version, 2.03.02. >How-To-Repeat: >Fix: diff -ruN integrit/Makefile integrit-new/Makefile --- integrit/Makefile Mon Jul 16 19:38:03 2001 +++ integrit-new/Makefile Mon Dec 10 16:26:45 2001 @@ -7,7 +7,7 @@ # PORTNAME= integrit -PORTVERSION= 2.01.01 +PORTVERSION= 2.03.02 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -24,5 +24,6 @@ pre-configure: @${PERL} -pi -e "s:= gcc:?= cc:g" ${WRKSRC}/Makefile.in + @${PERL} -pi -e "s:/usr/bin/test:/bin/test:g" ${WRKSRC}/hashtbl/configure .include diff -ruN integrit/distinfo integrit-new/distinfo --- integrit/distinfo Mon Jul 16 19:38:03 2001 +++ integrit-new/distinfo Mon Dec 10 16:22:56 2001 @@ -1 +1 @@ -MD5 (integrit-2.01.01.tar.gz) = dc3484eaaa67fd1e6e3d5028094552f2 +MD5 (integrit-2.03.02.tar.gz) = ee2abd6c8c7d67657ad10711b3cae7b0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 17:34:23 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 63CAF37B41B; Mon, 10 Dec 2001 17:34:19 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id DAA25809; Tue, 11 Dec 2001 03:34:15 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from notebook.vega.com (h134.228.dialup.iptcom.net [212.9.228.134]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id DAA23251; Tue, 11 Dec 2001 03:34:12 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-Id: <200112110134.DAA23251@ipcard.iptcom.net> To: obrien@FreeBSD.org, marcus@marcuscom.com Cc: freebsd-ports@FreeBSD.org From: Maxim Sobolev Subject: Re: bison port X-Mailer: Pygmy (v0.5.13) Date: Tue, 11 Dec 2001 03:34:07 EET In-Reply-To: <20011210141716.A36250@dragon.nuxi.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 10 Dec 2001 14:17:16 -0800, David O'Brien wrote: > On Mon, Dec 10, 2001 at 05:12:19PM -0500, Joe Clarke wrote: > > According to the Porter's Handbook, PORTEPOCH never goes away. This > > number can never be decremented....unless you rename the port, I guess. > > I believe the assumption there is that the version number will never > surpase some previous value. That is not the case here. No, there is no such assumption. PORTEPOCH needs to be increased unconditionally each time when PORTREVISION for some reason is decreased and should never be decreased (or deleted which simply sets it to 0) even if underlying PORTVERSION has increased above the level at which PORTEPOCH was introduced. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 17:54: 4 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 873AE37B405; Mon, 10 Dec 2001 17:54:00 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBB1rtW07788; Mon, 10 Dec 2001 17:53:55 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Dec 2001 17:53:55 -0800 From: "David O'Brien" To: Maxim Sobolev Cc: marcus@marcuscom.com, freebsd-ports@FreeBSD.org Subject: Re: bison port Message-ID: <20011210175355.A2398@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20011210141716.A36250@dragon.nuxi.com> <200112110134.DAA23251@ipcard.iptcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200112110134.DAA23251@ipcard.iptcom.net>; from sobomax@FreeBSD.org on Tue, Dec 11, 2001 at 03:34:07AM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Dec 11, 2001 at 03:34:07AM +0200, Maxim Sobolev wrote: > On Mon, 10 Dec 2001 14:17:16 -0800, David O'Brien wrote: > > On Mon, Dec 10, 2001 at 05:12:19PM -0500, Joe Clarke wrote: > > > According to the Porter's Handbook, PORTEPOCH never goes away. This > > > number can never be decremented....unless you rename the port, I guess. > > > > I believe the assumption there is that the version number will never > > surpase some previous value. That is not the case here. > > No, there is no such assumption. PORTEPOCH needs to be increased > unconditionally each time when PORTREVISION for some reason is > decreased and should never be decreased (or deleted which simply sets > it to 0) even if underlying PORTVERSION has increased above the level > at which PORTEPOCH was introduced. Then I'm backing out the downgrade and we will just live with 1.30. This PORTEPOCH for life situation is stupid. Why can't it be removed? 1.31,0 is greater than 1.28,* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 18:21:27 2001 Delivered-To: freebsd-ports@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id 8C79F37B41B for ; Mon, 10 Dec 2001 18:21:23 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 415AC81D01; Mon, 10 Dec 2001 20:21:23 -0600 (CST) Date: Mon, 10 Dec 2001 20:21:23 -0600 From: Alfred Perlstein To: Akinori MUSHA , ports@freebsd.org Subject: Re: request for enhancment: portupgrade Message-ID: <20011210202123.P92148@elvis.mu.org> References: <20011210030804.Y92148@elvis.mu.org> <86vgff4dde.wl@archon.local.idaemons.org> <20011210125858.A92148@elvis.mu.org> <20011210180912.B30626@squall.waterspout.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210180912.B30626@squall.waterspout.com>; from will@csociety.org on Mon, Dec 10, 2001 at 06:09:12PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * Will Andrews [011210 17:11] wrote: > On Mon, Dec 10, 2001 at 12:58:58PM -0600, Alfred Perlstein wrote: > > I think #2 is good, i mean, without -v i see something like.. > > > > no need to upgrade foo-1.2.3 > > no need to upgrade bar-4.1 > > no need to upgrade baz-6.3.2 > > Cleaning aaa > > > > The cleaning of 'aaa' isn't for baz, what is it for? :) > > Right, and I was hoping that portupgrade could specify what it's > going to upgrade if you do -a (heck any time you execute it), > BEFORE you do it, so you can see if there's something that you > may not want upgraded. oooooh fancy! please please??? > > Can you point me at where and why script(1) is run? > > I may be able to assist. > > It's run when portupgrade builds ports or downloads packages. I > am not sure about the 'why' part, but presumably it's for keeping > logs of the build in case you want to look at it. In any case, > script is probably the wrong tool for this job, since according > to the script(1) manpage: > > [...] > The results are meant to emulate a hardcopy terminal, not an > addressable one. > [...] Well for the most part builds are pretty line printer friendly... It'd probably make a lot more sense to just redirect/tee stdout/err. I'll look at it, last week it was lisp/scheme, i guess I can learn ruby this week... :) -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' http://www.morons.org/rants/gpl-harmful.php3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 18:30:44 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id C518037B405; Mon, 10 Dec 2001 18:30:29 -0800 (PST) Received: from bsd.havk.org (user-24-214-88-13.knology.net [24.214.88.13]) by mail.hiwaay.net (8.12.1/8.12.1) with ESMTP id fBB2UPhM014054; Mon, 10 Dec 2001 20:30:26 -0600 (CST) Received: by bsd.havk.org (Postfix, from userid 1001) id 03F981A787; Mon, 10 Dec 2001 20:30:25 -0600 (CST) Date: Mon, 10 Dec 2001 20:30:24 -0600 From: Steve Price To: "David O'Brien" Cc: Maxim Sobolev , marcus@marcuscom.com, freebsd-ports@FreeBSD.ORG Subject: Re: bison port Message-ID: <20011210203024.P46667@bsd.havk.org> References: <20011210141716.A36250@dragon.nuxi.com> <200112110134.DAA23251@ipcard.iptcom.net> <20011210175355.A2398@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210175355.A2398@dragon.nuxi.com>; from obrien@FreeBSD.ORG on Mon, Dec 10, 2001 at 05:53:55PM -0800 X-Operating-System: FreeBSD 4.4-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 05:53:55PM -0800, David O'Brien wrote: > > Then I'm backing out the downgrade and we will just live with 1.30. This > PORTEPOCH for life situation is stupid. > > Why can't it be removed? 1.31,0 is greater than 1.28,* Because it tests the epoch first, the version next, and then the revision. From pkg_version.pl: # Check epoch, port version, and port revision, in that # order. $rc = &CompareNumbers($e1, $e2); if ($rc == 0) { $rc = &CompareNumbers($v1, $v2); if ($rc == 0) { $rc = &CompareNumbers($r1, $r2); } } Even if you bring the port back up to 1.30 and remove PORTEPOCH the people that have 1.28,1 will never see a newer version because 0 is always less than 1. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 18:46:38 2001 Delivered-To: freebsd-ports@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id A904537B405 for ; Mon, 10 Dec 2001 18:46:34 -0800 (PST) Received: from 200.181.48.115 (unknown [200.181.48.115]) by heaven.gigo.com (Postfix) with ESMTP id B441AB8C9 for ; Mon, 10 Dec 2001 18:46:33 -0800 (PST) Received: (qmail 1343 invoked by uid 1001); 11 Dec 2001 02:46:05 -0000 Message-ID: <20011211024605.1342.qmail@exxodus.fedaykin.here> Date: Tue, 11 Dec 2001 00:45:43 -0200 From: Mario Sergio Fujikawa Ferreira To: David O'Brien Cc: Steve Price , portmgr@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: GNOME/KDE issue with disc1 References: <20011207181333.A97777@dragon.nuxi.com> <20011209012306.A96687@dragon.nuxi.com> <20011209183512.1467.qmail@exxodus.fedaykin.here> <20011209142050.M46667@bsd.havk.org> <20011209151048.B92399@dragon.nuxi.com> <20011210103624.C64816@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210103624.C64816@dragon.nuxi.com>; from obrien@FreeBSD.ORG on Mon, Dec 10, 2001 at 10:36:02AM -0800 X-Operating-System: FreeBSD 4.4-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 10:36:02AM -0800, David E. O'Brien wrote: > On Sun, Dec 09, 2001 at 03:10:48PM -0800, David O'Brien wrote: > > Maybe we need an exclude list also. > > > Speaking of an exclude list. Should we have XFree86 4 on disc1? Since > al the packages are built against XFree64 3, the dependencies are all > wrong if you install XF4 and then try to add any other X-using package. > (the monolithic XF4 package is 50MB, and if we are going to include it, > shouldn't it be the broken down XF4 ports?) I am gathering a "volunteer" group :) that will try to address this issue proposing patches to all XFree86-4* ports. We hope to: 1) sync all ports with XFree86-4; 2) verify that none of the "small" XFree86-4 ports install bits that should be done by another; 3) verify that the sum of all "small" XFree86-4 ports correspond to the same installation one would achieve from XFree86-4; 4) turn XFree86-4 into a meta port like others in the tree, e.g., kde2; 5) both not screw up so that others will want us dead and get approval from the maintainers; 6) do this before the 20th (we have lifes you know :). Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 19:29:40 2001 Delivered-To: freebsd-ports@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id E608837B419; Mon, 10 Dec 2001 19:29:35 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 3FE1F9B08; Mon, 10 Dec 2001 22:27:37 -0500 (EST) Date: Mon, 10 Dec 2001 22:27:37 -0500 From: Will Andrews To: "David E. O'Brien" Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/bison Makefile distinfo ports/devel/bison/files patch-getargs.c patch-reader.c Message-ID: <20011210222737.J30626@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: "David E. O'Brien" , ports@FreeBSD.org References: <200112110158.fBB1wXA84599@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200112110158.fBB1wXA84599@freefall.freebsd.org> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 05:58:33PM -0800, David E. O'Brien wrote: > Log: > This PORTEPOCH for life crap is stupid. > Back out the downgrade, I would have never agreed to it if I had know... > This leaves a window of downgradededness 18 hours -- people can just live > with that. Once rules are set, you're not supposed to break them. If you have a problem with the rule, bring it up on ports@ and suggest a better way to do things. The fact is we need PORTEPOCH to ensure forward versioning always. Please put it back in this port. Regards, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 19:43:21 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 09F1737B417 for ; Mon, 10 Dec 2001 19:43:19 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBB3hIT16673 for ports@FreeBSD.org; Mon, 10 Dec 2001 19:43:18 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Dec 2001 19:43:18 -0800 From: "David O'Brien" To: ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/bison Makefile distinfo ports/devel/bison/files patch-getargs.c patch-reader.c Message-ID: <20011210194318.A16652@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200112110158.fBB1wXA84599@freefall.freebsd.org> <20011210222737.J30626@squall.waterspout.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210222737.J30626@squall.waterspout.com>; from will@csociety.org on Mon, Dec 10, 2001 at 10:27:37PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 10:27:37PM -0500, Will Andrews wrote: > On Mon, Dec 10, 2001 at 05:58:33PM -0800, David E. O'Brien wrote: > > Log: > > This PORTEPOCH for life crap is stupid. > > Back out the downgrade, I would have never agreed to it if I had know... > > This leaves a window of downgradededness 18 hours -- people can just live > > with that. > > Once rules are set, you're not supposed to break them. If you > have a problem with the rule, bring it up on ports@ and suggest a > better way to do things. The fact is we need PORTEPOCH to ensure > forward versioning always. Please put it back in this port. Explain what it does to the processing? PORTEPOCH was added for the case of PORTVERSION=20011210 going to PORTVERSION=2.3 -- an obvious change in the version number scheme. It seems you are trying to take a statement that was said under the assumption of my example above to be absolute irregardless of situation. From the two comments from you and sobomax, I am starting to think no one knows how PORTEPOCH is processed and exactly what it affects. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 19:44:43 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id B9F8137B417 for ; Mon, 10 Dec 2001 19:44:38 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id fBB3icA16760 for ports@FreeBSD.org; Mon, 10 Dec 2001 19:44:38 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Dec 2001 19:44:38 -0800 From: "David O'Brien" To: ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/bison Makefile distinfo ports/devel/bison/files patch-getargs.c patch-reader.c Message-ID: <20011210194438.B16652@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200112110158.fBB1wXA84599@freefall.freebsd.org> <20011210222737.J30626@squall.waterspout.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210222737.J30626@squall.waterspout.com>; from will@csociety.org on Mon, Dec 10, 2001 at 10:27:37PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 10:27:37PM -0500, Will Andrews wrote: > forward versioning always. Please put it back in this port. BTW, the vesioning is fine now. 1.30 >= all previous versions. Except for a very short while the port was broken, there is nothing wrong with the port right now and the state it was in 24hrs ago. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 19:56:20 2001 Delivered-To: freebsd-ports@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id 0CD4E37B405 for ; Mon, 10 Dec 2001 19:56:18 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 620BE9B08; Mon, 10 Dec 2001 22:54:19 -0500 (EST) Date: Mon, 10 Dec 2001 22:54:19 -0500 From: Will Andrews To: ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/bison Makefile distinfo ports/devel/bison/files patch-getargs.c patch-reader.c Message-ID: <20011210225419.L30626@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: ports@FreeBSD.org References: <200112110158.fBB1wXA84599@freefall.freebsd.org> <20011210222737.J30626@squall.waterspout.com> <20011210194318.A16652@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011210194318.A16652@dragon.nuxi.com> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 07:43:18PM -0800, David O'Brien wrote: > Explain what it does to the processing? PORTEPOCH was added for the case > of PORTVERSION=20011210 going to PORTVERSION=2.3 -- an obvious change in > the version number scheme. It seems you are trying to take a statement > that was said under the assumption of my example above to be absolute > irregardless of situation. From the two comments from you and sobomax, I > am starting to think no one knows how PORTEPOCH is processed and exactly > what it affects. It allows folks who upgraded from the original bison 1.28 to 1.29 or 1.30 to "downgrade" the software version while upgrading package installs. Since someone may have installed a version of the bison port or package with the PORTEPOCH, you have essentially broken the bison installs of people in the last 16 hours. They will not be able to upgrade with conventional FreeBSD tools. That is not acceptable. Put PORTEPOCH=1 back, please. "People will just have to put up with it" does not work when you're saying it to a user. You seem to be trying to avoid PORTEPOCH at all costs. If nothing else, I want to know why, and what you have to suggest to accomodate these version problems. It does not hurt anything to leave PORTEPOCH in bison or anything else alone. By the way, in case you forgot, I've been doing FreeBSD ports long enough to remember when PORTEPOCH, PORTREVSION, and PORTVERSION didn't exist. I was part of the group of people who worked on the PORTEPOCH proposal. If you had a better solution to the problem, I'm sure we would have used it. So don't insult my memory or knowledge about how or why it works. PORTEPOCH is intended to handle all cases of where PORTVERSION-PORTREVISION combination was downgraded for whatever reason, not just the case you mentioned. From that point of view, it's useful not only to accomodate vendor versioning schemes, but packagers' as well. Regards, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 19:57: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id EFC9437B405 for ; Mon, 10 Dec 2001 19:56:58 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 64CAA9B08; Mon, 10 Dec 2001 22:55:00 -0500 (EST) Date: Mon, 10 Dec 2001 22:55:00 -0500 From: Will Andrews To: ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/bison Makefile distinfo ports/devel/bison/files patch-getargs.c patch-reader.c Message-ID: <20011210225500.M30626@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: ports@FreeBSD.org References: <200112110158.fBB1wXA84599@freefall.freebsd.org> <20011210222737.J30626@squall.waterspout.com> <20011210194438.B16652@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011210194438.B16652@dragon.nuxi.com> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Dec 10, 2001 at 07:44:38PM -0800, David O'Brien wrote: > BTW, the vesioning is fine now. 1.30 >= all previous versions. > Except for a very short while the port was broken, there is nothing wrong > with the port right now and the state it was in 24hrs ago. It doesn't matter. 1.28,1 > 1.30. Put it back already. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 19:59:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BD9437B405; Mon, 10 Dec 2001 19:59:31 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB3pKi01609; Mon, 10 Dec 2001 19:51:20 -0800 (PST) (envelope-from lioux) Date: Mon, 10 Dec 2001 19:51:20 -0800 (PST) From: Message-Id: <200112110351.fBB3pKi01609@freefall.freebsd.org> To: lioux@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/32682: Bugfix graphics/avifile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Bugfix graphics/avifile Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: lioux Responsible-Changed-When: Mon Dec 10 19:50:56 PST 2001 Responsible-Changed-Why: I'll handle this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32682 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 20:38:39 2001 Delivered-To: freebsd-ports@freebsd.org Received: from freebsd.tekrealm.net (dsl081-247-162.sfo1.dsl.speakeasy.net [64.81.247.162]) by hub.freebsd.org (Postfix) with ESMTP id DA93B37B405 for ; Mon, 10 Dec 2001 20:38:35 -0800 (PST) Received: (from root@localhost) by freebsd.tekrealm.net (8.11.6/8.11.4) id fBB4cZs90851; Mon, 10 Dec 2001 20:38:35 -0800 (PST) (envelope-from elitetek@tekrealm.net) Received: (from elitetek@localhost) by freebsd.tekrealm.net (8.11.6/8.11.4av) id fBB4cYr90843; Mon, 10 Dec 2001 20:38:34 -0800 (PST) (envelope-from elitetek@tekrealm.net) X-Authentication-Warning: freebsd.tekrealm.net: elitetek set sender to elitetek@tekrealm.net using -f Date: Mon, 10 Dec 2001 20:38:34 -0800 From: Andrew Stuart To: Will Andrews Cc: Dan Langille , ports@freebsd.org Subject: Re: bsd.port.mk", line 695: Inconsistent operator for pre-everything Message-ID: <20011210203834.A90786@freebsd.tekrealm.net> Reply-To: elitetek@tekrealm.net References: <3C120026.32454.19D635AD@localhost> <20011208160108.V56385@squall.waterspout.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011208160108.V56385@squall.waterspout.com>; from will@csociety.org on Sat, Dec 08, 2001 at 04:01:08PM -0500 X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, 08 Dec 2001 at 16:01:08 -0500, Will Andrews wrote: > On Sat, Dec 08, 2001 at 11:57:26AM -0500, Dan Langille wrote: > > # pkg_version -L = > > "/usr/ports/Mk/bsd.port.mk", line 695: Inconsistent operator for pre- > > everything > > make: fatal errors encountered -- cannot continue > > > > Seems like there's a problem here... > > Hmm, that looks interesting. The pre-everything target it's > complaining about is this: > > .if !target(pre-everything) > pre-everything: > @${DO_NADA} > .endif > > as opposed to all the others being "pre-everything::". You and I > have looked at this before. I am still uncertain how you manage > to run into these problems with FreshPorts but nobody else does. :) > I hate to join in.. but i am having the same issue on 2 box's that have recent cvsup's (within about 2 hrs of this email). using a make NOCLEANDEPENDS=yes clean ===> Cleaning for ja-postgresql-6.5.3 ===> japanese/postgresql7 "/usr/ports/Mk/bsd.port.mk", line 695: Inconsistent operator for pre-everything make: fatal errors encountered -- cannot continue *** Error code 1 Stop in /usr/ports/japanese. *** Error code 1 Stop in /usr/ports. I will try deleting port tree on one of them, and try it from scratch, to see if it helps.. -- Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 20:51:32 2001 Delivered-To: freebsd-ports@freebsd.org Received: from lists.unixathome.org (lists.unixathome.org [210.48.103.158]) by hub.freebsd.org (Postfix) with ESMTP id 049C037B41D for ; Mon, 10 Dec 2001 20:51:24 -0800 (PST) Received: from wocker (lists.unixathome.org [210.48.103.158]) by lists.unixathome.org (8.11.6/8.11.6) with ESMTP id fBB4ov557729; Tue, 11 Dec 2001 17:51:01 +1300 (NZDT) (envelope-from dan@langille.org) From: "Dan Langille" Organization: novice in training To: Andrew Stuart Date: Mon, 10 Dec 2001 23:50:56 -0500 MIME-Version: 1.0 Subject: Re: bsd.port.mk", line 695: Inconsistent operator for pre-everything Reply-To: dan@langille.org Cc: Dan Langille , ports@freebsd.org Message-ID: <3C154A60.23289.30CB0DF@localhost> In-reply-to: <20011210203834.A90786@freebsd.tekrealm.net> References: <20011208160108.V56385@squall.waterspout.com>; from will@csociety.org on Sat, Dec 08, 2001 at 04:01:08PM -0500 X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 10 Dec 2001 at 20:38, Andrew Stuart wrote: > On Sat, 08 Dec 2001 at 16:01:08 -0500, Will Andrews wrote: > > On Sat, Dec 08, 2001 at 11:57:26AM -0500, Dan Langille wrote: > > > # pkg_version -L = > > > "/usr/ports/Mk/bsd.port.mk", line 695: Inconsistent operator for pre- > > > everything make: fatal errors encountered -- cannot continue > > > > > > Seems like there's a problem here... > > > > Hmm, that looks interesting. The pre-everything target it's > > complaining about is this: > > > > .if !target(pre-everything) > > pre-everything: > > @${DO_NADA} > > .endif > > > > as opposed to all the others being "pre-everything::". You and I > > have looked at this before. I am still uncertain how you manage > > to run into these problems with FreshPorts but nobody else does. :) > > > > I hate to join in.. but i am having the same issue on 2 box's that have > recent cvsup's (within about 2 hrs of this email). > > using a make NOCLEANDEPENDS=yes clean > > ===> Cleaning for ja-postgresql-6.5.3 > ===> japanese/postgresql7 > "/usr/ports/Mk/bsd.port.mk", line 695: Inconsistent operator for > pre-everything > make: fatal errors encountered -- cannot continue > *** Error code 1 > > Stop in /usr/ports/japanese. > *** Error code 1 > > Stop in /usr/ports. > > I will try deleting port tree on one of them, and try it from scratch, to > see if it helps.. My box uses postgresql, if that's any help. Given that I'm getting the problem on pkg_version, I suspect it's one of my installed ports causing the problem. So I tried this: [root@m20:/usr/ports/databases/postgresql7] # make clean "/usr/ports/Mk/bsd.port.mk", line 695: Inconsistent operator for pre- everything make: fatal errors encountered -- cannot continue [root@m20:/usr/ports/databases/postgresql7] # ls Makefile files pkg-descr pkg-plist pkg- plist.notk scripts Makefile.org pkg pkg-install pkg-plist.doc pkg- plist.odbc typescript distinfo pkg-comment pkg-message pkg-plist.jdbc pkg- plist.tcl typescript.1 [root@m20:/usr/ports/databases/postgresql7] # ls pkg [root@m20:/usr/ports/databases/postgresql7] # rmdir pkg [root@m20:/usr/ports/databases/postgresql7] # make clean ===> Cleaning for gettext-0.10.35 ===> Cleaning for gmake-3.79.1 ===> Cleaning for libtool-1.3.4_2 ===> Cleaning for tcl-8.3.4_3 ===> Cleaning for tk-8.3.4_1 ===> Cleaning for XFree86-3.3.6_10 ===> Cleaning for postgresql-7.1.3 [root@m20:/usr/ports/databases/postgresql7] # There's the cause. pkg. But the symptoms don't point to pkg as being the issue. How can we make it so if pkg exists, a reasonable error is produced? What's wrong with having :: all the time? Does that help anyone? -- Dan Langille The FreeBSD Diary - http://freebsddiary.org/ - practical examples To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 20:56: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id 0DD6437B417 for ; Mon, 10 Dec 2001 20:55:57 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id A295D4D961; Tue, 11 Dec 2001 13:55:55 +0900 (JST) Date: Tue, 11 Dec 2001 13:55:55 +0900 Message-ID: <86snaicq3o.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Alfred Perlstein , Akinori MUSHA , ports@freebsd.org Subject: Re: request for enhancment: portupgrade In-Reply-To: <20011210180912.B30626@squall.waterspout.com> References: <20011210030804.Y92148@elvis.mu.org> <86vgff4dde.wl@archon.local.idaemons.org> <20011210125858.A92148@elvis.mu.org> <20011210180912.B30626@squall.waterspout.com> User-Agent: Wanderlust/2.7.6 (Too Funky) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org At Mon, 10 Dec 2001 18:09:12 -0500, Will Andrews wrote: > On Mon, Dec 10, 2001 at 12:58:58PM -0600, Alfred Perlstein wrote: > > I think #2 is good, i mean, without -v i see something like.. > > > > no need to upgrade foo-1.2.3 > > no need to upgrade bar-4.1 > > no need to upgrade baz-6.3.2 > > Cleaning aaa > > > > The cleaning of 'aaa' isn't for baz, what is it for? :) The next release of portupgrade will be a bit more verbous by default. > Right, and I was hoping that portupgrade could specify what it's > going to upgrade if you do -a (heck any time you execute it), > BEFORE you do it, so you can see if there's something that you > may not want upgraded. Isn't -n what you want? Or portversion -L =. > > Can you point me at where and why script(1) is run? > > I may be able to assist. > > It's run when portupgrade builds ports or downloads packages. I > am not sure about the 'why' part, but presumably it's for keeping > logs of the build in case you want to look at it. In any case, > script is probably the wrong tool for this job, since according > to the script(1) manpage: > > [...] > The results are meant to emulate a hardcopy terminal, not an > addressable one. > [...] Hmm, I can't think of another tool which can keep logs of the build while it allows some interactive ports which use such as dialog(1) to run correctly. FWIW, it's all the same if I implement script(1) myself. Maybe the raw mode is supposed to be so. Any idea? -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 21:28:47 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id EDB8937B405 for ; Mon, 10 Dec 2001 21:28:44 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 260374D961; Tue, 11 Dec 2001 14:28:44 +0900 (JST) Date: Tue, 11 Dec 2001 14:28:44 +0900 Message-ID: <86ofl6cokz.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Alfred Perlstein Cc: ports@freebsd.org Subject: Re: request for enhancment: portupgrade In-Reply-To: <20011210202123.P92148@elvis.mu.org> References: <20011210030804.Y92148@elvis.mu.org> <86vgff4dde.wl@archon.local.idaemons.org> <20011210125858.A92148@elvis.mu.org> <20011210180912.B30626@squall.waterspout.com> User-Agent: Wanderlust/2.7.6 (Too Funky) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org At Mon, 10 Dec 2001 20:21:23 -0600, Alfred Perlstein wrote: > > It's run when portupgrade builds ports or downloads packages. I > > am not sure about the 'why' part, but presumably it's for keeping > > logs of the build in case you want to look at it. In any case, Yes, specifying the -L option to let it keep logs, and regardless of the flag portupgrade keeps logs to guess reasons of build failures (if any) from, just as bento does. > > script is probably the wrong tool for this job, since according > > to the script(1) manpage: > > > > [...] > > The results are meant to emulate a hardcopy terminal, not an > > addressable one. > > [...] > > Well for the most part builds are pretty line printer friendly... > > It'd probably make a lot more sense to just redirect/tee stdout/err. For example, try making the postfix port build keeping the log. With the standard output redirected, its interactive dialog doesn't draw properly. That's why I thought I had to use pty. > I'll look at it, last week it was lisp/scheme, i guess I can learn > ruby this week... :) The main auther of Ruby is a LISP hacker, so the language is meant to be friendly to LISP users, not to mention Smalltalk/Eiffel/Perl/Python users. It's for avid people who've learned many languages but are yet unsatisfied. :> -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 21:40:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC3F237B417 for ; Mon, 10 Dec 2001 21:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB5e2418580; Mon, 10 Dec 2001 21:40:02 -0800 (PST) (envelope-from gnats) Received: from beccabug.kerion.net (beccabug.kerion.net [66.92.100.121]) by hub.freebsd.org (Postfix) with ESMTP id 0923137B446 for ; Mon, 10 Dec 2001 21:35:55 -0800 (PST) Received: by beccabug.kerion.net (Postfix, from userid 1001) id C341C5B8A; Tue, 11 Dec 2001 00:36:12 -0500 (EST) Message-Id: <20011211053612.C341C5B8A@beccabug.kerion.net> Date: Tue, 11 Dec 2001 00:36:12 -0500 (EST) From: Matt Holmes Reply-To: Matt Holmes To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32689: New port: devel/ac-archive A useful set of autoconf macros Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32689 >Category: ports >Synopsis: New port: devel/ac-archive A useful set of autoconf macros >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 21:40:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Matt Holmes >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD beccabug.kerion.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 8 13:45:11 EST 2001 matt@beccabug.kerion.net:/usr/obj/usr/src/sys/BECCABUG i386 >Description: A useful set of autoconf macros, allowing you to easily detect obscure options that may not be readily available in the standard autoconf macro set. Such macro groups include: C++ functionality, Java availability, speciality C functionality, and many others. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ac-archive/ # ac-archive/Makefile # ac-archive/pkg-comment # ac-archive/files # ac-archive/files/patch-aa # ac-archive/pkg-descr # ac-archive/pkg-plist # ac-archive/distinfo # echo c - ac-archive/ mkdir -p ac-archive/ > /dev/null 2>&1 echo x - ac-archive/Makefile sed 's/^X//' >ac-archive/Makefile << 'END-of-ac-archive/Makefile' X# New ports collection makefile for: ac-archive X# Date Created: 10 December 2001 X# Whom: kerion X# X# $FreeBSD$ X# X XPORTNAME= ac-archive XPORTVERSION= 0.5.32 XCATEGORIES= devel XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR=ac-archive X XMAINTAINER= matt@kerion.net X XUSE_GMAKE= yes XGNU_CONFIGURE= yes X X.include END-of-ac-archive/Makefile echo x - ac-archive/pkg-comment sed 's/^X//' >ac-archive/pkg-comment << 'END-of-ac-archive/pkg-comment' XA set of useful GNU autoconf macros END-of-ac-archive/pkg-comment echo c - ac-archive/files mkdir -p ac-archive/files > /dev/null 2>&1 echo x - ac-archive/files/patch-aa sed 's/^X//' >ac-archive/files/patch-aa << 'END-of-ac-archive/files/patch-aa' X--- macro2html.cpp Mon Aug 20 08:36:17 2001 X+++ macro2html.cpp.new Mon Dec 10 23:46:29 2001 X@@ -16,6 +16,7 @@ X #include X #include X #include X+#include X #include X X using namespace std; END-of-ac-archive/files/patch-aa echo x - ac-archive/pkg-descr sed 's/^X//' >ac-archive/pkg-descr << 'END-of-ac-archive/pkg-descr' XA collection of useful autoconf macros that can be used Xin your project to augment the basic functionality provided Xby autoconf. X XWWW: http://www.sourceforge.net/projects/ac-archive/ X X- Matt Xmatt@kerion.net END-of-ac-archive/pkg-descr echo x - ac-archive/pkg-plist sed 's/^X//' >ac-archive/pkg-plist << 'END-of-ac-archive/pkg-plist' Xbin/acinclude Xshare/doc/ac-archive/C++_Support/ac_cxx_bool.html Xshare/doc/ac-archive/C++_Support/ac_cxx_bool.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_complex_math_in_namespace_std.html Xshare/doc/ac-archive/C++_Support/ac_cxx_complex_math_in_namespace_std.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_const_cast.html Xshare/doc/ac-archive/C++_Support/ac_cxx_const_cast.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_default_template_parameters.html Xshare/doc/ac-archive/C++_Support/ac_cxx_default_template_parameters.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_dtor_after_atexit.html Xshare/doc/ac-archive/C++_Support/ac_cxx_dtor_after_atexit.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_dynamic_cast.html Xshare/doc/ac-archive/C++_Support/ac_cxx_dynamic_cast.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_exceptions.html Xshare/doc/ac-archive/C++_Support/ac_cxx_enum_computations.html Xshare/doc/ac-archive/C++_Support/ac_cxx_enum_computations.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_enum_computations_with_cast.html Xshare/doc/ac-archive/C++_Support/ac_cxx_enum_computations_with_cast.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_exceptions.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_explicit.html Xshare/doc/ac-archive/C++_Support/ac_cxx_explicit.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_explicit_instantiations.html Xshare/doc/ac-archive/C++_Support/ac_cxx_explicit_instantiations.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_explicit_template_function_qualification.html Xshare/doc/ac-archive/C++_Support/ac_cxx_explicit_template_function_qualification.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_complex.html Xshare/doc/ac-archive/C++_Support/ac_cxx_full_specialization_syntax.html Xshare/doc/ac-archive/C++_Support/ac_cxx_full_specialization_syntax.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_function_nontype_parameters.html Xshare/doc/ac-archive/C++_Support/ac_cxx_function_nontype_parameters.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_complex.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_complex_math1.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_complex_math1.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_complex_math2.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_complex_math2.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_ieee_math.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_ieee_math.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_numeric_limits.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_numeric_limits.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_sstream.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_sstream.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_std.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_std.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_stl.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_stl.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_string_push_back.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_string_push_back.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_system_v_math.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_system_v_math.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_valarray.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_valarray.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_have_vector_at.html Xshare/doc/ac-archive/C++_Support/ac_cxx_have_vector_at.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_member_constants.html Xshare/doc/ac-archive/C++_Support/ac_cxx_member_constants.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_member_templates.html Xshare/doc/ac-archive/C++_Support/ac_cxx_member_templates.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_member_templates_outside_class.html Xshare/doc/ac-archive/C++_Support/ac_cxx_member_templates_outside_class.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_mutable.html Xshare/doc/ac-archive/C++_Support/ac_cxx_mutable.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_namespaces.html Xshare/doc/ac-archive/C++_Support/ac_cxx_namespaces.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_nceg_restrict.html Xshare/doc/ac-archive/C++_Support/ac_cxx_nceg_restrict.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_rtti.html Xshare/doc/ac-archive/C++_Support/ac_cxx_new_for_scoping.html Xshare/doc/ac-archive/C++_Support/ac_cxx_new_for_scoping.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_old_for_scoping.html Xshare/doc/ac-archive/C++_Support/ac_cxx_old_for_scoping.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_partial_ordering.html Xshare/doc/ac-archive/C++_Support/ac_cxx_partial_ordering.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_partial_specialization.html Xshare/doc/ac-archive/C++_Support/ac_cxx_partial_specialization.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_reinterpret_cast.html Xshare/doc/ac-archive/C++_Support/ac_cxx_reinterpret_cast.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_rtti.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_static_cast.html Xshare/doc/ac-archive/C++_Support/ac_cxx_static_cast.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_template_objs.html Xshare/doc/ac-archive/C++_Support/ac_cxx_template_keyword_qualifier.html Xshare/doc/ac-archive/C++_Support/ac_cxx_template_keyword_qualifier.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_template_objs.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_template_qualified_base_class.html Xshare/doc/ac-archive/C++_Support/ac_cxx_template_qualified_base_class.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_template_qualified_return_type.html Xshare/doc/ac-archive/C++_Support/ac_cxx_template_qualified_return_type.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_template_scoped_argument_matching.html Xshare/doc/ac-archive/C++_Support/ac_cxx_template_scoped_argument_matching.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_templates.html Xshare/doc/ac-archive/C++_Support/ac_cxx_templates.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_templates_as_template_arguments.html Xshare/doc/ac-archive/C++_Support/ac_cxx_templates_as_template_arguments.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_typename.html Xshare/doc/ac-archive/C++_Support/ac_cxx_typename.m4 Xshare/doc/ac-archive/C++_Support/ac_cxx_use_numtrait.html Xshare/doc/ac-archive/C++_Support/ac_cxx_use_numtrait.m4 Xshare/doc/ac-archive/C++_Support/mdl_cxx_function_try_blocks.html Xshare/doc/ac-archive/C++_Support/mdl_cxx_function_try_blocks.m4 Xshare/doc/ac-archive/C++_Support/mni_cxx_have_koenig_lookup.html Xshare/doc/ac-archive/C++_Support/mni_cxx_have_koenig_lookup.m4 Xshare/doc/ac-archive/C_Support/ac_c_var_func.html Xshare/doc/ac-archive/C_Support/ac_c_var_func.m4 Xshare/doc/ac-archive/C_Support/ac_check_cc_opt.html Xshare/doc/ac-archive/C_Support/ac_check_cc_opt.m4 Xshare/doc/ac-archive/C_Support/ac_func_long_long.html Xshare/doc/ac-archive/C_Support/ac_func_long_long.m4 Xshare/doc/ac-archive/C_Support/ac_func_mkdir.html Xshare/doc/ac-archive/C_Support/ac_func_mkdir.m4 Xshare/doc/ac-archive/C_Support/ac_func_snprintf.html Xshare/doc/ac-archive/C_Support/ac_func_snprintf.m4 Xshare/doc/ac-archive/C_Support/ac_func_vsnprintf.html Xshare/doc/ac-archive/C_Support/ac_func_vsnprintf.m4 Xshare/doc/ac-archive/C_Support/ac_need_stdint_h.html Xshare/doc/ac-archive/C_Support/ac_need_stdint_h.m4 Xshare/doc/ac-archive/C_Support/ac_prog_cc_char_subscripts.html Xshare/doc/ac-archive/C_Support/acx_restrict.html Xshare/doc/ac-archive/C_Support/ac_prog_cc_char_subscripts.m4 Xshare/doc/ac-archive/C_Support/ac_prog_cc_no_writeable_strings.html Xshare/doc/ac-archive/C_Support/ac_prog_cc_no_writeable_strings.m4 Xshare/doc/ac-archive/C_Support/ac_prog_cc_strict_prototypes.html Xshare/doc/ac-archive/C_Support/ac_prog_cc_strict_prototypes.m4 Xshare/doc/ac-archive/C_Support/ac_prog_cc_warnings.html Xshare/doc/ac-archive/C_Support/ac_prog_cc_warnings.m4 Xshare/doc/ac-archive/C_Support/acx_restrict.m4 Xshare/doc/ac-archive/C_Support/dps_snprintf_oflow.html Xshare/doc/ac-archive/C_Support/dps_snprintf_oflow.m4 Xshare/doc/ac-archive/C_Support/etr_string_strcasecmp.html Xshare/doc/ac-archive/C_Support/etr_string_strcasecmp.m4 Xshare/doc/ac-archive/C_Support/etr_strings_strcasecmp.html Xshare/doc/ac-archive/C_Support/etr_strings_strcasecmp.m4 Xshare/doc/ac-archive/Cross_Compilation/ac_c_bigendian_cross.html Xshare/doc/ac-archive/Cross_Compilation/ac_c_bigendian_cross.m4 Xshare/doc/ac-archive/Cross_Compilation/ac_prog_cc_for_build.html Xshare/doc/ac-archive/Cross_Compilation/ac_prog_cc_for_build.m4 Xshare/doc/ac-archive/Installed_Packages/ac_caolan_check_package.html Xshare/doc/ac-archive/Installed_Packages/ac_caolan_check_package.m4 Xshare/doc/ac-archive/Installed_Packages/ac_caolan_search_package.html Xshare/doc/ac-archive/Installed_Packages/ac_caolan_search_package.m4 Xshare/doc/ac-archive/Installed_Packages/ac_cond_with.html Xshare/doc/ac-archive/Installed_Packages/ac_cond_with.m4 Xshare/doc/ac-archive/Installed_Packages/ac_config_libconfig_in.html Xshare/doc/ac-archive/Installed_Packages/ac_config_libconfig_in.m4 Xshare/doc/ac-archive/Installed_Packages/ac_jni_include_dirs.html Xshare/doc/ac-archive/Installed_Packages/ac_jni_include_dirs.m4 Xshare/doc/ac-archive/Installed_Packages/ac_lib_readline.html Xshare/doc/ac-archive/Installed_Packages/ac_lib_readline.m4 Xshare/doc/ac-archive/Installed_Packages/ac_path_lib.html Xshare/doc/ac-archive/Installed_Packages/ac_path_lib.m4 Xshare/doc/ac-archive/Installed_Packages/ac_pkg_mico.html Xshare/doc/ac-archive/Installed_Packages/ac_pkg_mico.m4 Xshare/doc/ac-archive/Installed_Packages/ac_prog_apache.html Xshare/doc/ac-archive/Installed_Packages/ac_prog_apache.m4 Xshare/doc/ac-archive/Installed_Packages/ac_prog_cp_s.html Xshare/doc/ac-archive/Installed_Packages/ac_prog_cp_s.m4 Xshare/doc/ac-archive/Installed_Packages/ac_prog_fig2dev.html Xshare/doc/ac-archive/Installed_Packages/ac_prog_fig2dev.m4 Xshare/doc/ac-archive/Installed_Packages/ac_prog_modprobe.html Xshare/doc/ac-archive/Installed_Packages/ac_prog_modprobe.m4 Xshare/doc/ac-archive/Installed_Packages/acx_pthread.html Xshare/doc/ac-archive/Installed_Packages/acx_pthread.m4 Xshare/doc/ac-archive/Installed_Packages/adl_func_getopt_long.html Xshare/doc/ac-archive/Installed_Packages/adl_func_getopt_long.m4 Xshare/doc/ac-archive/Installed_Packages/am_rpm_init.html Xshare/doc/ac-archive/Installed_Packages/am_rpm_init.m4 Xshare/doc/ac-archive/Installed_Packages/am_with_mpatrol.html Xshare/doc/ac-archive/Installed_Packages/am_with_mpatrol.m4 Xshare/doc/ac-archive/Installed_Packages/bnv_have_qt.html Xshare/doc/ac-archive/Installed_Packages/bnv_have_qt.m4 Xshare/doc/ac-archive/Installed_Packages/check_gnu_make.html Xshare/doc/ac-archive/Installed_Packages/check_gnu_make.m4 Xshare/doc/ac-archive/Installed_Packages/check_zlib.html Xshare/doc/ac-archive/Installed_Packages/check_zlib.m4 Xshare/doc/ac-archive/Installed_Packages/mdl_have_opengl.html Xshare/doc/ac-archive/Installed_Packages/mdl_have_opengl.m4 Xshare/doc/ac-archive/Installed_Packages/mp_with_curses.html Xshare/doc/ac-archive/Installed_Packages/mp_with_curses.m4 Xshare/doc/ac-archive/Installed_Packages/patch_libtool_on_darwin_zsh_overquoting.html Xshare/doc/ac-archive/Installed_Packages/patch_libtool_on_darwin_zsh_overquoting.m4 Xshare/doc/ac-archive/Installed_Packages/patch_libtool_sys_lib_search_path_spec.html Xshare/doc/ac-archive/Installed_Packages/patch_libtool_sys_lib_search_path_spec.m4 Xshare/doc/ac-archive/Installed_Packages/patch_libtool_to_add_host_cc.html Xshare/doc/ac-archive/Installed_Packages/patch_libtool_to_add_host_cc.m4 Xshare/doc/ac-archive/Installed_Packages/peti_path_sendmail.html Xshare/doc/ac-archive/Installed_Packages/peti_path_sendmail.m4 Xshare/doc/ac-archive/Installed_Packages/peti_with_dmalloc.html Xshare/doc/ac-archive/Installed_Packages/peti_with_dmalloc.m4 Xshare/doc/ac-archive/Installed_Packages/rssh_check_sunpro_c.html Xshare/doc/ac-archive/Installed_Packages/rssh_check_sunpro_c.m4 Xshare/doc/ac-archive/Installed_Packages/sg_afs.html Xshare/doc/ac-archive/Installed_Packages/sg_afs.m4 Xshare/doc/ac-archive/Installed_Packages/smr_with_build_path.html Xshare/doc/ac-archive/Installed_Packages/smr_with_build_path.m4 Xshare/doc/ac-archive/Java_Support/ac_check_class.html Xshare/doc/ac-archive/Java_Support/ac_check_class.m4 Xshare/doc/ac-archive/Java_Support/ac_check_classpath.html Xshare/doc/ac-archive/Java_Support/ac_check_classpath.m4 Xshare/doc/ac-archive/Java_Support/ac_check_junit.html Xshare/doc/ac-archive/Java_Support/ac_check_junit.m4 Xshare/doc/ac-archive/Java_Support/ac_check_rqrd_class.html Xshare/doc/ac-archive/Java_Support/ac_check_rqrd_class.m4 Xshare/doc/ac-archive/Java_Support/ac_java_options.html Xshare/doc/ac-archive/Java_Support/ac_java_options.m4 Xshare/doc/ac-archive/Java_Support/ac_prog_jar.html Xshare/doc/ac-archive/Java_Support/ac_prog_jar.m4 Xshare/doc/ac-archive/Java_Support/ac_prog_java.html Xshare/doc/ac-archive/Java_Support/ac_prog_java.m4 Xshare/doc/ac-archive/Java_Support/ac_prog_java_works.html Xshare/doc/ac-archive/Java_Support/ac_prog_java_works.m4 Xshare/doc/ac-archive/Java_Support/ac_prog_javac.html Xshare/doc/ac-archive/Java_Support/ac_prog_javac.m4 Xshare/doc/ac-archive/Java_Support/ac_prog_javac_works.html Xshare/doc/ac-archive/Java_Support/ac_prog_javac_works.m4 Xshare/doc/ac-archive/Java_Support/ac_prog_javadoc.html Xshare/doc/ac-archive/Java_Support/ac_prog_javadoc.m4 Xshare/doc/ac-archive/Java_Support/ac_prog_javah.html Xshare/doc/ac-archive/Java_Support/ac_prog_javah.m4 Xshare/doc/ac-archive/Java_Support/ac_try_compile_java.html Xshare/doc/ac-archive/Java_Support/ac_try_compile_java.m4 Xshare/doc/ac-archive/Java_Support/ac_try_run_javac.html Xshare/doc/ac-archive/Java_Support/ac_try_run_javac.m4 Xshare/doc/ac-archive/Miscellaneous/ac_caolan_func_which_gethostbyname_r.html Xshare/doc/ac-archive/Miscellaneous/ac_caolan_func_which_gethostbyname_r.m4 Xshare/doc/ac-archive/Miscellaneous/ac_check_struct_for.html Xshare/doc/ac-archive/Miscellaneous/ac_check_struct_for.m4 Xshare/doc/ac-archive/Miscellaneous/ac_compile_check_sizeof.html Xshare/doc/ac-archive/Miscellaneous/ac_compile_check_sizeof.m4 Xshare/doc/ac-archive/Miscellaneous/ac_compile_warnings.html Xshare/doc/ac-archive/Miscellaneous/ac_compile_warnings.m4 Xshare/doc/ac-archive/Miscellaneous/ac_cond_with.html Xshare/doc/ac-archive/Miscellaneous/ac_cond_with.m4 Xshare/doc/ac-archive/Miscellaneous/ac_cond_with_level.html Xshare/doc/ac-archive/Miscellaneous/ac_cond_with_level.m4 Xshare/doc/ac-archive/Miscellaneous/ac_create_generic_config.html Xshare/doc/ac-archive/Miscellaneous/normpath.m4 Xshare/doc/ac-archive/Miscellaneous/ac_create_generic_config.m4 Xshare/doc/ac-archive/Miscellaneous/ac_create_prefix_config_h.html Xshare/doc/ac-archive/Miscellaneous/ac_create_prefix_config_h.m4 Xshare/doc/ac-archive/Miscellaneous/ac_create_target_h.html Xshare/doc/ac-archive/Miscellaneous/ac_create_target_h.m4 Xshare/doc/ac-archive/Miscellaneous/ac_define_dir.html Xshare/doc/ac-archive/Miscellaneous/ac_define_dir.m4 Xshare/doc/ac-archive/Miscellaneous/ac_define_versionlevel.html Xshare/doc/ac-archive/Miscellaneous/ac_define_versionlevel.m4 Xshare/doc/ac-archive/Miscellaneous/ac_func_accept_argtypes.html Xshare/doc/ac-archive/Miscellaneous/ac_func_accept_argtypes.m4 Xshare/doc/ac-archive/Miscellaneous/ac_need_target_h.html Xshare/doc/ac-archive/Miscellaneous/ac_need_target_h.m4 Xshare/doc/ac-archive/Miscellaneous/ac_path_generic.html Xshare/doc/ac-archive/Miscellaneous/ac_path_generic.m4 Xshare/doc/ac-archive/Miscellaneous/ac_prefix_config_h.html Xshare/doc/ac-archive/Miscellaneous/ac_prefix_config_h.m4 Xshare/doc/ac-archive/Miscellaneous/ac_prompt_user.html Xshare/doc/ac-archive/Miscellaneous/ac_prompt_user.m4 Xshare/doc/ac-archive/Miscellaneous/ac_prompt_user_no_define.html Xshare/doc/ac-archive/Miscellaneous/ac_prompt_user_no_define.m4 Xshare/doc/ac-archive/Miscellaneous/ac_prototype.html Xshare/doc/ac-archive/Miscellaneous/ac_prototype.m4 Xshare/doc/ac-archive/Miscellaneous/ac_prototype_accept.html Xshare/doc/ac-archive/Miscellaneous/ac_prototype_accept.m4 Xshare/doc/ac-archive/Miscellaneous/ac_prototype_getsockname.html Xshare/doc/ac-archive/Miscellaneous/ac_prototype_getsockname.m4 Xshare/doc/ac-archive/Miscellaneous/ac_prototype_setsockopt.html Xshare/doc/ac-archive/Miscellaneous/ac_prototype_setsockopt.m4 Xshare/doc/ac-archive/Miscellaneous/ac_subdir_files.html Xshare/doc/ac-archive/Miscellaneous/ac_raf_func_which_getservbyname_r.html Xshare/doc/ac-archive/Miscellaneous/ac_raf_func_which_getservbyname_r.m4 Xshare/doc/ac-archive/Miscellaneous/ac_subdir_files.m4 Xshare/doc/ac-archive/Miscellaneous/ac_subst_dir.html Xshare/doc/ac-archive/Miscellaneous/ac_subst_dir.m4 Xshare/doc/ac-archive/Miscellaneous/ac_sys_dev_poll.html Xshare/doc/ac-archive/Miscellaneous/ac_sys_dev_poll.m4 Xshare/doc/ac-archive/Miscellaneous/ac_very_nice.html Xshare/doc/ac-archive/Miscellaneous/ac_very_nice.m4 Xshare/doc/ac-archive/Miscellaneous/acx_check_dos_filesys.html Xshare/doc/ac-archive/Miscellaneous/acx_check_dos_filesys.m4 Xshare/doc/ac-archive/Miscellaneous/acx_check_pathname_style.html Xshare/doc/ac-archive/Miscellaneous/acx_check_pathname_style.m4 Xshare/doc/ac-archive/Miscellaneous/acx_func_fork.html Xshare/doc/ac-archive/Miscellaneous/acx_func_fork.m4 Xshare/doc/ac-archive/Miscellaneous/relpaths.m4 Xshare/doc/ac-archive/Miscellaneous/cf_ebcdic.html Xshare/doc/ac-archive/Miscellaneous/cf_ebcdic.m4 Xshare/doc/ac-archive/Miscellaneous/etr_short_sleep.html Xshare/doc/ac-archive/Miscellaneous/etr_short_sleep.m4 Xshare/doc/ac-archive/Miscellaneous/etr_socket_nsl.html Xshare/doc/ac-archive/Miscellaneous/etr_socket_nsl.m4 Xshare/doc/ac-archive/Miscellaneous/etr_struct_semun.html Xshare/doc/ac-archive/Miscellaneous/etr_struct_semun.m4 Xshare/doc/ac-archive/Miscellaneous/etr_sysv_ipc.html Xshare/doc/ac-archive/Miscellaneous/etr_sysv_ipc.m4 Xshare/doc/ac-archive/Miscellaneous/normpath.html Xshare/doc/ac-archive/Miscellaneous/peti_enable_dynamic_linking.html Xshare/doc/ac-archive/Miscellaneous/peti_enable_dynamic_linking.m4 Xshare/doc/ac-archive/Miscellaneous/peti_path_srcdir.html Xshare/doc/ac-archive/Miscellaneous/peti_path_srcdir.m4 Xshare/doc/ac-archive/Miscellaneous/peti_pedantic_gcc.html Xshare/doc/ac-archive/Miscellaneous/peti_pedantic_gcc.m4 Xshare/doc/ac-archive/Miscellaneous/peti_silent_mode.html Xshare/doc/ac-archive/Miscellaneous/peti_silent_mode.m4 Xshare/doc/ac-archive/Miscellaneous/qef_c_noreturn.html Xshare/doc/ac-archive/Miscellaneous/qef_c_noreturn.m4 Xshare/doc/ac-archive/Miscellaneous/relpaths.html Xshare/doc/ac-archive/Miscellaneous/stdrelpaths.html Xshare/doc/ac-archive/Miscellaneous/stdrelpaths.m4 Xshare/doc/ac-archive/Miscellaneous/type_socklen_t.html Xshare/doc/ac-archive/Miscellaneous/type_socklen_t.m4 Xshare/doc/ac-archive/adl/ac_func_mkdir.html Xshare/doc/ac-archive/adl/ac_func_mkdir.m4 Xshare/doc/ac-archive/adl/normpath.html Xshare/doc/ac-archive/adl/normpath.m4 Xshare/doc/ac-archive/adl/relpaths.html Xshare/doc/ac-archive/adl/relpaths.m4 Xshare/doc/ac-archive/adl/stdrelpaths.html Xshare/doc/ac-archive/adl/stdrelpaths.m4 Xshare/doc/ac-archive/bkorb/ag_check_allocated_ctime.html Xshare/doc/ac-archive/bkorb/ag_check_allocated_ctime.m4 Xshare/doc/ac-archive/bkorb/ag_check_posix_regcomp.html Xshare/doc/ac-archive/bkorb/ag_check_posix_regcomp.m4 Xshare/doc/ac-archive/bkorb/ag_check_posix_sysinfo.html Xshare/doc/ac-archive/bkorb/ag_check_posix_sysinfo.m4 Xshare/doc/ac-archive/bkorb/ag_check_strftime.html Xshare/doc/ac-archive/bkorb/ag_check_strftime.m4 Xshare/doc/ac-archive/bkorb/ag_check_sys_siglist.html Xshare/doc/ac-archive/bkorb/ag_check_sys_siglist.m4 Xshare/doc/ac-archive/bkorb/ag_check_uname_syscall.html Xshare/doc/ac-archive/bkorb/ag_check_uname_syscall.m4 Xshare/doc/ac-archive/guidod/ac_arg_with_path_style.html Xshare/doc/ac-archive/guidod/ac_arg_with_path_style.m4 Xshare/doc/ac-archive/guidod/ac_as_dirname.html Xshare/doc/ac-archive/guidod/ac_as_dirname.m4 Xshare/doc/ac-archive/guidod/ac_as_mkdir_p.html Xshare/doc/ac-archive/guidod/ac_as_mkdir_p.m4 Xshare/doc/ac-archive/guidod/ac_c_bigendian_cross.html Xshare/doc/ac-archive/guidod/ac_c_bigendian_cross.m4 Xshare/doc/ac-archive/guidod/ac_c_long_long_.html Xshare/doc/ac-archive/guidod/ac_c_long_long_.m4 Xshare/doc/ac-archive/guidod/ac_check_cc_opt.html Xshare/doc/ac-archive/guidod/ac_check_cc_opt.m4 Xshare/doc/ac-archive/guidod/ac_check_func_in.html Xshare/doc/ac-archive/guidod/ac_check_func_in.m4 Xshare/doc/ac-archive/guidod/ac_check_symbol.html Xshare/doc/ac-archive/guidod/ac_cond_with.m4 Xshare/doc/ac-archive/guidod/ac_check_symbol.m4 Xshare/doc/ac-archive/guidod/ac_check_typedef.html Xshare/doc/ac-archive/guidod/ac_check_typedef.m4 Xshare/doc/ac-archive/guidod/ac_cond_with.html Xshare/doc/ac-archive/guidod/ac_cond_with_level.html Xshare/doc/ac-archive/guidod/ac_cond_with_level.m4 Xshare/doc/ac-archive/guidod/ac_create_generic_config.html Xshare/doc/ac-archive/guidod/ac_create_generic_config.m4 Xshare/doc/ac-archive/guidod/ac_create_prefix_config_h.html Xshare/doc/ac-archive/guidod/ac_create_prefix_config_h.m4 Xshare/doc/ac-archive/guidod/ac_create_stdint_h.html Xshare/doc/ac-archive/guidod/ac_create_stdint_h.m4 Xshare/doc/ac-archive/guidod/ac_create_target_h.html Xshare/doc/ac-archive/guidod/ac_create_target_h.m4 Xshare/doc/ac-archive/guidod/ac_define_dir_.html Xshare/doc/ac-archive/guidod/ac_define_dir_.m4 Xshare/doc/ac-archive/guidod/ac_define_path_style.html Xshare/doc/ac-archive/guidod/ac_define_path_style.m4 Xshare/doc/ac-archive/guidod/ac_define_versionlevel.html Xshare/doc/ac-archive/guidod/ac_define_versionlevel.m4 Xshare/doc/ac-archive/guidod/ac_echo_mkfile.html Xshare/doc/ac-archive/guidod/ac_echo_mkfile.m4 Xshare/doc/ac-archive/guidod/ac_echo_n.html Xshare/doc/ac-archive/guidod/ac_echo_n.m4 Xshare/doc/ac-archive/guidod/ac_need_stdint_h.html Xshare/doc/ac-archive/guidod/ac_need_stdint_h.m4 Xshare/doc/ac-archive/guidod/ac_need_target_h.html Xshare/doc/ac-archive/guidod/ac_need_target_h.m4 Xshare/doc/ac-archive/guidod/ac_numeric_namedlevel.html Xshare/doc/ac-archive/guidod/ac_numeric_namedlevel.m4 Xshare/doc/ac-archive/guidod/ac_prefix_config_h.html Xshare/doc/ac-archive/guidod/ac_prefix_config_h.m4 Xshare/doc/ac-archive/guidod/ac_prog_cc_char_subscripts.html Xshare/doc/ac-archive/guidod/ac_prog_cc_char_subscripts.m4 Xshare/doc/ac-archive/guidod/ac_prog_cc_no_writeable_strings.html Xshare/doc/ac-archive/guidod/ac_prog_cc_no_writeable_strings.m4 Xshare/doc/ac-archive/guidod/ac_prog_cc_strict_prototypes.html Xshare/doc/ac-archive/guidod/ac_prog_cc_strict_prototypes.m4 Xshare/doc/ac-archive/guidod/ac_prog_cp_s.html Xshare/doc/ac-archive/guidod/ac_prog_cp_s.m4 Xshare/doc/ac-archive/guidod/ac_set_default_paths_dllsystem.html Xshare/doc/ac-archive/guidod/ac_set_default_paths_dllsystem.m4 Xshare/doc/ac-archive/guidod/ac_set_default_paths_system.html Xshare/doc/ac-archive/guidod/ac_set_default_paths_system.m4 Xshare/doc/ac-archive/guidod/ac_set_releaseinfo_versioninfo.html Xshare/doc/ac-archive/guidod/ac_set_releaseinfo_versioninfo.m4 Xshare/doc/ac-archive/guidod/ac_set_versionlevel.html Xshare/doc/ac-archive/guidod/ac_set_versionlevel.m4 Xshare/doc/ac-archive/guidod/ac_spec_package_version.html Xshare/doc/ac-archive/guidod/ac_spec_package_version.m4 Xshare/doc/ac-archive/guidod/ac_subdir_files.html Xshare/doc/ac-archive/guidod/ac_subdir_files.m4 Xshare/doc/ac-archive/guidod/ac_subst_prefix_subpaths.html Xshare/doc/ac-archive/guidod/ac_subst_prefix_subpaths.m4 Xshare/doc/ac-archive/guidod/ac_withnone.html Xshare/doc/ac-archive/guidod/ac_withnone.m4 Xshare/doc/ac-archive/guidod/patch_libtool_on_darwin_zsh_overquoting.html Xshare/doc/ac-archive/guidod/patch_libtool_on_darwin_zsh_overquoting.m4 Xshare/doc/ac-archive/guidod/patch_libtool_sys_lib_search_path_spec.html Xshare/doc/ac-archive/guidod/patch_libtool_sys_lib_search_path_spec.m4 Xshare/doc/ac-archive/guidod/patch_libtool_to_add_host_cc.html Xshare/doc/ac-archive/guidod/patch_libtool_to_add_host_cc.m4 Xshare/doc/ac-archive/rleigh/ac_config_libconfig_in.html Xshare/doc/ac-archive/rleigh/ac_config_libconfig_in.m4 Xshare/doc/ac-archive/rleigh/ac_path_lib.html Xshare/doc/ac-archive/rleigh/ac_path_lib.m4 Xshare/doc/ac-archive/gnu-head-sm.jpg Xshare/doc/ac-archive/autoconf-archive.tar.gz Xshare/doc/ac-archive/index.html X@dirrm share/doc/ac-archive/C++_Support X@dirrm share/doc/ac-archive/C_Support X@dirrm share/doc/ac-archive/Cross_Compilation X@dirrm share/doc/ac-archive/Installed_Packages X@dirrm share/doc/ac-archive/Java_Support X@dirrm share/doc/ac-archive/Miscellaneous X@dirrm share/doc/ac-archive/adl X@dirrm share/doc/ac-archive/bkorb X@dirrm share/doc/ac-archive/guidod X@dirrm share/doc/ac-archive/rleigh X@dirrm share/doc/ac-archive END-of-ac-archive/pkg-plist echo x - ac-archive/distinfo sed 's/^X//' >ac-archive/distinfo << 'END-of-ac-archive/distinfo' XMD5 (ac-archive-0.5.32.tar.gz) = 32568a0a4e3d78a825bbc0839c595765 END-of-ac-archive/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 22: 9:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C5F6237B50C; Mon, 10 Dec 2001 22:09:31 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB634h21284; Mon, 10 Dec 2001 22:03:04 -0800 (PST) (envelope-from ijliao) Date: Mon, 10 Dec 2001 22:03:04 -0800 (PST) From: Message-Id: <200112110603.fBB634h21284@freefall.freebsd.org> To: josb@cncdsl.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32685: Upgrade integrit port to latest version, 2.03.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Upgrade integrit port to latest version, 2.03.02 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Mon Dec 10 22:02:57 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32685 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 22: 9:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E2C1337B43D; Mon, 10 Dec 2001 22:09:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB61TR20953; Mon, 10 Dec 2001 22:01:29 -0800 (PST) (envelope-from ijliao) Date: Mon, 10 Dec 2001 22:01:29 -0800 (PST) From: Message-Id: <200112110601.fBB61TR20953@freefall.freebsd.org> To: ak03@gte.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32683: pspell-ispell version update to catch up with pspell Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pspell-ispell version update to catch up with pspell State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Mon Dec 10 22:01:23 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32683 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 22:13:35 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 8712137B405 for ; Mon, 10 Dec 2001 22:13:32 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBB6Cid07438; Tue, 11 Dec 2001 01:12:44 -0500 (EST) (envelope-from alane) Date: Tue, 11 Dec 2001 01:12:44 -0500 From: Alan Eldridge To: Matt Holmes Cc: FreeBSD Ports List Subject: Re: ports/32689: New port: devel/ac-archive A useful set of autoconf macros Message-ID: <20011211011244.A7364@wwweasel.geeksrus.net> References: <20011211053612.C341C5B8A@beccabug.kerion.net> <20011211005832.A7134@wwweasel.geeksrus.net> <20011211060936.5F0D45B8A@beccabug.kerion.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011211060936.5F0D45B8A@beccabug.kerion.net>; from matt@kerion.net on Tue, Dec 11, 2001 at 01:09:36AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Dec 11, 2001 at 01:09:36AM -0500, Matt Holmes wrote: >> >> Hey! Fantastic! :) > >Now if I could just get autoconf to see that I have an acinclude.m4 in my >project dir, I would be really happy :D I don't know the autotools that well, either. But here's a very good start, possibly the best, from what I have read and been told. http://sources.redhat.com/autobook/ -- Alan Eldridge #include free(sklyarov); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 22:53:49 2001 Delivered-To: freebsd-ports@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id CDA5C37B405 for ; Mon, 10 Dec 2001 22:53:46 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 86E7781D03; Tue, 11 Dec 2001 00:53:46 -0600 (CST) Date: Tue, 11 Dec 2001 00:53:46 -0600 From: Alfred Perlstein To: ports@freebsd.org Subject: Re: cvs commit: ports/audio/kdemultimedia2/files patch-wm_helpers.c Message-ID: <20011211005346.W92148@elvis.mu.org> References: <200112110640.fBB6elp28314@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200112110640.fBB6elp28314@freefall.freebsd.org>; from alfred@FreeBSD.org on Mon, Dec 10, 2001 at 10:40:47PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * Alfred Perlstein [011211 00:40] wrote: > alfred 2001/12/10 22:40:47 PST > > Added files: > audio/kdemultimedia2/files patch-wm_helpers.c > Log: > remove include of malloc.h to unbreak on -current I guess this is trivial for me to do, but don't we run some sort of regression on -current to catch such things? Are people busy or do we just simply not check against current lately? -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' http://www.morons.org/rants/gpl-harmful.php3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 23:50:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09EFE37B41B for ; Mon, 10 Dec 2001 23:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB7o0n40426; Mon, 10 Dec 2001 23:50:00 -0800 (PST) (envelope-from gnats) Received: from w250.z064001178.sjc-ca.dsl.cnc.net (w250.z064001178.sjc-ca.dsl.cnc.net [64.1.178.250]) by hub.freebsd.org (Postfix) with SMTP id 36E9437B405 for ; Mon, 10 Dec 2001 23:45:40 -0800 (PST) Received: (qmail 94268 invoked by uid 1000); 11 Dec 2001 07:46:01 -0000 Message-Id: <20011211074601.94267.qmail@lizzy.bugworks.com> Date: 11 Dec 2001 07:46:01 -0000 From: Jos Backus Reply-To: Jos Backus To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32691: security/integrit does not {de,}install its info file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32691 >Category: ports >Synopsis: security/integrit does not {de,}install its info file >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 23:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jos Backus >Release: FreeBSD 5.0-CURRENT i386 >Organization: none >Environment: System: FreeBSD lizzy.bugworks.com 5.0-CURRENT FreeBSD 5.0-CURRENT #8: Sun Dec 9 14:11:20 PST 2001 jos@lizzy.bugworks.com:/disk0/usr/obj/usr/src/sys/LIZZY i386 >Description: When installing security/integrit, the info file is installed but it is not added to the info dir; also, it is not removed when deleting the port. The patch fixes this. My apologies for not noticing this earlier. I have asked the author to rename the info file from ``integrit'' to ``integrit.info''. >How-To-Repeat: >Fix: diff -ruN integrit/Makefile integrit-new/Makefile --- integrit/Makefile Mon Dec 10 23:32:03 2001 +++ integrit-new/Makefile Mon Dec 10 23:44:32 2001 @@ -8,6 +8,7 @@ PORTNAME= integrit PORTVERSION= 2.03.02 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN integrit/pkg-plist integrit-new/pkg-plist --- integrit/pkg-plist Mon Jul 16 19:38:03 2001 +++ integrit-new/pkg-plist Mon Dec 10 23:33:42 2001 @@ -1,3 +1,6 @@ bin/i-ls sbin/i-viewdb sbin/integrit +info/integrit +@exec install-info %D/info/integrit %D/info/dir +@unexec install-info --delete %D/info/integrit %D/info/dir >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 23:50:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F2F9737B41C for ; Mon, 10 Dec 2001 23:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB7o1340431; Mon, 10 Dec 2001 23:50:01 -0800 (PST) (envelope-from gnats) Date: Mon, 10 Dec 2001 23:50:01 -0800 (PST) Message-Id: <200112110750.fBB7o1340431@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: nork@cityfujisawa.ne.jp (Norikatsu Shigemura) Subject: Re: ports/30997: new port: security/p5-Digest-HMAC Reply-To: nork@cityfujisawa.ne.jp (Norikatsu Shigemura) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/30997; it has been noted by GNATS. From: nork@cityfujisawa.ne.jp (Norikatsu Shigemura) To: freebsd-gnats-submit@FreeBSD.org, adrian@ubergeeks.com Cc: Subject: Re: ports/30997: new port: security/p5-Digest-HMAC Date: Tue, 11 Dec 2001 16:46:04 +0900 Dear. I need p5-Digest-HMAC, but no one merge to ports(I can't complain about this). But, I cannot wait:-), and I rewrite to ports format. Please add to ports. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # Makefile # distinfo # pkg-comment # pkg-descr # pkg-plist # echo x - Makefile sed 's/^X//' >Makefile << 'END-of-Makefile' X# New ports collection makefile for: p5-Digest-HMAC X# Date created: 2001/12/11 X# Whom: nork@cityfujisawa.ne.jp X# X# $FreeBSD$ X# X XPORTNAME= Digest-HMAC XPORTVERSION= 1.01 XCATEGORIES= security perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Digest XPKGNAMEPREFIX= p5- X XMAINTAINER= nork@cityfujisawa.ne.jp X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Digest::HMAC.3 \ X Digest::HMAC_MD5.3 \ X Digest::HMAC_SHA1.3 X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X X.include END-of-Makefile echo x - distinfo sed 's/^X//' >distinfo << 'END-of-distinfo' XMD5 (Digest-HMAC-1.01.tar.gz) = 32dc54c765100c638b5d7f7ff4c5c626 END-of-distinfo echo x - pkg-comment sed 's/^X//' >pkg-comment << 'END-of-pkg-comment' XPerl5 interface to HMAC Message-Digest Algorithms END-of-pkg-comment echo x - pkg-descr sed 's/^X//' >pkg-descr << 'END-of-pkg-descr' XDigest:: HMAC X--------------------------------- X XThis package provide modules which calculate HMAC digests. X XTo build the extensions, unpack this distribution somewhere, create Xthe Makefile by running 'perl Makefile.PL' and do a 'make', 'make Xtest', and if successful 'make install'. X XYou will need perl version 5.004 or better to install these modules. XFurther documentation is embedded in the individual modules. X XCopyright 1998-1999 Gisle Aas. XCopyright 1998 Graham Barr. XCopyright 1997 Uwe Hollerbach. XCopyright 1995-1996 Neil Winton. XCopyright 1990-1992 RSA Data Security, Inc. X XThis library is free software; you can redistribute it and/or Xmodify it under the same terms as Perl itself. END-of-pkg-descr echo x - pkg-plist sed 's/^X//' >pkg-plist << 'END-of-pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/Digest/HMAC.pm Xlib/perl5/site_perl/%%PERL_VER%%/Digest/HMAC_SHA1.pm Xlib/perl5/site_perl/%%PERL_VER%%/Digest/HMAC_MD5.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/HMAC/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/Digest X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/HMAC END-of-pkg-plist exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 10 23:50:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5B6B37B417 for ; Mon, 10 Dec 2001 23:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB7o0u40417; Mon, 10 Dec 2001 23:50:00 -0800 (PST) (envelope-from gnats) Received: from softwareliberty.org (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 7D77D37B416 for ; Mon, 10 Dec 2001 23:44:48 -0800 (PST) Received: by softwareliberty.org (Postfix, from userid 1014) id 4832F752F; Tue, 11 Dec 2001 15:44:49 +0800 (CST) Message-Id: <20011211074449.4832F752F@softwareliberty.org> Date: Tue, 11 Dec 2001 15:44:49 +0800 (CST) From: Statue Reply-To: Statue To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32690: Uodate port: chinese/rxvt from 2.7.5 to 2.7.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32690 >Category: ports >Synopsis: Uodate port: chinese/rxvt from 2.7.5 to 2.7.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Dec 10 23:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Statue >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.sinica.edu.tw 4.4-STABLE FreeBSD 4.4-STABLE #0: Tue Oct 9 02:45:16 CST 2001 ycheng@freebsd.sinica.edu.tw:/usr/src/sys/compile/FREEBSD i386 >Description: o update chinese/rxvt from 2.7.5 to 2.7.8 o use MASTERDIR to x11/rxvt-devel o remove distinfo, pkg-comment, pkg-descr, pkg-plist, files/* >How-To-Repeat: >Fix: diff -ruN rxvt.orig/Makefile rxvt/Makefile --- rxvt.orig/Makefile Tue Dec 11 15:15:28 2001 +++ rxvt/Makefile Tue Dec 11 15:29:03 2001 @@ -5,34 +5,16 @@ # $FreeBSD: ports/chinese/rxvt/Makefile,v 1.21 2001/03/07 22:53:39 keichii Exp $ # -PORTNAME= rxvt -PORTVERSION= 2.7.5 -CATEGORIES= chinese x11 -MASTER_SITES= ftp://ftp.rxvt.org/pub/rxvt/ \ - ftp://mason.primenet.com.au/pub/rxvt/ \ - ftp://ftp.ics.es.osaka-u.ac.jp/pub/mirrors/rxvt/ \ - ftp://ftp.fu-berlin.de/unix/X11/terms/rxvt/ \ - ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= X11/terms -DISTNAME= rxvt-${PORTVERSION} +CATEGORIES= chinese + +MASTERDIR= ${.CURDIR}/../../x11/rxvt-devel + +.include "${MASTERDIR}/Makefile" MAINTAINER= keichii@freebsd.org -USE_X_PREFIX= yes -USE_XPM= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -USE_BZIP2= yes -CONFIGURE_ARGS= --enable-xpm-background --enable-transparency \ - --enable-menubar --enable-graphics --enable-xim \ +CONFIGURE_ARGS+= \ + --enable-menubar --enable-graphics \ --disable-backspace-key --disable-delete-key \ --enable-rxvt-scroll --enable-next-scroll \ - --enable-languages --with-encoding=big5 \ - --enable-utmp --enable-wtmp --enable-shared - -MAN1= crxvt.1 - -post-install: - @${CHMOD} 4711 ${PREFIX}/bin/crxvt - -.include + --with-encoding=big5 diff -ruN rxvt.orig/distinfo rxvt/distinfo --- rxvt.orig/distinfo Tue Dec 11 15:15:28 2001 +++ rxvt/distinfo Thu Jan 1 08:00:00 1970 @@ -1 +0,0 @@ -MD5 (rxvt-2.7.5.tar.bz2) = dd9d2b6c3887c674f484c480d4419a19 diff -ruN rxvt.orig/files/patch-Makefile.in rxvt/files/patch-Makefile.in --- rxvt.orig/files/patch-Makefile.in Tue Dec 11 15:15:28 2001 +++ rxvt/files/patch-Makefile.in Thu Jan 1 08:00:00 1970 @@ -1,11 +0,0 @@ ---- Makefile.in.orig Mon Feb 5 22:39:51 2001 -+++ Makefile.in Mon Feb 5 22:40:19 2001 -@@ -9,7 +9,7 @@ - first_rule: all - dummy: - --subdirs = src doc rclock src/graphics src/test -+subdirs = src doc src/graphics - - DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog - diff -ruN rxvt.orig/files/patch-autoconf::config.h.in rxvt/files/patch-autoconf::config.h.in --- rxvt.orig/files/patch-autoconf::config.h.in Tue Dec 11 15:15:28 2001 +++ rxvt/files/patch-autoconf::config.h.in Thu Jan 1 08:00:00 1970 @@ -1,22 +0,0 @@ ---- autoconf/config.h.in.orig Mon Feb 5 22:46:11 2001 -+++ autoconf/config.h.in Mon Feb 5 22:48:13 2001 -@@ -168,7 +168,8 @@ - #undef HAVE_UTMP_HOST - - /* Define location of utmp */ --#undef RXVT_UTMP_FILE -+/* #undef RXVT_UTMP_FILE */ -+#define RXVT_UTMP_FILE "/var/run/utmp" - - /* Define in utmpx.h has struct utmpx */ - #undef HAVE_STRUCT_UTMPX -@@ -180,7 +181,8 @@ - #undef RXVT_UTMPX_FILE - - /* Define location of wtmp */ --#undef RXVT_WTMP_FILE -+/* #undef RXVT_WTMP_FILE */ -+#define RXVT_WTMP_FILE "/var/log/wtmp" - - /* Define location of wtmpx */ - #undef RXVT_WTMPX_FILE diff -ruN rxvt.orig/files/patch-doc::Makefile.in rxvt/files/patch-doc::Makefile.in --- rxvt.orig/files/patch-doc::Makefile.in Tue Dec 11 15:15:28 2001 +++ rxvt/files/patch-doc::Makefile.in Thu Jan 1 08:00:00 1970 @@ -1,30 +0,0 @@ ---- doc/Makefile.in.orig Mon Feb 5 22:40:26 2001 -+++ doc/Makefile.in Mon Feb 5 22:50:03 2001 -@@ -40,9 +40,6 @@ - - all: rxvt.1 - --rxvt.1: rxvt.tbl Makefile -- @if test x$(TBL) = x; then : ; else echo "$(TBL) $(srcdir)/rxvt.tbl | grep -v '^.lf' > rxvt.1"; $(TBL) $(srcdir)/rxvt.tbl | grep -v '^.lf' > rxvt.1 ; fi -- - SEDREPLACE = -e 's%@RXVT_VERSION@%$(VERSION)%g;'\ - -e 's%@RXVT_LSMDATE@%$(LSMDATE)%g;'\ - -e 's%@RXVT_DATE@%$(DATE)%g;'\ -@@ -56,7 +53,7 @@ - - tags allbin: - --alldoc: $(basedir)/$(VERNAME).lsm yodl/versioninfo.yo rxvt.1 rxvt.html rxvtRef.html rxvtRef.txt -+alldoc: rxvt.1 - - yodl/versioninfo.yo: yodl/versioninfo.yo.in ../src/version.h - $(SED) $(SEDREPLACE) < $(srcdir)/yodl/versioninfo.yo.in > $@ -@@ -87,7 +84,7 @@ - distclean: - - install: -- $(INSTALL_DATA) rxvt.1 $(DESTDIR)$(mandir)/$(RXVTNAME).$(manext) -+ $(INSTALL_DATA) rxvt.1 $(PREFIX)/man/man1/crxvt.1 - - uninstall: - -(cd $(mandir); $(RMF) $(RXVTNAME).$(manext) ) diff -ruN rxvt.orig/files/patch-src::Makefile.in rxvt/files/patch-src::Makefile.in --- rxvt.orig/files/patch-src::Makefile.in Tue Dec 11 15:15:28 2001 +++ rxvt/files/patch-src::Makefile.in Thu Jan 1 08:00:00 1970 @@ -1,11 +0,0 @@ ---- src/Makefile.in.orig Mon Feb 5 22:41:53 2001 -+++ src/Makefile.in Mon Feb 5 22:42:41 2001 -@@ -115,7 +115,7 @@ - - install: allbin alldoc - @$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(libdir) -- @$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(DESTDIR)$(bindir)/`$(ECHO) $$p|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'|$(SED) 's/$$/$(EXEEXT)/'`; -+ @$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(PREFIX)/bin/crxvt - - uninstall: - @$(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(bindir)/`$(ECHO) rxvt|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'|$(SED) 's/$$/$(EXEEXT)/'` diff -ruN rxvt.orig/pkg-comment rxvt/pkg-comment --- rxvt.orig/pkg-comment Tue Dec 11 15:15:28 2001 +++ rxvt/pkg-comment Thu Jan 1 08:00:00 1970 @@ -1 +0,0 @@ -A low memory usage xterm replacement that supports color & chinese diff -ruN rxvt.orig/pkg-descr rxvt/pkg-descr --- rxvt.orig/pkg-descr Tue Dec 11 15:15:28 2001 +++ rxvt/pkg-descr Thu Jan 1 08:00:00 1970 @@ -1,11 +0,0 @@ -Rxvt is an xterm replacement which uses a little less memory, and is -suitable for use on machines with small memories. -The KANJI support was added to rxvt since 2.17, from 2.4.4(3?) the support -for Chinese BIG5 encoding is also added. -Since 2.6PRE2, rxvt supports XIM. This port no longer patches for XCIN, -a Chinese input server. Instead, the user must install an input server which -support the XIM protocol. The user has to either patch XCIN (2.1, 2.3) or use -XCIN 2.5, which support XIM and only XIM protocol. - -WWW: http://www.rxvt.org/ -http://xcin.linux.org.tw/ (Chinese XIM server) diff -ruN rxvt.orig/pkg-plist rxvt/pkg-plist --- rxvt.orig/pkg-plist Tue Dec 11 15:15:28 2001 +++ rxvt/pkg-plist Thu Jan 1 08:00:00 1970 @@ -1,4 +0,0 @@ -bin/crxvt -lib/librxvt.a -lib/librxvt.so -lib/librxvt.so.0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 0:49:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 081DC37B405; Tue, 11 Dec 2001 00:49:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB8juR50042; Tue, 11 Dec 2001 00:45:56 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 00:45:56 -0800 (PST) From: Message-Id: <200112110845.fBB8juR50042@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, keichii@FreeBSD.org Subject: Re: ports/32690: Uodate port: chinese/rxvt from 2.7.5 to 2.7.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Uodate port: chinese/rxvt from 2.7.5 to 2.7.8 Responsible-Changed-From-To: freebsd-ports->keichii Responsible-Changed-By: ijliao Responsible-Changed-When: Tue Dec 11 00:45:42 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32690 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 0:59:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89AAE37B419; Tue, 11 Dec 2001 00:59:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB8nZa50549; Tue, 11 Dec 2001 00:49:35 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 00:49:35 -0800 (PST) From: Message-Id: <200112110849.fBB8nZa50549@freefall.freebsd.org> To: josb@cncdsl.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32691: security/integrit does not {de,}install its info file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: security/integrit does not {de,}install its info file State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 00:49:24 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32691 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 0:59:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 18C7137B416; Tue, 11 Dec 2001 00:59:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB8wZn51769; Tue, 11 Dec 2001 00:58:35 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 00:58:35 -0800 (PST) From: Message-Id: <200112110858.fBB8wZn51769@freefall.freebsd.org> To: adrian@ubergeeks.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/30997: new port: security/p5-Digest-HMAC Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new port: security/p5-Digest-HMAC State-Changed-From-To: analyzed->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 00:58:20 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30997 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 1: 9:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DBD437B405; Tue, 11 Dec 2001 01:09:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB94Ig52455; Tue, 11 Dec 2001 01:04:18 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 01:04:18 -0800 (PST) From: Message-Id: <200112110904.fBB94Ig52455@freefall.freebsd.org> To: 3d@freebsd.org, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/28363: New port: audacity-0.95 - a graphical waveform editor Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: audacity-0.95 - a graphical waveform editor State-Changed-From-To: open->analyzed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 01:03:41 PST 2001 State-Changed-Why: there's newer version 0.97, could you please send in latest version ? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 1:30: 8 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ACD6937B416 for ; Tue, 11 Dec 2001 01:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB9U0958448; Tue, 11 Dec 2001 01:30:00 -0800 (PST) (envelope-from gnats) Received: from rand.tgd.net (rand.tgd.net [64.81.67.117]) by hub.freebsd.org (Postfix) with SMTP id 60E9837B405 for ; Tue, 11 Dec 2001 01:29:06 -0800 (PST) Received: (qmail 24336 invoked from network); 11 Dec 2001 09:29:05 -0000 Received: from mat.tgd.net (64.81.67.116) by rand.tgd.net with QMQP; 11 Dec 2001 09:29:05 -0000 Message-Id: <20011211092905.97014.qmail@mat.tgd.net> Date: 11 Dec 2001 09:29:05 -0000 From: Sean Chittenden Reply-To: Sean Chittenden To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32692: Update www/mod_backhand to 1.2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32692 >Category: ports >Synopsis: Update www/mod_backhand to 1.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 01:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sean Chittenden >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD mat.tgd.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Tue Nov 20 01:19:38 PST 2001 root@mat.tgd.net:/usr/obj/usr/src/sys/MAT i386 >Description: mod_backhand needs to be updated latest release. pkg-comment && description have been updated too. >How-To-Repeat: >Fix: cd www/mod_backhand && patch -p0 < patch --- Makefile.orig Mon Dec 10 23:33:22 2001 +++ Makefile Mon Dec 10 22:21:54 2001 @@ -6,7 +6,7 @@ # PORTNAME= mod_backhand -PORTVERSION= 1.2.0 +PORTVERSION= 1.2.1 CATEGORIES= www MASTER_SITES= ftp://ftp.cnds.jhu.edu/pub/backhand/ --- pkg-comment.orig Mon Dec 10 23:34:39 2001 +++ pkg-comment Mon Dec 10 23:35:52 2001 @@ -1 +1 @@ -Apache module that allows seamless redirection of HTTP requests +Apache module that allows seamless redirection and load balancing of HTTP requests --- pkg-descr.orig Tue Dec 11 00:34:33 2001 +++ pkg-descr Tue Dec 11 00:52:25 2001 @@ -1,7 +1,7 @@ -mod_backhand is project that allows seamless redirection -of HTTP requests from one web server to another. This -redirection can be used to target machines with under-utilized -resources, thus providing fine-grained, per-request load balancing -of web requests. +mod_backhand is a project that allows load balancing through seemless +HTTP proxying from one web server to another. This proxying is used +to evenly distribute the load of a site across multiple machines to +that way under-utilized resources are utilized to their fullest, thus +providing fine-grained, per-request HTTP load balancing for a cluster. WWW: http://www.backhand.org/mod_backhand/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 1:39:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DCFF37B405; Tue, 11 Dec 2001 01:39:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB9cuE60398; Tue, 11 Dec 2001 01:38:56 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 01:38:56 -0800 (PST) From: Message-Id: <200112110938.fBB9cuE60398@freefall.freebsd.org> To: wvengen@stack.nl, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/28450: New ports: sword bible library, sword-modules, cheatah frontend Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New ports: sword bible library, sword-modules, cheatah frontend State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 01:38:49 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28450 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 1:49:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D44B37B405; Tue, 11 Dec 2001 01:49:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBB9fOf60813; Tue, 11 Dec 2001 01:41:24 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 01:41:24 -0800 (PST) From: Message-Id: <200112110941.fBB9fOf60813@freefall.freebsd.org> To: sean@chittenden.org, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32692: Update www/mod_backhand to 1.2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update www/mod_backhand to 1.2.1 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 01:41:11 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32692 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 2: 0: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B218B37B419 for ; Tue, 11 Dec 2001 02:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBA01p63467; Tue, 11 Dec 2001 02:00:01 -0800 (PST) (envelope-from gnats) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by hub.freebsd.org (Postfix) with ESMTP id 3B96937B405 for ; Tue, 11 Dec 2001 01:56:18 -0800 (PST) Received: by freebsd.org.ru (Postfix, from userid 1000) id DC1D4255; Tue, 11 Dec 2001 12:56:11 +0300 (MSK) Message-Id: <20011211095611.DC1D4255@freebsd.org.ru> Date: Tue, 11 Dec 2001 12:56:11 +0300 (MSK) From: "Sergey A.Osokin" Reply-To: "Sergey A.Osokin" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32693: [MAINTAINER] update databases/gigabase from 2.53 to 2.54 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32693 >Category: ports >Synopsis: [MAINTAINER] update databases/gigabase from 2.53 to 2.54 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 02:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 4.4-STABLE i386 >Organization: Russian FreeBSD Team >Environment: System: FreeBSD 4.4-STABLE i386 >Description: update databases/gigabase from 2.53 to 2.54 >How-To-Repeat: >Fix: diff -ruN gigabase.old/Makefile gigabase/Makefile --- gigabase.old/Makefile Tue Dec 11 12:54:08 2001 +++ gigabase/Makefile Fri Dec 7 13:18:41 2001 @@ -6,7 +6,7 @@ # PORTNAME= gigabase -PORTVERSION= 2.53 +PORTVERSION= 2.54 CATEGORIES= databases MASTER_SITES= http://www.ispras.ru/~knizhnik/ diff -ruN gigabase.old/distinfo gigabase/distinfo --- gigabase.old/distinfo Tue Dec 11 12:54:08 2001 +++ gigabase/distinfo Mon Dec 10 20:14:19 2001 @@ -1 +1 @@ -MD5 (gigabase-2.53.tar.gz) = 65ce800fbabd81ec024ddd8ada7a64b5 +MD5 (gigabase-2.54.tar.gz) = 043aca92ccf87870b4c064fdf68356a0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 3:25: 4 2001 Delivered-To: freebsd-ports@freebsd.org Received: from zeus.ruca.ua.ac.be (zeus.ruca.ua.ac.be [143.129.201.210]) by hub.freebsd.org (Postfix) with ESMTP id 0968237B405; Tue, 11 Dec 2001 03:24:59 -0800 (PST) Received: from localhost (shixin@localhost) by zeus.ruca.ua.ac.be (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id MAA19185; Tue, 11 Dec 2001 12:24:57 +0100 (MET) Date: Tue, 11 Dec 2001 12:24:57 +0100 (MET) From: Shixin Yu To: ports@FreeBSD.org, sobomax@FreeBSD.org Subject: ImageMagick need tiff-3.5.5_1 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dear FREEBSD: When I try to install the ImageMagick,it says that pkg_add:could not find package tiff-3.5.5_1 ! I have tiff-3.5.5 installed,where can get the tiff-3.5.5_1 ? Thanks, yu -------------------------------------------------- shixin Yu VisionLab Department of Physics University of Antwerp Groenenborgerlaan 171 B-2020,Antwerp Belgium Email:shixin@ruca.ua.ac.be Tel:+32-3.2180.518 Fax:+32-3.2180.318 ------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 4:56:24 2001 Delivered-To: freebsd-ports@freebsd.org Received: from macbeth.phy.hr (macbeth.phy.hr [161.53.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 9409637B405 for ; Tue, 11 Dec 2001 04:56:15 -0800 (PST) Received: (from kkumer@localhost) by macbeth.phy.hr (8.11.6/8.11.6) id fBBCuCf32126 for freebsd-ports@FreeBSD.org; Tue, 11 Dec 2001 13:56:12 +0100 (CET) (envelope-from kkumer) Date: Tue, 11 Dec 2001 13:56:11 +0100 From: Kresimir Kumericki To: freebsd-ports@FreeBSD.org Subject: linux-opera segfaults on 4.4-RELEASE Message-ID: <20011211135611.A31952@phy.hr> Reply-To: kkumer@phy.hr Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Last two builds of linux-opera (opera-6.0-20011122.1 and opera-6.0-20011129.1 from ports) both break with "Segmentation fault - core dumped" on my machine. I attach the output of "truss opera" below. I am just a regular user (so I should probably wait for the non-beta release) but I am very eager to see opera-6 working on my machine ASAP. (It finally has support for iso-8859-2 fonts.) What should I do? a) post to freebsd-ports (as I just did) b) inform the port maintainer c) file the bug-report d) some combination of the above Tnx, Kresimir %uname-a .... 4.4-RELEASE FreeBSD ... i386 %truss opera getpid() = 32065 (0x7d41) geteuid() = 500 (0x1f4) readlink("/etc/malloc.conf",0xbfbff1f4,63) ERR#2 'No such file or directory' mmap(0x0,4096,0x3,0x1002,-1,0x0) = 671805440 (0x280af000) break(0x80c0000) = 0 (0x0) break(0x80c1000) = 0 (0x0) getuid() = 500 (0x1f4) geteuid() = 500 (0x1f4) getgid() = 500 (0x1f4) getegid() = 500 (0x1f4) open("/usr/local/bin/opera",0,027757771304) = 3 (0x3) fcntl(0x3,0x0,0xa) = 10 (0xa) close(3) = 0 (0x0) fcntl(0xa,0x2,0x1) = 0 (0x0) sigaction(SIGINT,0x0,0xbfbff21c) = 0 (0x0) sigaction(SIGINT,0xbfbff21c,0xbfbff204) = 0 (0x0) sigaction(SIGINT,0x0,0xbfbff21c) = 0 (0x0) sigaction(SIGINT,0xbfbff21c,0x0) = 0 (0x0) sigaction(SIGQUIT,0x0,0xbfbff20c) = 0 (0x0) sigaction(SIGQUIT,0xbfbff20c,0xbfbff1f4) = 0 (0x0) sigaction(SIGQUIT,0x0,0xbfbff20c) = 0 (0x0) sigaction(SIGQUIT,0xbfbff20c,0x0) = 0 (0x0) sigaction(SIGTERM,0x0,0xbfbff21c) = 0 (0x0) sigaction(SIGTERM,0xbfbff21c,0xbfbff204) = 0 (0x0) sigaction(SIGSYS,0xbfbff08c,0xbfbff074) = 0 (0x0) __getcwd(0xbfbff1f4,0x100) = 0 (0x0) sigaction(SIGSYS,0xbfbff074,0x0) = 0 (0x0) read(0xa,0x80bbce0,0x3ff) = 1023 (0x3ff) break(0x80c2000) = 0 (0x0) break(0x80c3000) = 0 (0x0) break(0x80c4000) = 0 (0x0) stat("/sbin/test",0xbfbff114) ERR#2 'No such file or directory' stat("/bin/test",0xbfbff114) = 0 (0x0) fork() = 32066 (0x7d42) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff140,0x2,0x0) = 32066 (0x7d42) break(0x80c5000) = 0 (0x0) fork() = 32067 (0x7d43) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff110,0x2,0x0) = 32067 (0x7d43) fork() = 32068 (0x7d44) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff140,0x2,0x0) = 32068 (0x7d44) fork() = 32069 (0x7d45) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff110,0x2,0x0) = 32069 (0x7d45) read(0xa,0x80bbce0,0x3ff) = 396 (0x18c) stat("/usr/local/java",0xbfbff094) ERR#2 'No such file or directory' fork() = 32070 (0x7d46) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff0b0,0x2,0x0) = 32070 (0x7d46) fork() = 32071 (0x7d47) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff0b0,0x2,0x0) = 32071 (0x7d47) fork() = 32072 (0x7d48) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff0b0,0x2,0x0) = 32072 (0x7d48) fork() = 32073 (0x7d49) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff0b0,0x2,0x0) = 32073 (0x7d49) stat("/usr/local/java",0xbfbfef54) ERR#2 'No such file or directory' fork() = 32074 (0x7d4a) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff0b0,0x2,0x0) = 32074 (0x7d4a) fork() = 32075 (0x7d4b) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff0b0,0x2,0x0) = 32075 (0x7d4b) fork() = 32076 (0x7d4c) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff0b0,0x2,0x0) = 32076 (0x7d4c) fork() = 32077 (0x7d4d) SIGNAL 20 getpgrp() = 32064 (0x7d40) wait4(0xffffffff,0xbfbff140,0x2,0x0) = 32077 (0x7d4d) fork() = 32078 (0x7d4e) getpgrp() = 32064 (0x7d40) SIGNAL 20 wait4(0xffffffff,0xbfbff170,0x2,0x0) = 32078 (0x7d4e) Segmentation faultwrite(2,0x80c3100,18) = 18 (0x12) - core dumpedwrite(2,0x80c3100,14) = 14 (0xe) write(2,0x80c3100,1) = 1 (0x1) read(0xa,0x80bbce0,0x3ff) = 0 (0x0) exit(0x8b) process exit, rval = 35584 -- Kresimir Kumericki kkumer@phy.hr http://www.phy.hr/~kkumer/ "Fizika svemira" - http://eskola.hfd.hr/fizika_svemira/svemir.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 5:10:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E6B1E37B419 for ; Tue, 11 Dec 2001 05:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBDA0N06303; Tue, 11 Dec 2001 05:10:00 -0800 (PST) (envelope-from gnats) Received: from voi.aagh.net (pc2-hart4-0-cust103.mid.cable.ntl.com [213.107.122.103]) by hub.freebsd.org (Postfix) with ESMTP id E710137B41C for ; Tue, 11 Dec 2001 05:08:04 -0800 (PST) Received: from freaky by voi.aagh.net with local (Exim 3.33 #1) id 16Dmdf-000PsG-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 13:08:03 +0000 Message-Id: Date: Tue, 11 Dec 2001 13:08:03 +0000 From: Thomas Hurst Reply-To: Thomas Hurst To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32694: security/gnupg fails to generate keys Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32694 >Category: ports >Synopsis: security/gnupg fails to generate keys >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 05:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Thomas Hurst >Release: FreeBSD 4.4-STABLE i386 >Organization: None whatsoever >Environment: System: FreeBSD voi.freak.lan 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Nov 11 19:47:37 GMT 2001 root@sploo.freak.lan:/usr/obj/usr/src/sys/SPLOO i386 (Yes, I renamed my machine, although maybe my first choice of 'ione' would be better :) The system is monitor and keyboard-less. >Description: gpg --gen-key always ends up sitting there with: We need to generate a lot of random bytes. It is a good idea to perform [snip] Not enough random bytes available. Please do some other work to give the OS a chance to collect more entropy! (Need 300 more bytes) Despite a constant stream of random data from /dev/random, and leaving it there 10 minutes. Even doing a find / and exporting X sessions doesn't help (although the progress display proceeds further in this case). Similar tools, such as ssh-keygen have no problems. >How-To-Repeat: gpg --gen-key, answer prompts >Fix: Don't use encryption, only terrorists use encryption!!!!!111 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 6:28:13 2001 Delivered-To: freebsd-ports@freebsd.org Received: from voi.aagh.net (pc2-hart4-0-cust103.mid.cable.ntl.com [213.107.122.103]) by hub.freebsd.org (Postfix) with ESMTP id 0928237B419 for ; Tue, 11 Dec 2001 06:28:10 -0800 (PST) Received: from freaky by voi.aagh.net with local (Exim 3.33 #1) id 16DntA-0001Uk-00 for freebsd-ports@FreeBSD.org; Tue, 11 Dec 2001 14:28:08 +0000 Date: Tue, 11 Dec 2001 14:28:08 +0000 From: Thomas Hurst To: freebsd-ports@FreeBSD.org Subject: Re: ports/32694: security/gnupg fails to generate keys Message-ID: <20011211142808.GA5577@voi.aagh.net> Mail-Followup-To: freebsd-ports@FreeBSD.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.24i Organization: Not much. X-Operating-System: FreeBSD/4.4-STABLE (i386) X-Uptime: 2:18PM up 27 days, 16:20, 4 users, load averages: 2.28, 2.15, 2.07 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * Thomas Hurst (freaky@aagh.net) wrote: > >Synopsis: security/gnupg fails to generate keys OK, I suck; rndcontrol needs to be used to provide a larger entropy pool. Might be good if sysinstall post config stuff mentioned this (unless I missed it) -- Thomas 'Freaky' Hurst - freaky@aagh.net - http://www.aagh.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 6:39:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 91A1037B419; Tue, 11 Dec 2001 06:39:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBEUca27519; Tue, 11 Dec 2001 06:30:38 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 06:30:38 -0800 (PST) From: Message-Id: <200112111430.fBBEUca27519@freefall.freebsd.org> To: osa@FreeBSD.org.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32693: [MAINTAINER] update databases/gigabase from 2.53 to 2.54 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER] update databases/gigabase from 2.53 to 2.54 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 06:30:30 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32693 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 6:39:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC4B637B41B; Tue, 11 Dec 2001 06:39:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBEVmY27755; Tue, 11 Dec 2001 06:31:48 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 06:31:48 -0800 (PST) From: Message-Id: <200112111431.fBBEVmY27755@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/32694: security/gnupg fails to generate keys Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: security/gnupg fails to generate keys Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: ijliao Responsible-Changed-When: Tue Dec 11 06:31:29 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32694 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 6:50: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 64FFE37B41C for ; Tue, 11 Dec 2001 06:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBEo1i43441; Tue, 11 Dec 2001 06:50:01 -0800 (PST) (envelope-from gnats) Received: from fep1.012.net.il (fep1.goldenlines.net.il [212.117.129.200]) by hub.freebsd.org (Postfix) with ESMTP id 7276D37B416 for ; Tue, 11 Dec 2001 06:45:25 -0800 (PST) Received: from alchemy.oven.org ([212.199.33.34]) by fep1.012.net.il with ESMTP id <20011211144551.FTFT1180.fep1@alchemy.oven.org>; Tue, 11 Dec 2001 16:45:51 +0200 Received: (from mapc@localhost) by alchemy.oven.org (8.11.6/8.11.5) id fBBEjOF63727; Tue, 11 Dec 2001 16:45:24 +0200 (IST) (envelope-from mapc) Message-Id: <200112111445.fBBEjOF63727@alchemy.oven.org> Date: Tue, 11 Dec 2001 16:45:24 +0200 (IST) From: Roman Shterenzon To: FreeBSD-gnats-submit@freebsd.org Cc: roman@xpert.com X-Send-Pr-Version: 3.113 Subject: ports/32695: Don't display private networks hits. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32695 >Category: ports >Synopsis: Don't display private networks hits. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 06:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD alchemy.oven.org 4.4-STABLE FreeBSD 4.4-STABLE #0: Thu Nov 22 12:47:10 IST 2001 root@alchemy.oven.org:/local/src/sys/compile/ALCHEMY i386 >Description: I made gtk-gnutella ignore hits from private networks which are useless anyway. >How-To-Repeat: >Fix: diff -urN /usr/ports/net/gtk-gnutella/Makefile gtk-gnutella/Makefile --- /usr/ports/net/gtk-gnutella/Makefile Fri Nov 23 12:13:23 2001 +++ gtk-gnutella/Makefile Tue Dec 11 16:43:25 2001 @@ -7,6 +7,7 @@ PORTNAME= gtk-gnutella PORTVERSION= 0.18 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://gtk-gnutella.sourceforge.net/download/ \ diff -urN /usr/ports/net/gtk-gnutella/files/patch-search.c gtk-gnutella/files/patch-search.c --- /usr/ports/net/gtk-gnutella/files/patch-search.c Thu Jan 1 02:00:00 1970 +++ gtk-gnutella/files/patch-search.c Fri Dec 7 00:14:32 2001 @@ -0,0 +1,20 @@ +--- src/search.c.orig Thu Dec 6 23:52:35 2001 ++++ src/search.c Fri Dec 7 00:05:49 2001 +@@ -13,6 +13,7 @@ + #include "dialog-filters.h" + #include "routing.h" + #include "autodownload.h" ++#include "hosts.h" + + #define MAKE_CODE(a,b,c,d) ( \ + ((guint32) (a) << 24) | \ +@@ -1258,7 +1259,8 @@ + if ( + sch->items >= search_max_results || + search_result_is_dup(sch, rc) || +- !filter_record(sch, rc) ++ !filter_record(sch, rc) || ++ !check_valid_host(rc->results_set->ip,6346) + ) { + rs->records = g_slist_remove(rs->records, rc); + rs->num_recs--; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 6:51:19 2001 Delivered-To: freebsd-ports@freebsd.org Received: from Cantor.suse.de (ns.suse.de [213.95.15.193]) by hub.freebsd.org (Postfix) with ESMTP id AFCF237B448 for ; Tue, 11 Dec 2001 06:51:06 -0800 (PST) Received: from Hermes.suse.de (Hermes.suse.de [213.95.15.136]) by Cantor.suse.de (Postfix) with ESMTP id D2D681E46A; Tue, 11 Dec 2001 15:51:05 +0100 (MET) Date: Tue, 11 Dec 2001 15:51:04 +0100 From: Frank Sundermeyer To: Aistis Zenkevicius Cc: ports@freebsd.org Subject: Re: 404 error Message-ID: <20011211155104.E3530@suse.de> References: <000501c181d6$53def670$a5043bd4@partyservice> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.16i In-Reply-To: <000501c181d6$53def670$a5043bd4@partyservice>; from noc@unix.lt on Tue, Dec 11, 2001 at 01:56:09AM +0200 Organization: SuSE GmbH, Nuremberg, Germany Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Dec 11, Aistis Zenkevicius wrote: Hi, > while visiting > http://www.freebsd.org/cgi/url.cgi?ports/net/proxy-suite/pkg-descr > I followed the link http://www.suse.de/en/support/proxy_suite/ which is > $subj. Thanks for your feedback. I have redirected the wrong URl to the new location http://www.suse.de/en/support/whitepapers/proxy_suite/ so the link should work now. Tschau Frank -- Frank Sundermeyer, SuSE GmbH, Schanzaeckerstr. 10 D-90443 Nuernberg Tel: +49-911-74053-0, Fax: +49-911-7417755; http://www.suse.de/ "Reality is always controlled by the people who are most insane" Dogbert -- -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 7: 4:44 2001 Delivered-To: freebsd-ports@freebsd.org Received: from supai.oit.umass.edu (supai.oit.umass.edu [128.119.175.6]) by hub.freebsd.org (Postfix) with ESMTP id 58D5237B405 for ; Tue, 11 Dec 2001 07:04:39 -0800 (PST) Received: from CONVERSION-DAEMON by supai.oit.umass.edu (PMDF V5.2-32 #38130) id <0GO600301PVKFV@supai.oit.umass.edu> for ports@freebsd.org; Tue, 11 Dec 2001 10:04:32 -0500 (EST) Received: from wilde.oit.umass.edu (wilde.oit.umass.edu [128.119.166.168]) by supai.oit.umass.edu (PMDF V5.2-32 #38130) with ESMTP id <0GO60027WPVJKX@supai.oit.umass.edu> for ports@freebsd.org; Tue, 11 Dec 2001 10:04:31 -0500 (EST) Received: (from wingus@localhost) by wilde.oit.umass.edu (8.12.1/8.12.1/Submit) id fBBF4UJJ010074; Tue, 11 Dec 2001 10:04:30 -0500 (EST) Date: Tue, 11 Dec 2001 10:04:30 -0500 From: Marc Liberatore Subject: Port update submission/question To: ports@freebsd.org Message-id: <20011211100430.A28496@wilde.oit.umass.edu> MIME-version: 1.0 Content-type: multipart/mixed; boundary="Boundary_(ID_L7SeamWKprNy9iutr7EgZw)" User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --Boundary_(ID_L7SeamWKprNy9iutr7EgZw) Content-type: text/plain; charset=us-ascii Content-disposition: inline Content-transfer-encoding: 7BIT Hello, As I am a believer in the BlackBox window manager, I was saddened to discover that bbkeys, a useful utility for it, was not at the latest version in the tree. I attempted to send mail to the maintainer, but several hours later got back the dreaded "message undeliverable." So, I sat down, took a few hours, and took a crack at the port system. Attached is the diff I came up with. Files/directories removed include: files files/patch-aa Unfortunately, a few problems remain that I don't see a quick solution to: 1. The manpages that are configured via autoconf (in {WRKDIR}/doc) have somewhat mangled paths in their contents. I looked over some other ports, but didn't see how this was handled. 2. The "extra documentation" is installed as part of the port, and doesn't respect NOPORTSDOC. This is not new behavior, but I'd like to fix it anyway. I'm not sure whether to somehow modify the configure scripts, or modify the Makefile(s) (via a port patch). If you have the time, feel free to make the fixes. If not, (or even if so) I would greatly appreciate pointers to some sort of documentation to clean up these little buglets, and would be glad to squash them. Cheers, Marc Liberatore --Boundary_(ID_L7SeamWKprNy9iutr7EgZw) Content-type: text/plain; NAME=bbkeys.diff; charset=us-ascii Content-disposition: attachment; filename=bbkeys.diff Content-transfer-encoding: 7BIT diff -ruN bbkeys/Makefile bbkeys-new/Makefile --- bbkeys/Makefile Tue Apr 3 04:14:32 2001 +++ bbkeys-new/Makefile Mon Dec 10 20:59:15 2001 @@ -6,24 +6,26 @@ # PORTNAME= bbkeys -PORTVERSION= 0.3.6 +PORTVERSION= 0.8.3 CATEGORIES= x11-wm MASTER_SITES= http://movingparts.thelinuxcommunity.org/bbkeys/ MAINTAINER= patseal@hyperhost.net -RUN_DEPENDS= blackbox:${PORTSDIR}/x11-wm/blackbox +RUN_DEPENDS= blackbox:${PORTSDIR}/x11-wm/blackbox \ + bbconf:${PORTSDIR}/x11-wm/bbconf USE_X_PREFIX= yes GNU_CONFIGURE= yes USE_QT_VER= 2 +MAN1= bbkeys.1 +MAN5= bbkeys.bb.5 bbkeysrc.5 + do-build: @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) - @(cd ${WRKSRC}/bbkeysconf-1.3; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) do-install: @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) - @(cd ${WRKSRC}/bbkeysconf-1.3 && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) .include diff -ruN bbkeys/distinfo bbkeys-new/distinfo --- bbkeys/distinfo Thu Mar 29 15:16:22 2001 +++ bbkeys-new/distinfo Mon Dec 10 20:40:12 2001 @@ -1 +1 @@ -MD5 (bbkeys-0.3.6.tar.gz) = a8d24c463ea8900c4f5e5fdbc4ee8f9f +MD5 (bbkeys-0.8.3.tar.gz) = f38ea900ad8c6a797833b4d380f737cd diff -ruN bbkeys/pkg-descr bbkeys-new/pkg-descr --- bbkeys/pkg-descr Tue Dec 4 10:27:44 2001 +++ bbkeys-new/pkg-descr Mon Dec 10 19:58:04 2001 @@ -1,6 +1,6 @@ A keygrabber for the Blackbox window manager. -WWW: http://movingparts.windsofstorm.net/ +WWW: http://movingparts.thelinuxcommunity.org/bbkeys.shtml - Patrick patseal@hyperhost.net diff -ruN bbkeys/pkg-plist bbkeys-new/pkg-plist --- bbkeys/pkg-plist Wed Jul 19 09:18:16 2000 +++ bbkeys-new/pkg-plist Mon Dec 10 20:19:44 2001 @@ -1,7 +1,10 @@ bin/bbkeys bin/bbkeysConfigC -bin/bbkeysconf +doc/bbkeys/README +doc/bbkeys/AUTHORS +doc/bbkeys/ChangeLog share/bbtools/bbkeys.bb share/bbtools/bbkeys.nobb share/bbtools/README.bbkeys +@dirrm doc/bbkeys @dirrm share/bbtools --Boundary_(ID_L7SeamWKprNy9iutr7EgZw)-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 7: 6:21 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 56CA337B419; Tue, 11 Dec 2001 07:06:18 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBBF5Md20926; Tue, 11 Dec 2001 10:05:22 -0500 (EST) (envelope-from alane) Date: Tue, 11 Dec 2001 10:05:22 -0500 From: Alan Eldridge To: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32639: freeamp: preference AllowMultipleInstances=false does not work Message-ID: <20011211100522.A20752@wwweasel.geeksrus.net> References: <200112090902.fB992u294974@wwweasel.geeksrus.net> <200112090910.fB99A1R20901@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200112090910.fB99A1R20901@freefall.freebsd.org>; from gnats-admin@FreeBSD.org on Sun, Dec 09, 2001 at 01:10:01AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Dec 09, 2001 at 01:10:01AM -0800, gnats-admin@FreeBSD.org wrote: Submitted to bugzilla at freebsd.org as Bug # 1526. They're gonna love me for finding a bug that requires a design change. :) -- Alan Eldridge #include free(sklyarov); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 7: 9:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B5EA037B416; Tue, 11 Dec 2001 07:09:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBF7Au52620; Tue, 11 Dec 2001 07:07:10 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 07:07:10 -0800 (PST) From: Message-Id: <200112111507.fBBF7Au52620@freefall.freebsd.org> To: roman@xpert.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32695: Don't display private networks hits. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Don't display private networks hits. State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 07:06:57 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32695 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 7:31:58 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id D3F6337B405; Tue, 11 Dec 2001 07:31:56 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBBFV5121317; Tue, 11 Dec 2001 10:31:05 -0500 (EST) (envelope-from alane) Date: Tue, 11 Dec 2001 10:31:05 -0500 From: Alan Eldridge To: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32639: freeamp: preference AllowMultipleInstances=false does not work Message-ID: <20011211103105.A21305@wwweasel.geeksrus.net> References: <200112090902.fB992u294974@wwweasel.geeksrus.net> <200112090910.fB99A1R20901@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200112090910.fB99A1R20901@freefall.freebsd.org>; from gnats-admin@FreeBSD.org on Sun, Dec 09, 2001 at 01:10:01AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Dec 09, 2001 at 01:10:01AM -0800, gnats-admin@FreeBSD.org wrote: http://www.freeamp.org/bugzilla/show_bug.cgi?id=1526 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 7:32:20 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id 2D5B737B405 for ; Tue, 11 Dec 2001 07:32:10 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id D06254D962 for ; Wed, 12 Dec 2001 00:32:08 +0900 (JST) Date: Wed, 12 Dec 2001 00:32:08 +0900 Message-ID: <86ofl5eps7.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: ports@FreeBSD.org Subject: Announcing the FreeBSD-XFree86 workers list User-Agent: Wanderlust/2.7.6 (Too Funky) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, Here I announce the launch of the FreeBSD-XFree86 list, which is created for discussion on reorganizing, improving and maintaining the XFree86 ports for FreeBSD. Top priority of the moment is to divide the one big XFree86-4 port into a set of component ports and make the build process better. Currently, the maintainers of the XFree86 4.x ports, Will as a portmgr, and I as coordinator/administrator of the list are joining, while we always welcome those who are interested in maintaining and improving the XFree86 4.x ports. To join the list and/or browse the archive, use the following web interface: http://lists.csociety.org/listinfo/freebsd-xfree86 To begin with, we the workers will be concentrating on replacing the stock x11/XFree86-4 port with a meta port of the component ports (x11*/XFree86-4-*), so please do not post mere questions here yet. Try ports@FreeBSD.org or questions@FreeBSD.org for that purpose. We will post a further announcement when we are ready to accept questions from ordinary users. (And we'll probably move to xfree86@FreeBSD.org then) Thanks, -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 7:41:16 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id D3F3737B405 for ; Tue, 11 Dec 2001 07:41:10 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id RAA59204; Tue, 11 Dec 2001 17:40:51 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h114.229.dialup.iptcom.net [212.9.229.114]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id RAA23283; Tue, 11 Dec 2001 17:40:48 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id fBBFdbF03294; Tue, 11 Dec 2001 17:39:37 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C162964.4BD36186@FreeBSD.org> Date: Tue, 11 Dec 2001 17:42:28 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Akinori MUSHA Cc: ports@FreeBSD.org Subject: Re: Announcing the FreeBSD-XFree86 workers list References: <86ofl5eps7.wl@archon.local.idaemons.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Akinori MUSHA wrote: > > Hi, > > Here I announce the launch of the FreeBSD-XFree86 list, which is > created for discussion on reorganizing, improving and maintaining the > XFree86 ports for FreeBSD. Top priority of the moment is to divide > the one big XFree86-4 port into a set of component ports and make the > build process better. > > Currently, the maintainers of the XFree86 4.x ports, Will as a > portmgr, and I as coordinator/administrator of the list are joining, > while we always welcome those who are interested in maintaining and > improving the XFree86 4.x ports. > > To join the list and/or browse the archive, use the following web > interface: > > http://lists.csociety.org/listinfo/freebsd-xfree86 > > To begin with, we the workers will be concentrating on replacing the > stock x11/XFree86-4 port with a meta port of the component ports > (x11*/XFree86-4-*), so please do not post mere questions here yet. > Try ports@FreeBSD.org or questions@FreeBSD.org for that purpose. We > will post a further announcement when we are ready to accept questions > from ordinary users. (And we'll probably move to xfree86@FreeBSD.org > then) Cool, hopefully this would move forward long overdue issue with breaking up XFree86 into individual components. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 8:10:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8ADFD37B417 for ; Tue, 11 Dec 2001 08:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBGA1T64589; Tue, 11 Dec 2001 08:10:01 -0800 (PST) (envelope-from gnats) Received: from emout1.wish.nl (emout1.wish.nl [212.123.129.74]) by hub.freebsd.org (Postfix) with ESMTP id D690237B416 for ; Tue, 11 Dec 2001 08:03:58 -0800 (PST) Received: from mail3.inside.servers (mail3.INSIDE.servers [10.1.0.7]) by emout1.wish.nl (Postfix) with SMTP id 18B5920B43 for ; Tue, 11 Dec 2001 17:29:08 +0100 (CET) Received: (qmail 83428 invoked from network); 11 Dec 2001 16:03:56 -0000 Received: from p13537.nl.wish.net (HELO ) ([212.123.190.225]) (envelope-sender ) by mail3.outside.servers (qmail-ldap-1.03) with SMTP for ; 11 Dec 2001 16:03:56 -0000 Received: (qmail 14505 invoked by uid 1000); 11 Dec 2001 16:03:47 -0000 Message-Id: <20011211160347.14504.qmail@mandark.attica.home> Date: 11 Dec 2001 16:03:47 -0000 From: "Andre Goeree" Reply-To: abgoeree@wish.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32696: Upgrade databases/adodb to v1.62 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32696 >Category: ports >Synopsis: Upgrade databases/adodb to v1.62 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 08:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: ago >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD mandark.attica.home 4.4-STABLE FreeBSD 4.4-STABLE #16: Mon Dec 10 18:19:52 CET 2001 toor@mandark.attica.home:/usr/obj/usr/src/sys/CUSTOM i386 >Description: Upgrade to latest version Modified files: Makefile distinfo pkg-plist >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ago/etc/cvsroot/ports/databases/adodb/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- Makefile 4 Dec 2001 13:35:28 -0000 1.21 +++ Makefile 11 Dec 2001 15:54:02 -0000 @@ -6,10 +6,10 @@ # PORTNAME= adodb -PORTVERSION= 1.54 +PORTVERSION= 1.62 CATEGORIES= databases www MASTER_SITES= http://phplens.com/lens/dl/ -DISTNAME= ${PORTNAME}154 +DISTNAME= ${PORTNAME}162 EXTRACT_SUFX= .tgz MAINTAINER= abgoeree@wish.net @@ -27,15 +27,16 @@ DOCS= readme.htm tute.htm readme.txt LIBS= adodb-access.inc.php adodb-ado.inc.php adodb-ado_access.inc.php \ - adodb-ado_mssql.inc.php adodb-csv.inc.php adodb-db2.inc.php \ - adodb-errorhandler.inc.php adodb-errorpear.inc.php \ - adodb-fbsql.inc.php adodb-ibase.inc.php adodb-mssql.inc.php \ - adodb-mysql.inc.php adodb-mysqlt.inc.php adodb-oci8.inc.php \ - adodb-odbc.inc.php adodb-odbc_mssql.inc.php adodb-odbc_oracle.inc.php \ + adodb-ado_mssql.inc.php adodb-csv.inc.php adodb-csvlib.inc.php \ + adodb-db2.inc.php adodb-errorhandler.inc.php adodb-errorpear.inc.php \ + adodb-fbsql.inc.php adodb-ibase.inc.php adodb-lib.inc.php \ + adodb-mssql.inc.php adodb-mysql.inc.php adodb-mysqlt.inc.php \ + adodb-oci8.inc.php adodb-oci8po.inc.php adodb-odbc.inc.php \ + adodb-odbc_mssql.inc.php adodb-odbc_oracle.inc.php \ adodb-oracle.inc.php adodb-pear.inc.php adodb-postgres.inc.php \ adodb-postgres7.inc.php adodb-proxy.inc.php adodb-sybase.inc.php \ adodb.inc.php adodb-vfp.inc.php crypt.inc.php tohtml.inc.php -PICS= adodb.gif adodb.png +PICS= adodb.gif adodb.png adodb2.gif adodb2.png SAMPLES=adodb-cryptsession.php adodb-session.php server.php TESTS= benchmark.php client.php test.php test2.php test3.php test4.php \ test5.php testcache.php testdatabases.inc.php testoci8.php \ Index: distinfo =================================================================== RCS file: /home/ago/etc/cvsroot/ports/databases/adodb/distinfo,v retrieving revision 1.7 diff -u -r1.7 distinfo --- distinfo 15 Nov 2001 16:57:09 -0000 1.7 +++ distinfo 11 Dec 2001 15:46:25 -0000 @@ -1 +1 @@ -MD5 (adodb154.tgz) = 9831fd2e4c7adb937fb96cfb18fb25de +MD5 (adodb162.tgz) = 53eb0d0b20363524a01b82d7fb56da3e Index: pkg-plist =================================================================== RCS file: /home/ago/etc/cvsroot/ports/databases/adodb/pkg-plist,v retrieving revision 1.11 diff -u -r1.11 pkg-plist --- pkg-plist 13 Nov 2001 23:34:15 -0000 1.11 +++ pkg-plist 11 Dec 2001 15:55:34 -0000 @@ -4,15 +4,18 @@ %%ADODB_DIR%%/adodb-ado_mssql.inc.php %%ADODB_DIR%%/adodb-cryptsession.php.sample %%ADODB_DIR%%/adodb-csv.inc.php +%%ADODB_DIR%%/adodb-csvlib.inc.php %%ADODB_DIR%%/adodb-db2.inc.php %%ADODB_DIR%%/adodb-errorhandler.inc.php %%ADODB_DIR%%/adodb-errorpear.inc.php %%ADODB_DIR%%/adodb-fbsql.inc.php %%ADODB_DIR%%/adodb-ibase.inc.php +%%ADODB_DIR%%/adodb-lib.inc.php %%ADODB_DIR%%/adodb-mssql.inc.php %%ADODB_DIR%%/adodb-mysql.inc.php %%ADODB_DIR%%/adodb-mysqlt.inc.php %%ADODB_DIR%%/adodb-oci8.inc.php +%%ADODB_DIR%%/adodb-oci8po.inc.php %%ADODB_DIR%%/adodb-odbc.inc.php %%ADODB_DIR%%/adodb-odbc_mssql.inc.php %%ADODB_DIR%%/adodb-odbc_oracle.inc.php @@ -27,6 +30,8 @@ %%ADODB_DIR%%/adodb.gif %%ADODB_DIR%%/adodb.inc.php %%ADODB_DIR%%/adodb.png +%%ADODB_DIR%%/adodb2.gif +%%ADODB_DIR%%/adodb2.png %%ADODB_DIR%%/crypt.inc.php %%ADODB_DIR%%/server.php.sample %%ADODB_DIR%%/tohtml.inc.php >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 8:11: 4 2001 Delivered-To: freebsd-ports@freebsd.org Received: from smtp012.mail.yahoo.com (smtp012.mail.yahoo.com [216.136.173.32]) by hub.freebsd.org (Postfix) with SMTP id 2DBBE37B416 for ; Tue, 11 Dec 2001 08:10:56 -0800 (PST) Received: from unknown (HELO somewhere.com) (193.232.251.78) by smtp.mail.vip.sc5.yahoo.com with SMTP; 11 Dec 2001 16:10:13 -0000 Date: 11 Dec 2001 17:53:08 Message-Id: From: dmitry_salnikov@yahoo.com (Dmitry Salnikov) Organization: +375-17-2075684; http://dmitry-salnikov.com/index.htm To: ports@FreeBSD.org (ports@FreeBSD.org) Subject: Perl source for e-gold payment verification. Content-Type: multipart/mixed; boundary="FNYAVXBI" Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org MIME. --FNYAVXBI Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8bit Dear Sirs! I have written Perl script which is useful for both computer and business people and I would like to submit it to FreeBSD ports collection or some other place there where you will decide it to be appropriate. But I have no experience in creating ports packages, and my hardware does not permit me to install modern FreeBSD system now in order to do it properly. I am using FreeBSD 2.2.7 uncomplete on old unreliable machine which works when it wants. Could you please process my contribution yourself? Summary is below while full Perl source with documentation and sample data files is in attached GOLDPASS.ZIP file. I have posted this script to e-gold mailing list yesterday, and I have got very positive response from list moderator. Respectfully yours, Dmitry Salnikov, http://dmitry-salnikov.com/index.htm FreeBSD, Linux, C/C++, Perl, ... Web software development services, English / Russian translations. o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o Perl source for automated access control using e-gold shopping cart interface. 0. Introduction. e-Gold electronic currency is completely backed by physical gold and is the World's largest really secure online payment system. A quantity of metal which is stored in the account constitutes title to precise fine weight of physical gold bullion bars held in allocated storage by third party custodians. The wealth which is stored in the account may be withdrawn as physical metal or converted to major national currencies. Account may be used from various Internet connected devices including computers and cellular telephones. Creating an account is free of charge for everyone. Here is Perl source which performs payment verification and also provides basic functionality for selling digital goods like files or subscriptions. You can use this script as automated clearing house providing payment verification services for your friends who are hosting their sites on those servers which do not allow CGI scripts. I am placing this script under BSD style copyright, which means that you may do anything you please with it but you should retain my copyright notice. This script was tested on FreeBSD 4.4 STABLE with Apache Web server in shared hosting environment. --FNYAVXBI Content-Type: application/octet-stream; name="GOLDPASS.ZIP" Content-Disposition: attachment; filename="GOLDPASS.ZIP" Content-Transfer-Encoding: base64 UEsDBBQAAAAAAFQ3iysAAAAAAAAAAAAAAAAFAAAAQUNLUy9QSwMEFAAAAAAAVDeLKwAAAAAA AAAAAAAAAAUAAABIVE1ML1BLAwQUAAAAAABUN4srAAAAAAAAAAAAAAAABQAAAFBBU1MvUEsD BBQAAgAIAAJxiyvaanppwAsAAF0rAAAIAAAAQ0hFQ0suUEztGmtX20b2e8/Jf7hLWWxvhAW0 2Z5i4FTYA9ZBtrx68NiEUsUeYi225EgylLbpb9+5o9dIlmzSbfppSQvy3Mfc95258td/k5dh IL93PXlBg9mrr/Df17Bb+cMg8X/Q1Uc3hnret6DZbcHB3t4+9AaqZdyAqWhD9UK/lGCgDs0L CU6Jphi2KSHZNIoWh7I8mbtR8LwbOjPPffAf22N/LrvehP7cnkZzxFNmMwjcD9MohICGNHik k3ays0EnbhgF7vtl5PoeON4EliEF14PQXwZjyleYOk7wDPd+MA8leHKjKfgB/+svI+Qy9yfu vTt2kIcETkCBac+kiugEFoH/6E7YQzR1IvaLMj6zmf/keh9g7HsTF4lC5IJ0cxod4vN+uyRa CP59KtPYnzDMZRgxdSKHyYpcnff+I4IWz1xVZMJ+PD9yx1RiGG4IM8YP2eTbcvWKMrFNxzPH ndMAnDDhwjHcgFHPXI9yUTjDe3dGYenF6sdGhYNVyZmEgglTyReBP1kybb6Q8LFZEk4Tf7yc Uy9yUi/LfgA+gwcwdyIauM4szD3FPYyMRTXSiLH6qgmmfmZdKQYB9jwy9Eu1R3pwelOOWvjp J8VkOI0GKMMe+/8GyPXIIKYJuoHM1MFIUxkp42UoQ0slpgTqsKvZPXV4LsGpbcFQt0BTGV+G ZukS259UkCEz/QwGxOj22YpyqmqqdcN3PVOtIe54phugwEgxLLVra4oBI9sY6SYB1KOnml1N UQekx52oDtm+QC7J0AKzr2jaimanhEmlnGok5ss066kG6Voof/IUM+qqPcZF0SQwR6Sr4gO5 JkwBxbiRgNF29aFJ/mUzJAaEnjJQzokJzaIZkFfZEiND79oGGaCQTHfTPjUt1bItAue63kMT g0mMS7VLzA5oOhr9DGyTcMF6iqXw7RmXM9ViGOz51DZVbit1aBHDsEeWqg9b0NevyCVhkiqM useNqg9R5zgeiG7cIGu0Bze7BFd9wtYNtCNTzzIUNIxpGWrXEtHYlpZucOVyfWFIzjX1nAy7 BBF0ZHSlmqQFiqGaiKDyzeFKYdvaXHcMCiYbe1wJUYm7EdQzUHqXKsqf4I9001STOOHm6/YT 67fzylxXufHf9nzyxnPmFI6hIYdY89lCo4MAx51lEGwIHBpSb4IQ2LVhN+KImOH3zylqXMjv 0kL+w7Mz9X0s5xz3PvDnCaZA1+GSLJxoWthw6s+pnDKSGzHWnM79lENG0YZGRMNIdsYPoYwY fDNnPKZhuB45xuHo4ykdP6zH5igceeZvwkWMRGZ8jLCghZXoCyfM0ben7oRuQm5PI/z7NOEU 4dR/qqZYLN/P3PHdNJrP5AJ1rjaj7ytm/1LRbGL+2vie/zQ+oRNMgql5jeBr/eyafdSHveuR YpqjvqGYhG8uEn/Hf2LiQe9NRqloFjGGikVKxK+++uHJDybjqcNFb+61299LoLTb/5bAabd/ aeEGiBG6v6Cl9+E1bH+dkXQ2HU24duT8UjGYcJcHdyhPLF2ieQobKTdYge7UXg4WgYTcKd2u bg+tajgnVgYbEOyhaplr4ANiKVqtDBzlVLG6/buhPaiR01gjp9K1bMY/ZcWwuqRKHNvs3Y0Y J45QAT8j5IrgQa8CZqkDYlrKYHQ+sCotPVBUTQRscl+4fI9N4W7Qe3NnOQ/01VcAv+Iv9x6a /oJ6TQaxlAsiwVZWy/JU/m2r1ULshAjgaYrHneZRQnWSQDM4wLaD5yPMpLtOee13COV3nix/ qIYEtZCwCEniOeAn3GaMKUHjuNHKkFC/BPEE9jIxBUEZowf6HGcyYxYu34dRkDHjucLpc55F it8hCuS3zu79rfxW2T27lQW8T9lz+jSe+SFNjZ2yjIGfOqu+Mp3Hal+ZyiX66iT3UdlF91gK c1RN717cket0y5BSAbgngUnIxZ1JrBRhEbheBAkGlsNE4U49d3vYKmuJ0HRxRwzAjZoP6Nyv 1HxABjpqfpL1sFrNY9QazWNgqjkZ9lY0RwxBcykGbx1uSbBaDqUSIM5QtvrO2+rUy1VhM4Su 2AwDYaPNNNfLoyUXHI7558oq3YbGYQPaZYRCpa7BKVbrdUhpxV6HI1TtdWhi5a6T3aiRXeix dbpWM60r+VW45bJfhSOW/ip4sfzXutuiYZS5e0cMgk45aTDWJMiOW3UJE6OVEmZHTMlOPUVF KON6dZHb7luDu4EfUAzOrSP2STs56hOld3JkqZZGTvSHIzl+eudtoX22juQYfqr3buD0vKtr unF81VctAha5to5PNaV7AZo6vGCPNoFL/og3O42Awj8YpHcS52Mmg5YkCGOPjE/YLihLjpVa PBU4s3hcJ7a6vhdRL9qNnhf0ECL6cyTjQfGdlyZ+jJcpXOnOVJIS80zCSqIeHeclMu+TUSC/ liFuQ2L3/Huz3W7JC2f80Nwab0kwxZ6532rJH6plGjlBLs8PC8flp8twMXOjprwjS4x5REM/ 9u8908wZT2Hbjei8GWMXg6yJTVNKJGrlnI6RE1JJcFAIOVQv+ZxmBrLAU0/MZG097DvBIw0j GuQqPDqzJRV0ePejnMkTW4uxH+Po6RjewGtcmVHvQzRtbsekb/duW5Xr+zXrBzXr39Ssf3vb ylK3ul7TjyAIUzBwmahQwwW6/dvV01rlhmnZFmgPbquPUJX0WW8QGHwjMiiwKJ3DGj83OiKQ 75CZCTwKjb1GgVeJW5lfkV2NyEIXEoT+9ra00cpWG4QvngWrPn9ae2qsDvFLGmSj1tWjktLt EtNMzvRHwi2++rgkoledmER4xXExvRDkaF/wTsBdl9ubfoRGozoudwqloFMK2JwFhlPjhZFZ uiGkRaP1Qn+uNXq5h+YI6+8KIxxj+MEkbwf4CccUaO3sqv/W9aJm4HiTZjYPaLVuO0WC9v8p /mQKThM6s+izHJIRfMYmGFXJJuPgeRE1M1GlnGGrumG6E3o38B+p0PWzrLbFjE5SYzWb63K5 LpMxCUt398NGq3BRz9JwpXsflpp3uUns3TJG2w5O9KprQ3zEUuz4gpsIIFzXqhgyZf1kBrmm WvjCmDInfg37/3PJ507C+7PgpG0aBD42HfzbKB79Y8fxBpAPRMsNIGPQKJzuU9rKbmDXdoKd UjDV81wpdvbmQscZ42V4vQG4th594i4QRsFtaLRxecVM2TwlJXyxkerHKylsrZFiZ4rLaS0v jCPSME1DKx03pAlfMWgoiLZqa3E0w8OcK1jspYXzYUDx9NDMLCSJlm3BEezXjNdW3fN5QW9O /adyZdoOeQzkDvmCpUqwUbIrWqlVYabNJeVTLb9mjdlLBfJI5u/9sEwe1w40c+O0RIMXxNsK 6MelG1B8yR8AxpIQW8Uq+JJKmStWKXa8S6m4F4RevZ6FFRW+WJIPKmt8qRy/RPrNB7ayu/6Q 96v8+VnubDY2iLkmg/5Y28jfiv0FbUPI9D+3bXDGL2gbqG3aNoT3gZvbRkr4F7QNwZl/Sb1P VZNEk3zJeq8so6kfuL/UXWxtYZqZSPNCo9fPN4VzxUtttFMKrPpbnr1mShoD10evxZXMA1c4 X/5zD/4R/zr4lv36Zn/D/AgvugN9aPUbJZPV8/yuUz1fKjK9IuSiwkgi371K/6+pRTlx3jVW 5H19nHQA0Z2FEFofbPxaXxyjx/YuDdEVVUuy/bfsSx3lbE9eHSWosHUW+PNDyL6ukbeCMmJ3 fCh+k6Me0fIPYcNrpjKJuXz/HzqODiFWNR9Mr6Lmc44cZ2MelJisHFHzG+jKSShPg5S85m0B dzAcQ+LnML4Ax6s/Mvm24TX/fXQE+29aLeSynDvhQ3OvlbFI3hZvk+Hlrw38KhLGr0aG51af v2TZdj4uaZBhGPhFLJOPBPt6j2PEL5M5FtpipJtWbA9ui4A6k6Zp9dRhOhqXCq+Od9KhelG1 lSFlIc/yr1vkI6ri+x58C7Sa9DkdzjGzPUpJVDkg3SnPFsVAqBuZFauiIr4qriv3O+JblY7w OXnhEX+rgXqT/Oue7Xj11Vf/BVBLAwQUAAIACACZfosr9w4LrKoLAADcHgAACAAAAERPQ1Mu VFhU7Tldc9s2tu+a0X/AOJnrl1iyG8dJ1Fh3aYmW1Uiyx6LapNOxByKPRNQgwAKgVXVn//vi ACQlx5bTdHdnX9aZJBZwvs8njq5AcaJloWIgC6kILYzMqIGE0DgGrUkshVGSNxuFZmJJ4GAp eUJ0KvMcP8dUGcKEAbWgMbSajWbjsEWGiJMUsWFSuDM4GCAacIjtjWAxiQulQMRrwpBHlnMw wNdkTuM7y3y+Jnm61iymlrPjSEWCoCYF8pNUPNnXhFO1BG2IAsotqgZLE4gUnAkgOV1nIAzR a20gs0IE5LeCCsPMmsgFycBQTlYpi1Mkq41Uli0TjoFVXRYW1+quLUJhwDJmhkOzYSTJFcRM A1kgmxWwZWqQYiUvceLOC86t8lYfpUkK3NG2YsoYjdtsIEO6BFTUpEwlVl5lJYsLe5EwKnSL RCmSp9ykO+RsNipBM7omcwvNTJoourKc9EYer6pUqM49KPSt1SKjv0rVbAiKPrL3pT8YWM7B Q7KFtigLJTNyTxWThUb/ghJgmg1LU0CMNBO4ZzFoK1vMi8TFhszywgJq57wYOC84VcQAhzyV wnJqNnoKrAQWmIra7FbPhQJAo8Yp+thFJljZ1xbLxdNwQdayICtqwa0yushzqQyaUhMtF2ZF FaCJRLOBcPhpBdwKBAgeI1NACqpm6sM7WxMFC1CKcsKZuHuFGso7ZvXSqSzQsUBA0Dn3XnAk 5kquNChycICipcbknXZ7tVq1fLK0LNt2+SvV+f/HLDk9end0cnyM4J+teLFV3oqUEDqXhaly rBYkV3KpaEZSsGo8x6QQPgfaTMQgDLuHVmoyhL9AVKbJdrr7oMpBLaTKdJ0w96DYgsUuLpoN 9BzlGqNe3rMENJlTzWKyKETsIwcTCv2jgXM0YcKWzPi0lYkmnN1hqnCLiUDFXMeK5YiqW9v6 FxpK97l7jOBNLYo5UIXEU2nhmg0vDB48JbUVRflYRLmcixaKgUh0s7FKpYuGVGoXdiYFZsVi mOISs0paORAfw9ZZqNlIJBHSuOxdkd5gWIro5R8SmpGc09hT2yhQiAQUOZv2iTZrDiSW+Vph sXiFUqDpM6ACKxo1Lpgx2ywrKtaWjCWGZ7lVXPvEJsw0G/PCw5bBqMBQJjBqa+ooKisrcbQl zopaVqBd8bGKnisAlO24dUymUXA2Cj2TIKcxlliYl1ZoNiwDnVIsO5XRQNwzJQUa3vEJBCYm QdtiRmri08zKxqXaNkqzUXtEACQuJCxgAvfAZU405qc0Kag6iS17/SB1pTA0NpaD43zUIj0p FmxZKFo3m5dZ8kZQC39K9tt6zkTbHux/32y8cNXd1WAME2wDyRti9Y3vUK2K5yuEZBsbyRyU L1J1M0EmVruaS6GV56RBJHhDDmbkwHimNUNMJuljv0yZEvjbOKOHF+uKd5Ixo9a3mnLB7uT9 39Y0lRLLgWe+1XIdK5okCvu6Vb7KNEtBMG0sJ6k8Byz2Jf0tbs/Sc/3Bx3VVmRE8s3d0if1T knmxds0gz4E6v0vFlkxQ4335MqcmfWDRVGbQrhRre33mmA8IuUnuKizLUu6MuJUkKb0H39bn zFUryxmrjc5pDAgrC6NZ4voNxr2S0tQ+c5K9cJnTpvGdJglTEBup1ni8zYEzC4JVvL1SzAAW 1oxpXRe6lxlksjJqrWqL7Ne02wixiVMsmmTlij7lnFBjIMtNZUmXLL5QYD3jcrmExKm+U4YX eBt0zjq9Tr8Tds47g85FZ9j5ofOxM+qMO5MPAlY4O3UrUCvpVfB5HE6i22EfT878SRjeBr3e 5WwS4WFvCywYV6f9rdPZZBhN8TDcOhyHUTAq6Z5vnZ8FUe/idjIb48WgZHi9zfDCHmLiplSn 6DTKcRrBjp5TrfNUUY0R9YIMLWDQi2aWT0Xd0uiFTpYf7OVs2r+9ssTdKR5+tIfnYfhTOBxc OF4jexANx+E0CsZXg7E7G9uzH7+7vQimF/hxYj+Og+HIOdlPzc+72cOUtYFpPz36eVkTlmDn dq1MYgtiJvV5pOIUp51qXhFFNq9GK18yE2wGXNcx8KT3b85uejf9m/Dm/N/g7dqv/SdD4Clv v6qGykPCFqTsrDFV3mEYBwk11FdHymEzPpDZ9aguNmDiSqMfjw4PD2/8PHVzdHPUOrw5vCnH I18aD6oK4makP0DJ1h8sr3CPvgEXp88SdXw5iS42qN99DTWTwqQV8k9h+PEb2K4A7jxqs/HS davn48uBlHUEslwqqtbehm6Spzij54VxRt7dAP9SGflf5XimcjQbL7n8mvMQoh4b7rzbvnTU rhSvOxVq8y90KuRsWIbl5Sk5kfpOOfFyJVW9PyjyhFqs3SK/TFkCX+PWSo0jnHiW5ZTqOySO rYUG1XFezSlTnhueESSlXYecCfZ7OYonELOMctwYSPcqeOFEx6aLgmDTFQ+eKgR+z5na0mJ3 YhwdHr47OXz79vXbzjKftN9kq4v3vV8Xn/3d0eHJu+OT45POr/3Vx7dydih+ng1OvOfyYs5Z fJuajLc3XsyVNOUD+y/70wKvnrbwkzzR2ts96pG1q6aFFnbWw8nfiVI63W1JHsn9X/RKUJh0 Zjmfow5PzJZPRFqFNlCyyD1eAvdtUXBeXU3QihOZMUGro2idAznDJ3LJ+cNoOB5GZBBG5Opy GpGLMOh3vcC/FVZ6b5BN1DxxVQWNI9d29LrOrziB/BiMZuH07/vv3c/+P3B4noa92XX4Ca8/ XZ5/sh8vJ/1PV8F0enVxHUxDdOsDZN+LPPK4/6bGDEZReD0JovAL5GfmERcgVY0FvavKeqeZ FPDpqhToXAq3l/qSHhNkvwxGF4Euor9z2zEcjO1f14rdHIR91a3nyichJA/jpXx7WdaOMSJv utT+Y16OqNsWUJVYORPfPRecLrVbBS5B4AMNHkQ17rpqlfyOwpdEXe0XvUROk9ctMpJLe+4y EnGV/UdmNemkRm82UBQNfuXlOOLeizNIdr3KXvn1F45c1arM3tRjlOsn2u2VnDDHLRK6lHpo N5+pCeCKNvFpKGDVbDyGyQuMChwyTFponPCQvasMWnK3eYCHLsEdnd8QpDTP116tFePcYbkN Z1lQ3FPviaqCRQJ3g06DNy3yefPyw1feI445KCYTXBNjQXKj8wrXubHknGHRqMyyqvZ9mWXg d9TMbW8dp5MWmVJcW5cDq9twORv4RZlbD75rvUbHutnKUs3AbVOkws2QVWlBY3yRugASOfVD mAWo1qxfPv/ryHUW/UX94ha9bt2dAGcZ88tWrqUT8W0tYrUlw00frgHnwOWqDI7SVrjC+mIl 6lPw8QsDnVZGTLPx4fzyekzGYXRx2T/FCtdsBL1oeDk53cORVj/eUuqY3VKdt0uhNC5F95qN KLgehNHp3q2R+V63Wg06TbEzJH5tbZE+nF276w/DydUsItHnq/A0Cj9FZBKMw9O9hwPlHnE1 7nTvqHW4R6bDn8PT9x57Go7C3pdIbt5E7h8ur1CJEvud/eniDlZ/aPuLRyBYfbuyEDHshjki nmnY786m/Z1g33V7we7bk6NuMNt9/fp19/z6fOf18VF3en69+/q4Ozi72n39vtsPxzuv3x11 f7j6vH3d9go7i/+fmOv8e7nw/+/2QTXe7z1nP4ymZwyoGb8HtdtI3ZxjYhXZblW7OeWcJuwh zGOFcEZx20+AuweVpvVUoF4M+/1wstF48yDaRKprxk775xHx9xprXDbkvedZTqMgmk1vZ9ej vWajRH3m6Rkv2QGuNV1JbOX8a1KVvbSWCjvy3leN4FPvT4rERAK/4/caf0oWS/XWF6dKptFw 8vF5iSaX/xmZHtD9Zqmms8EgnEZh32KOL2sLT7ci7lnuZ8FgEAzC2/NhOOpPN3ETDEd7z9RT vPd18+SwwsEm/TecM1D5va6Pc8DvBH0D2bUjpnN5D+V3Gk9mx3R2hsNyyYYQ0uMsvvPzwbww Btu3x7Z3FWPMSmxCXd+QNn/+CVBLAwQUAAIACACJbosrrvNqN3kAAABdAQAACwAAAEFDS1Mv QUNDRVNTlc3BCsIwDADQ+2CfYpvMIeJ9IAz1InoLiAZaZptRg8N9vciEeZN+wOOdEAAI17iq a0JCAwTkVPuNtbfgNb0Wj8s9+k6e5irBjpzEjL4vi4/EDCmRZ1hlQB1+xmUOdIm/5+6wP25n Wv2jQaK6iZ6bps1IB+ZugmXxBlBLAwQUAAIACACwbosrbF1GQ0EAAABjAAAACgAAAEFDS1Mv Q0hFQ0sLMzQwMLAytDA0MzGxMjLQA7KB0MLczNTE2MjK0MjYxNTMypwAsDLQM7QyMjcG6gaa YAA0wcDQ3MwIaKi5IS8XAFBLAwQKAAAAAACubosrYWX87QYAAAAGAAAACQAAAEFDS1MvTE9D S2xvY2sNClBLAwQUAAIACAChbosrrPgtnW8AAABsAwAACQAAAEFDS1MvTUVNT+2OPQpCQQyE e8GrLPnbJC+V6NscwV7EQvAhKJ4fcwN72Zlmmvn4zggAgY4qEgStdtVNuzAFEkvXsB8JaBhk XO8iQBEATamghmGrSaZrHyNXx5PC0RYXzyTnzkt83rfXYbvcH+363Pa7aTSN/tPoC1BLAwQU AAIACABVbosrGRAUGKQAAADIAAAADQAAAEhUTUwvSFRBQ0NFU1NzLC3JCC1OLXLLzElV0C8t LtLPyM9N1S9OzMnLzM4v0y9JLS7RL0gsLtbXyygB0eUpvFwgTe5F+aUFEF0pqWX6eaU5ORAJ v8TcVAW//NzMvESIQEhlQaqCU2JxZjIvFy+XjY+nr2eIgrtriEKAf3CIgoero4sdL1dRamFp ZlGqQinQLQqGBgYWZgbm5sbmGBKGBmYWJmYmZkCD9MEm2YEM5eUCAFBLAwQKAAAAAABhbosr 8QVftzQAAAA0AAAADQAAAFBBU1MvSFRQQVNTV0QxMDA4NjA3NzM3OmdwTi81bXdIOUNqZlkN CjEwMTA2ODQ2NDY6akR3SzdvVTBuWlVHNg0KUEsDBAoAAAAAAGRuiythZfztBgAAAAYAAAAJ AAAAUEFTUy9MT0NLbG9jaw0KUEsBAhQAFAAAAAAAVDeLKwAAAAAAAAAAAAAAAAUAAAAAAAAA AQAwAAAAAAAAAEFDS1MvUEsBAhQAFAAAAAAAVDeLKwAAAAAAAAAAAAAAAAUAAAAAAAAAAQAw AAAAIwAAAEhUTUwvUEsBAhQAFAAAAAAAVDeLKwAAAAAAAAAAAAAAAAUAAAAAAAAAAQAwAAAA RgAAAFBBU1MvUEsBAhQAFAACAAgAAnGLK9pqemnACwAAXSsAAAgAAAAAAAAAAQAgAAAAaQAA AENIRUNLLlBMUEsBAhQAFAACAAgAmX6LK/cOC6yqCwAA3B4AAAgAAAAAAAAAAQAgAAAATwwA AERPQ1MuVFhUUEsBAhQAFAACAAgAiW6LK67zajd5AAAAXQEAAAsAAAAAAAAAAQAgAAAAHxgA AEFDS1MvQUNDRVNTUEsBAhQAFAACAAgAsG6LK2xdRkNBAAAAYwAAAAoAAAAAAAAAAQAgAAAA wRgAAEFDS1MvQ0hFQ0tQSwECFAAKAAAAAACubosrYWX87QYAAAAGAAAACQAAAAAAAAABACAA AAAqGQAAQUNLUy9MT0NLUEsBAhQAFAACAAgAoW6LK6z4LZ1vAAAAbAMAAAkAAAAAAAAAAQAg AAAAVxkAAEFDS1MvTUVNT1BLAQIUABQAAgAIAFVuiysZEBQYpAAAAMgAAAANAAAAAAAAAAEA IAAAAO0ZAABIVE1ML0hUQUNDRVNTUEsBAhQACgAAAAAAYW6LK/EFX7c0AAAANAAAAA0AAAAA AAAAAQAgAAAAvBoAAFBBU1MvSFRQQVNTV0RQSwECFAAKAAAAAABkbosrYWX87QYAAAAGAAAA CQAAAAAAAAABACAAAAAbGwAAUEFTUy9MT0NLUEsFBgAAAAAMAAwAkQIAAEgbAAAAAA== --FNYAVXBI-- _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 8:28: 1 2001 Delivered-To: freebsd-ports@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id E31DF37B405 for ; Tue, 11 Dec 2001 08:27:53 -0800 (PST) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.11.6/8.11.4) id fBBGQK202897; Tue, 11 Dec 2001 17:26:20 +0100 (CET) (envelope-from stijn) Date: Tue, 11 Dec 2001 17:26:20 +0100 From: Stijn Hoop To: Marc Liberatore Cc: ports@freebsd.org Subject: Re: Port update submission/question Message-ID: <20011211172620.A99870@pcwin002.win.tue.nl> References: <20011211100430.A28496@wilde.oit.umass.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011211100430.A28496@wilde.oit.umass.edu>; from wingus@student.umass.edu on Tue, Dec 11, 2001 at 10:04:30AM -0500 X-Bright-Idea: Let's abolish HTML mail! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, On Tue, Dec 11, 2001 at 10:04:30AM -0500, Marc Liberatore wrote: > As I am a believer in the BlackBox window manager, I was saddened to > discover that bbkeys, a useful utility for it, was not at the latest > version in the tree. I attempted to send mail to the maintainer, but > several hours later got back the dreaded "message undeliverable." > > So, I sat down, took a few hours, and took a crack at the port > system. Attached is the diff I came up with. Files/directories > removed include: > > files > files/patch-aa > > Unfortunately, a few problems remain that I don't see a quick solution > to: > > 1. The manpages that are configured via autoconf (in {WRKDIR}/doc) have > somewhat mangled paths in their contents. I looked over some other > ports, but didn't see how this was handled. > > 2. The "extra documentation" is installed as part of the port, and > doesn't respect NOPORTSDOC. This is not new behavior, but I'd like to > fix it anyway. I'm not sure whether to somehow modify the configure > scripts, or modify the Makefile(s) (via a port patch). > > If you have the time, feel free to make the fixes. If not, (or even > if so) I would greatly appreciate pointers to some sort of > documentation to clean up these little buglets, and would be glad to > squash them. I have to make an apology here: I was offered by the current MAINTAINER to take over maintainership of various blackbox ports (including bbkeys & bbpager), but I then failed to act on it. I do intend to, but due to workload increasing didn't get around to it. I do have some more spare time now however, so I'll take a look tomorrow. As for bbkeys, a patch is already attached at http://www.freebsd.org/cgi/query-pr.cgi?pr=31509 I'll take a look at your patch and merge the differences if any, as well as look at the above issues. I'll submit a PR soon. Thanks, --Stijn -- In the force if Yoda's so strong, construct a sentence with words in the proper order then why can't he? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 8:30:50 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE28B37B419 for ; Tue, 11 Dec 2001 08:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBGU1G67661; Tue, 11 Dec 2001 08:30:01 -0800 (PST) (envelope-from gnats) Received: from www.collegetowns.com (www.collegetowns.com [216.116.135.22]) by hub.freebsd.org (Postfix) with ESMTP id 93C9C37B416 for ; Tue, 11 Dec 2001 08:29:48 -0800 (PST) Received: (from jooji@localhost) by www.collegetowns.com (8.11.5/8.11.3) id fBBGTlS05984; Tue, 11 Dec 2001 11:29:47 -0500 (EST) (envelope-from jooji) Message-Id: <200112111629.fBBGTlS05984@www.collegetowns.com> Date: Tue, 11 Dec 2001 11:29:47 -0500 (EST) From: "Jasper O'Malley" Reply-To: "Jasper O'Malley" To: FreeBSD-gnats-submit@freebsd.org Cc: Sean Farley X-Send-Pr-Version: 3.113 Subject: ports/32698: update nn port from 6.5.6 to 6.6.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32698 >Category: ports >Synopsis: update nn port from 6.5.6 to 6.6.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 08:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jasper O'Malley >Release: FreeBSD 4.4-PRERELEASE i386 >Organization: >Environment: >Description: Update of nn newsreader port from version 6.5.6 to version 6.6.2 Thanks to Sean Farley who actually put together this updated port. >How-To-Repeat: >Fix: diff -urN /usr/ports/news/nn/Makefile nn/Makefile --- /usr/ports/news/nn/Makefile Sun Oct 8 06:22:39 2000 +++ nn/Makefile Thu Dec 6 20:40:07 2001 @@ -6,9 +6,9 @@ # PORTNAME= nn -PORTVERSION= 6.5.6 +PORTVERSION= 6.6.2 CATEGORIES= news -MASTER_SITES= ftp://ftp.visi.com/users/mtpins/nn/ +MASTER_SITES= ftp://ftp.nndev.org/pub/nn-6.6/ EXTRACT_SUFX= .tar.Z MAINTAINER= jooji@nickelkid.com diff -urN /usr/ports/news/nn/distinfo nn/distinfo --- /usr/ports/news/nn/distinfo Sat Mar 4 08:46:44 2000 +++ nn/distinfo Thu Dec 6 20:38:44 2001 @@ -1 +1 @@ -MD5 (nn-6.5.6.tar.Z) = bddfb9b412edee10853b9d855c56d2b1 +MD5 (nn-6.6.2.tar.Z) = 527cb8fb6410170bd53d09c2767329ac diff -urN /usr/ports/news/nn/files/patch-ac nn/files/patch-ac --- /usr/ports/news/nn/files/patch-ac Sat Jan 29 16:57:09 2000 +++ nn/files/patch-ac Thu Dec 6 20:53:44 2001 @@ -1,5 +1,5 @@ ---- inst.sh.orig Thu Jan 27 02:36:07 2000 -+++ inst.sh Thu Jan 27 02:29:51 2000 +--- inst.sh.orig Thu Dec 6 19:52:24 2001 ++++ inst.sh Thu Dec 6 19:53:23 2001 @@ -1,8 +1,8 @@ # (Large) prefix inserted above by Make @@ -11,16 +11,7 @@ case "$1" in mkdir) -@@ -55,7 +55,7 @@ - ;; - esac - --set -u -+#set -u - - ( - if $NNTP -@@ -89,8 +89,8 @@ +@@ -83,8 +83,8 @@ if [ -s ErrorCheck ] then cat ErrorCheck @@ -31,24 +22,3 @@ fi rm -f ErrorCheck -@@ -188,7 +188,7 @@ - OPT=master - ;; - n) -- OPT="bin aux help online man" -+ OPT="bin aux help online man inews" - ;; - 2|c) - OPT=bin -@@ -357,6 +357,11 @@ - fi - done - ;; -+ -+inews) -+ cd inews/ && make install || exit 1 -+ ;; -+ - - online) - ./inst mkdir $HELP 755 || exit 1 diff -urN /usr/ports/news/nn/files/patch-ae nn/files/patch-ae --- /usr/ports/news/nn/files/patch-ae Sat Jan 29 16:57:09 2000 +++ nn/files/patch-ae Fri Dec 7 08:03:25 2001 @@ -1,6 +1,6 @@ ---- config.h.unparsed.orig Wed Jan 26 23:16:25 2000 -+++ config.h.unparsed Thu Jan 27 01:23:30 2000 -@@ -51,10 +51,10 @@ +--- config.h.unparsed.orig Fri Dec 7 06:33:23 2001 ++++ config.h.unparsed Fri Dec 7 06:37:30 2001 +@@ -46,10 +46,10 @@ #define DO_NOV_DIGEST /* Optional */ @@ -13,35 +13,45 @@ /*********************** NETWORK DEPENDENT DEFINITIONS ********************** -@@ -107,7 +107,8 @@ - * NOTE: If you plan to use the included inews, it MUST be a full pathname +@@ -100,7 +100,9 @@ + * LIB_DIRECTORY defined below. */ -#define NNTP_SERVER "/usr/local/lib/nntp_server" +#define NNTP_SERVER "SUB_PREFIX/etc/nntp_server" +#define NNTP_DOMAIN "SUB_PREFIX/etc/nntp_domain" ++#define DOMAIN_FILE NNTP_DOMAIN /* - * Define NNTP_POST if you want nn to reject attempts to post via -@@ -149,7 +150,7 @@ + * Define NNTP_PATH_HOSTNAME to force a specific hostname into the +@@ -126,7 +128,7 @@ + * DOMAIN as defined above). If you don't want this, comment it out. + */ + +-#define HIDDENNET ++/* #define HIDDENNET */ + + + /***************** OPERATING SYSTEM DEPENDENT DEFINITIONS ******************* +@@ -137,7 +139,7 @@ * conf/s-template.h as a starting point for writing you own. */ --#include "s-hpux9-0.h" +-#include "s-sunos5.h" +#include "s-freebsd.h" - /* - * Define DEFAULT_PAGER as the initial value of the 'pager' variable. -@@ -210,7 +211,7 @@ + + /********************** MACHINE DEPENDENT DEFINITIONS ********************** +@@ -148,7 +150,7 @@ * conf/m-template.h as a starting point for writing you own. */ --#include "m-hp9000.h" +-#include "m-sparc.h" +#include "m-i80386.h" - /***************************** OWNERSHIP *************************** -@@ -261,9 +262,9 @@ + /**************************** LOCALIZATION **************************** +@@ -181,9 +183,9 @@ * (= LIB_DIRECTORY/Log if undefined). */ @@ -52,31 +62,20 @@ +#define LIB_DIRECTORY "SUB_PREFIX/lib/nn" +#define TMP_DIRECTORY "/var/tmp" - /**************************** DATABASE LOCATION ************************** - * -@@ -294,7 +295,7 @@ - * (The file system must support long file names!!) - */ - --/* #define DB_DIRECTORY "/usr/spool/nn" */ -+#define DB_DIRECTORY "/var/spool/nn" - - /*************************** NEWS TRANSPORT ************************** -@@ -316,9 +317,9 @@ + * +@@ -201,8 +203,8 @@ * Default: NEWS_LIB_DIR/{rm,del}group */ -/* #define NEWS_DIRECTORY "/usr/spool/news" */ -/* #define NEWS_LIB_DIRECTORY "/usr/lib/news" */ --/* #define INEWS_PATH "/usr/lib/news/inews" */ -+#define NEWS_DIRECTORY "/var/news" ++#define NEWS_DIRECTORY "/var/news" +#define NEWS_LIB_DIRECTORY "SUB_PREFIX/news/lib" -+#define INEWS_PATH "SUB_PREFIX/bin/nn-inews" - /* -@@ -341,7 +342,7 @@ + /**************************** DATABASE LOCATION ************************** +@@ -257,7 +259,7 @@ */ /* #define REC_MAIL "/usr/lib/news/recmail" */ /* non-sendmail */ @@ -85,7 +84,7 @@ /* -@@ -403,13 +404,13 @@ +@@ -317,13 +319,13 @@ * DAEMON_MAN - nnmaster */ @@ -102,21 +101,3 @@ #define DAEMON_MAN_SECTION "8" -@@ -469,7 +470,7 @@ - * was accepted, whereas with INN, it only takes seconds. - */ - --#define INEWS_IS_FAST /* comment out for C-News */ -+/* #define INEWS_IS_FAST /* comment out for C-News */ - - /* - * Synchronous posting: If set this will cause NN to wait until a -@@ -481,7 +482,7 @@ - * via some sort of NNTP. - */ - --#define SYNCHRONOUS_POSTING /* comment out for C-News */ -+/* #define SYNCHRONOUS_POSTING /* comment out for C-News */ - - /* - * PUT_TIMESTAMP_IN_SCRIPTS diff -urN /usr/ports/news/nn/files/patch-ag nn/files/patch-ag --- /usr/ports/news/nn/files/patch-ag Sat Mar 4 08:46:45 2000 +++ nn/files/patch-ag Thu Dec 6 20:58:23 2001 @@ -1,11 +1,11 @@ ---- Makefile.orig Sat Jun 5 00:07:14 1999 -+++ Makefile Sat Mar 4 08:43:28 2000 +--- Makefile.orig Thu Dec 6 19:56:18 2001 ++++ Makefile Thu Dec 6 19:57:58 2001 @@ -22,12 +22,12 @@ CPP = $(CC) -E #CPP = /lib/cpp #CFLAGS = -O2 # -g # -I/usr/local/lib/malloc-debug -DMALLOC_FUNC_CHECK --CFLAGS = -O -+#CFLAGS = -O +-CFLAGS = -O # -g -Wall -ansi -pedantic ++#CFLAGS = -O # -g -Wall -ansi -pedantic #-Wall -Wcomment \ #-Wtraditional -Wshadow \ #-Wpointer-arith -Wcast-qual -Wcast-align -Wconversion \ @@ -15,16 +15,7 @@ MAKE = make -@@ -36,6 +36,8 @@ - all: ymakefile - $(MAKE) $(MFLAGS) -f ymakefile all - -+inews: ymakefile -+ $(MAKE) $(MFLAGS) -f ymakefile inews - touch: ymakefile - $(MAKE) -f ymakefile -t all - -@@ -97,3 +99,5 @@ +@@ -97,3 +97,5 @@ man/nn.1.D: man/nn.1 sh SPLITNN1 diff -urN /usr/ports/news/nn/files/patch-ah nn/files/patch-ah --- /usr/ports/news/nn/files/patch-ah Fri Apr 16 04:52:25 1999 +++ nn/files/patch-ah Wed Dec 31 19:00:00 1969 @@ -1,29 +0,0 @@ ---- nn.c.orig Fri Jul 17 08:32:08 1998 -+++ nn.c Fri Apr 16 01:41:04 1999 -@@ -394,7 +394,7 @@ - fl; - mode = 0; - -- if (gets(answer1)) { -+ if (fgets(answer1, sizeof(answer1), stdin)) { - if (strncmp(answer1, "auto", 4) == 0) { - tprintf("\nUPDATING .newsrc FILE...."); - fl; -@@ -437,7 +437,7 @@ - (long)(gh->last_db_article - gh->last_article)); - fl; - -- if (gets(answer1) == NULL || s_keyboard) -+ if (fgets(answer1, sizeof(answer1), stdin) == NULL || s_keyboard) - *answer1 = 'q'; - - switch (*answer1) { -@@ -446,7 +446,7 @@ - tputc(NL); - tprintf("Update rest? (yn) n\b"); - fl; -- if (gets(answer1) == NULL || *answer1 != 'y') -+ if (fgets(answer1, sizeof(answer1), stdin) == NULL || *answer1 != 'y') - return; - - mode = -1; diff -urN /usr/ports/news/nn/files/patch-ai nn/files/patch-ai --- /usr/ports/news/nn/files/patch-ai Sat Jan 29 16:57:10 2000 +++ nn/files/patch-ai Wed Dec 31 19:00:00 1969 @@ -1,8 +0,0 @@ ---- inews/version.c.orig Sat Apr 29 01:34:47 1995 -+++ inews/version.c Fri Jan 28 15:53:13 2000 -@@ -2,4 +2,4 @@ - * Provide the version number of this release. - */ - --char nntp_version[] = "1.5.8 (11 March 90)"; -+char nntp_version[] = "1.5.8.MINI (MINI-INEWS)"; diff -urN /usr/ports/news/nn/files/patch-aj nn/files/patch-aj --- /usr/ports/news/nn/files/patch-aj Sat Jan 29 16:57:11 2000 +++ nn/files/patch-aj Fri Dec 7 08:06:59 2001 @@ -1,27 +1,11 @@ ---- xmakefile.orig Wed Jan 26 12:30:07 2000 -+++ xmakefile Wed Jan 26 12:47:18 2000 -@@ -103,12 +103,15 @@ - MAIL = nnmail.o reroute.o hostname.o global.o options.o - - --all: $(BIN_PROG) $(LIB_PROG) $(MASTER_PROG) inst -+all: $(BIN_PROG) $(LIB_PROG) $(MASTER_PROG) inst inews - - client: $(BIN_PROG) $(LIB_PROG) inst - - master: $(MASTER_PROG) inst - -+inews:: -+ @cd inews && $(MAKE) all -+ - nn: PARALLEL $(NN) $(NOVOBJ) - @echo linking nn - @$(CC) -o nn $(CFLAGS) $(NN) $(NOVOBJ) $(LDFLAGS) TERMLIB NNTP_EXTRA_LIB -@@ -195,6 +198,7 @@ - rm -f $(BIN_PROG) $(LIB_PROG) $(MASTER_PROG) cvt-help usercheck - rm -f prefix mkprefix inst - rm -f man/nn.1 man/nn.1~ -+ cd inews && $(MAKE) clean - +--- xmakefile.orig Fri Dec 7 07:06:27 2001 ++++ xmakefile Fri Dec 7 07:06:38 2001 +@@ -65,7 +65,7 @@ + * Notice: ymakefile is made from xmakefile by the Makefile. * - * dependencies + +-#ifndef DOMAIN ++#ifndef DOMAIN_FILE + CC = YOU_BLEW_IT READ_THE_INSTRUCTIONS_AGAIN + #else + CC = COMPILER diff -urN /usr/ports/news/nn/files/patch-ak nn/files/patch-ak --- /usr/ports/news/nn/files/patch-ak Sat Jan 29 16:57:11 2000 +++ nn/files/patch-ak Wed Dec 31 19:00:00 1969 @@ -1,27 +0,0 @@ ---- inews/conf.h.orig Sat Apr 29 01:34:46 1995 -+++ inews/conf.h Fri Jan 28 15:04:03 2000 -@@ -30,6 +30,7 @@ - #define NNINEWSCONF_H - - #include "config.h" -+#include - - #ifndef NNTP - /* WHY DO YOU WANT TO MAKE MINI-INEWS WHEN YOU DONT USE NNTP */ -@@ -59,7 +60,7 @@ - * DOMAIN as defined above). If you don't want this, comment it out. - */ - --#define HIDDENNET -+/* #define HIDDENNET */ - - /* - * There are a number of ways that inews will try to figure out the -@@ -92,6 +93,7 @@ - */ - - #define SERVER_FILE NNTP_SERVER -+#define DOMAIN_FILE NNTP_DOMAIN - - /* - * Reverse engineering (nn got this the other way around).... diff -urN /usr/ports/news/nn/files/patch-al nn/files/patch-al --- /usr/ports/news/nn/files/patch-al Sat Jan 29 16:57:11 2000 +++ nn/files/patch-al Wed Dec 31 19:00:00 1969 @@ -1,39 +0,0 @@ ---- inews/inews.c.orig Tue Jan 25 13:42:08 2000 -+++ inews/inews.c Wed Jan 26 11:16:19 2000 -@@ -32,7 +32,7 @@ - - extern FILE *ser_wr_fp; - --char host_name[256]; -+char host_name[MAXHOSTNAMELEN]; - - main(argc, argv) - int argc; -@@ -248,6 +248,8 @@ - char *cp; - struct passwd *passwd; - char *index(), *getenv(); -+ char *getdomainbyfile(); -+ char *domain; - - passwd = getpwuid(getuid()); - -@@ -279,9 +281,15 @@ - DOMAIN); - #endif /* HIDDENNET */ - #else -- fprintf(ser_wr_fp, "From: %s@%s (", -- passwd->pw_name, -- host_name); -+ domain = getdomainbyfile(DOMAIN_FILE); -+ if (domain == NULL) -+ fprintf(ser_wr_fp, "From: %s@%s (", -+ passwd->pw_name, -+ host_name); -+ else -+ fprintf(ser_wr_fp, "From: %s@%s (", -+ passwd->pw_name, -+ domain); - #endif - - for (cp = full_name; *cp != '\0'; ++cp) diff -urN /usr/ports/news/nn/files/patch-am nn/files/patch-am --- /usr/ports/news/nn/files/patch-am Sat Jan 29 16:57:12 2000 +++ nn/files/patch-am Wed Dec 31 19:00:00 1969 @@ -1,10 +0,0 @@ ---- inews/clientlib.h.orig Wed Jan 26 10:50:26 2000 -+++ inews/clientlib.h Wed Jan 26 10:50:44 2000 -@@ -5,6 +5,7 @@ - */ - - extern char *getserverbyfile(); -+extern char *getdomainbyfile(); - extern int server_init(); - extern void put_server(); - extern int get_server(); diff -urN /usr/ports/news/nn/files/patch-an nn/files/patch-an --- /usr/ports/news/nn/files/patch-an Sat Jan 29 16:57:12 2000 +++ nn/files/patch-an Fri Dec 7 08:10:41 2001 @@ -1,20 +1,26 @@ ---- inews/clientlib.c.orig Wed Jan 26 10:17:34 2000 -+++ inews/clientlib.c Wed Jan 26 10:37:27 2000 -@@ -76,7 +76,7 @@ - { - register FILE *fp; - register char *cp; -- static char buf[256]; -+ static char buf[MAXHOSTNAMELEN]; - char *index(); - char *getenv(); - char *strcpy(); -@@ -107,6 +107,48 @@ - return (NULL); /* No entry */ +--- nntp.c.orig Tue Oct 9 11:39:11 2001 ++++ nntp.c Fri Dec 7 07:10:29 2001 +@@ -37,6 +37,7 @@ + #include + #include + #include ++#include + + #ifdef NOV + #include "hash.h" +@@ -88,6 +89,7 @@ + static void debug_msg __APROTO((char *prefix, char *str)); + static void io_error __APROTO((void)); + static void find_server __APROTO((void)); ++char * find_domain(char *domainFile); + static int get_server_line __APROTO((char *string, int size)); + static int get_server __APROTO((char *string, int size)); + static int get_socket __APROTO((void)); +@@ -319,6 +321,49 @@ } -+/* -+ * getdomainbyfile Get the domain name for posting from a named file. + /* ++ * find_domain Get the domain name for posting from a named file. + * Handle blank lines and comments. + * + * Parameters: "file" is the name of the file to read. @@ -27,18 +33,18 @@ + */ + +char * -+getdomainbyfile(file) -+char *file; ++find_domain(domainFile) ++char *domainFile; +{ + register FILE *fp; + register char *cp; + static char buf[MAXHOSTNAMELEN]; + char *index(); + -+ if (file == NULL) ++ if (domainFile == NULL) + return (NULL); + -+ fp = fopen(file, "r"); ++ fp = fopen(domainFile, "r"); + if (fp == NULL) + return (NULL); + @@ -55,15 +61,44 @@ + (void) fclose(fp); + return (NULL); +} ++ ++/* + * get_server_line: get a line from the server. + * + * Expects to be connected to the server. +@@ -1726,7 +1771,7 @@ + * Phil Lapsley + */ + +-static char host_name[256]; ++static char host_name[MAXHOSTNAMELEN]; /* - * server_init Get a connection to the remote news server. -@@ -211,7 +253,7 @@ - static struct hostent def; - static struct in_addr defaddr; - static char *alist[1]; -- static char namebuf[ 256 ]; -+ static char namebuf[MAXHOSTNAMELEN]; - defaddr.s_addr = inet_addr( machine ); - if( defaddr.s_addr != -1 ) { - strcpy( namebuf, machine ); + * gen_frompath -- generate From: and Path: lines, in the form +@@ -1745,6 +1790,7 @@ + #ifndef HIDDENNET + char *cp; + #endif ++ char *domain; + + fprintf(nntp_out, "From: "); + passwd = getpwuid(getuid()); +@@ -1772,9 +1818,15 @@ + DOMAIN); + #endif /* HIDDENNET */ + #else +- fprintf(nntp_out, "<%s@%s>\r\n", +- passwd->pw_name, +- host_name); ++ domain = find_domain(DOMAIN_FILE); ++ if (domain == NULL) ++ fprintf(nntp_out, "From: <%s@%s>\r\n", ++ passwd->pw_name, ++ host_name); ++ else ++ fprintf(nntp_out, "From: <%s@%s>\r\n", ++ passwd->pw_name, ++ domain); + #endif + + #ifdef HIDDENNET diff -urN /usr/ports/news/nn/pkg-plist nn/pkg-plist --- /usr/ports/news/nn/pkg-plist Sun Jun 17 13:25:23 2001 +++ nn/pkg-plist Fri Dec 7 07:17:28 2001 @@ -1,16 +1,15 @@ bin/nn -bin/nnadmin -bin/nnbatch +bin/nnusage +bin/nngrab +bin/nnstats bin/nncheck +bin/nnadmin +bin/nntidy bin/nngoback -bin/nngrab bin/nngrep bin/nnpost -bin/nnstats -bin/nntidy -bin/nnusage +bin/nnbatch bin/nnview -bin/nn-inews @unexec if cmp -s %D/etc/nntp_domain %D/etc/nntp_domain.dist; then rm -f %D/etc/nntp_domain; fi etc/nntp_domain.dist @exec [ -f %B/nntp_domain ] || cp %B/%f %B/nntp_domain @@ -18,8 +17,8 @@ etc/nntp_server.dist @exec [ -f %B/nntp_server ] || cp %B/%f %B/nntp_server lib/nn/aux +lib/nn/upgrade_rc lib/nn/conf -lib/nn/help/Manual lib/nn/help/adm.upgrade1 lib/nn/help/adm.upgrade2 lib/nn/help/adm.upgrade3 @@ -37,6 +36,6 @@ lib/nn/help/help.show lib/nn/help/help.sort lib/nn/help/help.variables -lib/nn/upgrade_rc +lib/nn/help/Manual @dirrm lib/nn/help @dirrm lib/nn >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 9:25:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3897937BA6D for ; Tue, 11 Dec 2001 09:10:45 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBHA3r76680; Tue, 11 Dec 2001 09:10:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 879C337B427 for ; Tue, 11 Dec 2001 09:01:00 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBH10L72112; Tue, 11 Dec 2001 09:01:00 -0800 (PST) (envelope-from nobody) Message-Id: <200112111701.fBBH10L72112@freefall.freebsd.org> Date: Tue, 11 Dec 2001 09:01:00 -0800 (PST) From: "Richard S. Conto" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32700: inode changes for large Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32700 >Category: ports >Synopsis: inode changes for large >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 09:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Richard S. Conto >Release: 4.4-STABLE >Organization: Merit Network, Inc >Environment: FreeBSD x25.family 4.4-STABLE FreeBSD 4.4-STABLE #0: Fri Nov 30 12:20:51 EST 2001 root@x25.family:/usr/src/sys/compile/INSPIRON3K i386 >Description: After change to ./src/sys/sys/vnode.h 1.111.2.14, Tue Oct 16 23:16:24 2001 UTC by dillon, `arla' (built against a previous version) would hang the system. Attempts to re-compile arla would fail due to changes in vnode.h >How-To-Repeat: Build a system from before October 16. Build arla from before October 16 Update to a recent (November 26) system. arla will crash the system when files or directories in /afs are referenced. Attempts to re-compile arla will fail. >Fix: I have an ugly patch. I've been using it on two machines, and a co-worker has been using it too. I don't know how to make this patch work with systems prior to the change to vnode.h on October 16. cd /usr/ports/net/arla/work/arla-0.35.5 and apply the following patch ---------------------------------------------------------------- *** xfs/bsd/BAK/xfs_message.c Fri Apr 27 19:43:05 2001 --- xfs/bsd/xfs_message.c Wed Nov 28 12:35:56 2001 *************** *** 464,474 **** --- 464,483 ---- /* XXX see comment in xfs_node_find */ /* XXXSMP do gone[l] need to get mntvnode_slock ? */ + #if !defined(BIGJOBS) + for(vp = TAILQ_FIRST(&(XFS_TO_VFS(&xfs[fd])->mnt_nvnodelist)); + vp != NULL; + #else /* BIGJOBS */ for(vp = XFS_TO_VFS(&xfs[fd])->mnt_vnodelist.lh_first; vp != NULL; + #endif /* BIGJOBS */ vp = next) { + #if !defined(BIGJOBS) + next = TAILQ_NEXT(vp, v_nmntvnodes); + #else next = vp->v_mntvnodes.le_next; + #endif /* BIGJOBS */ gc_vnode (vp, p); } } else { *** xfs/bsd/BAK/xfs_node-bsd.c Mon Nov 26 12:20:49 2001 --- xfs/bsd/xfs_node-bsd.c Wed Nov 28 12:37:25 2001 *************** *** 270,278 **** * on FreeBSD once. */ for(t = XFS_TO_VFS(xfsp)->mnt_vnodelist.lh_first; t != NULL; ! t = t->v_mntvnodes.le_next) { xn = VNODE_TO_XNODE(t); if (xn && xfs_handle_eq(&xn->handle, handlep)) break; --- 270,285 ---- * on FreeBSD once. */ + #if !defined(BIGJOBS) + for(t = TAILQ_FIRST(&(XFS_TO_VFS(xfsp)->mnt_nvnodelist)); + t != NULL; + t = TAILQ_NEXT(t, v_nmntvnodes) + #else for(t = XFS_TO_VFS(xfsp)->mnt_vnodelist.lh_first; t != NULL; ! t = t->v_mntvnodes.le_next ! #endif /* BIGJOBS */ ! ) { xn = VNODE_TO_XNODE(t); if (xn && xfs_handle_eq(&xn->handle, handlep)) break; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 10:30: 3 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E4C8F37B423; Tue, 11 Dec 2001 10:29:32 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBISYY98170; Tue, 11 Dec 2001 10:28:34 -0800 (PST) (envelope-from petef) Date: Tue, 11 Dec 2001 10:28:34 -0800 (PST) From: Message-Id: <200112111828.fBBISYY98170@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, petef@FreeBSD.org Subject: Re: ports/32660: kdebase-2.2.2: patch-ksysguardd.c fails to apply Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: kdebase-2.2.2: patch-ksysguardd.c fails to apply Responsible-Changed-From-To: freebsd-ports->petef Responsible-Changed-By: petef Responsible-Changed-When: Tue Dec 11 10:28:14 PST 2001 Responsible-Changed-Why: I have a patch for this problem; working on a few other issues with kdebase and will commit soon. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32660 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 10:30:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4791837B425; Tue, 11 Dec 2001 10:29:33 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBIN3297486; Tue, 11 Dec 2001 10:23:03 -0800 (PST) (envelope-from petef) Date: Tue, 11 Dec 2001 10:23:03 -0800 (PST) From: Message-Id: <200112111823.fBBIN3297486@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, assar@FreeBSD.org Subject: Re: ports/32700: inode changes for large Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: inode changes for large Responsible-Changed-From-To: freebsd-ports->assar Responsible-Changed-By: petef Responsible-Changed-When: Tue Dec 11 10:22:57 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32700 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 10:30:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4EA2837B635 for ; Tue, 11 Dec 2001 10:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBIU0398359; Tue, 11 Dec 2001 10:30:00 -0800 (PST) (envelope-from gnats) Received: from netability.ie (r96-8.bas1.srl.dublin.eircom.net [159.134.96.8]) by hub.freebsd.org (Postfix) with ESMTP id C00C137B427 for ; Tue, 11 Dec 2001 10:27:50 -0800 (PST) Received: (from nick@localhost) by netability.ie (8.11.6/8.11.6) id fBBIRlC14048; Tue, 11 Dec 2001 18:27:47 GMT (envelope-from nick) Message-Id: <200112111827.fBBIRlC14048@netability.ie> Date: Tue, 11 Dec 2001 18:27:47 GMT From: Nick Hilliard Reply-To: Nick Hilliard To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32701: evolution port uses .gz instead of .bz2 image Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32701 >Category: ports >Synopsis: evolution port uses .gz instead of .bz2 image >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 10:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Nick Hilliard >Release: FreeBSD 4.4-STABLE i386 >Organization: Network Ability Ltd. >Environment: System: FreeBSD flapjack.netability.ie 4.4-STABLE FreeBSD 4.4-STABLE #0: Tue Dec 11 15:38:04 GMT 2001 nick@flapjack.netability.ie:/data/usr.src/sys/compile/FLAPJACK i386 >Description: the Evolution port downloads the .gz instead of the .bz2 evolution source image. This is a bit of a waste of bandwidth, especially if you're on a low-bandwidth link. It can be sped up by using bzip2 instead of gzip. >How-To-Repeat: >Fix: add "USE_BZIP2=yes" to evolution port Makefile and MD5 sum to distinfo file. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 10:39:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E768137B41B; Tue, 11 Dec 2001 10:39:32 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBIWHM98772; Tue, 11 Dec 2001 10:32:17 -0800 (PST) (envelope-from petef) Date: Tue, 11 Dec 2001 10:32:17 -0800 (PST) From: Message-Id: <200112111832.fBBIWHM98772@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/32701: evolution port uses .gz instead of .bz2 image Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: evolution port uses .gz instead of .bz2 image Responsible-Changed-From-To: freebsd-ports->gnome Responsible-Changed-By: petef Responsible-Changed-When: Tue Dec 11 10:32:08 PST 2001 Responsible-Changed-Why: Over to maintainers http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32701 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 11: 0:18 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82C5237B41F for ; Tue, 11 Dec 2001 11:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBJ05v02596; Tue, 11 Dec 2001 11:00:05 -0800 (PST) (envelope-from gnats) Received: from yertle.kciLink.com (yertle.kcilink.com [216.194.193.105]) by hub.freebsd.org (Postfix) with ESMTP id D1A5237B416; Tue, 11 Dec 2001 10:58:50 -0800 (PST) Received: from onceler.kciLink.com (onceler.kciLink.com [216.194.193.106]) by yertle.kciLink.com (Postfix) with ESMTP id 425EF1E841; Tue, 11 Dec 2001 13:58:47 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.6/8.11.6) id fBBIwlJ64292; Tue, 11 Dec 2001 13:58:47 -0500 (EST) (envelope-from khera) Message-Id: <200112111858.fBBIwlJ64292@onceler.kciLink.com> Date: Tue, 11 Dec 2001 13:58:47 -0500 (EST) From: Vivek Khera Reply-To: Vivek Khera To: FreeBSD-gnats-submit@freebsd.org Cc: obrien@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32704: update ical to use tk8.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32704 >Category: ports >Synopsis: update ical to use tk8.3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 11:00:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Vivek Khera >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD onceler.kciLink.com 4.4-STABLE FreeBSD 4.4-STABLE #4: Tue Dec 11 10:12:07 EST 2001 khera@onceler.kciLink.com:/amd/yertle/u/yertle2/usr.obj/amd/onceler/u/onceler1/usr/src/sys/ONCELER i386 >Description: deskutils/ical wants to use tcl/tk 8.2 but works just as well with the latest tcl/tk 8.3. >How-To-Repeat: n/a >Fix: this patch moves ical from using tk82 to tk83. I'm not sure if PORTREVISION should be set. --- #Makefile~ Tue Dec 11 13:52:43 2001 +++ Makefile Tue Dec 11 13:52:43 2001 @@ -7,7 +7,8 @@ PORTNAME= ical PORTVERSION= 2.2 -CATEGORIES= deskutils tk82 +PORTREVISION= 1 +CATEGORIES= deskutils tk83 MASTER_SITES= ftp://ftp.sco.com/skunkware/src/shellutil/ \ ftp://ftp.sunet.se/pub/vendor/sco/skunkware/src/shellutil/ \ ftp://ftp.netsw.org/netsw/X11/Tools/Desktop/ \ @@ -16,14 +17,14 @@ MAINTAINER= obrien@FreeBSD.org -LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 +LIB_DEPENDS= tk83.1:${PORTSDIR}/x11-toolkits/tk83 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-tclconfig=${PREFIX}/lib/tcl8.2 \ - --with-tclhdir=${PREFIX}/include/tcl8.2 \ - --with-tclsh=${PREFIX}/bin/tclsh8.2 \ - --with-tkconfig=${PREFIX}/lib/tk8.2 \ - --with-tkhdir=${PREFIX}/include/tk8.2 +CONFIGURE_ARGS= --with-tclconfig=${PREFIX}/lib/tcl8.3 \ + --with-tclhdir=${PREFIX}/include/tcl8.3 \ + --with-tclsh=${PREFIX}/bin/tclsh8.3 \ + --with-tkconfig=${PREFIX}/lib/tk8.3 \ + --with-tkhdir=${PREFIX}/include/tk8.3 MAN1= ical.1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 11: 0:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 513AD37B41C for ; Tue, 11 Dec 2001 11:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBJ05p02577; Tue, 11 Dec 2001 11:00:05 -0800 (PST) (envelope-from gnats) Received: from smtp-server1.tampabay.rr.com (smtp-server1.cfl.rr.com [65.32.2.68]) by hub.freebsd.org (Postfix) with ESMTP id CE31B37B416 for ; Tue, 11 Dec 2001 10:49:59 -0800 (PST) Received: from rhino.jdcon.com (65.35.70.27.palmbayI-ubr-a.cfl.rr.com [65.35.70.27]) by smtp-server1.tampabay.rr.com (8.11.2/8.11.2) with ESMTP id fBBInwO11183 for ; Tue, 11 Dec 2001 13:49:58 -0500 (EST) Received: (from leo@localhost) by rhino.jdcon.com (8.11.6/8.11.6) id fBBIntH56259; Tue, 11 Dec 2001 13:49:55 -0500 (EST) (envelope-from leo) Message-Id: <200112111849.fBBIntH56259@rhino.jdcon.com> Date: Tue, 11 Dec 2001 13:49:55 -0500 (EST) From: Leo Kim Reply-To: Leo Kim To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32702: Update audio/libshout from 1.0.5 to 1.0.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32702 >Category: ports >Synopsis: Update audio/libshout from 1.0.5 to 1.0.7 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 11:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Leo Kim >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD 4.4-STABLE #1: Wed Dec 5 17:57:02 EST 2001 >Description: Update audio/libshout from 1.0.5 to 1.0.7 >How-To-Repeat: >Fix: diff -urN libshout.old/Makefile libshout/Makefile --- libshout.old/Makefile Tue Dec 11 13:18:39 2001 +++ libshout/Makefile Tue Dec 11 09:54:01 2001 @@ -6,7 +6,7 @@ # PORTNAME= libshout -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.7 CATEGORIES= audio net MASTER_SITES= http://developer.icecast.org/libshout/releases/ diff -urN libshout.old/distinfo libshout/distinfo --- libshout.old/distinfo Tue Dec 11 13:18:39 2001 +++ libshout/distinfo Tue Dec 11 09:54:01 2001 @@ -1 +1 @@ -MD5 (libshout-1.0.5.tar.gz) = f0acb01c1ee60366b46b622ecda229f3 +MD5 (libshout-1.0.7.tar.gz) = 7e8054f8c6dbb0bd9179057e2ee465c1 diff -urN libshout.old/files/patch-aa libshout/files/patch-aa --- libshout.old/files/patch-aa Tue Dec 11 13:18:39 2001 +++ libshout/files/patch-aa Tue Dec 11 09:54:01 2001 @@ -1,15 +1,16 @@ ---- Makefile.in.orig Sun May 7 23:13:49 2000 -+++ Makefile.in Tue Jun 6 16:54:30 2000 -@@ -486,9 +486,9 @@ +--- Makefile.in.orig Wed Aug 1 17:56:09 2001 ++++ Makefile.in Tue Dec 11 08:50:30 2001 +@@ -507,9 +507,10 @@ install-data-local: mkdir -p $(DESTDIR)$(includedir)/shout - mkdir -p $(DESTDIR)$(prefix)/doc/$(PACKAGE)-$(VERSION)/example -- $(INSTALL) -m 0644 README AUTHORS COPYING CHANGES $(DESTDIR)$(prefix)/doc/$(PACKAGE)-$(VERSION) -- $(INSTALL) -m 0644 example/Makefile example/example.c $(DESTDIR)$(prefix)/doc/$(PACKAGE)-$(VERSION)/example -+ mkdir -p $(DESTDIR)$(prefix)/share/doc/$(PACKAGE)-$(VERSION)/example -+ $(INSTALL) -m 0644 README AUTHORS COPYING CHANGES $(DESTDIR)$(prefix)/share/doc/$(PACKAGE)-$(VERSION) -+ $(INSTALL) -m 0644 example/Makefile example/example.c $(DESTDIR)$(prefix)/share/doc/$(PACKAGE)-$(VERSION)/example - $(INSTALL) -m 0644 shout.h $(DESTDIR)$(includedir)/shout +- $(INSTALL) -m 0644 $(top_srcdir)/README $(top_srcdir)/AUTHORS $(top_srcdir)/COPYING $(top_srcdir)/CHANGES $(DESTDIR)$(prefix)/doc/$(PACKAGE)-$(VERSION) +- $(INSTALL) -m 0644 $(top_srcdir)/example/Makefile $(top_srcdir)/example/example.c $(DESTDIR)$(prefix)/doc/$(PACKAGE)-$(VERSION)/example ++ mkdir -p $(DESTDIR)$(prefix)/share/doc/$(PACKAGE)-$(VERSION) ++ mkdir -p $(DESTDIR)$(prefix)/share/examples/$(PACKAGE)-$(VERSION) ++ $(INSTALL) -m 0644 $(top_srcdir)/README $(top_srcdir)/AUTHORS $(top_srcdir)/COPYING $(top_srcdir)/CHANGES $(DESTDIR)$(prefix)/share/doc/$(PACKAGE)-$(VERSION) ++ $(INSTALL) -m 0644 $(top_srcdir)/example/Makefile $(top_srcdir)/example/example.c $(DESTDIR)$(prefix)/share/examples/$(PACKAGE)-$(VERSION) + $(INSTALL) -m 0644 $(top_srcdir)/shout.h $(DESTDIR)$(includedir)/shout # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -urN libshout.old/files/patch-ab libshout/files/patch-ab --- libshout.old/files/patch-ab Tue Dec 11 13:18:39 2001 +++ libshout/files/patch-ab Tue Dec 11 09:54:01 2001 @@ -1,11 +1,11 @@ ---- doc/Makefile.in.orig Sun May 7 23:13:50 2000 -+++ doc/Makefile.in Tue Jun 6 16:56:33 2000 -@@ -78,7 +78,7 @@ +--- doc/Makefile.in.orig Tue Dec 11 09:28:01 2001 ++++ doc/Makefile.in Tue Dec 11 09:28:08 2001 +@@ -76,7 +76,7 @@ AUTOMAKE_OPTIONS = foreign -docdir = $(prefix)/doc/$(PACKAGE)-$(VERSION) +docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION) - doc_DATA = index.html overview.html initialization.html connection.html datastreaming.html metadata.html datastructures.html shout_conn_t.html shout_connect.html shout_disconnect.html shout_sleep.html shout_init_connection.html shout_send_data.html shout_update_metadata.html style.css example.html example_c.html reference.html + doc_DATA = index.html overview.html initialization.html connection.html datastreaming.html metadata.html datastructures.html shout_conn_t.html shout_connect.html shout_disconnect.html shout_sleep.html shout_init_connection.html shout_send_data.html shout_update_metadata.html style.css example.html example_c.html reference.html errorhandling.html shout_strerror.html diff -urN libshout.old/pkg-plist libshout/pkg-plist --- libshout.old/pkg-plist Tue Dec 11 13:18:39 2001 +++ libshout/pkg-plist Tue Dec 11 09:54:01 2001 @@ -1,34 +1,34 @@ -lib/libshout.a -lib/libshout.la -lib/libshout.so -lib/libshout.so.1 include/shout/shout.h +lib/libshout.so.2 +lib/libshout.so +lib/libshout.la +lib/libshout.a +share/doc/libshout-1.0.7/index.html +share/doc/libshout-1.0.7/overview.html +share/doc/libshout-1.0.7/initialization.html +share/doc/libshout-1.0.7/connection.html +share/doc/libshout-1.0.7/datastreaming.html +share/doc/libshout-1.0.7/metadata.html +share/doc/libshout-1.0.7/datastructures.html +share/doc/libshout-1.0.7/shout_conn_t.html +share/doc/libshout-1.0.7/shout_connect.html +share/doc/libshout-1.0.7/shout_disconnect.html +share/doc/libshout-1.0.7/shout_sleep.html +share/doc/libshout-1.0.7/shout_init_connection.html +share/doc/libshout-1.0.7/shout_send_data.html +share/doc/libshout-1.0.7/shout_update_metadata.html +share/doc/libshout-1.0.7/style.css +share/doc/libshout-1.0.7/example.html +share/doc/libshout-1.0.7/example_c.html +share/doc/libshout-1.0.7/reference.html +share/doc/libshout-1.0.7/errorhandling.html +share/doc/libshout-1.0.7/shout_strerror.html +share/doc/libshout-1.0.7/README +share/doc/libshout-1.0.7/AUTHORS +share/doc/libshout-1.0.7/COPYING +share/doc/libshout-1.0.7/CHANGES +share/examples/libshout-1.0.7/Makefile +share/examples/libshout-1.0.7/example.c @dirrm include/shout -share/doc/libshout-%%PORTVERSION%%/example.html -share/doc/libshout-%%PORTVERSION%%/example/Makefile -share/doc/libshout-%%PORTVERSION%%/example/example.c -share/doc/libshout-%%PORTVERSION%%/example_c.html -@dirrm share/doc/libshout-%%PORTVERSION%%/example -share/doc/libshout-%%PORTVERSION%%/AUTHORS -share/doc/libshout-%%PORTVERSION%%/CHANGES -share/doc/libshout-%%PORTVERSION%%/COPYING -share/doc/libshout-%%PORTVERSION%%/README -share/doc/libshout-%%PORTVERSION%%/connection.html -share/doc/libshout-%%PORTVERSION%%/datastreaming.html -share/doc/libshout-%%PORTVERSION%%/datastructures.html -share/doc/libshout-%%PORTVERSION%%/errorhandling.html -share/doc/libshout-%%PORTVERSION%%/index.html -share/doc/libshout-%%PORTVERSION%%/initialization.html -share/doc/libshout-%%PORTVERSION%%/metadata.html -share/doc/libshout-%%PORTVERSION%%/overview.html -share/doc/libshout-%%PORTVERSION%%/reference.html -share/doc/libshout-%%PORTVERSION%%/shout_conn_t.html -share/doc/libshout-%%PORTVERSION%%/shout_connect.html -share/doc/libshout-%%PORTVERSION%%/shout_disconnect.html -share/doc/libshout-%%PORTVERSION%%/shout_init_connection.html -share/doc/libshout-%%PORTVERSION%%/shout_send_data.html -share/doc/libshout-%%PORTVERSION%%/shout_sleep.html -share/doc/libshout-%%PORTVERSION%%/shout_strerror.html -share/doc/libshout-%%PORTVERSION%%/shout_update_metadata.html -share/doc/libshout-%%PORTVERSION%%/style.css -@dirrm share/doc/libshout-%%PORTVERSION%% +@dirrm share/doc/libshout-1.0.7 +@dirrm share/examples/libshout-1.0.7 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 11: 0:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F4D537B41E for ; Tue, 11 Dec 2001 11:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBJ05d02587; Tue, 11 Dec 2001 11:00:05 -0800 (PST) (envelope-from gnats) Received: from smtp-server3.tampabay.rr.com (smtp-server3.tampabay.rr.com [65.32.1.41]) by hub.freebsd.org (Postfix) with ESMTP id 7D09A37B405 for ; Tue, 11 Dec 2001 10:51:56 -0800 (PST) Received: from rhino.jdcon.com (65.35.70.27.palmbayI-ubr-a.cfl.rr.com [65.35.70.27]) by smtp-server3.tampabay.rr.com (8.11.2/8.11.2) with ESMTP id fBBIpsW04449 for ; Tue, 11 Dec 2001 13:51:55 -0500 (EST) Received: (from leo@localhost) by rhino.jdcon.com (8.11.6/8.11.6) id fBBIprF56362; Tue, 11 Dec 2001 13:51:53 -0500 (EST) (envelope-from leo) Message-Id: <200112111851.fBBIprF56362@rhino.jdcon.com> Date: Tue, 11 Dec 2001 13:51:53 -0500 (EST) From: Leo Kim Reply-To: Leo Kim To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32703: [MAINTAINER UPDATE] audio/p5-Shout from 0.99 to 1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32703 >Category: ports >Synopsis: [MAINTAINER UPDATE] audio/p5-Shout from 0.99 to 1.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 11:00:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Leo Kim >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD 4.4-STABLE #1: Wed Dec 5 17:57:02 EST 2001 >Description: Update audio/p5-Shout from 0.99 to 1.0 >How-To-Repeat: >Fix: diff -urN p5-Shout.old/Makefile p5-Shout/Makefile --- p5-Shout.old/Makefile Tue Dec 11 13:18:45 2001 +++ p5-Shout/Makefile Tue Dec 11 13:07:35 2001 @@ -6,14 +6,14 @@ # PORTNAME= Shout -PORTVERSION= 0.99 +PORTVERSION= 1.0 CATEGORIES= audio perl5 MASTER_SITES= http://developer.icecast.org/libshout/releases/ PKGNAMEPREFIX= p5- MAINTAINER= leo@florida.sarang.net -LIB_DEPENDS= shout.1:${PORTSDIR}/audio/libshout +LIB_DEPENDS= shout.2:${PORTSDIR}/audio/libshout PERL_CONFIGURE= yes @@ -21,6 +21,14 @@ MAN3= Shout.3 pre-configure: - @(cd ${WRKSRC} && ${RM} example.pl example2.pl) + ${MKDIR} ${WRKSRC}/examples + ${MV} ${WRKSRC}/example.pl ${WRKSRC}/example2.pl ${WRKSRC}/examples + +post-install: +.ifndef(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/* \ + ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} +.endif .include diff -urN p5-Shout.old/distinfo p5-Shout/distinfo --- p5-Shout.old/distinfo Tue Dec 11 13:18:45 2001 +++ p5-Shout/distinfo Tue Dec 11 13:07:35 2001 @@ -1 +1 @@ -MD5 (Shout-0.99.tar.gz) = a4cbf46d1107a54fff61d457ac46dd35 +MD5 (Shout-1.0.tar.gz) = f5cba6e7a8b6b1462b9c17bdcdf6216a diff -urN p5-Shout.old/files/patch-aa p5-Shout/files/patch-aa --- p5-Shout.old/files/patch-aa Tue Dec 11 13:18:45 2001 +++ p5-Shout/files/patch-aa Tue Dec 11 13:07:36 2001 @@ -1,5 +1,5 @@ ---- Makefile.PL.orig Wed Apr 18 13:29:39 2001 -+++ Makefile.PL Wed Apr 18 13:31:05 2001 +--- Makefile.PL.orig Tue Dec 11 11:59:35 2001 ++++ Makefile.PL Tue Dec 11 11:59:41 2001 @@ -4,8 +4,8 @@ WriteMakefile( 'NAME' => 'Shout', @@ -11,3 +11,13 @@ + 'INC' => '-I/usr/local/include', # e.g., '-I/usr/include/other' 'MYEXTLIB' => '' ); +--- MANIFEST.orig Tue Dec 11 12:43:44 2001 ++++ MANIFEST Tue Dec 11 12:43:49 2001 +@@ -3,7 +3,5 @@ + Makefile.PL + Shout.pm + Shout.xs +-example.pl +-example2.pl + test.pl + typemap diff -urN p5-Shout.old/files/patch-ab p5-Shout/files/patch-ab --- p5-Shout.old/files/patch-ab Tue Dec 11 13:18:45 2001 +++ p5-Shout/files/patch-ab Tue Dec 11 13:07:36 2001 @@ -1,10 +1,20 @@ ---- MANIFEST.orig Wed Apr 18 13:58:36 2001 -+++ MANIFEST Wed Apr 18 13:58:43 2001 -@@ -3,7 +3,5 @@ - Makefile.PL - Shout.pm - Shout.xs --example.pl --example2.pl - test.pl - typemap +--- Shout.xs.orig Tue Dec 11 12:36:56 2001 ++++ Shout.xs Tue Dec 11 12:37:20 2001 +@@ -200,13 +200,15 @@ + CODE: + self->aim = strdup(str); + +-void shout_set_icq(self, str) ++void ++shout_set_icq(self, str) + shout_conn_t *self + char *str + CODE: + self->icq = strdup(str); + +-void shout_set_irc(self, str) ++void ++shout_set_irc(self, str) + shout_conn_t *self + char *str + CODE: diff -urN p5-Shout.old/pkg-plist p5-Shout/pkg-plist --- p5-Shout.old/pkg-plist Tue Dec 11 13:18:45 2001 +++ p5-Shout/pkg-plist Tue Dec 11 13:07:35 2001 @@ -3,4 +3,8 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Shout/Shout.bs lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Shout/Shout.so lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Shout/autosplit.ix +%%PORTDOCS%%share/examples/p5-Shout/example.pl +%%PORTDOCS%%share/examples/p5-Shout/example2.pl +%%PORTDOCS%%@dirrm share/examples/p5-Shout @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Shout +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PER_ARCH%%/auto/Shout 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 11: 5:31 2001 Delivered-To: freebsd-ports@freebsd.org Received: from holmes.grauel.com (holmes.grauel.com [199.233.104.35]) by hub.freebsd.org (Postfix) with ESMTP id 3807937B419 for ; Tue, 11 Dec 2001 11:05:29 -0800 (PST) Received: from moriarity.grauel.com (moriarity [199.233.104.37]) by holmes.grauel.com (8.11.6/8.11.2) with SMTP id fBBJ5Lu36723 for ; Tue, 11 Dec 2001 14:05:21 -0500 (EST) (envelope-from rjk@grauel.com) Date: Tue, 11 Dec 2001 14:05:26 -0500 From: Richard Kuhns To: freebsd-ports@freebsd.org Subject: A quick nautilus question... Message-Id: <20011211140526.56c852f7.rjk@grauel.com> Organization: Grauel Enterprises, Inc X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I've just built and installed nautilus, selected it as my file manager, and logged out/killed oafd/logged back in. So far, I'm fairly impressed. However, could anyone please tell me how to get rid of the icons for each disk partion that have showed up on my desktop? The Delete and Move to Trash options are grayed out, dragging them to Trash does nothing, and I don't want them on my desktop. Thanks. -- Richard Kuhns rjk@grauel.com PO Box 6249 Tel: (765)477-6000 \ 100 Sawmill Road x319 Lafayette, IN 47903 (800)489-4891 / To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 11:38:19 2001 Delivered-To: freebsd-ports@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id 1191437B417; Tue, 11 Dec 2001 11:38:17 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id A5C039B19; Tue, 11 Dec 2001 14:36:17 -0500 (EST) Date: Tue, 11 Dec 2001 14:36:17 -0500 From: Will Andrews To: Maxim Sobolev Cc: FreeBSD Ports Subject: Re: cvs commit: ports/graphics/imlib Makefile Message-ID: <20011211143617.H30626@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: Maxim Sobolev , FreeBSD Ports References: <200112111450.fBBEow047077@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200112111450.fBBEow047077@freefall.freebsd.org> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Dec 11, 2001 at 06:50:58AM -0800, Maxim Sobolev wrote: > Log: > Explicitly pass --x-{includes,libraries} to the configure script, so > that the > port works even for the non-standard X11BASE's (like > /opt or such). Shouldn't this be part of the default USE_X11BASE GNU_CONFIGURE arguments? -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 11:50:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F14C37B41C for ; Tue, 11 Dec 2001 11:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBJo1S12389; Tue, 11 Dec 2001 11:50:01 -0800 (PST) (envelope-from gnats) Received: from yertle.kciLink.com (yertle.kcilink.com [216.194.193.105]) by hub.freebsd.org (Postfix) with ESMTP id 07F8937B405; Tue, 11 Dec 2001 11:49:24 -0800 (PST) Received: from onceler.kciLink.com (onceler.kciLink.com [216.194.193.106]) by yertle.kciLink.com (Postfix) with ESMTP id BE6011E841; Tue, 11 Dec 2001 14:49:22 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.6/8.11.6) id fBBJnMI78355; Tue, 11 Dec 2001 14:49:22 -0500 (EST) (envelope-from khera) Message-Id: <200112111949.fBBJnMI78355@onceler.kciLink.com> Date: Tue, 11 Dec 2001 14:49:22 -0500 (EST) From: Vivek Khera Reply-To: Vivek Khera To: FreeBSD-gnats-submit@freebsd.org Cc: kiri@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32705: update of xemacs-packages list to current packages Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32705 >Category: ports >Synopsis: update of xemacs-packages list to current packages >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 11:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Vivek Khera >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD onceler.kciLink.com 4.4-STABLE FreeBSD 4.4-STABLE #4: Tue Dec 11 10:12:07 EST 2001 khera@onceler.kciLink.com:/amd/yertle/u/yertle2/usr.obj/amd/onceler/u/onceler1/usr/src/sys/ONCELER i386 >Description: xemacs-packages tries to pull some old packages, which don't live on most ftp servers anymore. >How-To-Repeat: >Fix: this patch updates the package list in xemacs-packages to the current set of available packages from XEmacs. --- #Makefile~ Tue Dec 11 14:47:18 2001 +++ Makefile Tue Dec 11 14:47:18 2001 @@ -15,20 +15,20 @@ apel-1.20-pkg.tar.gz \ auctex-1.25-pkg.tar.gz \ c-support-1.16-pkg.tar.gz \ - cc-mode-1.25-pkg.tar.gz \ + cc-mode-1.26-pkg.tar.gz \ debug-1.14-pkg.tar.gz \ dired-1.11-pkg.tar.gz \ - edit-utils-1.65-pkg.tar.gz \ + edit-utils-1.70-pkg.tar.gz \ efs-1.26-pkg.tar.gz \ fsf-compat-1.09-pkg.tar.gz \ hm--html-menus-1.16-pkg.tar.gz \ ispell-1.23-pkg.tar.gz \ mail-lib-1.39-pkg.tar.gz \ mailcrypt-2.09-pkg.tar.gz \ - net-utils-1.20-pkg.tar.gz \ + net-utils-1.23-pkg.tar.gz \ os-utils-1.25-pkg.tar.gz \ pcl-cvs-1.55-pkg.tar.gz \ - prog-modes-1.40-pkg.tar.gz \ + prog-modes-1.42-pkg.tar.gz \ ps-print-nomule-1.05-pkg.tar.gz \ psgml-1.23-pkg.tar.gz \ sgml-1.08-pkg.tar.gz \ @@ -37,10 +37,10 @@ text-modes-1.32-pkg.tar.gz \ time-1.11-pkg.tar.gz \ vc-1.28-pkg.tar.gz \ - viper-1.26-pkg.tar.gz \ + viper-1.28-pkg.tar.gz \ w3-1.20-pkg.tar.gz \ xemacs-base-1.55-pkg.tar.gz \ - xemacs-devel-1.37-pkg.tar.gz + xemacs-devel-1.38-pkg.tar.gz DIST_SUBDIR= xemacs MAINTAINER= kiri@FreeBSD.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 12: 0: 7 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3434237B419 for ; Tue, 11 Dec 2001 12:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBK02l13418; Tue, 11 Dec 2001 12:00:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 991C837B417 for ; Tue, 11 Dec 2001 11:50:07 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBJo7N12398; Tue, 11 Dec 2001 11:50:07 -0800 (PST) (envelope-from nobody) Message-Id: <200112111950.fBBJo7N12398@freefall.freebsd.org> Date: Tue, 11 Dec 2001 11:50:07 -0800 (PST) From: MOROHOSHI Akihiko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32706: www/analog: install images to /usr/local/share/analog/images/, not to /usr/local/www/data/images/. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32706 >Category: ports >Synopsis: www/analog: install images to /usr/local/share/analog/images/, not to /usr/local/www/data/images/. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 12:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: MOROHOSHI Akihiko >Release: 4.4-stable >Organization: >Environment: # $FreeBSD: ports/www/analog/Makefile,v 1.41 2001/09/11 02:38:23 ache Exp $ >Description: In www/analog port, images are installed into /usr/local/www/data/images/. Please change the default location to a neutral place, e.g., /usr/local/share/analog/images/ or /usr/local/www/analog/images/, imitating the installation of docs by www/apache13. There are 3 reasons to do so: 1. Current behavior is not desirable in some configurations. For example, having some virtual domains, there are multiple "data" directories. 2. It is desirable for us to separate analog's images from other images which are normal contents of web site. 3. Proposed installation will enable us to use portupgrade for www/analog. At the end of installation, you can put a symlink to it under /usr/local/www/ or print message to put a symlink or to use Alias directive in httpd.conf. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 12:30:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 062DE37B41C for ; Tue, 11 Dec 2001 12:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBKU1819545; Tue, 11 Dec 2001 12:30:01 -0800 (PST) (envelope-from gnats) Received: from yertle.kciLink.com (yertle.kcilink.com [216.194.193.105]) by hub.freebsd.org (Postfix) with ESMTP id 01BCE37B405 for ; Tue, 11 Dec 2001 12:27:52 -0800 (PST) Received: from onceler.kciLink.com (onceler.kciLink.com [216.194.193.106]) by yertle.kciLink.com (Postfix) with ESMTP id 74BD61E841 for ; Tue, 11 Dec 2001 15:27:47 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.6/8.11.6) id fBBKRlU06236; Tue, 11 Dec 2001 15:27:47 -0500 (EST) (envelope-from khera) Message-Id: <200112112027.fBBKRlU06236@onceler.kciLink.com> Date: Tue, 11 Dec 2001 15:27:47 -0500 (EST) From: Vivek Khera Reply-To: Vivek Khera To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32707: ghostscript-gnu fails during install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32707 >Category: ports >Synopsis: ghostscript-gnu fails during install >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 12:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Vivek Khera >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD onceler.kciLink.com 4.4-STABLE FreeBSD 4.4-STABLE #4: Tue Dec 11 10:12:07 EST 2001 khera@onceler.kciLink.com:/amd/yertle/u/yertle2/usr.obj/amd/onceler/u/onceler1/usr/src/sys/ONCELER i386 ports cvsupd today; world rebuilt yesterday. >Description: make install in print/ghostscript-gnu fails with a gmake dependency. >How-To-Repeat: cd /usr/ports/print/ghostscript-gnu make install output: ===> Installing for ghostscript-gnu-6.52 ===> ghostscript-gnu-6.52 depends on shared library: png.5 - found ===> ghostscript-gnu-6.52 depends on shared library: X11.6 - found >Fix: pushd /usr/ports/graphics/jpeg make extract popd make install curiously, the package doesn't list jpeg as a requirement. >Release-Note: >Audit-Trail: >Unformatted: >>> in pre-install ... >>> creating ghostscript destdir ... >>> extracting ghostscript fonts... src/contrib.mak:1302: warning: overriding commands for target `obj/gdevhpij.o' src/contrib.mak:505: warning: ignoring old commands for target `obj/gdevhpij.o' src/contrib.mak:1308: warning: overriding commands for target `obj/DJ630.dev' src/contrib.mak:508: warning: ignoring old commands for target `obj/DJ630.dev' src/contrib.mak:1311: warning: overriding commands for target `obj/DJ6xx.dev' src/contrib.mak:511: warning: ignoring old commands for target `obj/DJ6xx.dev' src/contrib.mak:1314: warning: overriding commands for target `obj/DJ6xxP.dev' src/contrib.mak:514: warning: ignoring old commands for target `obj/DJ6xxP.dev' src/contrib.mak:1317: warning: overriding commands for target `obj/DJ8xx.dev' src/contrib.mak:517: warning: ignoring old commands for target `obj/DJ8xx.dev' src/contrib.mak:1320: warning: overriding commands for target `obj/DJ9xx.dev' src/contrib.mak:520: warning: ignoring old commands for target `obj/DJ9xx.dev' src/contrib.mak:1323: warning: overriding commands for target `obj/DJ9xxVIP.dev' src/contrib.mak:523: warning: ignoring old commands for target `obj/DJ9xxVIP.dev' src/contrib.mak:1326: warning: overriding commands for target `obj/AP21xx.dev' src/contrib.mak:526: warning: ignoring old commands for target `obj/AP21xx.dev' src/contrib.mak:1421: warning: overriding commands for target `obj/gdevhpdj.o' src/contrib.mak:999: warning: ignoring old commands for target `obj/gdevhpdj.o' src/contrib.mak:1424: warning: overriding commands for target `obj/hpdjdata.o' src/contrib.mak:1002: warning: ignoring old commands for target `obj/hpdjdata.o' src/contrib.mak:1427: warning: overriding commands for target `obj/hpdjparm.o' src/contrib.mak:1005: warning: ignoring old commands for target `obj/hpdjparm.o' src/contrib.mak:1430: warning: overriding commands for target `obj/hpdjprn.o' src/contrib.mak:1008: warning: ignoring old commands for target `obj/hpdjprn.o' src/contrib.mak:1435: warning: overriding commands for target `obj/hpdj.dev' src/contrib.mak:1013: warning: ignoring old commands for target `obj/hpdj.dev' src/contrib.mak:1527: warning: overriding commands for target `obj/mediasize.o' src/contrib.mak:1105: warning: ignoring old commands for target `obj/mediasize.o' src/contrib.mak:1531: warning: overriding commands for target `obj/gdeveprn.o' src/contrib.mak:1109: warning: ignoring old commands for target `obj/gdeveprn.o' src/contrib.mak:1534: warning: overriding commands for target `obj/eprnparm.o' src/contrib.mak:1112: warning: ignoring old commands for target `obj/eprnparm.o' src/contrib.mak:1537: warning: overriding commands for target `obj/eprnrend.o' src/contrib.mak:1115: warning: ignoring old commands for target `obj/eprnrend.o' src/contrib.mak:1540: warning: overriding commands for target `obj/eprnfs.o' src/contrib.mak:1118: warning: ignoring old commands for target `obj/eprnfs.o' src/contrib.mak:1545: warning: overriding commands for target `obj/pagecount.o' src/contrib.mak:1123: warning: ignoring old commands for target `obj/pagecount.o' src/contrib.mak:1574: warning: overriding commands for target `obj/pclgen.o' src/contrib.mak:1152: warning: ignoring old commands for target `obj/pclgen.o' src/contrib.mak:1578: warning: overriding commands for target `obj/pclsize.o' src/contrib.mak:1156: warning: ignoring old commands for target `obj/pclsize.o' src/contrib.mak:1581: warning: overriding commands for target `obj/pclcap.o' src/contrib.mak:1159: warning: ignoring old commands for target `obj/pclcap.o' src/contrib.mak:1584: warning: overriding commands for target `obj/gdevpcl3.o' src/contrib.mak:1162: warning: ignoring old commands for target `obj/gdevpcl3.o' src/contrib.mak:1588: warning: overriding commands for target `obj/pclcomp.o' src/contrib.mak:1166: warning: ignoring old commands for target `obj/pclcomp.o' src/contrib.mak:1597: warning: overriding commands for target `obj/pcl3.dev' src/contrib.mak:1175: warning: ignoring old commands for target `obj/pcl3.dev' src/contrib.mak:1601: warning: overriding commands for target `obj/hpdjplus.dev' src/contrib.mak:1179: warning: ignoring old commands for target `obj/hpdjplus.dev' src/contrib.mak:1603: warning: overriding commands for target `obj/hpdjportable.dev' src/contrib.mak:1181: warning: ignoring old commands for target `obj/hpdjportable.dev' src/contrib.mak:1605: warning: overriding commands for target `obj/hpdj310.dev' src/contrib.mak:1183: warning: ignoring old commands for target `obj/hpdj310.dev' src/contrib.mak:1607: warning: overriding commands for target `obj/hpdj320.dev' src/contrib.mak:1185: warning: ignoring old commands for target `obj/hpdj320.dev' src/contrib.mak:1609: warning: overriding commands for target `obj/hpdj340.dev' src/contrib.mak:1187: warning: ignoring old commands for target `obj/hpdj340.dev' src/contrib.mak:1611: warning: overriding commands for target `obj/hpdj400.dev' src/contrib.mak:1189: warning: ignoring old commands for target `obj/hpdj400.dev' src/contrib.mak:1613: warning: overriding commands for target `obj/hpdj500.dev' src/contrib.mak:1191: warning: ignoring old commands for target `obj/hpdj500.dev' src/contrib.mak:1615: warning: overriding commands for target `obj/hpdj500c.dev' src/contrib.mak:1193: warning: ignoring old commands for target `obj/hpdj500c.dev' src/contrib.mak:1617: warning: overriding commands for target `obj/hpdj510.dev' src/contrib.mak:1195: warning: ignoring old commands for target `obj/hpdj510.dev' src/contrib.mak:1619: warning: overriding commands for target `obj/hpdj520.dev' src/contrib.mak:1197: warning: ignoring old commands for target `obj/hpdj520.dev' src/contrib.mak:1621: warning: overriding commands for target `obj/hpdj540.dev' src/contrib.mak:1199: warning: ignoring old commands for target `obj/hpdj540.dev' src/contrib.mak:1623: warning: overriding commands for target `obj/hpdj550c.dev' src/contrib.mak:1201: warning: ignoring old commands for target `obj/hpdj550c.dev' src/contrib.mak:1625: warning: overriding commands for target `obj/hpdj560c.dev' src/contrib.mak:1203: warning: ignoring old commands for target `obj/hpdj560c.dev' src/contrib.mak:1627: warning: overriding commands for target `obj/hpdj600.dev' src/contrib.mak:1205: warning: ignoring old commands for target `obj/hpdj600.dev' src/contrib.mak:1629: warning: overriding commands for target `obj/hpdj660c.dev' src/contrib.mak:1207: warning: ignoring old commands for target `obj/hpdj660c.dev' src/contrib.mak:1631: warning: overriding commands for target `obj/hpdj670c.dev' src/contrib.mak:1209: warning: ignoring old commands for target `obj/hpdj670c.dev' src/contrib.mak:1633: warning: overriding commands for target `obj/hpdj680c.dev' src/contrib.mak:1211: warning: ignoring old commands for target `obj/hpdj680c.dev' src/contrib.mak:1635: warning: overriding commands for target `obj/hpdj690c.dev' src/contrib.mak:1213: warning: ignoring old commands for target `obj/hpdj690c.dev' src/contrib.mak:1637: warning: overriding commands for target `obj/hpdj850c.dev' src/contrib.mak:1215: warning: ignoring old commands for target `obj/hpdj850c.dev' src/contrib.mak:1639: warning: overriding commands for target `obj/hpdj855c.dev' src/contrib.mak:1217: warning: ignoring old commands for target `obj/hpdj855c.dev' src/contrib.mak:1641: warning: overriding commands for target `obj/hpdj870c.dev' src/contrib.mak:1219: warning: ignoring old commands for target `obj/hpdj870c.dev' src/contrib.mak:1643: warning: overriding commands for target `obj/hpdj890c.dev' src/contrib.mak:1221: warning: ignoring old commands for target `obj/hpdj890c.dev' src/contrib.mak:1645: warning: overriding commands for target `obj/hpdj1120c.dev' src/contrib.mak:1223: warning: ignoring old commands for target `obj/hpdj1120c.dev' src/contrib.mak:1659: warning: overriding commands for target `bin/pcl3opts' src/contrib.mak:1237: warning: ignoring old commands for target `bin/pcl3opts' src/contrib.mak:1670: warning: overriding commands for target `pcl3-install' src/contrib.mak:1248: warning: ignoring old commands for target `pcl3-install' src/contrib.mak:1688: warning: overriding commands for target `obj/stp.dev' src/contrib.mak:1266: warning: ignoring old commands for target `obj/stp.dev' src/contrib.mak:1691: warning: overriding commands for target `obj/gdevstp.o' src/contrib.mak:1269: warning: ignoring old commands for target `obj/gdevstp.o' src/contrib.mak:1694: warning: overriding commands for target `obj/gdevstp-util.o' src/contrib.mak:1272: warning: ignoring old commands for target `obj/gdevstp-util.o' src/contrib.mak:1697: warning: overriding commands for target `obj/gdevstp-weave.o' src/contrib.mak:1275: warning: ignoring old commands for target `obj/gdevstp-weave.o' src/contrib.mak:1700: warning: overriding commands for target `obj/gdevstp-dither.o' src/contrib.mak:1278: warning: ignoring old commands for target `obj/gdevstp-dither.o' src/contrib.mak:1703: warning: overriding commands for target `obj/gdevstp-escp2.o' src/contrib.mak:1281: warning: ignoring old commands for target `obj/gdevstp-escp2.o' src/contrib.mak:1706: warning: overriding commands for target `obj/gdevstp-pcl.o' src/contrib.mak:1284: warning: ignoring old commands for target `obj/gdevstp-pcl.o' src/contrib.mak:1709: warning: overriding commands for target `obj/gdevstp-canon.o' src/contrib.mak:1287: warning: ignoring old commands for target `obj/gdevstp-canon.o' src/contrib.mak:1712: warning: overriding commands for target `obj/gdevstp-ps.o' src/contrib.mak:1290: warning: ignoring old commands for target `obj/gdevstp-ps.o' src/contrib.mak:1717: warning: overriding commands for target `escputil' src/contrib.mak:1295: warning: ignoring old commands for target `escputil' src/contrib.mak:1724: warning: overriding commands for target `obj/gdevhpij.o' src/contrib.mak:1302: warning: ignoring old commands for target `obj/gdevhpij.o' src/contrib.mak:1727: warning: overriding commands for target `obj/hpijs.dev' src/contrib.mak:1305: warning: ignoring old commands for target `obj/hpijs.dev' src/contrib.mak:1730: warning: overriding commands for target `obj/DJ630.dev' src/contrib.mak:1308: warning: ignoring old commands for target `obj/DJ630.dev' src/contrib.mak:1733: warning: overriding commands for target `obj/DJ6xx.dev' src/contrib.mak:1311: warning: ignoring old commands for target `obj/DJ6xx.dev' src/contrib.mak:1736: warning: overriding commands for target `obj/DJ6xxP.dev' src/contrib.mak:1314: warning: ignoring old commands for target `obj/DJ6xxP.dev' src/contrib.mak:1739: warning: overriding commands for target `obj/DJ8xx.dev' src/contrib.mak:1317: warning: ignoring old commands for target `obj/DJ8xx.dev' src/contrib.mak:1742: warning: overriding commands for target `obj/DJ9xx.dev' src/contrib.mak:1320: warning: ignoring old commands for target `obj/DJ9xx.dev' src/contrib.mak:1745: warning: overriding commands for target `obj/DJ9xxVIP.dev' src/contrib.mak:1323: warning: ignoring old commands for target `obj/DJ9xxVIP.dev' src/contrib.mak:1748: warning: overriding commands for target `obj/AP21xx.dev' src/contrib.mak:1326: warning: ignoring old commands for target `obj/AP21xx.dev' src/gnudevs.mak:84: warning: overriding commands for target `obj/cdj670.dev' src/contrib.mak:894: warning: ignoring old commands for target `obj/cdj670.dev' src/gnudevs.mak:89: warning: overriding commands for target `obj/cdj850.dev' src/contrib.mak:891: warning: ignoring old commands for target `obj/cdj850.dev' src/gnudevs.mak:94: warning: overriding commands for target `obj/cdj890.dev' src/contrib.mak:897: warning: ignoring old commands for target `obj/cdj890.dev' src/gnudevs.mak:99: warning: overriding commands for target `obj/cdj1600.dev' src/contrib.mak:900: warning: ignoring old commands for target `obj/cdj1600.dev' src/gnudevs.mak:103: warning: overriding commands for target `obj/gdevcd8.o' src/contrib.mak:904: warning: ignoring old commands for target `obj/gdevcd8.o' gmake: *** No rule to make target `jpeg/jpeglib.h', needed by `obj/jpeglib0.h'. Stop. *** Error code 2 Stop in /u/onceler1/usr/ports/print/ghostscript-gnu. *** Error code 1 Stop in /u/onceler1/usr/ports/print/ghostscript-gnu. *** Error code 1 Stop in /u/onceler1/usr/ports/print/ghostscript-gnu. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 12:50:15 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AA1237B417 for ; Tue, 11 Dec 2001 12:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBKo1121538; Tue, 11 Dec 2001 12:50:01 -0800 (PST) (envelope-from gnats) Received: from yertle.kciLink.com (yertle.kcilink.com [216.194.193.105]) by hub.freebsd.org (Postfix) with ESMTP id 3605337B419 for ; Tue, 11 Dec 2001 12:44:39 -0800 (PST) Received: from onceler.kciLink.com (onceler.kciLink.com [216.194.193.106]) by yertle.kciLink.com (Postfix) with ESMTP id C6E301E841 for ; Tue, 11 Dec 2001 15:44:32 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.6/8.11.6) id fBBKiWR37483; Tue, 11 Dec 2001 15:44:32 -0500 (EST) (envelope-from khera) Message-Id: <200112112044.fBBKiWR37483@onceler.kciLink.com> Date: Tue, 11 Dec 2001 15:44:32 -0500 (EST) From: Vivek Khera Reply-To: Vivek Khera To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32708: kdegraphics doesn't require ghostscript port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32708 >Category: ports >Synopsis: kdegraphics doesn't require ghostscript port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 12:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Vivek Khera >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD onceler.kciLink.com 4.4-STABLE FreeBSD 4.4-STABLE #4: Tue Dec 11 10:12:07 EST 2001 khera@onceler.kciLink.com:/amd/yertle/u/yertle2/usr.obj/amd/onceler/u/onceler1/usr/src/sys/ONCELER i386 >Description: kdegraphics2 port installs kghostview, but doesn't require that ghostscript be installed. >How-To-Repeat: >Fix: add ghostscript to list of run-time dependencies. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 12:59:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2864337B405; Tue, 11 Dec 2001 12:59:33 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBKqOD21840; Tue, 11 Dec 2001 12:52:24 -0800 (PST) (envelope-from petef) Date: Tue, 11 Dec 2001 12:52:24 -0800 (PST) From: Message-Id: <200112112052.fBBKqOD21840@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/32704: update ical to use tk8.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update ical to use tk8.3 Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: petef Responsible-Changed-When: Tue Dec 11 12:52:19 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32704 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 12:59:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC04A37B417; Tue, 11 Dec 2001 12:59:33 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBKrS021981; Tue, 11 Dec 2001 12:53:28 -0800 (PST) (envelope-from petef) Date: Tue, 11 Dec 2001 12:53:28 -0800 (PST) From: Message-Id: <200112112053.fBBKrS021981@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, kiri@FreeBSD.org Subject: Re: ports/32705: update of xemacs-packages list to current packages Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update of xemacs-packages list to current packages Responsible-Changed-From-To: freebsd-ports->kiri Responsible-Changed-By: petef Responsible-Changed-When: Tue Dec 11 12:53:21 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32705 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 12:59:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C36837B416; Tue, 11 Dec 2001 12:59:33 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBKsZB22225; Tue, 11 Dec 2001 12:54:35 -0800 (PST) (envelope-from petef) Date: Tue, 11 Dec 2001 12:54:35 -0800 (PST) From: Message-Id: <200112112054.fBBKsZB22225@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/32708: kdegraphics doesn't require ghostscript port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: kdegraphics doesn't require ghostscript port Responsible-Changed-From-To: freebsd-ports->kde Responsible-Changed-By: petef Responsible-Changed-When: Tue Dec 11 12:54:26 PST 2001 Responsible-Changed-Why: Over to maintainers http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32708 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 12:59:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DF4E37B41D; Tue, 11 Dec 2001 12:59:34 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBKrnl22070; Tue, 11 Dec 2001 12:53:49 -0800 (PST) (envelope-from petef) Date: Tue, 11 Dec 2001 12:53:49 -0800 (PST) From: Message-Id: <200112112053.fBBKrnl22070@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, mharo@FreeBSD.org Subject: Re: ports/32706: www/analog: install images to /usr/local/share/analog/images/, not to /usr/local/www/data/images/. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/analog: install images to /usr/local/share/analog/images/, not to /usr/local/www/data/images/. Responsible-Changed-From-To: freebsd-ports->mharo Responsible-Changed-By: petef Responsible-Changed-When: Tue Dec 11 12:53:43 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32706 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 13:19:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E44B37B419; Tue, 11 Dec 2001 13:19:33 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBLIDv28093; Tue, 11 Dec 2001 13:18:13 -0800 (PST) (envelope-from petef) Date: Tue, 11 Dec 2001 13:18:13 -0800 (PST) From: Message-Id: <200112112118.fBBLIDv28093@freefall.freebsd.org> To: kwerle@pobox.com, petef@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/31385: grip fails to build out of the box Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: grip fails to build out of the box State-Changed-From-To: analyzed->closed State-Changed-By: petef State-Changed-When: Tue Dec 11 13:17:22 PST 2001 State-Changed-Why: I cannot repeat this problem, and submitter no longer has a machine to test on. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31385 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 13:40:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E2F837B417 for ; Tue, 11 Dec 2001 13:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBLe1K32560; Tue, 11 Dec 2001 13:40:01 -0800 (PST) (envelope-from gnats) Received: from pm3-09.lft.widomaker.com (pm3-09.lft.widomaker.com [206.246.249.121]) by hub.freebsd.org (Postfix) with ESMTP id 6CDE737B419 for ; Tue, 11 Dec 2001 13:32:30 -0800 (PST) Received: (from jason@localhost) by pm3-09.lft.widomaker.com (8.11.3/8.11.3) id fBBLWLg02410; Tue, 11 Dec 2001 16:32:22 -0500 (EST) (envelope-from jason) Message-Id: <200112112132.fBBLWLg02410@pm3-09.lft.widomaker.com> Date: Tue, 11 Dec 2001 16:32:22 -0500 (EST) From: Jason Harris To: FreeBSD-gnats-submit@freebsd.org Cc: Jason Harris X-Send-Pr-Version: 3.113 Subject: ports/32709: new port: sysutils/file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32709 >Category: ports >Synopsis: new port: sysutils/file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 13:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jason Harris >Release: FreeBSD 4.3-RELEASE i386 >Organization: none here >Environment: System: 4.3-RELEASE i386 >Description: port submission: file-3.37 is in -current, but installing it as a port allows those of us running 4.3-RELEASE or earlier an easy way to upgrade. >How-To-Repeat: N/A >Fix: cd to /usr and unshar the attached port. (This port was created a while ago, but a certain committer (who shall remain nameless) keeps forgetting about it. :) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 NotDashEscaped: You need GnuPG to verify this message # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ports/sysutils/file/Makefile # ports/sysutils/file/distinfo # ports/sysutils/file/pkg-comment # ports/sysutils/file/pkg-descr # ports/sysutils/file/pkg-plist # echo x - ports/sysutils/file/Makefile sed 's/^X//' >ports/sysutils/file/Makefile << 'END-of-ports/sysutils/file/Makefile' X# New ports collection makefile for: file X# Date created: 2001-11-10 X# Whom: Jason Harris X# X# $FreeBSD$ X# X XPORTNAME= file XPORTVERSION= 3.37 XCATEGORIES= sysutils XMASTER_SITES= ftp://ftp.astron.com/pub/file/ \ X ftp://ftp.gw.com/mirrors/pub/unix/file/ \ X ftp://ftp.netsw.org/system/tools/fileutils/find/ \ X ftp://ftp.fu-berlin.de/unix/tools/file/ X XMAINTAINER= ports@FreeBSD.org X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --enable-fsect-man5 XMAN1= file.1 XMAN5= magic.5 X X.include END-of-ports/sysutils/file/Makefile echo x - ports/sysutils/file/distinfo sed 's/^X//' >ports/sysutils/file/distinfo << 'END-of-ports/sysutils/file/distinfo' XMD5 (file-3.37.tar.gz) = 5743b2fc24743b6188504762d40c0b4c END-of-ports/sysutils/file/distinfo echo x - ports/sysutils/file/pkg-comment sed 's/^X//' >ports/sysutils/file/pkg-comment << 'END-of-ports/sysutils/file/pkg-comment' XFile - determine file type END-of-ports/sysutils/file/pkg-comment echo x - ports/sysutils/file/pkg-descr sed 's/^X//' >ports/sysutils/file/pkg-descr << 'END-of-ports/sysutils/file/pkg-descr' XFile - determine file type X XFile tests each argument in an attempt to classify it. XThere are three sets of tests, performed in this order: Xfilesystem tests, magic number tests, and language tests. XThe first test that succeeds causes the file type to be Xprinted. END-of-ports/sysutils/file/pkg-descr echo x - ports/sysutils/file/pkg-plist sed 's/^X//' >ports/sysutils/file/pkg-plist << 'END-of-ports/sysutils/file/pkg-plist' Xbin/file Xshare/magic Xshare/magic.mime Xshare/magic.mgc END-of-ports/sysutils/file/pkg-plist exit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8FnggSypIl9OdoOMRAn7VAJkBgSiLrSvbRrLYOXb4WkNDPY5F1ACgucV2 kBgzCOrkurnQn3SL4J6T6YQ= =YNiP -----END PGP SIGNATURE----- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 13:49:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F60037B416; Tue, 11 Dec 2001 13:49:33 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBLdgq32496; Tue, 11 Dec 2001 13:39:42 -0800 (PST) (envelope-from petef) Date: Tue, 11 Dec 2001 13:39:42 -0800 (PST) From: Message-Id: <200112112139.fBBLdgq32496@freefall.freebsd.org> To: mario@tecdigital.net, petef@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32493: [palm/malsync checksum mismatch] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [palm/malsync checksum mismatch] State-Changed-From-To: open->closed State-Changed-By: petef State-Changed-When: Tue Dec 11 13:39:28 PST 2001 State-Changed-Why: This was fixed by dirk@ a week ago, thanks for your report http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32493 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 13:50:17 2001 Delivered-To: freebsd-ports@freebsd.org Received: from anchor-post-30.mail.demon.net (anchor-post-30.mail.demon.net [194.217.242.88]) by hub.freebsd.org (Postfix) with ESMTP id D7AA237B405 for ; Tue, 11 Dec 2001 13:50:08 -0800 (PST) Received: from fmsuk.demon.co.uk ([212.228.100.137] helo=francisca01.francisca.co.uk) by anchor-post-30.mail.demon.net with esmtp (Exim 2.12 #1) id 16DumQ-000Dc6-0U; Tue, 11 Dec 2001 21:49:39 +0000 Received: from mta.excite.com (1Cust88.tnt1.plano.tx.da.uu.net [67.202.27.88]) by francisca01.francisca.co.uk with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id X47KXYK7; Tue, 11 Dec 2001 21:39:21 -0000 Message-ID: <0000266037e7$0000180a$00003d9f@mta.excite.com> To: From: NewSEPTalert@excite.com Subject: OTC: SEPT..Great Growth Potential with Revolutionary New Product.. Date: Tue, 11 Dec 2001 15:42:49 -1800 MIME-Version: 1.0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Reply-To: INewsAlert49@excite.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org

Informational Alert!
This Week's S= potlight!

September Group, Inc. (OTC: SEPT)=

Current Pric= e: $0.20

52 Week High: $1.2= 0  - 52 Week Low: $0.10

A Brief Introduction

September Group, Inc. (OTC:SEPT) is in negotiations with a multi-million dollar International concrete manufacturing company.  This company has numerous manufacturing pla= nts in the USA and abroad.

Currently, it is producing concrete with a new technology.=

This new product will burn at a much slower rate than any specialty concrete used in today's construction industry.<= /font>

The Versatility of the Technology

Not often does a new technology arise and immediately find its= role in countless fields and applications. This versatility can= be attributed to a technology with very unique qualities.

This "new generation" concrete is a technology t= hat can immediately find applications in every facet of the construction industry.
 Technology Comparisons

1. Standard Conc= rete has a fire rating of 1 inch
burned every 30 minutes at the temperature of 1100 degrees.

2. The Concrete with the highest fire resis= tance in the marketplace today has a fire rating of
only 1 inch every 3 hours at the temperature of 1100 degr= ees and is considered the best available product...until n= ow

3. This revolutionary new technology has produc= ed a Concrete product capable of setting a new industry sta= ndard.

4. This new pro= duct offers an incredible fire rating of 1 inch every 10 hours at = 1800 degrees.

5. We believe this new product will hav= e a great impact on the construction industry,  by of= fering substantially more time when precious moments really m= atter.

"Safety has become the No. 1  topic on people minds today!&qu= ot;

Latest News

= Dec 7, = 2001=
LAS VEGAS--(BUSINESS WIRE)--Dec. 7, 2001--September Group Inc. (OTC:SEPT) provides the following update to its shareholders.

The company is co= ntinuing to evaluate acquisition candidates that are viable businesses, so as to provide a base of operations, a= nd cash flow. One acquisition in particular that has be= en previously referenced is a multi-million dollar U.S.= -based cement and block manufacturer.

This company's ce= ment block products are distinctive in that they have an extrem= ely high fire resistance, using revolutionary technology= in its formulation. The product offers a fire rating of= one inch every 10 hours at 1,800 degrees, which manageme= nt believes will have a great impact on the constructio= n industry....

Dec= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 14:38:50 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hub.FreeBSD.ORG (host-64-110-64-19.interpacket.net [64.110.64.19]) by hub.freebsd.org (Postfix) with SMTP id 4770F37B405 for ; Tue, 11 Dec 2001 14:38:08 -0800 (PST) From: "JAMES EMEKA" Date: Tue, 11 Dec 2001 23:31:15 To: ports@FreeBSD.ORG Subject: IMPORTANT MIME-Version: 1.0 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20011211223808.4770F37B405@hub.freebsd.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org From:Dr.James Emeka FAX:44-7799289001(satellite phone). Lagos-Nigeria. Attn:President/Ceo. STRICTLY CONFIDENTIAL BUSINESS PROPOSAL RE: TRANSFER OF US$21.5 MILLION (TWENTY ONE MILLION, FIVE HUNDRED THOUSAND US DOLLARS ONLY). I know this email will reach you as a surprise, but need not to worry as we are using the only secured and confidential medium available to seek for foreign assistance/partnership in a business transaction which is of mutual benefit. I am a member of the Federal Government of Nigeria Contract Award and Monitoring Committee in the Nigeria National Petroleum Corporatio(NNPC). Sometime ago, a contract was awarded to a foreign firm in NNPC by my Committee. This contract was over invoiced to the tune of US$21.5M. U.S. Dollars. This was done deliberately. The over-invoicing was a deal by my committee to benefit from the project. We now want to transfer this money which is in a suspense Account with NNPC into any Overseas Account which we expect you to provide for us. SHARE: - For assisting us in this deal, you will be entitled to 30% of the money,60% will be for me and my partners while 10% has been mapped out from the total sum to cover any expenses that maybe incurred by us during the course of this transfer, both locally and international expenses. It may interest you to know that a similar transaction was carried out with one MR. PATRICE MILLER, President of Crane International Trading Corp. of 153 East 57th St., 28th floor, NY10022, TEL:(212)-308-7788 AND TELEX: 6731689. The deal was concluded and all covering documents were forwarded to MR. MILLER to authenticate the claim. Once the funds were transferred, MR. MILLER presented his Bank with all the legal documents and remitted the whole funds to another Bank Account and disappeared completely. My colleagues were shattered, as such opportunities do not come all the time. I would require your company's name,address,telephone cell phone and fax numbers and also, your banking details where the funds will be remitted to. The above information would be used to make formal applications as a matter of procedure for the release of the money. It does not matter whether or not your company does contract projects of this nature described here. The assumption is that your company won the major contract and subcontracted it out to other companies. More often than not, big trading companies or firms of unrelated fields win major contracts and subcontracts to more specialized firms for execution of such contracts. We have strong reliable connections and contacts at the Central Bank of Nigeria, as well as the Federal Ministry of Finance and we have no doubt that all the money will be released and transferred if we get the necessary foreign partner to assist us in this deal. Therefore,when the business is successfully concluded we shall through our same connections withdraw all documents used from all the concerned Government Ministries for 100% security. We are ordinary civil servants and we will not want to miss this once in a lifetime opportunity to get rich. We want this money to be transferred to your nominated bank for us, before the present Democratic Government start Auditing all Federal Government owned Parastatals. Please contact me immediately through my fax number whether or not you are interested in this deal.If you are not,it will enable me scout for another foreign partner to carry out this deal. But where you are interested, send the required documents aforementioned herein through my above fax number, as time is of the essence in this business. I wait in anticipation of your fullest co-operation. Yours faithfully, Dr.James Emeka. NB:Please when dialing my fax number, don't include 234,just dail your country access number+44-7799289001. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 15:30:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD1D837B41B for ; Tue, 11 Dec 2001 15:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBNU1d21310; Tue, 11 Dec 2001 15:30:01 -0800 (PST) (envelope-from gnats) Received: from postfix2-2.free.fr (postfix2-2.free.fr [213.228.0.140]) by hub.freebsd.org (Postfix) with ESMTP id C0FFB37B416 for ; Tue, 11 Dec 2001 15:23:07 -0800 (PST) Received: from graf.pompo.net (lyon-2-a7-21-193.dial.proxad.net [62.147.21.193]) by postfix2-2.free.fr (Postfix) with ESMTP id DDC565F829 for ; Wed, 12 Dec 2001 00:23:03 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id 85C6B7510; Tue, 11 Dec 2001 23:59:50 +0100 (CET) Message-Id: <20011211225950.85C6B7510@graf.pompo.net> Date: Tue, 11 Dec 2001 23:59:50 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32710: Maintainer update: upgrade devel/pear to 4.1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32710 >Category: ports >Synopsis: Maintainer update: upgrade devel/pear to 4.1.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 15:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.4-STABLE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Nov 25 07:49:02 CET 2001 root@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF010429 i386 >Description: Upgrade the port PEAR from 4.0.7RC3 to 4.1.0. >How-To-Repeat: Apply the following patch. >Fix: diff -ruN /usr/ports/devel/pear.orig/Makefile /usr/ports/devel/pear/Makefile --- /usr/ports/devel/pear.orig/Makefile Mon Dec 3 03:31:03 2001 +++ /usr/ports/devel/pear/Makefile Tue Dec 11 21:54:29 2001 @@ -6,16 +6,16 @@ # PORTNAME= pear -PORTVERSION= 4.0.7 +PORTVERSION= 4.1.0 CATEGORIES= devel www MASTER_SITES= ftp://ftp.horde.org/pub/horde/tarballs/ PKGNAMESUFFIX= -devel -DISTNAME= ${PORTNAME}-${PORTVERSION}RC3 MAINTAINER= thierry@thomas.as RUN_DEPENDS= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4 +USE_BZIP2= yes NO_BUILD= yes LPHP_LIB?= lib/php diff -ruN /usr/ports/devel/pear.orig/distinfo /usr/ports/devel/pear/distinfo --- /usr/ports/devel/pear.orig/distinfo Sat Nov 10 02:21:02 2001 +++ /usr/ports/devel/pear/distinfo Tue Dec 11 21:53:17 2001 @@ -1 +1 @@ -MD5 (pear-4.0.7RC3.tar.gz) = 36c1ee4a55f58e0824abbac19d98b65d +MD5 (pear-4.1.0.tar.bz2) = 991e8ab60d44b5e9641fffadb9bb28bd diff -ruN /usr/ports/devel/pear.orig/pkg-plist /usr/ports/devel/pear/pkg-plist --- /usr/ports/devel/pear.orig/pkg-plist Sat Nov 10 12:32:02 2001 +++ /usr/ports/devel/pear/pkg-plist Tue Dec 11 22:05:00 2001 @@ -19,6 +19,7 @@ %%PEARDIR%%/Date/Calc.php %%PEARDIR%%/Date/Human.php %%PEARDIR%%/DB/common.php +%%PEARDIR%%/DB/fbsql.php %%PEARDIR%%/DB/ibase.php %%PEARDIR%%/DB/ifx.php %%PEARDIR%%/DB/msql.php @@ -50,6 +51,7 @@ %%PEARDIR%%/Log/sql.php %%PEARDIR%%/Log/syslog.php %%PEARDIR%%/Mail/RFC822.php +%%PEARDIR%%/Mail/mime.php %%PEARDIR%%/Mail/sendmail.php %%PEARDIR%%/Mail/smtp.php %%PEARDIR%%/Math/Fraction.php @@ -61,8 +63,11 @@ %%PEARDIR%%/Numbers/Roman.php %%PEARDIR%%/Payment/Verisign.php %%PEARDIR%%/PEAR/Common.php +%%PEARDIR%%/PEAR/Config.php %%PEARDIR%%/PEAR/Installer.php %%PEARDIR%%/PEAR/Packager.php +%%PEARDIR%%/PEAR/Registry.php +%%PEARDIR%%/PEAR/Remote.php %%PEARDIR%%/PEAR/Uploader.php %%PEARDIR%%/Schedule/At.php %%PEARDIR%%/XML/Parser.php @@ -85,6 +90,7 @@ %%PEARDIR%%/Log.php %%PEARDIR%%/Mail.php %%PEARDIR%%/PEAR.php +%%PEARDIR%%/System.php @dirrm %%PEARDIR%%/Archive @dirrm %%PEARDIR%%/Benchmark @dirrm %%PEARDIR%%/Cache/Container >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 15:30:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D411337B41D for ; Tue, 11 Dec 2001 15:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBNU1j21324; Tue, 11 Dec 2001 15:30:01 -0800 (PST) (envelope-from gnats) Received: from postfix2-2.free.fr (postfix2-2.free.fr [213.228.0.140]) by hub.freebsd.org (Postfix) with ESMTP id B6C0F37B416 for ; Tue, 11 Dec 2001 15:23:13 -0800 (PST) Received: from graf.pompo.net (lyon-2-a7-21-193.dial.proxad.net [62.147.21.193]) by postfix2-2.free.fr (Postfix) with ESMTP id E64A95F859 for ; Wed, 12 Dec 2001 00:23:03 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id E9547751D; Wed, 12 Dec 2001 00:12:27 +0100 (CET) Message-Id: <20011211231227.E9547751D@graf.pompo.net> Date: Wed, 12 Dec 2001 00:12:27 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32711: Maintainer update: make libmcal OK for kronolith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32711 >Category: ports >Synopsis: Maintainer update: make libmcal OK for kronolith >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 15:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.4-STABLE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Nov 25 07:49:02 CET 2001 root@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF010429 i386 >Description: Release 0.6 of libmcal does not run very well with kronolith: I have had to apply some patches (mostly from the CVS tree). >How-To-Repeat: NA >Fix: Apply the following patch: begin 644 patch.libmcal.tar.gz M'XL(`!*1%CP``\P\:WO:QM+]BG_%')\F`2.,)&X&@AMB2.+6V'D`)R=OVX=' MEH11#1+5)8Z;\M_/S.[J!L+&J=OW$,>@W9W+SL[.;1UZ*+->K5?@.Z"6OO2NR6J\I`(VJ7*OA0Z..;4JC5OL.Y+^)G]0K\'S-!?C. M=1S_OG&W,]/\NP3T__@RK.D42FYP#N7`<\M+Q_6]\L+R]++0B4/'M:[+`^W& MG%IS<]NH:,!>J53:#55NI/EP[GP&M0I*O:4T6]4C4&59V2L6BP_2R8T"&WJF M#M`$56FIM992Y]"O7D&I(=6AV)`:\.K5'NS!^XOA^+P[Z'=R`@UO^M`?CDXO MSCLY^;"^5Z268?_#*6]2]N"D.^Z_O1B>]D>='/&P!X/N:-P?3D:G8VK[_FOB M>3*ZN!R>]-]<#-_V5ZF1D]'EZ][ID,:'?*P8DY4J,EBLU)!78A/[3]ZOH+0< MPO=?/PY_&@U/>L,/J[*E:\NH9<7ZLXI;RPO,=UXR7:&O/H6%Y_L,(#M^X MIOEZU-L^8J]$D^D/SXA="THF['NMLNGKY<52\[Q;HX7=P_Z;T_^L4JW[FRCY MVZ&>P19-/&M6J?9M# MB]X*@N*7+,CMTA_VN[U!?UO[(7]"92XN'<\O+QT&S#:Z5!TD^YQ8UAN5#^ MK+EE-&](4W/71NBSA6.`TF@T[ANVQM?8@5O'O8%;RY\QOL12\O66(/!"#>@N M-7UFOO!@YG,E@\"WYI9_MS[5.R>`A78'NFMJOLF1"@BVSR-28N(H7)3$_;./ M:)9T5(JSBY/NV>ONJ)]2>N35=&UM83XT8+F^.]'>,+DK!79E:M MI!E;O7]ZV,.Q1GI\;CP+X$?-Q@`39*4ER_@#2K,AWQMQK.&@J(7%'4D/R]4=U-K^%PPGD&0&L,HHE>5Z66V`J@KJFG>CS;T;*X0$.&"_X(Q+"$HP M<(Q@CF'TB3`JT-5UT_-HA*NY=WSXB;.\0S',?,B?%!B+,-#0N`P"S[%Q-^%> M[]J&:]["B!/D4ZZH+$Q2>317A'];4]LPI[G)ZXN+L\D[:L%'RS83+2B;:-A$ M7\X#C_Y/)CCMC'8$\.^6)K6:=K"`KS!%^J8$OAN8L&(2:A,=[F$0_;=H]?;8 M.3WLD5IM/H%6F^M:76M5FQM:W:A$6DVFT;<6&"]PS29P7$M,W$"NH,ZTJJI0 M6N(A'LUX':#UQX%(IXJ[IY+2[AH1JO&%+J.:E4!H:8PCI:F5,I%4!4E]%N@W MD8)O`:T(T!J!4M;!F+!LE&"LX/^`;K-M1+-6CV2,A(KT5A$Z_A7_YUS3#UP; M#']B:'?.U%PZ^BQO^`5X!@U21S3C)?93)$D5]9GFTGLX_M8T;SS?S6/@X?F1 M$"8^'"`.'(0SZ1:`@>5T"E?D%ON<0RKZ M\@[R'(\$^Z/+_4*;]UVAF[]IQS#*-IC!Q588=1O,>#N=RC:8C_VM,-6M=-YM MA:EM@WDSW`I3WRJW;@;,BGX)7>`CV]B/C=1Q4$9%L&P??Z?7:\NJT_*QO`6# M\`HF+D=-2>7;&HA0I'2W0L&*^(/H@>L5"VJ=Z<*Q_5D>LDA(8:OEFCI%NI/$ MYTCK8IB<;RZ6$\.'#O3&D]/STS&;,Y+,\2[\Q%I2FADA3&HCPF/V_;$[[`GQ M(L.>Z2.KMRB7_'-!24)!E8[O3,WEGW`R$B@2)+<-T_9P)4(VD,4\`\!A:!8$ MND-Z+)0;ZX.+15HE>I7+5&'R43`!MJ.A1&*VX\,?*,IL_<"9O.Z>_)282KG, M0*XPY_)YBU@GYJ@VU"227*@FW^2PIKLYC^DC'=;T"1S6=-UA-5J5S3"L7MMT M6+-M#JN2Y;!FN3>NQ0=2=8GH\'!,V=UAS;8ZK,J&PX(L4$Z0@=;)87$F4J#_ MM,>J4TC&?K.)([J,L5'@^`HSPYM#S.<$"I01$*NOYI;G>X=Q+TE`K'>)4B)/ MC/"->FX>VZ3,T91;FQ=%@KSONCT\'?8K_6)6A3I49_(WRYO:MUS_I M#U[WAV39@-FP"=D6LFTB_`,>_M%.BJV))![#+4E;*FG?VLQ*XN*+J!BM>J#' M=C$A-J5Q1-P4E:.*5*F&.@-#MFD]EO22]0%DXLIT,;=TP>B@>9%@T6'\2G#7 M(`\ARV9-UYC3VUPPW%A1;I_JBV;- M&"B&#/Q5MQ!)D$8A'.DT MQ#>EEO]F_C:-B)=1A+M6RD2[(F@OT$%:9C+!W(I`W27+?*3CAK]41ZDUJQ3R MTYNBR,)QK[TPN=#S2PU=",Z&>8[PM8KS`6&38-#]3UZ3K@J0UPK'>7S_@3Y! MBS[BL,^.99"3P*F1!9QWS(U8'KJ1 M*\M'_V+.#>3(=4UOZ=C\=,.)?$WD-IGSR^6L*>3SC.'2,;73N`(\A[S\18&7 M+ZU".`\^5(Q$9WE[\[/U*_RK`W(T(.)4GAG[Y,?3D&%FPF:. MVRP/X=03P-&HE4@V1?)DQ31327P&-C2!^"NBELQ3UK+Y+.#!109P+@FMW@,] M?HATY1[@C_T'@*OW47[W`'#M'N`WPP>`Z_>)N[L5F"_B*DSTPETI*C>T$Q$= M&@VQ"0HE59(+OZ*;>_&+_(+'5RP1_'=`T3)M7=Z6W*37B4T:;FM`]=(KI+N?&M-NI)D+/8IVPF8))^F6ZG[5YJI&&6LCVE[`UJ>4=BK>- M8,FWEP@E^2@BROOQ(^33&TOB@J:!MS,ZWLD+`-R6YY=G9XGIT2MB%Q'R<440 M$F>/!;3>*B]=X%9G2^N9^F()^0A2U,4ZG7#7QPL8VP_XLP.#R>CRO-?]U`X' M10)`XC)/]L'$O!_NHT7UM%UH#2ZVTE)VI37><5[CR_YH&S%U5V)4P-N%V,=^ M[WP[N70ZW4JON2HVJAKM0>S,\W4:KMBLMJC;NI(W=\>5P&[5Z M.[%+DJ;I(+EE0BN4"SI:YKA_HVV MM6A<]XBK;,.'N6C@3A#F]SSPS_<9OW03,Y:QO1`RMYG`Q?#]WKZDQ-*.A,0I MX`R'_9/+X:37/3W[%$TRM81I=!]W0O>QW_]I-WR#3'QB*%DY,<=.'+1D$41C M,GYW]FDR"-5%T$PBO0_N8P2W`\^?=I+!IWYWN"&#^P#.+\[[23U;?5-N-MLM M3YH],C>;/4%N-EO+S2J5U-TYD9NIM>S4;/;HU&SV5*G9[*^F9K/_T=2L(9,( M\+P%BKJF&RO1TRPDE_H'N*CFARWV0V6E*W" MZ+$=FUI,@5)Y8/[A+)!9ZP1L%)[F'PY.LV#_NH5OBY(SOP;P+5;!VFV'6H^T M"M836`5KW2K46M7-BLW14=(J+-DURK!:,W!L=E2B-D"NMQ05#4O:)(3#V:'* MC\$42ME>OPR(<9.BZB"\?;\,A+76],V713L^^!J;NGBN@T[ MVZG4X^LVXE[7/LTJ-J7[?#/031MA6M#PO)]\Z`YA7SZL["=L3K)#W>=%4=8( M/7YO]"!5O^]UQ]W)."?L#U&=&)JOK8W(Y?-\X$&!3)6I+4K'-*P@#KB;[&)N M,YQ&PJ*B?>SV>D,XT`S#E6#N8&CH+.DDPF-;W*.[ICH-&XV'_>[@(,=XT.>. M9^:C5CC@5+VK,4,:T>2HM*Q:X/>PRGF<,3O&+S^'ICN79O)A@7+E'@] M?T[7&F::1QCSX@B+/'HIQ\&*'0@+C_2,034/'WKCT;@['!]WGLG5X)FLLO_[ M$@/,,3SA%0KQP&Y1A)^%KRSN1@2.89U*<4N1D7V9.]G[\Q8QI_DZI&%OS`E,=7@3/LQ8BVCT[VP\W MJ7ITQ%QJLQ%OTRF[X(7)L7^7OYUA"L[1K*DZF?>H-,UQY_8O3WLPPJSJY!U2 MZ0X'I^=O4Y,:AQ_H___Q*=Z#X^1B\!Y3KO,Q?&#HTO+JP`.X:=O0!$+Y\<], M@.(CG:`GQ\V<(!YG1>,\4Q<1'G.#:-.:Z`>/Q%<[Q)T\=A"18[/X69'5ZJ^A MD$B@_V)VX,J\MFSFFTK'MDF)*DUVV!]N^'<$OO_3,N>F;1C0<$KPX2PUADLQP!&23_]@1!\F_K07*S)6<<:QY5HRB9,1/> MD@UL>&->B0`96:A5$P$R'QDEUM"DQ%JMQ]^*>^#"$8=G06==!)TJW>.6:X)4 M,L,M9D`UQ3TC_&E28LUI;X2J_^1%(Z7!OB/'W[CEP@R7$MZ2N$Z'T)YF6_Y= M29^9^@UH\SD_Q_/XI1"FI13HT;[W_`+?Q@P+`VL!-9/_]S7+]L`V+8R277A1 M?@&V@^^K%PQ1*1=5]F=N`J%$(PKPYY^0U55^P?=["+N\VBH%(P/4/'JOB.!G%09`(D8I4E3SV;3]R6=M M;AGY*!3N?R#3>\#ZHHB'TGP[/&V@!I37E>//8!$@U$S[;+(@19R88E8OSD29 M+4EXW^<,+=I6?B,&I935RWPT$]-ZI"5(BS6Q25]P33@GVAUGA"*E3$8X)>I> MXZ,`=K'8OF<8#QJ2@VQRM\J]3/*0BPEHZ9JZ:9CLNU\I?G1GL<14+LV/!$FZ M&`[)V^F$%SS=(!V))@)8L@G18E^;F!GX;GYMH=,!+WWSJ)!4D1`J4TDR87F$ M19G5>#S,Y0X(G)_<1RD7=83M+'!E9_/4@(HF!$!/=.6O#6P@B%YZ(^?RQ>=; MA:E9?*R1%_W(B@2,(1$RUYO,?#24./#A]2HZ^&]'"6PN1U?>D`FV'.Q&+Y0! M`<4)F.C.)_M+J`V)0+G'"2L'#&[HQF_D8[P'KI?<&7&M]LHOSLS.*IG/$53*DO$) MD8E$!R26_^B(2:ZIU*2C1`RW.25AOCF7IF9D!CS"NJW946XW,S=LM$SK`M"6 M2PJ90@'P,H1E2'P7%.(%I4DTJU66]C6/%*FBI*_M"/S7CF,DM""M"`8+^#)S MWNQL=R?Q9)BG;;,5#&0N]VJ#7=>D#;R=7<_5)7&#`'?0W\:T8".D3509O;31 MI3I6+U@L[M*%K%0UQJ#^=:<;UY^V5)PX%-51[BO>?&L]BV/_QH(6!]ZUHB5( M_<62%L?R#]6TFE1@.<*H4U8KDBHL1Q8[MN/\<2\CT;$)DZA(N+(E)'9))C)^ M'6A31L5L5$)W'T2UMI7:R4`"87O#TP_](0CVN'YW0AN:T&HI?H[J?@D%2SQ' ME;^D4B3Z-VI_J>:X^,>;P^I?^,RM:J+!-1?.YQ0BMF`)#KC0$PU<=!+W0;"* M0@26B\B*0NY$D1MQ`>X!3_Q-VG]_V3'A`W?=%9S[&BO5*HI:C>*(#51GU+B>)FMW+!S2-+%#=/4**X62M15&7Z M\O=&B4*NITL4LZPS/*2?.L/C(W9.G,Z)!1ALQC) M?4F.@B8^BCX)G#^(,>(*`,TN\5T;1ISG,90,.=/D?6E^'(]\:KXF\/)@RUN: MNC5%)T8]?/"J'=FZI%C$A+A8Z&_S,`'&ONJK6(MZDU>-FM&7OT3E*)$^TYTB M2KN$K"P//UGS.:!+^RP0"TGD#\AQ%3)L*_G,4IBP;**/^.8.P`#G)B7B_`'O MR$(=^^HM`1+O#2MBS`?P/YL2N&@:_7!I*DP7J_1YX.'T#POL[I6/Z` M_?V90EX\9UC_C=@X5>`2>^V_[1UK3QM)\K["KQA;"MC!`W[@`"9.E!"210H0 M`;E+M(DL!PQ8:VR?'\I&4?[[U;,?\\!CCKL]Z6:T&V"F']75U5V/KJI&G+$E M'+"`:7?Z`(R9+CM'?M_,QZ3SA*Z3Q%@@$"+FA.:8@^E8$C3U%"E-K!;W[Q>A MMU^$R^X78>;](LRP7X3+[Q?A,ON%(ZDYFIE=?H,^K@CX>_"-:/FI1H]"HP>< M3@K/@(`X?4Q,>O^<`V4@\6N&GBW*V#.:(&$?S6`MZ!';#N5PV-LU6PZ26'\Z M!A%8(A65%BNR3_`RHA7JQ#UNFDV-"C]=,08'6/!]:F8Q<4?C"^YQX5USE*#FY?&5M$\-BD_;Y:![-S9]V@\V.'1?DWX$!\0^D#R'()08 M>B>IR9OD)P0!5VDO8#$&U[D\EHLAD% M9Z$BGZ3';_`47-W/1;Q)6*CC)ZOX)%@@)<(\^ZW;IA?J_/8N!%/26SE=%6%L]BZUNB^,U=ZC,+=$S&[OO[>&>]UB'+_=)J?JKNH) M[8I!B#'>:VMJO;=O\%\7-,>>[^$U9LO?W44OX8U:M5'9VXTZS,28$&_'R%NF M\S&*&$"*]_VQ`[EG,8@B[H%Y6A`Y`Y_H?N`^/5H&9Y":+2C.UOB M1]TN11;4/?[@],/G#M#)T],:#'QI,Q*F'U-^%?&\8SN!YQ`$'1W-P>O+WSN'9F?6/@:;05R.Q(ZZ. M=H#1I6FW0K;8T752E7+9!:1`K2^$@?Q::!28=X)^>2Y]R9\V"84L:8UE5QJA M;YJQ`>K]3M6^AB_@=R#['X.>R>)`6040C`]GI\[/[-M$H(`*3L\P?;FF M(.Q==^>#F2(E;8B_$`)T%I,I3YQQL\D8;T*T2BL9$&E*I4TD7Z#AV>4(A%K- M&9!0AIUS,&'#JOC<1^C0`:U_+64M'/!MB[ZQ"6N.:2CIPU-IW"YL9[F:2<0OYFIA6HA"ZDL%*5A>94^NGZOJT26. M^\5#-%,5<+('5\/U68`->EGR"U^&)KJC5F]4&ACZA#\=!S&*%KEFY4-[W#== M16,*3#+AD*/@^PPBL=0\!@^$(]2#P8Z*]7,BU_T MD]+#E*YO>H`"'$QEKUJM:-?QO@$P&K(X;>/OY;#VM=U>_S)<+P>)WZI_5JL6 M"H.;-A9PWBNBVN)J3M"LM]:=$5AL1AO5]^34;&$E-]J[<P6C:J779MR(7R.6^?R$]L6X6VRZ^8JQ`''XQN M^D,L1)6HP]ZLTY_U[DK85H7EDXO/%34S25*GE))GOYV>7T!9$$J[`W3OE^+1 M43GXZ$GU:E:X_1)M+G'\ZM,%7F\D##,^-MU4B9^<';[I')Y?O'K]_NC<-3?% M/[(HI'_1QYBL%:G!DQN;1UC\D]Z5@RN_VL-G#?XS?[=T;M`IUW9%S9F)(*`2BR)^K;;+PX]I02&V6`7 M)'D,A2S$]W%;@)=XJM^RK&?'&;FVMT.1)O6]JC78R"!!/KKL$%)+:\Z"\^Q] M3(CZU7B4&Q*-?5'!3`3\-X>O/[[C-[K'?QG2*:K6E`V=ZJBE4VD;Y4P+12$F M=!BHK7;"TIH5-K/4R0)SO*$GT\J3:1G`K\2;7#`@!M%.A(C%R.W*ZA-3K]7) MY-&H-4S&=RTK)LA@#:U(G?>G[XY.G#@I](J2Q8.080(2\0/8=".C)`+0*VBS MLUFF$I_TI6MF0;#A^9@\V&^Z)'@6L=PU+&?`LD5TZ$(OGA$&;%YD_#8RZ.5K MR8!CXTT9KK3JC]-KFH?CC-0?J(X39O\XQG;5 M!.&OK$1GMYTPW;3K1'8O)<$@4"*D8+_QH#]SP<$9%3+DA%4>:N/TY.Y^/BT^ MO+IJ(-FH,=)TA!R=#BQK$40$080@1 MWAG]1V(%C4'1Q*P$CC4^,&$GT:.LLG:,DE\Y=5M8H`!%O,8*EF4JL24%RA`3 M9#%M.I3V=7R5`'6BH/ADNO5D6E1:^`823(<_^XZ+48`MO-T9YNNCQ/.D_Z'/ MA@&7;F%;?S)=Q]5B<"M-&LAE$C`NC9%I@2Q^+UJ)L2`%G6QV<;CN4R;EI,T# MS^*2VC-`):D[C%'6CF"F!1I7OHQ'>=J3*^A<3JU*'O$91W?.5*#:]U>S%#`4 M[)^)?VL,+N4/O"Z1SU5\WEI+W2U%K`$;&+B_K;;C3LF8R; MT\ON\%H:X23(:Y3F#,7[FB?\FGJ\3=^1<;_$H=-!7;>`1F,;O4HWMG<=P=6Y MA@9E?^\.FB"VIH.4-1TFK`=<#KH:HHLAOE%2(])1.TJUQ>X&FRB0XQ;L+*/N M_5-VE.479"(0]R\>@6/#@X-I;:'-)7&1<#W'YL+L;$,O(OK>!WW,(2\CKTHT M^4\C-!3B66Z@G:VM]\>MZ2U=V4C7.'[K!28C*9+-2Y(HNC==X(UTRR0[DPVO M7K+TYY9E+JCAK?B5+W;@0/:.GGD3K34IW4JSVG223WFE,4XI6)Q3Q@J:;(/B M8-.VL_05.\H+W')D?T\IB?=26.(GET.?^BUJ&9\R,N"@=1#PFHUZI2X7F/@6 M7/?(-YV+NLX`E'QF50+(':`T.;3W$M!#K]`M`$0E<@#D\XW0]QE8Z5_)A\0M MC1;WRDIL=;,VX"WOX"]?X8^^O&,0_`\L[JPT+MHF+*?):##H<-J&DI?>`82C M2A"RUP%FJUU;XR1.;OZ%2(TU_OF\74TLC>O55.'D$%"T;%9N2GUC MDW#?2G5-+,13'?%?MU[K^)FOT&;+1/-9TX95_E^OSP3V^]:V\6?7 M)]'PTX[N&UUO9.JUF+Q\ZR#>%1;^>&*1=P'GBA/#20Y1+YU0VENX0;X_53 MVE7Q5/DQKH2'9AYX#;R%W[WSW;NG//%B=07]09>[)W2:IGT`H``` ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 15:40:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F1E837B419 for ; Tue, 11 Dec 2001 15:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBBNe1N33546; Tue, 11 Dec 2001 15:40:01 -0800 (PST) (envelope-from gnats) Received: from postfix2-1.free.fr (postfix2-1.free.fr [213.228.0.9]) by hub.freebsd.org (Postfix) with ESMTP id B387E37B416 for ; Tue, 11 Dec 2001 15:35:10 -0800 (PST) Received: from graf.pompo.net (lyon-2-a7-20-235.dial.proxad.net [62.147.20.235]) by postfix2-1.free.fr (Postfix) with ESMTP id 35D1916F for ; Wed, 12 Dec 2001 00:35:06 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id 6300C751D; Wed, 12 Dec 2001 00:35:52 +0100 (CET) Message-Id: <20011211233552.6300C751D@graf.pompo.net> Date: Wed, 12 Dec 2001 00:35:52 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32712: New port: kronolith, a web-based calendar application Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32712 >Category: ports >Synopsis: New port: kronolith, a web-based calendar application >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 15:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.4-STABLE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Nov 25 07:49:02 CET 2001 root@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF010429 i386 >Description: Kronolith is the Horde calendar application. It is currently in the development stages, and makes heavy use of the Horde framework to provide integration with other applications. Right now, Kronolith implements a solid, stand-alone calendar system, allowing repeating events, all-day events, custom fields, keywords, and managing multiple users through Horde Authentication. >How-To-Repeat: Pre-requisite: PR ports/32516 and PR ports/32711 must be committed. Then, execute the following shar file. >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/deskutils/kronolith # /usr/ports/deskutils/kronolith/Makefile # /usr/ports/deskutils/kronolith/files # /usr/ports/deskutils/kronolith/files/httpd.conf.kronolith # /usr/ports/deskutils/kronolith/files/patch-aa # /usr/ports/deskutils/kronolith/pkg-plist # /usr/ports/deskutils/kronolith/pkg-message # /usr/ports/deskutils/kronolith/pkg-descr # /usr/ports/deskutils/kronolith/pkg-comment # /usr/ports/deskutils/kronolith/distinfo # /usr/ports/deskutils/kronolith/Makefile.orig # echo c - /usr/ports/deskutils/kronolith mkdir -p /usr/ports/deskutils/kronolith > /dev/null 2>&1 echo x - /usr/ports/deskutils/kronolith/Makefile sed 's/^X//' >/usr/ports/deskutils/kronolith/Makefile << 'END-of-/usr/ports/deskutils/kronolith/Makefile' X# Ports collection makefile for: Kronolith X# Date created: Sun Dec 02, 2001 X# Whom: Thierry Thomas () X# X# $FreeBSD$ X# X XPORTNAME= kronolith XPORTVERSION= 0.0.3.011209 XCATEGORIES= deskutils www XMASTER_SITES= http://pompo.net/horde/kronolith/ X XMAINTAINER= thierry@thomas.as X XRUN_DEPENDS= ${LOCALBASE}/www/horde/imp/index.php:${PORTSDIR}/mail/imp-devel X XNO_BUILD= yes X XDOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL XCONFFILE= conf.php html.php keywords.php menu.php prefs.php X XLHORDEDIR?= www/horde XLKRONOLITHDIR?= ${LHORDEDIR}/kronolith X XPLIST_SUB= HORDEDIR=${LHORDEDIR} KRONOLITHDIR=${LKRONOLITHDIR} X XHORDEDIR= ${PREFIX}/${LHORDEDIR} XKRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR} XCONFDIR= ${KRONOLITHDIR}/config XVAR_CAL= /var/calendar X XHORDE_INC= ${LOCALBASE}/etc/horde X Xpre-install: X @if ! ${LDCONFIG} -r | ${GREP} -q -e "mcal.0" ; then \ X ${ECHO_MSG} "" ; \ X ${ECHO_MSG} "Please configure PHP and Horde with MCAL support enabled." ; \ X ${ECHO_MSG} "" ; \ X ${FALSE} ; \ X fi X Xdo-install: X @${MKDIR} ${KRONOLITHDIR} X @${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${KRONOLITHDIR} X @${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/po ${WRKSRC}/templates ${KRONOLITHDIR} X @${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR} X @${MKDIR} -p ${KRONOLITHDIR}/scripts X @${CP} -p ${WRKSRC}/docs/kronolith.sql ${KRONOLITHDIR}/scripts X.for FILE in ${CONFFILE} X @if [ ! -f ${CONFDIR}/${FILE} ]; then \ X ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ X fi X.endfor X @${CHOWN} -R www:www ${KRONOLITHDIR} X @${CHMOD} -R o-rwx ${CONFDIR} X @${CP} -p ${FILESDIR}/httpd.conf.kronolith ${HORDE_INC} X @${PERL} -pi -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:g" \ X ${HORDE_INC}/httpd.conf.kronolith X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for FILE in ${DOCS} X @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} X.endfor X @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." X.endif X Xpost-install: X @if [ ! -d ${VAR_CAL} ]; then \ X ${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \ X ${MKDIR} ${VAR_CAL} ; \ X ${CHMOD} 1777 ${VAR_CAL} ; \ X fi X.if !defined(BATCH) X @if [ ! -f ${LOCALBASE}/etc/mpasswd ] ; then \ X ${ECHO_MSG} "===> Creating ${LOCALBASE}/etc/mpasswd" ; \ X ${ECHO} -n "Please enter a password for www's calendar: " ; \ X (read PASSCAL; \ X ${LOCALBASE}/bin/htpasswd -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \ X ${PERL} -pi -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \ X elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \ X ${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \ X ${ECHO} -n "Please enter a password for www's calendar: " ; \ X (read PASSCAL; \ X ${LOCALBASE}/bin/htpasswd -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \ X ${PERL} -pi -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \ X else \ X ${PERL} -pi -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.php ; \ X fi X.endif X @${ECHO_MSG} X @${CAT} ${PKGMESSAGE} | \ X ${SED} -e "s:%%KRONOLITHDIR%%:${KRONOLITHDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g;s:%%CONFDIR%%:${CONFDIR}:g;s:%%LOCALBASE%%:${LOCALBASE}:" X @${ECHO_MSG} X X.include END-of-/usr/ports/deskutils/kronolith/Makefile echo c - /usr/ports/deskutils/kronolith/files mkdir -p /usr/ports/deskutils/kronolith/files > /dev/null 2>&1 echo x - /usr/ports/deskutils/kronolith/files/httpd.conf.kronolith sed 's/^X//' >/usr/ports/deskutils/kronolith/files/httpd.conf.kronolith << 'END-of-/usr/ports/deskutils/kronolith/files/httpd.conf.kronolith' X# This is included in Apache's httpd.conf for Kronolith X# X# For security, don't serve pages from the Kronolith configuration and X# library directories. X# X X order deny,allow X deny from all X X X order deny,allow X deny from all X X X order deny,allow X deny from all X X X order deny,allow X deny from all X X X order deny,allow X deny from all X X X order deny,allow X deny from all X X# End of Kronolith configuration ================ X END-of-/usr/ports/deskutils/kronolith/files/httpd.conf.kronolith echo x - /usr/ports/deskutils/kronolith/files/patch-aa sed 's/^X//' >/usr/ports/deskutils/kronolith/files/patch-aa << 'END-of-/usr/ports/deskutils/kronolith/files/patch-aa' X--- config/conf.php.dist.orig Fri Sep 28 23:36:52 2001 X+++ config/conf.php.dist Sun Dec 9 22:46:55 2001 X@@ -29,10 +29,10 @@ X X // The mstore driver requires a username that is in /etc/mpasswd in X // order to access local calendars. X-$conf['calendar']['params']['username'] = ''; X+$conf['calendar']['params']['username'] = 'www'; X X // This is the password of the user defined above. X-$conf['calendar']['params']['password'] = ''; X+$conf['calendar']['params']['password'] = '%%PASSCAL%%'; X X X /** END-of-/usr/ports/deskutils/kronolith/files/patch-aa echo x - /usr/ports/deskutils/kronolith/pkg-plist sed 's/^X//' >/usr/ports/deskutils/kronolith/pkg-plist << 'END-of-/usr/ports/deskutils/kronolith/pkg-plist' X%%PORTDOCS%%share/doc/kronolith/CHANGES X%%PORTDOCS%%share/doc/kronolith/COPYING X%%PORTDOCS%%share/doc/kronolith/CREDITS X%%PORTDOCS%%share/doc/kronolith/INSTALL X%%PORTDOCS%%share/doc/kronolith/README X%%KRONOLITHDIR%%/addevent.php X%%KRONOLITHDIR%%/addeventaction.php X%%KRONOLITHDIR%%/config/conf.php X%%KRONOLITHDIR%%/config/conf.php.dist X%%KRONOLITHDIR%%/config/conf.php.dist.orig X%%KRONOLITHDIR%%/config/html.php X%%KRONOLITHDIR%%/config/html.php.dist X%%KRONOLITHDIR%%/config/keywords.php X%%KRONOLITHDIR%%/config/keywords.php.dist X%%KRONOLITHDIR%%/config/menu.php X%%KRONOLITHDIR%%/config/menu.php.dist X%%KRONOLITHDIR%%/config/prefs.php X%%KRONOLITHDIR%%/config/prefs.php.dist X%%KRONOLITHDIR%%/data.php X%%KRONOLITHDIR%%/day.php X%%KRONOLITHDIR%%/delevent.php X%%KRONOLITHDIR%%/editevent.php X%%KRONOLITHDIR%%/editeventaction.php X%%KRONOLITHDIR%%/graphics/alarm.gif X%%KRONOLITHDIR%%/graphics/alarm_small.gif X%%KRONOLITHDIR%%/graphics/bullet.gif X%%KRONOLITHDIR%%/graphics/clear.gif X%%KRONOLITHDIR%%/graphics/dayview.gif X%%KRONOLITHDIR%%/graphics/delete.gif X%%KRONOLITHDIR%%/graphics/edit.gif X%%KRONOLITHDIR%%/graphics/event.gif X%%KRONOLITHDIR%%/graphics/goto.gif X%%KRONOLITHDIR%%/graphics/kronolith.gif X%%KRONOLITHDIR%%/graphics/monthview.gif X%%KRONOLITHDIR%%/graphics/new.gif X%%KRONOLITHDIR%%/graphics/next.gif X%%KRONOLITHDIR%%/graphics/prev.gif X%%KRONOLITHDIR%%/graphics/recur.gif X%%KRONOLITHDIR%%/graphics/today.gif X%%KRONOLITHDIR%%/graphics/weekview.gif X%%KRONOLITHDIR%%/graphics/workweekview.gif X%%KRONOLITHDIR%%/index.php X%%KRONOLITHDIR%%/lib/Day.php X%%KRONOLITHDIR%%/lib/DayView.php X%%KRONOLITHDIR%%/lib/Driver.php X%%KRONOLITHDIR%%/lib/Driver/mcal.php X%%KRONOLITHDIR%%/lib/Driver/sql.php X%%KRONOLITHDIR%%/lib/Event.php X%%KRONOLITHDIR%%/lib/Kronolith.php X%%KRONOLITHDIR%%/lib/Month.php X%%KRONOLITHDIR%%/lib/MonthView.php X%%KRONOLITHDIR%%/lib/WeekView.php X%%KRONOLITHDIR%%/lib/api.php X%%KRONOLITHDIR%%/lib/base.php X%%KRONOLITHDIR%%/lib/version.php X%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/locale/ru_win/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo X%%KRONOLITHDIR%%/menu.php X%%KRONOLITHDIR%%/mini_month.php X%%KRONOLITHDIR%%/month.php X%%KRONOLITHDIR%%/po/Makefile X%%KRONOLITHDIR%%/po/README X%%KRONOLITHDIR%%/po/cs_CZ.po X%%KRONOLITHDIR%%/po/de_DE.po X%%KRONOLITHDIR%%/po/el_GR.po X%%KRONOLITHDIR%%/po/es_ES.po X%%KRONOLITHDIR%%/po/extract.pl X%%KRONOLITHDIR%%/po/fr_FR.po X%%KRONOLITHDIR%%/po/it_IT.po X%%KRONOLITHDIR%%/po/nl_NL.po X%%KRONOLITHDIR%%/po/pt_BR.po X%%KRONOLITHDIR%%/po/ru_win.po X%%KRONOLITHDIR%%/po/shtool X%%KRONOLITHDIR%%/po/xgettext.sh X%%KRONOLITHDIR%%/po/zh_TW.po X%%KRONOLITHDIR%%/prefs.php X%%KRONOLITHDIR%%/scripts/kronolith.sql X%%KRONOLITHDIR%%/status.php X%%KRONOLITHDIR%%/templates/common-footer.inc X%%KRONOLITHDIR%%/templates/common-header.inc X%%KRONOLITHDIR%%/templates/data/export.inc X%%KRONOLITHDIR%%/templates/data/import.inc X%%KRONOLITHDIR%%/templates/day/all_day.inc X%%KRONOLITHDIR%%/templates/day/foot.inc X%%KRONOLITHDIR%%/templates/day/head.inc X%%KRONOLITHDIR%%/templates/day/row.inc X%%KRONOLITHDIR%%/templates/day/row_half.inc X%%KRONOLITHDIR%%/templates/edit/edit.inc X%%KRONOLITHDIR%%/templates/edit/javascript.inc X%%KRONOLITHDIR%%/templates/index/css.inc X%%KRONOLITHDIR%%/templates/index/index.inc X%%KRONOLITHDIR%%/templates/index/notconfigured.inc X%%KRONOLITHDIR%%/templates/javascript/delete.inc X%%KRONOLITHDIR%%/templates/menu/goto.inc X%%KRONOLITHDIR%%/templates/menu/menu.inc X%%KRONOLITHDIR%%/templates/month/head.inc X%%KRONOLITHDIR%%/templates/month_begin_week.inc X%%KRONOLITHDIR%%/templates/month_day.inc X%%KRONOLITHDIR%%/templates/month_end_week.inc X%%KRONOLITHDIR%%/templates/month_foot.inc X%%KRONOLITHDIR%%/templates/month_head.inc X%%KRONOLITHDIR%%/templates/week/head.inc X%%KRONOLITHDIR%%/week.php X%%KRONOLITHDIR%%/workweek.php X@dirrm %%KRONOLITHDIR%%/config X@dirrm %%KRONOLITHDIR%%/graphics/alerts X@dirrm %%KRONOLITHDIR%%/graphics X@dirrm %%KRONOLITHDIR%%/lib/Driver X@dirrm %%KRONOLITHDIR%%/lib/scripts X@dirrm %%KRONOLITHDIR%%/lib X@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/cs_CZ X@dirrm %%KRONOLITHDIR%%/locale/de/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/de X@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/de_DE X@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/el_GR X@dirrm %%KRONOLITHDIR%%/locale/en X@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/es_ES X@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/fr_FR X@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/it_IT X@dirrm %%KRONOLITHDIR%%/locale/local X@dirrm %%KRONOLITHDIR%%/locale/nl/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/nl X@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/nl_NL X@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/pt_BR X@dirrm %%KRONOLITHDIR%%/locale/ru_win/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/ru_win X@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES X@dirrm %%KRONOLITHDIR%%/locale/zh_TW X@dirrm %%KRONOLITHDIR%%/locale X@dirrm %%KRONOLITHDIR%%/po X@dirrm %%KRONOLITHDIR%%/scripts X@dirrm %%KRONOLITHDIR%%/templates/data X@dirrm %%KRONOLITHDIR%%/templates/day X@dirrm %%KRONOLITHDIR%%/templates/edit X@dirrm %%KRONOLITHDIR%%/templates/index X@dirrm %%KRONOLITHDIR%%/templates/javascript X@dirrm %%KRONOLITHDIR%%/templates/login X@dirrm %%KRONOLITHDIR%%/templates/menu X@dirrm %%KRONOLITHDIR%%/templates/month X@dirrm %%KRONOLITHDIR%%/templates/week X@dirrm %%KRONOLITHDIR%%/templates X@dirrm %%KRONOLITHDIR%% Xetc/horde/httpd.conf.kronolith X%%PORTDOCS%%@dirrm share/doc/kronolith END-of-/usr/ports/deskutils/kronolith/pkg-plist echo x - /usr/ports/deskutils/kronolith/pkg-message sed 's/^X//' >/usr/ports/deskutils/kronolith/pkg-message << 'END-of-/usr/ports/deskutils/kronolith/pkg-message' X************************************************************************ XKronolith has been installed in %%KRONOLITHDIR%% with your blank Xconfiguration files. X XHorde and IMP must be configured; if not, see: X- %%PORTSDIR%%/www/horde-devel/pkg-message X- %%PORTSDIR%%/mail/imp-devel/pkg-message X Xlibmcal must be configured with the driver mstore for the user www: X X- mkdir /var/calendar X- chmod 1777 /var/calendar X- htpasswd -c %%LOCALBASE%%/etc/mpasswd www X X(this port has tried to make it for you, perhaps you'll just have to Xcheck - see %%PORTSDIR%%/misc/libmcal/pkg-message) X XThen, you may have to tune the configuration files located in X%%CONFDIR%%/, specially the files conf.php. X XTo protect your configuration files, you have to restart Apache. X************************************************************************ END-of-/usr/ports/deskutils/kronolith/pkg-message echo x - /usr/ports/deskutils/kronolith/pkg-descr sed 's/^X//' >/usr/ports/deskutils/kronolith/pkg-descr << 'END-of-/usr/ports/deskutils/kronolith/pkg-descr' XKronolith is the Horde calendar application. It is currently in the Xdevelopment stages, and makes heavy use of the Horde framework to Xprovide integration with other applications. X XRight now, Kronolith implements a solid, stand-alone calendar system, Xallowing repeating events, all-day events, custom fields, keywords, Xand managing multiple users through Horde Authentication. The calendar XAPI that Kronolith uses is abstracted such that it could work with any Xbackend, but right now it uses the MCAL calendar library for a backend. X XWWW: http://horde.org/kronolith/ END-of-/usr/ports/deskutils/kronolith/pkg-descr echo x - /usr/ports/deskutils/kronolith/pkg-comment sed 's/^X//' >/usr/ports/deskutils/kronolith/pkg-comment << 'END-of-/usr/ports/deskutils/kronolith/pkg-comment' XKronolith is the Horde calendar application END-of-/usr/ports/deskutils/kronolith/pkg-comment echo x - /usr/ports/deskutils/kronolith/distinfo sed 's/^X//' >/usr/ports/deskutils/kronolith/distinfo << 'END-of-/usr/ports/deskutils/kronolith/distinfo' XMD5 (kronolith-0.0.3.011209.tar.gz) = a5fed26d6011c226fce9feaa75809f94 END-of-/usr/ports/deskutils/kronolith/distinfo echo x - /usr/ports/deskutils/kronolith/Makefile.orig sed 's/^X//' >/usr/ports/deskutils/kronolith/Makefile.orig << 'END-of-/usr/ports/deskutils/kronolith/Makefile.orig' X# Ports collection makefile for: Kronolith X# Date created: Sun Dec 02, 2001 X# Whom: Thierry Thomas () X# X# $FreeBSD$ X# X XPORTNAME= kronolith XPORTVERSION= 0.0.3.011209 XCATEGORIES= deskutils www XMASTER_SITES= http://pompo.net/horde/kronolith/ X XMAINTAINER= thierry@thomas.as X XRUN_DEPENDS= ${LOCALBASE}/www/horde/imp/index.php:${PORTSDIR}/mail/imp-devel X XNO_BUILD= yes X XDOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL XCONFFILE= conf.php html.php keywords.php menu.php prefs.php X XLHORDEDIR?= www/horde XLKRONOLITHDIR?= ${LHORDEDIR}/kronolith X XPLIST_SUB= HORDEDIR=${LHORDEDIR} KRONOLITHDIR=${LKRONOLITHDIR} X XHORDEDIR= ${PREFIX}/${LHORDEDIR} XKRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR} XCONFDIR= ${KRONOLITHDIR}/config XVAR_CAL= /var/calendar X XHORDE_INC= ${LOCALBASE}/etc/horde X Xpre-install: X @if ! ${LDCONFIG} -r | ${GREP} -q -e "mcal.0" ; then \ X ${ECHO_MSG} "" ; \ X ${ECHO_MSG} "Please configure PHP and Horde with MCAL support enabled." ; \ X ${ECHO_MSG} "" ; \ X ${FALSE} ; \ X fi X Xdo-install: X @${MKDIR} ${KRONOLITHDIR} X @${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${KRONOLITHDIR} X @${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/po ${WRKSRC}/templates ${KRONOLITHDIR} X @${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR} X @${MKDIR} -p ${KRONOLITHDIR}/scripts X @${CP} -p ${WRKSRC}/docs/kronolith.sql ${KRONOLITHDIR}/scripts X.for FILE in ${CONFFILE} X @if [ ! -f ${CONFDIR}/${FILE} ]; then \ X ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ X fi X.endfor X @${CHOWN} -R www:www ${KRONOLITHDIR} X @${CHMOD} -R o-rwx ${CONFDIR} X @${CP} -p ${FILESDIR}/httpd.conf.kronolith ${HORDE_INC} X @${PERL} -pi -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:g" \ X ${HORDE_INC}/httpd.conf.kronolith X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for FILE in ${DOCS} X @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} X.endfor X @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." X.endif X Xpost-install: X @if [ ! -d ${VAR_CAL} ]; then \ X ${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \ X ${MKDIR} ${VAR_CAL} ; \ X ${CHMOD} 1777 ${VAR_CAL} ; \ X fi X @if [ ! -f ${VAR_CAL}/www ]; then \ X ${ECHO_MSG} "===> Adding ${VAR_CAL}/www" ; \ X ${TOUCH} ${VAR_CAL}/www ; \ X ${CHOWN} www:www ${VAR_CAL}/www ; \ X fi X.if !defined(BATCH) X @if [ ! -f ${LOCALBASE}/etc/mpasswd ] ; then \ X ${ECHO_MSG} "===> Creating ${LOCALBASE}/etc/mpasswd" ; \ X ${ECHO} -n "Please enter a password for www's calendar: " ; \ X (read PASSCAL; \ X ${LOCALBASE}/bin/htpasswd -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \ X ${PERL} -pi -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \ X elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \ X ${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \ X ${ECHO} -n "Please enter a password for www's calendar: " ; \ X (read PASSCAL; \ X ${LOCALBASE}/bin/htpasswd -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \ X ${PERL} -pi -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \ X else \ X ${PERL} -pi -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.php ; \ X fi X.endif X @${ECHO_MSG} X @${CAT} ${PKGMESSAGE} | \ X ${SED} -e "s:%%KRONOLITHDIR%%:${KRONOLITHDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g;s:%%CONFDIR%%:${CONFDIR}:g;s:%%LOCALBASE%%:${LOCALBASE}:" X @${ECHO_MSG} X X.include END-of-/usr/ports/deskutils/kronolith/Makefile.orig exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 15:41:39 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.dbsmarketing.net (mail.dbsmarketing.net [63.108.94.32]) by hub.freebsd.org (Postfix) with ESMTP id B26E737B41B for ; Tue, 11 Dec 2001 15:41:34 -0800 (PST) Message-Id: <000000000000.fBBFcr0N07HG@localhost> To: ports@freebsd.org From: "You've Won!" Subject: Here is your FREE pack of playing cards. MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_NextPart_000_0021_01C1765E.E7CD2830" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Date: Tue, 11 Dec 2001 15:41:34 -0800 (PST) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Congratulations, you have won two free packs of Battle Trolls Playing Cards. To claim you free cards simply click on the link below. http://www.battletrolls.com/?adv=bt_013/000a/000a/1 Then simply follow the Play for Free option. Thank you for your time and I hope you enjoy your prize. - The BattleTrolls Team customercare@battletrolls.com + 61 7 3007 0071 If you do not wish to receive further correspondence from our organization please reply to this message with 'remove' in the subject. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 16: 0:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E8D437B41E for ; Tue, 11 Dec 2001 16:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC001J58060; Tue, 11 Dec 2001 16:00:01 -0800 (PST) (envelope-from gnats) Received: from idiom.com (idiom.com [216.240.32.1]) by hub.freebsd.org (Postfix) with ESMTP id 3618337B416 for ; Tue, 11 Dec 2001 15:56:37 -0800 (PST) Received: (from muir@localhost) by idiom.com (8.9.3/8.9.3) id PAA75366; Tue, 11 Dec 2001 15:56:37 -0800 (PST) Message-Id: <200112112356.PAA75366@idiom.com> Date: Tue, 11 Dec 2001 15:56:37 -0800 (PST) From: David Muir Sharnoff Reply-To: muir@idiom.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32714: KDE build failure: Qt's uic core dumps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32714 >Category: ports >Synopsis: KDE build failure: Qt's uic core dumps >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 11 16:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: David Muir Sharnoff >Release: FreeBSD charm.idiom.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 8 23:58:16 PST 2001 muir@charm.idiom.com:/usr/obj/usr/src/sys/NEWCHARM i386 >Organization: Idiom >Environment: FreeBSD 4.4-STABLE as of very recently. CFLAGS = -pipe -m486 -mcpu=i686 -march=pentiumpro >Description: I've been trying and trying to build kde and I haven't found a way around the current failure. qt-2.3.1_1's /usr/X11R6/bin/uic core dumps. Anyone else having this problem? I've tried compiling qt-2.3.1_1 with -O0 but that hasn't helped. >How-To-Repeat: cd /usr/ports/editors/koffice make .... gmake[4]: Entering directory `/usr/ports/editors/koffice/work/koffice-1.1/kivio/kiviopart/ui' /usr/X11R6/bin/uic -o guidessetupdialogbase.h ./guidessetupdialogbase.ui gmake[4]: *** [guidessetupdialogbase.h] Segmentation fault (core dumped) >Fix: I haven't found a fix yet. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 17: 6: 6 2001 Delivered-To: freebsd-ports@freebsd.org Received: from thrintun.hactrn.net (dsl092-066-067.bos1.dsl.speakeasy.net [66.92.66.67]) by hub.freebsd.org (Postfix) with ESMTP id 45CF437B416 for ; Tue, 11 Dec 2001 17:06:01 -0800 (PST) Received: from z.hactrn.net (localhost [127.0.0.1]) by thrintun.hactrn.net (Postfix) with ESMTP id DF9B01C88 for ; Tue, 11 Dec 2001 20:05:59 -0500 (EST) Received: by z.hactrn.net (Postfix, from userid 1001) id A027B548; Wed, 12 Dec 2001 01:06:50 +0000 (GMT) Received: from hactrn.net (localhost [127.0.0.1]) by z.hactrn.net (Postfix) with ESMTP id 3AD684DE; Tue, 11 Dec 2001 18:06:50 -0700 (MST) To: ports@FreeBSD.org Subject: A couple of patches to the trafshow-3.1 port MIME-Version: 1.0 (generated by WEMI 1.13.7 - "Shimada") Content-Type: multipart/mixed; boundary="Multipart_Tue_Dec_11_18:06:44_2001-1" Date: Tue, 11 Dec 2001 18:06:44 -0700 From: Rob Austein Message-Id: <20011212010650.A027B548@z.hactrn.net> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --Multipart_Tue_Dec_11_18:06:44_2001-1 Content-Type: text/plain; charset=US-ASCII Here are a couple of patches to trafshow that I developed today while using trafshow 3.1 on my laptop to help the terminal room staff debug some problems on the wireless net here at the IETF in Salt Lake City. Since these were keyboarded during working group meetings, they are perhaps not the most elegant work ever done, but they do seem to work. These both have to do with display of the IP protocol number. As shipped, trafshow 3.1 had two problems: (a) the list of protocol numbers it could list was compiled in (rather than obtained from /etc/protocols via getprotobyxxx()), and (b) if trafshow couldn't find the protocol number, it would just write "unknown" rather than listing the untranslated protocol number itself. Since much of the traffic we were tracking was random weird encapsulations that were hidden by this, I had to do something about it. As far as I can tell, this program has been orphaned; at least, the main web site says "huh?" (in Russian). Please feel free to pass these patches along to the author if you know how to do so. Anyway, in the hope that they will be useful, here are the patches. Perhaps someday I'll hack this up to support IPv6 as well.... --Rob --Multipart_Tue_Dec_11_18:06:44_2001-1 Content-Type: application/octet-stream Content-Disposition: attachment; filename="patch-sra-1" Content-Transfer-Encoding: base64 LS0tIGRpc3BsYXkuYy5+MX4JVHVlIERlYyAxMSAxMToxMjoxNSAyMDAxCisrKyBkaXNwbGF5LmMJ VHVlIERlYyAxMSAxMTozNjoyNCAyMDAxCkBAIC0xNjUsNyArMTY1LDcgQEAKIAlpbnQgbGluZTsK IAlyZWdpc3RlciBpOwogewotCWNoYXIgKnByb3RvOworICAJY2hhciAqcHJvdG8sIHByb3RvYnVm WzIwXTsKIAlpbnQgbm9ybWFsID0gVFJVRTsKIAogCW1vdmUoU0NSX09GRlMrbGluZSwgMCk7CkBA IC0xODgsNyArMTg4LDEwIEBACiAJCWFkZHN0cihpbmV0X3ByaW50KGVudHJpZXNbaV0uZHN0LCBl bnRyaWVzW2ldLmRwb3J0LCBlbnRyaWVzW2ldLnByb3RvKSk7CiAKIAkJcHJvdG8gPSBnZXRwcm90 b25hbWUoZW50cmllc1tpXS5wcm90byk7Ci0JCWlmIChwcm90byA9PSBOVUxMKSBwcm90byA9ICJ1 bmtub3duIjsKKwkJaWYgKHByb3RvID09IE5VTEwpIHsKKwkJICAJc25wcmludGYocHJvdG9idWYs IHNpemVvZihwcm90b2J1ZiksICIlZCIsIGVudHJpZXNbaV0ucHJvdG8pOworCQkJcHJvdG8gPSBw cm90b2J1ZjsKKwkJfQogCX0KIAogCXByaW50dygiICUtKi4qcyIsIHByb3RvX3NpemUsIHByb3Rv X3NpemUsIHByb3RvKTsK --Multipart_Tue_Dec_11_18:06:44_2001-1 Content-Type: text/plain; charset=US-ASCII --Multipart_Tue_Dec_11_18:06:44_2001-1 Content-Type: application/octet-stream Content-Disposition: attachment; filename="patch-sra-2" Content-Transfer-Encoding: base64 LS0tIHV0aWwuYy5+MX4JVHVlIERlYyAxMSAxMToxMjoxNiAyMDAxCisrKyB1dGlsLmMJVHVlIERl YyAxMSAxNzo1MjozNyAyMDAxCkBAIC0xNCw2ICsxNCw4IEBACiAjaW5jbHVkZSA8Y29uZmlnLmg+ CiAjZW5kaWYKIAorI2RlZmluZSBVU0VfR0VUUFJPVE9CWVhYWCAxCisKICNpbmNsdWRlIDxzeXMv dHlwZXMuaD4KICNpbmNsdWRlIDxzeXMvc3RhdC5oPgogI2luY2x1ZGUgPG5ldGluZXQvaW4uaD4K QEAgLTI4LDYgKzMwLDEwIEBACiAjZW5kaWYKICNpbmNsdWRlIDx1bmlzdGQuaD4KIAorI2lmIFVT RV9HRVRQUk9UT0JZWFhYIAorI2luY2x1ZGUgPG5ldGRiLmg+CisjZW5kaWYKKwogI2luY2x1ZGUg InRyYWZzaG93LmgiCiAKIHZvaWQKQEAgLTExMyw2ICsxMTksNyBAQAogCXJldHVybiAoY3ApOwog fQogCisjaWYgIVVTRV9HRVRQUk9UT0JZWFhYCiBzdGF0aWMgc3RydWN0IHByb3RvX2VudCB7CiAJ Y2hhciAqbmFtZTsKIAl1X3Nob3J0IHByb3RvOwpAQCAtMTM2LDE2ICsxNDMsMjMgQEAKIAl7ICJy YXciLCAgSVBQUk9UT19SQVcgIH0sCiAJeyBOVUxMLCAtMSB9LAogfTsKKyNlbmRpZgogCiBjaGFy ICoKIGdldHByb3RvbmFtZShwcm90bykKIAl1X3Nob3J0IHByb3RvOwogeworI2lmICFVU0VfR0VU UFJPVE9CWVhYWAogCXJlZ2lzdGVyIHN0cnVjdCBwcm90b19lbnQgKnA7CiAKIAlmb3IgKHAgPSBw cm90b190YWI7IHAtPm5hbWUgIT0gTlVMTDsgcCsrKQogCQlpZiAocHJvdG8gPT0gcC0+cHJvdG8p CiAJCQlyZXR1cm4gcC0+bmFtZTsKKyNlbHNlCisJcmVnaXN0ZXIgc3RydWN0IHByb3RvZW50ICpw ZSA9IGdldHByb3RvYnludW1iZXIocHJvdG8pOworCWlmIChwZSkKKwkgIAlyZXR1cm4gcGUtPnBf bmFtZTsKKyNlbmRpZgogCiAJcmV0dXJuIE5VTEw7CiB9CkBAIC0xNTQsMTEgKzE2OCwxNyBAQAog Z2V0cHJvdG9udW0ocHJvdG8pCiAJY2hhciAqcHJvdG87CiB7CisjaWYgIVVTRV9HRVRQUk9UT0JZ WFhYCiAJcmVnaXN0ZXIgc3RydWN0IHByb3RvX2VudCAqcDsKIAogCWZvciAocCA9IHByb3RvX3Rh YjsgcC0+bmFtZSAhPSBOVUxMOyBwKyspCiAJCWlmICghc3RyY2FzZWNtcChwcm90bywgcC0+bmFt ZSkpCiAJCQlyZXR1cm4gcC0+cHJvdG87CisjZWxzZQorCXN0cnVjdCBwcm90b2VudCAqcGUgPSBn ZXRwcm90b2J5bmFtZShwcm90byk7CisJaWYgKHBlKQorCSAgCXBlLT5wX3Byb3RvOworI2VuZGlm CiAKIAlyZXR1cm4gLTE7CiB9Cg== --Multipart_Tue_Dec_11_18:06:44_2001-1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 17:49:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A146E37B405; Tue, 11 Dec 2001 17:49:33 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC1gBI87966; Tue, 11 Dec 2001 17:42:11 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 17:42:11 -0800 (PST) From: Message-Id: <200112120142.fBC1gBI87966@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/32714: KDE build failure: Qt's uic core dumps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: KDE build failure: Qt's uic core dumps Responsible-Changed-From-To: freebsd-ports->kde Responsible-Changed-By: ijliao Responsible-Changed-When: Tue Dec 11 17:42:04 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32714 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 19:10:18 2001 Delivered-To: freebsd-ports@freebsd.org Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by hub.freebsd.org (Postfix) with ESMTP id 141CE37B417; Tue, 11 Dec 2001 19:10:08 -0800 (PST) Received: from dsto-ms2.dsto.defence.gov.au (dsto-ms2.dsto.defence.gov.au [131.185.2.150]) by digger1.defence.gov.au (8.10.1/8.10.1) with ESMTP id fBC39CF03565; Wed, 12 Dec 2001 13:39:12 +1030 (CST) Received: from muttley.dsto.defence.gov.au (unverified) by dsto-ms2.dsto.defence.gov.au (Content Technologies SMTPRS 4.1.5) with ESMTP id ; Wed, 12 Dec 2001 13:39:51 +1030 Received: from salex001.dsto.defence.gov.au (salex001.dsto.defence.gov.au [131.185.2.9]) by muttley.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id NAA09498; Wed, 12 Dec 2001 13:32:20 +1030 (CST) Received: from fang.dsto.defence.gov.au ([131.185.2.5]) by salex001.dsto.defence.gov.au with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id YTNQFNH8; Wed, 12 Dec 2001 13:32:16 +1030 Received: from dsto.defence.gov.au (fuzz.dsto.defence.gov.au [131.185.75.229]) by fang.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id NAA01768; Wed, 12 Dec 2001 13:32:19 +1030 (CST) Message-ID: <3C16C8BF.D4D75682@dsto.defence.gov.au> Date: Wed, 12 Dec 2001 13:32:23 +1030 From: "Thyer, Matthew" X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: gnome@freebsd.org Cc: ports@freebsd.org Subject: ports/www/mozilla FTP path correction Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The first download site tried is wrong. ftp://ftp.planetmirror.com/pub/mozilla/mozilla/releases/mozilla0.9.6 should be: ftp://ftp.planetmirror.com/pub/mozilla/releases/mozilla0.9.6 -- Matthew Thyer Phone: +61 8 8259 7249 Science Corporate Information Systems Fax: +61 8 8259 5537 Defence Science and Technology Organisation, Edinburgh PO Box 1500 EDINBURGH South Australia 5111 IMPORTANT: This email remains the property of the Australian Defence Organisation and is subject to the jurisdiction of section 70 of the CRIMES ACT 1914. If you have received this email in error, you are requested to contact the sender and delete the email. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 20:29:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6527137B41C; Tue, 11 Dec 2001 20:29:34 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC4OIT85972; Tue, 11 Dec 2001 20:24:18 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 20:24:18 -0800 (PST) From: Message-Id: <200112120424.fBC4OIT85972@freefall.freebsd.org> To: Jan.Stocker@t-online.de, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23401: NetHack 3.3.1 with GNOME support Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: NetHack 3.3.1 with GNOME support State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 20:24:10 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=23401 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 20:29:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C5DFF37B417; Tue, 11 Dec 2001 20:29:34 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC4QYv88052; Tue, 11 Dec 2001 20:26:34 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 20:26:34 -0800 (PST) From: Message-Id: <200112120426.fBC4QYv88052@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, des@FreeBSD.org Subject: Re: ports/31893: gnats-3.113.1 conflicts with /usr/bin/send-pr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: gnats-3.113.1 conflicts with /usr/bin/send-pr Responsible-Changed-From-To: freebsd-ports->des Responsible-Changed-By: ijliao Responsible-Changed-When: Tue Dec 11 20:26:23 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31893 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 20:31:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 6C39F37B41C for ; Tue, 11 Dec 2001 20:31:38 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 611F72B78C; Wed, 12 Dec 2001 05:31:35 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 1221153; Wed, 12 Dec 2001 15:31:30 +1100 (EST) Date: Wed, 12 Dec 2001 15:31:30 +1100 From: Edwin Groothuis To: Rob Austein Cc: ports@FreeBSD.org Subject: Re: A couple of patches to the trafshow-3.1 port Message-ID: <20011212153130.A630@k7.mavetju.org> References: <20011212010650.A027B548@z.hactrn.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011212010650.A027B548@z.hactrn.net>; from sra@hactrn.net on Tue, Dec 11, 2001 at 06:06:44PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Dec 11, 2001 at 06:06:44PM -0700, Rob Austein wrote: > As far as I can tell, this program has been orphaned; at least, the > main web site says "huh?" (in Russian). Please feel free to pass > these patches along to the author if you know how to do so. I had begin october a discussion with the author: Vladimir Vorobyev Another thing is that if you run as root you will run out of file-descriptors (it's loosing one for every packet coming from a non-reverse resolvable IP address due to the way FreeBSD is doing its them and the way the program is aborting them if they are timing out). A fix for them couldn't be submitted yet because of the way the BPF device is not able to run in a threaded environment yet, but it might be in FreeBSD 4.5 with the patches of John Polstra. Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 20:39:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D98EC37B419; Tue, 11 Dec 2001 20:39:33 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC4UtA93187; Tue, 11 Dec 2001 20:30:55 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 20:30:55 -0800 (PST) From: Message-Id: <200112120430.fBC4UtA93187@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, des@FreeBSD.org Subject: Re: ports/32123: send-pr aborts after editing if VISUAL=jed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: send-pr aborts after editing if VISUAL=jed Responsible-Changed-From-To: freebsd-ports->des Responsible-Changed-By: ijliao Responsible-Changed-When: Tue Dec 11 20:30:18 PST 2001 Responsible-Changed-Why: over to maintainer (gnats) http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32123 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 21:19: 1 2001 Delivered-To: freebsd-ports@freebsd.org Received: from acc0.visti.net (acc0.visti.net [195.64.225.233]) by hub.freebsd.org (Postfix) with ESMTP id 0F22A37B41B for ; Tue, 11 Dec 2001 21:18:54 -0800 (PST) Received: from gw0.visti.net (gw0.visti.net [195.64.225.229]) by acc0.visti.net (8.8.8-Elvisti-980428/8.8.8) with ESMTP id HAA05506 for ; Wed, 12 Dec 2001 07:18:50 +0200 (EET) Received: from cscorp.com.ua (Ivanov-gw7r.visti.net [195.64.224.210] (may be forged)) by gw0.visti.net (8.12.1/8.12.1) with ESMTP id fBC4XdEx032279 for ; Wed, 12 Dec 2001 07:18:49 +0200 (EET)?g (envelope-from csc_seminar@cscorp.com.ua) Date: Wed, 12 Dec 2001 07:18:49 +0200 (EET) Message-Id: <200112120518.fBC4XdEx032279@gw0.visti.net> Received: from tanydura [192.168.101.101] by cscorp.com.ua [195.64.224.210] with SMTP (MDaemon.PRO.v5.0.4.R) for ; Tue, 11 Dec 2001 23:44:49 +0000 From: csc_seminar To: ports@freebsd.org Subject: Invitation for seminar. Ïðèãëàøåíèå íà ñåìèíàð Reply-To: csc_seminar@cscorp.com.ua Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1251 X-MDRemoteIP: 192.168.101.101 X-Return-Path: csc_seminar@cscorp.com.ua X-MDaemon-Deliver-To: ports@freebsd.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Ïðåäñòàâèòåëüñòâî Êîìïàíèè Capital Standard Corporation ïðèãëàøàåò Âàñ ïðèíÿòü ó÷àñòèå â îäíîäíåâíûõ êîíñóëüòàöèîííûõ ñåìèíàðàõ-ïðàêòèêóìàõ äëÿ ýôôåêòèâíîãî è áûñòðîãî ïîâûøåíèÿ êâàëèôèêàöèè ñîòðóäíèêîâ Âàøåé êîìïàíèè Îäíîäíåâíûé êîíñóëüòàöèîííûé ñåìèíàð-ïðàêòèêóì «Áèðæåâàÿ òîðãîâëÿ íà ìåæäóíàðîäíûõ ôèíàíñîâûõ ðûíêàõ. Ïðàêòè÷åñêèå àñïåêòû» Äàòà ïðîâåäåíèÿ: 19 äåêàáðÿ 2001 ãîäà Âðåìÿ ïðîâåäåíèÿ ñåìèíàðà: 9.30-17.30 Ìåñòî ïðîâåäåíèÿ: Èíñòèòóò ìåæäóíàðîäíûõ îòíîøåíèé  ïðîãðàììå ñåìèíàðà: 1. Ñïåêóëÿöèè - êàê ñïîñîá ïðèóìíîæåíèÿ êàïèòàëà: - ×àñòíûå èíâåñòîðû - Êîðïîðàòèâíûå è äðóãèå ó÷àñòíèêè ðûíêà - Ñóììà, äîñòàòî÷íàÿ äëÿ ðàáîòû 2. Èíñòðóìåíòû ìèðîâûõ òîâàðíûõ è ôèíàíñîâûõ ðûíêîâ: - FOREX - ìåæäóíàðîäíûé ðûíîê îáìåíà âàëþò - Ôüþ÷åðñíûå è îïöèîííûå êîíòðàêòû 3. Òåõíîëîãèÿ è ìåõàíèçì áèðæåâûõ è âíåáèðæåâûõ îïåðàöèé: - Çàêîíîäàòåëüíàÿ áàçà, ïðàâèëà è ïðàêòèêà àìåðèêàíñêîé ìîäåëè òîðãîâëè - Âàëþòíûé ðûíîê «spot» - Áèðæåâûå òîðãîâûå ñèñòåìû - Êîìïüþòåðíûå òîðãîâûå ñèñòåìû - Èíôîðìàöèîííûå ñèñòåìû è êîìïüþòåðíûå òåõíîëîãèè ïî îáåñïå÷åíèþ äèëèíãîâûõ îïåðàöèé 4. Êàê «äîòÿíóòüñÿ» äî ðûíêà: - Áðîêåðñêàÿ êîìïàíèÿ - Ïðèíöèïàë (ìàðêåò-ìåéêåð) - Òîðãîâûé ñ÷¸ò - Ìàðæà - Êðåäèòíîå ïëå÷î - Ñîâåðøåíèå ñäåëêè - Ïëþñû è ìèíóñû "èíòåðíåò-òîðãîâëè" - Ïðèáûëüíîñòü îïåðàöèé 5. Ïðîãíîçèðîâàíèå ðûíî÷íûõ òåíäåíöèé: - Òåõíè÷åñêèé àíàëèç - Ôóíäàìåíòàëüíûé àíàëèç - Ïðîôåññèîíàëüíûå êîìïüþòåðíûå ñèñòåìû è ïðîãðàììíîå îáåñïå÷åíèå, èñïîëüçóåìîå â ðàáîòå äèëåðîâ Ñòîèìîñòü ó÷àñòèÿ â ñåìèíàðå: 440 ãðèâåí Äëÿ âòîðîãî è òðåòüåãî ó÷àñòíèêà îò îäíîé êîìïàíèè ñêèäêà – 10%.  ñòîèìîñòü âêëþ÷åíû: îáó÷åíèå è êîíñóëüòàöèè íà ñåìèíàðå, îáåä, êîôå-áðåéêè. Ýêñêëþçèâíûé àëüáîì ìàòåðèàëîâ «Áèðæåâàÿ òîðãîâëÿ íà ìåæäóíàðîäíûõ ôèíàíñîâûõ ðûíêàõ. Ïðàêòè÷åñêèå àñïåêòû», ïîäãîòîâëåííîãî ýêñïåðòàìè ñïåöèàëüíî äëÿ ó÷àñòíèêîâ ñ ó÷¸òîì âñåõ ïîñëåäíèõ èçìåíåíèé è äîïîëíåíèé. Îäíîäíåâíûé êîíñóëüòàöèîííûé ñåìèíàð-ïðàêòèêóì: «Òàìîæåííîå ðåãóëèðîâàíèå âíåøíåýêîíîìè÷åñêîé äåÿòåëüíîñòè» Äàòà ïðîâåäåíèÿ: 21 äåêàáðÿ 2001 ãîäà Âðåìÿ ïðîâåäåíèÿ ñåìèíàðà: 9.30-17.30 Ìåñòî ïðîâåäåíèÿ: Êîíôåðåíö-çàë ãîñòèíèöû «Ñàíêò-Ïåòåðáóðã» Â ïðîãðàììå ñåìèíàðà: Îñîáåííîñòè òàìîæåííîãî çàêîíîäàòåëüñòâà â ñôåðå âíåøíåýêîíîìè÷åñêîé äåÿòåëüíîñòè. Çàêîí Óêðàèíû «Î Òàìîæåííîì òàðèôå Óêðàèíû» îò 5.04.2001 ¹ 2371-²²². Èçìåíåíèÿ è äîïîëíåíèÿ â Çàêîí Óêðàèíû ïî ñîñòîÿíèþ íà 1.12.01. Óêðàèíñêàÿ òîâàðíàÿ íîìåíêëàòóðà âíåøíåýêîíîìè÷åñêîé äåÿòåëüíîñòè. Îñîáåííîñòè òàìîæåííîãî îôîðìëåíèÿ â ðàìêàõ ñîãëàøåíèé î ñâîáîäíîé òîðãîâëå. Ïåðñïåêòèâà ðàçâèòèÿ çîíû ñâîáîäíîé òîðãîâëè. Íîâûå ïðàâèëà ñòðàíû ïðîèñõîæäåíèÿ òîâàðîâ. Ïîðÿäîê ïðèìåíåíèÿ ñåðòèôèêàòîâ CT-1, EUR 1,2. Âîïðîñû êëàññèôèêàöèè òîâàðîâ. Îáçîð íîðìàòèâíûõ äîêóìåíòîâ ÃÒÑÓ ïî âîïðîñàì òàðèôíîãî ðåãóëèðîâàíèÿ ïî ñîñòîÿíèþ íà 1.12.01. Îñîáåííîñòè çàïîëíåíèÿ ÃÒÄ ïðè ðàçëè÷íûõ òàìîæåííûõ ðåæèìàõ. Ëèçèíãîâûå êîíòðàêòû, âðåìåííûé ââîç òîâàðà. Îôîðìëåíèå ÃÒÄ ïî âíåøíåýêîíîìè÷åñêèì äîãîâîðàì ñ ó÷àñòèåì áîëåå äâóõ ñòîðîí. Êðèòåðèè îïðåäåëåíèÿ òàìîæåííûìè îðãàíàìè Óêðàèíû «ãðóïï ðèñêà» (âíåøíåýêîíîìè÷åñêèå îïåðàöèè, êîòîðûå òðåáóþò äåòàëüíîé ïðîâåðêè íà çàêîííîñòü ñäåëêè). Óñòàíîâëåíèå ôàêòîâ òàìîæåííûõ ïðàâîíàðóøåíèé, êëàññèôèêàöèÿ è ïðîöåññóàëüíîå îôîðìëåíèå ôàêòîâ ïðàâîíàðóøåíèé, ñàíêöèè, ïðåäóñìîòðåííûå çàêîíîäàòåëüñòâîì, ïîñëåäñòâèÿ âîçìîæíûå äëÿ ñóáúåêòîâ ÂÝÄ. Ïðàâîâûå îñíîâû äëÿ îñóùåñòâëåíèÿ ìåæäóíàðîäíîé àäìèíèñòðàòèâíîé ïîìîùè â òàìîæåííûõ çîíàõ (ó÷àñòèå Óêðàèíû â ìåæäóíàðîäíûõ êîíâåíöèÿõ ïî òàìîæåííûì âîïðîñàì, äâóõ- è ìíîãîñòîðîííèå ìåæãîñóäàðñòâåííûå äîãîâîðà). Ïîðÿäîê ðåàëèçàöèè êîíâåíöèé, ñîãëàøåíèé, î âçàèìíîé àäìèíèñòðàòèâíîé ïîìîùè â òàìîæåííûõ âîïðîñàõ. Ñòîèìîñòü ó÷àñòèÿ â ñåìèíàðå 570 ãðèâåí Äëÿ âòîðîãî è òðåòüåãî ó÷àñòíèêà îò îäíîé ôèðìû ñêèäêà – 10%.  ñòîèìîñòü âêëþ÷åíû: îáó÷åíèå è êîíñóëüòàöèè íà ñåìèíàðå, îáåä, êîôå-áðåéêè. Ýêñêëþçèâíûé àëüáîì ìàòåðèàëîâ «Òàìîæåííîå ðåãóëèðîâàíèå âíåøíåýêîíîìè÷åñêîé äåÿòåëüíîñòè», ïîäãîòîâëåííîãî ýêñïåðòàìè ñïåöèàëüíî äëÿ ó÷àñòíèêîâ ñ ó÷¸òîì âñåõ ïîñëåäíèõ èçìåíåíèé è äîïîëíåíèé Íàøà êîìïàíèÿ ïðåäëàãàåò òàêóþ óñëóãó êàê ïðîâåäåíèå èíäèâèäóàëüíûõ êîíñóëüòàöèîííûõ ñåìèíàðîâ ïî âûáðàííîé Âàìè òåìàòèêå ó Âàñ â îôèñå. Äëÿ ó÷àñòèÿ â ñåìèíàðå íåîáõîäèìî çàðåãèñòðèðîâàòüñÿ ïî íàøèì òåëåôîíàì è ïîäòâåðäèòü ñâîå ó÷àñòèå îïëàòîé (044) 494 46 58, E-mail: csc_seminar@cscorp.com.ua Ìû ïðèíîñèì ñâîè èçâèíåíèÿ, åñëè ïîäîáíàÿ ðàññûëêà Âàì íå èíòåðåñíà. Óäàëèòü ñâîé àäðåñ èç ñïèñêà ïîäïèñ÷èêîâ Âû ìîæåòå, îòîñëàâ ïèñüìî ïî àäðåñó unsubscribe_sem@cscorp.com.ua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 21:29:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF70737B417; Tue, 11 Dec 2001 21:29:33 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC5Q1159370; Tue, 11 Dec 2001 21:26:01 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 21:26:01 -0800 (PST) From: Message-Id: <200112120526.fBC5Q1159370@freefall.freebsd.org> To: edwin@mavetju.org, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32599: [PATCH] games/xrobots does not build/install correctly Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] games/xrobots does not build/install correctly State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 21:25:49 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32599 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 22:19:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6656537B417; Tue, 11 Dec 2001 22:19:34 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC6CKB10178; Tue, 11 Dec 2001 22:12:20 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 22:12:20 -0800 (PST) From: Message-Id: <200112120612.fBC6CKB10178@freefall.freebsd.org> To: lintux@lintux.cx, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32608: Whoops.. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Whoops.. State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 22:12:13 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32608 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 22:29:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 607B137B405; Tue, 11 Dec 2001 22:29:34 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC6S9728344; Tue, 11 Dec 2001 22:28:09 -0800 (PST) (envelope-from ijliao) Date: Tue, 11 Dec 2001 22:28:09 -0800 (PST) From: Message-Id: <200112120628.fBC6S9728344@freefall.freebsd.org> To: zgh@malfunktion.net, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/29227: New port: zclock time/date applet for GNOME Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: zclock time/date applet for GNOME State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Dec 11 22:27:59 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=29227 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 11 23:56:46 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 1B5B737B405; Tue, 11 Dec 2001 23:56:41 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id JAA72826; Wed, 12 Dec 2001 09:56:30 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h156.228.dialup.iptcom.net [212.9.228.156]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id JAA08305; Wed, 12 Dec 2001 09:56:28 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id fBC7tuF22266; Wed, 12 Dec 2001 09:55:56 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C170E30.5512A8F8@FreeBSD.org> Date: Wed, 12 Dec 2001 09:58:40 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: "Thyer, Matthew" Cc: gnome@FreeBSD.org, ports@FreeBSD.org Subject: Re: ports/www/mozilla FTP path correction References: <3C16C8BF.D4D75682@dsto.defence.gov.au> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org "Thyer, Matthew" wrote: > > The first download site tried is wrong. > > ftp://ftp.planetmirror.com/pub/mozilla/mozilla/releases/mozilla0.9.6 > > should be: > > ftp://ftp.planetmirror.com/pub/mozilla/releases/mozilla0.9.6 Where did you get this mirror from? I do not see anything similar neither in bsd.sites.mk nor in defaults/make.conf. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 0: 0:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0714B37B419 for ; Wed, 12 Dec 2001 00:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC802b40504; Wed, 12 Dec 2001 00:00:02 -0800 (PST) (envelope-from gnats) Received: from idiom.com (idiom.com [216.240.32.1]) by hub.freebsd.org (Postfix) with ESMTP id 2622B37B405 for ; Tue, 11 Dec 2001 23:59:04 -0800 (PST) Received: (from muir@localhost) by idiom.com (8.9.3/8.9.3) id XAA75663; Tue, 11 Dec 2001 23:59:03 -0800 (PST) Message-Id: <200112120759.XAA75663@idiom.com> Date: Tue, 11 Dec 2001 23:59:03 -0800 (PST) From: David Muir Sharnoff Reply-To: muir@idiom.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32738: p5-Net-Netmask is out of date Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32738 >Category: ports >Synopsis: p5-Net-Netmask is out of date >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 00:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: David Muir Sharnoff >Release: FreeBSD charm.idiom.com 4.4-STABLE FreeBSD 4.4-STABLE >Organization: Idiom >Environment: na >Description: I'm the author of Net::Netmask. The port is out of date. The maintainer's email address bounces. >How-To-Repeat: >Fix: diff -ru new/Makefile p5-Net-Netmask/Makefile --- new/Makefile Wed Dec 12 07:52:24 2001 +++ p5-Net-Netmask/Makefile Wed Mar 28 10:08:33 2001 @@ -6,7 +6,7 @@ # PORTNAME= Net-Netmask -PORTVERSION= 1.9002 +PORTVERSION= 1.8 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net diff -ru new/distinfo p5-Net-Netmask/distinfo --- new/distinfo Wed Dec 12 07:53:23 2001 +++ p5-Net-Netmask/distinfo Fri Jun 30 01:12:15 2000 @@ -1 +1 @@ -MD5 (Net-Netmask-1.9002.tar.gz) = 4c327e1d6ac29622f37437662abeba9c +MD5 (Net-Netmask-1.8.tar.gz) = 31dcfdf69155da58746835a67817970d >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 0: 5:20 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 1137F37B416 for ; Wed, 12 Dec 2001 00:05:13 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id KAA80972; Wed, 12 Dec 2001 10:05:04 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h156.228.dialup.iptcom.net [212.9.228.156]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id KAA12442; Wed, 12 Dec 2001 10:05:02 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id fBC84VF22314; Wed, 12 Dec 2001 10:04:31 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C171033.87A60871@FreeBSD.org> Date: Wed, 12 Dec 2001 10:07:15 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Richard Kuhns Cc: freebsd-ports@FreeBSD.org Subject: Re: A quick nautilus question... References: <20011211140526.56c852f7.rjk@grauel.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Richard Kuhns wrote: > > I've just built and installed nautilus, selected it as my file manager, > and logged out/killed oafd/logged back in. So far, I'm fairly impressed. > However, could anyone please tell me how to get rid of the icons for each > disk partion that have showed up on my desktop? The Delete and Move to > Trash options are grayed out, dragging them to Trash does nothing, and I > don't want them on my desktop. Donno, sorry... One obvioud way is to hack the source, but it could be too envolved. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 0:13:43 2001 Delivered-To: freebsd-ports@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id 14CB837B41B for ; Wed, 12 Dec 2001 00:13:39 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 1746F9B08; Wed, 12 Dec 2001 03:11:39 -0500 (EST) Date: Wed, 12 Dec 2001 03:11:39 -0500 From: Will Andrews To: ports@FreeBSD.org Subject: Recent news about the bento package build cluster Message-ID: <20011212031138.J30626@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: ports@FreeBSD.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Q68bSM7Ycu6FN28Q" Content-Disposition: inline User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --Q68bSM7Ycu6FN28Q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable [ portmgr@ hat on ] Hi all, We know that the bento build cluster (http://bento.freebsd.org/) has been out of action for roughly 2 weeks. We did not realize what was happening until the other day when we had a closer look at the problem. Fortunately, we've got it fixed and it's now running better than ever. We've added an "experimental" build for 4.x only (4-exp). This build is designed to help portmgr incorporate new features into the Ports Collection in a more timely manner including those already in our PR backlog: http://freebsd.org/cgi/query-pr-summary.cgi?responsible=3Dportmgr We're happy to finally have a testbed where new features can be tested without sacrificing the quality of the packages from the existing -stable and -current builds. Cheers! --=20 wca --Q68bSM7Ycu6FN28Q Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8FxE6F47idPgWcsURAu2vAJ9PVCC+ysZ25h4CqJfWibtaToGZbwCbBVfL VizOWRAOaTQCy5GADMFCk3k= =dky4 -----END PGP SIGNATURE----- --Q68bSM7Ycu6FN28Q-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 0:21:48 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id DAB6737B416 for ; Wed, 12 Dec 2001 00:21:43 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id KAA93894; Wed, 12 Dec 2001 10:21:38 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h147.229.dialup.iptcom.net [212.9.229.147]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id KAA19183; Wed, 12 Dec 2001 10:21:36 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id fBC8L5F22407; Wed, 12 Dec 2001 10:21:05 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C171415.11D05136@FreeBSD.org> Date: Wed, 12 Dec 2001 10:23:49 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Will Andrews Cc: FreeBSD Ports Subject: Re: cvs commit: ports/graphics/imlib Makefile References: <200112111450.fBBEow047077@freefall.freebsd.org> <20011211143617.H30626@squall.waterspout.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Will Andrews wrote: > > On Tue, Dec 11, 2001 at 06:50:58AM -0800, Maxim Sobolev wrote: > > Log: > > Explicitly pass --x-{includes,libraries} to the configure script, so > > that the > port works even for the non-standard X11BASE's (like > > /opt or such). > > Shouldn't this be part of the default USE_X11BASE GNU_CONFIGURE > arguments? I do not see any reasons why not, provided that will do a test run on bento first. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 0:30:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19AFB37B416 for ; Wed, 12 Dec 2001 00:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBC8U1g81078; Wed, 12 Dec 2001 00:30:01 -0800 (PST) (envelope-from gnats) Received: from utopia.leeym.com (utopia.leeym.com [211.72.162.194]) by hub.freebsd.org (Postfix) with ESMTP id 6497637B417 for ; Wed, 12 Dec 2001 00:28:36 -0800 (PST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 43776C3B00; Wed, 12 Dec 2001 16:28:33 +0800 (CST) Message-Id: <20011212082833.43776C3B00@utopia.leeym.com> Date: Wed, 12 Dec 2001 16:28:33 +0800 (CST) From: Yen-Ming Lee Reply-To: Yen-Ming Lee To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32739: new port: razor-agent 1.17 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32739 >Category: ports >Synopsis: new port: razor-agent 1.17 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 00:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 4.4-STABLE FreeBSD 4.4-STABLE #54: Sun Nov 25 08:19:18 CST 2001 root@utopia.leeym.com:/usr/obj/usr/src/sys/UTOPIA i386 >Description: A distributed, collaborative, spam detection and filtering network. WWW: http://razor.sourceforge.net/ >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # razor-agents # razor-agents/Makefile # razor-agents/pkg-comment # razor-agents/pkg-descr # razor-agents/pkg-plist # razor-agents/distinfo # echo c - razor-agents mkdir -p razor-agents > /dev/null 2>&1 echo x - razor-agents/Makefile sed 's/^X//' >razor-agents/Makefile << 'END-of-razor-agents/Makefile' X# New ports collection makefile for: razor-agents X# Date created: 29 November 2001 X# Whom: Yen-Ming Lee X# X# $FreeBSD$ X# X XPORTNAME= razor-agents XPORTVERSION= 1.17 XCATEGORIES= mail XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= razor X XMAINTAINER= leeym@leeym.com X XRUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/DNS.pm:${PORTSDIR}/net/p5-Net \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Mail/Internet.pm:${PORTSDIR}/mail/p5-Mail-Tools X XPERL_CONFIGURE= yes X XMAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN1= razor-check.1 razor-discover.1 razor-report.1 XMAN3= Razor::Client.3 Razor::Errorhandler.3 X X.include END-of-razor-agents/Makefile echo x - razor-agents/pkg-comment sed 's/^X//' >razor-agents/pkg-comment << 'END-of-razor-agents/pkg-comment' XA distributed, collaborative, spam detection and filtering network END-of-razor-agents/pkg-comment echo x - razor-agents/pkg-descr sed 's/^X//' >razor-agents/pkg-descr << 'END-of-razor-agents/pkg-descr' XVipul's Razor is a distributed, collaborative, spam detection and filtering Xnetwork. Razor establishes a distributed and constantly updating catalogue Xof spam in propagation. This catalogue is used by clients to filter out Xknown spam. On receiving a spam, a Razor Reporting Agent (run by an end-user Xor a troll box) calculates and submits a 20-character unique identification Xof the spam (a SHA Digest) to its closest Razor Catalogue Server. The XCatalogue Server echos this signature to other trusted servers after storing Xit in its database. Prior to manual processing or transport-level reception, XRazor Filtering Agents (end-users and MTAs) check their incoming mail against Xa Catalogue Server and filter out or deny transport in case of a signature Xmatch. Catalogued spam, once identified and reported by a Reporting Agent, Xcan be blocked out by the rest of the Filtering Agents on the network. X XWWW: http://razor.sourceforge.net/ END-of-razor-agents/pkg-descr echo x - razor-agents/pkg-plist sed 's/^X//' >razor-agents/pkg-plist << 'END-of-razor-agents/pkg-plist' Xbin/razor-check Xbin/razor-discover Xbin/razor-report Xlib/perl5/site_perl/%%PERL_VER%%/Razor/Agent.pm Xlib/perl5/site_perl/%%PERL_VER%%/Razor/Client.pm Xlib/perl5/site_perl/%%PERL_VER%%/Razor/Config.pm Xlib/perl5/site_perl/%%PERL_VER%%/Razor/Errorhandler.pm Xlib/perl5/site_perl/%%PERL_VER%%/Razor/String.pm Xlib/perl5/site_perl/%%PERL_VER%%/Razor/Version.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/razor-agents/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/razor-agents X@dirrm lib/perl5/site_perl/%%PERL_VER%%/Razor END-of-razor-agents/pkg-plist echo x - razor-agents/distinfo sed 's/^X//' >razor-agents/distinfo << 'END-of-razor-agents/distinfo' XMD5 (razor-agents-1.17.tar.gz) = 18878f18e9bae0a63f9fa929eaf50ded END-of-razor-agents/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 2:30:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E7AC37B417 for ; Wed, 12 Dec 2001 02:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCAU1g07718; Wed, 12 Dec 2001 02:30:01 -0800 (PST) (envelope-from gnats) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id 381DB37B416 for ; Wed, 12 Dec 2001 02:21:34 -0800 (PST) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.11.6/8.11.4) id fBCAJxL26388; Wed, 12 Dec 2001 11:19:59 +0100 (CET) (envelope-from stijn) Message-Id: <200112121019.fBCAJxL26388@pcwin002.win.tue.nl> Date: Wed, 12 Dec 2001 11:19:59 +0100 (CET) From: stijn@win.tue.nl Reply-To: stijn@win.tue.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32742: [MAINTAINER UPDATE]: emulators/xmess Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32742 >Category: ports >Synopsis: [MAINTAINER UPDATE]: emulators/xmess >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 02:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Stijn Hoop >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD 4.4-STABLE #0: Thu Nov 15 09:17:23 CET 2001 >Description: - Fix build of xmess (broken due to differences in patches w/ xmame master port) - Adds 2 xmess specific patches (files/patch-ac files/patch-ad) >How-To-Repeat: N/A >Fix: diff -urN --exclude=CVS /usr/ports/emulators/xmess/Makefile xmess/Makefile --- /usr/ports/emulators/xmess/Makefile Sat Sep 1 21:18:06 2001 +++ xmess/Makefile Wed Dec 12 11:05:07 2001 @@ -11,6 +11,7 @@ MAINTAINER= stijn@win.tue.nl MASTERDIR= ${.CURDIR}/../xmame +PATCHDIR= $(.CURDIR)/files COMMENT= ${.CURDIR}/pkg-comment DESCR= ${.CURDIR}/pkg-descr diff -urN --exclude=CVS /usr/ports/emulators/xmess/files/patch-ac xmess/files/patch-ac --- /usr/ports/emulators/xmess/files/patch-ac Thu Jan 1 01:00:00 1970 +++ xmess/files/patch-ac Wed Dec 12 11:03:51 2001 @@ -0,0 +1,47 @@ +--- src/unix/unix.mak.orig Fri Aug 10 07:36:22 2001 ++++ src/unix/unix.mak Wed Dec 12 11:02:58 2001 +@@ -44,20 +44,20 @@ + + # svga and ggi also use $(X11LIB) since that's where zlib often is + LIBS.x11 = $(X11LIB) $(JOY_X11_LIBS) -lX11 -lXext +-LIBS.svgalib = $(X11LIB) -lvga -lvgagl ++LIBS.svgalib = -L$(LOCALBASE)/lib -lvga -lvgagl + LIBS.ggi = $(X11LIB) -lggi +-LIBS.xgl = $(X11LIB) $(JOY_X11_LIBS) -lX11 -lXext $(GLLIBS) -ljpeg ++LIBS.xgl = $(X11LIB) $(JOY_X11_LIBS) -lX11 -lXext $(GLLIBS) -L$(LOCALBASE)/lib -ljpeg + LIBS.xfx = $(X11LIB) $(JOY_X11_LIBS) -lX11 -lXext -lglide2x + LIBS.svgafx = $(X11LIB) -lvga -lvgagl -lglide2x + LIBS.openstep = -framework AppKit +-LIBS.SDL = -ldl -lSDL -lpthread -D_REENTRANT ++LIBS.SDL = `$(SDL_CONFIG) --libs` + LIBS.photon2 = -L/usr/lib -lph -lphrender + + CFLAGS.x11 = $(X11INC) $(JOY_X11_CFLAGS) +-CFLAGS.xgl = $(X11INC) $(JOY_X11_CFLAGS) $(GLCFLAGS) ++CFLAGS.xgl = -DGLU_VERSION_1_2 $(X11INC) $(JOY_X11_CFLAGS) $(GLCFLAGS) -I$(LOCALBASE)/include $(PTHREAD_CFLAGS) + CFLAGS.xfx = $(X11INC) $(JOY_X11_CFLAGS) -I/usr/include/glide + CFLAGS.svgafx = -I/usr/include/glide +-CFLAGS.SDL = -D_REENTRANT ++CFLAGS.SDL = `$(SDL_CONFIG) --cflags` + CFLAGS.photon2 = + + INST.x11 = doinstall +@@ -332,7 +332,7 @@ + + doc/x$(TARGET)rc.dist: all src/unix/xmamerc-keybinding-notes.txt + ./x$(TARGET).$(DISPLAY_METHOD) -noloadconfig -showconfig | \ +- grep -v loadconfig > doc/x$(TARGET)rc.dist ++ grep -v loadconfig | tr "\033" \# > doc/x$(TARGET)rc.dist + cat src/unix/xmamerc-keybinding-notes.txt >> doc/x$(TARGET)rc.dist + + doc/gamelist.$(TARGET): all +@@ -341,7 +341,8 @@ + + doc/x$(TARGET).6: all src/unix/xmame.6-1 src/unix/xmame.6-3 + cat src/unix/xmame.6-1 > doc/x$(TARGET).6 +- ./x$(TARGET).$(DISPLAY_METHOD) -manhelp >> doc/x$(TARGET).6 ++ ./x$(TARGET).$(DISPLAY_METHOD) -noloadconfig -manhelp | \ ++ tr "\033" \# >> doc/x$(TARGET).6 + cat src/unix/xmame.6-3 >> doc/x$(TARGET).6 + + install: $(INST.$(DISPLAY_METHOD)) install-man diff -urN --exclude=CVS /usr/ports/emulators/xmess/files/patch-ad xmess/files/patch-ad --- /usr/ports/emulators/xmess/files/patch-ad Thu Jan 1 01:00:00 1970 +++ xmess/files/patch-ad Wed Dec 12 09:33:11 2001 @@ -0,0 +1,13 @@ +--- src/unix/video-drivers/svgainput.c.orig Tue Oct 16 11:06:30 2001 ++++ src/unix/video-drivers/svgainput.c Tue Oct 16 11:05:37 2001 +@@ -12,6 +12,10 @@ + #include "devices.h" + #include "keyboard.h" + ++#ifdef __FreeBSD__ ++#define SIGUNUSED SIGUSR2 ++#endif ++ + static int console_fd = -1; + static int mouse_fd = -1; + static int leds = 0; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 2:49:36 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A8EB37B417; Wed, 12 Dec 2001 02:49:34 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCAjwZ22739; Wed, 12 Dec 2001 02:45:58 -0800 (PST) (envelope-from okazaki) Date: Wed, 12 Dec 2001 02:45:58 -0800 (PST) From: Message-Id: <200112121045.fBCAjwZ22739@freefall.freebsd.org> To: tkato@prontomail.com, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32622: Update port: japanese/truetypefonts to 2001.08.18.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: japanese/truetypefonts to 2001.08.18.3 State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Wed Dec 12 02:40:48 PST 2001 State-Changed-Why: Update to 20010818-4 was committed, thanks! I can not find a distfile corresponds to 20010818-3 on the master site. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32622 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 3: 1:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id 086DD37B41C for ; Wed, 12 Dec 2001 03:01:18 -0800 (PST) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id fBCB1GY80288; Wed, 12 Dec 2001 12:01:16 +0100 (CET) (envelope-from ernst) Message-Id: <200112121101.fBCB1GY80288@zaphod.euronet.nl> Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan To: ports@freebsd.org Subject: Automatically portupgrading Date: Wed, 12 Dec 2001 12:01:16 +0100 X-Mailer: KMail [version 1.3] Cc: knu@idaemons.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, I'm running pkgdepfix, and I get a lot of messages that I'm having old versions of packages. Can I automatically run portupgrade for all of my packages somehow? Ernst -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 3:20:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A747537B41C for ; Wed, 12 Dec 2001 03:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCBK1h31989; Wed, 12 Dec 2001 03:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EC9A37B416 for ; Wed, 12 Dec 2001 03:16:04 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCBG4B31544; Wed, 12 Dec 2001 03:16:04 -0800 (PST) (envelope-from nobody) Message-Id: <200112121116.fBCBG4B31544@freefall.freebsd.org> Date: Wed, 12 Dec 2001 03:16:04 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32744: Update port: graphics/netpbm to 9.22 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32744 >Category: ports >Synopsis: Update port: graphics/netpbm to 9.22 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 03:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 9.22 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/netpbm/Makefile graphics/netpbm/Makefile --- /usr/ports/graphics/netpbm/Makefile Sun Dec 9 07:09:53 2001 +++ graphics/netpbm/Makefile Wed Dec 12 00:00:00 2001 @@ -6,7 +6,7 @@ # PORTNAME= netpbm -PORTVERSION= 9.21 +PORTVERSION= 9.22 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -urN /usr/ports/graphics/netpbm/distinfo graphics/netpbm/distinfo --- /usr/ports/graphics/netpbm/distinfo Sun Dec 9 07:09:54 2001 +++ graphics/netpbm/distinfo Wed Dec 12 00:00:00 2001 @@ -1 +1 @@ -MD5 (netpbm-9.21.tgz) = 2fae8f82a3e1d624ade166c5607265a0 +MD5 (netpbm-9.22.tgz) = 2699fe6da26b24e78db5327ab4d8b9c6 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 3:21:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 59A3137B419 for ; Wed, 12 Dec 2001 03:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCBK1F31976; Wed, 12 Dec 2001 03:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DDCB137B416 for ; Wed, 12 Dec 2001 03:14:35 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCBEZp31469; Wed, 12 Dec 2001 03:14:35 -0800 (PST) (envelope-from nobody) Message-Id: <200112121114.fBCBEZp31469@freefall.freebsd.org> Date: Wed, 12 Dec 2001 03:14:35 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32743: Update port: games/nethack3-gnome/games/nethack-qt|games/nethack3-tty|games/nethack3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32743 >Category: ports >Synopsis: Update port: games/nethack3-gnome/games/nethack-qt|games/nethack3-tty|games/nethack3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 03:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Convert flavored nethack3 ports to master/stave style No response from maintainer. This PR supersedes ports/31295. Note: Please don't forget to rename nethack-qt to nethack3-qt before update! [games/nethack3] New file: files/patch-ag files/patch-ah [games/nethack3-gnome] Remove file file: distinfo files/patch-include:config.h files/patch-include:system.h files/patch-include:unixconf.h files/patch-sys:unix:Makefile.doc files/patch-sys:unix:Makefile.src files/patch-sys:unix:Makefile.top pkg-comment pkg-descr pkg-plist mes/nethack3-qt] Remove file: distinfo files/patch-include:config.h files/patch-include:unixconf.h files/patch-sys:unix:Makefile.doc files/patch-sys:unix:Makefile.src files/patch-sys:unix:Makefile.top pkg-comment pkg-descr pkg-plist [games/nethack3-tty] Remove file: distinfo files/patch-aa files/patch-ab files/patch-ac files/patch-ad files/patch-ae pkg-comment pkg-descr pkg-plist >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # games_nethack3-gnome.diff # games_nethack3-qt.diff # games_nethack3-tty.diff # games_nethack3.diff # echo x - games_nethack3-gnome.diff sed 's/^X//' >games_nethack3-gnome.diff << 'END-of-games_nethack3-gnome.diff' Xdiff -urN /usr/ports/games/nethack3-gnome/Makefile games/nethack3-gnome/Makefile X--- /usr/ports/games/nethack3-gnome/Makefile Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/Makefile Wed Dec 12 20:05:12 2001 X@@ -5,33 +5,10 @@ X # $FreeBSD: ports/games/nethack3-gnome/Makefile,v 1.1 2001/12/12 04:24:01 ijliao Exp $ X # X X-PORTNAME= nethack X-PORTVERSION= 3.3.1 X-CATEGORIES= games gnome X-MASTER_SITES= ftp://ftp.nethack.org/pub/nethack/nh331/src/ \ X- ${MASTER_SITE_GNU} X-MASTER_SITE_SUBDIR= ${PORTNAME} X-PKGNAMESUFFIX= -gnome X-DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g} X-EXTRACT_SUFX= .tgz X+MASTERDIR= ${.CURDIR}/../nethack3 X X MAINTAINER= Jan.Stocker@t-online.de X X-USE_GNOME= yes X-USE_GMAKE= yes X-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} X+WITH_GNOME_GRAPHICS= yes X X-MAN6= dgn_comp.6 dlb.6 lev_comp.6 nethack.6 recover.6 X- X-pre-configure: X- @cd ${WRKSRC}/sys/unix; ${SH} setup.sh X- X-post-install: X- @cd ${WRKSRC}/doc; ${CHMOD} 644 *.6 X- @cd ${WRKSRC}/doc; PREFIX=${PREFIX} ${MAKE} manpages X-.if !defined(NOPORTDOCS) X- ${MKDIR} ${PREFIX}/share/doc/nethack X- ${CP} ${WRKSRC}/doc/Guidebook.txt ${PREFIX}/share/doc/nethack X-.endif X- X-.include X+.include "${MASTERDIR}/Makefile" Xdiff -urN /usr/ports/games/nethack3-gnome/distinfo games/nethack3-gnome/distinfo X--- /usr/ports/games/nethack3-gnome/distinfo Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/distinfo Thu Jan 1 09:00:00 1970 X@@ -1 +0,0 @@ X-MD5 (nethack-331.tgz) = d0600ce4698c80e5ad1f917ded1c36d2 Xdiff -urN /usr/ports/games/nethack3-gnome/files/patch-include::config.h games/nethack3-gnome/files/patch-include::config.h X--- /usr/ports/games/nethack3-gnome/files/patch-include::config.h Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/files/patch-include::config.h Thu Jan 1 09:00:00 1970 X@@ -1,61 +0,0 @@ X-*** include/config.h.orig Sat Jul 22 03:13:51 2000 X---- include/config.h Sat Dec 9 13:31:34 2000 X-*************** X-*** 45,51 **** X- #define TTY_GRAPHICS /* good old tty based graphics */ X- /* #define X11_GRAPHICS */ /* X11 interface */ X- /* #define QT_GRAPHICS */ /* Qt interface */ X-! /* #define GNOME_GRAPHICS */ /* Gnome interface */ X- X- /* X- * Define the default window system. This should be one that is compiled X---- 45,51 ---- X- #define TTY_GRAPHICS /* good old tty based graphics */ X- /* #define X11_GRAPHICS */ /* X11 interface */ X- /* #define QT_GRAPHICS */ /* Qt interface */ X-! #define GNOME_GRAPHICS /* Gnome interface */ X- X- /* X- * Define the default window system. This should be one that is compiled X-*************** X-*** 151,161 **** X- X- #ifdef UNIX X- /* path and file name extension for compression program */ X-! #define COMPRESS "/usr/bin/compress" /* Lempel-Ziv compression */ X-! #define COMPRESS_EXTENSION ".Z" /* compress's extension */ X- /* An example of one alternative you might want to use: */ X-! /* #define COMPRESS "/usr/local/bin/gzip" */ /* FSF gzip compression */ X-! /* #define COMPRESS_EXTENSION ".gz" */ /* normal gzip extension */ X- #endif X- X- #ifndef COMPRESS X---- 151,161 ---- X- X- #ifdef UNIX X- /* path and file name extension for compression program */ X-! /* #define COMPRESS "/usr/bin/compress" */ /* Lempel-Ziv compression */ X-! /* #define COMPRESS_EXTENSION ".Z" */ /* compress's extension */ X- /* An example of one alternative you might want to use: */ X-! #define COMPRESS "/usr/bin/gzip" /* FSF gzip compression */ X-! #define COMPRESS_EXTENSION ".gz" /* normal gzip extension */ X- #endif X- X- #ifndef COMPRESS X-*************** X-*** 186,192 **** X- * otherwise it will be the current directory. X- */ X- # ifndef HACKDIR X-! # define HACKDIR "/usr/games/lib/nethackdir" /* nethack directory */ X- # endif X- X- /* X---- 186,192 ---- X- * otherwise it will be the current directory. X- */ X- # ifndef HACKDIR X-! # define HACKDIR "/usr/local/share/nethack" /* nethack directory */ X- # endif X- X- /* Xdiff -urN /usr/ports/games/nethack3-gnome/files/patch-include::system.h games/nethack3-gnome/files/patch-include::system.h X--- /usr/ports/games/nethack3-gnome/files/patch-include::system.h Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/files/patch-include::system.h Thu Jan 1 09:00:00 1970 X@@ -1,19 +0,0 @@ X-*** include/system.h.orig Thu Jan 6 11:20:08 2000 X---- include/system.h Sat Sep 23 01:08:09 2000 X-*************** X-*** 516,522 **** X- # if defined(ULTRIX) || defined(SYSV) || defined(MICRO) || defined(VMS) || defined(MAC) || (defined(HPUX) && defined(_POSIX_SOURCE)) X- E time_t FDECL(time, (time_t *)); X- # else X-! E long FDECL(time, (time_t *)); X- # endif /* ULTRIX */ X- X- #ifdef VMS X---- 516,522 ---- X- # if defined(ULTRIX) || defined(SYSV) || defined(MICRO) || defined(VMS) || defined(MAC) || (defined(HPUX) && defined(_POSIX_SOURCE)) X- E time_t FDECL(time, (time_t *)); X- # else X-! E time_t FDECL(time, (time_t *)); X- # endif /* ULTRIX */ X- X- #ifdef VMS Xdiff -urN /usr/ports/games/nethack3-gnome/files/patch-include::unixconf.h games/nethack3-gnome/files/patch-include::unixconf.h X--- /usr/ports/games/nethack3-gnome/files/patch-include::unixconf.h Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/files/patch-include::unixconf.h Thu Jan 1 09:00:00 1970 X@@ -1,36 +0,0 @@ X-*** include/unixconf.h.orig Sun Jul 16 18:03:51 2000 X---- include/unixconf.h Sat Sep 23 01:09:25 2000 X-*************** X-*** 47,53 **** X- * job control (note that AIX is SYSV otherwise) X- * Also define this for AIX 3.2 */ X- X-! #define TERMINFO /* uses terminfo rather than termcap */ X- /* Should be defined for most SYSV, SVR4 (including X- * Solaris 2+), HPUX, and Linux systems. In X- * particular, it should NOT be defined for the UNIXPC X---- 47,53 ---- X- * job control (note that AIX is SYSV otherwise) X- * Also define this for AIX 3.2 */ X- X-! /* #define TERMINFO */ /* uses terminfo rather than termcap */ X- /* Should be defined for most SYSV, SVR4 (including X- * Solaris 2+), HPUX, and Linux systems. In X- * particular, it should NOT be defined for the UNIXPC X-*************** X-*** 143,149 **** X- * A stat system call is done on the mailbox every MAILCKFREQ moves. X- */ X- X-! #define MAIL /* Deliver mail during the game */ X- X- /* The Andrew Message System does mail a little differently from normal X- * UNIX. Mail is deposited in the user's own directory in ~/Mailbox X---- 143,149 ---- X- * A stat system call is done on the mailbox every MAILCKFREQ moves. X- */ X- X-! /* #define MAIL */ /* Deliver mail during the game */ X- X- /* The Andrew Message System does mail a little differently from normal X- * UNIX. Mail is deposited in the user's own directory in ~/Mailbox Xdiff -urN /usr/ports/games/nethack3-gnome/files/patch-sys::unix::Makefile.doc games/nethack3-gnome/files/patch-sys::unix::Makefile.doc X--- /usr/ports/games/nethack3-gnome/files/patch-sys::unix::Makefile.doc Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/files/patch-sys::unix::Makefile.doc Thu Jan 1 09:00:00 1970 X@@ -1,44 +0,0 @@ X-*** sys/unix/Makefile.doc.orig Fri Jan 14 12:49:48 2000 X---- sys/unix/Makefile.doc Sat Sep 23 01:16:22 2000 X-*************** X-*** 34,40 **** X- X- X- GAME = nethack X-! MANDIR = /usr/man/man6 X- MANEXT = 6 X- X- # manual installation for most BSD-style systems X---- 34,40 ---- X- X- X- GAME = nethack X-! MANDIR = ${PREFIX}/man/man X- MANEXT = 6 X- X- # manual installation for most BSD-style systems X-*************** X-*** 51,61 **** X- # DLBMANCREATE = nroff -man dlb.6 > X- X- manpages: X-! -$(GAMEMANCREATE) $(MANDIR)/$(GAME).$(MANEXT) X-! -$(LEVMANCREATE) $(MANDIR)/lev_comp.$(MANEXT) X-! -$(DGNMANCREATE) $(MANDIR)/dgn_comp.$(MANEXT) X-! -$(RCVRMANCREATE) $(MANDIR)/recover.$(MANEXT) X-! -$(DLBMANCREATE) $(MANDIR)/dlb.$(MANEXT) X- X- # manual creation for distribution X- DISTRIB = Guidebook.txt nethack.txt lev_comp.txt dgn_comp.txt recover.txt dlb.txt X---- 51,61 ---- X- # DLBMANCREATE = nroff -man dlb.6 > X- X- manpages: X-! -$(GAMEMANCREATE) $(MANDIR)$(MANEXT)/$(GAME).$(MANEXT) X-! -$(LEVMANCREATE) $(MANDIR)$(MANEXT)/lev_comp.$(MANEXT) X-! -$(DGNMANCREATE) $(MANDIR)$(MANEXT)/dgn_comp.$(MANEXT) X-! -$(RCVRMANCREATE) $(MANDIR)$(MANEXT)/recover.$(MANEXT) X-! -$(DLBMANCREATE) $(MANDIR)$(MANEXT)/dlb.$(MANEXT) X- X- # manual creation for distribution X- DISTRIB = Guidebook.txt nethack.txt lev_comp.txt dgn_comp.txt recover.txt dlb.txt Xdiff -urN /usr/ports/games/nethack3-gnome/files/patch-sys::unix::Makefile.src games/nethack3-gnome/files/patch-sys::unix::Makefile.src X--- /usr/ports/games/nethack3-gnome/files/patch-sys::unix::Makefile.src Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/files/patch-sys::unix::Makefile.src Thu Jan 1 09:00:00 1970 X@@ -1,72 +0,0 @@ X-*** sys/unix/Makefile.src.orig Sat Aug 5 12:52:57 2000 X---- sys/unix/Makefile.src Sat Dec 9 13:09:44 2000 X-*************** X-*** 139,145 **** X- # directories. The ones given below is the usual spot for linux systems. X- # The paths are for glibconfig.h and gnomesupport.h respectively. X- # X-! GNOMEINC=-I/usr/lib/glib/include -I/usr/lib/gnome-libs/include -I../win/gnome X- X- # flags for debugging: X- # CFLAGS = -g -I../include X---- 139,145 ---- X- # directories. The ones given below is the usual spot for linux systems. X- # The paths are for glibconfig.h and gnomesupport.h respectively. X- # X-! GNOMEINC=-I/usr/X11R6/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include/kpathsea -I../win/gnome X- X- # flags for debugging: X- # CFLAGS = -g -I../include X-*************** X-*** 203,210 **** X- X- # X- # X-! WINSRC = $(WINTTYSRC) X-! WINOBJ = $(WINTTYOBJ) X- X- # on some systems the termcap library is in -ltermcap or -lcurses X- # on 386 Xenix, the -ltermlib tputs() seems not to work; use -lcurses instead X---- 203,210 ---- X- X- # X- # X-! WINSRC = $(WINTTYSRC) $(WINGNOMESRC) X-! WINOBJ = $(WINTTYOBJ) $(WINGNOMEOBJ) X- X- # on some systems the termcap library is in -ltermcap or -lcurses X- # on 386 Xenix, the -ltermlib tputs() seems not to work; use -lcurses instead X-*************** X-*** 236,242 **** X- WINKDELIB = -lkdecore -lkdeui -lXext X- # X- # libraries for Gnome X-! WINGNOMELIB = -lgnomeui -lgnome -lart_lgpl -lgtk -lgdk -lpopt X- # X- # libraries for Gem port X- WINGEMLIB = -le_gem -lgem X---- 236,242 ---- X- WINKDELIB = -lkdecore -lkdeui -lXext X- # X- # libraries for Gnome X-! WINGNOMELIB = -L/usr/local/lib -L/usr/X11R6/lib -lgnomeui -lgnome -lart_lgpl -lgtk12 -lgdk12 -lglib12 -lpopt -lkpathsea X- # X- # libraries for Gem port X- WINGEMLIB = -le_gem -lgem X-*************** X-*** 244,250 **** X- # libraries for BeOS X- WINBELIB = -lbe X- X-! WINLIB = $(WINTTYLIB) X- X- # any other strange libraries your system needs (for Sysunix only -- the more X- # specialized targets should already be right) X---- 244,250 ---- X- # libraries for BeOS X- WINBELIB = -lbe X- X-! WINLIB = $(WINTTYLIB) $(WINGNOMELIB) X- X- # any other strange libraries your system needs (for Sysunix only -- the more X- # specialized targets should already be right) Xdiff -urN /usr/ports/games/nethack3-gnome/files/patch-sys::unix::Makefile.top games/nethack3-gnome/files/patch-sys::unix::Makefile.top X--- /usr/ports/games/nethack3-gnome/files/patch-sys::unix::Makefile.top Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/files/patch-sys::unix::Makefile.top Thu Jan 1 09:00:00 1970 X@@ -1,78 +0,0 @@ X-*** sys/unix/Makefile.top.orig Tue Jul 4 02:42:05 2000 X---- sys/unix/Makefile.top Sat Dec 9 13:08:51 2000 X-*************** X-*** 14,31 **** X- # MAKE = make X- X- # make NetHack X-- PREFIX = /usr X- GAME = nethack X- # GAME = nethack.prg X- GAMEUID = games X-! GAMEGRP = bin X- X- # Permissions - some places use setgid instead of setuid, for instance X- # See also the option "SECURE" in include/config.h X-! GAMEPERM = 04755 X-! FILEPERM = 0644 X- EXEPERM = 0755 X-! DIRPERM = 0755 X- X- # GAMEDIR also appears in config.h as "HACKDIR". X- # VARDIR may also appear in unixconf.h as "VAR_PLAYGROUND" else GAMEDIR X---- 14,30 ---- X- # MAKE = make X- X- # make NetHack X- GAME = nethack X- # GAME = nethack.prg X- GAMEUID = games X-! GAMEGRP = games X- X- # Permissions - some places use setgid instead of setuid, for instance X- # See also the option "SECURE" in include/config.h X-! GAMEPERM = 02755 X-! FILEPERM = 0664 X- EXEPERM = 0755 X-! DIRPERM = 0775 X- X- # GAMEDIR also appears in config.h as "HACKDIR". X- # VARDIR may also appear in unixconf.h as "VAR_PLAYGROUND" else GAMEDIR X-*************** X-*** 35,43 **** X- # therefore there should not be anything in GAMEDIR that you want to keep X- # (if there is, you'll have to do the installation by hand or modify the X- # instructions) X-! GAMEDIR = $(PREFIX)/games/lib/$(GAME)dir X- VARDIR = $(GAMEDIR) X-! SHELLDIR = $(PREFIX)/games X- X- # per discussion in Install.X11 and Install.Qt X- VARDATND = X---- 34,42 ---- X- # therefore there should not be anything in GAMEDIR that you want to keep X- # (if there is, you'll have to do the installation by hand or modify the X- # instructions) X-! GAMEDIR = $(PREFIX)/share/$(GAME) X- VARDIR = $(GAMEDIR) X-! SHELLDIR = $(PREFIX)/bin X- X- # per discussion in Install.X11 and Install.Qt X- VARDATND = X-*************** X-*** 48,54 **** X- # for BeOS X- # VARDATND = beostiles X- # for Gnome X-! # VARDATND = x11tiles pet_mark.xbm rip.xpm mapbg.xpm X- X- VARDATD = data oracles options quest.dat rumors X- VARDAT = $(VARDATD) $(VARDATND) X---- 47,53 ---- X- # for BeOS X- # VARDATND = beostiles X- # for Gnome X-! VARDATND = x11tiles pet_mark.xbm rip.xpm mapbg.xpm X- X- VARDATD = data oracles options quest.dat rumors X- VARDAT = $(VARDATD) $(VARDATND) Xdiff -urN /usr/ports/games/nethack3-gnome/pkg-comment games/nethack3-gnome/pkg-comment X--- /usr/ports/games/nethack3-gnome/pkg-comment Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/pkg-comment Thu Jan 1 09:00:00 1970 X@@ -1 +0,0 @@ X-A dungeon explorin', slashin', hackin' game Xdiff -urN /usr/ports/games/nethack3-gnome/pkg-descr games/nethack3-gnome/pkg-descr X--- /usr/ports/games/nethack3-gnome/pkg-descr Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/pkg-descr Thu Jan 1 09:00:00 1970 X@@ -1,8 +0,0 @@ X-This is version 3.3.1 of nethack, a clasic ASCII-based adventure game X-with graphics support for Gnome. X-You and your faithful pet are on a quest to retrieve the lost Amulet X-of Yendor. X- X-WWW: http://www.nethack.org/ X- X-Jan.Stocker@t-online.de Xdiff -urN /usr/ports/games/nethack3-gnome/pkg-plist games/nethack3-gnome/pkg-plist X--- /usr/ports/games/nethack3-gnome/pkg-plist Wed Dec 12 13:24:01 2001 X+++ games/nethack3-gnome/pkg-plist Thu Jan 1 09:00:00 1970 X@@ -1,138 +0,0 @@ X-bin/nethack X-share/nethack/nethack X-@exec mkdir %D/share/nethack/save X-@exec chmod -R 775 %D/share/nethack X-@exec chmod 2755 %D/share/nethack/nethack X-@exec chown games:games %D/share/nethack/save X-@unexec rm -rf %D/share/nethack/save X-share/doc/nethack/Guidebook.txt X-share/nethack/Arc-fila.lev X-share/nethack/Arc-filb.lev X-share/nethack/Arc-goal.lev X-share/nethack/Arc-loca.lev X-share/nethack/Arc-strt.lev X-share/nethack/Bar-fila.lev X-share/nethack/Bar-filb.lev X-share/nethack/Bar-goal.lev X-share/nethack/Bar-loca.lev X-share/nethack/Bar-strt.lev X-share/nethack/Cav-fila.lev X-share/nethack/Cav-filb.lev X-share/nethack/Cav-goal.lev X-share/nethack/Cav-loca.lev X-share/nethack/Cav-strt.lev X-share/nethack/Hea-fila.lev X-share/nethack/Hea-filb.lev X-share/nethack/Hea-goal.lev X-share/nethack/Hea-loca.lev X-share/nethack/Hea-strt.lev X-share/nethack/Kni-fila.lev X-share/nethack/Kni-filb.lev X-share/nethack/Kni-goal.lev X-share/nethack/Kni-loca.lev X-share/nethack/Kni-strt.lev X-share/nethack/Mon-fila.lev X-share/nethack/Mon-filb.lev X-share/nethack/Mon-goal.lev X-share/nethack/Mon-loca.lev X-share/nethack/Mon-strt.lev X-share/nethack/Pri-fila.lev X-share/nethack/Pri-filb.lev X-share/nethack/Pri-goal.lev X-share/nethack/Pri-loca.lev X-share/nethack/Pri-strt.lev X-share/nethack/Ran-fila.lev X-share/nethack/Ran-filb.lev X-share/nethack/Ran-goal.lev X-share/nethack/Ran-loca.lev X-share/nethack/Ran-strt.lev X-share/nethack/Rog-fila.lev X-share/nethack/Rog-filb.lev X-share/nethack/Rog-goal.lev X-share/nethack/Rog-loca.lev X-share/nethack/Rog-strt.lev X-share/nethack/Sam-fila.lev X-share/nethack/Sam-filb.lev X-share/nethack/Sam-goal.lev X-share/nethack/Sam-loca.lev X-share/nethack/Sam-strt.lev X-share/nethack/Tou-fila.lev X-share/nethack/Tou-filb.lev X-share/nethack/Tou-goal.lev X-share/nethack/Tou-loca.lev X-share/nethack/Tou-strt.lev X-share/nethack/Val-fila.lev X-share/nethack/Val-filb.lev X-share/nethack/Val-goal.lev X-share/nethack/Val-loca.lev X-share/nethack/Val-strt.lev X-share/nethack/Wiz-fila.lev X-share/nethack/Wiz-filb.lev X-share/nethack/Wiz-goal.lev X-share/nethack/Wiz-loca.lev X-share/nethack/Wiz-strt.lev X-share/nethack/air.lev X-share/nethack/asmodeus.lev X-share/nethack/astral.lev X-share/nethack/baalz.lev X-share/nethack/bigrm-1.lev X-share/nethack/bigrm-2.lev X-share/nethack/bigrm-3.lev X-share/nethack/bigrm-4.lev X-share/nethack/bigrm-5.lev X-share/nethack/castle.lev X-share/nethack/cmdhelp X-share/nethack/data X-share/nethack/dungeon X-share/nethack/earth.lev X-share/nethack/fakewiz1.lev X-share/nethack/fakewiz2.lev X-share/nethack/fire.lev X-share/nethack/help X-share/nethack/hh X-share/nethack/history X-share/nethack/juiblex.lev X-share/nethack/knox.lev X-share/nethack/license X-share/nethack/mapbg.xpm X-share/nethack/medusa-1.lev X-share/nethack/medusa-2.lev X-share/nethack/minefill.lev X-share/nethack/minend-1.lev X-share/nethack/minend-2.lev X-share/nethack/minetn-1.lev X-share/nethack/minetn-2.lev X-share/nethack/opthelp X-share/nethack/options X-share/nethack/oracle.lev X-share/nethack/oracles X-share/nethack/orcus.lev X-share/nethack/pet_mark.xbm X-share/nethack/quest.dat X-share/nethack/rumors X-share/nethack/sanctum.lev X-share/nethack/soko1-1.lev X-share/nethack/soko1-2.lev X-share/nethack/soko2-1.lev X-share/nethack/soko2-2.lev X-share/nethack/soko3-1.lev X-share/nethack/soko3-2.lev X-share/nethack/soko4-1.lev X-share/nethack/soko4-2.lev X-share/nethack/tower1.lev X-share/nethack/tower2.lev X-share/nethack/tower3.lev X-share/nethack/valley.lev X-share/nethack/water.lev X-share/nethack/wizard1.lev X-share/nethack/wizard2.lev X-share/nethack/wizard3.lev X-share/nethack/wizhelp X-share/nethack/rip.xpm X-share/nethack/x11tiles X-@mode 664 X-share/nethack/logfile X-share/nethack/record X-share/nethack/perm X-@dirrm share/nethack X-@dirrm share/doc/nethack END-of-games_nethack3-gnome.diff echo x - games_nethack3-qt.diff sed 's/^X//' >games_nethack3-qt.diff << 'END-of-games_nethack3-qt.diff' Xdiff -urN /usr/ports/games/nethack-qt/Makefile games/nethack3-qt/Makefile X--- /usr/ports/games/nethack-qt/Makefile Tue Sep 4 06:47:05 2001 X+++ games/nethack3-qt/Makefile Sat Oct 6 02:14:11 2001 X@@ -5,43 +5,10 @@ X # $FreeBSD: ports/games/nethack-qt/Makefile,v 1.34 2001/09/03 19:00:32 knu Exp $ X # X X-PORTNAME= nethack X-PKGNAMESUFFIX= -qt X-PORTVERSION= 3.3.1 X-CATEGORIES= games X-MASTER_SITES= ftp://ftp.nethack.org/pub/nethack/nh${PORTVERSION:S/.//g}/src/ X-DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g} X-EXTRACT_SUFX= .tgz X+MASTERDIR= ${.CURDIR}/../nethack3 X X MAINTAINER= ports@FreeBSD.org X X-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} X-USE_QT_VER= 2 X-USE_GMAKE= yes X-MAKE_ENV= CXX="${CXX}" MOC="${MOC}" LIBQT="-l${QTNAME}" \ X- QTCPPFLAGS="${QTCPPFLAGS}" QTCFGLIBS="${QTCFGLIBS}" X-MAN6= dgn_comp.6 dlb.6 lev_comp.6 nethack.6 recover.6 X+WITH_QT_GRAPHICS= yes X X-pre-everything: X- @${ECHO} "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" X- @${ECHO} "!! You cannot install nethack and nethack-qt in parallel !!" X- @${ECHO} "!! But nethack-qt might read your prior nethack scores !!" X- @${ECHO} "!! Don't forget to backup your nethack libdir if it's !!" X- @${ECHO} "!! important for you !!" X- @${ECHO} "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" X- X-post-patch: X- @${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/include/config.h X- X-pre-configure: X- @cd ${WRKSRC}/sys/unix; ${SH} setup.sh X- X-post-install: X- @cd ${WRKSRC}/doc; ${CHMOD} 644 *.6 X- @cd ${WRKSRC}/doc; ${SETENV} ${MAKE_ENV} ${MAKE} manpages X-.if !defined(NOPORTDOCS) X- @${MKDIR} ${DOCSDIR} X- ${INSTALL_DATA} ${WRKSRC}/doc/Guidebook.txt ${DOCSDIR} X-.endif X- X-.include X+.include "${MASTERDIR}/Makefile" Xdiff -urN /usr/ports/games/nethack-qt/distinfo games/nethack3-qt/distinfo X--- /usr/ports/games/nethack-qt/distinfo Tue Sep 4 06:47:05 2001 X+++ games/nethack3-qt/distinfo Thu Jan 1 09:00:00 1970 X@@ -1 +0,0 @@ X-MD5 (nethack-331.tgz) = d0600ce4698c80e5ad1f917ded1c36d2 Xdiff -urN /usr/ports/games/nethack-qt/files/patch-include:config.h games/nethack3-qt/files/patch-include:config.h X--- /usr/ports/games/nethack-qt/files/patch-include:config.h Tue Sep 4 04:00:33 2001 X+++ games/nethack3-qt/files/patch-include:config.h Thu Jan 1 09:00:00 1970 X@@ -1,36 +0,0 @@ X---- include/config.h.orig Sat Jul 22 10:13:51 2000 X-+++ include/config.h Sat Aug 11 10:09:12 2001 X-@@ -44,7 +44,7 @@ X- */ X- #define TTY_GRAPHICS /* good old tty based graphics */ X- /* #define X11_GRAPHICS */ /* X11 interface */ X--/* #define QT_GRAPHICS */ /* Qt interface */ X-+#define QT_GRAPHICS /* Qt interface */ X- /* #define GNOME_GRAPHICS */ /* Gnome interface */ X- X- /* X-@@ -151,11 +151,11 @@ X- X- #ifdef UNIX X- /* path and file name extension for compression program */ X--#define COMPRESS "/usr/bin/compress" /* Lempel-Ziv compression */ X--#define COMPRESS_EXTENSION ".Z" /* compress's extension */ X-+/* #define COMPRESS "/usr/bin/compress"*/ /* Lempel-Ziv compression */ X-+/* #define COMPRESS_EXTENSION ".Z" */ /* compress's extension */ X- /* An example of one alternative you might want to use: */ X--/* #define COMPRESS "/usr/local/bin/gzip" */ /* FSF gzip compression */ X--/* #define COMPRESS_EXTENSION ".gz" */ /* normal gzip extension */ X-+#define COMPRESS "/usr/bin/gzip" /* FSF gzip compression */ X-+#define COMPRESS_EXTENSION ".gz" /* normal gzip extension */ X- #endif X- X- #ifndef COMPRESS X-@@ -186,7 +186,7 @@ X- * otherwise it will be the current directory. X- */ X- # ifndef HACKDIR X--# define HACKDIR "/usr/games/lib/nethackdir" /* nethack directory */ X-+# define HACKDIR "%%PREFIX%%/lib/nethack" /* nethack directory */ X- # endif X- X- /* Xdiff -urN /usr/ports/games/nethack-qt/files/patch-include:unixconf.h games/nethack3-qt/files/patch-include:unixconf.h X--- /usr/ports/games/nethack-qt/files/patch-include:unixconf.h Tue Sep 4 04:00:33 2001 X+++ games/nethack3-qt/files/patch-include:unixconf.h Thu Jan 1 09:00:00 1970 X@@ -1,20 +0,0 @@ X---- include/unixconf.h.orig Mon Jul 17 11:03:51 2000 X-+++ include/unixconf.h Fri Oct 13 10:06:57 2000 X-@@ -47,7 +47,7 @@ X- * job control (note that AIX is SYSV otherwise) X- * Also define this for AIX 3.2 */ X- X--#define TERMINFO /* uses terminfo rather than termcap */ X-+/* #define TERMINFO */ /* uses terminfo rather than termcap */ X- /* Should be defined for most SYSV, SVR4 (including X- * Solaris 2+), HPUX, and Linux systems. In X- * particular, it should NOT be defined for the UNIXPC X-@@ -143,7 +143,7 @@ X- * A stat system call is done on the mailbox every MAILCKFREQ moves. X- */ X- X--#define MAIL /* Deliver mail during the game */ X-+/* #define MAIL /* Deliver mail during the game */ X- X- /* The Andrew Message System does mail a little differently from normal X- * UNIX. Mail is deposited in the user's own directory in ~/Mailbox Xdiff -urN /usr/ports/games/nethack-qt/files/patch-sys:unix:Makefile.doc games/nethack3-qt/files/patch-sys:unix:Makefile.doc X--- /usr/ports/games/nethack-qt/files/patch-sys:unix:Makefile.doc Tue Sep 4 04:00:33 2001 X+++ games/nethack3-qt/files/patch-sys:unix:Makefile.doc Thu Jan 1 09:00:00 1970 X@@ -1,41 +0,0 @@ X---- sys/unix/Makefile.doc.orig Sat Jan 15 05:49:48 2000 X-+++ sys/unix/Makefile.doc Sat Aug 11 11:08:33 2001 X-@@ -34,15 +34,15 @@ X- X- X- GAME = nethack X--MANDIR = /usr/man/man6 X-+MANDIR = ${PREFIX}/man/man X- MANEXT = 6 X- X- # manual installation for most BSD-style systems X--GAMEMANCREATE = cp nethack.6 X--LEVMANCREATE = cp lev_comp.6 X--DGNMANCREATE = cp dgn_comp.6 X--RCVRMANCREATE = cp recover.6 X--DLBMANCREATE = cp dlb.6 X-+GAMEMANCREATE = ${BSD_INSTALL_MAN} nethack.6 X-+LEVMANCREATE = ${BSD_INSTALL_MAN} lev_comp.6 X-+DGNMANCREATE = ${BSD_INSTALL_MAN} dgn_comp.6 X-+RCVRMANCREATE = ${BSD_INSTALL_MAN} recover.6 X-+DLBMANCREATE = ${BSD_INSTALL_MAN} dlb.6 X- # manual installation for most SYSV-style systems X- # GAMEMANCREATE = nroff -man nethack.6 > X- # LEVMANCREATE = nroff -man lev_comp.6 > X-@@ -51,11 +51,11 @@ X- # DLBMANCREATE = nroff -man dlb.6 > X- X- manpages: X-- -$(GAMEMANCREATE) $(MANDIR)/$(GAME).$(MANEXT) X-- -$(LEVMANCREATE) $(MANDIR)/lev_comp.$(MANEXT) X-- -$(DGNMANCREATE) $(MANDIR)/dgn_comp.$(MANEXT) X-- -$(RCVRMANCREATE) $(MANDIR)/recover.$(MANEXT) X-- -$(DLBMANCREATE) $(MANDIR)/dlb.$(MANEXT) X-+ -$(GAMEMANCREATE) $(MANDIR)$(MANEXT)/$(GAME).$(MANEXT) X-+ -$(LEVMANCREATE) $(MANDIR)$(MANEXT)/lev_comp.$(MANEXT) X-+ -$(DGNMANCREATE) $(MANDIR)$(MANEXT)/dgn_comp.$(MANEXT) X-+ -$(RCVRMANCREATE) $(MANDIR)$(MANEXT)/recover.$(MANEXT) X-+ -$(DLBMANCREATE) $(MANDIR)$(MANEXT)/dlb.$(MANEXT) X- X- # manual creation for distribution X- DISTRIB = Guidebook.txt nethack.txt lev_comp.txt dgn_comp.txt recover.txt dlb.txt Xdiff -urN /usr/ports/games/nethack-qt/files/patch-sys:unix:Makefile.src games/nethack3-qt/files/patch-sys:unix:Makefile.src X--- /usr/ports/games/nethack-qt/files/patch-sys:unix:Makefile.src Tue Sep 4 04:00:33 2001 X+++ games/nethack3-qt/files/patch-sys:unix:Makefile.src Thu Jan 1 09:00:00 1970 X@@ -1,62 +0,0 @@ X---- sys/unix/Makefile.src.orig Sat Aug 5 19:52:57 2000 X-+++ sys/unix/Makefile.src Sat Aug 11 09:53:08 2001 X-@@ -144,14 +144,14 @@ X- # flags for debugging: X- # CFLAGS = -g -I../include X- X--CFLAGS = -O -I../include X-+CFLAGS += -I../include X- LFLAGS = X- X- # The Qt and Be window systems are written in C++, while the rest of X- # NetHack is standard C. If using Qt, uncomment the LD line here to get X- # the C++ libraries linked in. X--CXXFLAGS = $(CFLAGS) -I. -I$(QTDIR)/include X--CXX=g++ X-+CXXFLAGS += -I. -I../include ${QTCPPFLAGS} X-+#CXX=g++ X- #LD=g++ X- X- # Set the WINSRC, WINOBJ, and WINLIB lines to correspond to your desired X-@@ -203,8 +203,8 @@ X- X- # X- # X--WINSRC = $(WINTTYSRC) X--WINOBJ = $(WINTTYOBJ) X-+WINSRC = $(WINTTYSRC) $(WINQTSRC) X-+WINOBJ = $(WINTTYOBJ) $(WINQTOBJ) X- X- # on some systems the termcap library is in -ltermcap or -lcurses X- # on 386 Xenix, the -ltermlib tputs() seems not to work; use -lcurses instead X-@@ -230,7 +230,7 @@ X- # WINX11LIB = -lXaw -lXmu -lXpm -lXext -lXt -lX11 -lSM -lICE -lm # BSD/OS 2.0 X- # X- # libraries for Qt X--WINQTLIB = -L$(QTDIR)/lib -lqt X-+WINQTLIB = ${QTCFGLIBS} ${LIBQT} X- # X- # libraries for KDE (with Qt) X- WINKDELIB = -lkdecore -lkdeui -lXext X-@@ -244,7 +244,7 @@ X- # libraries for BeOS X- WINBELIB = -lbe X- X--WINLIB = $(WINTTYLIB) X-+WINLIB = $(WINTTYLIB) $(WINQTLIB) X- X- # any other strange libraries your system needs (for Sysunix only -- the more X- # specialized targets should already be right) X-@@ -445,10 +445,10 @@ X- X- # Qt windowport meta-object-compiler output X- qt_kde0.moc: ../include/qt_kde0.h X-- $(QTDIR)/bin/moc ../include/qt_kde0.h > qt_kde0.moc X-+ ${MOC} ../include/qt_kde0.h > qt_kde0.moc X- X- qt_win.moc: ../include/qt_win.h X-- $(QTDIR)/bin/moc ../include/qt_win.h > qt_win.moc X-+ ${MOC} ../include/qt_win.h > qt_win.moc X- X- $(MAKEDEFS): ../util/makedefs.c $(CONFIG_H) ../include/permonst.h \ X- ../include/objclass.h ../include/monsym.h \ Xdiff -urN /usr/ports/games/nethack-qt/files/patch-sys:unix:Makefile.top games/nethack3-qt/files/patch-sys:unix:Makefile.top X--- /usr/ports/games/nethack-qt/files/patch-sys:unix:Makefile.top Tue Sep 4 04:00:33 2001 X+++ games/nethack3-qt/files/patch-sys:unix:Makefile.top Thu Jan 1 09:00:00 1970 X@@ -1,44 +0,0 @@ X---- sys/unix/Makefile.top.orig Tue Jul 4 09:42:05 2000 X-+++ sys/unix/Makefile.top Sat Aug 11 11:21:15 2001 X-@@ -14,18 +14,17 @@ X- # MAKE = make X- X- # make NetHack X--PREFIX = /usr X- GAME = nethack X- # GAME = nethack.prg X- GAMEUID = games X--GAMEGRP = bin X-+GAMEGRP = games X- X- # Permissions - some places use setgid instead of setuid, for instance X- # See also the option "SECURE" in include/config.h X--GAMEPERM = 04755 X--FILEPERM = 0644 X-+GAMEPERM = 02755 X-+FILEPERM = 0664 X- EXEPERM = 0755 X--DIRPERM = 0755 X-+DIRPERM = 0775 X- X- # GAMEDIR also appears in config.h as "HACKDIR". X- # VARDIR may also appear in unixconf.h as "VAR_PLAYGROUND" else GAMEDIR X-@@ -35,14 +34,14 @@ X- # therefore there should not be anything in GAMEDIR that you want to keep X- # (if there is, you'll have to do the installation by hand or modify the X- # instructions) X--GAMEDIR = $(PREFIX)/games/lib/$(GAME)dir X-+GAMEDIR = $(PREFIX)/lib/$(GAME) X- VARDIR = $(GAMEDIR) X--SHELLDIR = $(PREFIX)/games X-+SHELLDIR = $(PREFIX)/bin X- X- # per discussion in Install.X11 and Install.Qt X--VARDATND = X-+# VARDATND = X- # VARDATND = x11tiles pet_mark.xbm X--# VARDATND = x11tiles pet_mark.xbm rip.xpm X-+VARDATND = x11tiles pet_mark.xbm rip.xpm X- # for Atari/Gem X- # VARDATND = nh16.img title.img GEM_RSC.RSC X- # for BeOS Xdiff -urN /usr/ports/games/nethack-qt/pkg-comment games/nethack3-qt/pkg-comment X--- /usr/ports/games/nethack-qt/pkg-comment Tue Jul 21 02:37:14 1998 X+++ games/nethack3-qt/pkg-comment Thu Jan 1 09:00:00 1970 X@@ -1 +0,0 @@ X-A dungeon explorin', slashin', hackin' game with graphic and sound Xdiff -urN /usr/ports/games/nethack-qt/pkg-descr games/nethack3-qt/pkg-descr X--- /usr/ports/games/nethack-qt/pkg-descr Tue Sep 4 06:47:08 2001 X+++ games/nethack3-qt/pkg-descr Thu Jan 1 09:00:00 1970 X@@ -1,22 +0,0 @@ X-NetHack is a Free graphical one-player roleplaying game with a X-highly modular window system interface supporting TTY, VGA, Mac, X-Amiga, and other displays. Qt is a graphical user interface toolkit. X-So, "NetHack with Qt interface" is a version of NetHack which has X-a user interface module written using the Qt toolkit. X- X-The Qt interface has these extra features: X- X-o Tiles (graphics) in the inventory and other item-menu windows. X-o The player cursor changes colour as your relative hit-points drop. X-o The message window greys-out older message. X-o The item menus allow a count (click to left of icon - hidden feature). X-o Icons for the major attributes and player states. X-o Menus (only needed by newbie dungeon fodder). X-o Variable size fonts and tiles. X-o More space for the map as messages and status are side-by-side. X-o You rarely need to put the mouse in a pop-up to interact with it. X-o Macros - hidden feature - F1=multi-rest F2=multi-search F3=try-it X-o It is much easier to code, so new feature-requests are more easily done. X-o Sound support. X- X-WWW: http://trolls.troll.no/warwick/nethack/ Xdiff -urN /usr/ports/games/nethack-qt/pkg-plist games/nethack3-qt/pkg-plist X--- /usr/ports/games/nethack-qt/pkg-plist Tue Sep 4 06:47:08 2001 X+++ games/nethack3-qt/pkg-plist Thu Jan 1 09:00:00 1970 X@@ -1,137 +0,0 @@ X-bin/nethack X-%%PORTDOCS%%share/doc/nethack/Guidebook.txt X-lib/nethack/nethack X-@exec mkdir %D/lib/nethack/save X-@exec chmod -R 775 %D/lib/nethack X-@exec chmod 2755 %D/lib/nethack/nethack X-@exec chown games:games %D/lib/nethack/save X-@unexec rm -rf %D/lib/nethack/save X-lib/nethack/Arc-fila.lev X-lib/nethack/Arc-filb.lev X-lib/nethack/Arc-goal.lev X-lib/nethack/Arc-loca.lev X-lib/nethack/Arc-strt.lev X-lib/nethack/Bar-fila.lev X-lib/nethack/Bar-filb.lev X-lib/nethack/Bar-goal.lev X-lib/nethack/Bar-loca.lev X-lib/nethack/Bar-strt.lev X-lib/nethack/Cav-fila.lev X-lib/nethack/Cav-filb.lev X-lib/nethack/Cav-goal.lev X-lib/nethack/Cav-loca.lev X-lib/nethack/Cav-strt.lev X-lib/nethack/Hea-fila.lev X-lib/nethack/Hea-filb.lev X-lib/nethack/Hea-goal.lev X-lib/nethack/Hea-loca.lev X-lib/nethack/Hea-strt.lev X-lib/nethack/Kni-fila.lev X-lib/nethack/Kni-filb.lev X-lib/nethack/Kni-goal.lev X-lib/nethack/Kni-loca.lev X-lib/nethack/Kni-strt.lev X-lib/nethack/Mon-fila.lev X-lib/nethack/Mon-filb.lev X-lib/nethack/Mon-goal.lev X-lib/nethack/Mon-loca.lev X-lib/nethack/Mon-strt.lev X-lib/nethack/Pri-fila.lev X-lib/nethack/Pri-filb.lev X-lib/nethack/Pri-goal.lev X-lib/nethack/Pri-loca.lev X-lib/nethack/Pri-strt.lev X-lib/nethack/Ran-fila.lev X-lib/nethack/Ran-filb.lev X-lib/nethack/Ran-goal.lev X-lib/nethack/Ran-loca.lev X-lib/nethack/Ran-strt.lev X-lib/nethack/Rog-fila.lev X-lib/nethack/Rog-filb.lev X-lib/nethack/Rog-goal.lev X-lib/nethack/Rog-loca.lev X-lib/nethack/Rog-strt.lev X-lib/nethack/Sam-fila.lev X-lib/nethack/Sam-filb.lev X-lib/nethack/Sam-goal.lev X-lib/nethack/Sam-loca.lev X-lib/nethack/Sam-strt.lev X-lib/nethack/Tou-fila.lev X-lib/nethack/Tou-filb.lev X-lib/nethack/Tou-goal.lev X-lib/nethack/Tou-loca.lev X-lib/nethack/Tou-strt.lev X-lib/nethack/Val-fila.lev X-lib/nethack/Val-filb.lev X-lib/nethack/Val-goal.lev X-lib/nethack/Val-loca.lev X-lib/nethack/Val-strt.lev X-lib/nethack/Wiz-fila.lev X-lib/nethack/Wiz-filb.lev X-lib/nethack/Wiz-goal.lev X-lib/nethack/Wiz-loca.lev X-lib/nethack/Wiz-strt.lev X-lib/nethack/air.lev X-lib/nethack/asmodeus.lev X-lib/nethack/astral.lev X-lib/nethack/baalz.lev X-lib/nethack/bigrm-1.lev X-lib/nethack/bigrm-2.lev X-lib/nethack/bigrm-3.lev X-lib/nethack/bigrm-4.lev X-lib/nethack/bigrm-5.lev X-lib/nethack/castle.lev X-lib/nethack/cmdhelp X-lib/nethack/data X-lib/nethack/dungeon X-lib/nethack/earth.lev X-lib/nethack/fakewiz1.lev X-lib/nethack/fakewiz2.lev X-lib/nethack/fire.lev X-lib/nethack/help X-lib/nethack/hh X-lib/nethack/history X-lib/nethack/juiblex.lev X-lib/nethack/knox.lev X-lib/nethack/license X-lib/nethack/medusa-1.lev X-lib/nethack/medusa-2.lev X-lib/nethack/minefill.lev X-lib/nethack/minend-1.lev X-lib/nethack/minend-2.lev X-lib/nethack/minetn-1.lev X-lib/nethack/minetn-2.lev X-lib/nethack/opthelp X-lib/nethack/options X-lib/nethack/oracle.lev X-lib/nethack/oracles X-lib/nethack/orcus.lev X-lib/nethack/pet_mark.xbm X-lib/nethack/quest.dat X-lib/nethack/rip.xpm X-lib/nethack/rumors X-lib/nethack/sanctum.lev X-lib/nethack/soko1-1.lev X-lib/nethack/soko1-2.lev X-lib/nethack/soko2-1.lev X-lib/nethack/soko2-2.lev X-lib/nethack/soko3-1.lev X-lib/nethack/soko3-2.lev X-lib/nethack/soko4-1.lev X-lib/nethack/soko4-2.lev X-lib/nethack/tower1.lev X-lib/nethack/tower2.lev X-lib/nethack/tower3.lev X-lib/nethack/valley.lev X-lib/nethack/water.lev X-lib/nethack/wizard1.lev X-lib/nethack/wizard2.lev X-lib/nethack/wizard3.lev X-lib/nethack/wizhelp X-lib/nethack/x11tiles X-@mode 664 X-lib/nethack/logfile X-lib/nethack/record X-lib/nethack/perm X-@dirrm lib/nethack X-%%PORTDOCS%%@dirrm share/doc/nethack END-of-games_nethack3-qt.diff echo x - games_nethack3-tty.diff sed 's/^X//' >games_nethack3-tty.diff << 'END-of-games_nethack3-tty.diff' Xdiff -urN /usr/ports/games/nethack3-tty/Makefile games/nethack3-tty/Makefile X--- /usr/ports/games/nethack3-tty/Makefile Wed Apr 11 12:56:08 2001 X+++ games/nethack3-tty/Makefile Sat Oct 6 02:14:21 2001 X@@ -5,30 +5,10 @@ X # $FreeBSD: ports/games/nethack3-tty/Makefile,v 1.28 2001/04/11 03:56:08 steve Exp $ X # X X-PORTNAME= nethack X-PKGNAMESUFFIX= -tty X-PORTVERSION= 3.3.1 X-CATEGORIES= games X-MASTER_SITES= ftp://ftp.nethack.org/pub/nethack/nh331/src/ \ X- ${MASTER_SITE_GNU} X-MASTER_SITE_SUBDIR= nethack X-DISTFILES= ${PORTNAME}-331.${EXTRACT_SUFIX} X+MASTERDIR= ${.CURDIR}/../nethack3 X X MAINTAINER= yoshi@parodius.com X X-EXTRACT_SUFIX= tgz X-USE_GMAKE= yes X-MAN6= dgn_comp.6 dlb.6 lev_comp.6 nethack.6 recover.6 X+WITH_TTY_GRAPHICS= yes X X-pre-configure: X- @cd ${WRKSRC}/sys/unix; ${SH} setup.sh X- X-post-install: X- @cd ${WRKSRC}/doc; ${CHMOD} 644 *.6 X- @cd ${WRKSRC}/doc; PREFIX=${PREFIX} ${MAKE} manpages X-.if !defined(NOPORTDOCS) X- ${MKDIR} ${PREFIX}/share/doc/nethack X- ${CP} ${WRKSRC}/doc/Guidebook.txt ${PREFIX}/share/doc/nethack X-.endif X- X-.include X+.include "${MASTERDIR}/Makefile" Xdiff -urN /usr/ports/games/nethack3-tty/distinfo games/nethack3-tty/distinfo X--- /usr/ports/games/nethack3-tty/distinfo Thu Oct 26 20:41:43 2000 X+++ games/nethack3-tty/distinfo Thu Jan 1 09:00:00 1970 X@@ -1 +0,0 @@ X-MD5 (nethack-331.tgz) = d0600ce4698c80e5ad1f917ded1c36d2 Xdiff -urN /usr/ports/games/nethack3-tty/files/patch-aa games/nethack3-tty/files/patch-aa X--- /usr/ports/games/nethack3-tty/files/patch-aa Thu Oct 26 20:41:43 2000 X+++ games/nethack3-tty/files/patch-aa Thu Jan 1 09:00:00 1970 X@@ -1,44 +0,0 @@ X-*** include/config.h.orig Fri Jul 21 18:13:51 2000 X---- include/config.h Sat Sep 23 01:03:48 2000 X-*************** X-*** 151,161 **** X- X- #ifdef UNIX X- /* path and file name extension for compression program */ X-! #define COMPRESS "/usr/bin/compress" /* Lempel-Ziv compression */ X-! #define COMPRESS_EXTENSION ".Z" /* compress's extension */ X- /* An example of one alternative you might want to use: */ X-! /* #define COMPRESS "/usr/local/bin/gzip" */ /* FSF gzip compression */ X-! /* #define COMPRESS_EXTENSION ".gz" */ /* normal gzip extension */ X- #endif X- X- #ifndef COMPRESS X---- 151,161 ---- X- X- #ifdef UNIX X- /* path and file name extension for compression program */ X-! /* #define COMPRESS "/usr/bin/compress" */ /* Lempel-Ziv compression */ X-! /* #define COMPRESS_EXTENSION ".Z" */ /* compress's extension */ X- /* An example of one alternative you might want to use: */ X-! #define COMPRESS "/usr/bin/gzip" /* FSF gzip compression */ X-! #define COMPRESS_EXTENSION ".gz" /* normal gzip extension */ X- #endif X- X- #ifndef COMPRESS X-*************** X-*** 186,192 **** X- * otherwise it will be the current directory. X- */ X- # ifndef HACKDIR X-! # define HACKDIR "/usr/games/lib/nethackdir" /* nethack directory */ X- # endif X- X- /* X---- 186,192 ---- X- * otherwise it will be the current directory. X- */ X- # ifndef HACKDIR X-! # define HACKDIR "/usr/local/share/nethack" /* nethack directory */ X- # endif X- X- /* Xdiff -urN /usr/ports/games/nethack3-tty/files/patch-ab games/nethack3-tty/files/patch-ab X--- /usr/ports/games/nethack3-tty/files/patch-ab Thu Oct 26 20:41:43 2000 X+++ games/nethack3-tty/files/patch-ab Thu Jan 1 09:00:00 1970 X@@ -1,19 +0,0 @@ X-*** include/system.h.orig Thu Jan 6 11:20:08 2000 X---- include/system.h Sat Sep 23 01:08:09 2000 X-*************** X-*** 516,522 **** X- # if defined(ULTRIX) || defined(SYSV) || defined(MICRO) || defined(VMS) || defined(MAC) || (defined(HPUX) && defined(_POSIX_SOURCE)) X- E time_t FDECL(time, (time_t *)); X- # else X-! E long FDECL(time, (time_t *)); X- # endif /* ULTRIX */ X- X- #ifdef VMS X---- 516,522 ---- X- # if defined(ULTRIX) || defined(SYSV) || defined(MICRO) || defined(VMS) || defined(MAC) || (defined(HPUX) && defined(_POSIX_SOURCE)) X- E time_t FDECL(time, (time_t *)); X- # else X-! E time_t FDECL(time, (time_t *)); X- # endif /* ULTRIX */ X- X- #ifdef VMS Xdiff -urN /usr/ports/games/nethack3-tty/files/patch-ac games/nethack3-tty/files/patch-ac X--- /usr/ports/games/nethack3-tty/files/patch-ac Thu Oct 26 20:41:43 2000 X+++ games/nethack3-tty/files/patch-ac Thu Jan 1 09:00:00 1970 X@@ -1,36 +0,0 @@ X-*** include/unixconf.h.orig Sun Jul 16 18:03:51 2000 X---- include/unixconf.h Sat Sep 23 01:09:25 2000 X-*************** X-*** 47,53 **** X- * job control (note that AIX is SYSV otherwise) X- * Also define this for AIX 3.2 */ X- X-! #define TERMINFO /* uses terminfo rather than termcap */ X- /* Should be defined for most SYSV, SVR4 (including X- * Solaris 2+), HPUX, and Linux systems. In X- * particular, it should NOT be defined for the UNIXPC X---- 47,53 ---- X- * job control (note that AIX is SYSV otherwise) X- * Also define this for AIX 3.2 */ X- X-! /* #define TERMINFO */ /* uses terminfo rather than termcap */ X- /* Should be defined for most SYSV, SVR4 (including X- * Solaris 2+), HPUX, and Linux systems. In X- * particular, it should NOT be defined for the UNIXPC X-*************** X-*** 143,149 **** X- * A stat system call is done on the mailbox every MAILCKFREQ moves. X- */ X- X-! #define MAIL /* Deliver mail during the game */ X- X- /* The Andrew Message System does mail a little differently from normal X- * UNIX. Mail is deposited in the user's own directory in ~/Mailbox X---- 143,149 ---- X- * A stat system call is done on the mailbox every MAILCKFREQ moves. X- */ X- X-! /* #define MAIL */ /* Deliver mail during the game */ X- X- /* The Andrew Message System does mail a little differently from normal X- * UNIX. Mail is deposited in the user's own directory in ~/Mailbox Xdiff -urN /usr/ports/games/nethack3-tty/files/patch-ad games/nethack3-tty/files/patch-ad X--- /usr/ports/games/nethack3-tty/files/patch-ad Thu Oct 26 20:41:43 2000 X+++ games/nethack3-tty/files/patch-ad Thu Jan 1 09:00:00 1970 X@@ -1,61 +0,0 @@ X-*** sys/unix/Makefile.top.orig Mon Jul 3 17:42:05 2000 X---- sys/unix/Makefile.top Sat Sep 23 01:14:48 2000 X-*************** X-*** 14,31 **** X- # MAKE = make X- X- # make NetHack X-- PREFIX = /usr X- GAME = nethack X- # GAME = nethack.prg X- GAMEUID = games X-! GAMEGRP = bin X- X- # Permissions - some places use setgid instead of setuid, for instance X- # See also the option "SECURE" in include/config.h X-! GAMEPERM = 04755 X-! FILEPERM = 0644 X- EXEPERM = 0755 X-! DIRPERM = 0755 X- X- # GAMEDIR also appears in config.h as "HACKDIR". X- # VARDIR may also appear in unixconf.h as "VAR_PLAYGROUND" else GAMEDIR X---- 14,30 ---- X- # MAKE = make X- X- # make NetHack X- GAME = nethack X- # GAME = nethack.prg X- GAMEUID = games X-! GAMEGRP = games X- X- # Permissions - some places use setgid instead of setuid, for instance X- # See also the option "SECURE" in include/config.h X-! GAMEPERM = 02755 X-! FILEPERM = 0664 X- EXEPERM = 0755 X-! DIRPERM = 0775 X- X- # GAMEDIR also appears in config.h as "HACKDIR". X- # VARDIR may also appear in unixconf.h as "VAR_PLAYGROUND" else GAMEDIR X-*************** X-*** 35,43 **** X- # therefore there should not be anything in GAMEDIR that you want to keep X- # (if there is, you'll have to do the installation by hand or modify the X- # instructions) X-! GAMEDIR = $(PREFIX)/games/lib/$(GAME)dir X- VARDIR = $(GAMEDIR) X-! SHELLDIR = $(PREFIX)/games X- X- # per discussion in Install.X11 and Install.Qt X- VARDATND = X---- 34,42 ---- X- # therefore there should not be anything in GAMEDIR that you want to keep X- # (if there is, you'll have to do the installation by hand or modify the X- # instructions) X-! GAMEDIR = $(PREFIX)/share/$(GAME) X- VARDIR = $(GAMEDIR) X-! SHELLDIR = $(PREFIX)/bin X- X- # per discussion in Install.X11 and Install.Qt X- VARDATND = Xdiff -urN /usr/ports/games/nethack3-tty/files/patch-ae games/nethack3-tty/files/patch-ae X--- /usr/ports/games/nethack3-tty/files/patch-ae Thu Oct 26 20:41:43 2000 X+++ games/nethack3-tty/files/patch-ae Thu Jan 1 09:00:00 1970 X@@ -1,44 +0,0 @@ X-*** sys/unix/Makefile.doc.orig Fri Jan 14 12:49:48 2000 X---- sys/unix/Makefile.doc Sat Sep 23 01:16:22 2000 X-*************** X-*** 34,40 **** X- X- X- GAME = nethack X-! MANDIR = /usr/man/man6 X- MANEXT = 6 X- X- # manual installation for most BSD-style systems X---- 34,40 ---- X- X- X- GAME = nethack X-! MANDIR = ${PREFIX}/man/man X- MANEXT = 6 X- X- # manual installation for most BSD-style systems X-*************** X-*** 51,61 **** X- # DLBMANCREATE = nroff -man dlb.6 > X- X- manpages: X-! -$(GAMEMANCREATE) $(MANDIR)/$(GAME).$(MANEXT) X-! -$(LEVMANCREATE) $(MANDIR)/lev_comp.$(MANEXT) X-! -$(DGNMANCREATE) $(MANDIR)/dgn_comp.$(MANEXT) X-! -$(RCVRMANCREATE) $(MANDIR)/recover.$(MANEXT) X-! -$(DLBMANCREATE) $(MANDIR)/dlb.$(MANEXT) X- X- # manual creation for distribution X- DISTRIB = Guidebook.txt nethack.txt lev_comp.txt dgn_comp.txt recover.txt dlb.txt X---- 51,61 ---- X- # DLBMANCREATE = nroff -man dlb.6 > X- X- manpages: X-! -$(GAMEMANCREATE) $(MANDIR)$(MANEXT)/$(GAME).$(MANEXT) X-! -$(LEVMANCREATE) $(MANDIR)$(MANEXT)/lev_comp.$(MANEXT) X-! -$(DGNMANCREATE) $(MANDIR)$(MANEXT)/dgn_comp.$(MANEXT) X-! -$(RCVRMANCREATE) $(MANDIR)$(MANEXT)/recover.$(MANEXT) X-! -$(DLBMANCREATE) $(MANDIR)$(MANEXT)/dlb.$(MANEXT) X- X- # manual creation for distribution X- DISTRIB = Guidebook.txt nethack.txt lev_comp.txt dgn_comp.txt recover.txt dlb.txt Xdiff -urN /usr/ports/games/nethack3-tty/pkg-comment games/nethack3-tty/pkg-comment X--- /usr/ports/games/nethack3-tty/pkg-comment Sun Jun 27 02:36:57 1999 X+++ games/nethack3-tty/pkg-comment Thu Jan 1 09:00:00 1970 X@@ -1 +0,0 @@ X-A dungeon explorin', slashin', hackin' game Xdiff -urN /usr/ports/games/nethack3-tty/pkg-descr games/nethack3-tty/pkg-descr X--- /usr/ports/games/nethack3-tty/pkg-descr Thu Oct 26 20:41:43 2000 X+++ games/nethack3-tty/pkg-descr Thu Jan 1 09:00:00 1970 X@@ -1,7 +0,0 @@ X-This is version 3.3.1 of nethack, a clasic ASCII-based adventure game. X-You and your faithful pet are on a quest to retrieve the lost Amulet X-of Yendor. X- X-WWW: http://www.nethack.org/ X- X-yoshi@parodius.com Xdiff -urN /usr/ports/games/nethack3-tty/pkg-plist games/nethack3-tty/pkg-plist X--- /usr/ports/games/nethack3-tty/pkg-plist Thu Jul 26 15:26:18 2001 X+++ games/nethack3-tty/pkg-plist Thu Jan 1 09:00:00 1970 X@@ -1,134 +0,0 @@ X-bin/nethack X-share/nethack/nethack X-@exec mkdir %D/share/nethack/save X-@exec chmod -R 775 %D/share/nethack X-@exec chmod 2755 %D/share/nethack/nethack X-@exec chown games:games %D/share/nethack/save X-@unexec rm -rf %D/share/nethack/save X-share/doc/nethack/Guidebook.txt X-share/nethack/Arc-fila.lev X-share/nethack/Arc-filb.lev X-share/nethack/Arc-goal.lev X-share/nethack/Arc-loca.lev X-share/nethack/Arc-strt.lev X-share/nethack/Bar-fila.lev X-share/nethack/Bar-filb.lev X-share/nethack/Bar-goal.lev X-share/nethack/Bar-loca.lev X-share/nethack/Bar-strt.lev X-share/nethack/Cav-fila.lev X-share/nethack/Cav-filb.lev X-share/nethack/Cav-goal.lev X-share/nethack/Cav-loca.lev X-share/nethack/Cav-strt.lev X-share/nethack/Hea-fila.lev X-share/nethack/Hea-filb.lev X-share/nethack/Hea-goal.lev X-share/nethack/Hea-loca.lev X-share/nethack/Hea-strt.lev X-share/nethack/Kni-fila.lev X-share/nethack/Kni-filb.lev X-share/nethack/Kni-goal.lev X-share/nethack/Kni-loca.lev X-share/nethack/Kni-strt.lev X-share/nethack/Mon-fila.lev X-share/nethack/Mon-filb.lev X-share/nethack/Mon-goal.lev X-share/nethack/Mon-loca.lev X-share/nethack/Mon-strt.lev X-share/nethack/Pri-fila.lev X-share/nethack/Pri-filb.lev X-share/nethack/Pri-goal.lev X-share/nethack/Pri-loca.lev X-share/nethack/Pri-strt.lev X-share/nethack/Ran-fila.lev X-share/nethack/Ran-filb.lev X-share/nethack/Ran-goal.lev X-share/nethack/Ran-loca.lev X-share/nethack/Ran-strt.lev X-share/nethack/Rog-fila.lev X-share/nethack/Rog-filb.lev X-share/nethack/Rog-goal.lev X-share/nethack/Rog-loca.lev X-share/nethack/Rog-strt.lev X-share/nethack/Sam-fila.lev X-share/nethack/Sam-filb.lev X-share/nethack/Sam-goal.lev X-share/nethack/Sam-loca.lev X-share/nethack/Sam-strt.lev X-share/nethack/Tou-fila.lev X-share/nethack/Tou-filb.lev X-share/nethack/Tou-goal.lev X-share/nethack/Tou-loca.lev X-share/nethack/Tou-strt.lev X-share/nethack/Val-fila.lev X-share/nethack/Val-filb.lev X-share/nethack/Val-goal.lev X-share/nethack/Val-loca.lev X-share/nethack/Val-strt.lev X-share/nethack/Wiz-fila.lev X-share/nethack/Wiz-filb.lev X-share/nethack/Wiz-goal.lev X-share/nethack/Wiz-loca.lev X-share/nethack/Wiz-strt.lev X-share/nethack/air.lev X-share/nethack/asmodeus.lev X-share/nethack/astral.lev X-share/nethack/baalz.lev X-share/nethack/bigrm-1.lev X-share/nethack/bigrm-2.lev X-share/nethack/bigrm-3.lev X-share/nethack/bigrm-4.lev X-share/nethack/bigrm-5.lev X-share/nethack/castle.lev X-share/nethack/cmdhelp X-share/nethack/data X-share/nethack/dungeon X-share/nethack/earth.lev X-share/nethack/fakewiz1.lev X-share/nethack/fakewiz2.lev X-share/nethack/fire.lev X-share/nethack/help X-share/nethack/hh X-share/nethack/history X-share/nethack/juiblex.lev X-share/nethack/knox.lev X-share/nethack/license X-share/nethack/medusa-1.lev X-share/nethack/medusa-2.lev X-share/nethack/minefill.lev X-share/nethack/minend-1.lev X-share/nethack/minend-2.lev X-share/nethack/minetn-1.lev X-share/nethack/minetn-2.lev X-share/nethack/opthelp X-share/nethack/options X-share/nethack/oracle.lev X-share/nethack/oracles X-share/nethack/orcus.lev X-share/nethack/quest.dat X-share/nethack/rumors X-share/nethack/sanctum.lev X-share/nethack/soko1-1.lev X-share/nethack/soko1-2.lev X-share/nethack/soko2-1.lev X-share/nethack/soko2-2.lev X-share/nethack/soko3-1.lev X-share/nethack/soko3-2.lev X-share/nethack/soko4-1.lev X-share/nethack/soko4-2.lev X-share/nethack/tower1.lev X-share/nethack/tower2.lev X-share/nethack/tower3.lev X-share/nethack/valley.lev X-share/nethack/water.lev X-share/nethack/wizard1.lev X-share/nethack/wizard2.lev X-share/nethack/wizard3.lev X-share/nethack/wizhelp X-@mode 664 X-share/nethack/logfile X-share/nethack/record X-share/nethack/perm X-@dirrm share/nethack X-@dirrm share/doc/nethack END-of-games_nethack3-tty.diff echo x - games_nethack3.diff sed 's/^X//' >games_nethack3.diff << 'END-of-games_nethack3.diff' Xdiff -urN /usr/ports/games/nethack3/Makefile games/nethack3/Makefile X--- /usr/ports/games/nethack3/Makefile Fri Jan 5 05:15:12 2001 X+++ games/nethack3/Makefile Tue Oct 16 01:34:49 2001 X@@ -7,28 +7,72 @@ X X PORTNAME= nethack X PORTVERSION= 3.3.1 X-CATEGORIES= games X+PORTREVISION= 1 X+CATEGORIES?= games X MASTER_SITES= ftp://ftp.nethack.org/pub/nethack/nh${PORTVERSION:S/.//g}/src/ X-MASTER_SITE_SUBDIR= nethack X DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g} X EXTRACT_SUFX= .tgz X X-MAINTAINER= dscheidt@enteract.com X+MAINTAINER?= dscheidt@enteract.com X X WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} X-USE_XPM= yes X+ X USE_GMAKE= yes X+MAKE_ENV= CXX="${CXX}" GRAPHICS="${GRAPHICS}" X+ X MAN6= dgn_comp.6 dlb.6 lev_comp.6 nethack.6 recover.6 X X+.if defined(WITH_GNOME_GRAPHICS) X+CATEGORIES= games gnome X+PKGNAMESUFFIX= -gnome X+LIB_DEPENDS+= gnugetopt:${PORTSDIR}/devel/libgnugetopt X+USE_GNOME= yes X+GRAPHICS= GNOME_GRAPHICS X+.elif defined(WITH_QT_GRAPHICS) X+PKGNAMESUFFIX= -qt X+USE_QT_VER= 2 X+MAKE_ENV+= QTCPPFLAGS="${QTCPPFLAGS}" QTCFGLIBS="${QTCFGLIBS}" \ X+ MOC="${MOC}" LIBQT="-l${QTNAME}" X+GRAPHICS= QT_GRAPHICS X+.elif defined(WITH_TTY_GRAPHICS) || defined(WITHOUT_X11) X+PKGNAMESUFFIX= -tty X+.else X+USE_XPM= yes X+GRAPHICS= X11_GRAPHICS X+.endif X+ X+pre-everything: X+.if defined(WITH_GNOME_GRAPHICS) || defined(WITH_QT_GRAPHICS) \ X+ || defined(WITH_TTY_GRAPHICS) || defined(WITHOUT_X11) X+ @${ECHO_MSG} "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" X+ @${ECHO_MSG} " You cannot install nethack and ${PKGBASE} in parallel " X+ @${ECHO_MSG} " But ${PKGBASE} read your prior nethack scores " X+ @${ECHO_MSG} " Don't forget to backup your nethack libdir if it's " X+ @${ECHO_MSG} " important for you " X+ @${ECHO_MSG} "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" X+.else X+ @${ECHO_MSG} "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" X+ @${ECHO_MSG} " You may use the following build options: " X+ @${ECHO_MSG} " WITH_GNOME_GRAPHICS=yes build with GNOME GUI " X+ @${ECHO_MSG} " WITH_QT_GRAPHICS=yes build with Qt GUI " X+ @${ECHO_MSG} " WITH_TTY_GRAPHICS=yes build with no GUI " X+ @${ECHO_MSG} " WITHOUT_X11=yes same as above " X+ @${ECHO_MSG} " " X+ @${ECHO_MSG} " By default, nethack port is built with X11 GUI. " X+ @${ECHO_MSG} "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" X+.endif X+ X+post-patch: X+ @${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/include/config.h X+ X pre-configure: X @cd ${WRKSRC}/sys/unix; ${SH} setup.sh X X post-install: X- @cd ${WRKSRC}/doc; ${CHMOD} 644 *.6 X- @cd ${WRKSRC}/doc; PREFIX=${PREFIX} ${MAKE} manpages X+ @cd ${WRKSRC}/doc; ${SETENV} ${MAKE_ENV} ${MAKE} manpages X .if !defined(NOPORTDOCS) X- ${MKDIR} ${PREFIX}/share/doc/nethack X- ${CP} ${WRKSRC}/doc/Guidebook.txt ${PREFIX}/share/doc/nethack X+ @${MKDIR} ${DOCSDIR} X+ ${INSTALL_DATA} ${WRKSRC}/doc/Guidebook.txt ${DOCSDIR} X .endif X X .include Xdiff -urN /usr/ports/games/nethack3/files/patch-aa games/nethack3/files/patch-aa X--- /usr/ports/games/nethack3/files/patch-aa Thu Dec 21 13:14:17 2000 X+++ games/nethack3/files/patch-aa Thu Oct 11 06:58:08 2001 X@@ -1,20 +1,11 @@ X---- ./include/config.h.orig Sat Jul 22 11:13:51 2000 X-+++ ./include/config.h Fri Oct 13 09:31:24 2000 X-@@ -43,7 +43,7 @@ X- * Some combinations make no sense. See the installation document. X- */ X- #define TTY_GRAPHICS /* good old tty based graphics */ X--/* #define X11_GRAPHICS */ /* X11 interface */ X-+#define X11_GRAPHICS /* X11 interface */ X- /* #define QT_GRAPHICS */ /* Qt interface */ X- /* #define GNOME_GRAPHICS */ /* Gnome interface */ X- X+--- include/config.h.orig Sat Jul 22 10:13:51 2000 X++++ include/config.h Sat Oct 6 06:19:03 2001 X @@ -110,7 +110,7 @@ X * would allow: X * xpmtoppm x11tiles_big.xpm X */ X -/* # define USE_XPM */ /* Disable if you do not have the XPM library */ X-+# define USE_XPM /* Disable if you do not have the XPM library */ X++# define USE_XPM /* Disable if you do not have the XPM library */ X # ifdef USE_XPM X # define GRAPHIC_TOMBSTONE /* Use graphical tombstone (rip.xpm) */ X # endif X@@ -39,7 +30,7 @@ X */ X # ifndef HACKDIR X -# define HACKDIR "/usr/games/lib/nethackdir" /* nethack directory */ X-+# define HACKDIR "/usr/local/share/nethack" /* nethack directory */ X++# define HACKDIR "%%PREFIX%%/lib/nethack" /* nethack directory */ X # endif X X /* Xdiff -urN /usr/ports/games/nethack3/files/patch-ac games/nethack3/files/patch-ac X--- /usr/ports/games/nethack3/files/patch-ac Thu Dec 21 13:14:17 2000 X+++ games/nethack3/files/patch-ac Thu Oct 11 06:58:08 2001 X@@ -1,5 +1,5 @@ X---- ./include/unixconf.h.orig Mon Jul 17 11:03:51 2000 X-+++ ./include/unixconf.h Fri Oct 13 10:06:57 2000 X+--- include/unixconf.h.orig Mon Jul 17 11:03:51 2000 X++++ include/unixconf.h Fri Oct 13 10:06:57 2000 X @@ -47,7 +47,7 @@ X * job control (note that AIX is SYSV otherwise) X * Also define this for AIX 3.2 */ X@@ -14,7 +14,7 @@ X */ X X -#define MAIL /* Deliver mail during the game */ X-+/* #define MAIL /* Deliver mail during the game */ X++/* #define MAIL */ /* Deliver mail during the game */ X X /* The Andrew Message System does mail a little differently from normal X * UNIX. Mail is deposited in the user's own directory in ~/Mailbox Xdiff -urN /usr/ports/games/nethack3/files/patch-ad games/nethack3/files/patch-ad X--- /usr/ports/games/nethack3/files/patch-ad Thu Dec 21 13:14:17 2000 X+++ games/nethack3/files/patch-ad Thu Oct 11 06:58:08 2001 X@@ -1,51 +1,114 @@ X---- ./sys/unix/Makefile.src.orig Sat Aug 5 20:52:57 2000 X-+++ ./sys/unix/Makefile.src Fri Oct 13 10:10:21 2000 X-@@ -144,8 +144,8 @@ X+--- sys/unix/Makefile.src.orig Sat Aug 5 19:52:57 2000 X++++ sys/unix/Makefile.src Wed Oct 10 02:12:53 2001 X+@@ -139,19 +139,28 @@ X+ # directories. The ones given below is the usual spot for linux systems. X+ # The paths are for glibconfig.h and gnomesupport.h respectively. X+ # X+-GNOMEINC=-I/usr/lib/glib/include -I/usr/lib/gnome-libs/include -I../win/gnome X++GNOMEINC= $(shell ${GNOME_CONFIG} --cflags gnomeui) X+ X # flags for debugging: X # CFLAGS = -g -I../include X++CFLAGS += -I../include X++ifeq ("$(GRAPHICS)","X11_GRAPHICS") X++CFLAGS += -DX11_GRAPHICS -I${X11BASE}/include X++endif X++ifeq ("$(GRAPHICS)","QT_GRAPHICS") X++CFLAGS += -DQT_GRAPHICS X++endif X++ifeq ("$(GRAPHICS)","GNOME_GRAPHICS") X++CFLAGS += -DGNOME_GRAPHICS X++endif X X -CFLAGS = -O -I../include X--LFLAGS = X-+CFLAGS += -O -I../include -I${X11BASE}/include X-+LFLAGS = -L${X11BASE}/lib X+ LFLAGS = X X # The Qt and Be window systems are written in C++, while the rest of X # NetHack is standard C. If using Qt, uncomment the LD line here to get X-@@ -203,8 +203,8 @@ X+ # the C++ libraries linked in. X+-CXXFLAGS = $(CFLAGS) -I. -I$(QTDIR)/include X+-CXX=g++ X++CXXFLAGS += -I. -I../include ${QTCPPFLAGS} X++#CXX=g++ X+ #LD=g++ X X+ # Set the WINSRC, WINOBJ, and WINLIB lines to correspond to your desired X+@@ -204,7 +213,26 @@ X # X # X--WINSRC = $(WINTTYSRC) X--WINOBJ = $(WINTTYOBJ) X-+WINSRC = $(WINTTYSRC) $(WINX11SRC) X-+WINOBJ = $(WINTTYOBJ) $(WINX11OBJ) X+ WINSRC = $(WINTTYSRC) X++ifeq ("$(GRAPHICS)","X11_GRAPHICS") X++WINSRC += $(WINX11SRC) X++endif X++ifeq ("$(GRAPHICS)","QT_GRAPHICS") X++WINSRC += $(WINQTSRC) X++endif X++ifeq ("$(GRAPHICS)","GNOME_GRAPHICS") X++WINSRC += $(WINGNOMESRC) X++endif X++ X+ WINOBJ = $(WINTTYOBJ) X++ifeq ("$(GRAPHICS)","X11_GRAPHICS") X++WINOBJ += $(WINX11OBJ) X++endif X++ifeq ("$(GRAPHICS)","QT_GRAPHICS") X++WINOBJ += $(WINQTOBJ) X++endif X++ifeq ("$(GRAPHICS)","GNOME_GRAPHICS") X++WINOBJ += $(WINGNOMEOBJ) X++endif X X # on some systems the termcap library is in -ltermcap or -lcurses X # on 386 Xenix, the -ltermlib tputs() seems not to work; use -lcurses instead X-@@ -224,7 +224,7 @@ X+@@ -224,19 +252,19 @@ X # X # libraries for X11 X # If USE_XPM is defined in config.h, you will also need -lXpm here. X -WINX11LIB = -lXaw -lXmu -lXext -lXt -lX11 X-+WINX11LIB = -lXaw -lXmu -lXext -lXt -lX11 -lXpm X++WINX11LIB = -lXaw -lXmu -lXpm -lXext -lXt -lX11 -lSM -lICE -L${X11BASE}/lib X # WINX11LIB = -lXaw -lXmu -lXt -lX11 X # WINX11LIB = -lXaw -lXmu -lXext -lXt -lXpm -lX11 -lm X # WINX11LIB = -lXaw -lXmu -lXpm -lXext -lXt -lX11 -lSM -lICE -lm # BSD/OS 2.0 X-@@ -244,7 +244,7 @@ X- # libraries for BeOS X+ # X+ # libraries for Qt X+-WINQTLIB = -L$(QTDIR)/lib -lqt X++WINQTLIB = ${QTCFGLIBS} ${LIBQT} X+ # X+ # libraries for KDE (with Qt) X+ WINKDELIB = -lkdecore -lkdeui -lXext X+ # X+ # libraries for Gnome X+-WINGNOMELIB = -lgnomeui -lgnome -lart_lgpl -lgtk -lgdk -lpopt X++WINGNOMELIB = $(shell ${GNOME_CONFIG} --libs gnomeui) -lgnugetopt X+ # X+ # libraries for Gem port X+ WINGEMLIB = -le_gem -lgem X+@@ -245,6 +273,15 @@ X WINBELIB = -lbe X X--WINLIB = $(WINTTYLIB) X-+WINLIB = $(WINTTYLIB) $(WINX11LIB) X+ WINLIB = $(WINTTYLIB) X++ifeq ("$(GRAPHICS)","X11_GRAPHICS") X++WINLIB += $(WINX11LIB) X++endif X++ifeq ("$(GRAPHICS)","QT_GRAPHICS") X++WINLIB += $(WINQTLIB) X++endif X++ifeq ("$(GRAPHICS)","GNOME_GRAPHICS") X++WINLIB += $(WINGNOMELIB) X++endif X X # any other strange libraries your system needs (for Sysunix only -- the more X # specialized targets should already be right) X-@@ -271,7 +271,7 @@ X- # IRIX 4.0.x needs -lsun if NIS (YP) is being used for passwd file lookup X- # LIBS = -lsun X- # X--LIBS = X-+LIBS = -lSM -lICE X+@@ -445,10 +482,10 @@ X+ X+ # Qt windowport meta-object-compiler output X+ qt_kde0.moc: ../include/qt_kde0.h X+- $(QTDIR)/bin/moc ../include/qt_kde0.h > qt_kde0.moc X++ ${MOC} ../include/qt_kde0.h > qt_kde0.moc X+ X+ qt_win.moc: ../include/qt_win.h X+- $(QTDIR)/bin/moc ../include/qt_win.h > qt_win.moc X++ ${MOC} ../include/qt_win.h > qt_win.moc X X- # make NetHack X- GAME = nethack X+ $(MAKEDEFS): ../util/makedefs.c $(CONFIG_H) ../include/permonst.h \ X+ ../include/objclass.h ../include/monsym.h \ Xdiff -urN /usr/ports/games/nethack3/files/patch-ae games/nethack3/files/patch-ae X--- /usr/ports/games/nethack3/files/patch-ae Thu Dec 21 13:14:17 2000 X+++ games/nethack3/files/patch-ae Thu Oct 11 06:58:08 2001 X@@ -1,5 +1,5 @@ X---- ./sys/unix/Makefile.top.orig Tue Jul 4 10:42:05 2000 X-+++ ./sys/unix/Makefile.top Fri Oct 13 10:13:50 2000 X+--- sys/unix/Makefile.top.orig Tue Jul 4 09:42:05 2000 X++++ sys/unix/Makefile.top Tue Oct 9 22:21:45 2001 X @@ -14,18 +14,17 @@ X # MAKE = make X X@@ -23,15 +23,28 @@ X X # GAMEDIR also appears in config.h as "HACKDIR". X # VARDIR may also appear in unixconf.h as "VAR_PLAYGROUND" else GAMEDIR X-@@ -35,9 +34,9 @@ X+@@ -35,12 +34,12 @@ X # therefore there should not be anything in GAMEDIR that you want to keep X # (if there is, you'll have to do the installation by hand or modify the X # instructions) X -GAMEDIR = $(PREFIX)/games/lib/$(GAME)dir X-+GAMEDIR = $(PREFIX)/share/$(GAME) X++GAMEDIR = $(PREFIX)/lib/$(GAME) X VARDIR = $(GAMEDIR) X -SHELLDIR = $(PREFIX)/games X +SHELLDIR = $(PREFIX)/bin X X # per discussion in Install.X11 and Install.Qt X- VARDATND = X+-VARDATND = X++# VARDATND = X+ # VARDATND = x11tiles pet_mark.xbm X+ # VARDATND = x11tiles pet_mark.xbm rip.xpm X+ # for Atari/Gem X+@@ -48,7 +47,7 @@ X+ # for BeOS X+ # VARDATND = beostiles X+ # for Gnome X+-# VARDATND = x11tiles pet_mark.xbm rip.xpm mapbg.xpm X++VARDATND = x11tiles pet_mark.xbm rip.xpm mapbg.xpm X+ X+ VARDATD = data oracles options quest.dat rumors X+ VARDAT = $(VARDATD) $(VARDATND) Xdiff -urN /usr/ports/games/nethack3/files/patch-af games/nethack3/files/patch-af X--- /usr/ports/games/nethack3/files/patch-af Mon Jan 24 14:40:44 2000 X+++ games/nethack3/files/patch-af Thu Oct 11 06:58:08 2001 X@@ -1,6 +1,6 @@ X---- ./sys/unix/Makefile.doc.orig Mon Dec 13 14:49:15 1999 X-+++ ./sys/unix/Makefile.doc Mon Dec 13 14:44:53 1999 X-@@ -31,7 +31,7 @@ X+--- sys/unix/Makefile.doc.orig Sat Jan 15 05:49:48 2000 X++++ sys/unix/Makefile.doc Sat Aug 11 11:08:33 2001 X+@@ -34,15 +34,15 @@ X X X GAME = nethack X@@ -9,7 +9,20 @@ X MANEXT = 6 X X # manual installation for most BSD-style systems X-@@ -48,11 +48,11 @@ X+-GAMEMANCREATE = cp nethack.6 X+-LEVMANCREATE = cp lev_comp.6 X+-DGNMANCREATE = cp dgn_comp.6 X+-RCVRMANCREATE = cp recover.6 X+-DLBMANCREATE = cp dlb.6 X++GAMEMANCREATE = ${BSD_INSTALL_MAN} nethack.6 X++LEVMANCREATE = ${BSD_INSTALL_MAN} lev_comp.6 X++DGNMANCREATE = ${BSD_INSTALL_MAN} dgn_comp.6 X++RCVRMANCREATE = ${BSD_INSTALL_MAN} recover.6 X++DLBMANCREATE = ${BSD_INSTALL_MAN} dlb.6 X+ # manual installation for most SYSV-style systems X+ # GAMEMANCREATE = nroff -man nethack.6 > X+ # LEVMANCREATE = nroff -man lev_comp.6 > X+@@ -51,11 +51,11 @@ X # DLBMANCREATE = nroff -man dlb.6 > X X manpages: Xdiff -urN /usr/ports/games/nethack3/files/patch-ag games/nethack3/files/patch-ag X--- /usr/ports/games/nethack3/files/patch-ag Thu Jan 1 09:00:00 1970 X+++ games/nethack3/files/patch-ag Thu Oct 11 06:58:08 2001 X@@ -0,0 +1,21 @@ X+--- sys/unix/Makefile.utl.orig Mon Apr 17 22:36:44 2000 X++++ sys/unix/Makefile.utl Wed Oct 10 19:48:36 2001 X+@@ -89,7 +89,17 @@ X+ # flags for debugging: X+ # CFLAGS = -g -I../include X+ X+-CFLAGS = -O -I../include X++CFLAGS += -I../include X++ifeq ("$(GRAPHICS)","X11_GRAPHICS") X++CFLAGS += -DX11_GRAPHICS X++endif X++ifeq ("$(GRAPHICS)","QT_GRAPHICS") X++CFLAGS += -DQT_GRAPHICS X++endif X++ifeq ("$(GRAPHICS)","GNOME_GRAPHICS") X++CFLAGS += -DGNOME_GRAPHICS X++endif X++ X+ LFLAGS = X+ X+ LIBS = Xdiff -urN /usr/ports/games/nethack3/files/patch-ah games/nethack3/files/patch-ah X--- /usr/ports/games/nethack3/files/patch-ah Thu Jan 1 09:00:00 1970 X+++ games/nethack3/files/patch-ah Thu Oct 11 06:58:08 2001 X@@ -0,0 +1,10 @@ X+--- win/gnome/gnmain.c.orig Sat Aug 5 19:53:33 2000 X++++ win/gnome/gnmain.c Sat Oct 6 04:33:43 2001 X+@@ -672,6 +672,7 @@ X+ euid = geteuid(); X+ if (uid != euid) X+ setuid(uid); X++ setregid(getegid(), -1); X+ gnome_init ("nethack", VERSION_STRING, argc, argv); X+ parse_args (argc, argv); X+ Xdiff -urN /usr/ports/games/nethack3/pkg-descr games/nethack3/pkg-descr X--- /usr/ports/games/nethack3/pkg-descr Thu Jan 4 22:15:35 2001 X+++ games/nethack3/pkg-descr Tue Oct 16 02:07:30 2001 X@@ -1,6 +1,6 @@ X-This is version 3.3.1 of nethack, a clasic hack'n'slash adventure game. X-You and your faithful feline (or commited canine) are on a quest to retrieve X-the lost Amulet of Yendor. Good luck! X+This is nethack, a classic hack'n'slash adventure game. X+You and your faithful feline (or commited canine) are on a quest X+to retrieve the lost Amulet of Yendor. Good luck! X X WWW: http://www.nethack.org/ X Xdiff -urN /usr/ports/games/nethack3/pkg-plist games/nethack3/pkg-plist X--- /usr/ports/games/nethack3/pkg-plist Thu Jul 26 15:26:18 2001 X+++ games/nethack3/pkg-plist Thu Oct 11 06:58:08 2001 X@@ -1,134 +1,138 @@ X bin/nethack X-share/nethack/nethack X-@exec mkdir %D/share/nethack/save X-@exec chmod -R 775 %D/share/nethack X-@exec chmod 2755 %D/share/nethack/nethack X-@exec chown games:games %D/share/nethack/save X-@unexec rm -rf %D/share/nethack/save X-share/doc/nethack/Guidebook.txt X-share/nethack/Arc-fila.lev X-share/nethack/Arc-filb.lev X-share/nethack/Arc-goal.lev X-share/nethack/Arc-loca.lev X-share/nethack/Arc-strt.lev X-share/nethack/Bar-fila.lev X-share/nethack/Bar-filb.lev X-share/nethack/Bar-goal.lev X-share/nethack/Bar-loca.lev X-share/nethack/Bar-strt.lev X-share/nethack/Cav-fila.lev X-share/nethack/Cav-filb.lev X-share/nethack/Cav-goal.lev X-share/nethack/Cav-loca.lev X-share/nethack/Cav-strt.lev X-share/nethack/Hea-fila.lev X-share/nethack/Hea-filb.lev X-share/nethack/Hea-goal.lev X-share/nethack/Hea-loca.lev X-share/nethack/Hea-strt.lev X-share/nethack/Kni-fila.lev X-share/nethack/Kni-filb.lev X-share/nethack/Kni-goal.lev X-share/nethack/Kni-loca.lev X-share/nethack/Kni-strt.lev X-share/nethack/Mon-fila.lev X-share/nethack/Mon-filb.lev X-share/nethack/Mon-goal.lev X-share/nethack/Mon-loca.lev X-share/nethack/Mon-strt.lev X-share/nethack/Pri-fila.lev X-share/nethack/Pri-filb.lev X-share/nethack/Pri-goal.lev X-share/nethack/Pri-loca.lev X-share/nethack/Pri-strt.lev X-share/nethack/Ran-fila.lev X-share/nethack/Ran-filb.lev X-share/nethack/Ran-goal.lev X-share/nethack/Ran-loca.lev X-share/nethack/Ran-strt.lev X-share/nethack/Rog-fila.lev X-share/nethack/Rog-filb.lev X-share/nethack/Rog-goal.lev X-share/nethack/Rog-loca.lev X-share/nethack/Rog-strt.lev X-share/nethack/Sam-fila.lev X-share/nethack/Sam-filb.lev X-share/nethack/Sam-goal.lev X-share/nethack/Sam-loca.lev X-share/nethack/Sam-strt.lev X-share/nethack/Tou-fila.lev X-share/nethack/Tou-filb.lev X-share/nethack/Tou-goal.lev X-share/nethack/Tou-loca.lev X-share/nethack/Tou-strt.lev X-share/nethack/Val-fila.lev X-share/nethack/Val-filb.lev X-share/nethack/Val-goal.lev X-share/nethack/Val-loca.lev X-share/nethack/Val-strt.lev X-share/nethack/Wiz-fila.lev X-share/nethack/Wiz-filb.lev X-share/nethack/Wiz-goal.lev X-share/nethack/Wiz-loca.lev X-share/nethack/Wiz-strt.lev X-share/nethack/air.lev X-share/nethack/asmodeus.lev X-share/nethack/astral.lev X-share/nethack/baalz.lev X-share/nethack/bigrm-1.lev X-share/nethack/bigrm-2.lev X-share/nethack/bigrm-3.lev X-share/nethack/bigrm-4.lev X-share/nethack/bigrm-5.lev X-share/nethack/castle.lev X-share/nethack/cmdhelp X-share/nethack/data X-share/nethack/dungeon X-share/nethack/earth.lev X-share/nethack/fakewiz1.lev X-share/nethack/fakewiz2.lev X-share/nethack/fire.lev X-share/nethack/help X-share/nethack/hh X-share/nethack/history X-share/nethack/juiblex.lev X-share/nethack/knox.lev X-share/nethack/license X-share/nethack/medusa-1.lev X-share/nethack/medusa-2.lev X-share/nethack/minefill.lev X-share/nethack/minend-1.lev X-share/nethack/minend-2.lev X-share/nethack/minetn-1.lev X-share/nethack/minetn-2.lev X-share/nethack/opthelp X-share/nethack/options X-share/nethack/oracle.lev X-share/nethack/oracles X-share/nethack/orcus.lev X-share/nethack/quest.dat X-share/nethack/rumors X-share/nethack/sanctum.lev X-share/nethack/soko1-1.lev X-share/nethack/soko1-2.lev X-share/nethack/soko2-1.lev X-share/nethack/soko2-2.lev X-share/nethack/soko3-1.lev X-share/nethack/soko3-2.lev X-share/nethack/soko4-1.lev X-share/nethack/soko4-2.lev X-share/nethack/tower1.lev X-share/nethack/tower2.lev X-share/nethack/tower3.lev X-share/nethack/valley.lev X-share/nethack/water.lev X-share/nethack/wizard1.lev X-share/nethack/wizard2.lev X-share/nethack/wizard3.lev X-share/nethack/wizhelp X+%%PORTDOCS%%share/doc/nethack/Guidebook.txt X+lib/nethack/nethack X+@exec mkdir %D/lib/nethack/save X+@exec chmod -R 775 %D/lib/nethack X+@exec chmod 2755 %D/lib/nethack/nethack X+@exec chown games:games %D/lib/nethack/save X+@unexec rm -rf %D/lib/nethack/save X+lib/nethack/Arc-fila.lev X+lib/nethack/Arc-filb.lev X+lib/nethack/Arc-goal.lev X+lib/nethack/Arc-loca.lev X+lib/nethack/Arc-strt.lev X+lib/nethack/Bar-fila.lev X+lib/nethack/Bar-filb.lev X+lib/nethack/Bar-goal.lev X+lib/nethack/Bar-loca.lev X+lib/nethack/Bar-strt.lev X+lib/nethack/Cav-fila.lev X+lib/nethack/Cav-filb.lev X+lib/nethack/Cav-goal.lev X+lib/nethack/Cav-loca.lev X+lib/nethack/Cav-strt.lev X+lib/nethack/Hea-fila.lev X+lib/nethack/Hea-filb.lev X+lib/nethack/Hea-goal.lev X+lib/nethack/Hea-loca.lev X+lib/nethack/Hea-strt.lev X+lib/nethack/Kni-fila.lev X+lib/nethack/Kni-filb.lev X+lib/nethack/Kni-goal.lev X+lib/nethack/Kni-loca.lev X+lib/nethack/Kni-strt.lev X+lib/nethack/Mon-fila.lev X+lib/nethack/Mon-filb.lev X+lib/nethack/Mon-goal.lev X+lib/nethack/Mon-loca.lev X+lib/nethack/Mon-strt.lev X+lib/nethack/Pri-fila.lev X+lib/nethack/Pri-filb.lev X+lib/nethack/Pri-goal.lev X+lib/nethack/Pri-loca.lev X+lib/nethack/Pri-strt.lev X+lib/nethack/Ran-fila.lev X+lib/nethack/Ran-filb.lev X+lib/nethack/Ran-goal.lev X+lib/nethack/Ran-loca.lev X+lib/nethack/Ran-strt.lev X+lib/nethack/Rog-fila.lev X+lib/nethack/Rog-filb.lev X+lib/nethack/Rog-goal.lev X+lib/nethack/Rog-loca.lev X+lib/nethack/Rog-strt.lev X+lib/nethack/Sam-fila.lev X+lib/nethack/Sam-filb.lev X+lib/nethack/Sam-goal.lev X+lib/nethack/Sam-loca.lev X+lib/nethack/Sam-strt.lev X+lib/nethack/Tou-fila.lev X+lib/nethack/Tou-filb.lev X+lib/nethack/Tou-goal.lev X+lib/nethack/Tou-loca.lev X+lib/nethack/Tou-strt.lev X+lib/nethack/Val-fila.lev X+lib/nethack/Val-filb.lev X+lib/nethack/Val-goal.lev X+lib/nethack/Val-loca.lev X+lib/nethack/Val-strt.lev X+lib/nethack/Wiz-fila.lev X+lib/nethack/Wiz-filb.lev X+lib/nethack/Wiz-goal.lev X+lib/nethack/Wiz-loca.lev X+lib/nethack/Wiz-strt.lev X+lib/nethack/air.lev X+lib/nethack/asmodeus.lev X+lib/nethack/astral.lev X+lib/nethack/baalz.lev X+lib/nethack/bigrm-1.lev X+lib/nethack/bigrm-2.lev X+lib/nethack/bigrm-3.lev X+lib/nethack/bigrm-4.lev X+lib/nethack/bigrm-5.lev X+lib/nethack/castle.lev X+lib/nethack/cmdhelp X+lib/nethack/data X+lib/nethack/dungeon X+lib/nethack/earth.lev X+lib/nethack/fakewiz1.lev X+lib/nethack/fakewiz2.lev X+lib/nethack/fire.lev X+lib/nethack/help X+lib/nethack/hh X+lib/nethack/history X+lib/nethack/juiblex.lev X+lib/nethack/knox.lev X+lib/nethack/license X+lib/nethack/mapbg.xpm X+lib/nethack/medusa-1.lev X+lib/nethack/medusa-2.lev X+lib/nethack/minefill.lev X+lib/nethack/minend-1.lev X+lib/nethack/minend-2.lev X+lib/nethack/minetn-1.lev X+lib/nethack/minetn-2.lev X+lib/nethack/opthelp X+lib/nethack/options X+lib/nethack/oracle.lev X+lib/nethack/oracles X+lib/nethack/orcus.lev X+lib/nethack/pet_mark.xbm X+lib/nethack/quest.dat X+lib/nethack/rip.xpm X+lib/nethack/rumors X+lib/nethack/sanctum.lev X+lib/nethack/soko1-1.lev X+lib/nethack/soko1-2.lev X+lib/nethack/soko2-1.lev X+lib/nethack/soko2-2.lev X+lib/nethack/soko3-1.lev X+lib/nethack/soko3-2.lev X+lib/nethack/soko4-1.lev X+lib/nethack/soko4-2.lev X+lib/nethack/tower1.lev X+lib/nethack/tower2.lev X+lib/nethack/tower3.lev X+lib/nethack/valley.lev X+lib/nethack/water.lev X+lib/nethack/wizard1.lev X+lib/nethack/wizard2.lev X+lib/nethack/wizard3.lev X+lib/nethack/wizhelp X+lib/nethack/x11tiles X @mode 664 X-share/nethack/logfile X-share/nethack/record X-share/nethack/perm X-@dirrm share/nethack X-@dirrm share/doc/nethack X+lib/nethack/logfile X+lib/nethack/record X+lib/nethack/perm X+@dirrm lib/nethack X+%%PORTDOCS%%@dirrm share/doc/nethack END-of-games_nethack3.diff exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 3:30: 7 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C5B037B416 for ; Wed, 12 Dec 2001 03:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCBU1b33101; Wed, 12 Dec 2001 03:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FE0437B405 for ; Wed, 12 Dec 2001 03:29:09 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCBT9d33011; Wed, 12 Dec 2001 03:29:09 -0800 (PST) (envelope-from nobody) Message-Id: <200112121129.fBCBT9d33011@freefall.freebsd.org> Date: Wed, 12 Dec 2001 03:29:09 -0800 (PST) From: Wayne Pascoe To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32745: Evolution port missing out on dependencies Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32745 >Category: ports >Synopsis: Evolution port missing out on dependencies >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 03:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Wayne Pascoe >Release: 4.4-STABLE >Organization: >Environment: FreeBSD pan.ehsrealtime.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Nov 17 11:48:47 GMT 2001 root@pan.home.penguinpowered.org.uk:/usr/obj/usr/src/sys/WTP i386 >Description: Doing make install in evolution causes the port build process to die during the ./configure stage if gal and gtkhtml are not installed. This is because gal and gtkhtml are not dependencies on the port. It is possible to have gnome installed from ports without these two ports being installed. >How-To-Repeat: Install gnome from /usr/src/ports/x11/gnome cd /usr/ports/mail/evolution make install >Fix: Do make install in /usr/ports/x11-toolkits/gal and /usr/ports/www/gtkhtml This should be included in the port >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 4:20:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FC0C37B417 for ; Wed, 12 Dec 2001 04:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCCK1a61774; Wed, 12 Dec 2001 04:20:01 -0800 (PST) (envelope-from gnats) Received: from ftp.translate.ru (ftp.translate.ru [195.131.4.140]) by hub.freebsd.org (Postfix) with ESMTP id D0A8137B405 for ; Wed, 12 Dec 2001 04:14:31 -0800 (PST) Received: (from lev@localhost) by ftp.translate.ru (8.11.2/8.11.2) id fBCCD5L20078; Wed, 12 Dec 2001 15:13:05 +0300 (MSK) (envelope-from lev) Message-Id: <200112121213.fBCCD5L20078@ftp.translate.ru> Date: Wed, 12 Dec 2001 15:13:05 +0300 (MSK) From: Lev Serebryakov Reply-To: Lev Serebryakov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32746: Update port: textproc/libxml2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32746 >Category: ports >Synopsis: Update port: textproc/libxml2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 04:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Lev Serebryakov >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: Ports collection from 12 Dec 2001 >Description: Update port: textproc/libxml2 to version 2.4.12 (last vendor's version). >How-To-Repeat: >Fix: diff -ruN libxml2.orig/Makefile libxml2/Makefile --- libxml2.orig/Makefile Thu Dec 6 11:27:28 2001 +++ libxml2/Makefile Tue Dec 11 19:22:51 2001 @@ -6,7 +6,7 @@ # PORTNAME= libxml2 -PORTVERSION= 2.4.11 +PORTVERSION= 2.4.12 CATEGORIES= textproc gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= stable/sources/libxml diff -ruN libxml2.orig/distinfo libxml2/distinfo --- libxml2.orig/distinfo Thu Dec 6 11:27:28 2001 +++ libxml2/distinfo Tue Dec 11 19:23:57 2001 @@ -1 +1 @@ -MD5 (libxml2-2.4.11.tar.gz) = 07691480fdfd6fc54ccf3750481a9cd4 +MD5 (libxml2-2.4.12.tar.gz) = 4c621b9786880f61b10f7239fad795f5 diff -ruN libxml2.orig/pkg-plist libxml2/pkg-plist --- libxml2.orig/pkg-plist Tue Nov 13 14:07:18 2001 +++ libxml2/pkg-plist Tue Dec 11 19:53:28 2001 @@ -46,6 +46,8 @@ share/doc/libxml2/html/libxml-docbparser.html share/doc/libxml2/html/libxml-encoding.html share/doc/libxml2/html/libxml-entities.html +share/doc/libxml2/html/libxml-globals.html +share/doc/libxml2/html/libxml-hash.html share/doc/libxml2/html/libxml-htmlparser.html share/doc/libxml2/html/libxml-htmltree.html share/doc/libxml2/html/libxml-lib.html @@ -55,6 +57,7 @@ share/doc/libxml2/html/libxml-parser.html share/doc/libxml2/html/libxml-parserinternals.html share/doc/libxml2/html/libxml-sax.html +share/doc/libxml2/html/libxml-threads.html share/doc/libxml2/html/libxml-tree.html share/doc/libxml2/html/libxml-uri.html share/doc/libxml2/html/libxml-valid.html >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 4:20:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBCA037B41B for ; Wed, 12 Dec 2001 04:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCCK1S61783; Wed, 12 Dec 2001 04:20:01 -0800 (PST) (envelope-from gnats) Received: from ftp.translate.ru (ftp.translate.ru [195.131.4.140]) by hub.freebsd.org (Postfix) with ESMTP id AECDB37B405 for ; Wed, 12 Dec 2001 04:14:33 -0800 (PST) Received: (from lev@localhost) by ftp.translate.ru (8.11.2/8.11.2) id fBCCDCK20170; Wed, 12 Dec 2001 15:13:12 +0300 (MSK) (envelope-from lev) Message-Id: <200112121213.fBCCDCK20170@ftp.translate.ru> Date: Wed, 12 Dec 2001 15:13:12 +0300 (MSK) From: Lev Serebryakov Reply-To: Lev Serebryakov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32747: Update port: textproc/libxslt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32747 >Category: ports >Synopsis: Update port: textproc/libxslt >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 04:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Lev Serebryakov >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: Ports collection from 12 Dec 2001 >Description: Update port: textproc/libxslt to version 1.0.9 (last vendor's version) + patch for debugger code from linxslt mailing list. >How-To-Repeat: >Fix: diff -ruN libxslt.orig/Makefile libxslt/Makefile --- libxslt.orig/Makefile Thu Dec 6 15:10:26 2001 +++ libxslt/Makefile Tue Dec 11 19:55:09 2001 @@ -6,8 +6,7 @@ # PORTNAME= libxslt -PORTVERSION= 1.0.8 -PORTREVISION= 1 +PORTVERSION= 1.0.9 CATEGORIES= textproc gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= stable/sources/libxslt diff -ruN libxslt.orig/distinfo libxslt/distinfo --- libxslt.orig/distinfo Thu Dec 6 11:44:06 2001 +++ libxslt/distinfo Tue Dec 11 19:56:36 2001 @@ -1 +1 @@ -MD5 (libxslt-1.0.8.tar.gz) = d4c31b2bea97904d3fe286545070438c +MD5 (libxslt-1.0.9.tar.gz) = 72a80a772aaae3c61633025f90d5053f diff -ruN libxslt.orig/files/patch-breakpoint::Makefile.in libxslt/files/patch-breakpoint::Makefile.in --- libxslt.orig/files/patch-breakpoint::Makefile.in Thu Dec 6 11:44:07 2001 +++ libxslt/files/patch-breakpoint::Makefile.in Thu Jan 1 03:00:00 1970 @@ -1,14 +0,0 @@ - -$FreeBSD: ports/textproc/libxslt/files/patch-breakpoint::Makefile.in,v 1.1 2001/12/06 08:44:07 sobomax Exp $ - ---- breakpoint/Makefile.in 2001/12/06 08:31:12 1.1 -+++ breakpoint/Makefile.in 2001/12/06 08:31:48 -@@ -121,7 +121,7 @@ - dbgmain.c - - --libxsltbreakpoint_la_LIBADD = -lxml2 $(M_LIBS) -+libxsltbreakpoint_la_LIBADD = $(LIBXML_LIBS) $(M_LIBS) - libxsltbreakpoint_la_LDFLAGS = -version-info @LIBXSLT_VERSION_INFO@ - - man_MANS = #breakpoint.4 diff -ruN libxslt.orig/files/patch-libxslt::transform.c libxslt/files/patch-libxslt::transform.c --- libxslt.orig/files/patch-libxslt::transform.c Mon Dec 3 14:21:45 2001 +++ libxslt/files/patch-libxslt::transform.c Thu Jan 1 03:00:00 1970 @@ -1,16 +0,0 @@ ---- libxslt/transform.c.orig Sat Nov 10 13:35:49 2001 -+++ libxslt/transform.c Mon Dec 3 00:03:39 2001 -@@ -3474,12 +3474,10 @@ - if (tmp == root) { - ctxt->type = XSLT_OUTPUT_HTML; - res->type = XML_HTML_DOCUMENT_NODE; -- if (((doctypePublic != NULL) || (doctypeSystem != NULL))) -+ if (((doctypePublic != NULL) || (doctypeSystem != NULL))) { - res->intSubset = xmlCreateIntSubset(res, root->name, - doctypePublic, - doctypeSystem); -- if (((doctypePublic != NULL) || (doctypeSystem != NULL))) { -- res = htmlNewDoc(doctypeSystem, doctypePublic); - #ifdef XSLT_GENERATE_HTML_DOCTYPE - } else if (version != NULL) { - xsltGetHTMLIDs(version, &doctypePublic, diff -ruN libxslt.orig/files/patch-libxslt::xsltutils.c libxslt/files/patch-libxslt::xsltutils.c --- libxslt.orig/files/patch-libxslt::xsltutils.c Thu Jan 1 03:00:00 1970 +++ libxslt/files/patch-libxslt::xsltutils.c Wed Dec 12 15:09:19 2001 @@ -0,0 +1,17 @@ +--- libxslt/xsltutils.c.orig Sat Dec 1 06:55:08 2001 ++++ libxslt/xsltutils.c Wed Dec 12 15:08:26 2001 +@@ -1291,11 +1291,13 @@ + { + xsltDebuggerCallbacksPtr callbacks; + +- if ((block == NULL) || (no != 1)) ++ if ((block == NULL) || (no != XSLT_CALLBACK_NUMBER)) + return(-1); + + callbacks = (xsltDebuggerCallbacksPtr) block; + xsltDebuggerCurrentCallbacks.handler = callbacks->handler; ++ xsltDebuggerCurrentCallbacks.add = callbacks->add; ++ xsltDebuggerCurrentCallbacks.drop = callbacks->drop; + return(0); + } + diff -ruN libxslt.orig/pkg-plist libxslt/pkg-plist --- libxslt.orig/pkg-plist Tue Nov 13 14:08:59 2001 +++ libxslt/pkg-plist Tue Dec 11 20:06:13 2001 @@ -1,7 +1,6 @@ bin/xslt-config bin/xsltproc etc/xsltConf.sh -include/breakpoint/breakpoint.h include/libexslt/exslt.h include/libexslt/exsltconfig.h include/libxslt/attributes.h @@ -55,4 +54,4 @@ @dirrm share/doc/libxslt @dirrm include/libxslt @dirrm include/libexslt -@dirrm include/breakpoint + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 4:30:14 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 594FB37B41B for ; Wed, 12 Dec 2001 04:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCCU0569992; Wed, 12 Dec 2001 04:30:00 -0800 (PST) (envelope-from gnats) Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id B8B2337B416 for ; Wed, 12 Dec 2001 04:25:46 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id A98C82B78C for ; Wed, 12 Dec 2001 13:25:42 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 7D9AF8C9; Wed, 12 Dec 2001 23:25:38 +1100 (EST) Message-Id: <20011212122538.7D9AF8C9@k7.mavetju.org> Date: Wed, 12 Dec 2001 23:25:38 +1100 (EST) From: Edwin Groothuis Reply-To: Edwin Groothuis To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32748: [maintainer update] sysutils/pkg_tree update to 1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32748 >Category: ports >Synopsis: [maintainer update] sysutils/pkg_tree update to 1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 04:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 4.4-RELEASE i386 >Organization: - >Environment: System: FreeBSD k7.mavetju.org 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Sat Nov 10 21:31:47 EST 2001 edwin@k7.mavetju.org:/usr/src/sys/compile/k7 i386 n/a >Description: This is a patch to upgrade to version 1.1. >How-To-Repeat: n/a >Fix: files/patch-Makefile is a new file! --- Makefile.orig Wed Dec 12 23:00:26 2001 +++ Makefile Wed Dec 12 23:24:56 2001 @@ -6,10 +6,17 @@ # PORTNAME= pkg_tree -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= sysutils MASTER_SITES= http://www.mavetju.org/download/ MAINTAINER= edwin@mavetju.org + +MAN7= pkg_tree.7 + +post-patch: + ${PERL} -pi -e 's|__PREFIX__|${PREFIX}|g' ${WRKSRC}/Makefile + ${PERL} -pi -e 's|__INSTALL_MAN__|${INSTALL_MAN}|g' ${WRKSRC}/Makefile + ${PERL} -pi -e 's|__INSTALL_SCRIPT__|${INSTALL_SCRIPT}|g' ${WRKSRC}/Makefile .include --- distinfo.orig Wed Dec 12 23:00:29 2001 +++ distinfo Wed Dec 12 23:01:24 2001 @@ -1 +1 @@ -MD5 (pkg_tree-1.0.tar.gz) = 5cfdf6f24e17963eccf83eab2bd9893f +MD5 (pkg_tree-1.1.tar.gz) = b41c4a28a7ed727962bb137914f81030 --- /dev/null Wed Dec 12 23:25:12 2001 +++ files/patch-Makefile Wed Dec 12 23:11:58 2001 @@ -0,0 +1,13 @@ +--- Makefile.orig Wed Dec 12 23:06:13 2001 ++++ Makefile Wed Dec 12 23:07:35 2001 +@@ -11,8 +11,8 @@ + --date="December 15, 2001" pkg_tree.pod > pkg_tree.7 + + install: +- install -o root -g wheel -m 755 -c pkg_tree /usr/local/bin +- install -o root -g wheel -m 644 -c pkg_tree.7 /usr/local/man/man7 ++ __INSTALL_SCRIPT__ pkg_tree __PREFIX__/bin ++ __INSTALL_MAN__ pkg_tree.7 __PREFIX__/man/man7 + + clean: + rm pkg_tree.7 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 4:33:13 2001 Delivered-To: freebsd-ports@freebsd.org Received: from nl-irelay01.cmg.nl (smtp.cmg.com [195.109.155.100]) by hub.freebsd.org (Postfix) with ESMTP id 6100D37B419 for ; Wed, 12 Dec 2001 04:33:09 -0800 (PST) Received: (from root@localhost) by nl-irelay01.cmg.nl (8.11.6/8.11.5) id fBCCX7u61963 for ports@freebsd.org; Wed, 12 Dec 2001 13:33:07 +0100 (CET) Received: from nl-amv-route01.cmg.nl (nl-amv-route.cmg.nl [10.16.127.107]) by nl-irelay01.cmg.nl (8.11.6/8.11.5) with ESMTP id fBCCX4o61923; Wed, 12 Dec 2001 13:33:06 +0100 (CET) Received: by NL-AMV-ROUTE01 with Internet Mail Service (5.5.2653.19) id ; Wed, 12 Dec 2001 13:30:51 +0100 Message-ID: <395ABDBC0952D211BB2A00104BB3F9390600726E@NL-AMV-MAIL03> From: Ramses van Pinxteren To: "'ports@FreeBSD.org'" Cc: "'ports@FreeBSD.org'" Subject: FreeBSD Port: cricket-1.0.2 Date: Wed, 12 Dec 2001 13:30:42 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" X-Virus-Scanned: by AMaViS / NAI-VScan Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org cricket 1.0.3 is avaialable for download. Can you give me an estimate when this application will be updated in the portscollection. there are certain features I would like to start using. Many thanks, Ing. Ramses H. Th. van Pinxteren CMG CIS Laan van Kronenburg 14 postbus 133 1180 AC Amstelveen Nederland tel: +31 (0)20 503 3000 fax: +31 (0)20 503 3011 email: ramses.van.pinxteren@cmg.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 4:40:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D7F7837B420 for ; Wed, 12 Dec 2001 04:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCCe1M73855; Wed, 12 Dec 2001 04:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09F7F37B405 for ; Wed, 12 Dec 2001 04:38:40 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCCcev73291; Wed, 12 Dec 2001 04:38:40 -0800 (PST) (envelope-from nobody) Message-Id: <200112121238.fBCCcev73291@freefall.freebsd.org> Date: Wed, 12 Dec 2001 04:38:40 -0800 (PST) From: Willem van Engen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32751: Update port: misc/sword new version 1.5.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32751 >Category: ports >Synopsis: Update port: misc/sword new version 1.5.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 04:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Willem van Engen >Release: 4.4-STABLE i386 >Organization: >Environment: >Description: The crosswire bible society has released version 1.5.2 of the sword bible framework. And some small changes: - Install removes symbolic links before installing. Avoids error when they exist. [if you feel the error should occur, feel free to undo this change] - PREFIX/etc is used instead of /usr/local/etc for the configfile location in swmgr.c >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # misc/sword/ # misc/sword/files # misc/sword/files/patch-Makefile.cfg # misc/sword/files/patch-src::mgr::swmgr.cpp # misc/sword/pkg-comment # misc/sword/pkg-descr # misc/sword/pkg-message # misc/sword/pkg-plist # misc/sword/Makefile # misc/sword/distinfo # echo c - misc/sword/ mkdir -p misc/sword/ > /dev/null 2>&1 echo c - misc/sword/files mkdir -p misc/sword/files > /dev/null 2>&1 echo x - misc/sword/files/patch-Makefile.cfg sed 's/^X//' >misc/sword/files/patch-Makefile.cfg << 'END-of-misc/sword/files/patch-Makefile.cfg' X--- Makefile.cfg.orig Wed Dec 12 00:56:50 2001 X Makefile.cfg Wed Dec 12 00:57:18 2001 X@@ -1,4 1,5 @@ X # General defines X include ${root}/localport.cfg X X version := 1.5.2 X X@@ -6,7 7,7 @@ X # ownership (used by 'make install') X X user := root X-group := root X group := wheel X X X # this WILL NOT WORK for you. only inhouse patched version of X@@ -27,7 28,7 @@ X X # shared library- set to yes if you would like to build X X-buildshare := no X buildshare := yes X X X # VCL library- set to yes if you would like to build X@@ -60,8 61,6 @@ X X # paths X X-instdir := /usr X- X bindir := ${instdir}/bin X libdir := ${instdir}/lib X hdir := ${instdir}/include/sword X@@ -80,16 79,16 @@ X WARNINGS = -Wall -Wno-format -pedantic X #WARNINGS = -Werror X WARNINGS = -pedantic X-CFLAGS = -pipe $(WARNINGS) $(DEBUG) X CFLAGS = -pipe $(WARNINGS) $(DEBUG) X X-CPPFLAGS = -I${root}/include/ $(DEFINES) X CPPFLAGS = -I${root}/include/ $(DEFINES) X ifeq ($(system),macosx) X CPPFLAGS = -I/System/Library/Frameworks/System.framework/Headers/ X endif X CPPFLAGS = $(DEFINES) X X LFLAGS = $(OPTIMIZE) $(DEBUG) -L${root}/lib/ X-LIBS = -lsword -lstdc X LIBS = -lsword -lstdc X X ifeq ($(zlib),no) X CFLAGS = -DEXCLUDEZLIB X@@ -97,9 96,9 @@ X LIBS = -lz X endif X X-LDFLAGS = $(LFLAGS) $(LIBS) X LDFLAGS = $(LFLAGS) $(LIBS) X X-DEFINES = -D_GNU_SOURCE X DEFINES = -D_GNU_SOURCE -D_INSTDIR_="\"${instdir}\"" X X ifeq ($(profile),yes) X CFLAGS = -pg X@@ -256,9 255,9 @@ X ifneq (${confdir},) X @if [ ! -d ${confdir}/mods.d ]; then install -o ${user} -g ${group} -m a rx,u rxw -d ${confdir}/mods.d/ ; fi X @if [ ! -d ${confdir}/locales.d ]; then install -o ${user} -g ${group} -m a rx,u rxw -d ${confdir}/locales.d/ ; fi X- @echo "[Install]" > /etc/sword.conf X- @echo "DataPath=${confdir}" >> /etc/sword.conf X-# install -o ${user} -g ${group} -m a r,u rw samples/recommended/sword.conf /etc/ X @echo "[Install]" > ${instdir}/etc/sword.conf X @echo "DataPath=${confdir}" >> ${instdir}/etc/sword.conf X # install -o ${user} -g ${group} -m a r,u rw samples/recommended/sword.conf ${instdir}/etc/ X install -o ${user} -g ${group} -m a r,u rw ${modsconf} ${confdir}/mods.d/ X install -o ${user} -g ${group} -m a r,u rw ${localesconf} ${confdir}/locales.d/ X endif END-of-misc/sword/files/patch-Makefile.cfg echo x - misc/sword/files/patch-src::mgr::swmgr.cpp sed 's/^X//' >misc/sword/files/patch-src::mgr::swmgr.cpp << 'END-of-misc/sword/files/patch-src::mgr::swmgr.cpp' X--- src/mgr/swmgr.cpp.org Wed Dec 12 00:43:04 2001 X src/mgr/swmgr.cpp Wed Dec 12 00:44:39 2001 X@@ -268,21 268,21 @@ X } X X X- // check for systemwide /etc/sword.conf X // check for systemwide _INSTDIR_/etc/sword.conf X X #ifndef __VISUALC__ X if (debug) X- cerr << "\nChecking for /etc/sword.conf..."; X cerr << "\nChecking for "_INSTDIR_"/etc/sword.conf..."; X #endif X X- if (!::access("/etc/sword.conf", 04)) { X if (!::access(_INSTDIR_"/etc/sword.conf", 04)) { X X #ifndef __VISUALC__ X if (debug) X cerr << "found\n"; X #endif X X- SWConfig etcconf("/etc/sword.conf"); X SWConfig etcconf(_INSTDIR_"/etc/sword.conf"); X if ((entry = etcconf.Sections["Install"].find("DataPath")) != etcconf.Sections["Install"].end()) { X path = (*entry).second; X if (((*entry).second.c_str()[strlen((*entry).second.c_str())-1] != '\\') && ((*entry).second.c_str()[strlen((*entry).second.c_str())-1] != '/')) X@@ -290,7 290,7 @@ X X #ifndef __VISUALC__ X if (debug) X- cerr << "DataPath in /etc/sword.conf is set to: " << path; X cerr << "DataPath in "_INSTDIR_"/etc/sword.conf is set to: " << path; X #endif X X #ifndef __VISUALC__ END-of-misc/sword/files/patch-src::mgr::swmgr.cpp echo x - misc/sword/pkg-comment sed 's/^X//' >misc/sword/pkg-comment << 'END-of-misc/sword/pkg-comment' XA project framework for manipulating Bible texts END-of-misc/sword/pkg-comment echo x - misc/sword/pkg-descr sed 's/^X//' >misc/sword/pkg-descr << 'END-of-misc/sword/pkg-descr' XThe SWORD Project is an effort to create an ever expanding software package Xfor research and study of God and His Word. The SWORD Bible Framework allows Xeasy manipulation of Bible texts, commentaries, lexicons, dictionaries, etc. XMany frontends are build using this framework. An installed module set may be Xshared between any frontend using the framework. X XWWW: http://www.crosswire.org/ X X- Willem van Engen END-of-misc/sword/pkg-descr echo x - misc/sword/pkg-message sed 's/^X//' >misc/sword/pkg-message << 'END-of-misc/sword/pkg-message' XTo use sword, you need to have bible, commentary and/or lexicon modules. Those Xare available in the sword-modules package/port. And you probabely want to Xinstall a bible-application that uses sword, like cheatah (or irenaeus, Xbibletime or gnomesword when they become available as package/port). END-of-misc/sword/pkg-message echo x - misc/sword/pkg-plist sed 's/^X//' >misc/sword/pkg-plist << 'END-of-misc/sword/pkg-plist' Xetc/sword.conf Xinclude/sword/Greek2Greek.h Xinclude/sword/GreekChars.h Xinclude/sword/canon.h Xinclude/sword/cipherfil.h Xinclude/sword/defs.h Xinclude/sword/echomod.h Xinclude/sword/entriesblk.h Xinclude/sword/femain.h Xinclude/sword/filemgr.h Xinclude/sword/gbffootnotes.h Xinclude/sword/gbfheadings.h Xinclude/sword/gbfhtml.h Xinclude/sword/gbfmorph.h Xinclude/sword/gbfplain.h Xinclude/sword/gbfrtf.h Xinclude/sword/gbfstrongs.h Xinclude/sword/gbfthml.h Xinclude/sword/hrefcom.h Xinclude/sword/listkey.h Xinclude/sword/localemgr.h Xinclude/sword/lzsscomprs.h Xinclude/sword/plainfootnotes.h Xinclude/sword/plainhtml.h Xinclude/sword/rawcom.h Xinclude/sword/rawfiles.h Xinclude/sword/rawgbf.h Xinclude/sword/rawld.h Xinclude/sword/rawld4.h Xinclude/sword/rawstr.h Xinclude/sword/rawstr4.h Xinclude/sword/rawtext.h Xinclude/sword/rawverse.h Xinclude/sword/regex.h Xinclude/sword/roman.h Xinclude/sword/rtfhtml.h Xinclude/sword/rwphtml.h Xinclude/sword/rwprtf.h Xinclude/sword/sapphire.h Xinclude/sword/strkey.h Xinclude/sword/swcipher.h Xinclude/sword/swcom.h Xinclude/sword/swcomprs.h Xinclude/sword/swconfig.h Xinclude/sword/swdisp.h Xinclude/sword/swdisprtf.h Xinclude/sword/swdisprtfchap.h Xinclude/sword/swfilter.h Xinclude/sword/swkey.h Xinclude/sword/swld.h Xinclude/sword/swlocale.h Xinclude/sword/swlog.h Xinclude/sword/swmacs.h Xinclude/sword/swmgr.h Xinclude/sword/swmodule.h Xinclude/sword/swobject.h Xinclude/sword/swtext.h Xinclude/sword/swunicod.h Xinclude/sword/swwinlog.h Xinclude/sword/tbdisp.h Xinclude/sword/thmlgbf.h Xinclude/sword/thmlhtml.h Xinclude/sword/thmlolb.h Xinclude/sword/thmlplain.h Xinclude/sword/thmlrtf.h Xinclude/sword/unicodertf.h Xinclude/sword/unixstr.h Xinclude/sword/untgz.h Xinclude/sword/utilconf.h Xinclude/sword/utilfuns.h Xinclude/sword/utilstr.h Xinclude/sword/versekey.h Xinclude/sword/zcom.h Xinclude/sword/zconf.h Xinclude/sword/zipcomprs.h Xinclude/sword/zlib.h Xinclude/sword/ztext.h Xinclude/sword/zverse.h Xlib/libsword.a.1 Xlib/libsword.a Xlib/libsword.so.1 Xlib/libsword.so X@dirrm include/sword X@dirrm share/sword END-of-misc/sword/pkg-plist echo x - misc/sword/Makefile sed 's/^X//' >misc/sword/Makefile << 'END-of-misc/sword/Makefile' X# New ports collection makefile for: sword X# Date created: 22 may 2001 X# Whom: Willem van Engen X# X# $FreeBSD$ X# X XPORTNAME= sword XPORTVERSION= 1.5.2 XCATEGORIES= misc XMASTER_SITES= ftp://ftp.crosswire.org/pub/sword/source/v1.5/ \ X http://www.crosswire.org/sword/download/ftpmirror/pub/sword/source/v1.5/ \ X http://ftp.sourceforge.net/pub/sourceforge/sword/ X XMAINTAINER= wvengen@stack.nl X XUSE_GMAKE= yes XINSTALLS_SHLIB= yes X XINCLUDES= Greek2Greek.h GreekChars.h canon.h cipherfil.h defs.h \ X echomod.h entriesblk.h femain.h filemgr.h gbffootnotes.h \ X gbfheadings.h gbfhtml.h gbfmorph.h gbfplain.h gbfrtf.h \ X gbfstrongs.h gbfthml.h hrefcom.h listkey.h localemgr.h \ X lzsscomprs.h plainfootnotes.h plainhtml.h rawcom.h rawfiles.h \ X rawgbf.h rawld.h rawld4.h rawstr.h rawstr4.h rawtext.h \ X rawverse.h regex.h roman.h rtfhtml.h rwphtml.h rwprtf.h \ X sapphire.h strkey.h swcipher.h swcom.h swcomprs.h swconfig.h \ X swdisp.h swdisprtf.h swdisprtfchap.h swfilter.h swkey.h swld.h \ X swlocale.h swlog.h swmacs.h swmgr.h swmodule.h swobject.h \ X swtext.h swunicod.h swwinlog.h tbdisp.h thmlgbf.h thmlhtml.h \ X thmlolb.h thmlplain.h thmlrtf.h unicodertf.h unixstr.h untgz.h \ X utilconf.h utilfuns.h utilstr.h versekey.h zcom.h zconf.h \ X zipcomprs.h zlib.h ztext.h zverse.h X Xpre-build: X @${ECHO} "instdir:= ${PREFIX}" >${WRKSRC}/localport.cfg X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/lib/libsword.a ${PREFIX}/lib/libsword.a.1 X ${RM} -f ${PREFIX}/lib/libsword.a X ${LN} -s ${PREFIX}/lib/libsword.a.1 ${PREFIX}/lib/libsword.a X ${INSTALL_PROGRAM} ${WRKSRC}/lib/libsword.so ${PREFIX}/lib/libsword.so.1 X ${RM} -f ${PREFIX}/lib/libsword.so X ${LN} -s ${PREFIX}/lib/libsword.so.1 ${PREFIX}/lib/libsword.so X @${ECHO} "[Install]" >${PREFIX}/etc/sword.conf X @${ECHO} "DataPath=${DATADIR}" >>${PREFIX}/etc/sword.conf X ${MKDIR} ${DATADIR} X ${MKDIR} ${PREFIX}/include/sword X.for file in ${INCLUDES} X ${INSTALL_DATA} ${WRKSRC}/include/${file} ${PREFIX}/include/sword X.endfor X Xpost-install: register X @${ECHO} "" X @${CAT} ${PKGMESSAGE} X Xregister: X.if !defined(BATCH) X @${ECHO} "Do you want to help the authors of SWORD to keep track of how many" X @${ECHO} -n "people use this program and register now ? [y/n] " X @read answer; \ X if [ x$$answer = xy -o x$$answer = xY ]; then \ X (cd ${WRKSRC}; ${GMAKE} register;); \ X fi X.endif X X.include END-of-misc/sword/Makefile echo x - misc/sword/distinfo sed 's/^X//' >misc/sword/distinfo << 'END-of-misc/sword/distinfo' XMD5 (sword-1.5.2.tar.gz) = 6be465212e300672b5ab6502caf39baa END-of-misc/sword/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 4:40:54 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 91F1F37B41E for ; Wed, 12 Dec 2001 04:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCCe1a73846; Wed, 12 Dec 2001 04:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 457BE37B417 for ; Wed, 12 Dec 2001 04:38:21 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCCcLY73257; Wed, 12 Dec 2001 04:38:21 -0800 (PST) (envelope-from nobody) Message-Id: <200112121238.fBCCcLY73257@freefall.freebsd.org> Date: Wed, 12 Dec 2001 04:38:21 -0800 (PST) From: Willem van Engen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32750: Update port: misc/sword-modules Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32750 >Category: ports >Synopsis: Update port: misc/sword-modules >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 04:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Willem van Engen >Release: 4.4-STABLE i386 >Organization: >Environment: >Description: Modules for the sword bible framework. Changes: - the 'fetch' target behaved strangely; just type make and select a module that's not in the distfiles. You have to run make twice to get it installed. I'm not sure the problem is solved now for all possible systems, but it should be better. - updated module lists - did a 'touch distinfo' to get rid of the no-distfile messages during fetch >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # misc/sword-modules # misc/sword-modules/scripts # misc/sword-modules/scripts/configure.swmods # misc/sword-modules/scripts/bibles.list # misc/sword-modules/scripts/lexicons.list # misc/sword-modules/scripts/cults.list # misc/sword-modules/scripts/comments.list # misc/sword-modules/scripts/devotionals.list # misc/sword-modules/pkg-descr # misc/sword-modules/Makefile # misc/sword-modules/pkg-comment # misc/sword-modules/pkg-plist # misc/sword-modules/distinfo # echo c - misc/sword-modules mkdir -p misc/sword-modules > /dev/null 2>&1 echo c - misc/sword-modules/scripts mkdir -p misc/sword-modules/scripts > /dev/null 2>&1 echo x - misc/sword-modules/scripts/configure.swmods sed 's/^X//' >misc/sword-modules/scripts/configure.swmods << 'END-of-misc/sword-modules/scripts/configure.swmods' X#!/bin/sh X# $FreeBSD$ X XSED=${SED:-/usr/bin/sed} XMKTEMP=${MKTEMP:-/usr/bin/mktemp} XAWK=${AWK:-/usr/bin/awk} XBASENAME=${BASENAME:-/usr/bin/basename} XCAT=${CAT:-/bin/cat} XWC=${WC:-/usr/bin/wc} X Xdialog_main() { X tmpfile=`${MKTEMP} -t menulistM` X X choosedone=0; X while [ $choosedone != 1 ]; do X /usr/bin/dialog --title "SWORD Modules" --clear \ X --menu "\n\ XPlease select desired modules in each section:" -1 -1 6 \ XBibles "Select biblical texts" \ XLexicons "Select lexicons / dictionaries" \ XComments "Select commentaries" \ XDevotionals "Select daily devotionals" \ XCults "Select cults / unorthodox / questionnable modules" \ XDone "Done" \ X2> $tmpfile X X retval=${?} X X case $retval in X 0) X chosen=`${CAT} $tmpfile` X X case $chosen in X "Bibles") X dialog_select ${SCRIPTDIR}/bibles.list selbibles "$selbibles" X ;; X X "Lexicons") X dialog_select ${SCRIPTDIR}/lexicons.list sellexicons "$sellexicons" X ;; X X "Comments") X dialog_select ${SCRIPTDIR}/comments.list selcomments "$selcomments" X ;; X X "Devotionals") X dialog_select ${SCRIPTDIR}/devotionals.list seldevotionals "$seldevotionals" X ;; X X "Cults") X dialog_select ${SCRIPTDIR}/cults.list selcults "$selcults" X ;; X X "Done") X choosedone=1 X ;; X X *) X echo "Unknown option: $chosen" X rm -f $tmpfile X exit 1 X ;; X esac X ;; X X 1) echo "Cancelled" X rm -f $tmpfile X exit 1 X ;; X *) X rm -f $tmpfile X exit 1 X ;; X esac X done X X rm -f $tmpfile X} X Xdialog_select() { X modtype=`${BASENAME} $1|${SED} s/\.list.*$//` X tmpf=`${MKTEMP} -t dlgscript` X selectlist=`${MKTEMP} -t selectlist` X prem=`${WC} -l $1 | ${AWK} '{print $1;}` X m=${prem:-16} X if [ $m -gt 16 ]; then m=16; fi X X echo -n "/usr/bin/dialog --title \"SWORD modules: ${modtype}\" --clear \ X--checklist \"\n Please select desired ${modtype} modules:\" -1 -1 $m " >$tmpf X X echo -n `${CAT} $1|${AWK} --assign selmods="$3" ' XBEGIN { X FS="\t"; X split(selmods,smatmp," "); X for (i in smatmp) { X selmodarray[smatmp[i]]=1; X } X} X X{ X if ($1 in selmodarray) ison="ON"; else ison="OFF" X printf("%s %s %s ",$1,$2,ison); X}'` >>$tmpf X X echo ' 2> ${selectlist} ' >>$tmpf X X . $tmpf X X retval=${?} X X if [ x$retval = x0 ]; then X setvar $2 "`${CAT} ${selectlist} | ${SED} s/\\\"//g`" X fi X X rm -f $tmpf X rm -f $selectlist X} X Xif [ -f ${WRKDIR}/selected.conf ]; then X . ${WRKDIR}/selected.conf Xelse X selbibles="ASV KJV WEB" X sellexicons="StrongsGreek StrongsHebrew" X selcomments="Personal TSK" X seldevotionals="" X selcults="" Xfi X Xif [ ! "${BATCH}" ]; then X dialog_main Xfi X Xif [ ! -d ${SETDIR} ]; then X mkdir ${SETDIR} Xfi X Xecho "# Automatically generated file - manual changes may be lost" >${MODFILE} Xfor module in $selbibles $sellexicons $selcomments $selcults $seldevotionals; do X echo "MODULE_FILES = ${module}.zip " >>${MODFILE} Xdone X END-of-misc/sword-modules/scripts/configure.swmods echo x - misc/sword-modules/scripts/bibles.list sed 's/^X//' >misc/sword-modules/scripts/bibles.list << 'END-of-misc/sword-modules/scripts/bibles.list' XAraSVD "Smith & Van Dyke Arabic Bible" XBulgarian "Bulgarian Bible" XCzeBKR "Czech Bible Kralicka" XCzeCEP "Czech Ekumenicky Cesky preklad" XCzeKMS "Czech Preklad KMS Nova smlouva" XCzeNKB "Czech Nova kralicka Bible" XDan "Danske Bibel" XGerBen "German Bengel NT" XGerLut "German 1912 Luther" XGerLut1545 "German 1545 Luther" XGerSch "German 1951 Schlachter Bibel" XUMGreek "Unaccented Modern Greek Text" XAKJV "American King James Version" XASV "1901 American Standard Version" XBBE "1965 Bible in Basic English" XCommon "The Common Edition: New Testament" XDR "Douay-Rheims Bible" XDRA "Douay-Rheims 1899 American Edition" XDarby "1889 Darby Bible" XHNV "Hebrew Names Version of the World English Bible" XIGNT "Interlinear Greek New Testament" XISV "International Standard Version" XJPS "Jewish Publication Society Old Testament" XKJV "King James Version of 1611 w/ Strongs Numbers" XLO "The Living Oracles NT" XMontgomery "Montgomery New Testament" XMurdock "James Murdock's Translation of the Syriac Peshitta" XORTHJBC "The Orthodox Jewish Brit Chadasha" XRNKJV "Restored Name King James Version" XRSV "Revised Standard Version" XRWebster "Revised 1833 Webster Version" XRotherham "The Emphasized Bible by J. B. Rotherham" XTwenty "Twentieth Century New Testament" XWEB "World English Bible" XWebsters "Webster Bible" XWesleyNT "John Wesley NT" XWeymouth "1912 Weymouth NT" XYLT "1898 Young's Literal Translation" XEsperanto "Esperanto Bible" XSpaRV "Spanish Reina-Valera" XSpaSEV "Spanish 1569 Sagradas Escrituras Version Antigua" XSpaVNT "Spanish 1858 Valera New Testament" XEst "Estonian Bible" XFinPR "Finnish 1938 PhyZ Raamattu" XFreLSG "French 1910 Louis Segond" XGothicA "Gothic Codex Ambr. A & Mss." XGothicB "Gothic Codex Ambr. B & Car." XByz "1991 Byzantine/Majority Text" XLXX "Septuagint" XLXXM "Septuagint, Morphologically Tagged Rahlfs'" XScrivner "1894 Scrivener Textus Receptus" XStephanus "1550 Stephanus Textus Receptus" XTisch "Tischendorf's Eighth Edition GNT" XWH "1881 Westcott-Hort Greek Text" XWHNU "Westcott-Hort with NA27U4 variants" XManxGaelic "Manx Gaelic Scripture Portions" XFreCrl "French Haitian Creole Version" XAleppo "Aleppo Codex" XBHS "Biblia Hebraica Stuttgartensia" XHebModern "Modern Hebrew Bible" XHunKar "Hungarian Karoli" XIndBIS "Indonesian Bahasa Indonesia Sehari-hari" XIndTB "Indonesian Terjemahan Baru" XIndTL "Indonesian Terjemahan Baru" XIcelandic "Icelandic Bible" XItaLND "Italian 1991 La Nuova Diodati" XItaNRV "Italian 1994 La Sacra Bibbia Nuova Riveduta" XJapKUG "Japanese JKUG Translation" XJapSNKI "Japanese JSNKI Translation" XKetchi "Ketchi Bible" XKorean "Korean Bible" XVulgate "Latin Vulgate" XVulgate_HebPs "Latin Vulgate Psalms from Hebrew" XLatvian "Latvian New Testament" XMaori "Maori Bible" XDutSVV "Dutch Statenvertaling" XNorsk "Norsk Bibelen" XMel "Melanesian Pidgin Bible" XUma "Uma New Testament" XPorAA "Portuguese Joao Ferreira de Almeida Atualizada" XRomCor "Romanian Cornilescu Version" XRST "Russian Synodal Translation" XRusMakarij "The Pentateuch of Moses in Russian" XScotsGaelic "Scots Gaelic Gospel of Mark" XALB "Albanian Bible" XSweSVE "Swedish Bible 1917 New Testament" XSwahili "Swahili New Testament" XThaiKJV "Thai KJV" XTagalog "Tagalog (John & James)" XTurkish "Turkish NT" XUkrainian "Ukrainian Bible" XViet "1934 Vietnamese Bible" XXhosa "Xhosa Bible" XChiGU "Chinese Glory Union Bible" END-of-misc/sword-modules/scripts/bibles.list echo x - misc/sword-modules/scripts/lexicons.list sed 's/^X//' >misc/sword-modules/scripts/lexicons.list << 'END-of-misc/sword-modules/scripts/lexicons.list' XAmTract "American Tract Society Bible Dictionary" XBDB "Brown-Driver-Briggs Hebrew Lexicon" XEastons "Easton's Bible Dictionary" XHitchcocks "Hitchcock's Bible Names" XISBE "International Standard Bible Encyclopedia" XNaves "Nave's Topical Bible" XPackard "Packard's Morphological Analysis Codes" XSmiths "Smith's Bible Dictionary" XStrongsGreek "Strong's Greek Bible Dictionary" XStrongsHebrew "Strong's Hebrew Bible Dictionary" XThayer "Thayer's Greek Lexicon" XTorrey "R. A. Torrey's New Topical Textbook" XWebstersDict "Webster's Revised Unabridged English Dictionary 1913" XGreekHebrew "Greek to Hebrew Dictionary of Septuagint Words" XHebrewGreek "Hebrew to Greek Dictionary of Septuagint Words" END-of-misc/sword-modules/scripts/lexicons.list echo x - misc/sword-modules/scripts/cults.list sed 's/^X//' >misc/sword-modules/scripts/cults.list << 'END-of-misc/sword-modules/scripts/cults.list' XDiaglott "The Emphatic Diaglott" XJST "Joseph Smith Translation" END-of-misc/sword-modules/scripts/cults.list echo x - misc/sword-modules/scripts/comments.list sed 's/^X//' >misc/sword-modules/scripts/comments.list << 'END-of-misc/sword-modules/scripts/comments.list' XMAK "Matthias Ansorgs Kommentar" XRieger "Carl Heinrich Riegers Kommentar" XBarnes "Barnes' New Testament Notes" XClarke "Adam Clarke's Commentary on the Bible" XDTN "Darby Translation Notes" XFamily "Family Bible Notes" XGeneva "Geneva Bible Translation Notes" XJFB "Jamieson Fausset Brown Bible Commentary" XMHC "Matthew Henry's Complete Commentary on the Whole Bible" XMHCC "Matthew Henry's Concise Commentary on the Whole Bible" XPNT "The People's New Testament" XPersonal "Personal Commentary" XRWP "Robertson's Word Pictures" XScofield "Scofield Reference Notes, 1917 Edition" XTDavid "C. H. Spurgeon's Treasury of David" XTFG "The Fourfold Gospel and Commentary on Acts of Apostles" XTSK "Treasury of Scriptural Knowledge" XWesley "John Wesley's Notes on the Bible" XDutKant "Kanttekeningen Statenvertaling" END-of-misc/sword-modules/scripts/comments.list echo x - misc/sword-modules/scripts/devotionals.list sed 's/^X//' >misc/sword-modules/scripts/devotionals.list << 'END-of-misc/sword-modules/scripts/devotionals.list' Xlosung_de_89 "1989 Losung auf deutsch" Xlosung_de_90 "1990 Losung auf deutsch" Xlosung_de_91 "1991 Losung auf deutsch" Xlosung_de_92 "1992 Losung auf deutsch" Xlosung_de_93 "1993 Losung auf deutsch" Xlosung_de_94 "1994 Losung auf deutsch" Xlosung_de_95 "1995 Losung auf deutsch" Xlosung_de_96 "1996 Losung auf deutsch" Xlosung_de_97 "1997 Losung auf deutsch" Xlosung_de_98 "1998 Losung auf deutsch" Xlosung_de_99 "1999 Losung auf deutsch" XDBD "Day By Day By Grace - Bob Hoekstra" XDaily "Jonathan Bagster's Daily Light on the Daily Path" XSME "C. H. Spurgeon's Morning and Evening: Daily Readins" Xlosung_en_96 "1996 Watchwords (Losung) in English" Xlosung_en_97 "1997 Watchwords (Losung) in English" Xlosung_en_98 "1998 Watchwords (Losung) in English" Xlosung_en_99 "1999 Watchwords (Losung) in English" Xlosung_es_99 "1999 Watchwords (Losung) en Castellano" Xlosung_nl_99 "1999 Watchwords (Losung) in Dutch" END-of-misc/sword-modules/scripts/devotionals.list echo x - misc/sword-modules/pkg-descr sed 's/^X//' >misc/sword-modules/pkg-descr << 'END-of-misc/sword-modules/pkg-descr' XThe SWORD Project is an effort to create an ever expanding software package Xfor research and study of God and His Word. The SWORD Bible Framework allows Xeasy manipulation of Bible texts, commentaries, lexicons, dictionaries, etc. XMany frontends are build using this framework. An installed module set may be Xshared between any frontend using the framework. X XWWW: http://www.crosswire.org/ X X- Willem van Engen END-of-misc/sword-modules/pkg-descr echo x - misc/sword-modules/Makefile sed 's/^X//' >misc/sword-modules/Makefile << 'END-of-misc/sword-modules/Makefile' X# New ports collection makefile for: sword-modules X# Date created: 28 may 2001 X# Whom: Willem van Engen X# X# $FreeBSD$ X# X XPORTNAME= sword-modules XPORTVERSION= 1.1 XCATEGORIES= misc XMASTER_SITES= ftp://ftp.crosswire.org/pub/sword/modules/raw/ \ X http://www.crosswire.org/sword/download/ftpmirror/pub/sword/modules/raw/ XDISTFILES= ${MODULE_FILES} XDIST_SUBDIR= sword_modules XEXTRACT_ONLY= # empty X XMAINTAINER= wvengen@stack.nl X XLIB_DEPENDS= sword.1:${PORTSDIR}/misc/sword X XNO_BUILD= yes XUSE_ZIP= yes X X# Modules may change, but it has no effect on their functionality. I think X# it's best not to use checksum. Besides, there is no version number on modules. XNO_CHECKSUM= yes X XMODULE_FILES= XSETDIR= ${WRKDIRPREFIX}${.CURDIR} XMODFILE= ${SETDIR}/Makefile.sel XSCRIPTS_ENV= SETDIR="${SETDIR}" \ X TOUCH="${TOUCH}" \ X MKDIR="${MKDIR}" \ X CAT="${CAT}" \ X MKTEMP="${MKTEMP}"\ X SED="${SED}"\ X BASENAME="${BASENAME}"\ X WC="${WC}"\ X SCRIPTDIR="${SCRIPTDIR}" \ X BUILD="${PACKAGE_BUILDING}" \ X DIST_SUBDIR="${DIST_SUBDIR}" \ X MODFILE="${MODFILE}" \ X BATCH="${BATCH}" X XDIRNAME?= ${BASENAME:S/basename/dirname/} XSORT?= sort X X.if !exists(${MODFILE}) Xpre-fetch: select X.else X.include <${MODFILE}> Xpre-fetch: X.endif X @${MAKE} do-fetch # XXX Not sure if this is needed X Xselect: X @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.swmods X Xpost-clean: X @${RM} -f ${MODFILE} X Xdo-install: X @${MKDIR} -p ${PREFIX}/share/sword X @for i in ${MODULE_FILES}; do \ X ${EXTRACT_CMD} -qo ${DISTDIR}/${DIST_SUBDIR}/$${i} -d ${PREFIX}/share/sword; \ X done X Xpost-install: X @tdirs=""; \ X for i in ${MODULE_FILES}; do \ X tfiles=`${EXTRACT_CMD} -Z -1 ${DISTDIR}/${DIST_SUBDIR}/$${i}`; \ X for j in $${tfiles}; do \ X ${ECHO} "share/sword/$${j}" >>${TMPPLIST}; \ X if [ "`${ECHO} $${j} | ${GREP} -v mods.d`" ]; then \ X dirn=`${DIRNAME} $${j}`; \ X while [ "$${dirn}" -a "$${dirn}" != "." -a \ X "$${dirn}" != "/" ]; do \ X if [ ! "`${ECHO} \"$${tdirs}\" | ${GREP} \"$${dirn} \"`" ]; then \ X tdirs="$${tdirs}$${dirn} "; \ X fi; \ X dirn=`${DIRNAME} $${dirn}`; \ X done; \ X fi; \ X done; \ X done; \ X ksorted=`for k in $${tdirs}; do printf "%s\n" $${k}; done | ${SORT} -r -t" "`;\ X for j in $${ksorted}; do \ X ${ECHO} "@dirrm share/sword/$${j}" >>${TMPPLIST}; \ X done; \ X ${ECHO} "@dirrm share/sword/mods.d" >>${TMPPLIST}; X X.include END-of-misc/sword-modules/Makefile echo x - misc/sword-modules/pkg-comment sed 's/^X//' >misc/sword-modules/pkg-comment << 'END-of-misc/sword-modules/pkg-comment' XBible, lexicon and commentary modules for SWORD END-of-misc/sword-modules/pkg-comment echo x - misc/sword-modules/pkg-plist sed 's/^X//' >misc/sword-modules/pkg-plist << 'END-of-misc/sword-modules/pkg-plist' END-of-misc/sword-modules/pkg-plist echo x - misc/sword-modules/distinfo sed 's/^X//' >misc/sword-modules/distinfo << 'END-of-misc/sword-modules/distinfo' END-of-misc/sword-modules/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 7:50:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7464937B417 for ; Wed, 12 Dec 2001 07:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCFo0X43836; Wed, 12 Dec 2001 07:50:00 -0800 (PST) (envelope-from gnats) Received: from yoda.bmi.net (yoda.bmi.net [204.57.191.163]) by hub.freebsd.org (Postfix) with ESMTP id 3807C37B41C; Wed, 12 Dec 2001 07:46:37 -0800 (PST) Received: from johncoop.MSHOME (drumheller-router.bmi.net [206.63.201.3] (may be forged)) by yoda.bmi.net (Pro-8.9.3/Pro-8.9.3) with ESMTP id JAA20536; Wed, 12 Dec 2001 09:19:28 -0800 Received: by johncoop.MSHOME (Postfix, from userid 0) id B0B9815503; Wed, 12 Dec 2001 07:46:31 -0800 (PST) Message-Id: <20011212154631.B0B9815503@johncoop.MSHOME> Date: Wed, 12 Dec 2001 07:46:31 -0800 (PST) From: John Merryweather Cooper Reply-To: John Merryweather Cooper To: FreeBSD-gnats-submit@freebsd.org Cc: tobez@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32752: [MAINTAINER UPDATE] Upgrade libesmtp to 0.8.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32752 >Category: ports >Synopsis: [MAINTAINER UPDATE] Upgrade libesmtp to 0.8.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 07:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: John Merryweather Cooper >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD johncoop.MSHOME 4.4-STABLE FreeBSD 4.4-STABLE #25: Tue Dec 11 14:17:53 PST 2001 jmcoopr@johncoop.MSHOME:/usr/obj/usr/src/sys/JOHNCOOP i386 >Description: Improved build performance across platforms is the major feature of this release: 1) autoconf is no longer required by FreeBSD to build this port; 2) the acinclude.m4 macros have been heavily modified by Brian Stafford (with a little help from me) to correctly detect and build PTHREAD support for FreeBSD under both -STABLE and -CURRENT. The technique we chose is flexible enough to support most any eventuality since the PTHREAD configuration macro will attempt to select build-environment values as the optimum PTHREAD build configuration unless the values fail under test. (this is supposed to work correctly even for AIX) OTHER PORTERS TAKE NOTE: You might want to look long and hard at the acinclude.m4 file . . . :) >How-To-Repeat: N/A >Fix: Summary of file changes: 'libesmtp.new/Makefile' | 0 'libesmtp.new/distinfo' | 0 ./Makefile | 26 +++++++++++--------------- ./distinfo | 2 +- 4 files changed, 12 insertions(+), 16 deletions(-) The patch: # This is a patch for libesmtp to update it to libesmtp.new # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # STEP 2: Run the 'patch' program with this file as input. # #### End of Preamble #### #### Patch data follows #### diff -u 'libesmtp/Makefile' 'libesmtp.new/Makefile' Index: ./Makefile --- ./Makefile Sun Nov 18 16:41:14 2001 +++ ./Makefile Wed Dec 5 06:24:06 2001 @@ -2,10 +2,10 @@ # Date created: Sun Feb 21 2001 # Whom: tobez@tobez.org # -# $FreeBSD: ports/mail/libesmtp/Makefile,v 1.12 2001/11/18 22:48:04 tobez Exp $ +# $FreeBSD$ PORTNAME= libesmtp -PORTVERSION= 0.8.7 +PORTVERSION= 0.8.8 CATEGORIES= mail MASTER_SITES= http://www.stafford.uklinux.net/libesmtp/ \ http://www.tobez.org/download/port-mirrors/mail/libesmtp/ \ @@ -16,30 +16,26 @@ USE_BZIP2= yes USE_GMAKE= yes USE_OPENSSL= yes -USE_AUTOCONF= yes USE_LIBTOOL= yes -LIBTOOLFILES= ${WRKSRC}/aclocal.m4 ${WRKSRC}/libltdl/aclocal.m4 INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ PTHREAD_LIBS="${PTHREAD_LIBS}" \ PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" + LIBS="-L${LOCALBASE}/lib" # require-all-recipients (implied by enable-all) is required for Balsa-1.2.x -CONFIGURE_ARGS= --enable-all \ - --disable-ltdl-install - +CONFIGURE_ARGS= --enable-all pre-build: @${CP} ${WRKSRC}/libltdl/libtool ${WRKSRC}/libtool post-install: .ifndef(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/examples/libesmtp - ${MKDIR} ${PREFIX}/share/doc/libesmtp - ${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/share/examples/libesmtp - ${INSTALL_DATA} ${WRKSRC}/INSTALL ${PREFIX}/share/doc/libesmtp - ${INSTALL_DATA} ${WRKSRC}/Notes ${PREFIX}/share/doc/libesmtp - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/libesmtp + @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/Notes ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif .include diff -u 'libesmtp/distinfo' 'libesmtp.new/distinfo' Index: ./distinfo --- ./distinfo Sun Nov 18 16:41:14 2001 +++ ./distinfo Wed Dec 5 06:00:53 2001 @@ -1 +1 @@ -MD5 (libesmtp-0.8.7.tar.bz2) = e42722f24a5f8cfe250e3c9c3b64cd0a +MD5 (libesmtp-0.8.8.tar.bz2) = 6dc3102123e825bc49cc8050f316ba50 #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Wed Dec 12 07:33:14 2001 # Generated by : makepatch 2.00 # Recurse directories : Yes # p 'Makefile' 1426 1007562246 0100644 # p 'distinfo' 64 1007560853 0100644 #### End of ApplyPatch data #### #### End of Patch kit [created: Wed Dec 12 07:33:14 2001] #### #### Checksum: 94 3259 52642 #### >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 8:48:30 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.inetcomm.ru (mail.inetcomm.ru [212.152.32.73]) by hub.freebsd.org (Postfix) with ESMTP id 76F0037B405 for ; Wed, 12 Dec 2001 08:48:27 -0800 (PST) Received: from ppc103863 (ppp-95-inet.dialup.inetcomm.ru [212.152.34.95]) by mail.inetcomm.ru (Postfix) with SMTP id C750D180A7; Wed, 12 Dec 2001 19:48:25 +0300 (MSK) Message-ID: <000601c1832c$dbc7f940$5f2298d4@ppc103863> From: =?koi8-r?B?88XNxc7P1w==?= To: Cc: Subject: FreeBSD Port: aureal-kmod-1.3_3 Date: Wed, 12 Dec 2001 19:48:40 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0003_01C18345.FF2E6FE0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0003_01C18345.FF2E6FE0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable =DF=D6=C0-=DD=CC=D898=CF=D4 ------=_NextPart_000_0003_01C18345.FF2E6FE0 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
=DF=D6=C0-=DD=CC=D898=CF=D4
------=_NextPart_000_0003_01C18345.FF2E6FE0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 9: 0:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EAE537B419 for ; Wed, 12 Dec 2001 09:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCH03J06807; Wed, 12 Dec 2001 09:00:03 -0800 (PST) (envelope-from gnats) Received: from ler-freebie.iadfw.net (ler-freebie.iadfw.net [206.66.13.221]) by hub.freebsd.org (Postfix) with ESMTP id B068637B405 for ; Wed, 12 Dec 2001 08:51:11 -0800 (PST) Received: (from root@localhost) by ler-freebie.iadfw.net (8.11.6/8.11.4) id fBCGpA787171; Wed, 12 Dec 2001 10:51:10 -0600 (CST) (envelope-from ler) Message-Id: <200112121651.fBCGpA787171@ler-freebie.iadfw.net> Date: Wed, 12 Dec 2001 10:51:10 -0600 (CST) From: Larry Rosenman Reply-To: Larry Rosenman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32753: althea port doesn't compile. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32753 >Category: ports >Synopsis: althea port doesn't compile. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 09:00:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 4.4-STABLE i386 >Organization: Internet America, Inc. >Environment: System: FreeBSD ler-freebie.iadfw.net 4.4-STABLE FreeBSD 4.4-STABLE #1: Thu Nov 8 13:40:53 CST 2001 ler@ler-freebie.iadfw.net:/usr/obj/usr/src/sys/LER-FREEBIE i386 >Description: Try to compile althea port, get the following: ===> Building for althea-0.5.5 Warning: Object directory not changed from original /usr/ports/mail/althea/work/althea-0.5.5 c++ -O -pipe -march=pentiumpro -DPACKAGE=\"althea\" -DDOCDIR=\"/usr/local/share/doc/althea\" -DPIXDIR=\"/usr/local/share/althea\" -DLOCALEDIR=\"/usr/local/share/locale\" -DMAIL_POLL_INTERVAL=60000 `/usr/X11R6/bin/gtk12-config --cflags` -I/usr/include -c save_config.cpp /usr/include/g++/stl_list.h: In method `list,__default_alloc_template >,allocator,__default_alloc_template > > >::list(const list,__default_alloc_template >,allocator,__default_alloc_template > > > &)': /usr/include/g++/stl_list.h:434: template instantiation depth exceeds maximum of 17 /usr/include/g++/stl_list.h:434: (use -ftemplate-depth-NN to increase the maximum) /usr/include/g++/stl_list.h:434: instantiating `list,__default_alloc_template >,allocator,__default_alloc_template > > >::get_allocator() const' /usr/include/g++/stl_list.h:434: instantiated from `list,__default_alloc_template >,allocator,__default_alloc_template > > >::list(const list,__default_alloc_template >,allocator,__default_alloc_template > > > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Message *, const Message &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Message &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Message &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator, _List_iterator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Folder *, const Folder &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Folder &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Folder &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iteratorHow-To-Repeat: see above >Fix: >Release-Note: >Audit-Trail: >Unformatted: >, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator, _List_ite rator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Server *, const Server &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Server &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Server &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from here /usr/include/g++/stl_list.h:434: template instantiation depth exceeds maximum of 17 /usr/include/g++/stl_list.h:434: (use -ftemplate-depth-NN to increase the maximum) /usr/include/g++/stl_list.h:434: instantiating `list,__default_alloc_template >,allocator,__default_alloc_template > > >::get_allocator() const' /usr/include/g++/stl_list.h:434: instantiated from `list,__default_alloc_template >,allocator,__default_alloc_template > > >::list(const list,__default_alloc_template >,allocator,__default_alloc_template > > > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Message *, const Message &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Message &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Message &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator , _List_iterator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Folder *, const Folder &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Folder &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Folder &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator, _List_ite rator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Server *, const Server &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Server &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Server &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from here /usr/include/g++/stl_list.h:435: template instantiation depth exceeds maximum of 17 /usr/include/g++/stl_list.h:435: (use -ftemplate-depth-NN to increase the maximum) /usr/include/g++/stl_list.h:435: instantiating `list,__default_alloc_template >,allocator,__default_alloc_template > > >::begin()' /usr/include/g++/stl_list.h:435: instantiated from `list,__default_alloc_template >,allocator,__default_alloc_template > > >::list(const list,__default_alloc_template >,allocator,__default_alloc_template > > > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Message *, const Message &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Message &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Message &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator , _List_iterator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Folder *, const Folder &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Folder &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Folder &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator, _List_ite rator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Server *, const Server &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Server &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Server &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from here /usr/include/g++/stl_list.h:435: template instantiation depth exceeds maximum of 17 /usr/include/g++/stl_list.h:435: (use -ftemplate-depth-NN to increase the maximum) /usr/include/g++/stl_list.h:435: instantiating `_List_iterator,__default_alloc_template >,basic_string,__default_alloc_template > &,basic_string,__default_alloc_template > *>' /usr/include/g++/stl_list.h:435: instantiated from `list,__default_alloc_template >,allocator,__default_alloc_template > > >::list(const list,__default_alloc_template >,allocator,__default_alloc_template > > > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Message *, const Message &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Message &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Message &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator , _List_iterator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Folder *, const Folder &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Folder &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Folder &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator, _List_ite rator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Server *, const Server &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Server &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Server &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from here /usr/include/g++/stl_list.h:435: invalid use of undefined type `struct _List_iterator,__default_alloc_template >,basic_string,__default_alloc_template > &,basic_st ring,__default_alloc_template > *>' /usr/include/g++/stl_list.h:95: forward declaration of `struct _List_iterator,__default_alloc_template >,basic_string,__default_alloc_template > &,basic_string,__default_alloc_template > *>' /usr/include/g++/stl_list.h:435: template instantiation depth exceeds maximum of 17 /usr/include/g++/stl_list.h:435: (use -ftemplate-depth-NN to increase the maximum) /usr/include/g++/stl_list.h:435: instantiating `list,__default_alloc_template >,allocator,__default_alloc_template > > >::begin() const' /usr/include/g++/stl_list.h:435: instantiated from `list,__default_alloc_template >,allocator,__default_alloc_template > > >::list(const list,__default_alloc_template >,allocator,__default_alloc_template > > > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Message *, const Message &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Message &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Message &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator , _List_iterator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Folder *, const Folder &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Folder &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Folder &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator, _List_ite rator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Server *, const Server &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Server &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Server &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from here /usr/include/g++/stl_list.h:435: template instantiation depth exceeds maximum of 17 /usr/include/g++/stl_list.h:435: (use -ftemplate-depth-NN to increase the maximum) /usr/include/g++/stl_list.h:435: instantiating `_List_iterator,__default_alloc_template >,const basic_string,__default_alloc_template > &,const basic_string,__default_alloc_template > *>' /usr/include/g++/stl_list.h:435: instantiated from `list,__default_alloc_template >,allocator,__default_alloc_template > > >::list(const list,__default_alloc_template >,allocator,__default_alloc_template > > > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Message *, const Message &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Message &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Message &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator , _List_iterator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Folder *, const Folder &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Folder &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Folder &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator, _List_ite rator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Server *, const Server &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Server &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Server &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from here /usr/include/g++/stl_list.h:435: invalid use of undefined type `struct _List_iterator,__default_alloc_template >,const basic_string,__default_alloc_template > &,co nst basic_string,__default_alloc_template > *>' /usr/include/g++/stl_list.h:95: forward declaration of `struct _List_iterator,__default_alloc_template >,const basic_string,__default_alloc_template > &,const basi c_string,__default_alloc_template > *>' /usr/include/g++/stl_list.h:435: template instantiation depth exceeds maximum of 17 /usr/include/g++/stl_list.h:435: (use -ftemplate-depth-NN to increase the maximum) /usr/include/g++/stl_list.h:435: instantiating `list,__default_alloc_template >,allocator,__default_alloc_template > > >::end() const' /usr/include/g++/stl_list.h:435: instantiated from `list,__default_alloc_template >,allocator,__default_alloc_template > > >::list(const list,__default_alloc_template >,allocator,__default_alloc_template > > > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Message *, const Message &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Message &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Message &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator , _List_iterator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Folder *, const Folder &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Folder &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Folder &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator, _List_ite rator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Server *, const Server &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Server &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Server &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from here /usr/include/g++/stl_list.h:435: template instantiation depth exceeds maximum of 17 /usr/include/g++/stl_list.h:435: (use -ftemplate-depth-NN to increase the maximum) /usr/include/g++/stl_list.h:435: instantiating `_List_iterator,__default_alloc_template >,const basic_string,__default_alloc_template > &,const basic_string,__default_alloc_template > *>' /usr/include/g++/stl_list.h:435: instantiated from `list,__default_alloc_template >,allocator,__default_alloc_template > > >::list(const list,__default_alloc_template >,allocator,__default_alloc_template > > > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Message *, const Message &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Message &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Message &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator , _List_iterator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Folder *, const Folder &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Folder &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Folder &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from `list >::insert<_List_iterator >(_List_iterator, _List_iterator, _List_ite rator)' /usr/include/g++/stl_list.h:435: instantiated from `list >::list(const list > &)' /usr/include/g++/stl_construct.h:48: instantiated from `construct(Server *, const Server &)' /usr/include/g++/stl_list.h:293: instantiated from `list >::_M_create_node(const Server &)' /usr/include/g++/stl_list.h:344: instantiated from `list >::insert(_List_iterator, const Server &)' /usr/include/g++/stl_list.h:559: instantiated from `list >::_M_insert_dispatch<_List_iterator >(_List_iterator, _List_iterator, _List_iterator, __false_type)' /usr/include/g++/stl_list.h:369: instantiated from here /usr/include/g++/stl_list.h:435: invalid use of undefined type `struct _List_iterator,__default_alloc_template >,const basic_string,__default_alloc_template > &,co nst basic_string,__default_alloc_template > *>' /usr/include/g++/stl_list.h:95: forward declaration of `struct _List_iterator,__default_alloc_template >,const basic_string,__default_alloc_template > &,const basi c_string,__default_alloc_template > *>' *** Error code 1 Stop in /usr/ports/mail/althea/work/althea-0.5.5. *** Error code 1 Stop in /usr/ports/mail/althea. *** Error code 1 Stop in /usr/ports/mail/althea. *** Error code 1 Stop in /usr/ports/mail/althea. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 9:30:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CE4E337B41E for ; Wed, 12 Dec 2001 09:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCHU0t21267; Wed, 12 Dec 2001 09:30:00 -0800 (PST) (envelope-from gnats) Received: from bastuba.partitur.se (bastuba.partitur.se [212.209.169.194]) by hub.freebsd.org (Postfix) with ESMTP id 65CAC37B41C for ; Wed, 12 Dec 2001 09:27:04 -0800 (PST) Received: (from root@localhost) by bastuba.partitur.se (8.11.6/8.11.6) id fBCHR2Q10423 for FreeBSD-gnats-submit@freebsd.org.AVP; Wed, 12 Dec 2001 18:27:02 +0100 (CET) (envelope-from girgen@partitur.se) Received: from elbas.partitur.se (elbas.partitur.se [212.209.169.222]) by bastuba.partitur.se (8.11.6/8.11.6) with ESMTP id fBCHR2310415 for ; Wed, 12 Dec 2001 18:27:02 +0100 (CET) (envelope-from girgen@partitur.se) Received: (from girgen@localhost) by elbas.partitur.se (8.11.6/8.11.6) id fBCHR2i90757; Wed, 12 Dec 2001 18:27:02 +0100 (CET) (envelope-from girgen) Message-Id: <200112121727.fBCHR2i90757@elbas.partitur.se> Date: Wed, 12 Dec 2001 18:27:02 +0100 (CET) From: Palle Girgensohn Reply-To: Palle Girgensohn To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32755: postgresql fails to give proper error message if old port layout is used Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32755 >Category: ports >Synopsis: postgresql fails to give proper error message if old port layout is used >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 09:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Palle Girgensohn >Release: FreeBSD 4.4-RELEASE i386 >Organization: Partitur >Environment: System: FreeBSD elbas.partitur.se 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Tue Sep 25 22:51:28 CEST 2001 girgen@optogan.partitur.se:/usr/obj/usr/src/sys/WORKSTATION i386 >Description: pre-everything target in Mk/bsd.port.mk has two colons, hence all ports must also use two colons, or else: % make "/vol/ports/Mk/bsd.port.mk", line 695: Inconsistent operator for pre-everything make: fatal errors encountered -- cannot continue this patch modifies this message to the more friendly: Error: your port uses an old layout. Please update it to match this bsd.port.mk. If you have updated your ports collection via cvsup and are still getting this error, see Q12 and Q13 in the cvsup FAQ on http://www.polstra.com for further information. *** Error code 1 Reported by: Dan Langille >How-To-Repeat: use the old port layout for postgresql7 but the new layout for all other stuff. try to build postgresql. >Fix: Index: Makefile =================================================================== RCS file: /net/elbas/opt/ncvs/ports/databases/postgresql7/Makefile,v retrieving revision 1.89 diff -u -r1.89 Makefile --- Makefile 2001/09/24 22:54:42 1.89 +++ Makefile 2001/12/12 17:20:28 @@ -96,7 +96,7 @@ tk83:${PORTSDIR}/x11-toolkits/tk83 .endif -pre-everything: +pre-everything:: @ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.postgresql pre-install: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 9:30:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 781B737B41C for ; Wed, 12 Dec 2001 09:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCHU0J21256; Wed, 12 Dec 2001 09:30:00 -0800 (PST) (envelope-from gnats) Received: from puppeteer.es.net (puppeteer.es.net [198.128.1.72]) by hub.freebsd.org (Postfix) with ESMTP id F1FDF37B405 for ; Wed, 12 Dec 2001 09:22:45 -0800 (PST) Received: by puppeteer.es.net (Postfix, from userid 0) id 93DB7748; Mon, 10 Dec 2001 15:42:26 -0800 (PST) Message-Id: <20011210234226.93DB7748@puppeteer.es.net> Date: Mon, 10 Dec 2001 15:42:26 -0800 (PST) From: Kevin@puppeteer.es.net, Oberman Reply-To: Kevin Oberman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32754: Port upgrade to V1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32754 >Category: ports >Synopsis: Port upgrade to V1.2 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 09:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Kevin Oberman >Release: FreeBSD 4.4-STABLE i386 >Organization: ESnet >Environment: System: FreeBSD puppeteer.es.net 4.4-STABLE FreeBSD 4.4-STABLE #7: Thu Dec 6 15:31:15 PST 2001 oberman@puppeteer.es.net:/scratch/obj/scratch/src/sys/THINKPAD i386 >Description: New release of the code (v1.2) >How-To-Repeat: N/A >Fix: Here is the diff. Directory and file names were changed. diff -ruN /usr/ports/comms/mwavem/Makefile /usr/ports/comms/mwavem.new/Makefile --- /usr/ports/comms/mwavem/Makefile Fri Aug 10 17:07:49 2001 +++ /usr/ports/comms/mwavem.new/Makefile Mon Dec 10 15:16:44 2001 @@ -6,8 +6,7 @@ # PORTNAME= mwavem-fbsd -PORTVERSION= 1.1 -PORTREVISION= 1 +PORTVERSION= 1.2 CATEGORIES= comms MASTER_SITES= http://www.escape.com/~simonw/ \ http://home.pacbell.net/simonw2/src/ \ @@ -20,6 +19,7 @@ ONLY_FOR_ARCHS= i386 +GNU_CONFIGURE= yes STARTUP= mwavem.sh USE_GMAKE= yes SLEEP= /bin/sleep @@ -27,36 +27,31 @@ .include pre-build: - ${PERL} -pi.orig -e "s@f /etc@f ${PREFIX}/etc@g;s@install -c -m -755@in$- ${PERL} -pi.orig -e "s@/etc/mwavem@${PREFIX}/etc/mwavem@g" ${WRKSRC}/mo$- ${PERL} -pi.orig -e "s@ko /modules@ko ${PREFIX}/share/mwave@g" ${WRKSRC$+ ${PERL} -pi.orig -e "s@ /modules@ ${PREFIX}/share/mwavem@g" ${WRKSRC}/s$ pre-install: - ${MKDIR} ${PREFIX}/share/mwave + ${MKDIR} ${PREFIX}/share/mwavem post-install: @${RM} -f /dev/mwave @${ECHO} "Creating /dev/mwave" mknod /dev/mwave c 96 0 - @${ECHO} "Installing ${PREFIX}/etc/rc.d/${STARTUP} startup file." - @${INSTALL_SCRIPT} ${FILESDIR}/${STARTUP} ${PREFIX}/etc/rc.d/ + @${ECHO} "Installing /usr/local/etc/rc.d/${STARTUP} startup file." + @${INSTALL_SCRIPT} ${FILESDIR}/${STARTUP} /usr/local/etc/rc.d/ @${ECHO} "*************************************************************$ ${ECHO} "* Driver loading information $ ${ECHO} "* $- ${ECHO} "* This package includes a device driver in a kernel module. Wh$- ${ECHO} "* installed in ${PREFIX}/share/mwave, this results in the init$- ${ECHO} "* probe not seeing the device and possibly reporting errors fo$- ${ECHO} "* device which may be ignored. $+ ${ECHO} "* This package includes a device driver in a kernel module whi$+ ${ECHO} "* installed in ${PREFIX}/share/mwave. $ ${ECHO} "* $- ${ECHO} "* It may also result in the serial device being probed at a 82$- ${ECHO} "* a 16550A as the probe may occur before he device is fully in$- ${ECHO} "* this happens you must re-boot to get the modem to work. $- ${ECHO} "* $- ${ECHO} "* You can eliminate this problem by copying ${PREFIX}/share/mw$+ ${ECHO} "* You may prefer to standardize by copying ${PREFIX}/share/mwa$ ${ECHO} "* into /modules. Then add the line: $ ${ECHO} "* mwavedd_load=\"YES\" $ ${ECHO} "* to /boot/loader.conf. This will load the driver at the start$ ${ECHO} "* bootstrap and it will probe in a normal manner. $+ ${ECHO} "* $+ ${ECHO} "* The driver will fail to communicate with the device on any b$+ ${ECHO} "* mwavem had not been run after the prior boot. $ ${ECHO} "**************************************************************$ ${ECHO} " " @${SLEEP} 5 diff -ruN /usr/ports/comms/mwavem/distinfo /usr/ports/comms/mwavem.new/distinfo --- /usr/ports/comms/mwavem/distinfo Mon Jun 4 10:19:05 2001 +++ /usr/ports/comms/mwavem.new/distinfo Mon Dec 10 14:48:09 2001 @@ -1 +1 @@ -MD5 (mwavem-fbsd-1.1.tgz) = 77bb7e86b2ab4caf251076e38e5d8a61 +MD5 (mwavem-fbsd-1.2.tgz) = b9449c68842261ead834792d2ecafcfc diff -ruN /usr/ports/comms/mwavem/files/mwavem.sh /usr/ports/comms/mwavem.new/f$--- /usr/ports/comms/mwavem/files/mwavem.sh Fri Aug 10 17:07:53 2001 +++ /usr/ports/comms/mwavem.new/files/mwavem.sh Mon Dec 3 14:35:09 2001 @@ -1,5 +1,5 @@ #!/bin/sh -MWAVE_NAME="mwavem" +MWAVEM_NAME="mwavem" MWAVEM_PATH="/usr/local/bin/" # # -- START -- @@ -19,8 +19,8 @@ stop ) ;; start ) - echo -n ' modem' - kldstat -n mwavedd 2>/dev/null >/dev/null || kldload /usr/local/sh$- ${MWAVE_PATH}${MWAVE_NAME} > /dev/null & + echo -n ' internal modem' + kldstat -n mwave 2>/dev/null >/dev/null || kldload /usr/local/shar$+ ${MWAVEM_PATH}${MWAVEM_NAME} > /dev/null & ;; esac Binary files /usr/ports/comms/mwavem/mwavem-fbsd-1.2.tgz and /usr/ports/comms/m$diff -ruN /usr/ports/comms/mwavem/pkg-plist /usr/ports/comms/mwavem.new/pkg-pli$--- /usr/ports/comms/mwavem/pkg-plist Mon Jun 4 10:19:05 2001 +++ /usr/ports/comms/mwavem.new/pkg-plist Mon Dec 3 09:10:28 2001 @@ -1,83 +1,76 @@ -sbin/mwavem +bin/mwavem etc/mwavem.conf etc/rc.d/mwavem.sh -share/mwave/agc8.dsp -share/mwave/agc9.dsp -share/mwave/agc9wt.dsp -share/mwave/async.dsp -share/mwave/async2x.dsp -share/mwave/c96441.dsp -share/mwave/callerid.dsp -share/mwave/callprog.dsp -share/mwave/cancel.dsp -share/mwave/cl1_hdlc.dsp -share/mwave/class1.dsp -share/mwave/class2.dsp -share/mwave/class8.dsp -share/mwave/class80.dsp -share/mwave/disc.dsp -share/mwave/dtmfr8.dsp -share/mwave/dtmfrm.dsp -share/mwave/fax01.dsp -share/mwave/faxpmp17.dsp -share/mwave/gain96.dsp -share/mwave/gainwt.dsp -share/mwave/gpc2pc.dsp -share/mwave/gsm.dsp -share/mwave/imaadpcm.dsp -share/mwave/init0437.dsp -share/mwave/int0896.dsp -share/mwave/int9608.dsp -share/mwave/meix0437.dsp -share/mwave/mhint.dsp -share/mwave/mixer96.dsp -share/mwave/mnp.dsp -share/mwave/mnp5.dsp -share/mwave/modem.dsp -share/mwave/mwbi0917.dsp -share/mwave/mwos3780.dsp -share/mwave/pc2gpc.dsp -share/mwave/ramm.dsp -share/mwave/rammv34.dsp -share/mwave/router.dsp -share/mwave/sildet.dsp -share/mwave/spk076.dsp -share/mwave/spk076m.dsp -share/mwave/spkeec.dsp -share/mwave/spkeecm.dsp -share/mwave/spkmmtp.dsp -share/mwave/spkvod.dsp -share/mwave/stp08m.dsp -share/mwave/stpvm.dsp -share/mwave/str08ser.dsp -share/mwave/strvm.dsp -share/mwave/t30.dsp -share/mwave/tonegen.dsp -share/mwave/uartdma.dsp -share/mwave/v22.dsp -share/mwave/v23.dsp -share/mwave/v32bis.dsp -share/mwave/v34.dsp -share/mwave/v34pcmc.dsp -share/mwave/v42.dsp -share/mwave/v42bisn.dsp -share/mwave/v8.dsp -share/mwave/v80.dsp -share/mwave/v80mac.dsp -share/mwave/v90.dsp -share/mwave/vv_hdlc.dsp -share/mwave/vv_prot.dsp -share/mwave/mwmmem.prf -share/mwave/tigr1040.wtt -share/mwave/mwavedd.ko -lib/libmwave.a -lib/libmeio.a -lib/libmwmutil.a -lib/libmwwtt32.a -lib/libmwmlw32.a -lib/libmwmpw32.a -lib/libmwmbl.a -@dirrm share/mwave +share/mwavem/agc8.dsp +share/mwavem/agc9.dsp +share/mwavem/agc9wt.dsp +share/mwavem/async.dsp +share/mwavem/async2x.dsp +share/mwavem/c96441.dsp +share/mwavem/callerid.dsp +share/mwavem/callprog.dsp +share/mwavem/cancel.dsp +share/mwavem/cl1_hdlc.dsp +share/mwavem/class1.dsp +share/mwavem/class2.dsp +share/mwavem/class8.dsp +share/mwavem/class80.dsp +share/mwavem/disc.dsp +share/mwavem/dtmfr8.dsp +share/mwavem/dtmfrm.dsp +share/mwavem/fax01.dsp +share/mwavem/faxpmp17.dsp +share/mwavem/gain96.dsp +share/mwavem/gainwt.dsp +share/mwavem/gpc2pc.dsp +share/mwavem/gsm.dsp +share/mwavem/imaadpcm.dsp +share/mwavem/init0437.dsp +share/mwavem/int0896.dsp +share/mwavem/int9608.dsp +share/mwavem/meix0437.dsp +share/mwavem/mhint.dsp +share/mwavem/mixer96.dsp +share/mwavem/mnp.dsp +share/mwavem/mnp5.dsp +share/mwavem/modem.dsp +share/mwavem/mwbi0917.dsp +share/mwavem/mwos3780.dsp +share/mwavem/pc2gpc.dsp +share/mwavem/ramm.dsp +share/mwavem/rammv34.dsp +share/mwavem/router.dsp +share/mwavem/sildet.dsp +share/mwavem/spk076.dsp +share/mwavem/spk076m.dsp +share/mwavem/spkeec.dsp +share/mwavem/spkeecm.dsp +share/mwavem/spkmmtp.dsp +share/mwavem/spkvod.dsp +share/mwavem/stp08m.dsp +share/mwavem/stpvm.dsp +share/mwavem/str08ser.dsp +share/mwavem/strvm.dsp +share/mwavem/t30.dsp +share/mwavem/tonegen.dsp +share/mwavem/uartdma.dsp +share/mwavem/v22.dsp +share/mwavem/v23.dsp +share/mwavem/v32bis.dsp +share/mwavem/v34.dsp +share/mwavem/v34pcmc.dsp +share/mwavem/v42.dsp +share/mwavem/v42bisn.dsp +share/mwavem/uartdma.dsp +share/mwavem/v22.dsp +share/mwavem/v23.dsp +share/mwavem/v32bis.dsp +share/mwavem/v34.dsp +share/mwavem/v34pcmc.dsp +share/mwavem/v42.dsp +share/mwavem/v42bisn.dsp +share/mwavem/v8.dsp +share/mwavem/v80.dsp +share/mwavem/v80mac.dsp +share/mwavem/v90.dsp +share/mwavem/vv_hdlc.dsp +share/mwavem/vv_prot.dsp +share/mwavem/mwmmem.prf +share/mwavem/tigr1040.wtt +share/mwavem/mwave.ko +@dirrm share/mwavem @exec rm -f /dev/mwave @exec mknod /dev/mwave c 96 0 @unexec rm -f /dev/mwave >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 9:40:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D60AC37B41B for ; Wed, 12 Dec 2001 09:40:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCHe0a22762; Wed, 12 Dec 2001 09:40:00 -0800 (PST) (envelope-from gnats) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by hub.freebsd.org (Postfix) with ESMTP id 86F4137B405 for ; Wed, 12 Dec 2001 09:34:43 -0800 (PST) Received: (from mb@localhost) by levais.imp.ch (8.11.6/8.11.5) id fBCHd8115677; Wed, 12 Dec 2001 18:39:08 +0100 (CET) (envelope-from mb) Message-Id: <200112121739.fBCHd8115677@levais.imp.ch> Date: Wed, 12 Dec 2001 18:39:08 +0100 (CET) From: Martin Blapp Reply-To: Martin Blapp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32756: [PATCH] Fix compile on CURRENT: ports/devel/kdesdk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32756 >Category: ports >Synopsis: [PATCH] Fix compile on CURRENT: ports/devel/kdesdk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 09:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Martin Blapp >Release: FreeBSD 5.0-CURRENT i386 >Organization: Improware AG >Environment: >Description: >How-To-Repeat: >Fix: --- kstartperf/libkstartperf.c.orig Tue Dec 11 15:13:51 2001 +++ kstartperf/libkstartperf.c Tue Dec 11 15:13:55 2001 @@ -13,7 +13,6 @@ * (C) 2000 Bill Soudan */ -#include #include #include #include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 10:20:14 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 702B737B417 for ; Wed, 12 Dec 2001 10:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCIK0h37748; Wed, 12 Dec 2001 10:20:00 -0800 (PST) (envelope-from gnats) Received: from lart.owp.csus.edu (lart.owp.csus.edu [130.86.232.246]) by hub.freebsd.org (Postfix) with ESMTP id D789437B405 for ; Wed, 12 Dec 2001 10:15:29 -0800 (PST) Received: (from scottj@localhost) by lart.owp.csus.edu (8.11.6/8.11.6) id fBCIFTP43298; Wed, 12 Dec 2001 10:15:29 -0800 (PST) (envelope-from scottj) Message-Id: <200112121815.fBCIFTP43298@lart.owp.csus.edu> Date: Wed, 12 Dec 2001 10:15:29 -0800 (PST) From: Joseph Scott Reply-To: Joseph Scott To: FreeBSD-gnats-submit@freebsd.org Cc: lodea@vet.com.au X-Send-Pr-Version: 3.113 Subject: ports/32758: PORT UPDATE : net/openldap 1.2.11 -> 1.2.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32758 >Category: ports >Synopsis: PORT UPDATE : net/openldap 1.2.11 -> 1.2.13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 10:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: FreeBSD 4.4-STABLE i386 >Organization: randomnetworks.com >Environment: System: FreeBSD lart.owp.csus.edu 4.4-STABLE FreeBSD 4.4-STABLE #0: Mon Dec 10 22:39:41 PST 2001 admin@lart.owp.csus.edu:/usr/src/sys/compile/LART i386 >Description: PORT UPDATE : net/openldap 1.2.11 -> 1.2.13 Please Note : 1. patch-ae is no longer needed 2. I've CC'd the maintainer of this port, lodea@vet.com.au >How-To-Repeat: >Fix: diff -ruN openldap.orig/Makefile openldap/Makefile --- openldap.orig/Makefile Wed Dec 12 09:46:35 2001 +++ openldap/Makefile Wed Dec 12 10:11:09 2001 @@ -6,8 +6,7 @@ # PORTNAME= openldap -PORTVERSION= 1.2.11 -PORTREVISION= 2 +PORTVERSION= 1.2.13 CATEGORIES= net databases MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ diff -ruN openldap.orig/distinfo openldap/distinfo --- openldap.orig/distinfo Wed Dec 12 09:46:35 2001 +++ openldap/distinfo Wed Dec 12 09:48:45 2001 @@ -1 +1 @@ -MD5 (openldap-1.2.11.tgz) = ac469c0fe66ece3893e96182f14b7886 +MD5 (openldap-1.2.13.tgz) = 9613c1f8211c058e0b13788355b0e580 diff -ruN openldap.orig/files/patch-ae openldap/files/patch-ae --- openldap.orig/files/patch-ae Wed Dec 12 09:46:35 2001 +++ openldap/files/patch-ae Wed Dec 31 16:00:00 1969 @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff -ruN openldap.orig/files/patch-db openldap/files/patch-db --- openldap.orig/files/patch-db Wed Dec 12 09:46:35 2001 +++ openldap/files/patch-db Wed Dec 12 10:00:38 2001 @@ -1,13 +1,13 @@ ---- configure.orig Fri Jun 9 13:16:04 2000 -+++ configure Tue Jul 4 15:59:42 2000 -@@ -6170,14 +6170,14 @@ +--- configure.orig Wed Dec 12 09:55:07 2001 ++++ configure Wed Dec 12 10:00:07 2001 +@@ -6194,14 +6194,14 @@ echo $ac_n "(cached) $ac_c" 1>&6 else ol_LIBS="$LIBS" - echo $ac_n "checking for db_open in -ldb""... $ac_c" 1>&6 --echo "configure:6175: checking for db_open in -ldb" >&5 +-echo "configure:6199: checking for db_open in -ldb" >&5 + echo $ac_n "checking for db_open in -ldb2""... $ac_c" 1>&6 -+echo "configure:6175: checking for db_open in -ldb2" >&5 ++echo "configure:6199: checking for db_open in -ldb2" >&5 ac_lib_var=`echo db'_'db_open | sed 'y%./+-:%__p__%'` if eval "test \"\${ac_cv_lib_$ac_lib_var+set}\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -16,9 +16,9 @@ -LIBS="-ldb $LIBS" +LIBS="-ldb2 $LIBS" cat > conftest.$ac_ext <&6 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 10:39:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 42D1F37B417; Wed, 12 Dec 2001 10:39:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCIbJB39924; Wed, 12 Dec 2001 10:37:19 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 10:37:19 -0800 (PST) From: Message-Id: <200112121837.fBCIbJB39924@freefall.freebsd.org> To: tkato@prontomail.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/31295: Update port: games/nethack-qt|games/nethack3-tty|games/nethack3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: games/nethack-qt|games/nethack3-tty|games/nethack3 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 10:36:58 PST 2001 State-Changed-Why: superceded by pr/32743 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31295 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 10:47: 6 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hex.databits.net (hex.csh.rit.edu [129.21.60.203]) by hub.freebsd.org (Postfix) with SMTP id 41D3537B41C for ; Wed, 12 Dec 2001 10:47:02 -0800 (PST) Received: (qmail 22719 invoked by uid 1001); 12 Dec 2001 18:47:01 -0000 Date: Wed, 12 Dec 2001 13:47:01 -0500 From: Pete Fritchman To: Ernst de Haan Cc: ports@freebsd.org Subject: Re: Automatically portupgrading Message-ID: <20011212134701.B17606@databits.net> References: <200112121101.fBCB1GY80288@zaphod.euronet.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200112121101.fBCB1GY80288@zaphod.euronet.nl>; from znerd@freebsd.org on Wed, Dec 12, 2001 at 12:01:16PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ++ 12/12/01 12:01 +0100 - Ernst de Haan: | I'm running pkgdepfix, and I get a lot of messages that I'm having old | versions of packages. | | Can I automatically run portupgrade for all of my packages somehow? portupgrade -a -pete -- Pete Fritchman [petef@(databits.net|freebsd.org|csh.rit.edu)] finger petef@databits.net for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 10:49:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 377C037B417; Wed, 12 Dec 2001 10:49:35 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCInMb42255; Wed, 12 Dec 2001 10:49:22 -0800 (PST) (envelope-from petef) Date: Wed, 12 Dec 2001 10:49:22 -0800 (PST) From: Message-Id: <200112121849.fBCInMb42255@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/32745: Evolution port missing out on dependencies Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Evolution port missing out on dependencies Responsible-Changed-From-To: freebsd-ports->gnome Responsible-Changed-By: petef Responsible-Changed-When: Wed Dec 12 10:49:16 PST 2001 Responsible-Changed-Why: Over to maintainers http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32745 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 10:59:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25CB637B41E; Wed, 12 Dec 2001 10:59:36 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCIncO42522; Wed, 12 Dec 2001 10:49:38 -0800 (PST) (envelope-from petef) Date: Wed, 12 Dec 2001 10:49:38 -0800 (PST) From: Message-Id: <200112121849.fBCIncO42522@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/32746: Update port: textproc/libxml2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: textproc/libxml2 Responsible-Changed-From-To: freebsd-ports->gnome Responsible-Changed-By: petef Responsible-Changed-When: Wed Dec 12 10:49:26 PST 2001 Responsible-Changed-Why: Over to maintainers http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32746 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 10:59:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F63137B41D; Wed, 12 Dec 2001 10:59:36 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCInn742685; Wed, 12 Dec 2001 10:49:49 -0800 (PST) (envelope-from petef) Date: Wed, 12 Dec 2001 10:49:49 -0800 (PST) From: Message-Id: <200112121849.fBCInn742685@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/32747: Update port: textproc/libxslt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: textproc/libxslt Responsible-Changed-From-To: freebsd-ports->gnome Responsible-Changed-By: petef Responsible-Changed-When: Wed Dec 12 10:49:42 PST 2001 Responsible-Changed-Why: Over to maintainers http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32747 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 10:59:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA5DC37B425; Wed, 12 Dec 2001 10:59:37 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCIvVh49600; Wed, 12 Dec 2001 10:57:31 -0800 (PST) (envelope-from petef) Date: Wed, 12 Dec 2001 10:57:31 -0800 (PST) From: Message-Id: <200112121857.fBCIvVh49600@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/32756: [PATCH] Fix compile on CURRENT: ports/devel/kdesdk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] Fix compile on CURRENT: ports/devel/kdesdk Responsible-Changed-From-To: freebsd-ports->kde Responsible-Changed-By: petef Responsible-Changed-When: Wed Dec 12 10:57:25 PST 2001 Responsible-Changed-Why: Over to maintainers http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32756 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 11:39:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FA0637B417; Wed, 12 Dec 2001 11:39:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJUlP57120; Wed, 12 Dec 2001 11:30:47 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 11:30:47 -0800 (PST) From: Message-Id: <200112121930.fBCJUlP57120@freefall.freebsd.org> To: girgen@partitur.se, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32755: postgresql fails to give proper error message if old port layout is used Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: postgresql fails to give proper error message if old port layout is used State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 11:30:39 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32755 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 11:49:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 27F0A37B41E; Wed, 12 Dec 2001 11:49:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJhTW60083; Wed, 12 Dec 2001 11:43:29 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 11:43:29 -0800 (PST) From: Message-Id: <200112121943.fBCJhTW60083@freefall.freebsd.org> To: john_m_cooper@yahoo.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32752: [MAINTAINER UPDATE] Upgrade libesmtp to 0.8.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] Upgrade libesmtp to 0.8.8 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 11:43:17 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32752 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 11:49:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5323337B417; Wed, 12 Dec 2001 11:49:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJeOo59358; Wed, 12 Dec 2001 11:40:24 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 11:40:24 -0800 (PST) From: Message-Id: <200112121940.fBCJeOo59358@freefall.freebsd.org> To: oberman@es.net, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32754: Port upgrade to V1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Port upgrade to V1.2 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 11:40:16 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32754 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 11:49:59 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC5BB37B405; Wed, 12 Dec 2001 11:49:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJl2D60747; Wed, 12 Dec 2001 11:47:02 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 11:47:02 -0800 (PST) From: Message-Id: <200112121947.fBCJl2D60747@freefall.freebsd.org> To: wvengen@stack.nl, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32751: Update port: misc/sword new version 1.5.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: misc/sword new version 1.5.2 State-Changed-From-To: open->analyzed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 11:46:02 PST 2001 State-Changed-Why: please use 'diff -ruN olddir/ newdir/' to generate patch file when u want to upgrade a port http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32751 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 11:50:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AECD137B41E for ; Wed, 12 Dec 2001 11:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJo0x61202; Wed, 12 Dec 2001 11:50:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BCACD37B416 for ; Wed, 12 Dec 2001 11:41:33 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJfXv59715; Wed, 12 Dec 2001 11:41:33 -0800 (PST) (envelope-from nobody) Message-Id: <200112121941.fBCJfXv59715@freefall.freebsd.org> Date: Wed, 12 Dec 2001 11:41:33 -0800 (PST) From: Nathan Ahlstrom To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32761: new port archivers/stuffit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32761 >Category: ports >Synopsis: new port archivers/stuffit >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 11:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Nathan Ahlstrom >Release: 4.4-20011206-STABLE >Organization: me >Environment: FreeBSD ahlstn1-laptop.corp.medtronic.com 4.4-20011206-STABLE FreeBSD 4.4-20011206-STABLE #3: Mon Dec 10 08:23:02 CST 2001 root@ahlstn1-laptop.corp.medtronic.com:/usr/src/sys/compile/AHLSTN1-LAPTOP i386 >Description: New port of Alladain StuffIt Expander. >How-To-Repeat: >Fix: http://people.freebsd.org/~nra/stuffit.tar.gz >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 11:59:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C0A737B4CF; Wed, 12 Dec 2001 11:59:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJxHT63053; Wed, 12 Dec 2001 11:59:17 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 11:59:17 -0800 (PST) From: Message-Id: <200112121959.fBCJxHT63053@freefall.freebsd.org> To: leeym@utopia.leeym.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32739: new port: razor-agent 1.17 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new port: razor-agent 1.17 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 11:59:05 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32739 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 11:59:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A1C337B503; Wed, 12 Dec 2001 11:59:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJqIg61805; Wed, 12 Dec 2001 11:52:18 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 11:52:18 -0800 (PST) From: Message-Id: <200112121952.fBCJqIg61805@freefall.freebsd.org> To: tkato@prontomail.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32744: Update port: graphics/netpbm to 9.22 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: graphics/netpbm to 9.22 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 11:51:55 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 11:59:55 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6800D37B5AF; Wed, 12 Dec 2001 11:59:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJu9L62390; Wed, 12 Dec 2001 11:56:09 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 11:56:09 -0800 (PST) From: Message-Id: <200112121956.fBCJu9L62390@freefall.freebsd.org> To: stijn@win.tue.nl, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32742: [MAINTAINER UPDATE]: emulators/xmess Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE]: emulators/xmess State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 11:55:57 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32742 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 12: 0: 0 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1430637B632; Wed, 12 Dec 2001 11:59:38 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCJoee61394; Wed, 12 Dec 2001 11:50:40 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 11:50:40 -0800 (PST) From: Message-Id: <200112121950.fBCJoee61394@freefall.freebsd.org> To: edwin@mavetju.org, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32748: [maintainer update] sysutils/pkg_tree update to 1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [maintainer update] sysutils/pkg_tree update to 1.1 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 11:50:19 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32748 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 12: 9:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6678437B503; Wed, 12 Dec 2001 12:09:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCK4QA63811; Wed, 12 Dec 2001 12:04:26 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 12:04:26 -0800 (PST) From: Message-Id: <200112122004.fBCK4QA63811@freefall.freebsd.org> To: muir@idiom.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32738: p5-Net-Netmask is out of date Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: p5-Net-Netmask is out of date State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 12:03:22 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32738 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 12:19:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EC9837B416; Wed, 12 Dec 2001 12:19:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCKBfb68238; Wed, 12 Dec 2001 12:11:41 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 12:11:41 -0800 (PST) From: Message-Id: <200112122011.fBCKBfb68238@freefall.freebsd.org> To: thierry@thomas.as, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32516: Update www/horde-devel, mail/turba and mail/imp-devel to RC3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update www/horde-devel, mail/turba and mail/imp-devel to RC3 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 12:11:34 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32516 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 12:19:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AADD37B419; Wed, 12 Dec 2001 12:19:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCKGW369000; Wed, 12 Dec 2001 12:16:32 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 12:16:32 -0800 (PST) From: Message-Id: <200112122016.fBCKGW369000@freefall.freebsd.org> To: thierry@thomas.as, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32711: Maintainer update: make libmcal OK for kronolith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Maintainer update: make libmcal OK for kronolith State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 12:16:21 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32711 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 12:40:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 524C037B417 for ; Wed, 12 Dec 2001 12:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCKe1U72027; Wed, 12 Dec 2001 12:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E484C37B405 for ; Wed, 12 Dec 2001 12:33:41 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCKXfZ71195; Wed, 12 Dec 2001 12:33:41 -0800 (PST) (envelope-from nobody) Message-Id: <200112122033.fBCKXfZ71195@freefall.freebsd.org> Date: Wed, 12 Dec 2001 12:33:41 -0800 (PST) From: Miguel Mendez To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32762: Update for archivers/xpk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32762 >Category: ports >Synopsis: Update for archivers/xpk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 12:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Miguel Mendez >Release: FreeBSD 4.4-STABLE >Organization: n/a >Environment: FreeBSD swordfish.energyhq.org 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Dec 5 18:08:19 CET 2001 root@swordfish.energyhq.org:/usr/obj/usr/src/sys/SWORDFISH i386 >Description: The hostname for my box has changed to energyhq.homeip.net (it was www.energyhq.org), so one of the sites is unreacheable now. Also when I created the package I copy and pasted from another port and forgot to edit the maintainer properly. >How-To-Repeat: n/a >Fix: begin 644 xpk-patch.diff M9&EF9B`M2`R,#`Q M"BTC(%=H;VTZ("`@("`@("`@("`@("`@("!-:6=U96P@365N9&5Z(#QF;'EN M;D!E;F5R9WEH<2YO'!K+FYE=R]P:V"!P;W)T(&]F('1H92!!;6EG82!84$L@;&EB2X*(`H@ M5&AE(%A02R!S>7-T96T@8V]N2`H M;&EB>'!K;6%S=&5R+G-O*2!A;F0@'!K+PH@"B`M($UI9W5E;"!-96YD M97H*+69L>6YN0&5N97)G>6AQ+F]R9PHK9FQY;FY`96YERelease-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 12:49:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6695C37B41C; Wed, 12 Dec 2001 12:49:35 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCKi4872662; Wed, 12 Dec 2001 12:44:04 -0800 (PST) (envelope-from petef) Date: Wed, 12 Dec 2001 12:44:04 -0800 (PST) From: Message-Id: <200112122044.fBCKi4872662@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, ache@FreeBSD.org Subject: Re: ports/32762: Update for archivers/xpk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update for archivers/xpk Responsible-Changed-From-To: freebsd-ports->ache Responsible-Changed-By: petef Responsible-Changed-When: Wed Dec 12 12:43:56 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32762 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 12:50:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D2C2737B41B for ; Wed, 12 Dec 2001 12:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCKo0Q73410; Wed, 12 Dec 2001 12:50:00 -0800 (PST) (envelope-from gnats) Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 7D90337B417 for ; Wed, 12 Dec 2001 12:46:46 -0800 (PST) Received: (from marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) id fBCKl1R51481; Wed, 12 Dec 2001 15:47:01 -0500 (EST) (envelope-from marcus) Message-Id: <200112122047.fBCKl1R51481@shumai.marcuscom.com> Date: Wed, 12 Dec 2001 15:47:01 -0500 (EST) From: Joe Marcus Clarke Reply-To: Joe Marcus Clarke To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32763: New port: net/p5-SNMP-MIB-Compiler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32763 >Category: ports >Synopsis: New port: net/p5-SNMP-MIB-Compiler >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 12:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Joe Marcus Clarke >Release: FreeBSD 4.4-STABLE i386 >Organization: MarcusCom, Inc. >Environment: System: FreeBSD shumai.marcuscom.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 8 02:01:11 EST 2001 marcus@shumai.marcuscom.com:/usr/obj/usr/src/sys/SHUMAI i386 >Description: This is a port of a Perl MIB compiler. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-SNMP-MIB-Compiler # p5-SNMP-MIB-Compiler/pkg-comment # p5-SNMP-MIB-Compiler/pkg-descr # p5-SNMP-MIB-Compiler/pkg-plist # p5-SNMP-MIB-Compiler/Makefile # p5-SNMP-MIB-Compiler/distinfo # echo c - p5-SNMP-MIB-Compiler mkdir -p p5-SNMP-MIB-Compiler > /dev/null 2>&1 echo x - p5-SNMP-MIB-Compiler/pkg-comment sed 's/^X//' >p5-SNMP-MIB-Compiler/pkg-comment << 'END-of-p5-SNMP-MIB-Compiler/pkg-comment' XA Perl MIB compiler supporting both SMIv1 and SMIv2 END-of-p5-SNMP-MIB-Compiler/pkg-comment echo x - p5-SNMP-MIB-Compiler/pkg-descr sed 's/^X//' >p5-SNMP-MIB-Compiler/pkg-descr << 'END-of-p5-SNMP-MIB-Compiler/pkg-descr' XSNMP::MIB::Compiler is a MIB compiler that fully supports Xboth SMI(v1) and SMIv2. This module can be use to compile XMIBs (recursively or not) or load already compiled MIBs for Xlater use. X XMore information about this module is included in this package. END-of-p5-SNMP-MIB-Compiler/pkg-descr echo x - p5-SNMP-MIB-Compiler/pkg-plist sed 's/^X//' >p5-SNMP-MIB-Compiler/pkg-plist << 'END-of-p5-SNMP-MIB-Compiler/pkg-plist' Xbin/mibbrowser Xbin/mibcompiler Xlib/perl5/site_perl/%%PERL_VER%%/SNMP/MIB/Compiler.pm Xlib/perl5/site_perl/%%PERL_VER%%/Bundle/SNMP/MIB/Compiler.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/SNMP/MIB/Compiler/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/SNMP/MIB/Compiler X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/SNMP/MIB X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/SNMP X@dirrm lib/perl5/site_perl/%%PERL_VER%%/SNMP/MIB X@dirrm lib/perl5/site_perl/%%PERL_VER%%/SNMP X@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bundle/SNMP/MIB X@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bundle/SNMP X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bundle 2>/dev/null || true END-of-p5-SNMP-MIB-Compiler/pkg-plist echo x - p5-SNMP-MIB-Compiler/Makefile sed 's/^X//' >p5-SNMP-MIB-Compiler/Makefile << 'END-of-p5-SNMP-MIB-Compiler/Makefile' X# New ports collection makefile for: p5-SNMP-MIB-Compiler X# Date created: December 12, 2001 X# Whom: Joe Clarke END-of-p5-SNMP-MIB-Compiler/Makefile echo x - p5-SNMP-MIB-Compiler/distinfo sed 's/^X//' >p5-SNMP-MIB-Compiler/distinfo << 'END-of-p5-SNMP-MIB-Compiler/distinfo' XMD5 (SNMP-MIB-Compiler-0.06.tar.gz) = 1bc0a54ac5e5e4210503cdc4ee48c9c1 END-of-p5-SNMP-MIB-Compiler/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 13: 1:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 138B237B421 for ; Wed, 12 Dec 2001 13:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCL06s74473; Wed, 12 Dec 2001 13:00:06 -0800 (PST) (envelope-from gnats) Date: Wed, 12 Dec 2001 13:00:06 -0800 (PST) Message-Id: <200112122100.fBCL06s74473@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Dave Glowacki Subject: Re: ports/32223: Port databases/mysql-jdbc-mm is quite outdated Reply-To: Dave Glowacki Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32223; it has been noted by GNATS. From: Dave Glowacki To: freebsd-gnats-submit@FreeBSD.ORG, java@FreeBSD.ORG Cc: Subject: Re: ports/32223: Port databases/mysql-jdbc-mm is quite outdated Date: Wed, 12 Dec 2001 14:55:07 -0600 Here is the latest version of the mysql-jdbc-mm port. It builds everything from source, but is currently marked BROKEN because two essential .jar files included in the distribution are corrupted, so the port cannot build. I'm hoping that the next version of the distribution file will contain usable .jar files. In order to build the port, a user would need to download jdbc2_0-stdext.jar from http://java.sun.com/products/jdbc/download.html under the JDBC 2.0 Optional Package section, and jta-spec1_0_1.jar from http://java.sun.com/products/jta/. The JTA jar file must be extracted from the downloaded zip file and renamed to jta-spec1_0_1.jar After both files have been downloaded, the Makefile needs to be edited to remove the BROKEN line. After this, the user should run 'make extract'. When that finishes, the two downloaded jar files should be copied to work/mm.mysql-2.0.8/lib. After this, the build will proceed as normal. diff -ru mysql-jdbc-mm.old/Makefile mysql-jdbc-mm/Makefile --- mysql-jdbc-mm.old/Makefile Fri Jun 1 06:49:08 2001 +++ mysql-jdbc-mm/Makefile Wed Dec 12 12:18:11 2001 @@ -5,29 +5,68 @@ # $FreeBSD: ports/databases/mysql-jdbc-mm/Makefile,v 1.7 2001/06/01 11:49:08 jeh Exp $ # +BROKEN= Distribution contains bad JAR files. + PORTNAME= mysql-jdbc-mm -PORTVERSION= 1.2c +PORTVERSION= 2.0.8 CATEGORIES= databases java -MASTER_SITES= http://mmmysql.sourceforge.net/dist/ -DISTNAME= mm.mysql.jdbc-${PORTVERSION} +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= mmmysql +DISTNAME= mm.mysql-${PORTVERSION} +EXTRACT_SUFX= -you-must-unjar-me.jar MAINTAINER= dglo@SSEC.WISC.EDU -BUILD_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk +BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk13 \ + ant:${PORTSDIR}/devel/jakarta-ant +RUN_DEPENDS= ${JAVA_HOME}/bin/java:${PORTSDIR}/java/jdk13 + +JAVA_HOME?= ${PREFIX}/jdk1.3.1 + +EXTRACT_CMD= ${JAVA_HOME}/bin/jar +EXTRACT_BEFORE_ARGS= -xf -ALL_TARGET= jar +post-patch: + @(cd ${WRKSRC}; ${MV} build.xml build.xml.patched; \ + ${SED} -e "s;%%WRKSRC%%;${WRKSRC};g" -e "s;%%PREFIX%%;${PREFIX};g" \ + < build.xml.patched > build.xml) + @(cd ${WRKSRC}; ${MV} j1c j1c.patched; \ + ${SED} "s;%%PREFIX%%;${PREFIX};g" < j1c.patched > j1c; \ + ${CHMOD} 555 j1c) + +do-build: + @(cd ${WRKSRC}; ${SETENV} JAVA_HOME=${JAVA_HOME} ant clean dist) +.if !defined(NOPORTDOCS) + @(cd ${WRKSRC}; ${MKDIR} doc; \ + ${JAVA_HOME}/bin/javadoc -d doc -package \ + -classpath ${WRKSRC}:${WRKSRC}/lib/jdbc2_0-stdext.jar:${WRKSRC}/lib/jta-spec1_0_1.jar:${CLASSPATH} \ + org.gjt.mm.mysql org.gjt.mm.mysql.jdbc2) +.endif do-install: @${MKDIR} ${PREFIX}/share/java/classes - @${INSTALL_DATA} ${WRKSRC}/mysql_comp.jar ${LOCALBASE}/share/java/classes - -post-install: + @${INSTALL_DATA} ${WRKSRC}/build/mm.mysql-${PORTVERSION}/mm.mysql-${PORTVERSION}-bin.jar \ + ${PREFIX}/share/java/classes/mm.mysql-${PORTVERSION}.jar + @${INSTALL_DATA} ${WRKSRC}/lib/jdbc2_0-stdext.jar \ + ${PREFIX}/share/java/classes/ + @${INSTALL_DATA} ${WRKSRC}/lib/jta-spec1_0_1.jar \ + ${PREFIX}/share/java/classes/ .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/mysql-jdbc @(cd ${WRKSRC}/doc && ${TAR} -c -f - .) \ | (cd ${PREFIX}/share/doc/mysql-jdbc && ${TAR} --unlink -x -f -) +.endif + +post-install: + @${ECHO} share/java/classes/mm.mysql-${PORTVERSION}.jar >> ${TMPPLIST} + @${ECHO} share/java/classes/jdbc2_0-stdext.jar >> ${TMPPLIST} + @${ECHO} share/java/classes/jta-spec1_0_1.jar >> ${TMPPLIST} +.if !defined(NOPORTDOCS) @(cd ${PREFIX} \ && find share/doc/mysql-jdbc -type f -print >> ${TMPPLIST}) + @${ECHO} "@dirrm share/doc/mysql-jdbc" >> ${TMPPLIST} .endif + @${ECHO} "@unexec ${RMDIR} %D/share/java/classes 2>/dev/null || true" >> ${TMPPLIST} + @${ECHO} "@unexec ${RMDIR} %D/share/java 2>/dev/null || true" >> ${TMPPLIST} .include diff -ru mysql-jdbc-mm.old/distinfo mysql-jdbc-mm/distinfo --- mysql-jdbc-mm.old/distinfo Sat Apr 29 20:09:57 2000 +++ mysql-jdbc-mm/distinfo Fri Nov 30 11:19:55 2001 @@ -1 +1 @@ -MD5 (mm.mysql.jdbc-1.2c.tar.gz) = b04aa7f3048c2ebb169ee88ce19a6a4c +MD5 (mm.mysql-2.0.8-you-must-unjar-me.jar) = b496f9ad5be7afb21d3f05902b2805a0 diff -ru mysql-jdbc-mm.old/files/patch-Makefile mysql-jdbc-mm/files/patch-Makefile --- mysql-jdbc-mm.old/files/patch-Makefile Fri Jun 1 06:49:08 2001 +++ mysql-jdbc-mm/files/patch-Makefile Wed Dec 12 12:39:45 2001 @@ -1,21 +0,0 @@ ---- Makefile.orig Sun May 27 12:10:22 2001 -+++ Makefile Sun May 27 12:16:18 2001 -@@ -3,14 +3,16 @@ - # $Id: Makefile,v 1.2 1998/08/25 04:02:25 mmatthew Exp $ - # - --JAVAC = /usr/local/jdk118/bin/javac -+JAVA_HOME = /usr/local/jdk1.1.8 -+JAVAC = JAVA_HOME=$(JAVA_HOME) CLASSPATH= $(JAVA_HOME)/bin/javac -+JAR = JAVA_HOME=$(JAVA_HOME) CLASSPATH= $(JAVA_HOME)/bin/jar - JAVAC_FLAGS =-O -g - - all: - $(JAVAC) $(JAVAC_FLAGS) org/gjt/mm/mysql/*.java - - jar: all -- jar -cv0f mysql_uncomp.jar org/gjt/mm/mysql/*.class; jar -cvf mysql_comp.jar org/gjt/mm/mysql/*.class -+ $(JAR) -cv0f mysql_uncomp.jar org/gjt/mm/mysql/*.class; $(JAR) -cvf mysql_comp.jar org/gjt/mm/mysql/*.class - - clean: - rm -f org/gjt/mm/mysql/*.class org/gjt/mm/mysql/*~ diff -ru mysql-jdbc-mm.old/files/patch-build.xml mysql-jdbc-mm/files/patch-build.xml --- mysql-jdbc-mm.old/files/patch-build.xml Wed Dec 12 12:39:28 2001 +++ mysql-jdbc-mm/files/patch-build.xml Fri Nov 30 14:29:35 2001 @@ -0,0 +1,21 @@ +--- build.xml.orig Fri Nov 30 11:00:04 2001 ++++ build.xml Fri Nov 30 11:03:37 2001 +@@ -1,7 +1,7 @@ + + +- +- ++ ++ + + + +@@ -51,7 +51,7 @@ + + + +- ++ + + + diff -ru mysql-jdbc-mm.old/files/patch-j1c mysql-jdbc-mm/files/patch-j1c --- mysql-jdbc-mm.old/files/patch-j1c Wed Dec 12 12:39:28 2001 +++ mysql-jdbc-mm/files/patch-j1c Thu Nov 29 18:00:12 2001 @@ -0,0 +1,10 @@ +--- j1c.orig Thu Nov 29 16:26:08 2001 ++++ j1c Thu Nov 29 16:26:36 2001 +@@ -0,0 +1,7 @@ ++#!/bin/sh ++ ++JAVAC_1=%%PREFIX%%/jdk1.1.8/bin/javac ++ ++unset JAVA_HOME LD_LIBRARY_PATH LD_PRELOAD CLASSPATH ++ ++exec "$JAVAC_1" "$@" diff -ru mysql-jdbc-mm.old/pkg-plist mysql-jdbc-mm/pkg-plist --- mysql-jdbc-mm.old/pkg-plist Sat Jan 29 16:23:06 2000 +++ mysql-jdbc-mm/pkg-plist Thu Nov 29 18:00:12 2001 @@ -1 +1 @@ -share/java/classes/mysql_comp.jar + To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 13:46:17 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.expertech.net (mail.expertech.net [209.226.18.44]) by hub.freebsd.org (Postfix) with SMTP id 55E0437B405 for ; Wed, 12 Dec 2001 13:46:11 -0800 (PST) Received: FROM 210.56.18.202 BY mail.expertech.net ; Wed Dec 12 13:18:53 2001 -0500 To: From: mycellantennas@yahoo.com Subject: Eliminate Cell Phone Static 8525 Date: Wed, 12 Dec 2001 14:22:08 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal Reply-To: mycellantennas@yahoo.com Message-Id: <20011212214611.55E0437B405@hub.freebsd.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Increase your cell phone reception for just $7.99! No More Dropped Cell Phone Calls! Amazing Discounts! Purchase 1 Amazing Antennas - $7.99 Purchase 2 Amazing Antennas - $9.99 Purchase 3 Amazing Antennas - $14.99 > We'll increase your cell phone reception dramatically!! Enhance your cell phone, pager, or two way radio's signal for better reception in large buildings, tunnels, elevators, and many other places where the signal may get weak causing static, missed calls, dropped calls, etc. This easy-to-install internal antenna is like adding 4 feet worth of antenna to your phone! This signal booster will: * Reduce static * Provide clarity * Stabilize reception * Work on any phone * Works on any system!! Makes A Great Gift! Order Today! ************************************************** You received this email because you signed up at one of Vertical Mails websites or you signed up with a party that has contracted with Vertical Mail. To unsubscribe from the list, visit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 13:50:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D76E37B419 for ; Wed, 12 Dec 2001 13:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCLo2Q84478; Wed, 12 Dec 2001 13:50:02 -0800 (PST) (envelope-from gnats) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id 05D9437B416 for ; Wed, 12 Dec 2001 13:47:34 -0800 (PST) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.11.6/8.11.4) id fBCLjvY30761; Wed, 12 Dec 2001 22:45:57 +0100 (CET) (envelope-from stijn) Message-Id: <200112122145.fBCLjvY30761@pcwin002.win.tue.nl> Date: Wed, 12 Dec 2001 22:45:57 +0100 (CET) From: stijn@win.tue.nl Reply-To: stijn@win.tue.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32764: [UPDATE]: x11-wm/bbkeys Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32764 >Category: ports >Synopsis: [UPDATE]: x11-wm/bbkeys >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 13:50:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Stijn Hoop >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD 4.4-STABLE #0: Thu Nov 15 09:17:23 CET 2001 >Description: - Update bbkeys to 0.8.3 (closes PR ports/31509) - Takeover maintainership; current maintainer (patseal@hyperhost.net) is 'swamped', as mentioned in private email. >How-To-Repeat: N/A >Fix: diff -urN --exclude=CVS /usr/ports/x11-wm/bbkeys/Makefile bbkeys/Makefile --- /usr/ports/x11-wm/bbkeys/Makefile Tue Apr 3 10:14:32 2001 +++ bbkeys/Makefile Wed Dec 12 22:20:29 2001 @@ -6,24 +6,28 @@ # PORTNAME= bbkeys -PORTVERSION= 0.3.6 +PORTVERSION= 0.8.3 CATEGORIES= x11-wm MASTER_SITES= http://movingparts.thelinuxcommunity.org/bbkeys/ -MAINTAINER= patseal@hyperhost.net +MAINTAINER= stijn@win.tue.nl -RUN_DEPENDS= blackbox:${PORTSDIR}/x11-wm/blackbox +RUN_DEPENDS= bbconf:${PORTSDIR}/x11-wm/bbconf \ + blackbox:${PORTSDIR}/x11-wm/blackbox USE_X_PREFIX= yes GNU_CONFIGURE= yes USE_QT_VER= 2 -do-build: - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) - @(cd ${WRKSRC}/bbkeysconf-1.3; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) +MAN1= bbkeys.1 +MAN5= bbkeysrc.5 bbkeys.bb.5 -do-install: - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) - @(cd ${WRKSRC}/bbkeysconf-1.3 && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) +pre-patch: +.if !defined(NOPORTDOCS) + @${PERL} -pi -e 's@doc/bbkeys@share/doc/bbkeys@g' ${WRKSRC}/Makefile.in +.else + @${PERL} -ni -e '/^(docdir|doc_DATA)/ && next; print' \ + ${WRKSRC}/Makefile.in +.endif .include diff -urN --exclude=CVS /usr/ports/x11-wm/bbkeys/distinfo bbkeys/distinfo --- /usr/ports/x11-wm/bbkeys/distinfo Thu Mar 29 22:16:22 2001 +++ bbkeys/distinfo Wed Dec 12 20:34:15 2001 @@ -1 +1 @@ -MD5 (bbkeys-0.3.6.tar.gz) = a8d24c463ea8900c4f5e5fdbc4ee8f9f +MD5 (bbkeys-0.8.3.tar.gz) = f38ea900ad8c6a797833b4d380f737cd diff -urN --exclude=CVS /usr/ports/x11-wm/bbkeys/files/patch-aa bbkeys/files/patch-aa --- /usr/ports/x11-wm/bbkeys/files/patch-aa Thu Mar 29 22:16:27 2001 +++ bbkeys/files/patch-aa Thu Jan 1 01:00:00 1970 @@ -1,39 +0,0 @@ ---- bbkeysconf-1.3/Makefile.orig Thu Mar 15 01:16:54 2001 -+++ bbkeysconf-1.3/Makefile Sun Mar 25 19:10:37 2001 -@@ -1,11 +1,11 @@ --CXX= /usr/bin/g++ --QTDIR = /usr/lib/qt2 --MOC = /usr/bin/moc --LIBS = -L$(QTDIR)/lib -L/usr/X11R6/lib -L/usr/lib -lqt -lX11 --CXXFLAGS = -g -I/usr/include -I/usr/include/qt -I/usr/X11R6/include -+CXX ?= /usr/bin/g++ -+QTDIR = /usr/X11R6 -+MOC = /usr/X11R6/bin/moc2 -+LIBS = -L$(QTDIR)/lib -lqt2 -+CXXFLAGS += -I$(QTDIR)/include -I$(QTDIR)/include/qt2 - - TARGET = bbkeysconf --PREFIX = /usr/local/bin -+PREFIX ?= /usr/local - OBJECTS = gui.o main.o myapplication.o - SOURCES = gui.cc main.cc myapplication.cc - MOCSRC = gui.hh -@@ -37,13 +37,13 @@ - if ! test -x $(TARGET) ; then \ - exit; \ - fi; \ -- echo "Checking existance of $(PREFIX)...."; \ -+ echo "Checking existance of $(PREFIX)/bin...."; \ - if ! test -d $(PREFIX) ; then \ -- echo "Heyyyyy. $(PREFIX) doesn't exist. Creating it...."; \ -- /usr/bin/install -d $(PREFIX); \ -+ echo "Heyyyyy. $(PREFIX)/bin doesn't exist. Creating it...."; \ -+ /usr/bin/install -d $(PREFIX)/bin; \ - fi ; \ -- echo "Installing $(TARGET) in $(PREFIX)..."; \ -- /usr/bin/install -s $(TARGET) $(PREFIX)/$(TARGET) -+ echo "Installing $(TARGET) in $(PREFIX)/bin..."; \ -+ /usr/bin/install -s $(TARGET) $(PREFIX)/bin/$(TARGET) - - gui.o: gui.cc gui.moc - main.o: main.cc diff -urN --exclude=CVS /usr/ports/x11-wm/bbkeys/pkg-descr bbkeys/pkg-descr --- /usr/ports/x11-wm/bbkeys/pkg-descr Thu Nov 22 05:55:19 2001 +++ bbkeys/pkg-descr Wed Dec 12 20:39:18 2001 @@ -1,6 +1,3 @@ A keygrabber for the Blackbox window manager. -WWW: http://movingparts.windsofstorm.net/ - -- Patrick -patseal@hyperhost.net +WWW: http://movingparts.thelinuxcommunity.org/bbkeys.shtml diff -urN --exclude=CVS /usr/ports/x11-wm/bbkeys/pkg-plist bbkeys/pkg-plist --- /usr/ports/x11-wm/bbkeys/pkg-plist Wed Jul 19 15:18:16 2000 +++ bbkeys/pkg-plist Wed Dec 12 22:12:46 2001 @@ -1,7 +1,10 @@ bin/bbkeys bin/bbkeysConfigC -bin/bbkeysconf share/bbtools/bbkeys.bb share/bbtools/bbkeys.nobb share/bbtools/README.bbkeys +%%PORTDOCS%%share/doc/bbkeys/README +%%PORTDOCS%%share/doc/bbkeys/AUTHORS +%%PORTDOCS%%share/doc/bbkeys/ChangeLog +%%PORTDOCS%%@dirrm share/doc/bbkeys @dirrm share/bbtools >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 13:50:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36F8C37B416 for ; Wed, 12 Dec 2001 13:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCLo2E84469; Wed, 12 Dec 2001 13:50:02 -0800 (PST) (envelope-from gnats) Date: Wed, 12 Dec 2001 13:50:02 -0800 (PST) Message-Id: <200112122150.fBCLo2E84469@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Willem van Engen Subject: Re: ports/32751: Update port: misc/sword new version 1.5.2 Reply-To: Willem van Engen Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32751; it has been noted by GNATS. From: Willem van Engen To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/32751: Update port: misc/sword new version 1.5.2 Date: Wed, 12 Dec 2001 22:43:15 +0100 Sorry that I didn't send a diff right away, but here it is: diff -ruN /usr/ports/misc/sword/Makefile misc/sword/Makefile --- /usr/ports/misc/sword/Makefile Tue Dec 11 10:36:32 2001 +++ misc/sword/Makefile Wed Dec 12 22:19:44 2001 @@ -2,11 +2,11 @@ # Date created: 22 may 2001 # Whom: Willem van Engen # -# $FreeBSD: ports/misc/sword/Makefile,v 1.1 2001/12/11 09:36:32 ijliao Exp $ +# $FreeBSD$ # PORTNAME= sword -PORTVERSION= 1.5.1a +PORTVERSION= 1.5.2 CATEGORIES= misc MASTER_SITES= ftp://ftp.crosswire.org/pub/sword/source/v1.5/ \ http://www.crosswire.org/sword/download/ftpmirror/pub/sword/source/v1.5/ \ @@ -19,27 +19,32 @@ INSTALLS_SHLIB= yes INCLUDES= Greek2Greek.h GreekChars.h canon.h cipherfil.h defs.h \ - echomod.h femain.h filemgr.h gbffootnotes.h gbfhtml.h \ - gbfplain.h gbfrtf.h gbfstrongs.h gbfthml.h hrefcom.h \ - listkey.h localemgr.h lzsscomprs.h plainfootnotes.h \ - plainhtml.h rawcom.h rawfiles.h rawgbf.h rawld.h rawstr.h \ - rawtext.h rawverse.h regex.h rtfhtml.h rwphtml.h rwprtf.h \ - sapphire.h strkey.h swcipher.h swcom.h swcomprs.h \ - swconfig.h swdisp.h swdisprtf.h swdisprtfchap.h swfilter.h \ - swkey.h swld.h swlocale.h swlog.h swmacs.h swmgr.h \ - swmodule.h swtext.h swwinlog.h tbdisp.h thmlgbf.h \ - thmlhtml.h thmlplain.h thmlrtf.h unixstr.h utilconf.h \ - utilfuns.h utilstr.h versekey.h zcom.h zipcomprs.h ztext.h \ - zverse.h + echomod.h entriesblk.h femain.h filemgr.h gbffootnotes.h \ + gbfheadings.h gbfhtml.h gbfmorph.h gbfplain.h gbfrtf.h \ + gbfstrongs.h gbfthml.h hrefcom.h listkey.h localemgr.h \ + lzsscomprs.h plainfootnotes.h plainhtml.h rawcom.h rawfiles.h \ + rawgbf.h rawld.h rawld4.h rawstr.h rawstr4.h rawtext.h \ + rawverse.h regex.h roman.h rtfhtml.h rwphtml.h rwprtf.h \ + sapphire.h strkey.h swcipher.h swcom.h swcomprs.h swconfig.h \ + swdisp.h swdisprtf.h swdisprtfchap.h swfilter.h swkey.h swld.h \ + swlocale.h swlog.h swmacs.h swmgr.h swmodule.h swobject.h \ + swtext.h swunicod.h swwinlog.h tbdisp.h thmlgbf.h thmlhtml.h \ + thmlolb.h thmlplain.h thmlrtf.h unicodertf.h unixstr.h untgz.h \ + utilconf.h utilfuns.h utilstr.h versekey.h zcom.h zconf.h \ + zipcomprs.h zlib.h ztext.h zverse.h pre-build: @${ECHO} "instdir:= ${PREFIX}" >${WRKSRC}/localport.cfg do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/lib/libsword.a ${PREFIX}/lib + ${INSTALL_PROGRAM} ${WRKSRC}/lib/libsword.a ${PREFIX}/lib/libsword.a.1 + ${RM} -f ${PREFIX}/lib/libsword.a + ${LN} -s ${PREFIX}/lib/libsword.a.1 ${PREFIX}/lib/libsword.a ${INSTALL_PROGRAM} ${WRKSRC}/lib/libsword.so ${PREFIX}/lib/libsword.so.1 + ${RM} -f ${PREFIX}/lib/libsword.so ${LN} -s ${PREFIX}/lib/libsword.so.1 ${PREFIX}/lib/libsword.so - ${INSTALL_DATA} ${FILESDIR}/sword.conf ${PREFIX}/etc + @${ECHO} "[Install]" >${PREFIX}/etc/sword.conf + @${ECHO} "DataPath=${DATADIR}" >>${PREFIX}/etc/sword.conf ${MKDIR} ${DATADIR} ${MKDIR} ${PREFIX}/include/sword .for file in ${INCLUDES} diff -ruN /usr/ports/misc/sword/distinfo misc/sword/distinfo --- /usr/ports/misc/sword/distinfo Tue Dec 11 10:36:32 2001 +++ misc/sword/distinfo Wed Dec 12 01:36:46 2001 @@ -1 +1 @@ -MD5 (sword-1.5.1a.tar.gz) = c46dc38018183600a472620fd97c9287 +MD5 (sword-1.5.2.tar.gz) = 6be465212e300672b5ab6502caf39baa diff -ruN /usr/ports/misc/sword/files/patch-Makefile.cfg misc/sword/files/patch-Makefile.cfg --- /usr/ports/misc/sword/files/patch-Makefile.cfg Tue Dec 11 10:36:33 2001 +++ misc/sword/files/patch-Makefile.cfg Wed Dec 12 02:00:36 2001 @@ -1,12 +1,21 @@ ---- Makefile.cfg.orig Mon Nov 6 14:17:22 2000 -+++ Makefile.cfg Wed Jun 27 14:46:28 2001 +--- Makefile.cfg.orig Wed Dec 12 00:56:50 2001 ++++ Makefile.cfg Wed Dec 12 00:57:18 2001 @@ -1,4 +1,5 @@ # General defines +include ${root}/localport.cfg - version := 1.5.1a + version := 1.5.2 + +@@ -6,7 +7,7 @@ + # ownership (used by 'make install') + + user := root +-group := root ++group := wheel -@@ -19,18 +20,18 @@ + + # this WILL NOT WORK for you. only inhouse patched version of +@@ -27,7 +28,7 @@ # shared library- set to yes if you would like to build @@ -15,39 +24,19 @@ # VCL library- set to yes if you would like to build - --buildvcl := yes -+buildvcl := no - - - # Debugging options etc... - --debug := yes --profile := yes -+debug := no -+profile := no - - - # endian, etc. support for other hardware -@@ -50,13 +51,12 @@ - - # ownership (used by 'make install') - --user := root -+user := sword - group := sword - +@@ -60,8 +61,6 @@ # paths --instdir := /usr/local/sword/ - +-instdir := /usr +- bindir := ${instdir}/bin libdir := ${instdir}/lib -@@ -74,9 +74,9 @@ - - WARNINGS = -Wall -Wno-format + hdir := ${instdir}/include/sword +@@ -80,16 +79,16 @@ + WARNINGS = -Wall -Wno-format -pedantic #WARNINGS += -Werror + WARNINGS += -pedantic -CFLAGS = -pipe $(WARNINGS) $(DEBUG) +CFLAGS += -pipe $(WARNINGS) $(DEBUG) @@ -56,25 +45,36 @@ ifeq ($(system),macosx) CPPFLAGS += -I/System/Library/Frameworks/System.framework/Headers/ endif -@@ -89,7 +89,7 @@ + CPPFLAGS += $(DEFINES) + + LFLAGS = $(OPTIMIZE) $(DEBUG) -L${root}/lib/ +-LIBS = -lsword -lstdc++ ++LIBS += -lsword -lstdc++ + + ifeq ($(zlib),no) + CFLAGS += -DEXCLUDEZLIB +@@ -97,9 +96,9 @@ LIBS += -lz endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 14:50:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9659F37B417 for ; Wed, 12 Dec 2001 14:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCMo0j95991; Wed, 12 Dec 2001 14:50:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F047637B405 for ; Wed, 12 Dec 2001 14:46:11 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCMkBt95467; Wed, 12 Dec 2001 14:46:11 -0800 (PST) (envelope-from nobody) Message-Id: <200112122246.fBCMkBt95467@freefall.freebsd.org> Date: Wed, 12 Dec 2001 14:46:11 -0800 (PST) From: Willem van Engen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32766: Port update: misc/cheatah: strip binary after install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32766 >Category: ports >Synopsis: Port update: misc/cheatah: strip binary after install >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 14:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Willem van Engen >Release: 4.4-STABLE i386 >Organization: >Environment: >Description: The cheatah binary is unstripped by default. This patch strips the binary after installation. And now using PREFIX instead of LOCALBASE when checking for sword lib depend, I think that's slightly better. >How-To-Repeat: >Fix: diff -ruN /usr/ports/misc/cheatah/Makefile misc/cheatah/Makefile --- /usr/ports/misc/cheatah/Makefile Tue Dec 11 10:38:39 2001 misc/cheatah/Makefile Wed Dec 12 11:49:15 2001 @@ -2,7 2,7 @@ # Date created: 11 June 2001 # Whom: Willem van Engen # -# $FreeBSD: ports/misc/cheatah/Makefile,v 1.1 2001/12/11 09:38:39 ijliao Exp $ # $FreeBSD$ # PORTNAME= cheatah @@ -16,7 16,7 @@ BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/misc/sword:extract LIB_DEPENDS= sword.1:${PORTSDIR}/misc/sword -RUN_DEPENDS= ${LOCALBASE}/share/sword/mods.d:${PORTSDIR}/misc/sword-modules RUN_DEPENDS= ${PREFIX}/share/sword/mods.d:${PORTSDIR}/misc/sword-modules GNU_CONFIGURE= yes USE_GMAKE= yes @@ -27,5 27,8 @@ PORTREVISION!= ${PORTREVISION} PORTEPOCH!= ${PORTEPOCH} WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/sword-${PORTVERSION}/apps/X11/cheatah post-install: strip ${PREFIX}/bin/cheatah .include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 15: 0:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D3D5137B416 for ; Wed, 12 Dec 2001 15:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCN01q96918; Wed, 12 Dec 2001 15:00:01 -0800 (PST) (envelope-from gnats) Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 9BDA337B419 for ; Wed, 12 Dec 2001 14:52:15 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 889402B78C for ; Wed, 12 Dec 2001 23:52:13 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 0E3F461; Thu, 13 Dec 2001 09:52:09 +1100 (EST) Message-Id: <20011212225209.0E3F461@k7.mavetju.org> Date: Thu, 13 Dec 2001 09:52:09 +1100 (EST) From: Edwin Groothuis Reply-To: Edwin Groothuis To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32767: [patch] distfile checksum missing for net/mtr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32767 >Category: ports >Synopsis: [patch] distfile checksum missing for net/mtr >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 15:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 4.4-RELEASE i386 >Organization: - >Environment: System: FreeBSD k7.mavetju.org 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Sat Nov 10 21:31:47 EST 2001 edwin@k7.mavetju.org:/usr/src/sys/compile/k7 i386 # $FreeBSD: ports/net/mtr/Makefile,v 1.30 2001/12/12 06:33:58 sumikawa Exp $ >Description: port refuses to build because there is no checksum available for the patch-file. >How-To-Repeat: cd /usr/ports/net/mtr make >Fix: --- distinfo.info Thu Dec 13 09:49:32 2001 +++ distinfo Thu Dec 13 09:49:35 2001 @@ -1 +1,2 @@ MD5 (mtr-0.44.tar.gz) = b3cd8ec10e5733969cdbb6dcdef5b0f5 +MD5 (mtr-044-v6-20011212.diff.gz) = 8af8cc9f3758fcf8fe949360d679270b >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 15:10: 8 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7164C37B417 for ; Wed, 12 Dec 2001 15:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCNA0o01329; Wed, 12 Dec 2001 15:10:00 -0800 (PST) (envelope-from gnats) Received: from smarthost-2.mail.telinco.net (smarthost-2.mail.telinco.net [212.1.128.91]) by hub.freebsd.org (Postfix) with ESMTP id BE62237B419 for ; Wed, 12 Dec 2001 15:08:04 -0800 (PST) Received: from ppp-2-101.cvx1.telinco.net ([212.1.137.101] helo=basilisk.locus) by smarthost-2.mail.telinco.net with esmtp (Exim 3.22 #1) id 16EITq-000EeY-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 12 Dec 2001 23:08:03 +0000 Received: (from harry@localhost) by basilisk.locus (8.11.6/8.11.6) id fBCN6de53443; Wed, 12 Dec 2001 23:06:39 GMT (envelope-from harry) Message-Id: <200112122306.fBCN6de53443@basilisk.locus> Date: Wed, 12 Dec 2001 23:06:39 GMT From: Harry Newton Reply-To: harry_newton@telinco.co.uk To: FreeBSD-gnats-submit@freebsd.org Cc: harry@basilisk.locus X-Send-Pr-Version: 3.113 Subject: ports/32768: update of port: mail/xmailwatcher Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32768 >Category: ports >Synopsis: update of port: mail/xmailwatcher >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 15:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Harry Newton >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD basilisk.locus 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Nov 28 22:53:03 GMT 2001 root@basilisk.locus:/usr/obj/usr/src/sys/BASILISK i386 >Description: unfetchable distfile: mail/xmailwatcher >How-To-Repeat: cd /usr/ports/mail/xmailwatcher && make >Fix: (16)# diff -u Makefile.old Makefile --- Makefile.old Wed Dec 12 23:03:44 2001 +++ Makefile Wed Dec 12 22:56:44 2001 @@ -8,7 +8,7 @@ PORTNAME= xmailwatcher PORTVERSION= 1.6 CATEGORIES= mail -MASTER_SITES= ftp://ftp.dcs.ed.ac.uk/pub/X11/ +MASTER_SITES= http://www.dcs.ed.ac.uk/home/gdmr/X11/ DISTNAME= xmailwatcher MAINTAINER= harry_newton@telinco.co.uk (17)# >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 15:30:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3AF5037B41B for ; Wed, 12 Dec 2001 15:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCNU1803131; Wed, 12 Dec 2001 15:30:01 -0800 (PST) (envelope-from gnats) Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 4E7C337B405 for ; Wed, 12 Dec 2001 15:23:40 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBCNMV105426; Wed, 12 Dec 2001 18:22:31 -0500 (EST) (envelope-from alane) Message-Id: <200112122322.fBCNMV105426@wwweasel.geeksrus.net> Date: Wed, 12 Dec 2001 18:22:31 -0500 (EST) From: Alan E Reply-To: Alan E To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32769: kdebase2 w/o motif still puts nsplugin in its configuration Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32769 >Category: ports >Synopsis: kdebase2 w/o motif still puts nsplugin in its configuration >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 15:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alan E >Release: FreeBSD 4.4-STABLE i386 >Organization: Geeksrus.NET >Environment: System: FreeBSD wwweasel.geeksrus.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:14:12 EST 2001 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 >Description: If kdebase is built w/o motif, it still puts nsplugin in the list of things to load in /usr/local/share/services/konqueror_config.desktop:Exec=kcmshell kcmkonq filetypes konqhtml ebrowsing cookies proxy kcmcss crypto useragent nsplugin >How-To-Repeat: Build kdebase2 w/o motif installed. Do (S)ettings/(C)onfigure Konqueror. You'll get an error box about not being able to load nsplugin. >Fix: Soon. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16: 0:48 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE35337B428 for ; Wed, 12 Dec 2001 16:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD002m05905; Wed, 12 Dec 2001 16:00:02 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 9301C37B419 for ; Wed, 12 Dec 2001 15:58:24 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIuds352835 for ; Tue, 11 Dec 2001 21:56:39 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16Ds17-0000OD-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:52:37 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:52:37 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32770: New port: p5-Filter-CBC-0.07 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32770 >Category: ports >Synopsis: New port: p5-Filter-CBC-0.07 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-Filter-CBC-0.07 Source filter for Cipher Block Chaining >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Filter-CBC # p5-Filter-CBC/distinfo # p5-Filter-CBC/Makefile # p5-Filter-CBC/pkg-comment # p5-Filter-CBC/pkg-descr # p5-Filter-CBC/pkg-plist # echo c - p5-Filter-CBC mkdir -p p5-Filter-CBC > /dev/null 2>&1 echo x - p5-Filter-CBC/distinfo sed 's/^X//' >p5-Filter-CBC/distinfo << 'END-of-p5-Filter-CBC/distinfo' XMD5 (Filter-CBC-0.07.tar.gz) = 04a1ed91b967bff89d96580473eddcec END-of-p5-Filter-CBC/distinfo echo x - p5-Filter-CBC/Makefile sed 's/^X//' >p5-Filter-CBC/Makefile << 'END-of-p5-Filter-CBC/Makefile' X# New ports collection makefile for: Filter-CBC X# Date created: 11 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= Filter-CBC XPORTVERSION= 0.07 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Filter XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Filter/Util/Call.pm:${PORTSDIR}/devel/p5-Filter \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Crypt/Rijndael.pm:${PORTSDIR}/security/p5-Crypt-Rijndael \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Crypt/CBC.pm:${PORTSDIR}/security/p5-Crypt-CBC XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= Filter::CBC.3 X Xpost-install: X.ifndef(NOPORTDOCS) X @${MKDIR} ${EXAMPLESDIR} X ${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${EXAMPLESDIR} X.endif X X.include END-of-p5-Filter-CBC/Makefile echo x - p5-Filter-CBC/pkg-comment sed 's/^X//' >p5-Filter-CBC/pkg-comment << 'END-of-p5-Filter-CBC/pkg-comment' XSource filter for Cipher Block Chaining END-of-p5-Filter-CBC/pkg-comment echo x - p5-Filter-CBC/pkg-descr sed 's/^X//' >p5-Filter-CBC/pkg-descr << 'END-of-p5-Filter-CBC/pkg-descr' XFilter::CBC is a Source filter that uses Cipher Block Chaining (CBC) to Xencrypt your code. The tricky part is that most CBC Algorithms have binary Xoutput. The textmode bypasses this obstacle, by converting the data to less Xscary data. X XWWW: http://search.cpan.org/search?dist=Filter-CBC X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-Filter-CBC/pkg-descr echo x - p5-Filter-CBC/pkg-plist sed 's/^X//' >p5-Filter-CBC/pkg-plist << 'END-of-p5-Filter-CBC/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/CBC/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Filter/CBC.pm Xlib/perl5/site_perl/%%PERL_VER%%/Filter/cbc2code.pl X%%PORTDOCS%%share/examples/Filter-CBC/autofilter.pl X%%PORTDOCS%%share/examples/Filter-CBC/blowfish.pl X%%PORTDOCS%%share/examples/Filter-CBC/defaults.pl X%%PORTDOCS%%share/examples/Filter-CBC/des.pl X%%PORTDOCS%%share/examples/Filter-CBC/des_ede3.pl X%%PORTDOCS%%share/examples/Filter-CBC/gost.pl X%%PORTDOCS%%share/examples/Filter-CBC/idea.pl X%%PORTDOCS%%share/examples/Filter-CBC/null.pl X%%PORTDOCS%%share/examples/Filter-CBC/rc6.pl X%%PORTDOCS%%share/examples/Filter-CBC/rijndael.pl X%%PORTDOCS%%share/examples/Filter-CBC/tea.pl X%%PORTDOCS%%share/examples/Filter-CBC/twofish.pl X%%PORTDOCS%%@dirrm share/examples/Filter-CBC X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/CBC X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Filter 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter 2>/dev/null || true END-of-p5-Filter-CBC/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:10:31 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE23C37B422 for ; Wed, 12 Dec 2001 16:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A1K10279; Wed, 12 Dec 2001 16:10:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id EFBA737B417 for ; Wed, 12 Dec 2001 16:01:54 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIC1s360997 for ; Tue, 11 Dec 2001 21:12:01 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrJx-000Oal-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:08:01 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:08:01 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32774: Update port: p5-XML-SAX-Expat-0.30 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32774 >Category: ports >Synopsis: Update port: p5-XML-SAX-Expat-0.30 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: Update port: p5-XML-SAX-Expat-0.30 Simple API for XML >How-To-Repeat: >Fix: diff -ur p5-XML-SAX-Expat-0.05/Makefile p5-XML-SAX-Expat/Makefile --- p5-XML-SAX-Expat-0.05/Makefile Sat Dec 8 17:56:54 2001 +++ p5-XML-SAX-Expat/Makefile Sat Dec 8 18:46:37 2001 @@ -6,7 +6,7 @@ # PORTNAME= XML-SAX-Expat -PORTVERSION= 0.05 +PORTVERSION= 0.30 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= XML @@ -22,7 +22,9 @@ PERL_CONFIGURE= yes MAN3= XML::SAX::Expat.3 - MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +post-patch: + @${PERL} -pi -e "s/(?<=XML::SAX::Base => ')1\.00(?=')/0.25/;" ${WRKSRC}/Makefile.PL .include diff -ur p5-XML-SAX-Expat-0.05/distinfo p5-XML-SAX-Expat/distinfo --- p5-XML-SAX-Expat-0.05/distinfo Sat Dec 8 17:56:54 2001 +++ p5-XML-SAX-Expat/distinfo Sat Dec 8 18:01:08 2001 @@ -1 +1 @@ -MD5 (XML-SAX-Expat-0.05.tar.gz) = 5a9b3a0c381360e4b84151ad7137800d +MD5 (XML-SAX-Expat-0.30.tar.gz) = 0e8bdde0ac694c1f9ce3563fd6449ef5 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:10:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9058E37B417 for ; Wed, 12 Dec 2001 16:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A1g10244; Wed, 12 Dec 2001 16:10:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 792D637B419 for ; Wed, 12 Dec 2001 16:01:49 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIBus329837 for ; Tue, 11 Dec 2001 21:11:57 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrJk-000OZG-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:07:48 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:07:48 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32771: Update port: p5-XML-SAX-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32771 >Category: ports >Synopsis: Update port: p5-XML-SAX-0.03 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: Update port: p5-XML-SAX-0.03 Simple API for XML >How-To-Repeat: >Fix: diff -ur p5-XML-SAX-0.02/Makefile p5-XML-SAX/Makefile --- p5-XML-SAX-0.02/Makefile Sat Dec 8 18:01:37 2001 +++ p5-XML-SAX/Makefile Sat Dec 8 18:10:09 2001 @@ -6,7 +6,7 @@ # PORTNAME= XML-SAX -PORTVERSION= 0.02 +PORTVERSION= 0.03 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= XML @@ -19,8 +19,9 @@ PERL_CONFIGURE= yes -MAN3= XML::SAX.3 XML::SAX::Base.3 XML::SAX::ParserFactory.3 \ - XML::SAX::PurePerl.3 XML::SAX::PurePerl::Reader.3 +MAN3= XML::SAX.3 XML::SAX::Base.3 XML::SAX::Exception.3 \ + XML::SAX::ParserFactory.3 XML::SAX::PurePerl.3 \ + XML::SAX::PurePerl::Reader.3 MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} diff -ur p5-XML-SAX-0.02/distinfo p5-XML-SAX/distinfo --- p5-XML-SAX-0.02/distinfo Sat Dec 8 18:01:37 2001 +++ p5-XML-SAX/distinfo Sat Dec 8 18:04:13 2001 @@ -1 +1 @@ -MD5 (XML-SAX-0.02.tar.gz) = 153106a8014d45b91c72a59de196c0b3 +MD5 (XML-SAX-0.03.tar.gz) = f4da07ffcd323521407ef5e30620a5d7 diff -ur p5-XML-SAX-0.02/pkg-plist p5-XML-SAX/pkg-plist --- p5-XML-SAX-0.02/pkg-plist Sat Dec 8 18:01:37 2001 +++ p5-XML-SAX/pkg-plist Sat Dec 8 18:13:15 2001 @@ -16,6 +16,7 @@ lib/perl5/site_perl/%%PERL_VER%%/XML/SAX/PurePerl/Reader/String.pm lib/perl5/site_perl/%%PERL_VER%%/XML/SAX/PurePerl/Reader/URI.pm lib/perl5/site_perl/%%PERL_VER%%/XML/SAX/PurePerl/XMLDecl.pm +lib/perl5/site_perl/%%PERL_VER%%/XML/SAX/placeholder.pl @dirrm lib/perl5/site_perl/%%PERL_VER%%/XML/SAX/PurePerl/Reader @unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML/SAX/PurePerl 2>/dev/null || true @unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML/SAX 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:10:54 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4B7037B41E for ; Wed, 12 Dec 2001 16:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A1E10253; Wed, 12 Dec 2001 16:10:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 5240637B41D for ; Wed, 12 Dec 2001 16:01:51 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIFFs362667 for ; Tue, 11 Dec 2001 21:15:16 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrN6-000Osr-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:11:16 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:11:16 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32772: Update port: p5-libxml Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32772 >Category: ports >Synopsis: Update port: p5-libxml >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: Update port: p5-libxml this package does not require XML::DOM. >How-To-Repeat: >Fix: diff -ur p5-libxml-0.07/Makefile p5-libxml/Makefile --- p5-libxml-0.07/Makefile Fri Dec 7 17:51:55 2001 +++ p5-libxml/Makefile Fri Dec 7 17:52:03 2001 @@ -15,8 +15,7 @@ MAINTAINER= wjv@FreeBSD.org -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/XML/DOM.pm:${PORTSDIR}/textproc/p5-XML-DOM +BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= YES >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:11: 5 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0518637B425 for ; Wed, 12 Dec 2001 16:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A1G10288; Wed, 12 Dec 2001 16:10:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id DC69F37B41C for ; Wed, 12 Dec 2001 16:01:56 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIEcs361728 for ; Tue, 11 Dec 2001 21:14:41 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrMV-000Omz-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:10:39 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:10:39 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32775: New port: p5-Net-Pcap-0.04 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32775 >Category: ports >Synopsis: New port: p5-Net-Pcap-0.04 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-Net-Pcap-0.04 Interface to pcap(3) LBL packet capture library >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Net-Pcap # p5-Net-Pcap/Makefile # p5-Net-Pcap/pkg-comment # p5-Net-Pcap/pkg-descr # p5-Net-Pcap/pkg-plist # p5-Net-Pcap/distinfo # echo c - p5-Net-Pcap mkdir -p p5-Net-Pcap > /dev/null 2>&1 echo x - p5-Net-Pcap/Makefile sed 's/^X//' >p5-Net-Pcap/Makefile << 'END-of-p5-Net-Pcap/Makefile' X# New ports collection makefile for: Net-Pcap X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= Net-Pcap XPORTVERSION= 0.04 XCATEGORIES= net perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Net XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X X#libpcap is standard library X#LIB_DEPENDS= pcap:${NONEXISTENT} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= Net::Pcap.3 X X.include END-of-p5-Net-Pcap/Makefile echo x - p5-Net-Pcap/pkg-comment sed 's/^X//' >p5-Net-Pcap/pkg-comment << 'END-of-p5-Net-Pcap/pkg-comment' XInterface to pcap(3) LBL packet capture library END-of-p5-Net-Pcap/pkg-comment echo x - p5-Net-Pcap/pkg-descr sed 's/^X//' >p5-Net-Pcap/pkg-descr << 'END-of-p5-Net-Pcap/pkg-descr' XInterface to pcap(3) LBL packet capture library X XWWW: http://search.cpan.org/search?dist=Net-Pcap X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-Net-Pcap/pkg-descr echo x - p5-Net-Pcap/pkg-plist sed 's/^X//' >p5-Net-Pcap/pkg-plist << 'END-of-p5-Net-Pcap/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Net/Pcap.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/Pcap/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/Pcap/Pcap.bs Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/Pcap/Pcap.so X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/Pcap X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Net 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true END-of-p5-Net-Pcap/pkg-plist echo x - p5-Net-Pcap/distinfo sed 's/^X//' >p5-Net-Pcap/distinfo << 'END-of-p5-Net-Pcap/distinfo' XMD5 (Net-Pcap-0.04.tar.gz) = 3456934b09598122fea6a553cdf42a91 END-of-p5-Net-Pcap/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:11:15 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C730F37B420 for ; Wed, 12 Dec 2001 16:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A1e10265; Wed, 12 Dec 2001 16:10:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 36DD637B41D for ; Wed, 12 Dec 2001 16:01:53 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBI86s346369 for ; Tue, 11 Dec 2001 21:08:06 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrER-000OPQ-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:02:19 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:02:19 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32773: Update port: p5-XML-Simple-1.06 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32773 >Category: ports >Synopsis: Update port: p5-XML-Simple-1.06 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: Update port: p5-XML-Simple-1.06 >How-To-Repeat: >Fix: diff -ur p5-XML-Simple-1.05/Makefile p5-XML-Simple/Makefile --- p5-XML-Simple-1.05/Makefile Fri Dec 7 21:32:47 2001 +++ p5-XML-Simple/Makefile Fri Dec 7 21:32:56 2001 @@ -6,7 +6,7 @@ # PORTNAME= XML-Simple -PORTVERSION= 1.05 +PORTVERSION= 1.06 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= XML diff -ur p5-XML-Simple-1.05/distinfo p5-XML-Simple/distinfo --- p5-XML-Simple-1.05/distinfo Fri Dec 7 21:32:47 2001 +++ p5-XML-Simple/distinfo Fri Dec 7 21:44:19 2001 @@ -1 +1 @@ -MD5 (XML-Simple-1.05.tar.gz) = 2f003d83da8c87b7025cd22fabd7c8ac +MD5 (XML-Simple-1.06.tar.gz) = 1f210e6ab932c3f201bee96603762f96 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:11:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADEBC37B42B for ; Wed, 12 Dec 2001 16:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A3G10315; Wed, 12 Dec 2001 16:10:03 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 3F7A137B41D for ; Wed, 12 Dec 2001 16:02:02 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIESs259909 for ; Tue, 11 Dec 2001 21:14:29 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrMI-000OlU-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:10:26 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:10:26 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32778: New port: p5-POE-Component-JobQueue-0.51 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32778 >Category: ports >Synopsis: New port: p5-POE-Component-JobQueue-0.51 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-JobQueue-0.51 POE component for processing large numbers of tasks with finite numbers of workers >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-JobQueue # p5-POE-Component-JobQueue/distinfo # p5-POE-Component-JobQueue/Makefile # p5-POE-Component-JobQueue/pkg-comment # p5-POE-Component-JobQueue/pkg-descr # p5-POE-Component-JobQueue/pkg-plist # echo c - p5-POE-Component-JobQueue mkdir -p p5-POE-Component-JobQueue > /dev/null 2>&1 echo x - p5-POE-Component-JobQueue/distinfo sed 's/^X//' >p5-POE-Component-JobQueue/distinfo << 'END-of-p5-POE-Component-JobQueue/distinfo' XMD5 (POE-Component-JobQueue-0.51.tar.gz) = f72a5ad34446e51f1443c8d950f94565 END-of-p5-POE-Component-JobQueue/distinfo echo x - p5-POE-Component-JobQueue/Makefile sed 's/^X//' >p5-POE-Component-JobQueue/Makefile << 'END-of-p5-POE-Component-JobQueue/Makefile' X# New ports collection makefile for: POE-Component-JobQueue X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-JobQueue XPORTVERSION= 0.51 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} http://poe.perl.org/poedown/ XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::JobQueue.3 X X.include END-of-p5-POE-Component-JobQueue/Makefile echo x - p5-POE-Component-JobQueue/pkg-comment sed 's/^X//' >p5-POE-Component-JobQueue/pkg-comment << 'END-of-p5-POE-Component-JobQueue/pkg-comment' XPOE component for processing large numbers of tasks with finite numbers of workers END-of-p5-POE-Component-JobQueue/pkg-comment echo x - p5-POE-Component-JobQueue/pkg-descr sed 's/^X//' >p5-POE-Component-JobQueue/pkg-descr << 'END-of-p5-POE-Component-JobQueue/pkg-descr' XPOE::Component::JobQueue manages a finite pool of worker sessions as Xthey handle an arbitrarily large number of tasks. It often is used as Xa form of flow control, preventing a large group of tasks from Xexhausting some sort of resource. X XWWW: http://search.cpan.org/search?dist=POE-Component-JobQueue X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-JobQueue/pkg-descr echo x - p5-POE-Component-JobQueue/pkg-plist sed 's/^X//' >p5-POE-Component-JobQueue/pkg-plist << 'END-of-p5-POE-Component-JobQueue/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/JobQueue/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/JobQueue.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/JobQueue X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-JobQueue/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:11:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED33137B42F for ; Wed, 12 Dec 2001 16:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A3c10324; Wed, 12 Dec 2001 16:10:03 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id EB54E37B419 for ; Wed, 12 Dec 2001 16:02:03 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIDKs349421 for ; Tue, 11 Dec 2001 21:13:20 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrLF-000OcM-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:09:21 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:09:21 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32779: New port: p5-POE-Component-Client-DNS-0.93 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32779 >Category: ports >Synopsis: New port: p5-POE-Component-Client-DNS-0.93 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-Client-DNS-0.93 POE component for non-blocking/concurrent DNS queries >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-Client-DNS # p5-POE-Component-Client-DNS/distinfo # p5-POE-Component-Client-DNS/Makefile # p5-POE-Component-Client-DNS/pkg-comment # p5-POE-Component-Client-DNS/pkg-descr # p5-POE-Component-Client-DNS/pkg-plist # echo c - p5-POE-Component-Client-DNS mkdir -p p5-POE-Component-Client-DNS > /dev/null 2>&1 echo x - p5-POE-Component-Client-DNS/distinfo sed 's/^X//' >p5-POE-Component-Client-DNS/distinfo << 'END-of-p5-POE-Component-Client-DNS/distinfo' XMD5 (POE-Component-Client-DNS-0.93.tar.gz) = 74394008d7169311fe6beb7e327723ba END-of-p5-POE-Component-Client-DNS/distinfo echo x - p5-POE-Component-Client-DNS/Makefile sed 's/^X//' >p5-POE-Component-Client-DNS/Makefile << 'END-of-p5-POE-Component-Client-DNS/Makefile' X# New ports collection makefile for: POE-Component-Client-DNS X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-Client-DNS XPORTVERSION= 0.93 XCATEGORIES= devel perl5 net XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} http://poe.perl.org/poedown/ XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/DNS.pm:${PORTSDIR}/net/p5-Net-DNS XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::Client::DNS.3 X X.include END-of-p5-POE-Component-Client-DNS/Makefile echo x - p5-POE-Component-Client-DNS/pkg-comment sed 's/^X//' >p5-POE-Component-Client-DNS/pkg-comment << 'END-of-p5-POE-Component-Client-DNS/pkg-comment' XPOE component for non-blocking/concurrent DNS queries END-of-p5-POE-Component-Client-DNS/pkg-comment echo x - p5-POE-Component-Client-DNS/pkg-descr sed 's/^X//' >p5-POE-Component-Client-DNS/pkg-descr << 'END-of-p5-POE-Component-Client-DNS/pkg-descr' XPOE::Component::Client::DNS is a wrapper for non-blocking Net::DNS. XIt lets other tasks to run while something is waiting for a nameserver Xto respond, and it lets several DNS queries run in parallel. X XWWW: http://search.cpan.org/search?dist=POE-Component-Client-DNS X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-Client-DNS/pkg-descr echo x - p5-POE-Component-Client-DNS/pkg-plist sed 's/^X//' >p5-POE-Component-Client-DNS/pkg-plist << 'END-of-p5-POE-Component-Client-DNS/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/DNS/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client/DNS.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/DNS X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-Client-DNS/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:11:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D955F37B427 for ; Wed, 12 Dec 2001 16:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A2110297; Wed, 12 Dec 2001 16:10:02 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id BBAAA37B417 for ; Wed, 12 Dec 2001 16:01:58 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIExs361813 for ; Tue, 11 Dec 2001 21:14:59 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrMq-000Oq1-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:11:00 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:11:00 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32776: New port: p5-POE-Component-RSS-0.06 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32776 >Category: ports >Synopsis: New port: p5-POE-Component-RSS-0.06 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-RSS-0.06 A module for event based RSS parsing >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-RSS # p5-POE-Component-RSS/Makefile # p5-POE-Component-RSS/pkg-comment # p5-POE-Component-RSS/pkg-descr # p5-POE-Component-RSS/pkg-plist # p5-POE-Component-RSS/distinfo # echo c - p5-POE-Component-RSS mkdir -p p5-POE-Component-RSS > /dev/null 2>&1 echo x - p5-POE-Component-RSS/Makefile sed 's/^X//' >p5-POE-Component-RSS/Makefile << 'END-of-p5-POE-Component-RSS/Makefile' X# New ports collection makefile for: POE-Component-RSS X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-RSS XPORTVERSION= 0.06 XCATEGORIES= devel perl5 textproc XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/XML/RSS.pm:${PORTSDIR}/textproc/p5-XML-RSS XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::RSS.3 X X.include END-of-p5-POE-Component-RSS/Makefile echo x - p5-POE-Component-RSS/pkg-comment sed 's/^X//' >p5-POE-Component-RSS/pkg-comment << 'END-of-p5-POE-Component-RSS/pkg-comment' XA module for event based RSS parsing END-of-p5-POE-Component-RSS/pkg-comment echo x - p5-POE-Component-RSS/pkg-descr sed 's/^X//' >p5-POE-Component-RSS/pkg-descr << 'END-of-p5-POE-Component-RSS/pkg-descr' XPOE::Component::RSS is an event based RSS parsing module. It wraps XXML::RSS and provides a POE based framework for accessing the information Xprovided. X XWWW: http://search.cpan.org/search?dist=POE-Component-RSS X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-RSS/pkg-descr echo x - p5-POE-Component-RSS/pkg-plist sed 's/^X//' >p5-POE-Component-RSS/pkg-plist << 'END-of-p5-POE-Component-RSS/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/RSS/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/RSS.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/RSS X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-RSS/pkg-plist echo x - p5-POE-Component-RSS/distinfo sed 's/^X//' >p5-POE-Component-RSS/distinfo << 'END-of-p5-POE-Component-RSS/distinfo' XMD5 (POE-Component-RSS-0.06.tar.gz) = e7d033733149102d2ae4f718c29449ce END-of-p5-POE-Component-RSS/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:12: 3 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F000637B41C for ; Wed, 12 Dec 2001 16:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A4h10355; Wed, 12 Dec 2001 16:10:04 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id DA2EB37B417 for ; Wed, 12 Dec 2001 16:02:09 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIBDs177426 for ; Tue, 11 Dec 2001 21:11:13 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrJB-000OWG-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:07:13 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:07:13 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32782: New port: p5-POE-Component-IKC-0.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32782 >Category: ports >Synopsis: New port: p5-POE-Component-IKC-0.13 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:04 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-IKC-0.13 POE Inter-Kernel Communication >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-IKC # p5-POE-Component-IKC/distinfo # p5-POE-Component-IKC/Makefile # p5-POE-Component-IKC/pkg-comment # p5-POE-Component-IKC/pkg-descr # p5-POE-Component-IKC/pkg-plist # echo c - p5-POE-Component-IKC mkdir -p p5-POE-Component-IKC > /dev/null 2>&1 echo x - p5-POE-Component-IKC/distinfo sed 's/^X//' >p5-POE-Component-IKC/distinfo << 'END-of-p5-POE-Component-IKC/distinfo' XMD5 (POE-Component-IKC-0.13.tar.gz) = 13e0c2bd3cb443143ff07a2c83ab58ba END-of-p5-POE-Component-IKC/distinfo echo x - p5-POE-Component-IKC/Makefile sed 's/^X//' >p5-POE-Component-IKC/Makefile << 'END-of-p5-POE-Component-IKC/Makefile' X# New ports collection makefile for: POE-Component-IKC X# Date created: 7 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-IKC XPORTVERSION= 0.13 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} http://poe.perl.org/poedown/ XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::IKC.3 POE::Component::IKC::Channel.3 \ X POE::Component::IKC::Client.3 POE::Component::IKC::ClientLite.3 \ X POE::Component::IKC::Freezer.3 POE::Component::IKC::Proxy.3 \ X POE::Component::IKC::Responder.3 POE::Component::IKC::Server.3 \ X POE::Component::IKC::Specifier.3 X X.include END-of-p5-POE-Component-IKC/Makefile echo x - p5-POE-Component-IKC/pkg-comment sed 's/^X//' >p5-POE-Component-IKC/pkg-comment << 'END-of-p5-POE-Component-IKC/pkg-comment' XPOE Inter-Kernel Communication END-of-p5-POE-Component-IKC/pkg-comment echo x - p5-POE-Component-IKC/pkg-descr sed 's/^X//' >p5-POE-Component-IKC/pkg-descr << 'END-of-p5-POE-Component-IKC/pkg-descr' XThis a first draft if Inter-Kernel Communication for POE. X XWWW: http://search.cpan.org/search?dist=POE-Component-IKC X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-IKC/pkg-descr echo x - p5-POE-Component-IKC/pkg-plist sed 's/^X//' >p5-POE-Component-IKC/pkg-plist << 'END-of-p5-POE-Component-IKC/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/IKC/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC.pod Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC/Channel.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC/Client.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC/ClientLite.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC/Freezer.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC/Proxy.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC/Responder.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC/Server.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC/Specifier.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/IKC X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-IKC/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:12:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5207037B439 for ; Wed, 12 Dec 2001 16:10:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A5R10374; Wed, 12 Dec 2001 16:10:05 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 203F337B417 for ; Wed, 12 Dec 2001 16:02:13 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIDRs361803 for ; Tue, 11 Dec 2001 21:13:27 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrLK-000Ogr-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:09:26 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:09:26 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32784: New port: p5-POE-Component-Client-UserAgent-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32784 >Category: ports >Synopsis: New port: p5-POE-Component-Client-UserAgent-0.03 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-Client-UserAgent-0.03 LWP and LWP::Parallel based POE component >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-Client-UserAgent # p5-POE-Component-Client-UserAgent/distinfo # p5-POE-Component-Client-UserAgent/Makefile # p5-POE-Component-Client-UserAgent/pkg-comment # p5-POE-Component-Client-UserAgent/pkg-descr # p5-POE-Component-Client-UserAgent/pkg-plist # echo c - p5-POE-Component-Client-UserAgent mkdir -p p5-POE-Component-Client-UserAgent > /dev/null 2>&1 echo x - p5-POE-Component-Client-UserAgent/distinfo sed 's/^X//' >p5-POE-Component-Client-UserAgent/distinfo << 'END-of-p5-POE-Component-Client-UserAgent/distinfo' XMD5 (POE-Component-Client-UserAgent-0.03.tar.gz) = 985dd7c6cfe6daf7f1749c7ccbf8fc5b END-of-p5-POE-Component-Client-UserAgent/distinfo echo x - p5-POE-Component-Client-UserAgent/Makefile sed 's/^X//' >p5-POE-Component-Client-UserAgent/Makefile << 'END-of-p5-POE-Component-Client-UserAgent/Makefile' X# New ports collection makefile for: POE-Component-Client-UserAgent X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-Client-UserAgent XPORTVERSION= 0.03 XCATEGORIES= devel perl5 www XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/LWP/Parallel.pm:${PORTSDIR}/www/p5-ParallelUA XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::Client::UserAgent.3 X X.include END-of-p5-POE-Component-Client-UserAgent/Makefile echo x - p5-POE-Component-Client-UserAgent/pkg-comment sed 's/^X//' >p5-POE-Component-Client-UserAgent/pkg-comment << 'END-of-p5-POE-Component-Client-UserAgent/pkg-comment' XLWP and LWP::Parallel based POE component END-of-p5-POE-Component-Client-UserAgent/pkg-comment echo x - p5-POE-Component-Client-UserAgent/pkg-descr sed 's/^X//' >p5-POE-Component-Client-UserAgent/pkg-descr << 'END-of-p5-POE-Component-Client-UserAgent/pkg-descr' XPOE::Component::Client::UserAgent is based on LWP and LWP::Parallel. XIt lets other tasks run while making a request to an Internet server Xand waiting for response, and it lets several requests run in parallel. X XWWW: http://search.cpan.org/search?dist=POE-Component-Client-UserAgent X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-Client-UserAgent/pkg-descr echo x - p5-POE-Component-Client-UserAgent/pkg-plist sed 's/^X//' >p5-POE-Component-Client-UserAgent/pkg-plist << 'END-of-p5-POE-Component-Client-UserAgent/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/UserAgent/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client/UserAgent.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/UserAgent X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-Client-UserAgent/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:12:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCCC337B428 for ; Wed, 12 Dec 2001 16:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A2110306; Wed, 12 Dec 2001 16:10:02 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 9A9FE37B417 for ; Wed, 12 Dec 2001 16:02:00 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIEhs347075 for ; Tue, 11 Dec 2001 21:14:43 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrMY-000OoU-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:10:42 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:10:42 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32777: New port: p5-POE-Component-Pcap-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32777 >Category: ports >Synopsis: New port: p5-POE-Component-Pcap-0.03 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-Pcap-0.03 POE component for non-blocking use of Net::Pcap >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-Pcap # p5-POE-Component-Pcap/Makefile # p5-POE-Component-Pcap/pkg-comment # p5-POE-Component-Pcap/pkg-descr # p5-POE-Component-Pcap/pkg-plist # p5-POE-Component-Pcap/distinfo # echo c - p5-POE-Component-Pcap mkdir -p p5-POE-Component-Pcap > /dev/null 2>&1 echo x - p5-POE-Component-Pcap/Makefile sed 's/^X//' >p5-POE-Component-Pcap/Makefile << 'END-of-p5-POE-Component-Pcap/Makefile' X# New ports collection makefile for: POE-Component-Pcap X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-Pcap XPORTVERSION= 0.03 XCATEGORIES= devel perl5 net XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Net/Pcap.pm:${PORTSDIR}/net/p5-Net-Pcap \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/NetPacket/Ethernet:${PORTSDIR}/net/p5-NetPacket XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::Pcap.3 X X.include END-of-p5-POE-Component-Pcap/Makefile echo x - p5-POE-Component-Pcap/pkg-comment sed 's/^X//' >p5-POE-Component-Pcap/pkg-comment << 'END-of-p5-POE-Component-Pcap/pkg-comment' XPOE component for non-blocking use of Net::Pcap END-of-p5-POE-Component-Pcap/pkg-comment echo x - p5-POE-Component-Pcap/pkg-descr sed 's/^X//' >p5-POE-Component-Pcap/pkg-descr << 'END-of-p5-POE-Component-Pcap/pkg-descr' XPOE::Component::Pcap provides a wrapper for using the Net::Pcap module Xfrom POE programs. The component creates a separate session which Xposts events to a specified session and state when packets are Xavailable. END-of-p5-POE-Component-Pcap/pkg-descr echo x - p5-POE-Component-Pcap/pkg-plist sed 's/^X//' >p5-POE-Component-Pcap/pkg-plist << 'END-of-p5-POE-Component-Pcap/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Pcap/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/Pcap.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Pcap X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-Pcap/pkg-plist echo x - p5-POE-Component-Pcap/distinfo sed 's/^X//' >p5-POE-Component-Pcap/distinfo << 'END-of-p5-POE-Component-Pcap/distinfo' XMD5 (POE-Component-Pcap-0.03.tar.gz) = 16f048a0f4f96f74c4c7a2e60d7a9fd1 END-of-p5-POE-Component-Pcap/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:12:53 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F28837B432 for ; Wed, 12 Dec 2001 16:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A3U10337; Wed, 12 Dec 2001 16:10:03 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 9437037B419 for ; Wed, 12 Dec 2001 16:02:05 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIDMs352310 for ; Tue, 11 Dec 2001 21:13:23 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrLH-000Odr-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:09:23 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:09:23 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32780: New port: p5-POE-Component-Client-HTTP-0.39 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32780 >Category: ports >Synopsis: New port: p5-POE-Component-Client-HTTP-0.39 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-Client-HTTP-0.39 POE component for non-blocking/concurrent HTTP queries >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-Client-HTTP # p5-POE-Component-Client-HTTP/distinfo # p5-POE-Component-Client-HTTP/Makefile # p5-POE-Component-Client-HTTP/pkg-comment # p5-POE-Component-Client-HTTP/pkg-descr # p5-POE-Component-Client-HTTP/pkg-plist # echo c - p5-POE-Component-Client-HTTP mkdir -p p5-POE-Component-Client-HTTP > /dev/null 2>&1 echo x - p5-POE-Component-Client-HTTP/distinfo sed 's/^X//' >p5-POE-Component-Client-HTTP/distinfo << 'END-of-p5-POE-Component-Client-HTTP/distinfo' XMD5 (POE-Component-Client-HTTP-0.39.tar.gz) = e6835c1f2d6784cdbe1e2d9d3fa7619f END-of-p5-POE-Component-Client-HTTP/distinfo echo x - p5-POE-Component-Client-HTTP/Makefile sed 's/^X//' >p5-POE-Component-Client-HTTP/Makefile << 'END-of-p5-POE-Component-Client-HTTP/Makefile' X# New ports collection makefile for: POE-Component-Client-HTTP X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-Client-HTTP XPORTVERSION= 0.39 XCATEGORIES= devel perl5 www XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} http://poe.perl.org/poedown/ XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/HTTP/Request.pm:${PORTSDIR}/www/p5-libwww XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::Client::HTTP.3 X X.include END-of-p5-POE-Component-Client-HTTP/Makefile echo x - p5-POE-Component-Client-HTTP/pkg-comment sed 's/^X//' >p5-POE-Component-Client-HTTP/pkg-comment << 'END-of-p5-POE-Component-Client-HTTP/pkg-comment' XPOE component for non-blocking/concurrent HTTP queries END-of-p5-POE-Component-Client-HTTP/pkg-comment echo x - p5-POE-Component-Client-HTTP/pkg-descr sed 's/^X//' >p5-POE-Component-Client-HTTP/pkg-descr << 'END-of-p5-POE-Component-Client-HTTP/pkg-descr' XPOE::Component::Client::HTTP is an HTTP user-agent for POE. It lets Xother sessions run while HTTP transactions are being processed, and it Xlets several HTTP transactions be processed in parallel. X XWWW: http://search.cpan.org/search?dist=POE-Component-Client-HTTP X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-Client-HTTP/pkg-descr echo x - p5-POE-Component-Client-HTTP/pkg-plist sed 's/^X//' >p5-POE-Component-Client-HTTP/pkg-plist << 'END-of-p5-POE-Component-Client-HTTP/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/HTTP/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client/HTTP.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/HTTP X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-Client-HTTP/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:12:54 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9F3A37B434 for ; Wed, 12 Dec 2001 16:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A4R10346; Wed, 12 Dec 2001 16:10:04 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 2D5F237B417 for ; Wed, 12 Dec 2001 16:02:07 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIDPs353168 for ; Tue, 11 Dec 2001 21:13:25 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrLI-000OfM-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:09:24 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:09:24 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32781: New port: p5-POE-Component-Client-Ping-0.95 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32781 >Category: ports >Synopsis: New port: p5-POE-Component-Client-Ping-0.95 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-Client-Ping-0.95 POE component for non-blocking/concurrent ICMP ping >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-Client-Ping # p5-POE-Component-Client-Ping/distinfo # p5-POE-Component-Client-Ping/Makefile # p5-POE-Component-Client-Ping/pkg-comment # p5-POE-Component-Client-Ping/pkg-descr # p5-POE-Component-Client-Ping/pkg-plist # echo c - p5-POE-Component-Client-Ping mkdir -p p5-POE-Component-Client-Ping > /dev/null 2>&1 echo x - p5-POE-Component-Client-Ping/distinfo sed 's/^X//' >p5-POE-Component-Client-Ping/distinfo << 'END-of-p5-POE-Component-Client-Ping/distinfo' XMD5 (POE-Component-Client-Ping-0.95.tar.gz) = f4fbbcd7aa6789fc237ccd70c334b468 END-of-p5-POE-Component-Client-Ping/distinfo echo x - p5-POE-Component-Client-Ping/Makefile sed 's/^X//' >p5-POE-Component-Client-Ping/Makefile << 'END-of-p5-POE-Component-Client-Ping/Makefile' X# New ports collection makefile for: POE-Component-Client-Ping X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-Client-Ping XPORTVERSION= 0.95 XCATEGORIES= devel perl5 net XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} http://poe.perl.org/poedown/ XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::Client::Ping.3 X X.include END-of-p5-POE-Component-Client-Ping/Makefile echo x - p5-POE-Component-Client-Ping/pkg-comment sed 's/^X//' >p5-POE-Component-Client-Ping/pkg-comment << 'END-of-p5-POE-Component-Client-Ping/pkg-comment' XPOE component for non-blocking/concurrent ICMP ping END-of-p5-POE-Component-Client-Ping/pkg-comment echo x - p5-POE-Component-Client-Ping/pkg-descr sed 's/^X//' >p5-POE-Component-Client-Ping/pkg-descr << 'END-of-p5-POE-Component-Client-Ping/pkg-descr' XPOE::Component::Client::Ping is non-blocking ICMP ping client session. XIt lets several other sessions ping through it in parallel, and it Xlets them continue doing other things while they wait for responses. X XWWW: http://search.cpan.org/search?dist=POE-Component-Client-Ping X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-Client-Ping/pkg-descr echo x - p5-POE-Component-Client-Ping/pkg-plist sed 's/^X//' >p5-POE-Component-Client-Ping/pkg-plist << 'END-of-p5-POE-Component-Client-Ping/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/Ping/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client/Ping.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/Ping X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-Client-Ping/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:13:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 95DF837B416 for ; Wed, 12 Dec 2001 16:10:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A5B10392; Wed, 12 Dec 2001 16:10:05 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 6D17937B417 for ; Wed, 12 Dec 2001 16:02:16 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIBFs361084 for ; Tue, 11 Dec 2001 21:11:15 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrJE-000OXl-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:07:16 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:07:16 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32786: New port: p5-POE-Component-IKC-ReallySimple-0.01 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32786 >Category: ports >Synopsis: New port: p5-POE-Component-IKC-ReallySimple-0.01 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-IKC-ReallySimple-0.01 POE Component for simple inter-kernel communication >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-IKC-ReallySimple # p5-POE-Component-IKC-ReallySimple/distinfo # p5-POE-Component-IKC-ReallySimple/Makefile # p5-POE-Component-IKC-ReallySimple/pkg-comment # p5-POE-Component-IKC-ReallySimple/pkg-descr # p5-POE-Component-IKC-ReallySimple/pkg-plist # echo c - p5-POE-Component-IKC-ReallySimple mkdir -p p5-POE-Component-IKC-ReallySimple > /dev/null 2>&1 echo x - p5-POE-Component-IKC-ReallySimple/distinfo sed 's/^X//' >p5-POE-Component-IKC-ReallySimple/distinfo << 'END-of-p5-POE-Component-IKC-ReallySimple/distinfo' XMD5 (POE-Component-IKC-ReallySimple-0.01.tar.gz) = f61c1685a8b29109e25d2fbbcc09d2b9 END-of-p5-POE-Component-IKC-ReallySimple/distinfo echo x - p5-POE-Component-IKC-ReallySimple/Makefile sed 's/^X//' >p5-POE-Component-IKC-ReallySimple/Makefile << 'END-of-p5-POE-Component-IKC-ReallySimple/Makefile' X# New ports collection makefile for: POE-Component-IKC-ReallySimple X# Date created: 7 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-IKC-ReallySimple XPORTVERSION= 0.01 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE/Component/IKC/Responder.pm:${PORTSDIR}/devel/p5-POE-Component-IKC XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::IKC::ReallySimple.3 X X.include END-of-p5-POE-Component-IKC-ReallySimple/Makefile echo x - p5-POE-Component-IKC-ReallySimple/pkg-comment sed 's/^X//' >p5-POE-Component-IKC-ReallySimple/pkg-comment << 'END-of-p5-POE-Component-IKC-ReallySimple/pkg-comment' XPOE Component for simple inter-kernel communication END-of-p5-POE-Component-IKC-ReallySimple/pkg-comment echo x - p5-POE-Component-IKC-ReallySimple/pkg-descr sed 's/^X//' >p5-POE-Component-IKC-ReallySimple/pkg-descr << 'END-of-p5-POE-Component-IKC-ReallySimple/pkg-descr' XPOE::Component::IKC::ReallySimple tries to make inter-kernel communication very Xsimple. POE::Component::IKC is great but it can be a lot of setup for simple Xprojects. This module hides the ick and complication of inter-kernel messaging. X XWWW: http://search.cpan.org/search?dist=POE-Component-IKC-ReallySimple X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-IKC-ReallySimple/pkg-descr echo x - p5-POE-Component-IKC-ReallySimple/pkg-plist sed 's/^X//' >p5-POE-Component-IKC-ReallySimple/pkg-plist << 'END-of-p5-POE-Component-IKC-ReallySimple/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/IKC/ReallySimple/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC/ReallySimple.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/IKC/ReallySimple X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component/IKC 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/IKC 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-IKC-ReallySimple/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:13:48 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34CF737B437 for ; Wed, 12 Dec 2001 16:10:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A4F10365; Wed, 12 Dec 2001 16:10:04 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 7CEBC37B417 for ; Wed, 12 Dec 2001 16:02:11 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIDTs362765 for ; Tue, 11 Dec 2001 21:13:29 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrLM-000OiM-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:09:28 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:09:28 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32783: New port: p5-POE-Component-DBIAgent-0.11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32783 >Category: ports >Synopsis: New port: p5-POE-Component-DBIAgent-0.11 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:04 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-DBIAgent-0.11 POE Component for running asynchronous DBI calls >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-DBIAgent # p5-POE-Component-DBIAgent/distinfo # p5-POE-Component-DBIAgent/Makefile # p5-POE-Component-DBIAgent/pkg-comment # p5-POE-Component-DBIAgent/pkg-descr # p5-POE-Component-DBIAgent/pkg-plist # echo c - p5-POE-Component-DBIAgent mkdir -p p5-POE-Component-DBIAgent > /dev/null 2>&1 echo x - p5-POE-Component-DBIAgent/distinfo sed 's/^X//' >p5-POE-Component-DBIAgent/distinfo << 'END-of-p5-POE-Component-DBIAgent/distinfo' XMD5 (POE-Component-DBIAgent-0.11.tar.gz) = 59ca46f8c906f72945a59b0c9b103a2f END-of-p5-POE-Component-DBIAgent/distinfo echo x - p5-POE-Component-DBIAgent/Makefile sed 's/^X//' >p5-POE-Component-DBIAgent/Makefile << 'END-of-p5-POE-Component-DBIAgent/Makefile' X# New ports collection makefile for: POE-Component-DBIAgent X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-DBIAgent XPORTVERSION= 0.11 XCATEGORIES= devel perl5 databases XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Class/MethodMaker.pm:${PORTSDIR}/devel/p5-Class-MethodMaker XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::DBIAgent.3 POE::Component::DBIAgent::Helper.3 \ X POE::Component::DBIAgent::Queue.3 X X.include END-of-p5-POE-Component-DBIAgent/Makefile echo x - p5-POE-Component-DBIAgent/pkg-comment sed 's/^X//' >p5-POE-Component-DBIAgent/pkg-comment << 'END-of-p5-POE-Component-DBIAgent/pkg-comment' XPOE Component for running asynchronous DBI calls END-of-p5-POE-Component-DBIAgent/pkg-comment echo x - p5-POE-Component-DBIAgent/pkg-descr sed 's/^X//' >p5-POE-Component-DBIAgent/pkg-descr << 'END-of-p5-POE-Component-DBIAgent/pkg-descr' XThe DBIAgent is your answer to non-blocking DBI in POE. X XIt fires off child processes (configurable, defaults to 3) and feeds Xdatabase queries to it via two-way pipe (or however Wheel::Run is able Xto manage it). X XWWW: http://search.cpan.org/search?dist=POE-Component-DBIAgent X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-DBIAgent/pkg-descr echo x - p5-POE-Component-DBIAgent/pkg-plist sed 's/^X//' >p5-POE-Component-DBIAgent/pkg-plist << 'END-of-p5-POE-Component-DBIAgent/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/DBIAgent/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/DBIAgent.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/DBIAgent/Helper.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/DBIAgent/Queue.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/POE/Component/DBIAgent X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/DBIAgent X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-DBIAgent/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 16:14:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EA9937B421 for ; Wed, 12 Dec 2001 16:10:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD0A5n10383; Wed, 12 Dec 2001 16:10:05 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id D571637B417 for ; Wed, 12 Dec 2001 16:02:14 -0800 (PST) Received: from 3wgraphics.com (ppp-9-067.comintern.ru [213.148.9.67]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBBIDbs260406 for ; Tue, 11 Dec 2001 21:13:37 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16DrLV-000Ojr-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 11 Dec 2001 21:09:37 +0300 Message-Id: Date: Tue, 11 Dec 2001 21:09:37 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32785: New port: p5-POE-Component-IRC-1.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32785 >Category: ports >Synopsis: New port: p5-POE-Component-IRC-1.7 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 16:10:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-POE-Component-IRC-1.7 A fully event-driven IRC client module >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-POE-Component-IRC # p5-POE-Component-IRC/distinfo # p5-POE-Component-IRC/Makefile # p5-POE-Component-IRC/pkg-comment # p5-POE-Component-IRC/pkg-descr # p5-POE-Component-IRC/pkg-plist # echo c - p5-POE-Component-IRC mkdir -p p5-POE-Component-IRC > /dev/null 2>&1 echo x - p5-POE-Component-IRC/distinfo sed 's/^X//' >p5-POE-Component-IRC/distinfo << 'END-of-p5-POE-Component-IRC/distinfo' XMD5 (POE-Component-IRC-1.7.tar.gz) = 942f2b5c058ad48c628cf178b5f6215b END-of-p5-POE-Component-IRC/distinfo echo x - p5-POE-Component-IRC/Makefile sed 's/^X//' >p5-POE-Component-IRC/Makefile << 'END-of-p5-POE-Component-IRC/Makefile' X# New ports collection makefile for: POE-Component-IRC X# Date created: 10 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-IRC XPORTVERSION= 1.7 XCATEGORIES= devel perl5 irc XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= POE XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= POE::Component::Filter-CTCP.3 POE::Component::Filter-IRC.3 \ X POE::Component::IRC.3 XMLINKS= POE::Component::Filter-CTCP.3 POE::Component::Filter::CTCP.3 \ X POE::Component::Filter-IRC.3 POE::Component::Filter::IRC.3 X Xpost-install: X.ifndef(NOPORTDOCS) X @${MKDIR} ${EXAMPLESDIR} X ${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${EXAMPLESDIR} X.endif X X.include END-of-p5-POE-Component-IRC/Makefile echo x - p5-POE-Component-IRC/pkg-comment sed 's/^X//' >p5-POE-Component-IRC/pkg-comment << 'END-of-p5-POE-Component-IRC/pkg-comment' XA fully event-driven IRC client module END-of-p5-POE-Component-IRC/pkg-comment echo x - p5-POE-Component-IRC/pkg-descr sed 's/^X//' >p5-POE-Component-IRC/pkg-descr << 'END-of-p5-POE-Component-IRC/pkg-descr' XPOE::Component::IRC is a POE component which acts as an easily controllable XIRC client for your other POE components and sessions. You create an IRC Xcomponent and tell it what events your session cares about and where to Xconnect to, and it sends back interesting IRC events when they happen. X XWWW: http://search.cpan.org/search?dist=POE-Component-IRC X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-POE-Component-IRC/pkg-descr echo x - p5-POE-Component-IRC/pkg-plist sed 's/^X//' >p5-POE-Component-IRC/pkg-plist << 'END-of-p5-POE-Component-IRC/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/IRC/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/POE/Component/IRC.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Filter/CTCP.pm Xlib/perl5/site_perl/%%PERL_VER%%/POE/Filter/IRC.pm X%%PORTDOCS%%share/examples/POE-Component-IRC/dcctest.pl X%%PORTDOCS%%share/examples/POE-Component-IRC/dicebot.pl X%%PORTDOCS%%share/examples/POE-Component-IRC/eliza.pl X%%PORTDOCS%%share/examples/POE-Component-IRC/moo.pl X%%PORTDOCS%%@dirrm share/examples/POE-Component-IRC X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/IRC X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Filter 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true END-of-p5-POE-Component-IRC/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 18:49:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F078937B405; Wed, 12 Dec 2001 18:49:35 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD2egF36161; Wed, 12 Dec 2001 18:40:42 -0800 (PST) (envelope-from petef) Date: Wed, 12 Dec 2001 18:40:42 -0800 (PST) From: Message-Id: <200112130240.fBD2egF36161@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/32769: kdebase2 w/o motif still puts nsplugin in its configuration Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: kdebase2 w/o motif still puts nsplugin in its configuration Responsible-Changed-From-To: freebsd-ports->kde Responsible-Changed-By: petef Responsible-Changed-When: Wed Dec 12 18:40:37 PST 2001 Responsible-Changed-Why: Over to maintainers http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32769 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 18:59:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0043737B416; Wed, 12 Dec 2001 18:59:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD2sAZ37517; Wed, 12 Dec 2001 18:54:10 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 18:54:10 -0800 (PST) From: Message-Id: <200112130254.fBD2sAZ37517@freefall.freebsd.org> To: wvengen@stack.nl, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32751: Update port: misc/sword new version 1.5.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: misc/sword new version 1.5.2 State-Changed-From-To: analyzed->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 18:53:59 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32751 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 18:59:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2136637B419; Wed, 12 Dec 2001 18:59:37 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD2v3L38163; Wed, 12 Dec 2001 18:57:03 -0800 (PST) (envelope-from pat) Date: Wed, 12 Dec 2001 18:57:03 -0800 (PST) From: Message-Id: <200112130257.fBD2v3L38163@freefall.freebsd.org> To: spn@g0v.ru, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32390: New port:A small and fast window manager for X11R6 based on BlackBox Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port:A small and fast window manager for X11R6 based on BlackBox State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Wed Dec 12 18:56:19 PST 2001 State-Changed-Why: Port added, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32390 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 18:59:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9941737B41C; Wed, 12 Dec 2001 18:59:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD2v8c38199; Wed, 12 Dec 2001 18:57:08 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 18:57:08 -0800 (PST) From: Message-Id: <200112130257.fBD2v8c38199@freefall.freebsd.org> To: wvengen@stack.nl, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32766: Port update: misc/cheatah: strip binary after install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Port update: misc/cheatah: strip binary after install State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 18:56:52 PST 2001 State-Changed-Why: committed, thanks btw, ur patch is a little strange ... http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32766 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 18:59:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3776837B41D; Wed, 12 Dec 2001 18:59:38 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD2vhS38358; Wed, 12 Dec 2001 18:57:43 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 18:57:43 -0800 (PST) From: Message-Id: <200112130257.fBD2vhS38358@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/32767: [patch] distfile checksum missing for net/mtr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [patch] distfile checksum missing for net/mtr Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: ijliao Responsible-Changed-When: Wed Dec 12 18:57:35 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32767 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19: 9:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03CD637B416; Wed, 12 Dec 2001 19:09:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD30Nx38789; Wed, 12 Dec 2001 19:00:23 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 19:00:23 -0800 (PST) From: Message-Id: <200112130300.fBD30Nx38789@freefall.freebsd.org> To: harry_newton@telinco.co.uk, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32768: update of port: mail/xmailwatcher Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update of port: mail/xmailwatcher State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 19:00:16 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32768 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19: 9:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBC4237B416; Wed, 12 Dec 2001 19:09:37 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD31w939061; Wed, 12 Dec 2001 19:01:58 -0800 (PST) (envelope-from pat) Date: Wed, 12 Dec 2001 19:01:58 -0800 (PST) From: Message-Id: <200112130301.fBD31w939061@freefall.freebsd.org> To: matthew@topic.com.au, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32655: New Port: fluxbox x11 window manager Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New Port: fluxbox x11 window manager State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Wed Dec 12 18:57:10 PST 2001 State-Changed-Why: Port committed. PR 32390 was submitted first so i'm gonna give him maintainership. I merged some parts of your port with his. Thanks for the submission! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32655 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19:11:10 2001 Delivered-To: freebsd-ports@freebsd.org Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by hub.freebsd.org (Postfix) with ESMTP id 3137437B405; Wed, 12 Dec 2001 19:11:02 -0800 (PST) Received: from dsto-ms2.dsto.defence.gov.au (dsto-ms2.dsto.defence.gov.au [131.185.2.150]) by digger1.defence.gov.au (8.10.1/8.10.1) with ESMTP id fBD3A6F18675; Thu, 13 Dec 2001 13:40:06 +1030 (CST) Received: from muttley.dsto.defence.gov.au (unverified) by dsto-ms2.dsto.defence.gov.au (Content Technologies SMTPRS 4.1.5) with ESMTP id ; Thu, 13 Dec 2001 13:40:48 +1030 Received: from salex001.dsto.defence.gov.au (salex001.dsto.defence.gov.au [131.185.2.9]) by muttley.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id NAA31023; Thu, 13 Dec 2001 13:30:21 +1030 (CST) Received: from fang.dsto.defence.gov.au ([131.185.2.5]) by salex001.dsto.defence.gov.au with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id YTNQF0S7; Thu, 13 Dec 2001 13:30:17 +1030 Received: from dsto.defence.gov.au (fuzz.dsto.defence.gov.au [131.185.75.229]) by fang.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id NAA18622; Thu, 13 Dec 2001 13:30:20 +1030 (CST) Message-ID: <3C1819C9.B2836780@dsto.defence.gov.au> Date: Thu, 13 Dec 2001 13:30:25 +1030 From: "Thyer, Matthew" X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Maxim Sobolev Cc: gnome@freebsd.org, ports@freebsd.org Subject: Re: ports/www/mozilla FTP path correction References: <3C16C8BF.D4D75682@dsto.defence.gov.au> <3C170E30.5512A8F8@FreeBSD.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Maxim Sobolev wrote: > > "Thyer, Matthew" wrote: > > > > The first download site tried is wrong. > > > > ftp://ftp.planetmirror.com/pub/mozilla/mozilla/releases/mozilla0.9.6 > > > > should be: > > > > ftp://ftp.planetmirror.com/pub/mozilla/releases/mozilla0.9.6 > > Where did you get this mirror from? I do not see anything similar > neither in bsd.sites.mk nor in defaults/make.conf. > Ooops, Sorry my fault. It was an override in my /etc/make.conf. I had: MASTER_SITE_MOZILLA=ftp://ftp.planetmirror.com/pub/mozilla/%SUBDIR%/ which I have now corrected to: MASTER_SITE_MOZILLA=ftp://ftp.planetmirror.com/pub/%SUBDIR%/ > -Maxim -- Matthew Thyer Phone: +61 8 8259 7249 Science Corporate Information Systems Fax: +61 8 8259 5537 Defence Science and Technology Organisation, Edinburgh PO Box 1500 EDINBURGH South Australia 5111 IMPORTANT: This email remains the property of the Australian Defence Organisation and is subject to the jurisdiction of section 70 of the CRIMES ACT 1914. If you have received this email in error, you are requested to contact the sender and delete the email. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19:19:46 2001 Delivered-To: freebsd-ports@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id 9FC4F37B405 for ; Wed, 12 Dec 2001 19:19:43 -0800 (PST) Received: from 200.181.48.172 (unknown [200.181.48.172]) by heaven.gigo.com (Postfix) with ESMTP id 108ADB8C2 for ; Wed, 12 Dec 2001 19:19:43 -0800 (PST) Received: (qmail 19410 invoked by uid 1001); 13 Dec 2001 03:19:22 -0000 Message-ID: <20011213031922.19409.qmail@exxodus.fedaykin.here> Date: Thu, 13 Dec 2001 01:19:00 -0200 From: Mario Sergio Fujikawa Ferreira To: FreeBSD-ports@FreeBSD.org Cc: "David E. O'Brien" , Patrick Li Subject: RFC: autoconf port update to 2.52 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.4-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, I did update the autoconf port from 2.13 to 2.52 which is the latest stable version, so I am told. This port is very similar to the update sent by Patrick Li in PR 29069. I will probably send this one as a follow up. http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/29069 I would like people to try this port and if portmgr approves it, I would both commit it to the tree and add appropriate knobs to bsd.port.mk so that it will be enabled with USE_AUTOMAKE_VER=252 The sample port can be found in http://people.freebsd.org/~lioux/autoconf252.tgz Please, scrutinize it. Give it the worse. Furthermore, try to supply either patches or comprehensive reports if you find bugs. :) I am sure there are some, they are just not being triggered by my Murphy Field (TM); it is waiting for the post commit time to jump on me. Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19:20:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21A5637B416 for ; Wed, 12 Dec 2001 19:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD3K1H44403; Wed, 12 Dec 2001 19:20:01 -0800 (PST) (envelope-from gnats) Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 2306337B419 for ; Wed, 12 Dec 2001 19:13:27 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBD3CLd14751; Wed, 12 Dec 2001 22:12:21 -0500 (EST) (envelope-from alane) Message-Id: <200112130312.fBD3CLd14751@wwweasel.geeksrus.net> Date: Wed, 12 Dec 2001 22:12:21 -0500 (EST) From: Alan E Reply-To: Alan E To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32788: take maintainership of audio/freeamp port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32788 >Category: ports >Synopsis: take maintainership of audio/freeamp port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 19:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alan E >Release: FreeBSD 4.4-STABLE i386 >Organization: Geeksrus.NET >Environment: System: FreeBSD wwweasel.geeksrus.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:14:12 EST 2001 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 >Description: Freeamp doesn't have a real maintainer right now (it's "ports@"). I'd like to take responsibility for it; I've got a mega-PR open on it right, and it needs to be upgraded to a new version as well. >How-To-Repeat: N/A >Fix: --- Makefile.orig Tue Jul 3 08:46:56 2001 +++ Makefile Tue Dec 11 19:08:11 2001 @@ -11,7 +11,7 @@ CATEGORIES= audio MASTER_SITES= http://www.freeamp.org/download/src/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@geeksrus.net BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm LIB_DEPENDS= musicbrainz.1:${PORTSDIR}/audio/musicbrainz \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19:29:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4064437B416; Wed, 12 Dec 2001 19:29:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD3KdO44684; Wed, 12 Dec 2001 19:20:39 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 19:20:39 -0800 (PST) From: Message-Id: <200112130320.fBD3KdO44684@freefall.freebsd.org> To: killer@prosalg.no, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/31509: bbkeys port outdated! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: bbkeys port outdated! State-Changed-From-To: feedback->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 19:20:23 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31509 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19:29:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E3CB137B419; Wed, 12 Dec 2001 19:29:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD3KGI44537; Wed, 12 Dec 2001 19:20:16 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 19:20:16 -0800 (PST) From: Message-Id: <200112130320.fBD3KGI44537@freefall.freebsd.org> To: stijn@win.tue.nl, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32764: [UPDATE]: x11-wm/bbkeys Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [UPDATE]: x11-wm/bbkeys State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 19:20:07 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32764 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19:29:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 418B237B41D; Wed, 12 Dec 2001 19:29:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD3O0T45224; Wed, 12 Dec 2001 19:24:00 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 19:24:00 -0800 (PST) From: Message-Id: <200112130324.fBD3O0T45224@freefall.freebsd.org> To: marcus@marcuscom.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32763: New port: net/p5-SNMP-MIB-Compiler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: net/p5-SNMP-MIB-Compiler State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 19:23:52 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32763 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19:39:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADDAC37B41C; Wed, 12 Dec 2001 19:39:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD3cWF47050; Wed, 12 Dec 2001 19:38:32 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 19:38:32 -0800 (PST) From: Message-Id: <200112130338.fBD3cWF47050@freefall.freebsd.org> To: thierry@thomas.as, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32712: New port: kronolith, a web-based calendar application Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: kronolith, a web-based calendar application State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 19:38:24 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32712 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19:39:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F9D537B419; Wed, 12 Dec 2001 19:39:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD3UBC46017; Wed, 12 Dec 2001 19:30:11 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 19:30:11 -0800 (PST) From: Message-Id: <200112130330.fBD3UBC46017@freefall.freebsd.org> To: nrahlstr@winternet.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32761: new port archivers/stuffit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new port archivers/stuffit State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 19:30:02 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32761 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 19:49:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1317737B416; Wed, 12 Dec 2001 19:49:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD3f7Y47478; Wed, 12 Dec 2001 19:41:07 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 19:41:07 -0800 (PST) From: Message-Id: <200112130341.fBD3f7Y47478@freefall.freebsd.org> To: thierry@thomas.as, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32710: Maintainer update: upgrade devel/pear to 4.1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Maintainer update: upgrade devel/pear to 4.1.0 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 19:41:00 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32710 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 20: 9:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 399FB37B416; Wed, 12 Dec 2001 20:09:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD464P53359; Wed, 12 Dec 2001 20:06:04 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 20:06:04 -0800 (PST) From: Message-Id: <200112130406.fBD464P53359@freefall.freebsd.org> To: jharris@widomaker.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32709: new port: sysutils/file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new port: sysutils/file State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 20:05:57 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32709 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 21: 0:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0FFB37B419 for ; Wed, 12 Dec 2001 21:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD501f59077; Wed, 12 Dec 2001 21:00:01 -0800 (PST) (envelope-from gnats) Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 5F65A37B405 for ; Wed, 12 Dec 2001 20:50:58 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBD4nli46649; Wed, 12 Dec 2001 23:49:47 -0500 (EST) (envelope-from alane) Message-Id: <200112130449.fBD4nli46649@wwweasel.geeksrus.net> Date: Wed, 12 Dec 2001 23:49:47 -0500 (EST) From: Alan E Reply-To: Alan E To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32789: musicbrainz port won't build (autoconf/automake version) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32789 >Category: ports >Synopsis: musicbrainz port won't build (autoconf/automake version) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 21:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alan E >Release: FreeBSD 4.4-STABLE i386 >Organization: Geeksrus.NET >Environment: System: FreeBSD wwweasel.geeksrus.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:14:12 EST 2001 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 >Description: Build fails with automake errors. Needs automake14. >How-To-Repeat: Try to build. >Fix: Index: Makefile =================================================================== RCS file: /home/alane/cvsroot/ports/audio/musicbrainz/Makefile,v retrieving revision 1.8 diff -u -3 -r1.8 Makefile --- Makefile 29 Nov 2001 21:35:06 -0000 1.8 +++ Makefile 13 Dec 2001 04:46:02 -0000 @@ -12,7 +12,9 @@ MAINTAINER= roman@xpert.com -USE_AUTOCONF= yes +USE_AUTOMAKE= yes +USE_AUTOMAKE_VER=14 +USE_AUTOCONF_VER=213 USE_GMAKE= yes USE_BZIP2= yes USE_LIBTOOL= yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 21:39:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FAE537B416; Wed, 12 Dec 2001 21:39:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD5Uvv65807; Wed, 12 Dec 2001 21:30:57 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 21:30:57 -0800 (PST) From: Message-Id: <200112130530.fBD5Uvv65807@freefall.freebsd.org> To: alane@geeksrus.net, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32788: take maintainership of audio/freeamp port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: take maintainership of audio/freeamp port State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 21:30:50 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32788 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 22:50:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3304E37B416 for ; Wed, 12 Dec 2001 22:50:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD6o9H76903; Wed, 12 Dec 2001 22:50:09 -0800 (PST) (envelope-from gnats) Received: from pelsia.netmove.co.jp (pelsia.netmove.co.jp [202.241.207.159]) by hub.freebsd.org (Postfix) with ESMTP id E7E2037B419 for ; Wed, 12 Dec 2001 22:40:26 -0800 (PST) Received: (from nork@localhost) by pelsia.netmove.co.jp (8.11.6/8.11.6) id fBD6eP374469; Thu, 13 Dec 2001 15:40:25 +0900 (JST) (envelope-from nork) Message-Id: <011213154025.M0173217@pelsia.netmove.co.jp> Date: Thu, 13 Dec 2001 15:40:25 +0900 From: nork@cityfujisawa.ne.jp (Norikatsu Shigemura) Reply-To: nork@cityfujisawa.ne.jp (Norikatsu Shigemura) To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32790: patch for mail/qpopper with WITH_DRAC Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32790 >Category: ports >Synopsis: patch for mail/qpopper with WITH_DRAC >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 22:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Norikatsu Shigemura >Release: FreeBSD 4.4-STABLE i386 >Organization: personal >Environment: System: FreeBSD pelsia.netmove.co.jp 4.4-STABLE FreeBSD 4.4-STABLE #43: Wed Dec 5 19:22:46 JST 2001 nork@pelsia.netmove.co.jp:/usr/obj/usr/src/sys/PELSIA i386 >Description: Patch for mail/qpopper with WITH_DRAC. >How-To-Repeat: N/A >Fix: --- mail/qpopper/Makefile.orig Thu Dec 13 13:59:15 2001 +++ mail/qpopper/Makefile Thu Dec 13 14:09:44 2001 @@ -7,7 +7,7 @@ PORTNAME= qpopper PORTVERSION= 4.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.qualcomm.com/eudora/servers/unix/popper/%SUBDIR%/ \ ftp://sunsite.doc.ic.ac.uk/Mirrors/ftp.qualcomm.com/eudora/servers/unix/popper/%SUBDIR%/ @@ -26,12 +26,16 @@ USE_AUTOCONF= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= LIBS="-lmd -lutil" \ +CONFIGURE_ENV= LIBS="-lmd -lutil -L${LOCALBASE}/lib" \ OS_DEFS="-DSETPROCTITLE ${OS_DEFS}" CONFIGURE_ARGS= --enable-apop=${PREFIX}/etc/qpopper/pop.auth \ --enable-nonauth-file=${POPUSERS_FILE} \ --with-apopuid=pop --without-gdbm \ --enable-keep-temp-drop +.if defined(WITH_DRAC) +CONFIGURE_ARGS+=--with-drac +BUILD_DEPENDS= ${LOCALBASE}/lib/libdrac.a:${PORTSDIR}/mail/drac +.endif PLIST_SUB= EPOPPASSD=${EPOPPASSD} \ POP_USER=${POP_USER} \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 23:59:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E98237B416; Wed, 12 Dec 2001 23:59:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD7wiX90151; Wed, 12 Dec 2001 23:58:44 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 23:58:44 -0800 (PST) From: Message-Id: <200112130758.fBD7wiX90151@freefall.freebsd.org> To: jooji@nickelkid.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32698: update nn port from 6.5.6 to 6.6.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update nn port from 6.5.6 to 6.6.2 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 23:58:37 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32698 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 23:59:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA93337B405; Wed, 12 Dec 2001 23:59:41 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD7tZW89358; Wed, 12 Dec 2001 23:55:35 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 23:55:35 -0800 (PST) From: Message-Id: <200112130755.fBD7tZW89358@freefall.freebsd.org> To: leo@florida.sarang.net, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32702: Update audio/libshout from 1.0.5 to 1.0.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update audio/libshout from 1.0.5 to 1.0.7 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 23:55:15 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32702 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 12 23:59:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78F1D37B417; Wed, 12 Dec 2001 23:59:42 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD7oii88558; Wed, 12 Dec 2001 23:50:44 -0800 (PST) (envelope-from ijliao) Date: Wed, 12 Dec 2001 23:50:44 -0800 (PST) From: Message-Id: <200112130750.fBD7oii88558@freefall.freebsd.org> To: leo@florida.sarang.net, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32703: [MAINTAINER UPDATE] audio/p5-Shout from 0.99 to 1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] audio/p5-Shout from 0.99 to 1.0 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Dec 12 23:50:31 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32703 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 0: 6:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E302937B405; Thu, 13 Dec 2001 00:06:33 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD81PJ90794; Thu, 13 Dec 2001 00:01:25 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 00:01:25 -0800 (PST) From: Message-Id: <200112130801.fBD81PJ90794@freefall.freebsd.org> To: abgoeree@wish.net, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32696: Upgrade databases/adodb to v1.62 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Upgrade databases/adodb to v1.62 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 00:01:08 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32696 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 0: 9:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BA9837B41C; Thu, 13 Dec 2001 00:09:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD86xf95228; Thu, 13 Dec 2001 00:06:59 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 00:06:59 -0800 (PST) From: Message-Id: <200112130806.fBD86xf95228@freefall.freebsd.org> To: matt@kerion.net, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32689: New port: devel/ac-archive A useful set of autoconf macros Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: devel/ac-archive A useful set of autoconf macros State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 00:06:52 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32689 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 0:30:18 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB5B237B416 for ; Thu, 13 Dec 2001 00:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD8U1L98062; Thu, 13 Dec 2001 00:30:01 -0800 (PST) (envelope-from gnats) Date: Thu, 13 Dec 2001 00:30:01 -0800 (PST) Message-Id: <200112130830.fBD8U1L98062@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Ernst de Haan Subject: Re: ports/32223: Port databases/mysql-jdbc-mm is quite outdated Reply-To: Ernst de Haan Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32223; it has been noted by GNATS. From: Ernst de Haan To: Dave Glowacki , freebsd-gnats-submit@FreeBSD.ORG, java@FreeBSD.ORG Cc: Subject: Re: ports/32223: Port databases/mysql-jdbc-mm is quite outdated Date: Thu, 13 Dec 2001 09:28:23 +0100 I'm not going to commit this one because we would be moving from a working port to a broken port. I prefer having an older version that works over a newer version that doesn't work. And would not it be possible to instruct the user to download the specified files from java.sun.com in a way similar to the way the JDK ports ask the user to download the distfiles? Ernst On Wednesday 12 December 2001 21:55, Dave Glowacki wrote: > Here is the latest version of the mysql-jdbc-mm port. > It builds everything from source, but is currently > marked BROKEN because two essential .jar files included > in the distribution are corrupted, so the port cannot > build. I'm hoping that the next version of the > distribution file will contain usable .jar files. > > In order to build the port, a user would need to download > jdbc2_0-stdext.jar from http://java.sun.com/products/jdbc/download.html > under the JDBC 2.0 Optional Package section, and > jta-spec1_0_1.jar from http://java.sun.com/products/jta/. > The JTA jar file must be extracted from the downloaded > zip file and renamed to jta-spec1_0_1.jar > > After both files have been downloaded, the Makefile needs > to be edited to remove the BROKEN line. > > After this, the user should run 'make extract'. When that > finishes, the two downloaded jar files should be copied to > work/mm.mysql-2.0.8/lib. After this, the build will proceed > as normal. > > diff -ru mysql-jdbc-mm.old/Makefile mysql-jdbc-mm/Makefile > --- mysql-jdbc-mm.old/Makefile Fri Jun 1 06:49:08 2001 > +++ mysql-jdbc-mm/Makefile Wed Dec 12 12:18:11 2001 > @@ -5,29 +5,68 @@ > # $FreeBSD: ports/databases/mysql-jdbc-mm/Makefile,v 1.7 2001/06/01 > 11:49:08 jeh Exp $ # > > +BROKEN= Distribution contains bad JAR files. > + > PORTNAME= mysql-jdbc-mm > -PORTVERSION= 1.2c > +PORTVERSION= 2.0.8 > CATEGORIES= databases java > -MASTER_SITES= http://mmmysql.sourceforge.net/dist/ > -DISTNAME= mm.mysql.jdbc-${PORTVERSION} > +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} > +MASTER_SITE_SUBDIR= mmmysql > +DISTNAME= mm.mysql-${PORTVERSION} > +EXTRACT_SUFX= -you-must-unjar-me.jar > > MAINTAINER= dglo@SSEC.WISC.EDU > > -BUILD_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk > +BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk13 \ > + ant:${PORTSDIR}/devel/jakarta-ant > +RUN_DEPENDS= ${JAVA_HOME}/bin/java:${PORTSDIR}/java/jdk13 > + > +JAVA_HOME?= ${PREFIX}/jdk1.3.1 > + > +EXTRACT_CMD= ${JAVA_HOME}/bin/jar > +EXTRACT_BEFORE_ARGS= -xf > > -ALL_TARGET= jar > +post-patch: > + @(cd ${WRKSRC}; ${MV} build.xml build.xml.patched; \ > + ${SED} -e "s;%%WRKSRC%%;${WRKSRC};g" -e "s;%%PREFIX%%;${PREFIX};g" \ > + < build.xml.patched > build.xml) > + @(cd ${WRKSRC}; ${MV} j1c j1c.patched; \ > + ${SED} "s;%%PREFIX%%;${PREFIX};g" < j1c.patched > j1c; \ > + ${CHMOD} 555 j1c) > + > +do-build: > + @(cd ${WRKSRC}; ${SETENV} JAVA_HOME=${JAVA_HOME} ant clean dist) > +.if !defined(NOPORTDOCS) > + @(cd ${WRKSRC}; ${MKDIR} doc; \ > + ${JAVA_HOME}/bin/javadoc -d doc -package \ > + -classpath > ${WRKSRC}:${WRKSRC}/lib/jdbc2_0-stdext.jar:${WRKSRC}/lib/jta-spec1_0_1.jar: >${CLASSPATH} \ + org.gjt.mm.mysql org.gjt.mm.mysql.jdbc2) > +.endif > > do-install: > @${MKDIR} ${PREFIX}/share/java/classes > - @${INSTALL_DATA} ${WRKSRC}/mysql_comp.jar ${LOCALBASE}/share/java/classes > - > -post-install: > + @${INSTALL_DATA} > ${WRKSRC}/build/mm.mysql-${PORTVERSION}/mm.mysql-${PORTVERSION}-bin.jar \ > + ${PREFIX}/share/java/classes/mm.mysql-${PORTVERSION}.jar > + @${INSTALL_DATA} ${WRKSRC}/lib/jdbc2_0-stdext.jar \ > + ${PREFIX}/share/java/classes/ > + @${INSTALL_DATA} ${WRKSRC}/lib/jta-spec1_0_1.jar \ > + ${PREFIX}/share/java/classes/ > .if !defined(NOPORTDOCS) > @${MKDIR} ${PREFIX}/share/doc/mysql-jdbc > @(cd ${WRKSRC}/doc && ${TAR} -c -f - .) \ > > | (cd ${PREFIX}/share/doc/mysql-jdbc && ${TAR} --unlink -x -f -) > > +.endif > + > +post-install: > + @${ECHO} share/java/classes/mm.mysql-${PORTVERSION}.jar >> ${TMPPLIST} > + @${ECHO} share/java/classes/jdbc2_0-stdext.jar >> ${TMPPLIST} > + @${ECHO} share/java/classes/jta-spec1_0_1.jar >> ${TMPPLIST} > +.if !defined(NOPORTDOCS) > @(cd ${PREFIX} \ > && find share/doc/mysql-jdbc -type f -print >> ${TMPPLIST}) > + @${ECHO} "@dirrm share/doc/mysql-jdbc" >> ${TMPPLIST} > .endif > + @${ECHO} "@unexec ${RMDIR} %D/share/java/classes 2>/dev/null || true" >> > ${TMPPLIST} + @${ECHO} "@unexec ${RMDIR} %D/share/java 2>/dev/null || true" > >> ${TMPPLIST} > > .include > diff -ru mysql-jdbc-mm.old/distinfo mysql-jdbc-mm/distinfo > --- mysql-jdbc-mm.old/distinfo Sat Apr 29 20:09:57 2000 > +++ mysql-jdbc-mm/distinfo Fri Nov 30 11:19:55 2001 > @@ -1 +1 @@ > -MD5 (mm.mysql.jdbc-1.2c.tar.gz) = b04aa7f3048c2ebb169ee88ce19a6a4c > +MD5 (mm.mysql-2.0.8-you-must-unjar-me.jar) = > b496f9ad5be7afb21d3f05902b2805a0 diff -ru > mysql-jdbc-mm.old/files/patch-Makefile mysql-jdbc-mm/files/patch-Makefile > --- mysql-jdbc-mm.old/files/patch-Makefile Fri Jun 1 06:49:08 2001 +++ > mysql-jdbc-mm/files/patch-Makefile Wed Dec 12 12:39:45 2001 > @@ -1,21 +0,0 @@ > ---- Makefile.orig Sun May 27 12:10:22 2001 > -+++ Makefile Sun May 27 12:16:18 2001 > -@@ -3,14 +3,16 @@ > - # $Id: Makefile,v 1.2 1998/08/25 04:02:25 mmatthew Exp $ > - # > - > --JAVAC = /usr/local/jdk118/bin/javac > -+JAVA_HOME = /usr/local/jdk1.1.8 > -+JAVAC = JAVA_HOME=$(JAVA_HOME) CLASSPATH= $(JAVA_HOME)/bin/javac > -+JAR = JAVA_HOME=$(JAVA_HOME) CLASSPATH= $(JAVA_HOME)/bin/jar > - JAVAC_FLAGS =-O -g > - > - all: > - $(JAVAC) $(JAVAC_FLAGS) org/gjt/mm/mysql/*.java > - > - jar: all > -- jar -cv0f mysql_uncomp.jar org/gjt/mm/mysql/*.class; jar -cvf > mysql_comp.jar org/gjt/mm/mysql/*.class -+ $(JAR) -cv0f mysql_uncomp.jar > org/gjt/mm/mysql/*.class; $(JAR) -cvf mysql_comp.jar > org/gjt/mm/mysql/*.class - > - clean: > - rm -f org/gjt/mm/mysql/*.class org/gjt/mm/mysql/*~ > diff -ru mysql-jdbc-mm.old/files/patch-build.xml > mysql-jdbc-mm/files/patch-build.xml --- > mysql-jdbc-mm.old/files/patch-build.xml Wed Dec 12 12:39:28 2001 +++ > mysql-jdbc-mm/files/patch-build.xml Fri Nov 30 14:29:35 2001 > @@ -0,0 +1,21 @@ > +--- build.xml.orig Fri Nov 30 11:00:04 2001 > ++++ build.xml Fri Nov 30 11:03:37 2001 > +@@ -1,7 +1,7 @@ > + > + > +- > +- > ++ > ++ > + > + > + > +@@ -51,7 +51,7 @@ > + > + > + executable="${javac.1.1}"> +- ++ + > + > + > diff -ru mysql-jdbc-mm.old/files/patch-j1c mysql-jdbc-mm/files/patch-j1c > --- mysql-jdbc-mm.old/files/patch-j1c Wed Dec 12 12:39:28 2001 > +++ mysql-jdbc-mm/files/patch-j1c Thu Nov 29 18:00:12 2001 > @@ -0,0 +1,10 @@ > +--- j1c.orig Thu Nov 29 16:26:08 2001 > ++++ j1c Thu Nov 29 16:26:36 2001 > +@@ -0,0 +1,7 @@ > ++#!/bin/sh > ++ > ++JAVAC_1=%%PREFIX%%/jdk1.1.8/bin/javac > ++ > ++unset JAVA_HOME LD_LIBRARY_PATH LD_PRELOAD CLASSPATH > ++ > ++exec "$JAVAC_1" "$@" > diff -ru mysql-jdbc-mm.old/pkg-plist mysql-jdbc-mm/pkg-plist > --- mysql-jdbc-mm.old/pkg-plist Sat Jan 29 16:23:06 2000 > +++ mysql-jdbc-mm/pkg-plist Thu Nov 29 18:00:12 2001 > @@ -1 +1 @@ > -share/java/classes/mysql_comp.jar > + > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 0:49:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8972D37B417; Thu, 13 Dec 2001 00:49:36 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBD8edv99229; Thu, 13 Dec 2001 00:40:39 -0800 (PST) (envelope-from petef) Date: Thu, 13 Dec 2001 00:40:39 -0800 (PST) From: Message-Id: <200112130840.fBD8edv99229@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/32790: patch for mail/qpopper with WITH_DRAC Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: patch for mail/qpopper with WITH_DRAC Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: petef Responsible-Changed-When: Thu Dec 13 00:40:32 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32790 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 2: 0:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1ED6537B419 for ; Thu, 13 Dec 2001 02:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDA02t11591; Thu, 13 Dec 2001 02:00:02 -0800 (PST) (envelope-from gnats) Received: from emout1.wish.nl (emout1.wish.nl [212.123.129.74]) by hub.freebsd.org (Postfix) with ESMTP id C737137B431 for ; Thu, 13 Dec 2001 01:58:23 -0800 (PST) Received: from mail1.inside.servers (mail1.INSIDE.servers [10.1.0.5]) by emout1.wish.nl (Postfix) with SMTP id 9794C2129C for ; Thu, 13 Dec 2001 11:22:39 +0100 (CET) Received: (qmail 36687 invoked from network); 13 Dec 2001 09:57:21 -0000 Received: from p1051.nl.wish.net (HELO ) ([212.123.142.27]) (envelope-sender ) by mail1.outside.servers (qmail-ldap-1.03) with SMTP for ; 13 Dec 2001 09:57:21 -0000 Received: (qmail 8815 invoked by uid 1000); 13 Dec 2001 09:58:54 -0000 Message-Id: <20011213095854.8814.qmail@mandark.attica.home> Date: 13 Dec 2001 09:58:54 -0000 From: "Andre Goeree" Reply-To: abgoeree@wish.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32792: Upgrade databases/adodb to v1.63 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32792 >Category: ports >Synopsis: Upgrade databases/adodb to v1.63 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 02:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: ago >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD mandark.attica.home 4.4-STABLE FreeBSD 4.4-STABLE #18: Wed Dec 12 20:37:37 CET 2001 toor@mandark.attica.home:/usr/obj/usr/src/sys/CUSTOM i386 >Description: Upgrade adodb to latest version 1.63 Modified files: Makefile distinfo >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ago/etc/cvsroot/ports/databases/adodb/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- Makefile 11 Dec 2001 16:18:02 -0000 1.22 +++ Makefile 13 Dec 2001 09:50:40 -0000 @@ -6,10 +6,10 @@ # PORTNAME= adodb -PORTVERSION= 1.62 +PORTVERSION= 1.63 CATEGORIES= databases www MASTER_SITES= http://phplens.com/lens/dl/ -DISTNAME= ${PORTNAME}162 +DISTNAME= ${PORTNAME}163 EXTRACT_SUFX= .tgz MAINTAINER= abgoeree@wish.net Index: distinfo =================================================================== RCS file: /home/ago/etc/cvsroot/ports/databases/adodb/distinfo,v retrieving revision 1.8 diff -u -r1.8 distinfo --- distinfo 11 Dec 2001 16:18:02 -0000 1.8 +++ distinfo 13 Dec 2001 09:50:47 -0000 @@ -1 +1 @@ -MD5 (adodb162.tgz) = 53eb0d0b20363524a01b82d7fb56da3e +MD5 (adodb163.tgz) = 01051dfde9a687941f222f5927b86647 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 2: 9:47 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0200F37B405; Thu, 13 Dec 2001 02:09:44 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDA7NJ15902; Thu, 13 Dec 2001 02:07:23 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 02:07:23 -0800 (PST) From: Message-Id: <200112131007.fBDA7NJ15902@freefall.freebsd.org> To: j@pureftpd.org, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32650: port update: ftp/pure-ftpd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: port update: ftp/pure-ftpd State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 02:07:00 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32650 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 2: 9:50 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F333C37B439; Thu, 13 Dec 2001 02:09:47 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDA4Zq12197; Thu, 13 Dec 2001 02:04:35 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 02:04:35 -0800 (PST) From: Message-Id: <200112131004.fBDA4Zq12197@freefall.freebsd.org> To: dom@happygiraffe.net, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32658: MAINTAINER-UPDATE for graphics/cthumb Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: MAINTAINER-UPDATE for graphics/cthumb State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 02:04:19 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32658 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 2:19:47 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 24FA937B41D; Thu, 13 Dec 2001 02:19:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDACnf17074; Thu, 13 Dec 2001 02:12:49 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 02:12:49 -0800 (PST) From: Message-Id: <200112131012.fBDACnf17074@freefall.freebsd.org> To: perky@fallin.lv, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32638: Fix port: www/apache2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Fix port: www/apache2 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 02:12:42 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32638 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 2:19:48 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C8DB37B425; Thu, 13 Dec 2001 02:19:40 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDAHOd18111; Thu, 13 Dec 2001 02:17:24 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 02:17:24 -0800 (PST) From: Message-Id: <200112131017.fBDAHOd18111@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32770: New port: p5-Filter-CBC-0.07 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-Filter-CBC-0.07 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 02:17:17 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32770 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 2:19:52 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3CFB37B417; Thu, 13 Dec 2001 02:19:43 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDAACO16661; Thu, 13 Dec 2001 02:10:12 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 02:10:12 -0800 (PST) From: Message-Id: <200112131010.fBDAACO16661@freefall.freebsd.org> To: stephane.legrand@bigfoot.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32648: Port update for www/jetty Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Port update for www/jetty State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 02:10:05 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32648 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 2:19:53 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA4FC37B41F; Thu, 13 Dec 2001 02:19:45 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDAEMo17354; Thu, 13 Dec 2001 02:14:22 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 02:14:22 -0800 (PST) From: Message-Id: <200112131014.fBDAEMo17354@freefall.freebsd.org> To: wvengen@stack.nl, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32750: Update port: misc/sword-modules Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: misc/sword-modules State-Changed-From-To: open->feedback State-Changed-By: ijliao State-Changed-When: Thu Dec 13 02:14:02 PST 2001 State-Changed-Why: send in diff, please http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32750 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 2:40:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBD1937B417 for ; Thu, 13 Dec 2001 02:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDAe1i21420; Thu, 13 Dec 2001 02:40:01 -0800 (PST) (envelope-from gnats) Date: Thu, 13 Dec 2001 02:40:01 -0800 (PST) Message-Id: <200112131040.fBDAe1i21420@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Willem van Engen Subject: Re: ports/32750: Update port: misc/sword-modules Reply-To: Willem van Engen Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32750; it has been noted by GNATS. From: Willem van Engen To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/32750: Update port: misc/sword-modules Date: Thu, 13 Dec 2001 11:31:35 +0100 I already sent this message, but it didn't seem to have arrived. It must have been a typo in the subject. diff -ruN /usr/ports/misc/sword-modules/Makefile misc/sword-modules/Makefile --- /usr/ports/misc/sword-modules/Makefile Tue Dec 11 10:37:43 2001 +++ misc/sword-modules/Makefile Wed Dec 12 11:53:32 2001 @@ -2,11 +2,11 @@ # Date created: 28 may 2001 # Whom: Willem van Engen # -# $FreeBSD: ports/misc/sword-modules/Makefile,v 1.1 2001/12/11 09:37:43 ijliao Exp $ +# $FreeBSD$ # PORTNAME= sword-modules -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= misc MASTER_SITES= ftp://ftp.crosswire.org/pub/sword/modules/raw/ \ http://www.crosswire.org/sword/download/ftpmirror/pub/sword/modules/raw/ @@ -25,9 +25,9 @@ # it's best not to use checksum. Besides, there is no version number on modules. NO_CHECKSUM= yes +MODULE_FILES= SETDIR= ${WRKDIRPREFIX}${.CURDIR} -MODFILE= ${SETDIR}/selected.mods -MODFILE_WITHDIR=${SETDIR}/selected.mods.withdir +MODFILE= ${SETDIR}/Makefile.sel SCRIPTS_ENV= SETDIR="${SETDIR}" \ TOUCH="${TOUCH}" \ MKDIR="${MKDIR}" \ @@ -40,27 +40,27 @@ BUILD="${PACKAGE_BUILDING}" \ DIST_SUBDIR="${DIST_SUBDIR}" \ MODFILE="${MODFILE}" \ - MODFILE_WITHDIR="${MODFILE_WITHDIR}" \ BATCH="${BATCH}" -MODULE_FILES= `${CAT} ${MODFILE}` -# XXX The regex for _CKSUMFILES in bsd.port.mk can't handle the backquotes -# in MODULE_FILES. It substitutes the command instead of it's result. -_CKSUMFILES= `${CAT} ${MODFILE_WITHDIR}` DIRNAME?= ${BASENAME:S/basename/dirname/} SORT?= sort .if !exists(${MODFILE}) pre-fetch: select +.else +.include <${MODFILE}> +pre-fetch: .endif + @${MAKE} do-fetch # XXX Not sure if this is needed select: @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.swmods post-clean: - @${RM} -f ${MODFILE} ${MODFILE_WITHDIR} + @${RM} -f ${MODFILE} do-install: + @${MKDIR} -p ${PREFIX}/share/sword @for i in ${MODULE_FILES}; do \ ${EXTRACT_CMD} -qo ${DISTDIR}/${DIST_SUBDIR}/$${i} -d ${PREFIX}/share/sword; \ done diff -ruN /usr/ports/misc/sword-modules/scripts/bibles.list misc/sword-modules/scripts/bibles.list --- /usr/ports/misc/sword-modules/scripts/bibles.list Tue Dec 11 10:37:43 2001 +++ misc/sword-modules/scripts/bibles.list Wed Dec 12 01:05:45 2001 @@ -1,83 +1,94 @@ -ASV "1901 American Standard Version" -KJV "King James Version of 1611 w/ Strongs Numbers" -BBE "1965 Bible in Basic English" -Websters "The Webster Bible" -RWebster "Revised 1833 Webster Version (RWEBSTER)" -Weymouth "1912 Weymouth NT" -ORTHJBC "The Orthodox Jewish Brit Chadasha" -Rotherham "The Emphasized Bible by J. B. Rotherham" -YLT "1898 Young's Literal Translation" -ISV "International Standard Version" -Darby "1889 Darby Bible" -AKJV "American King James Version" -RNKJV "Restored Name King James Version" -WEB "The World English Bible" -HNV "The Hebrew Names Version of the World English Bible" -DRA "The Douay-Rheims 1899 American Edition" -LO "The Living Oracles NT" -DR "Douay-Rheims Bible" -Murdock "James Murdock's Translation of the Syriac Peshitta" -JPS "Jewish Publication Society Old Testament" -Twenty "The Twentieth Century New Testament" -Montgomery "Montgomery New Testament" -Byz "1991 Byzantine/Majority Text" -ByzX "1991 Byzantine/Majority Text - Roman Transliterated" -LXX "Septuagint (LXX)" -LXXX "Septuagint (LXX) - Roman Transliterated" -IGNT "Interlinear Greek New Testament" -Tisch "Tischendorf's Eighth Edition GNT" -UMGreek "Unaccented Modern Greek Text" -Stephanus "1550 Stephanus Textus Receptus" -StephanusX "1550 Stephanus Textus Receptus - Roman Transliterated" -WH "1881 Westcott-Hort Greek Text" -WHNU "Westcott-Hort with NA27U4 variants" -Scrivner "1894 Scrivener Textus Receptus" -ScrivnerX "1894 Scrivener Textus Receptus - Roman Transliterated" -Vulgate "Latin Vulgate" -Vulgate_HebPs "Latin Vulgate Psalms from Hebrew" -GerSch "German 1951 Schlachter Bibel" -GerLut "German 1912 Luther" -GerBen "German Bengel NT" -GerLut1545 "German 1545 Luther" -Dan "Danske Bibel (Danish Bible)" -Icelandic "Icelandic Bible" -FinPR "Finnish 1938 Phy Raamattu" -SweSVE "Swedish Bible 1917 New Testament" -Norsk "Norsk (Norwegian) Bible" -ManxGaelic "Gaelic Scripture Portions" -ScotsGaelic "Gaelic Gospel of Mark" -Turkish "Turkish NT" -RomCor "Romanian Cornilescu Version" -CzeNKB "Nova kralicka Bible" -CzeKMS "Preklad KMS Nova smlouva" -CzeBKR "Czech Bible Kralicka" -CzeCEP "Czech Ekumenicky Cesky preklad" -HunKar "Hungarian Karoli" -Swahili "Swahili New Testament" -ChiGU-B5 "Chinese Glory Union Bible (Big5)" -ChiGU-UTF8 "Chinese Glory Union Bible (UTF8)" -ChiGU-GB "Chinese Glory Union Bible (GB2312)" -Viet "1934 Vietnamese Bible" -Korean "Korean Bible" -Maori "Maori Bible" -IndTB "Indonesian Terjemahan Baru" -IndBIS "Indonesian Bahasa Indonesia Sehari-hari" -IndTL "Indonesian Terjemahan Baru" -ArabicLtoR "Arabic Bible - Left to Right" -Arabic "Arabic Bible" -ItaLND "Italian 1991 La Nuova Diodati" -ItaNRV "Italian 1994 La Sacra Bibbia Nuova Riveduta" -SpaSEV "Spanish 1569 Sagradas Escrituras Version Antigua" -SpaRV "Spanish Reina-Valera" -SpaVNT "Spanish Valera 1858 Spanish New Testament Text" -Esperanto "Esperanto Bible" -FreLSG "French 1910 Louis Segond" -FreCrl "French Haitian Creole Version" -Uma "Uma New Testament" -Mel "Melanesian Pidgin Bible" -Latvian "Latvian New Testament" -Xhosa "Xhosa Bible" -Tagalog "Tagalog (John & James)" -Ketchi "Ketchi Bible" -GothicA "Gothic Codex Ambr. A & Mss." -GothicB "Gothic Codex Ambr. B & Car." +AraSVD "Smith & Van Dyke Arabic Bible" +Bulgarian "Bulgarian Bible" +CzeBKR "Czech Bible Kralicka" +CzeCEP "Czech Ekumenicky Cesky preklad" +CzeKMS "Czech Preklad KMS Nova smlouva" +CzeNKB "Czech Nova kralicka Bible" +Dan "Danske Bibel" +GerBen "German Bengel NT" +GerLut "German 1912 Luther" +GerLut1545 "German 1545 Luther" +GerSch "German 1951 Schlachter Bibel" +UMGreek "Unaccented Modern Greek Text" +AKJV "American King James Version" +ASV "1901 American Standard Version" +BBE "1965 Bible in Basic English" +Common "The Common Edition: New Testament" +DR "Douay-Rheims Bible" +DRA "Douay-Rheims 1899 American Edition" +Darby "1889 Darby Bible" +HNV "Hebrew Names Version of the World English Bible" +IGNT "Interlinear Greek New Testament" +ISV "International Standard Version" +JPS "Jewish Publication Society Old Testament" +KJV "King James Version of 1611 w/ Strongs Numbers" +LO "The Living Oracles NT" +Montgomery "Montgomery New Testament" +Murdock "James Murdock's Translation of the Syriac Peshitta" +ORTHJBC "The Orthodox Jewish Brit Chadasha" +RNKJV "Restored Name King James Version" +RSV "Revised Standard Version" +RWebster "Revised 1833 Webster Version" +Rotherham "The Emphasized Bible by J. B. Rotherham" +Twenty "Twentieth Century New Testament" +WEB "World English Bible" +Websters "Webster Bible" +WesleyNT "John Wesley NT" +Weymouth "1912 Weymouth NT" +YLT "1898 Young's Literal Translation" +Esperanto "Esperanto Bible" +SpaRV "Spanish Reina-Valera" +SpaSEV "Spanish 1569 Sagradas Escrituras Version Antigua" +SpaVNT "Spanish 1858 Valera New Testament" +Est "Estonian Bible" +FinPR "Finnish 1938 PhyZ Raamattu" +FreLSG "French 1910 Louis Segond" +GothicA "Gothic Codex Ambr. A & Mss." +GothicB "Gothic Codex Ambr. B & Car." +Byz "1991 Byzantine/Majority Text" +LXX "Septuagint" +LXXM "Septuagint, Morphologically Tagged Rahlfs'" +Scrivner "1894 Scrivener Textus Receptus" +Stephanus "1550 Stephanus Textus Receptus" +Tisch "Tischendorf's Eighth Edition GNT" +WH "1881 Westcott-Hort Greek Text" +WHNU "Westcott-Hort with NA27U4 variants" +ManxGaelic "Manx Gaelic Scripture Portions" +FreCrl "French Haitian Creole Version" +Aleppo "Aleppo Codex" +BHS "Biblia Hebraica Stuttgartensia" +HebModern "Modern Hebrew Bible" +HunKar "Hungarian Karoli" +IndBIS "Indonesian Bahasa Indonesia Sehari-hari" +IndTB "Indonesian Terjemahan Baru" +IndTL "Indonesian Terjemahan Baru" +Icelandic "Icelandic Bible" +ItaLND "Italian 1991 La Nuova Diodati" +ItaNRV "Italian 1994 La Sacra Bibbia Nuova Riveduta" +JapKUG "Japanese JKUG Translation" +JapSNKI "Japanese JSNKI Translation" +Ketchi "Ketchi Bible" +Korean "Korean Bible" +Vulgate "Latin Vulgate" +Vulgate_HebPs "Latin Vulgate Psalms from Hebrew" +Latvian "Latvian New Testament" +Maori "Maori Bible" +DutSVV "Dutch Statenvertaling" +Norsk "Norsk Bibelen" +Mel "Melanesian Pidgin Bible" +Uma "Uma New Testament" +PorAA "Portuguese Joao Ferreira de Almeida Atualizada" +RomCor "Romanian Cornilescu Version" +RST "Russian Synodal Translation" +RusMakarij "The Pentateuch of Moses in Russian" +ScotsGaelic "Scots Gaelic Gospel of Mark" +ALB "Albanian Bible" +SweSVE "Swedish Bible 1917 New Testament" +Swahili "Swahili New Testament" +ThaiKJV "Thai KJV" +Tagalog "Tagalog (John & James)" +Turkish "Turkish NT" +Ukrainian "Ukrainian Bible" +Viet "1934 Vietnamese Bible" +Xhosa "Xhosa Bible" +ChiGU "Chinese Glory Union Bible" diff -ruN /usr/ports/misc/sword-modules/scripts/comments.list misc/sword-modules/scripts/comments.list --- /usr/ports/misc/sword-modules/scripts/comments.list Tue Dec 11 10:37:43 2001 +++ misc/sword-modules/scripts/comments.list Wed Dec 12 01:05:45 2001 @@ -1,12 +1,19 @@ -Personal "Personal Commentary" -Family "Family Bible Notes" +MAK "Matthias Ansorgs Kommentar" +Rieger "Carl Heinrich Riegers Kommentar" +Barnes "Barnes' New Testament Notes" +Clarke "Adam Clarke's Commentary on the Bible" DTN "Darby Translation Notes" +Family "Family Bible Notes" Geneva "Geneva Bible Translation Notes" -MAK "Matthias Ansorgs Kommentar" +JFB "Jamieson Fausset Brown Bible Commentary" +MHC "Matthew Henry's Complete Commentary on the Whole Bible" MHCC "Matthew Henry's Concise Commentary on the Whole Bible" PNT "The People's New Testament" +Personal "Personal Commentary" RWP "Robertson's Word Pictures" -Rieger "Carl Heinrich Riegers Kommentar" +Scofield "Scofield Reference Notes, 1917 Edition" +TDavid "C. H. Spurgeon's Treasury of David" TFG "The Fourfold Gospel and Commentary on Acts of Apostles" TSK "Treasury of Scriptural Knowledge" Wesley "John Wesley's Notes on the Bible" +DutKant "Kanttekeningen Statenvertaling" diff -ruN /usr/ports/misc/sword-modules/scripts/configure.swmods misc/sword-modules/scripts/configure.swmods --- /usr/ports/misc/sword-modules/scripts/configure.swmods Tue Dec 11 10:37:43 2001 +++ misc/sword-modules/scripts/configure.swmods Wed Dec 12 10:34:19 2001 @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: ports/misc/sword-modules/scripts/configure.swmods,v 1.1 2001/12/11 09:37:43 ijliao Exp $ +# $FreeBSD$ SED=${SED:-/usr/bin/sed} MKTEMP=${MKTEMP:-/usr/bin/mktemp} @@ -15,10 +15,11 @@ while [ $choosedone != 1 ]; do /usr/bin/dialog --title "SWORD Modules" --clear \ --menu "\n\ -Please select desired modules in each section:" -1 -1 5 \ +Please select desired modules in each section:" -1 -1 6 \ Bibles "Select biblical texts" \ Lexicons "Select lexicons / dictionaries" \ Comments "Select commentaries" \ +Devotionals "Select daily devotionals" \ Cults "Select cults / unorthodox / questionnable modules" \ Done "Done" \ 2> $tmpfile @@ -42,6 +43,10 @@ dialog_select ${SCRIPTDIR}/comments.list selcomments "$selcomments" ;; + "Devotionals") + dialog_select ${SCRIPTDIR}/devotionals.list seldevotionals "$seldevotionals" + ;; + "Cults") dialog_select ${SCRIPTDIR}/cults.list selcults "$selcults" ;; @@ -117,6 +122,7 @@ selbibles="ASV KJV WEB" sellexicons="StrongsGreek StrongsHebrew" selcomments="Personal TSK" + seldevotionals="" selcults="" fi @@ -128,9 +134,8 @@ mkdir ${SETDIR} fi -rm -f ${MODFILE} ${MODFILE_WITHDIR} -for module in $selbibles $sellexicons $selcomments $selcults; do - echo -n "${module}.zip " >>${MODFILE} - echo -n "${DIST_SUBDIR}/${module}.zip " >>${MODFILE_WITHDIR} +echo "# Automatically generated file - manual changes may be lost" >${MODFILE} +for module in $selbibles $sellexicons $selcomments $selcults $seldevotionals; do + echo "MODULE_FILES += ${module}.zip " >>${MODFILE} done diff -ruN /usr/ports/misc/sword-modules/scripts/devotionals.list misc/sword-modules/scripts/devotionals.list --- /usr/ports/misc/sword-modules/scripts/devotionals.list Thu Jan 1 01:00:00 1970 +++ misc/sword-modules/scripts/devotionals.list Wed Dec 12 01:05:45 2001 @@ -0,0 +1,20 @@ +losung_de_89 "1989 Losung auf deutsch" +losung_de_90 "1990 Losung auf deutsch" +losung_de_91 "1991 Losung auf deutsch" +losung_de_92 "1992 Losung auf deutsch" +losung_de_93 "1993 Losung auf deutsch" +losung_de_94 "1994 Losung auf deutsch" +losung_de_95 "1995 Losung auf deutsch" +losung_de_96 "1996 Losung auf deutsch" +losung_de_97 "1997 Losung auf deutsch" +losung_de_98 "1998 Losung auf deutsch" +losung_de_99 "1999 Losung auf deutsch" +DBD "Day By Day By Grace - Bob Hoekstra" +Daily "Jonathan Bagster's Daily Light on the Daily Path" +SME "C. H. Spurgeon's Morning and Evening: Daily Readins" +losung_en_96 "1996 Watchwords (Losung) in English" +losung_en_97 "1997 Watchwords (Losung) in English" +losung_en_98 "1998 Watchwords (Losung) in English" +losung_en_99 "1999 Watchwords (Losung) in English" +losung_es_99 "1999 Watchwords (Losung) en Castellano" +losung_nl_99 "1999 Watchwords (Losung) in Dutch" diff -ruN /usr/ports/misc/sword-modules/scripts/lexicons.list misc/sword-modules/scripts/lexicons.list --- /usr/ports/misc/sword-modules/scripts/lexicons.list Tue Dec 11 10:37:43 2001 +++ misc/sword-modules/scripts/lexicons.list Wed Dec 12 01:07:01 2001 @@ -1,27 +1,15 @@ +AmTract "American Tract Society Bible Dictionary" BDB "Brown-Driver-Briggs Hebrew Lexicon" Eastons "Easton's Bible Dictionary" Hitchcocks "Hitchcock's Bible Names" ISBE "International Standard Bible Encyclopedia" Naves "Nave's Topical Bible" +Packard "Packard's Morphological Analysis Codes" Smiths "Smith's Bible Dictionary" StrongsGreek "Strong's Greek Bible Dictionary" StrongsHebrew "Strong's Hebrew Bible Dictionary" Thayer "Thayer's Greek Lexicon" Torrey "R. A. Torrey's New Topical Textbook" -losung_de_89 "1989 Losung auf deutsch" -losung_de_90 "1990 Losung auf deutsch" -losung_de_91 "1991 Losung auf deutsch" -losung_de_92 "1992 Losung auf deutsch" -losung_de_93 "1993 Losung auf deutsch" -losung_de_94 "1994 Losung auf deutsch" -losung_de_95 "1995 Losung auf deutsch" -losung_de_96 "1996 Losung auf deutsch" -losung_de_97 "1997 Losung auf deutsch" -losung_de_98 "1998 Losung auf deutsch" -losung_de_99 "1999 Losung auf deutsch" -losung_en_96 "1996 Watchwords (Losung) in English" -losung_en_97 "1997 Watchwords (Losung) in English" -losung_en_98 "1998 Watchwords (Losung) in English" -losung_en_99 "1999 Watchwords (Losung) in English" -losung_es_99 "1999 Watchwords (Losung) en Castellano" -losung_nl_99 "1999 Watchwords (Losung) in Dutch" +WebstersDict "Webster's Revised Unabridged English Dictionary 1913" +GreekHebrew "Greek to Hebrew Dictionary of Septuagint Words" +HebrewGreek "Hebrew to Greek Dictionary of Septuagint Words" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 3: 0:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4828337B417 for ; Thu, 13 Dec 2001 03:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDB01223203; Thu, 13 Dec 2001 03:00:01 -0800 (PST) (envelope-from gnats) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by hub.freebsd.org (Postfix) with ESMTP id 83F4F37B416 for ; Thu, 13 Dec 2001 02:59:15 -0800 (PST) Received: by freebsd.org.ru (Postfix, from userid 1000) id 9D396270; Thu, 13 Dec 2001 13:59:10 +0300 (MSK) Message-Id: <20011213105910.9D396270@freebsd.org.ru> Date: Thu, 13 Dec 2001 13:59:10 +0300 (MSK) From: "Sergey A.Osokin" Reply-To: "Sergey A.Osokin" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32794: update games/gtkballs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32794 >Category: ports >Synopsis: update games/gtkballs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 03:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 4.4-STABLE i386 >Organization: Russian FreeBSD Team >Environment: FreeBSD 4.4-STABLE i386 >Description: update games/gtkballs, changes: - Save/Load game. - Option to turn off "disappearing" animation >How-To-Repeat: >Fix: diff -ruN gtkballs.old/Makefile gtkballs/Makefile --- gtkballs.old/Makefile Thu Dec 13 13:48:31 2001 +++ gtkballs/Makefile Thu Dec 13 13:49:26 2001 @@ -6,7 +6,7 @@ # PORTNAME= gtkballs -PORTVERSION= 2.1 +PORTVERSION= 2.1.1 CATEGORIES= games MASTER_SITES= http://gtkballs.antex.ru/dist/ diff -ruN gtkballs.old/distinfo gtkballs/distinfo --- gtkballs.old/distinfo Thu Dec 13 13:48:31 2001 +++ gtkballs/distinfo Thu Dec 13 13:51:51 2001 @@ -1 +1 @@ -MD5 (gtkballs-2.1.tar.gz) = 562ed86c92a6f3917961a8b3c3d93b12 +MD5 (gtkballs-2.1.1.tar.gz) = 21caf2322f4fe4ceb64faf01ec89a184 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 3: 3:49 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.oek.dk (oek.dk [195.215.62.2]) by hub.freebsd.org (Postfix) with ESMTP id C52D737B419 for ; Thu, 13 Dec 2001 03:03:44 -0800 (PST) Received: from d705.oek.dk ([10.204.7.40] helo=oek.dk) by mail.oek.dk with esmtp (Exim 3.12 #1 (Debian)) id 16ETeL-0003B7-00; Thu, 13 Dec 2001 12:03:37 +0100 Message-ID: <3C188B0F.2010005@oek.dk> Date: Thu, 13 Dec 2001 12:03:43 +0100 From: "Peter I. Hansen" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.6) Gecko/20011121 X-Accept-Language: en-us MIME-Version: 1.0 To: mb@imp.ch Cc: ports@FreeBSD.org Subject: FreeBSD Port: staroffice60-6.0 Content-Type: multipart/mixed; boundary="------------050409020106030609020502" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------050409020106030609020502 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hello I'm trying to make Staroffice6.0 on my FreeBSD 4.4-stable , and i get the attached error, which I've not been able to corrrect. /Peter --------------050409020106030609020502 Content-Type: text/plain; name="t.o" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="t.o" ===> staroffice-6.0 depends on file: /compat/linux/usr/X11R6/lib/libXrender.so.1.0 - not found ===> Verifying install for /compat/linux/usr/X11R6/lib/libXrender.so.1.0 in /usr/ports/emulators/linux_base-7 ===> Installing for linux_base-7.1 kern.fallback_elf_brand: 3 -> 3 glibc-common-2.2.2-10.i386.rpm *** Error code 1 Stop in /usr/ports/emulators/linux_base-7. *** Error code 1 Stop in /usr/ports/emulators/linux_base-7. *** Error code 1 Stop in /usr/ports/emulators/linux_base-7. *** Error code 1 Stop in /usr/ports/editors/staroffice60. *** Error code 1 Stop in /usr/ports/editors/staroffice60. *** Error code 1 Stop in /usr/ports/editors/staroffice60. *** Error code 1 Stop in /usr/ports/editors/staroffice60. *** Error code 1 Stop in /usr/ports/editors/staroffice60. *** Error code 1 Stop in /usr/ports/editors/staroffice60. --------------050409020106030609020502-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 3:19:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEAE837B41A; Thu, 13 Dec 2001 03:19:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDBDXR28467; Thu, 13 Dec 2001 03:13:33 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 03:13:33 -0800 (PST) From: Message-Id: <200112131113.fBDBDXR28467@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32771: Update port: p5-XML-SAX-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: p5-XML-SAX-0.03 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 03:12:45 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32771 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 3:19:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E39937B41B; Thu, 13 Dec 2001 03:19:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDBIuu29192; Thu, 13 Dec 2001 03:18:56 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 03:18:56 -0800 (PST) From: Message-Id: <200112131118.fBDBIuu29192@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32774: Update port: p5-XML-SAX-Expat-0.30 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: p5-XML-SAX-Expat-0.30 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 03:18:09 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32774 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 3:19:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 12D7E37B41C; Thu, 13 Dec 2001 03:19:38 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDBGlk28836; Thu, 13 Dec 2001 03:16:47 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 03:16:47 -0800 (PST) From: Message-Id: <200112131116.fBDBGlk28836@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, wjv@FreeBSD.org Subject: Re: ports/32772: Update port: p5-libxml Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: p5-libxml Responsible-Changed-From-To: freebsd-ports->wjv Responsible-Changed-By: ijliao Responsible-Changed-When: Thu Dec 13 03:16:36 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32772 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 3:29:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C38A037B41A; Thu, 13 Dec 2001 03:29:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDBPKB30086; Thu, 13 Dec 2001 03:25:20 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 03:25:20 -0800 (PST) From: Message-Id: <200112131125.fBDBPKB30086@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32775: New port: p5-Net-Pcap-0.04 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-Net-Pcap-0.04 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 03:25:03 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32775 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 3:39:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 70C9E37B405; Thu, 13 Dec 2001 03:39:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDBaeN31403; Thu, 13 Dec 2001 03:36:40 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 03:36:40 -0800 (PST) From: Message-Id: <200112131136.fBDBaeN31403@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32776: New port: p5-POE-Component-RSS-0.06 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-RSS-0.06 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 03:36:29 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32776 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 3:49:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB53337B419; Thu, 13 Dec 2001 03:49:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDBjsI32468; Thu, 13 Dec 2001 03:45:54 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 03:45:54 -0800 (PST) From: Message-Id: <200112131145.fBDBjsI32468@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32777: New port: p5-POE-Component-Pcap-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-Pcap-0.03 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 03:45:42 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32777 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:16:54 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1055237B41B; Thu, 13 Dec 2001 04:16:50 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCG1D46344; Thu, 13 Dec 2001 04:16:01 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 04:16:01 -0800 (PST) From: Message-Id: <200112131216.fBDCG1D46344@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32779: New port: p5-POE-Component-Client-DNS-0.93 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-Client-DNS-0.93 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 04:15:46 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32779 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:16:55 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C15B437B41D; Thu, 13 Dec 2001 04:16:48 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCD3d45679; Thu, 13 Dec 2001 04:13:03 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 04:13:03 -0800 (PST) From: Message-Id: <200112131213.fBDCD3d45679@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32778: New port: p5-POE-Component-JobQueue-0.51 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-JobQueue-0.51 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 04:12:48 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32778 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:19:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5B4737B41D; Thu, 13 Dec 2001 04:19:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCIaP47053; Thu, 13 Dec 2001 04:18:36 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 04:18:36 -0800 (PST) From: Message-Id: <200112131218.fBDCIaP47053@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32780: New port: p5-POE-Component-Client-HTTP-0.39 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-Client-HTTP-0.39 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 04:18:28 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32780 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:29:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D9C4937B421; Thu, 13 Dec 2001 04:29:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCNNO48647; Thu, 13 Dec 2001 04:23:23 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 04:23:23 -0800 (PST) From: Message-Id: <200112131223.fBDCNNO48647@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32782: New port: p5-POE-Component-IKC-0.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-IKC-0.13 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 04:23:16 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32782 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:29:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C76D37B423; Thu, 13 Dec 2001 04:29:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCKXM47862; Thu, 13 Dec 2001 04:20:33 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 04:20:33 -0800 (PST) From: Message-Id: <200112131220.fBDCKXM47862@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32781: New port: p5-POE-Component-Client-Ping-0.95 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-Client-Ping-0.95 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 04:20:22 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32781 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:39:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DDB6337B41A; Thu, 13 Dec 2001 04:39:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCYZM51159; Thu, 13 Dec 2001 04:34:35 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 04:34:35 -0800 (PST) From: Message-Id: <200112131234.fBDCYZM51159@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32785: New port: p5-POE-Component-IRC-1.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-IRC-1.7 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 04:34:25 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32785 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:39:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 47EF937B41C; Thu, 13 Dec 2001 04:39:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCUUL50026; Thu, 13 Dec 2001 04:30:30 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 04:30:30 -0800 (PST) From: Message-Id: <200112131230.fBDCUUL50026@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32783: New port: p5-POE-Component-DBIAgent-0.11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-DBIAgent-0.11 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 04:30:22 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32783 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:39:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E81F637B420; Thu, 13 Dec 2001 04:39:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCX0350683; Thu, 13 Dec 2001 04:33:00 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 04:33:00 -0800 (PST) From: Message-Id: <200112131233.fBDCX0350683@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32784: New port: p5-POE-Component-Client-UserAgent-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-Client-UserAgent-0.03 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 04:32:52 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32784 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:39:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CAA337B426; Thu, 13 Dec 2001 04:39:38 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCaYk51769; Thu, 13 Dec 2001 04:36:34 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 04:36:34 -0800 (PST) From: Message-Id: <200112131236.fBDCaYk51769@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32786: New port: p5-POE-Component-IKC-ReallySimple-0.01 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-POE-Component-IKC-ReallySimple-0.01 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 04:36:24 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32786 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:40:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F38F37B421 for ; Thu, 13 Dec 2001 04:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCe1Y52274; Thu, 13 Dec 2001 04:40:01 -0800 (PST) (envelope-from gnats) Received: from utopia.leeym.com (utopia.leeym.com [211.72.162.194]) by hub.freebsd.org (Postfix) with ESMTP id B42F237B42A for ; Thu, 13 Dec 2001 04:34:40 -0800 (PST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 1305FC3B00; Thu, 13 Dec 2001 20:34:37 +0800 (CST) Message-Id: <20011213123437.1305FC3B00@utopia.leeym.com> Date: Thu, 13 Dec 2001 20:34:37 +0800 (CST) From: Yen-Ming Lee Reply-To: Yen-Ming Lee To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32795: update port: net/p5-Net-XWhois Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32795 >Category: ports >Synopsis: update port: net/p5-Net-XWhois >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 04:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 4.4-STABLE FreeBSD 4.4-STABLE #54: Sun Nov 25 08:19:18 CST 2001 root@utopia.leeym.com:/usr/obj/usr/src/sys/UTOPIA i386 >Description: rmdir extra directories >How-To-Repeat: http://bento.freebsd.org/errorlogs/4-latest/p5-Net-XWhois-0.82.log >Fix: diff -ruN --exclude CVS /usr/ports/net/p5-Net-XWhois/pkg-plist p5-Net-XWhois/pkg-plist --- /usr/ports/net/p5-Net-XWhois/pkg-plist Sat Jul 7 01:36:08 2001 +++ p5-Net-XWhois/pkg-plist Thu Dec 13 20:31:19 2001 @@ -1,3 +1,5 @@ lib/perl5/site_perl/%%PERL_VER%%/Net/XWhois.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/XWhois/.packlist @unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/XWhois 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Net 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 4:50:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 996F837B420 for ; Thu, 13 Dec 2001 04:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCo1Q53656; Thu, 13 Dec 2001 04:50:01 -0800 (PST) (envelope-from gnats) Received: from utopia.leeym.com (utopia.leeym.com [211.72.162.194]) by hub.freebsd.org (Postfix) with ESMTP id 2E8CF37B41A for ; Thu, 13 Dec 2001 04:46:34 -0800 (PST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 3BAD3C3B00; Thu, 13 Dec 2001 20:46:22 +0800 (CST) Message-Id: <20011213124622.3BAD3C3B00@utopia.leeym.com> Date: Thu, 13 Dec 2001 20:46:22 +0800 (CST) From: Yen-Ming Lee Reply-To: Yen-Ming Lee To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32796: update port: databases/mytop Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32796 >Category: ports >Synopsis: update port: databases/mytop >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 04:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 4.4-STABLE FreeBSD 4.4-STABLE #54: Sun Nov 25 08:19:18 CST 2001 root@utopia.leeym.com:/usr/obj/usr/src/sys/UTOPIA i386 >Description: change RUN_DEPENDS from p5-Mysql to p5-DBD-mysql remove extra directory. >How-To-Repeat: http://bento.freebsd.org/errorlogs/4-latest/mytop-0.9.log http://www.freebsd.org/cgi/query-pr.cgi?pr=32130 >Fix: diff -ruN --exclude CVS /usr/ports/databases/mytop/Makefile mytop/Makefile --- /usr/ports/databases/mytop/Makefile Mon Aug 13 04:00:38 2001 +++ mytop/Makefile Wed Nov 28 08:44:30 2001 @@ -14,7 +14,7 @@ RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Term/ANSIColor.pm:${PORTSDIR}/devel/p5-Term-ANSIColor \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-Mysql + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql PERL_CONFIGURE= yes diff -ruN --exclude CVS /usr/ports/databases/mytop/pkg-plist mytop/pkg-plist --- /usr/ports/databases/mytop/pkg-plist Thu Oct 5 09:35:25 2000 +++ mytop/pkg-plist Thu Dec 13 20:37:30 2001 @@ -1 +1,2 @@ bin/mytop +@unexec rmdir lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/mytop 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 5: 0:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C96137B422 for ; Thu, 13 Dec 2001 05:00:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDD08r54706; Thu, 13 Dec 2001 05:00:08 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85E9637B41C for ; Thu, 13 Dec 2001 04:50:02 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDCo2U53663; Thu, 13 Dec 2001 04:50:02 -0800 (PST) (envelope-from nobody) Message-Id: <200112131250.fBDCo2U53663@freefall.freebsd.org> Date: Thu, 13 Dec 2001 04:50:02 -0800 (PST) From: Hye-Shik Chang To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32798: Update port: irc/py-irclib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32798 >Category: ports >Synopsis: Update port: irc/py-irclib >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 05:00:08 PST 2001 >Closed-Date: >Last-Modified: >Originator: Hye-Shik Chang >Release: FreeBSD 4.4 >Organization: Yonsei University >Environment: FreeBSD akaraka.yonsei.ac.kr 4.4-RC FreeBSD 4.4-RC #1: Sat Sep 1 17:47:31 KST 2001 root@akaraka.yonsei.ac.kr:/usr/src/sys/co mpile/RYOKO i386 >Description: - update to 0.3.2 - change my address >How-To-Repeat: >Fix: diff -ruN py-irclib.orig/Makefile py-irclib/Makefile --- py-irclib.orig/Makefile Mon May 28 02:08:27 2001 +++ py-irclib/Makefile Thu Dec 13 21:48:22 2001 @@ -6,15 +6,13 @@ # PORTNAME= irclib -PORTVERSION= 0.3.1 +PORTVERSION= 0.3.2 CATEGORIES= irc python MASTER_SITES= http://joel.rosdahl.net/hacks/ \ - http://www3.kr.freebsd.org/~perky/distfiles/ \ - http://www2.freebsd-kr.org/distfiles/ \ - ftp://ftp2.python.or.kr/pub/FreeBSD/ports/distfiles/ + http://fallin.lv/distfiles/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= perky@python.or.kr +MAINTAINER= perky@fallin.lv USE_PYTHON= yes @@ -23,6 +21,7 @@ do-build: @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} + @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} do-install: @${INSTALL_DATA} ${WRKSRC}/irclib.py* ${PYTHON_SITELIBDIR}/ diff -ruN py-irclib.orig/distinfo py-irclib/distinfo --- py-irclib.orig/distinfo Thu May 24 22:20:31 2001 +++ py-irclib/distinfo Thu Dec 13 21:44:21 2001 @@ -1 +1 @@ -MD5 (irclib-0.3.1.tar.gz) = 65625f63a01af01da9de548c7ddfc14f +MD5 (irclib-0.3.2.tar.gz) = 6c2e57685f1983f1999ca5d3ca70a7e8 diff -ruN py-irclib.orig/pkg-plist py-irclib/pkg-plist --- py-irclib.orig/pkg-plist Thu May 24 22:20:32 2001 +++ py-irclib/pkg-plist Thu Dec 13 21:45:45 2001 @@ -1,5 +1,3 @@ -%%PYTHON_SITELIBDIR%%/irclib.py -%%PYTHON_SITELIBDIR%%/irclib.pyc share/doc/irclib/index.html share/doc/irclib/indices.html share/doc/irclib/ircbot.Channel.html @@ -21,3 +19,7 @@ share/examples/irclib/irccat2 share/examples/irclib/servermap share/examples/irclib/testbot.py +@cwd %%LOCALBASE%% +%%PYTHON_SITELIBDIR%%/irclib.py +%%PYTHON_SITELIBDIR%%/irclib.pyc +%%PYTHON_SITELIBDIR%%/irclib.pyo >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 5:25: 6 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 551C537B726 for ; Thu, 13 Dec 2001 05:20:58 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDDKMX60644; Thu, 13 Dec 2001 05:20:22 -0800 (PST) (envelope-from gnats) Date: Thu, 13 Dec 2001 05:20:22 -0800 (PST) Message-Id: <200112131320.fBDDKMX60644@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Sergey A. Osokin" Subject: Re: ports/32533: new port: databases/db4 (DB v4) Reply-To: "Sergey A. Osokin" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32533; it has been noted by GNATS. From: "Sergey A. Osokin" To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/32533: new port: databases/db4 (DB v4) Date: Thu, 13 Dec 2001 16:19:17 +0300 On Wed, Dec 05, 2001 at 03:17:48PM +0300, Sergey A.Osokin wrote: [skip] Knock-knock. Anybody home? :-) -- Rgdz, /"\ Sergey Osokin aka oZZ, \ / ASCII RIBBON CAMPAIGN osa@freebsd.org.ru X AGAINST HTML MAIL http://freebsd.org.ru/~osa/ / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 5:25:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FAEC37B70A for ; Thu, 13 Dec 2001 05:20:47 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDDKBt60604; Thu, 13 Dec 2001 05:20:11 -0800 (PST) (envelope-from gnats) Date: Thu, 13 Dec 2001 05:20:11 -0800 (PST) Message-Id: <200112131320.fBDDKBt60604@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Yen-Ming Lee Subject: Re: ports/32796: update port: databases/mytop Reply-To: Yen-Ming Lee Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32796; it has been noted by GNATS. From: Yen-Ming Lee To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/32796: update port: databases/mytop Date: Thu, 13 Dec 2001 21:14:41 +0800 Hi, I graduated this summer, so please change MAINTAINER's email address from leeym@cae.ce.ntu.edu.tw to leeym@leeym.com thanks. -- Yen-Ming Lee [§õ«Û©ú] | http://www.leeym.com/ "That is, full-duplex Ethernet is CSMA/CD without the CS, the MA, or the CD." -- "Gigabit Ethernet", Rich Seifert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 5:41:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0306C37BE0B; Thu, 13 Dec 2001 05:39:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDDXul63053; Thu, 13 Dec 2001 05:33:56 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 05:33:56 -0800 (PST) From: Message-Id: <200112131333.fBDDXul63053@freefall.freebsd.org> To: perky@fallin.lv, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32798: Update port: irc/py-irclib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: irc/py-irclib State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 05:33:48 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32798 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 5:41:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8201337BE0F; Thu, 13 Dec 2001 05:39:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDDVrY62330; Thu, 13 Dec 2001 05:31:53 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 05:31:53 -0800 (PST) From: Message-Id: <200112131331.fBDDVrY62330@freefall.freebsd.org> To: leeym@utopia.leeym.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32796: update port: databases/mytop Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: databases/mytop State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 05:31:42 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32796 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 5:49:56 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F1E3637B624; Thu, 13 Dec 2001 05:29:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDDSjI61858; Thu, 13 Dec 2001 05:28:45 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 05:28:45 -0800 (PST) From: Message-Id: <200112131328.fBDDSjI61858@freefall.freebsd.org> To: leeym@utopia.leeym.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32795: update port: net/p5-Net-XWhois Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: net/p5-Net-XWhois State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 05:28:38 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32795 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 5:50:12 2001 Delivered-To: freebsd-ports@freebsd.org Received: from Terry.Dorm11.NCTU.edu.tw (Terry.Dorm11.NCTU.edu.tw [140.113.192.99]) by hub.freebsd.org (Postfix) with ESMTP id 1596D37BECA for ; Thu, 13 Dec 2001 05:48:44 -0800 (PST) Received: (from ijliao@localhost) by Terry.Dorm11.NCTU.edu.tw (8.11.6/8.11.6) id fBDDn5w04769; Thu, 13 Dec 2001 21:49:05 +0800 (CST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 21:49:05 +0800 From: Ying-Chieh Liao To: "Sergey A. Osokin" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/32533: new port: databases/db4 (DB v4) Message-ID: <20011213134905.GA4168@terry.dragon2.net> References: <200112131320.fBDDKMX60644@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="jRHKVT23PllUwdXP" Content-Disposition: inline In-Reply-To: <200112131320.fBDDKMX60644@freefall.freebsd.org> User-Agent: Mutt/1.3.23.2i X-Operating-System: FreeBSD 5.0-CURRENT i386 X-PGP-Key-Location: http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x11C02382 X-PGP-Key-Fingerprint: 4E98 55CC 2866 7A90 EFD7 9DA5 ACC6 0165 11C0 2382 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --jRHKVT23PllUwdXP Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On =A5|, 12 13, 2001 at 05:20:22 -0800, Sergey A. Osokin wrote: > Knock-knock. Anybody home? :-) I think we need CVS Meister to do a repo-copy from db3 to db4 --=20 Allocate four digits for the year part of a date : a new millennium is comi= ng. --- David Huber --jRHKVT23PllUwdXP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8GLHRrMYBZRHAI4IRAlLJAJ0RkhZykYaWp/1vUHIXx7I4ZR9NPgCg77DA FRSi4M6mikmWKeii5q5ib4I= =DzqP -----END PGP SIGNATURE----- --jRHKVT23PllUwdXP-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 5:57:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from new-smtp1.ihug.com.au (new-smtp1.ihug.com.au [203.109.250.27]) by hub.freebsd.org (Postfix) with ESMTP id 7335A37B41A for ; Thu, 13 Dec 2001 05:57:48 -0800 (PST) Received: from [192.168.0.2] (p274-tnt1.mel.ihug.com.au [203.173.161.20]) by new-smtp1.ihug.com.au (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id AAA31000; Fri, 14 Dec 2001 00:57:27 +1100 X-Authentication-Warning: new-smtp1.ihug.com.au: Host p274-tnt1.mel.ihug.com.au [203.173.161.20] claimed to be [192.168.0.2] Mime-Version: 1.0 X-Sender: jezz@pop.ihug.com.au Message-Id: Date: Fri, 14 Dec 2001 00:57:22 +1100 To: marcus@marcuscom.com From: Jeremy Subject: FreeBSD Port: netatalk-1.5p8_1 Cc: ports@FreeBSD.org Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'm pulling my hair out on this one... I've just completed a clean install of FreeBSD 4.4, ensuring that I installed the requirements of Netatalk 1.5p8 (autoconf, automake, gettext, gmake, libtool, and m4), as reported on http://www.FreeBSD.org/cgi/ports.cgi?query=netatalk&stype=all I am trying to get Netatalk running on the server, and I am logged in as root.... typing ./configure in the expanded tarball directory runs through its script, returns no errors, and then typing 'make' fails. I have just gone through the config.log file, and there are a lot of lines like: configure: failed program was: #line 7371 "configure" #include "confdefs.h" When I do a 'make' I get a stream of lines flowing past on the console, and finally an error after this line: Making all in psorder Making all in config Error expanding embedded variable. *** Error code 1 Stop in /home/jerm/netatalk-1.5pre8. *** Error code 1 Stop in /home/jerm/netatalk-1.5pre8. Obviously I am doing something wrong, but I'm at a loss to find where I'm failing. Doing a 'locate confdefs.h' returns no result, so is this a dependency that I do not have installed? please help... there's not much hair left. regards, Jeremy -- Jeremy Cellular/SMS +61 405 132 654 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 6: 0: 7 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A3B337B417 for ; Thu, 13 Dec 2001 06:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDE01o72072; Thu, 13 Dec 2001 06:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0486437B423 for ; Thu, 13 Dec 2001 05:52:01 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDDq0C71287; Thu, 13 Dec 2001 05:52:00 -0800 (PST) (envelope-from nobody) Message-Id: <200112131352.fBDDq0C71287@freefall.freebsd.org> Date: Thu, 13 Dec 2001 05:52:00 -0800 (PST) From: Sergey Potapov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32800: gated dies on ppp interface up/down Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32800 >Category: ports >Synopsis: gated dies on ppp interface up/down >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 06:00:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Potapov >Release: 4.4-RELEASE >Organization: smart Telekom >Environment: FreeBSD rad-ar.alkor.ru 4.4-RELEASE FreeBSD 4.4-RELEASE #1: Fri Dec 7 19:32:31 MSK 2001 root@rad-ar.alkor.ru:/usr/src/sys/compile/RADAR i386 >Description: I'm using gated with multiple ethernet and ppp interfaces. When ppp interface changes state (up/down) gated aborts: gated[24943]: Assertion failed gated[24943]: file "rt_radix.c", line 562: "rtt" gated[24943]: Abort gated: Version gated-public-3_6 bu... This problem appears after changing FreeBSD from 4.3-RELEASE to 4.4-RELEASE. >How-To-Repeat: Probably run gated on machine with two ppp and to ethernet interfaces, and try to up/dpwn ppp interfaces. This problem seems to be specific to 4.4-RELEASE. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 6: 9:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 747BF37B423; Thu, 13 Dec 2001 06:09:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDE7qM76462; Thu, 13 Dec 2001 06:07:52 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 06:07:52 -0800 (PST) From: Message-Id: <200112131407.fBDE7qM76462@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/31869: New port: ruby-interbase Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: ruby-interbase State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 06:07:44 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31869 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 6:12:56 2001 Delivered-To: freebsd-ports@freebsd.org Received: from oz.plymouth.edu (oz.plymouth.edu [158.136.1.100]) by hub.freebsd.org (Postfix) with ESMTP id 0F72737B41B for ; Thu, 13 Dec 2001 06:12:51 -0800 (PST) Received: (from root@localhost) by oz.plymouth.edu (8.11.6/8.10.0) id fBDECnb90487 for ports@freebsd.org; Thu, 13 Dec 2001 09:12:49 -0500 (EST) Received: from wiz.plymouth.edu (ness.plymouth.edu [158.136.1.140]) by oz.plymouth.edu (8.11.6/8.10.0) with ESMTP id fBDECnW90483 for ; Thu, 13 Dec 2001 09:12:49 -0500 (EST) Message-ID: <3C18B754.5FC8F396@wiz.plymouth.edu> Date: Thu, 13 Dec 2001 09:12:36 -0500 From: Ted Wisniewski Organization: Plymouth State College X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.4-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: Ports changes Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Just a heads up... The ports changes page does not reflect any changes in the ports tree over the last few weeks. I know there have been additions (as seen via cvsup). If help is needed in this area, I could help out. I would just need to know how you would like me to help. -Ted ------------------------ Ted Wisniewski Systems Manager Plymouth State College To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 6:19:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 69C8737B41F; Thu, 13 Dec 2001 06:19:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDEBIP77221; Thu, 13 Dec 2001 06:11:18 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 06:11:18 -0800 (PST) From: Message-Id: <200112131411.fBDEBIP77221@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/32166: Installing avifile emphasizes problems with autoconf and automake Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Installing avifile emphasizes problems with autoconf and automake Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: ijliao Responsible-Changed-When: Thu Dec 13 06:09:58 PST 2001 Responsible-Changed-Why: the same as pr/32682, so please also take care of this one http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32166 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 6:30:48 2001 Delivered-To: freebsd-ports@freebsd.org Received: from voi.aagh.net (pc1-hart4-0-cust168.mid.cable.ntl.com [62.254.84.168]) by hub.freebsd.org (Postfix) with ESMTP id E4FA037B422; Thu, 13 Dec 2001 06:30:33 -0800 (PST) Received: from freaky by voi.aagh.net with local (Exim 3.33 #1) id 16E7io-0007JW-00; Wed, 12 Dec 2001 11:38:46 +0000 Date: Wed, 12 Dec 2001 11:38:46 +0000 From: Thomas Hurst To: Ernst de Haan Cc: ports@freebsd.org, knu@idaemons.org Subject: Re: Automatically portupgrading Message-ID: <20011212113846.GA27886@voi.aagh.net> References: <200112121101.fBCB1GY80288@zaphod.euronet.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200112121101.fBCB1GY80288@zaphod.euronet.nl> User-Agent: Mutt/1.3.24i Organization: Not much. X-Operating-System: FreeBSD/4.4-STABLE (i386) X-Uptime: 11:30AM up 28 days, 13:32, 4 users, load averages: 2.11, 2.06, 2.01 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * Ernst de Haan (znerd@freebsd.org) wrote: > I'm running pkgdepfix, and I get a lot of messages that I'm having old > versions of packages. > > Can I automatically run portupgrade for all of my packages somehow? Since the package name you provide is a glob, portupgrade '*' should do the trick (you need the quotes to stop your shell expanding it to the contents of ./*) It's probably a good idea to stick to upgrading specific things and their dependencies though, i.e. portupgrade -rR so you can keep track of what's happening. This way is likely to expose redundant ports by not upgrading them too :) -- Thomas 'Freaky' Hurst - freaky@aagh.net - http://www.aagh.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 6:34:37 2001 Delivered-To: freebsd-ports@freebsd.org Received: from smtp2.nifty.ne.jp (smtp2.nifty.ne.jp [202.219.63.54]) by hub.freebsd.org (Postfix) with ESMTP id CD5E437B41F for ; Thu, 13 Dec 2001 06:34:32 -0800 (PST) Received: from there (hcou016n090.ppp.infoweb.ne.jp [202.233.192.90]) by smtp2.nifty.ne.jp (8.9.3+3.2W/3.7W-991025) with SMTP id XAA04536; Thu, 13 Dec 2001 23:34:26 +0900 (JST) Message-Id: <200112131434.XAA04536@smtp2.nifty.ne.jp> Content-Type: text/plain; charset="iso-2022-jp" From: hoge hoge man To: seiken@ARGV.AC Subject: FreeBSD Port: ja-gn-gnspool-1.40 Date: Thu, 13 Dec 2001 23:34:59 +0900 X-Mailer: KMail [version 1.3] Cc: ports@FreeBSD.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org FreeBSD4.4$B$N%f!<%6!<$G$9!#(B mnews + gnspool$B$r;H$C$F$$$^$9!#(B FreeBSD4.4$B$r?75,%$%s%9%H!<%k$7$?$N$G!"(Bmnew + gnspool$B$r(Bports$B$G(Bmake$B$7$h$&$H$7$^$7$?!#(B #cd /usr/ports/mnews-gnspool #make #make install $B$3$N;~E@$G!"(Bgn-gnspool$B$N(Bmake$B$,;O$^$j$^$9$,!"(Bmake$B$K<:GT$7$^$7$?!#(B gn-gnspool$B$N(Bclient.c$B$r=$@5$7$J$$$H!"(Bmake$B$G$-$^$;$s$G$7$?!#(B #if defined(WINSOCK) unsigned long PASCAL FAR inet_addr (); #else /* WINSOCK */ # ifndef ESPX # ifndef WIN32 # ifndef linux /* $B=$@52U=j(B unsigned long inet_addr(); */ # endif /* (!linux) */ # endif /* (!WIN32) */ # endif /* (!ESPX) */ #endif /* WINSOCK */ $B0J>e!"$4Js9p$^$G!#(B To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 6:40:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C34A37B421 for ; Thu, 13 Dec 2001 06:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDEe1W21854; Thu, 13 Dec 2001 06:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9403B37B41C for ; Thu, 13 Dec 2001 06:35:50 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDEZoK94510; Thu, 13 Dec 2001 06:35:50 -0800 (PST) (envelope-from nobody) Message-Id: <200112131435.fBDEZoK94510@freefall.freebsd.org> Date: Thu, 13 Dec 2001 06:35:50 -0800 (PST) From: Yoichi ASAI To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32801: Update port: japanese/mozilla-jlp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32801 >Category: ports >Synopsis: Update port: japanese/mozilla-jlp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 06:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yoichi ASAI >Release: FreeBSD 4.4-STABLE >Organization: >Environment: >Description: Update port: japanese/mozilla-jlp >How-To-Repeat: >Fix: diff -urN mozilla-jlp.orig/Makefile mozilla-jlp/Makefile --- mozilla-jlp.orig/Makefile Mon Dec 3 11:24:46 2001 +++ mozilla-jlp/Makefile Thu Dec 13 23:33:25 2001 @@ -7,14 +7,14 @@ PORTNAME= mozilla PORTVERSION= 0.9.6 -#PORTREVISION= 1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= japanese www MASTER_SITES= http://www.mozilla.gr.jp/jlp/ \ http://www.ash.ne.jp/~mal/mozilla/ \ http://dev.jp/ PKGNAMESUFFIX= -jlp -DISTNAME= ${PORTNAME}${PORTVERSION}-jajppack-v01a +DISTNAME= ${PORTNAME}${PORTVERSION}-jajppack-v02 EXTRACT_SUFX= .xpi MAINTAINER= yatt@msc.biglobe.ne.jp @@ -85,5 +85,6 @@ (cd ${PREFIX}/lib/mozilla; \ ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regchrome) + @${CAT} ${PKGMESSAGE} .include diff -urN mozilla-jlp.orig/distinfo mozilla-jlp/distinfo --- mozilla-jlp.orig/distinfo Mon Dec 3 11:24:46 2001 +++ mozilla-jlp/distinfo Thu Dec 13 23:26:28 2001 @@ -1 +1 @@ -MD5 (mozilla0.9.6-jajppack-v01a.xpi) = 4b500e2a8cc17e0434bf4ca05b154720 +MD5 (mozilla0.9.6-jajppack-v02.xpi) = 525ebb67fb5bcc0ab5e6e1d2e433873b diff -urN mozilla-jlp.orig/pkg-message mozilla-jlp/pkg-message --- mozilla-jlp.orig/pkg-message Thu Jan 1 09:00:00 1970 +++ mozilla-jlp/pkg-message Thu Dec 13 23:28:40 2001 @@ -0,0 +1,10 @@ +******************************** +If your XIM wouldn't work propery, try to make a file + +"${HOME}/.mozilla/${USER}/*.slt/user.js" + +with below content; +-- +user_pref("xim.input_style", "over-the-spot") +-- +******************************** diff -urN mozilla-jlp.orig/pkg-plist mozilla-jlp/pkg-plist --- mozilla-jlp.orig/pkg-plist Thu Dec 6 22:31:59 2001 +++ mozilla-jlp/pkg-plist Thu Dec 13 23:33:01 2001 @@ -2,7 +2,6 @@ @exec mv %D/lib/mozilla/chrome/all-locales.rdf %D/lib/mozilla/chrome/all-locales.rdf.orig @exec mv %D/lib/mozilla/chrome/all-packages.rdf %D/lib/mozilla/chrome/all-packages.rdf.orig @exec mv %D/lib/mozilla/chrome/all-skins.rdf %D/lib/mozilla/chrome/all-skins.rdf.orig -@exec mv %D/lib/mozilla/chrome/user-locales.rdf %D/lib/mozilla/chrome/user-locales.rdf.orig @exec mv %D/lib/mozilla/chrome/user-skins.rdf %D/lib/mozilla/chrome/user-skins.rdf.orig @exec mv %D/lib/mozilla/chrome/installed-chrome.txt %D/lib/mozilla/chrome/installed-chrome.txt.orig @exec mv %D/lib/mozilla/defaults/pref/unix.js %D/lib/mozilla/defaults/pref/unix.js.orig @@ -94,7 +93,6 @@ @unexec mv %D/lib/mozilla/chrome/all-locales.rdf.orig %D/lib/mozilla/chrome/all-locales.rdf @unexec mv %D/lib/mozilla/chrome/all-packages.rdf.orig %D/lib/mozilla/chrome/all-packages.rdf @unexec mv %D/lib/mozilla/chrome/all-skins.rdf.orig %D/lib/mozilla/chrome/all-skins.rdf -@unexec mv %D/lib/mozilla/chrome/user-locales.rdf.orig %D/lib/mozilla/chrome/user-locales.rdf @unexec mv %D/lib/mozilla/chrome/user-skins.rdf.orig %D/lib/mozilla/chrome/user-skins.rdf @unexec mv %D/lib/mozilla/chrome/installed-chrome.txt.orig %D/lib/mozilla/chrome/installed-chrome.txt @unexec mv %D/lib/mozilla/defaults/pref/unix.js.orig %D/lib/mozilla/defaults/pref/unix.js >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 6:52:36 2001 Delivered-To: freebsd-ports@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id EBD2137B416; Thu, 13 Dec 2001 06:52:34 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 3C48F9B08; Thu, 13 Dec 2001 09:50:33 -0500 (EST) Date: Thu, 13 Dec 2001 09:50:33 -0500 From: Will Andrews To: Jim Mock Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/mail/mutt-devel/files patch-14 Message-ID: <20011213095033.F30626@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: Jim Mock , ports@FreeBSD.org References: <200112111109.fBBB9Jv78403@freefall.freebsd.org> <20011212164738.GC65834@shall.anarcat.dyndns.org> <20011212203619.GA17909@helios.soupnazi.org> <20011212171808.T73885@bsd.havk.org> <20011213013354.GA63757@helios.soupnazi.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011213013354.GA63757@helios.soupnazi.org> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Dec 12, 2001 at 05:33:54PM -0800, Jim Mock wrote: > > > This is a cosmetic fix only. It doesn't add or remove any > > > functionality. > > > > It is a cosmetic fix that fixes a bug and deserves a PORTREVISION > > bump IMHO. > > Fair enough. Speaking of which, maybe we need to adopt a policy that more aggressively uses PORTREVISION/PORTEPOCH? Does it really hurt anything to bump these numbers? -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 7:31:33 2001 Delivered-To: freebsd-ports@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id EB4EB37B419 for ; Thu, 13 Dec 2001 07:31:26 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id fBDFVdA81593; Thu, 13 Dec 2001 10:31:41 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Thu, 13 Dec 2001 10:31:39 -0500 (EST) From: Joe Clarke To: Jeremy Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: netatalk-1.5p8_1 In-Reply-To: Message-ID: <20011213103057.O76973-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Why don't you make sure your ports tree is up-to-date, then: # cd /usr/ports/net/netatalk # make all install clean I've taken care of all the hard stuff for you. Joe On Fri, 14 Dec 2001, Jeremy wrote: > I'm pulling my hair out on this one... > > I've just completed a clean install of FreeBSD 4.4, ensuring that I installed the requirements of Netatalk 1.5p8 (autoconf, automake, gettext, gmake, libtool, and m4), as reported on http://www.FreeBSD.org/cgi/ports.cgi?query=netatalk&stype=all > > I am trying to get Netatalk running on the server, and I am logged in as root.... typing ./configure in the expanded tarball directory runs through its script, returns no errors, and then typing 'make' fails. > > I have just gone through the config.log file, and there are a lot of lines like: > configure: failed program was: > #line 7371 "configure" > #include "confdefs.h" > > When I do a 'make' I get a stream of lines flowing past on the console, and finally an error after this line: > Making all in psorder > Making all in config > Error expanding embedded variable. > *** Error code 1 > > Stop in /home/jerm/netatalk-1.5pre8. > *** Error code 1 > > Stop in /home/jerm/netatalk-1.5pre8. > > Obviously I am doing something wrong, but I'm at a loss to find where I'm failing. Doing a 'locate confdefs.h' returns no result, so is this a dependency that I do not have installed? > > please help... there's not much hair left. > > regards, > Jeremy > -- > Jeremy > Cellular/SMS +61 405 132 654 > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 7:40:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2376137B419 for ; Thu, 13 Dec 2001 07:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDFe1h08448; Thu, 13 Dec 2001 07:40:01 -0800 (PST) (envelope-from gnats) Received: from phobos.raisdorf.net (phobos.raisdorf.net [195.244.235.251]) by hub.freebsd.org (Postfix) with ESMTP id 4C1B937B416 for ; Thu, 13 Dec 2001 07:39:09 -0800 (PST) Received: from localhost (localhost [[UNIX: localhost]]) by phobos.raisdorf.net (8.11.6/8.11.6) id fBDFTXA05690; Thu, 13 Dec 2001 16:29:33 +0100 (CET) Message-Id: <200112131529.fBDFTXA05690@phobos.raisdorf.net> Date: Thu, 13 Dec 2001 16:29:33 +0100 (CET) From: Oliver Lehmann Reply-To: Oliver Lehmann To: FreeBSD-gnats-submit@freebsd.org Cc: Oliver Lehmann X-Send-Pr-Version: 3.113 Subject: ports/32802: update port: graphics/xawtv Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32802 >Category: ports >Synopsis: update port: graphics/xawtv >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 07:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Oliver Lehmann >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD localhost138.brainwire.de 4.4-STABLE FreeBSD 4.4-STABLE #5: Wed Oct 17 21:33:39 CEST 2001 olivleh1@localhost138.brainwire.de:/usr/obj/usr/src/sys/LOCALHOST138 i386 >Description: obsolte PR's: [2001/09/02] ports/30264 greid Update port: graphics/xawtv [2001/11/01] ports/31691 greid update port: graphics/xawtv [2001/12/10] ports/32673 greid update port: graphics/xawtv >How-To-Repeat: >Fix: diff -ruN xawtv.old/Makefile xawtv/Makefile --- xawtv.old/Makefile Thu Dec 13 16:07:08 2001 +++ xawtv/Makefile Thu Dec 13 15:26:52 2001 @@ -6,9 +6,10 @@ # PORTNAME= xawtv -PORTVERSION= 3.37 +PORTVERSION= 3.66 CATEGORIES= graphics -MASTER_SITES= http://www.strusel007.de/linux/xawtv/ +WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/} +MASTER_SITES= http://bytesex.org/xawtv/ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= greid@ukug.uk.freebsd.org @@ -17,27 +18,34 @@ png.5:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg -WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/} +CONFIGURE_ARGS= --prefix=${PREFIX} -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes USE_X_PREFIX= yes -SEDFILES= . font i2c man src radio contrib/cc webcam oldstuff/vtx \ + +FILES_CFLAGS= . font i2c man src radio webcam oldstuff/vtx \ libng libvbi http +FILES_X11BASE= configure Make.config.in -MAN1= alevtd.1 fbtv.1 propwatch.1 rootv.1 showriff.1 v4l-conf.1 \ - v4lctl.1 webcam.1 xawtv-remote.1 xawtv.1 -post-configure: -.for M in ${SEDFILES} - @(${SED} -e 's,^CFLAGS=,CFLAGS+=,g' ${WRKSRC}/$M/Makefile | \ - ${SED} -e 's,-O2,,g' > ${WRKSRC}/foo && ${MV} ${WRKSRC}/foo ${WRKSRC}/$M/Makefile) +MAN1= alevtd.1 dump-mixers.1 fbtv.1 motv.1 ntsc-cc.1 propwatch.1 record.1 \ + rootv.1 scantv.1 showriff.1 \ + streamer.1 subtitles.1 ttv.1 v4lctl.1 \ + webcam.1 xawtv-remote.1 xawtv.1 +MAN5= xawtvrc.5 +MAN8= v4l-conf.8 + +post-patch: +.for i in ${FILES_X11BASE} + ${PERL} -pi -e "s|%%X11BASE%%|${X11BASE}|g" ${WRKSRC}/$i .endfor -post-install: -.for F in led-koi8.pcf led-latin1.pcf led-latin2.pcf - @gzip ${PREFIX}/lib/X11/fonts/misc/$F +post-configure: +.for i in ${FILES_CFLAGS} + ${PERL} -pi -e "s|^CFLAGS=|CFLAGS+=|g" ${WRKSRC}/$i/Makefile .endfor .include diff -ruN xawtv.old/distinfo xawtv/distinfo --- xawtv.old/distinfo Thu Dec 13 16:07:08 2001 +++ xawtv/distinfo Thu Dec 13 15:27:26 2001 @@ -1 +1 @@ -MD5 (xawtv_3.37.tar.gz) = a264eddc95fa92b83b14be386abc7be8 +MD5 (xawtv_3.66.tar.gz) = 8783e6ca4530d64e0877c40b8a0bac97 diff -ruN xawtv.old/files/patch-configure xawtv/files/patch-configure --- xawtv.old/files/patch-configure Thu Jan 1 01:00:00 1970 +++ xawtv/files/patch-configure Thu Dec 13 15:29:51 2001 @@ -0,0 +1,24 @@ +--- configure.orig Tue Dec 11 16:40:06 2001 ++++ configure Thu Dec 13 15:29:34 2001 +@@ -2848,19 +2848,13 @@ + + echo $ac_n "checking for X11 config directory""... $ac_c" 1>&6 + echo "configure:2851: checking for X11 config directory" >&5 +-x11conf=/usr/X11R6/lib/X11 +-if test -d /etc/X11; then +- x11conf=/etc/X11 +-fi ++x11conf=%%X11BASE%%/lib/X11 + echo "$ac_t""$x11conf" 1>&6 + + + echo $ac_n "checking for X11 app-defaults directory""... $ac_c" 1>&6 + echo "configure:2860: checking for X11 app-defaults directory" >&5 +-resdir=/usr/X11R6/lib/X11 +-if test -d /etc/X11/app-defaults; then +- resdir=/etc/X11 +-fi ++resdir=%%X11BASE%%/lib/X11 + echo "$ac_t""$resdir/app-defaults" 1>&6 + + diff -ruN xawtv.old/files/patch-font::Makefile.in xawtv/files/patch-font::Makefile.in --- xawtv.old/files/patch-font::Makefile.in Thu Dec 13 16:07:08 2001 +++ xawtv/files/patch-font::Makefile.in Thu Dec 13 15:26:32 2001 @@ -1,9 +1,10 @@ ---- font/Makefile.in.orig Sat Mar 3 22:50:32 2001 -+++ font/Makefile.in Sat Mar 3 22:50:44 2001 -@@ -16,7 +16,6 @@ +--- font/Makefile.in.orig Sun Sep 2 12:01:30 2001 ++++ font/Makefile.in Sun Sep 2 12:01:45 2001 +@@ -23,7 +23,6 @@ done - if test "$(ROOT)" = ""; then \ - (cd $(FONTDIR); mkfontdir); \ -- xset fp rehash; \ - true; \ + if test "$(DESTDIR)" = ""; then \ + (cd $(fontdir); mkfontdir); \ +- xset fp rehash || true; \ fi + + diff -ruN xawtv.old/files/patch-src::Makefile.in xawtv/files/patch-src::Makefile.in --- xawtv.old/files/patch-src::Makefile.in Thu Jan 1 01:00:00 1970 +++ xawtv/files/patch-src::Makefile.in Thu Dec 13 15:44:36 2001 @@ -0,0 +1,61 @@ +--- src/Makefile.in.orig Tue Dec 11 16:39:55 2001 ++++ src/Makefile.in Thu Dec 13 15:43:55 2001 +@@ -29,7 +29,7 @@ + -L@x_libraries@ @FSLIB@ -lm + + TTV_OBJS = aa.o channel-no-x11.o $(COMMON_OBJS) +-TTV_LIBS = $(GFX_LIBS) $(AA_LIBS) ++TTV_LIBS = $(GFX_LIBS) $(AA_LIBS) -laa + + V4LCTL_OBJS = v4lctl.o channel-no-x11.o xv.o $(COMMON_OBJS) + V4LCTL_LIBS = $(GFX_LIBS) $(ATHENA_LIBS) +@@ -68,25 +68,25 @@ + # build rules + + xawtv: $(XAWTV_OBJS) +- $(CC) $(CFLAGS) -o $@ $(XAWTV_OBJS) $(XAWTV_LIBS) -ldl -Wl,-E ++ $(CC) $(CFLAGS) -o $@ $(XAWTV_OBJS) $(XAWTV_LIBS) -Wl,-E + + motv: $(MOTV_OBJS) +- $(CC) $(CFLAGS) -o $@ $(MOTV_OBJS) $(MOTV_LIBS) -ldl -Wl,-E ++ $(CC) $(CFLAGS) -o $@ $(MOTV_OBJS) $(MOTV_LIBS) -Wl,-E + + fbtv: $(FBTV_OBJS) +- $(CC) $(CFLAGS) -o $@ $(FBTV_OBJS) $(FBTV_LIBS) -ldl -Wl,-E ++ $(CC) $(CFLAGS) -o $@ $(FBTV_OBJS) $(FBTV_LIBS) -Wl,-E + + ttv: $(TTV_OBJS) +- $(CC) $(CFLAGS) -o $@ $(TTV_OBJS) $(TTV_LIBS) -ldl -Wl,-E ++ $(CC) $(CFLAGS) -o $@ $(TTV_OBJS) $(TTV_LIBS) -Wl,-E + + v4lctl: $(V4LCTL_OBJS) +- $(CC) $(CFLAGS) -o $@ $(V4LCTL_OBJS) $(V4LCTL_LIBS) -ldl -Wl,-E ++ $(CC) $(CFLAGS) -o $@ $(V4LCTL_OBJS) $(V4LCTL_LIBS) -Wl,-E + + streamer: $(STREAMER_OBJS) +- $(CC) $(CFLAGS) -o $@ $(STREAMER_OBJS) $(STREAMER_LIBS) -ldl -Wl,-E ++ $(CC) $(CFLAGS) -o $@ $(STREAMER_OBJS) $(STREAMER_LIBS) -Wl,-E + + scantv: $(SCANTV_OBJS) +- $(CC) $(CFLAGS) -o $@ $(SCANTV_OBJS) $(SCANTV_LIBS) -ldl -Wl,-E ++ $(CC) $(CFLAGS) -o $@ $(SCANTV_OBJS) $(SCANTV_LIBS) -Wl,-E + + xvideo: xvideo.o + $(CC) $(CFLAGS) -o $@ xvideo.o $(ATHENA_LIBS) +@@ -124,12 +124,14 @@ + install-dirs: + $(INSTALL_DIR) $(bindir) + $(INSTALL_DIR) $(resdir)/app-defaults +- $(INSTALL_DIR) $(resdir)/de/app-defaults ++ for lang in $(LANG); do \ ++ $(INSTALL_DIR) $(resdir)/$$lang/app-defaults;\ ++ done + + install-common: + $(INSTALL_DIR) $(bindir) + $(INSTALL_DIR) $(resdir)/app-defaults +- $(INSTALL_PROGRAM) $(srcdir)/subtitles $(bindir) ++ $(INSTALL_DATA) -m 555 $(srcdir)/subtitles $(bindir) + $(INSTALL_PROGRAM) -s xawtv-remote $(bindir) + $(INSTALL_PROGRAM) -s streamer $(bindir) + $(INSTALL_PROGRAM) -s v4lctl $(bindir) diff -ruN xawtv.old/files/patch-src::motif.c xawtv/files/patch-src::motif.c --- xawtv.old/files/patch-src::motif.c Thu Jan 1 01:00:00 1970 +++ xawtv/files/patch-src::motif.c Thu Dec 13 15:28:19 2001 @@ -0,0 +1,22 @@ +--- src/motif.c.orig Mon Sep 17 00:42:53 2001 ++++ src/motif.c Mon Sep 17 00:45:40 2001 +@@ -24,6 +24,19 @@ + # include + #endif + ++#if defined(__FreeBSD__) ++typedef struct mixer_info ++{ ++ char id[16]; ++ char name[32]; ++ int modify_counter; ++ int fillers[10]; ++} mixer_info; ++ ++ ++# define SOUND_MIXER_INFO _IOR ('M', 101, mixer_info) ++#endif ++ + #include + #include + #include diff -ruN xawtv.old/files/patch-src::xt.c xawtv/files/patch-src::xt.c --- xawtv.old/files/patch-src::xt.c Thu Jan 1 01:00:00 1970 +++ xawtv/files/patch-src::xt.c Thu Dec 13 15:28:22 2001 @@ -0,0 +1,16 @@ +--- src/xt.c.orig Mon Sep 17 00:39:58 2001 ++++ src/xt.c Mon Sep 17 00:40:07 2001 +@@ -27,6 +27,13 @@ + # include + #endif + ++#if defined(__FreeBSD__) ++#define VIDEO_SOUND_MONO 1 ++#define VIDEO_SOUND_STEREO 2 ++#define VIDEO_SOUND_LANG1 4 ++#define VIDEO_SOUND_LANG2 8 ++#endif ++ + #include "config.h" + + #include diff -ruN xawtv.old/files/patch-webcam::Makefile.in xawtv/files/patch-webcam::Makefile.in --- xawtv.old/files/patch-webcam::Makefile.in Thu Jan 1 01:00:00 1970 +++ xawtv/files/patch-webcam::Makefile.in Thu Dec 13 15:46:02 2001 @@ -0,0 +1,11 @@ +--- webcam/Makefile.in.orig Thu Dec 13 15:45:27 2001 ++++ webcam/Makefile.in Thu Dec 13 15:45:39 2001 +@@ -15,7 +15,7 @@ + all build: $(PROGS) + + webcam: $(OBJS) +- $(CC) $(CFLAGS) -o $@ $(OBJS) ../libng/libng.a $(LDLIBS) -ldl -Wl,-E ++ $(CC) $(CFLAGS) -o $@ $(OBJS) ../libng/libng.a $(LDLIBS) -Wl,-E + + install: all + $(INSTALL_DIR) $(bindir) diff -ruN xawtv.old/pkg-descr xawtv/pkg-descr --- xawtv.old/pkg-descr Thu Dec 13 16:07:08 2001 +++ xawtv/pkg-descr Thu Dec 13 15:26:33 2001 @@ -1,7 +1,7 @@ This is a _simple_ xaw-based TV Program which uses the bttv driver or video4linux (included in 2.1.x). Copy Policy is GNU GPL. -WWW: http://www.strusel007.de/linux/xawtv/ +WWW: http://bytesex.org/xawtv/ - George Reid greid@ukug.uk.freebsd.org diff -ruN xawtv.old/pkg-plist xawtv/pkg-plist --- xawtv.old/pkg-plist Thu Dec 13 16:07:08 2001 +++ xawtv/pkg-plist Thu Dec 13 15:26:33 2001 @@ -1,16 +1,26 @@ bin/alevtd bin/dump-mixers +bin/ntsc-cc bin/propwatch bin/record bin/rootv bin/scantv bin/showriff bin/streamer +bin/subtitles +bin/ttv bin/v4lctl bin/webcam bin/xawtv bin/xawtv-remote -lib/X11/app-defaults/Xawtv -lib/X11/fonts/misc/led-koi8.pcf.gz -lib/X11/fonts/misc/led-latin1.pcf.gz -lib/X11/fonts/misc/led-latin2.pcf.gz +lib/X11/app-defaults/MoTV +lib/X11/fonts/misc/led-iso8859-1.pcf.gz +lib/X11/fonts/misc/led-iso8859-2.pcf.gz +lib/X11/fonts/misc/led-koi8-r.pcf.gz +lib/X11/de/app-defaults/MoTV +lib/X11/it/app-defaults/MoTV +@dirrm lib/X11/de/app-defaults +@dirrm lib/X11/de +@dirrm lib/X11/it/app-defaults +@dirrm lib/X11/it + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 7:55:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mout03.kundenserver.de (mout03.kundenserver.de [195.20.224.218]) by hub.freebsd.org (Postfix) with ESMTP id C787937B405 for ; Thu, 13 Dec 2001 07:55:18 -0800 (PST) Received: from [195.20.224.219] (helo=mrvdom03.kundenserver.de) by mout03.kundenserver.de with esmtp (Exim 2.12 #2) id 16EYCA-0002tY-00; Thu, 13 Dec 2001 16:54:50 +0100 Received: from pd90172d7.dip.t-dialin.net ([217.1.114.215]) by mrvdom03.kundenserver.de with esmtp (Exim 2.12 #2) id 16EYCA-00013t-00; Thu, 13 Dec 2001 16:54:50 +0100 Date: Thu, 13 Dec 2001 15:55:17 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: "Peter I. Hansen" Cc: , Subject: Re: FreeBSD Port: staroffice60-6.0 In-Reply-To: <3C188B0F.2010005@oek.dk> Message-ID: <20011213154912.B18370-100000@big> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 13 Dec 2001, Peter I. Hansen wrote: > I'm trying to make Staroffice6.0 on my FreeBSD 4.4-stable , and i get > the attached error, which I've not been able to corrrect. You will have to install /usr/ports/emulators/linux_base-7 , *but* this means you will also have to deinstall an older version of your linux-emulation - if you are running one. And this might mean, some of your linux-apps (p.ex. netscape-communicator, opera) won't run anymore. Uli. ************************************ * P. U. Kruppa - Wuppertal * * Germany * * www.pukruppa.de www.2000d.de * ************************************ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 8: 0: 8 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB85437B41C for ; Thu, 13 Dec 2001 08:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDG01e11251; Thu, 13 Dec 2001 08:00:01 -0800 (PST) (envelope-from gnats) Received: from cathbad.happygiraffe.net (choke.semantico.com [212.74.15.98]) by hub.freebsd.org (Postfix) with ESMTP id 498DA37B405 for ; Thu, 13 Dec 2001 07:54:55 -0800 (PST) Received: by cathbad.happygiraffe.net (Postfix, from userid 1001) id 2796C61DE; Thu, 13 Dec 2001 15:54:44 +0000 (GMT) Message-Id: <20011213155444.2796C61DE@cathbad.happygiraffe.net> Date: Thu, 13 Dec 2001 15:54:44 +0000 (GMT) From: Dominic Mitchell Reply-To: Dominic Mitchell To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32803: problem building mail/mutt WITH_SSL=1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32803 >Category: ports >Synopsis: problem building mail/mutt WITH_SSL=1 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 08:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dominic Mitchell >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cathbad.happygiraffe.net 5.0-CURRENT FreeBSD 5.0-CURRENT #15: Thu Dec 13 11:47:48 GMT 2001 root@cathbad.happygiraffe.net:/usr/obj/usr/src/sys/CATHBAD i386 Also verified on: FreeBSD cassia.rp.lan 4.4-STABLE FreeBSD 4.4-STABLE #0: Mon Dec 10 09:49:14 GMT 2001 root@cassia.rp.lan:/usr/obj/usr/src/sys/CASSIA i386 >Description: When building the mutt port with WITH_SSL=1, the build fails because a header file isn't there. It's meant to be automatically built, but isn't. >How-To-Repeat: cd /usr/ports/mail/mutt && make WITH_SSL=1 >Fix: Here's the patch: --- Makefile.orig Thu Dec 13 15:45:07 2001 +++ Makefile Thu Dec 13 15:44:54 2001 @@ -89,6 +89,11 @@ cd ${WRKSRC}/charmaps/maps; ${LN} CP1251 WINDOWS-1251 cd ${WRKSRC}/charmaps/maps; ${RM} -f *.orig +.if defined(WITH_SSL) +pre-build: + cd ${WRKSRC} && ${MAKE} keymap_defs.h +.endif + .if !defined(NOPORTDOCS) post-build: ${TOUCH} ${WRKSRC}/doc/mutt.man ${WRKSRC}/doc/manual.sgml >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 8:30:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5142A37B427 for ; Thu, 13 Dec 2001 08:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDGU1a18661; Thu, 13 Dec 2001 08:30:01 -0800 (PST) (envelope-from gnats) Received: from dc-mx04.cluster1.charter.net (dc-mx04.cluster0.hsacorp.net [209.225.8.14]) by hub.freebsd.org (Postfix) with ESMTP id 6D7D437B41C for ; Thu, 13 Dec 2001 08:25:40 -0800 (PST) Received: from [24.158.214.244] (HELO gforce.johnson.home) by dc-mx04.cluster1.charter.net (CommuniGate Pro SMTP 3.4.6) with ESMTP id 6988209 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Dec 2001 11:31:58 -0500 Received: (from glenn@localhost) by gforce.johnson.home (8.11.6/8.11.6) id fBDGPcN42909; Thu, 13 Dec 2001 10:25:38 -0600 (CST) (envelope-from glenn) Message-Id: <200112131625.fBDGPcN42909@gforce.johnson.home> Date: Thu, 13 Dec 2001 10:25:38 -0600 (CST) From: Glenn Johnson Reply-To: Glenn Johnson To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32805: The apache2 port overwrites configuration files. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32805 >Category: ports >Synopsis: The apache2 port overwrites configuration files. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 08:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Glenn Johnson >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD gforce.johnson.home 4.4-STABLE FreeBSD 4.4-STABLE #7: Tue Dec 11 14:14:12 CST 2001 root@gforce.johnson.home:/usr/obj/usr/src/sys/GFORCE i386 >Description: An upgrade of the apache2 port will overwrite the existing configuration files. >How-To-Repeat: Install apache2, modify configuration files, reinstall and note that configuration files have been overwritten. >Fix: There are probably several ways to fix this. One would be to follow the lead of the apache13 port and check for the configuration files via commands in pkg-plist. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 9: 1:44 2001 Delivered-To: freebsd-ports@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id C746437B50E for ; Thu, 13 Dec 2001 09:01:17 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id B034A9B73; Thu, 13 Dec 2001 11:59:15 -0500 (EST) Date: Thu, 13 Dec 2001 11:59:15 -0500 From: Will Andrews To: Ted Wisniewski Cc: ports@freebsd.org Subject: Re: Ports changes Message-ID: <20011213115915.M30626@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: Ted Wisniewski , ports@freebsd.org References: <3C18B754.5FC8F396@wiz.plymouth.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3C18B754.5FC8F396@wiz.plymouth.edu> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Dec 13, 2001 at 09:12:36AM -0500, Ted Wisniewski wrote: > Just a heads up... The ports changes page does not reflect any changes > in the ports tree > over the last few weeks. I know there have been additions (as seen via > cvsup). If help > is needed in this area, I could help out. I would just need to know how > you would like > me to help. I'm not sure on the urgency of this issue. FreshPorts (http://www.freshports.org/) seems to do a better job. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 9:27:48 2001 Delivered-To: freebsd-ports@freebsd.org Received: from smtpzilla1.xs4all.nl (smtpzilla1.xs4all.nl [194.109.127.137]) by hub.freebsd.org (Postfix) with ESMTP id C614237B405 for ; Thu, 13 Dec 2001 09:27:44 -0800 (PST) Received: from list1.xs4all.nl (list1.xs4all.nl [194.109.6.52]) by smtpzilla1.xs4all.nl (8.12.0/8.12.0) with ESMTP id fBDHRhCG056787 for ; Thu, 13 Dec 2001 18:27:43 +0100 (CET) Received: (from root@localhost) by list1.xs4all.nl (8.9.3/8.9.3) id SAA00820; Thu, 13 Dec 2001 18:27:43 +0100 (CET) From: consol To: freebsd-ports@freebsd.org X-Via: imploder /usr/local/lib/mail/news2mail/news2mail at list1.xs4all.nl Subject: trouble with Eterm Date: Thu, 13 Dec 2001 19:39:58 +0100 Organization: XS4ALL Internet BV Message-ID: <3C18F5FE.1080102@xs4all.nl> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hey all... I have just recently started using FreeBSD and think it's very *refreshing* coming from a mostly Windows based environment..... Anyway whenever I start E-Term it displays something like: tcsh: Cannot open /etc/termcap. tcsh: using dumb terminal settings. Anybody seen this be4? Greetz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 10: 9:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 671EF37B405; Thu, 13 Dec 2001 10:09:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDI1m932624; Thu, 13 Dec 2001 10:01:48 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 10:01:48 -0800 (PST) From: Message-Id: <200112131801.fBDI1m932624@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, greid@FreeBSD.org Subject: Re: ports/32802: update port: graphics/xawtv Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: graphics/xawtv Responsible-Changed-From-To: freebsd-ports->greid Responsible-Changed-By: ijliao Responsible-Changed-When: Thu Dec 13 10:01:40 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32802 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 10: 9:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C136137B416; Thu, 13 Dec 2001 10:09:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDI2fI32752; Thu, 13 Dec 2001 10:02:41 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 10:02:41 -0800 (PST) From: Message-Id: <200112131802.fBDI2fI32752@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/32803: problem building mail/mutt WITH_SSL=1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: problem building mail/mutt WITH_SSL=1 Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: ijliao Responsible-Changed-When: Thu Dec 13 10:02:21 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32803 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 10:20: 3 2001 Delivered-To: freebsd-ports@freebsd.org Received: from smtp.mcttelecom.com (smtp.mcttelecom.com [204.97.16.55]) by hub.freebsd.org (Postfix) with ESMTP id C570637B417; Thu, 13 Dec 2001 10:19:57 -0800 (PST) Received: from asus15g.monad.net (27-0-32-206.conknet.com [206.32.0.27]) by smtp.mcttelecom.com (8.10.0/Nope) with ESMTP id fBDHlWL11462; Thu, 13 Dec 2001 12:47:36 -0500 (EST) Message-Id: <4.3.1.2.20011213131533.00d94100@204.97.16.37> X-Sender: command@204.97.16.37 (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 4.3.1 Date: Thu, 13 Dec 2001 13:19:26 -0500 To: kde@FreeBSD.org From: Jake Commander Subject: FreeBSD Port: qt-2.3.1 Cc: ports@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, pkg_add kdelibs-2.2.2.tgz asks for: qt-2.3.1_1 But qt-2.3.1_1 doesn't seem to be anywhere in the packages on www.freebsd.org. Is the kdelibs package in error - can I risk using qt-2.3.1? Regards, Jake Commander To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 10:24: 1 2001 Delivered-To: freebsd-ports@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id 9400337B416 for ; Thu, 13 Dec 2001 10:23:56 -0800 (PST) Received: from winston.freebsd.org (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.6/8.11.6) with ESMTP id fBDINSq61435 for ; Thu, 13 Dec 2001 10:23:28 -0800 (PST) (envelope-from jkh@winston.freebsd.org) To: ports@freebsd.org Subject: Charlie Root: -current build report for Thu Dec 13 03:05:57 CST 2001 Date: Thu, 13 Dec 2001 10:23:28 -0800 Message-ID: <61431.1008267808@winston.freebsd.org> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hmmm? What's so screwy about sword's README.html building procedure? ------- Forwarded Message Return-Path: root@usw2.freebsd.org Delivery-Date: Thu Dec 13 02:27:58 2001 Return-Path: Received: from mx2.freebsd.org (mx2.FreeBSD.org [216.136.204.119]) by winston.freebsd.org (8.11.6/8.11.6) with ESMTP id fBDARvq59964 for ; Thu, 13 Dec 2001 02:27:58 -0800 (PST) (envelope-from root@usw2.freebsd.org) Received: from hub.freebsd.org (hub.FreeBSD.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id CB5EE55439 for ; Thu, 13 Dec 2001 02:28:22 -0800 (PST) (envelope-from root@usw2.freebsd.org) Received: by hub.freebsd.org (Postfix) id 8F98537B41B; Thu, 13 Dec 2001 02:28:23 -0800 (PST) Delivered-To: jkh@freebsd.org Received: from usw2.freebsd.org (usw2.freebsd.org [209.180.6.226]) by hub.freebsd.org (Postfix) with ESMTP id 190BF37B41A for ; Thu, 13 Dec 2001 02:28:23 -0800 (PST) Received: (from root@localhost) by usw2.freebsd.org (8.11.6/8.11.6) id fBDASJC90287 for build-reports@freebsd.org; Thu, 13 Dec 2001 04:28:19 -0600 (CST) (envelope-from root) Date: Thu, 13 Dec 2001 04:28:19 -0600 (CST) From: Charlie Root Message-Id: <200112131028.fBDASJC90287@usw2.freebsd.org> To: build-reports@freebsd.org Subject: -current build report for Thu Dec 13 03:05:57 CST 2001 Doing nightly build attempt for 5.0-20011213-CURRENT at Thu Dec 13 03:05:57 CST 2001 Updating source tree... Making release... Release build of 5.0-20011213-CURRENT was an abject failure. ===> misc/qlas ===> Creating README.html for qlas-1.91 ===> misc/qmc ===> Creating README.html for qmc-0.92b3 ===> misc/quantlib ===> Creating README.html for quantlib-0.1.9 ===> misc/quotes ===> Creating README.html for quotes-1.7.2 ===> misc/quranref ===> Creating README.html for quranref-1.01 ===> misc/reed ===> Creating README.html for reed-4.6 ===> misc/rfc ===> Creating README.html for rfc-3.2.2 ===> misc/rname ===> Creating README.html for rname-1.0 ===> misc/rtfm ===> Creating README.html for rtfm-1.0 ===> misc/salias ===> Creating README.html for salias-0.1.5 ===> misc/screen ===> Creating README.html for screen-3.9.10 ===> misc/scriptkit ===> Creating README.html for scriptkit-0.1.6 ===> misc/seizedesktop ===> Creating README.html for seizedesktop-0.1a ===> misc/sh-utils ===> Creating README.html for sh-utils-2.0 ===> misc/shc ===> Creating README.html for shc-3.2 ===> misc/shuffle ===> Creating README.html for shuffle-20010603 ===> misc/sloccount ===> Creating README.html for sloccount-1.9 ===> misc/sls ===> Creating README.html for sls-1.00 ===> misc/smssend ===> Creating README.html for smssend-2.8 ===> misc/snowflake ===> Creating README.html for snowflake-0.01a ===> misc/splitvt ===> Creating README.html for splitvt-1.6.5 ===> misc/sshbuddy ===> Creating README.html for sshbuddy-1.05 ===> misc/stan ===> Creating README.html for stan-0.3 ===> misc/sword ===> Creating README.html for sword-1.5.2 ===> misc/sword-modules ===> Creating README.html for sword-modules-1.0 grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 1513257 bytes transferred in 4.6 seconds (321.58 kBps) grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 2279751 bytes transferred in 4.7 seconds (473.80 kBps) grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 1376899 bytes transferred in 2.8 seconds (478.74 kBps) grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 1377146 bytes transferred in 4.2 seconds (317.01 kBps) grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 1062040 bytes transferred in 2.2 seconds (461.59 kBps) grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 1101967 bytes transferred in 1.8 seconds (611.46 kBps) grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 886693 bytes transferred in 1.6 seconds (546.24 kBps) grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 886691 bytes transferred in 1.7 seconds (514.55 kBps) grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 41277 bytes transferred in 0.3 seconds (146.59 kBps) grep: /vol1/5-current-chrootdir/usr/ports/misc/sword-modules/distinfo: No such file or directory 2464433 bytes transferred in 5.9 seconds (409.45 kBps) 1070770 bytes transferred in 114.4 seconds (9.14 kBps) pretty-print-build-depends-list: not found pretty-print-run-depends-list: not found /usr/bin/sed: argument list too long *** Error code 2 Stop in /vol1/5-current-chrootdir/usr/ports/misc/sword-modules. *** Error code 1 Stop in /vol1/5-current-chrootdir/usr/ports/misc/sword-modules. *** Error code 1 Stop in /vol1/5-current-chrootdir/usr/ports/misc. *** Error code 1 Stop in /vol1/5-current-chrootdir/usr/ports. *** Error code 1 Stop in /vol1/src/release. ------- End of Forwarded Message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 11:12:28 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id B221F37B416; Thu, 13 Dec 2001 11:12:21 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBDJB3x95315; Thu, 13 Dec 2001 14:11:03 -0500 (EST) (envelope-from alane) Date: Thu, 13 Dec 2001 14:11:03 -0500 From: Alan Eldridge To: Jake Commander Cc: kde@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: qt-2.3.1 Message-ID: <20011213141103.A95299@wwweasel.geeksrus.net> References: <4.3.1.2.20011213131533.00d94100@204.97.16.37> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <4.3.1.2.20011213131533.00d94100@204.97.16.37>; from jakec@ukfirst.com on Thu, Dec 13, 2001 at 01:19:26PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Dec 13, 2001 at 01:19:26PM -0500, Jake Commander wrote: >Hello, > >pkg_add kdelibs-2.2.2.tgz asks for: > >qt-2.3.1_1 > >But qt-2.3.1_1 doesn't seem to be anywhere in the packages on >www.freebsd.org. Is the kdelibs package in error - can I risk using >qt-2.3.1? You can use that. You can also use: http://freebsd.kde.org/2.2.2/All/qt-2.3.1_1.tgz -- Alan Eldridge Just another $LANGUAGE hacker. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 11:20: 8 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E17D237B416 for ; Thu, 13 Dec 2001 11:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDJK3548923; Thu, 13 Dec 2001 11:20:03 -0800 (PST) (envelope-from gnats) Received: from pm7-47.lft.widomaker.com (pm7-47.lft.widomaker.com [209.96.179.111]) by hub.freebsd.org (Postfix) with ESMTP id AF43837B41A for ; Thu, 13 Dec 2001 11:13:05 -0800 (PST) Received: (from jason@localhost) by pm7-47.lft.widomaker.com (8.11.3/8.11.3) id fBDJD2I01644; Thu, 13 Dec 2001 14:13:02 -0500 (EST) (envelope-from jason) Message-Id: <200112131913.fBDJD2I01644@pm7-47.lft.widomaker.com> Date: Thu, 13 Dec 2001 14:13:02 -0500 (EST) From: Jason Harris To: FreeBSD-gnats-submit@freebsd.org Cc: Jason Harris X-Send-Pr-Version: 3.113 Subject: ports/32810: ports/security/pad security (mkstemp()) fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32810 >Category: ports >Synopsis: ports/security/pad security (mkstemp()) fix >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 11:20:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jason Harris >Release: FreeBSD 4.3-RELEASE i386 >Organization: none here >Environment: System: FreeBSD 4.3-RELEASE i386 >Description: pad 1.0.4 uses tempnam() unsecurely. The patch I submitted as a followup to PR 27323 should fix this and allow the re-upgrade to pad 1.0.4 from 0.7, which adds additional features: http://www.freebsd.org/cgi/query-pr.cgi?pr=27323&f=raw >How-To-Repeat: N/A >Fix: Unpack shar and apply followup patch in PR 27323; adjust PORTREVISION and PORTEPOCH as necessary. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 11:23:40 2001 Delivered-To: freebsd-ports@freebsd.org Received: from square.cnd.mcgill.ca (square.CND.McGill.CA [132.206.114.119]) by hub.freebsd.org (Postfix) with ESMTP id A8F7337B419 for ; Thu, 13 Dec 2001 11:23:33 -0800 (PST) Received: (from mat@localhost) by square.cnd.mcgill.ca (8.9.3/8.9.3) id OAA28120; Thu, 13 Dec 2001 14:23:14 -0500 (EST) (envelope-from mat) Date: Thu, 13 Dec 2001 14:23:13 -0500 From: Mathew Kanner To: "P. U. (Uli) Kruppa" Cc: "Peter I. Hansen" , mb@imp.ch, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: staroffice60-6.0 Message-ID: <20011213142313.A28033@cnd.mcgill.ca> References: <3C188B0F.2010005@oek.dk> <20011213154912.B18370-100000@big> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: P. U. (Uli) Kruppa's message [Re: FreeBSD Port: staroffice60-6.0] as of Thu, Dec 13, 2001 at 03:55:17PM +0000 Organization: I speak for myself, operating in Montreal, CANADA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Dec 13, P. U. (Uli) Kruppa wrote: > On Thu, 13 Dec 2001, Peter I. Hansen wrote: > > > I'm trying to make Staroffice6.0 on my FreeBSD 4.4-stable , and i get > > the attached error, which I've not been able to corrrect. > You will have to install /usr/ports/emulators/linux_base-7 , > *but* this means you will also have to deinstall an older > version of your linux-emulation - if you are running one. > And this might mean, some of your linux-apps > (p.ex. netscape-communicator, opera) won't run anymore. I installed libstdc++-2.9.0-30.i386.rpm by hand then linked /compat/linux/usr/lib/libstdc++-libc6.1-1.so.2 -> libstdc++-2-libc6.1-1-2.9.0.so and netscape and soffice run ok. Maybe this can be part of the linux7 port. --Mat -- Brain: Are you pondering what I'm pondering? Pinky: I think so, Brain, but can the Gummi Worms really live in peace with the Marshmallow Chicks? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 12: 0:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DCC337B417 for ; Thu, 13 Dec 2001 12:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDK02w54436; Thu, 13 Dec 2001 12:00:02 -0800 (PST) (envelope-from gnats) Received: from kiste.thiemo.net (kiste.thiemo.net [193.159.181.84]) by hub.freebsd.org (Postfix) with ESMTP id 28C8A37B405 for ; Thu, 13 Dec 2001 11:56:17 -0800 (PST) Received: (from uucp@localhost) by kiste.thiemo.net (8.9.3/8.9.3) with UUCP id UAA78476 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Dec 2001 20:56:05 +0100 (CET) (envelope-from rk@home.ronald.org) Received: (from rk@localhost) by wallace.home.ronald.org (8.11.6/8.11.6) id fBDJt2K02035; Thu, 13 Dec 2001 20:55:02 +0100 (CET) (envelope-from rk@ronald.org) Message-Id: <200112131955.fBDJt2K02035@wallace.home.ronald.org> Date: Thu, 13 Dec 2001 20:55:02 +0100 (CET) From: Ronald Kuehn Reply-To: Ronald Kuehn To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32811: Update port: games/imaze update to version 1.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32811 >Category: ports >Synopsis: Update port: games/imaze update to version 1.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 12:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ronald Kuehn >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD merlin.home.ronald.org 4.4-STABLE FreeBSD 4.4-STABLE #4: Tue Dec 11 04:29:22 CET 2001 rk@merlin.home.ronald.org:/usr/build/obj/usr/src/sys/MERLIN i386 >Description: Update iMaze to version 1.4. iMaze now supports XView (still default), Motif and plain Athena widgets. Sound support (now included in all toolkits) is still somewhat flaky (missing synchronization) on FreeBSD. Works better with old Voxware driver than with the normal pcm driver. >How-To-Repeat: >Fix: diff -ruN imaze.orig/Makefile imaze/Makefile --- imaze.orig/Makefile Thu Jun 21 19:42:59 2001 +++ imaze/Makefile Thu Dec 13 19:56:23 2001 @@ -1,68 +1,68 @@ # New ports collection makefile for: imaze # Date created: 27. April 1996 -# Whom: Ronald Kuehn +# Whom: Ronald Kuehn # # $FreeBSD: ports/games/imaze/Makefile,v 1.21 2001/06/21 17:42:59 fenner Exp $ # PORTNAME= imaze -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= games -MASTER_SITES= ftp://ftp.tu-clausthal.de/pub/misc/games/imaze/ \ - ftp://ftp.tu-clausthal.de/pub/misc/games/imaze/sounds/ -DISTFILES= imaze1.3.tar.Z imaze.tar +MASTER_SITES= http://home.tu-clausthal.de/student/iMaze/files/ +PKGNAMESUFFIX= -${TOOLKIT} -MAINTAINER= ports@freebsd.org +MAINTAINER= rk@ronald.org -# -# Sound support currently only exists for the XView version (apperently -# broken for the pcm driver; worked for voxware). The not yet released -# version 1.4 will add sound support for the Motif version too. -# XView is the default. If you want the Motif version, define FORCE_MOTIF=yes. -# -.if !(defined(HAVE_MOTIF) && defined(FORCE_MOTIF) && ${FORCE_MOTIF} == "yes") \ - || defined(PACKAGE_BUILDING) +.if defined(WITH_MOTIF) && defined(HAVE_MOTIF) +USE_MOTIF= yes +TOOLKIT= motif +.elif defined(WITH_ATHENA) +TOOLKIT= athena +.else LIB_DEPENDS= xview.3:${PORTSDIR}/x11-toolkits/xview +TOOLKIT= xview .endif -WRKSRC= ${WRKDIR}/imaze -EXTRACT_ONLY= imaze1.3.tar.Z USE_X_PREFIX= yes -MAN6= genlab.6 imaze.6 imazesrv.6 ninja.6 -MANCOMPRESSED= maybe +HAS_CONFIGURE= yes +CONFIGURE_ARGS= ${TOOLKIT} X11Dir=${X11BASE} CFlags="${CFLAGS}" +CONFIGURE_WRKSRC=${WRKSRC}/source +BUILD_WRKSRC= ${WRKSRC}/source +MAKE_ENV= SOUNDDIR=${SOUNDDIR} +MAN6= genlab.6 imaze.6 imazesrv.6 imazestat.6 ninja.6 xlabed.6 +MANCOMPRESSED= no -SOUNDDIR=${PREFIX}/share/imaze/sounds - -.if !defined(NOMANCOMPRESS) -compresscommand=gzip -9nf -.else -compresscommand=":" +.if defined(WITHOUT_AUDIO) +CONFIGURE_ARGS+=noaudio +.endif +.if defined(WITHOUT_JOYSTICK) +CONFIGURE_ARGS+=nojoystick .endif -post-extract: - @tar xf ${DISTDIR}/imaze.tar -C ${WRKDIR}/imaze +PROGRAMS= imaze imazesrv imazestat ninja genlab xlabed +SOUNDDIR= ${PREFIX}/share/imaze/sounds -do-build: - @(cd ${WRKSRC}/source; ${MAKE} SOUNDDIR=${SOUNDDIR} \ - FORCE_MOTIF=${FORCE_MOTIF} MOTIFLIB="${MOTIFLIB}" \ - X11BASE=${X11BASE} freebsd) +pre-everything:: + @$(ECHO_MSG) "iMaze can be built with XView (default), Motif or" \ + "Athena widgets." + @$(ECHO_MSG) "Use \"-DWITH_MOTIF\" or \"-DWITH_ATHENA\" to select" \ + "Motif or Athena widgets." + @$(ECHO_MSG) "Audio and joystick support can be disabled with" \ + "\"-DWITHOUT_AUDIO\"" + @$(ECHO_MSG) "and/or \"-DWITHOUT_JOYSTICK\"" do-install: - @(cd ${WRKSRC}/source && for f in imaze imazesrv ninja genlab;\ - do ${INSTALL_PROGRAM} $$f ${PREFIX}/bin; done) - @(cd ${WRKSRC}/man6 && for f in *.6;\ - do ${INSTALL_MAN} $$f ${PREFIX}/man/man6;\ - ${compresscommand} ${PREFIX}/man/man6/$$f; done) + @(cd ${WRKSRC}/source && for f in ${PROGRAMS}; do \ + ${INSTALL_PROGRAM} $$f ${PREFIX}/bin; done) + @(cd ${WRKSRC}/man6 && for f in *.6; do \ + ${INSTALL_MAN} $$f ${PREFIX}/man/man6; done) @${MKDIR} ${PREFIX}/share/imaze/labs - @(cd ${WRKSRC}/labs && for f in *.lab;\ - do ${INSTALL_DATA} $$f ${PREFIX}/share/imaze/labs; done) + @(cd ${WRKSRC}/labs && for f in *.lab; do \ + ${INSTALL_DATA} $$f ${PREFIX}/share/imaze/labs; done) @${MKDIR} ${SOUNDDIR} - @(cd ${WRKSRC}/sounds && for f in *.au;\ - do ${INSTALL_DATA} $$f ${SOUNDDIR}; done) - @(cd ${WRKSRC} && for f in Xdefaults.Motif Xdefaults.OpenWindows;\ - do ${INSTALL_DATA} $$f ${PREFIX}/share/imaze/$$f.example;\ - done; \ - ${INSTALL_DATA} README ${PREFIX}/share/imaze) - @${ECHO_MSG} "Please read the file \"README\" in \"${PREFIX}/share/imaze\"." + @(cd ${WRKSRC}/sounds && for f in *.au; do \ + ${INSTALL_DATA} $$f ${SOUNDDIR}; done) + @(cd ${WRKSRC} && ${INSTALL_DATA} README ${PREFIX}/share/imaze) + @$(ECHO_MSG) "Please read the file \"${PREFIX}/share/imaze/README\"." .include diff -ruN imaze.orig/distinfo imaze/distinfo --- imaze.orig/distinfo Sat Apr 27 20:37:41 1996 +++ imaze/distinfo Tue Dec 11 06:32:02 2001 @@ -1,2 +1 @@ -MD5 (imaze1.3.tar.Z) = 1cfac4f65653dbd2ed43f8e842a9a374 -MD5 (imaze.tar) = 6c042fe0afcc3399b31b25ce16d9fb3b +MD5 (imaze-1.4.tar.gz) = 359cd8e072bfd7e51acafc1f106b9ea0 diff -ruN imaze.orig/files/patch-aa imaze/files/patch-aa --- imaze.orig/files/patch-aa Sun Jun 6 17:39:50 1999 +++ imaze/files/patch-aa Thu Dec 13 10:56:37 2001 @@ -1,48 +1,20 @@ ---- source/Makefile.orig Thu Feb 22 16:01:18 1996 -+++ source/Makefile Mon May 31 16:46:38 1999 -@@ -111,13 +111,34 @@ - all +--- source/Makefile.in.orig Thu Dec 13 10:50:40 2001 ++++ source/Makefile.in Thu Dec 13 10:56:34 2001 +@@ -43,7 +43,7 @@ + @echo "run ./configure first, don't use this makefile" + #END configure output - freebsd: -+.if defined(FORCE_MOTIF) && ${FORCE_MOTIF} == "yes" - $(MAKE) \ -- OPENWINHOME='/usr/X11R6' \ -+ GRAF=MOTIF \ -+ GRAFLIBS='$$(MOTIFLIB) $$(MOTIFLIBS)' \ -+ GRAFINCLUDES='-I$$(X11BASE)/include' \ -+ GRAFOBJS='$$(MOTIFOBJS)' \ -+ SYSDEFS='-DDONT_DECLARE_ERRLIST -DJOYSTICK' \ -+ all -+.else -+.if $(MACHINE_ARCH) == "i386" -+ $(MAKE) \ -+ OPENWINHOME='$$(X11BASE)' \ -+ GRAFLIBS='$$(XVLIBS)' \ -+ GRAFINCLUDES='$$(XVINCLUDES)' \ -+ GRAFOBJS='$$(XVOBJS)' \ -+ SYSDEFS='-DDONT_DECLARE_ERRLIST -DSOUND \ -+ -DDEFAULT_SOUND_DIR=\"$(SOUNDDIR)\" -DJOYSTICK' \ -+ all -+.else -+ $(MAKE) \ -+ OPENWINHOME='$$(X11BASE)' \ - GRAFLIBS='$$(XVLIBS)' \ - GRAFINCLUDES='$$(XVINCLUDES)' \ - GRAFOBJS='$$(XVOBJS)' \ -- SYSDEFS='-DDONT_DECLARE_ERRLIST -DSOUND -DJOYSTICK' \ -+ SYSDEFS='-DDONT_DECLARE_ERRLIST -DDEFAULT_SOUND_DIR=\"$(SOUNDDIR)\"' \ - all -+.endif -+.endif +-DEFINES=-DDEFAULT_SOUND_DIR=\"`pwd`/../sounds\" ++DEFINES=-DDEFAULT_SOUND_DIR=\"${SOUNDDIR}\" + # + # possible values: + # +@@ -66,7 +66,7 @@ + X11Libs=-lX11 + #AthenaLibs=-lXaw -lXt + AthenaLibs=-lXaw -lXt -lXmu +-MotifLibs=-lXm -lXt ++MotifLibs=${MOTIFLIB} + XViewLibs=-lxview -lolgx - irix: - $(MAKE) \ -@@ -143,7 +164,7 @@ - XVLIBS=-L$(OPENWINHOME)/lib -lxview -lolgx -lX11 - XVINCLUDES=-I$(OPENWINHOME)/include - --MOTIFLIBS=-lXm -lXt -lX11 -+MOTIFLIBS=-lXt -lX11 - MOTIFINCLUDES= - - GRAFLIBS=$($(GRAF)LIBS) + # bis hier Optionen eintragen diff -ruN imaze.orig/pkg-descr imaze/pkg-descr --- imaze.orig/pkg-descr Sat Apr 27 20:37:41 1996 +++ imaze/pkg-descr Thu Dec 13 17:19:06 2001 @@ -1,22 +1,24 @@ iMaze is a multi-player network action game for TCP/IP with 3D graphics -under X11 (XView or Motif). You run through a labyrinth and shoot everything -that is round without being hit by other round anythings. +under X11 (XView, Motif or Athena). You run through a labyrinth and shoot +everything that is round without being hit by other round anythings. Of course anything round is one of the following: - * other players playing over the net * computer controlled ninjas * deadly shots (except your own) Features: - * sophisticated, reliable network protocol, works even with SLIP connections - via modem + via modem; modular, portable source code * windows can be freely scaled to avoid speed drawbacks due to poor display performance - * modular, portable source code - * scores * sound and joystick support + * scores; camera mode; labyrinth generator and interactive labyrinth editor + +Audio support is somewhat flaky on FreeBSD (synchronization problems). +It works better with the old Voxware driver than with the current pcm driver. + +WWW: http://home.tu-clausthal.de/student/iMaze/ - Ronald Kuehn -kuehn@rz.tu-clausthal.de +rk@ronald.org diff -ruN imaze.orig/pkg-plist imaze/pkg-plist --- imaze.orig/pkg-plist Mon Feb 22 05:00:36 1999 +++ imaze/pkg-plist Thu Dec 13 16:15:35 2001 @@ -2,6 +2,8 @@ bin/ninja bin/genlab bin/imazesrv +bin/imazestat +bin/xlabed share/imaze/labs/10x10.lab share/imaze/labs/12x12.lab share/imaze/labs/15x15.lab @@ -13,8 +15,8 @@ share/imaze/labs/longest.lab share/imaze/labs/no1.lab share/imaze/labs/november.lab -share/imaze/labs/october.lab share/imaze/sounds/awake.au +share/imaze/sounds/bounce.au share/imaze/sounds/dead.au share/imaze/sounds/kill.au share/imaze/sounds/miss.au @@ -22,8 +24,6 @@ share/imaze/sounds/shoot.au share/imaze/sounds/title.au share/imaze/README -share/imaze/Xdefaults.Motif.example -share/imaze/Xdefaults.OpenWindows.example @dirrm share/imaze/sounds @dirrm share/imaze/labs @dirrm share/imaze >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 13:10:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C9ED37B416 for ; Thu, 13 Dec 2001 13:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDLA1r68853; Thu, 13 Dec 2001 13:10:01 -0800 (PST) (envelope-from gnats) Received: from softwareliberty.org (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 98B8D37B405 for ; Thu, 13 Dec 2001 13:04:28 -0800 (PST) Received: by softwareliberty.org (Postfix, from userid 1014) id B6049752A; Fri, 14 Dec 2001 05:04:27 +0800 (CST) Message-Id: <20011213210427.B6049752A@softwareliberty.org> Date: Fri, 14 Dec 2001 05:04:27 +0800 (CST) From: Statue Reply-To: Statue To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32813: update port: chinese/ghostscript6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32813 >Category: ports >Synopsis: update port: chinese/ghostscript6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 13:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Statue >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.sinica.edu.tw 4.4-STABLE FreeBSD 4.4-STABLE #0: Tue Oct 9 02:45:16 CST 2001 ycheng@freebsd.sinica.edu.tw:/usr/src/sys/compile/FREEBSD i386 >Description: o update cjkvttcidmap from 0.8 to 0.94 add Bridge Version by using mapping tables of ftp.unicode.org add Bridge Version by using CMaps for PDF core fonts(ToUnicode CMap) of partners.adobe.com add Bridge Version by using CMaps for PDF core fonts(ToUnicode CMap) and mapping tables of ftp.unicode.org o update pkg-install from 6.50 to 6.52 >How-To-Repeat: >Fix: diff -ruN ghostscript6.orig/Makefile ghostscript6/Makefile --- ghostscript6.orig/Makefile Fri Dec 14 04:55:19 2001 +++ ghostscript6/Makefile Fri Dec 14 04:57:32 2001 @@ -14,7 +14,7 @@ http://www.aihara.co.jp/~taiji/tops/ DISTFILES= ac13.tar.Z ag14.tar.Z ai0.tar.Z aj14.tar.Z \ aj20.tar.Z ak12.tar.Z rksj-cmaps.tar.Z \ - cjkvttcidmap-0.8.tar.gz gs6.50_ttf.ps-cjkv-20001215.patch.gz + cjkvttcidmap-0.94.tar.gz gs6.50_ttf.ps-cjkv-20001215.patch.gz EXTRACT_ONLY= MAINTAINER= keith@FreeBSD.org @@ -39,7 +39,7 @@ ${TAR} -xzf ${DISTDIR}/rksj-cmaps.tar.Z; \ ${LN} -sf rksj-cmaps/* . ) @(cd ${PREFIX}/share/ghostscript/CJK/TrueType; \ - ${TAR} -xzf ${DISTDIR}/cjkvttcidmap-0.8.tar.gz ) + ${TAR} -xzf ${DISTDIR}/cjkvttcidmap-0.94.tar.gz ) @(cd ${PREFIX}/share/ghostscript/${PORTVERSION}/lib; \ ${GZCAT} ${DISTDIR}/gs6.50_ttf.ps-cjkv-20001215.patch.gz |${PATCH} ) @${CP} ${PREFIX}/share/ghostscript/${PORTVERSION}/lib/gs_res.ps \ diff -ruN ghostscript6.orig/distinfo ghostscript6/distinfo --- ghostscript6.orig/distinfo Fri Dec 14 04:55:19 2001 +++ ghostscript6/distinfo Fri Dec 14 04:58:34 2001 @@ -5,5 +5,5 @@ MD5 (aj20.tar.Z) = 06b03101b0fd4c1f74d4bd3e4c2096b6 MD5 (ak12.tar.Z) = fbc36b6e008196b77859717e1eb32925 MD5 (rksj-cmaps.tar.Z) = 98b26cb513014491ed401dd2bb03535a -MD5 (cjkvttcidmap-0.8.tar.gz) = 1c124fda850798004be241af177f10f2 +MD5 (cjkvttcidmap-0.94.tar.gz) = 1426e4e15357487ce2a797a9b7d2e0e1 MD5 (gs6.50_ttf.ps-cjkv-20001215.patch.gz) = dc1eb717b392ab069fdd9a34890cc19a diff -ruN ghostscript6.orig/pkg-install ghostscript6/pkg-install --- ghostscript6.orig/pkg-install Fri Dec 14 04:55:19 2001 +++ ghostscript6/pkg-install Fri Dec 14 04:55:27 2001 @@ -1,5 +1,5 @@ #!/bin/sh -GS6LIBDIR=${PKG_PREFIX}/share/ghostscript/6.50/lib +GS6LIBDIR=${PKG_PREFIX}/share/ghostscript/6.52/lib if [ "$2" = "POST-INSTALL" ]; then exit 0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 13:50: 7 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B739637B41B for ; Thu, 13 Dec 2001 13:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDLo0B75158; Thu, 13 Dec 2001 13:50:00 -0800 (PST) (envelope-from gnats) Received: from softwareliberty.org (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 6B12A37B419 for ; Thu, 13 Dec 2001 13:47:45 -0800 (PST) Received: by softwareliberty.org (Postfix, from userid 1014) id 11DDD752A; Fri, 14 Dec 2001 05:47:45 +0800 (CST) Message-Id: <20011213214745.11DDD752A@softwareliberty.org> Date: Fri, 14 Dec 2001 05:47:45 +0800 (CST) From: Statue Reply-To: Statue To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32814: update port: chinese/CJK from 20001003 to 20011008 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32814 >Category: ports >Synopsis: update port: chinese/CJK from 20001003 to 20011008 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 13:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Statue >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.sinica.edu.tw 4.4-STABLE FreeBSD 4.4-STABLE #0: Tue Oct 9 02:45:16 CST 2001 ycheng@freebsd.sinica.edu.tw:/usr/src/sys/compile/FREEBSD i386 >Description: cjk-20011008.tar.gz from ftp://ftp.ffii.org/pub/cjk/devel/cjk-current.tar.gz >How-To-Repeat: >Fix: diff -ruN CJK.orig/Makefile CJK/Makefile --- CJK.orig/Makefile Fri Dec 14 05:06:59 2001 +++ CJK/Makefile Fri Dec 14 05:43:44 2001 @@ -8,8 +8,8 @@ PORTNAME= CJK PORTVERSION= 4.3.0 CATEGORIES= chinese -MASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/keith/ -DISTNAME= cjk-20001003 +MASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/statue/ +DISTNAME= cjk-20011008 MAINTAINER= keith@FreeBSD.org diff -ruN CJK.orig/distinfo CJK/distinfo --- CJK.orig/distinfo Fri Dec 14 05:07:00 2001 +++ CJK/distinfo Fri Dec 14 05:18:34 2001 @@ -1 +1 @@ -MD5 (cjk-20001003.tar.gz) = fcc974b26e16166f80b91453ea74e915 +MD5 (cjk-20011008.tar.gz) = 7d463515e51f33b68b4066f22bd7bde1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 13:56:39 2001 Delivered-To: freebsd-ports@freebsd.org Received: from gnome04.sovam.com (gnome04.sovam.com [194.67.1.185]) by hub.freebsd.org (Postfix) with ESMTP id D9D7D37B41A for ; Thu, 13 Dec 2001 13:56:36 -0800 (PST) Received: from ip-692.dialup.cl.spb.ru ([212.46.194.232]:13576 "EHLO lev.sereb.net" ident: "TIMEDOUT" whoson: "kostrom@rol.ru" smtp-auth: TLS-CIPHER: TLS-PEER: ) by gnome04.sovam.com with ESMTP id ; Fri, 14 Dec 2001 00:56:21 +0300 Date: Fri, 14 Dec 2001 00:58:24 +0300 From: Lev Serebryakov X-Mailer: The Bat! (v1.53d) Reply-To: Lev Serebryakov Organization: Home X-Priority: 3 (Normal) Message-ID: <19794459125.20011214005824@serebryakov.spb.ru> To: ports@FreeBSD.ORG Subject: autoconf 2.50 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, ports! How are you? deve/autoconf port has 2.13-XXX version :( And many programs want autoconf-2.50 already. For example, I want to update icewm port to 1.0.9-2 version, and icewm 1.0.9 needs autoconf-2.50. System has two identical ports now -- autoconf213 and autoconf. WHY? Lev Serebryakov /-----------------------------------------------\ | FIDONet: 2:5030/661.0 | | E-Mail: lev@serebryakov.spb.ru | | Page: http://lev.serebryakov.spb.ru/ | | ICQ UIN: 3670018 | | Phone: You know, if you have world nodelist | \===============================================/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 14: 6: 3 2001 Delivered-To: freebsd-ports@freebsd.org Received: from synthetic.kernelpanick.com (wks-65-30-129-247.kscable.com [65.30.129.247]) by hub.freebsd.org (Postfix) with ESMTP id 5236E37B405 for ; Thu, 13 Dec 2001 14:05:54 -0800 (PST) Received: from localhost (lunartear@localhost [127.0.0.1]) by synthetic.kernelpanick.com (8.11.6/8.11.5) with ESMTP id fBDLsTU21424; Thu, 13 Dec 2001 15:54:30 -0600 (CST) (envelope-from lunartear@kernelpanick.com) Date: Thu, 13 Dec 2001 15:54:29 -0600 (CST) From: lunartear To: Andreas Klemm Cc: Subject: Re: Apsfilter In-Reply-To: <20011213192049.GA38296@titan.klemm.gtn.com> Message-ID: <20011213154723.A21155-100000@synthetic.kernelpanick.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Well I found out what the problem was in not being able to print anything. seems Apsfilter was setup to use lp0 instead of lpt0 a quick addition to printcap fixed it. in ./SETUP FreeBSD, NetBSD, OpenBSD: LPT1: /dev/lpt0 LPT2: /dev/lpt1 USB under *BSD: /dev/ulpt0 /dev/ulpt1 USB (no reset): /dev/unlpt0 /dev/unlpt1 Linux: LPT1: /dev/lp0 LPT2: /dev/lp1 with devfsd: /dev/printers/0 /dev/printers/1 USB under Linux: /dev/usb/lp0 /dev/usb/lp1 SunOS4: /dev/bpp0 /dev/bpp1 currently selected: Interface: [parallel] Device: [/dev/lp0] Full path of parallel print device: Looks like its setup for linux. Im gonna forward this to the ports team to see if they feel like setting it to lpt0 by default once again thanks for releasing Apsfilter 7 good work. Notice Ports committers. I have an upgrade patch for ghostscript from gimp-print 4.0.5 to 4.2.0 However in order for the docs to be built correctly Im going to need texi2dvi updated to a newer version. Can someone please take care of this. Thanks Lunartear To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 14:26:27 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 563CB37B419 for ; Thu, 13 Dec 2001 14:26:24 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBDMNXq96496; Thu, 13 Dec 2001 17:23:33 -0500 (EST) (envelope-from alane) Date: Thu, 13 Dec 2001 17:23:33 -0500 From: Alan Eldridge To: Lev Serebryakov Cc: ports@FreeBSD.ORG Subject: Re: autoconf 2.50 Message-ID: <20011213172333.A96484@wwweasel.geeksrus.net> References: <19794459125.20011214005824@serebryakov.spb.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <19794459125.20011214005824@serebryakov.spb.ru>; from lev@serebryakov.spb.ru on Fri, Dec 14, 2001 at 12:58:24AM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Dec 14, 2001 at 12:58:24AM +0300, Lev Serebryakov wrote: >Hello, ports! How are you? > > deve/autoconf port has 2.13-XXX version :( > And many programs want autoconf-2.50 already. > For example, I want to update icewm port to 1.0.9-2 version, and > icewm 1.0.9 needs autoconf-2.50. > > System has two identical ports now -- autoconf213 and autoconf. WHY? They are not identical. Same for automake. Make ports will not build using the newer versions. And don't say they should be updated/fixed ... to update KDE, for example, to use the newer versions would require a massive overhaul to an already too-complex build system. -- Alan Eldridge Just another $LANGUAGE hacker. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 14:30:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25E4437B416 for ; Thu, 13 Dec 2001 14:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBDMU1683009; Thu, 13 Dec 2001 14:30:01 -0800 (PST) (envelope-from gnats) Received: from lart.owp.csus.edu (lart.owp.csus.edu [130.86.232.246]) by hub.freebsd.org (Postfix) with ESMTP id 7FE7B37B417; Thu, 13 Dec 2001 14:24:05 -0800 (PST) Received: (from scottj@localhost) by lart.owp.csus.edu (8.11.6/8.11.6) id fBDMO4360024; Thu, 13 Dec 2001 14:24:04 -0800 (PST) (envelope-from scottj) Message-Id: <200112132224.fBDMO4360024@lart.owp.csus.edu> Date: Thu, 13 Dec 2001 14:24:04 -0800 (PST) From: Joseph Scott Reply-To: Joseph Scott To: FreeBSD-gnats-submit@freebsd.org Cc: roam@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32815: PORT UPDATE : ftp/curl 7.9.1 -> 7.9.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32815 >Category: ports >Synopsis: PORT UPDATE : ftp/curl 7.9.1 -> 7.9.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 14:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: FreeBSD 4.4-STABLE i386 >Organization: randomnetworks.com >Environment: System: FreeBSD lart.owp.csus.edu 4.4-STABLE FreeBSD 4.4-STABLE #0: Mon Dec 10 22:39:41 PST 2001 admin@lart.owp.csus.edu:/usr/src/sys/compile/LART i386 >Description: PORT UPDATE : ftp/curl 7.9.1 -> 7.9.2 Please Note : 1. There's a patch needed to make it build (at least on my 4.4-STABLE system) that I borrowed from the curl cvs tree. I'm guessing the patch will be obsoleted in the next version of curl. 2. I've CC'd the maintainer, roam@freebsd.org, for this PR. 3. I emailed the maintainer, roam@freebsd.org, the diff for this update two days ago. I haven't heard anything back yet, so I wanted to get this into the PR system. >How-To-Repeat: >Fix: diff -ruN curl.orig/Makefile curl/Makefile --- curl.orig/Makefile Tue Dec 11 12:36:03 2001 +++ curl/Makefile Tue Dec 11 14:20:24 2001 @@ -6,7 +6,7 @@ # PORTNAME= curl -PORTVERSION= 7.9.1 +PORTVERSION= 7.9.2 CATEGORIES= ftp ipv6 www MASTER_SITES= http://curl.haxx.se/download/ \ http://download.sourceforge.net/curl/ \ diff -ruN curl.orig/distinfo curl/distinfo --- curl.orig/distinfo Tue Dec 11 12:36:03 2001 +++ curl/distinfo Tue Dec 11 14:20:30 2001 @@ -1 +1 @@ -MD5 (curl-7.9.1.tar.bz2) = a8ffc53706dbc2150891e42a08d9c09c +MD5 (curl-7.9.2.tar.bz2) = a1ca37410905e79128a7ed6e48755b54 diff -ruN curl.orig/files/patch-lib::sendf.c curl/files/patch-lib::sendf.c --- curl.orig/files/patch-lib::sendf.c Wed Dec 31 16:00:00 1969 +++ curl/files/patch-lib::sendf.c Tue Dec 11 14:51:12 2001 @@ -0,0 +1,12 @@ +--- lib/sendf.c.orig Tue Dec 11 14:47:55 2001 ++++ lib/sendf.c Tue Dec 11 14:48:06 2001 +@@ -26,6 +26,9 @@ + #include + #include + #include ++#ifdef HAVE_SYS_TYPES_H ++#include ++#endif + + #ifdef HAVE_SYS_SOCKET_H + #include /* required for send() & recv() prototypes */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 16: 5:37 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 84F7F37B405 for ; Thu, 13 Dec 2001 16:05:34 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.1/8.11.1) with ESMTP id fBE05TQ74369; Fri, 14 Dec 2001 01:05:30 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Fri, 14 Dec 2001 01:09:55 +0100 (CET) From: Martin Blapp To: "Peter I. Hansen" Cc: Subject: Re: FreeBSD Port: staroffice60-6.0 In-Reply-To: <3C188B0F.2010005@oek.dk> Message-ID: <20011214010827.L25531-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, On Thu, 13 Dec 2001, Peter I. Hansen wrote: > Hello > > I'm trying to make Staroffice6.0 on my FreeBSD 4.4-stable , and i get > the attached error, which I've not been able to corrrect. Note this port is still a beta of Staroffice 6.0. And I've some fixes for the port here too. I'll make a PR soon. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 16:30:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B2F6E37B417 for ; Thu, 13 Dec 2001 16:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE0U2601112; Thu, 13 Dec 2001 16:30:02 -0800 (PST) (envelope-from gnats) Date: Thu, 13 Dec 2001 16:30:02 -0800 (PST) Message-Id: <200112140030.fBE0U2601112@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Hroi Sigurdsson Subject: Re: ports/32617: Update port: graphics/ImageMagick to 5.4.0.5 Reply-To: Hroi Sigurdsson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32617; it has been noted by GNATS. From: Hroi Sigurdsson To: freebsd-gnats-submit@FreeBSD.org, tkato@prontomail.com Cc: Subject: Re: ports/32617: Update port: graphics/ImageMagick to 5.4.0.5 Date: Fri, 14 Dec 2001 01:23:48 +0100 This broke crop and resize for me :-( The following used to provide a section of a window resized to 160x120, but now I get a non-cropped, full-size image: import -display 0:0 -window 0x60002c -crop 800x600+2+14 -geometry '160x120!' test.jpg -- Hroi Sigurdsson hroi@asdf.dk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 16:30:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DE4637B41D for ; Thu, 13 Dec 2001 16:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE0U2t01130; Thu, 13 Dec 2001 16:30:02 -0800 (PST) (envelope-from gnats) Received: from utopia.leeym.com (utopia.leeym.com [211.72.162.194]) by hub.freebsd.org (Postfix) with ESMTP id 3EBFF37B419 for ; Thu, 13 Dec 2001 16:28:45 -0800 (PST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 09D2FC3B00; Fri, 14 Dec 2001 08:28:42 +0800 (CST) Message-Id: <20011214002842.09D2FC3B00@utopia.leeym.com> Date: Fri, 14 Dec 2001 08:28:42 +0800 (CST) From: Yen-Ming Lee Reply-To: Yen-Ming Lee To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32820: new port: net/udptunnel 1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32820 >Category: ports >Synopsis: new port: net/udptunnel 1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 16:30:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 4.4-STABLE FreeBSD 4.4-STABLE #54: Sun Nov 25 08:19:18 CST 2001 root@utopia.leeym.com:/usr/obj/usr/src/sys/UTOPIA i386 >Description: Tunnel UDP packets over a TCP connection http://www.cs.columbia.edu/~lennox/udptunnel/ >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # udptunnel # udptunnel/Makefile # udptunnel/pkg-comment # udptunnel/pkg-descr # udptunnel/pkg-plist # udptunnel/distinfo # echo c - udptunnel mkdir -p udptunnel > /dev/null 2>&1 echo x - udptunnel/Makefile sed 's/^X//' >udptunnel/Makefile << 'END-of-udptunnel/Makefile' X# New ports collection makefile for: udptunnel X# Date created: 14 December 2001 X# Whom: Yen-Ming Lee X# X# $FreeBSD$ X# X XPORTNAME= udptunnel XPORTVERSION= 1.1 XCATEGORIES= net XMASTER_SITES= ftp://ftp.cs.columbia.edu/pub/lennox/udptunnel/ X XMAINTAINER= leeym@leeym.com X XGNU_CONFIGURE= yes X X.include END-of-udptunnel/Makefile echo x - udptunnel/pkg-comment sed 's/^X//' >udptunnel/pkg-comment << 'END-of-udptunnel/pkg-comment' XTunnel UDP packets over a TCP connection END-of-udptunnel/pkg-comment echo x - udptunnel/pkg-descr sed 's/^X//' >udptunnel/pkg-descr << 'END-of-udptunnel/pkg-descr' XUDPTunnel by Jonathan Lennox; copyright 1999,2001 by Columbia University. X XUDPTunnel is a small program which can tunnel UDP packets bi-directionally Xover a TCP connection. Its primary purpose (and original motivation) is to Xallow multi-media conferences to traverse a firewall which allows only Xoutgoing TCP connections. X XSource code for Unix is available from XWWW: ftp://ftp.cs.columbia.edu/pub/lennox/udptunnel/ X XSee udptunnel.html for installation and usage instructions. See COPYRIGHT Xfor conditions and terms of redistribution. A current version of Xudptunnel.html is located at XWWW: http://www.cs.columbia.edu/~lennox/udptunnel/ X XJonathan Lennox XSeptember 6, 2001 END-of-udptunnel/pkg-descr echo x - udptunnel/pkg-plist sed 's/^X//' >udptunnel/pkg-plist << 'END-of-udptunnel/pkg-plist' Xbin/udptunnel END-of-udptunnel/pkg-plist echo x - udptunnel/distinfo sed 's/^X//' >udptunnel/distinfo << 'END-of-udptunnel/distinfo' XMD5 (udptunnel-1.1.tar.gz) = 1e64753a502f2c12386fa0b7baaf50ba END-of-udptunnel/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 16:30:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C4B3837B41B for ; Thu, 13 Dec 2001 16:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE0U2A01121; Thu, 13 Dec 2001 16:30:02 -0800 (PST) (envelope-from gnats) Received: from CRWdog.demon.co.uk (client-170-057.neoforma.com [12.44.170.57]) by hub.freebsd.org (Postfix) with ESMTP id AFE0F37B405; Thu, 13 Dec 2001 16:26:45 -0800 (PST) Received: by CRWdog.demon.co.uk (Postfix, from userid 1001) id 48E173E5A; Thu, 13 Dec 2001 16:26:40 -0800 (PST) Message-Id: <20011214002640.48E173E5A@CRWdog.demon.co.uk> Date: Thu, 13 Dec 2001 16:26:40 -0800 (PST) From: Andy Sparrow Reply-To: Andy Sparrow To: FreeBSD-gnats-submit@freebsd.org Cc: jmz@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32819: 'xsnow' discrepancy (patch included). Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32819 >Category: ports >Synopsis: 'xsnow' discrepancy (patch included). >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 16:30:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andy Sparrow >Release: FreeBSD 4.4-STABLE i386 >Organization: Precious Little. >Environment: System: FreeBSD omni.geek4food.org 4.4-STABLE FreeBSD 4.4-STABLE #68: Tue Dec 4 12:52:14 PST 2001 root@omni.geek4food.org:/usr/src/sys/compile/tureg i386 With XFree86-4. >Description: Whilst building the older version from my slightly out-of-date ports tree, I encountered the "multiple MANSUFFIX definition from Imake-generated Makefile" problem with XFree86-4 already fixed by jmz in a commit a couple of days ago - thanks! However, whilst looking at it, I noticed that 'xsnow' uses Rosetta Man to build the .html page it installs. I already had this (as a TkMan user), but it wouldn't have worked for anyone who hadn't already got it. >How-To-Repeat: Uninstall 'rman' port/package and attempt to build 'xsnow' from ports. >Fix: diff -u Makefile.orig Makefile --- Makefile.orig Thu Dec 13 16:16:29 2001 +++ Makefile Thu Dec 13 16:12:46 2001 @@ -10,6 +10,7 @@ PORTREVISION= 0 CATEGORIES= x11 MASTER_SITES= http://www.euronet.nl/~rja/Xsnow/ +BUILD_DEPENDS= rman:${PORTSDIR}/textproc/rman MAINTAINER= jmz@FreeBSD.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 16:39:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 498EF37B417; Thu, 13 Dec 2001 16:39:38 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE0ZrH01611; Thu, 13 Dec 2001 16:35:53 -0800 (PST) (envelope-from jmz) Date: Thu, 13 Dec 2001 16:35:53 -0800 (PST) From: Message-Id: <200112140035.fBE0ZrH01611@freefall.freebsd.org> To: andy@CRWdog.demon.co.uk, jmz@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32819: 'xsnow' discrepancy (patch included). Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: 'xsnow' discrepancy (patch included). State-Changed-From-To: open->closed State-Changed-By: jmz State-Changed-When: Thu Dec 13 16:33:56 PST 2001 State-Changed-Why: There is no problem with this port because rman is part of XFree-4. If you remove the rman binary dont be surprised if it does not build. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32819 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 17: 0:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB38637B41C for ; Thu, 13 Dec 2001 17:00:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE100K03848; Thu, 13 Dec 2001 17:00:00 -0800 (PST) (envelope-from gnats) Received: from utopia.leeym.com (utopia.leeym.com [211.72.162.194]) by hub.freebsd.org (Postfix) with ESMTP id 81BB037B41D for ; Thu, 13 Dec 2001 16:54:07 -0800 (PST) Received: by utopia.leeym.com (Postfix, from userid 1000) id DF8E7C3B00; Fri, 14 Dec 2001 08:53:59 +0800 (CST) Message-Id: <20011214005359.DF8E7C3B00@utopia.leeym.com> Date: Fri, 14 Dec 2001 08:53:59 +0800 (CST) From: Yen-Ming Lee Reply-To: Yen-Ming Lee To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32821: update port: mail/ricochet (bug fix) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32821 >Category: ports >Synopsis: update port: mail/ricochet (bug fix) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 17:00:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 4.4-STABLE FreeBSD 4.4-STABLE #54: Sun Nov 25 08:19:18 CST 2001 root@utopia.leeym.com:/usr/obj/usr/src/sys/UTOPIA i386 >Description: change -f to -d in patchfile. bump PORTREVISION >How-To-Repeat: >Fix: diff -ruN --exclude CVS /usr/ports/mail/ricochet/Makefile ricochet/Makefile --- /usr/ports/mail/ricochet/Makefile Mon Oct 15 19:37:29 2001 +++ ricochet/Makefile Fri Dec 14 08:51:09 2001 @@ -7,6 +7,7 @@ PORTNAME= ricochet PORTVERSION= 0.97 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://vipul.net/perl/sources/spamcontrol/ricochet/ diff -ruN --exclude CVS /usr/ports/mail/ricochet/files/patch-ricochet ricochet/files/patch-ricochet --- /usr/ports/mail/ricochet/files/patch-ricochet Mon Oct 15 19:37:30 2001 +++ ricochet/files/patch-ricochet Tue Sep 25 11:03:14 2001 @@ -5,7 +5,7 @@ sub initialize { my $self = shift; - my $rc = "$ENV{RICOCHET}" || "$ENV{HOME}/.ricochet"; $rc .= "/ricochetrc"; -+ my $rc = "$ENV{RICOCHET}" || -f "$ENV{HOME}/.ricochet" ? "$ENV{HOME}/.ricochet" : "%%PREFIX%%/share/ricochet"; ++ my $rc = "$ENV{RICOCHET}" || -d "$ENV{HOME}/.ricochet" ? "$ENV{HOME}/.ricochet" : "%%PREFIX%%/share/ricochet"; + $rc .= "/ricochetrc"; Carp::croak "** Ricochet configuration file $rc doesn't exist. Aborting.\n" unless -e $rc; open (RC, $rc); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 17:50:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B24B837B419 for ; Thu, 13 Dec 2001 17:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE1o0K15885; Thu, 13 Dec 2001 17:50:00 -0800 (PST) (envelope-from gnats) Received: from beccabug.kerion.net (beccabug.kerion.net [66.92.100.121]) by hub.freebsd.org (Postfix) with ESMTP id 2D3EE37B405 for ; Thu, 13 Dec 2001 17:44:04 -0800 (PST) Received: by beccabug.kerion.net (Postfix, from userid 0) id 184895E29; Thu, 13 Dec 2001 20:44:19 -0500 (EST) Message-Id: <20011214014419.184895E29@beccabug.kerion.net> Date: Thu, 13 Dec 2001 20:44:19 -0500 (EST) From: Matt Holmes Reply-To: Matt Holmes To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32823: Update port: devel/viewcvs Update to ViewCVS 0.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32823 >Category: ports >Synopsis: Update port: devel/viewcvs Update to ViewCVS 0.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 17:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Matt Holmes >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD beccabug.kerion.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 8 13:45:11 EST 2001 matt@beccabug.kerion.net:/usr/obj/usr/src/sys/BECCABUG i386 >Description: An update to verison 0.8 of ViewCVS, the Python based web CVS repository viewer. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # viewcvs/ # viewcvs/files # viewcvs/files/patch-aa # viewcvs/Makefile # viewcvs/pkg-plist # viewcvs/pkg-comment # viewcvs/pkg-descr # viewcvs/pkg-message # viewcvs/distinfo # echo c - viewcvs/ mkdir -p viewcvs/ > /dev/null 2>&1 echo c - viewcvs/files mkdir -p viewcvs/files > /dev/null 2>&1 echo x - viewcvs/files/patch-aa sed 's/^X//' >viewcvs/files/patch-aa << 'END-of-viewcvs/files/patch-aa' X--- viewcvs-install Fri May 12 06:26:11 2000 X+++ viewcvs-install.new Sun Jul 2 19:59:28 2000 X@@ -159,10 +159,10 @@ X print INFO_TEXT X X ## get the install path X- temp = raw_input("Installation Path [%s]: " % ROOT_DIR) X- temp = string.strip(temp) X- if len(temp): X- ROOT_DIR = temp X+ #temp = raw_input("Installation Path [%s]: " % ROOT_DIR) X+ #temp = string.strip(temp) X+ #if len(temp): X+ # ROOT_DIR = temp X X ## install the files X print END-of-viewcvs/files/patch-aa echo x - viewcvs/Makefile sed 's/^X//' >viewcvs/Makefile << 'END-of-viewcvs/Makefile' X# New ports collection makefile for: viewcvs X# Date created: Sun 02 Jul 2000 X# Whom: will X# X# $FreeBSD: ports/devel/viewcvs/Makefile,v 1.5 2001/08/23 13:26:43 wjv Exp $ X# X XPORTNAME= viewcvs XPORTVERSION= 0.8 XCATEGORIES= devel python XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} X XMAINTAINER= ports@FreeBSD.org X XUSE_PYTHON= yes XNO_BUILD= yes XPKGMESSAGE= ${WRKDIR}/pkg-message X Xpre-install: X @ ${PERL} -pi -e "s:${PREFIX}/viewcvs-dev:${PREFIX}/${PORTNAME}-${PORTVERSION}:g" \ X ${WRKSRC}/viewcvs-install X Xdo-install: X @ cd ${WRKSRC} && ${PYTHON_CMD} viewcvs-install X Xpost-install: X @ ${SED} -e "s:%%PREFIX%%:${PREFIX}:g" pkg-message >${PKGMESSAGE} X.if !defined(BATCH) X @ ${ECHO} X @ ${CAT} ${PKGMESSAGE} X @ ${ECHO} X.endif X X.include END-of-viewcvs/Makefile echo x - viewcvs/pkg-plist sed 's/^X//' >viewcvs/pkg-plist << 'END-of-viewcvs/pkg-plist' Xviewcvs-0.8/cvsdbadmin Xviewcvs-0.8/loginfo-handler Xviewcvs-0.8/make-database Xviewcvs-0.8/standalone.py Xviewcvs-0.8/cgi/viewcvs.cgi Xviewcvs-0.8/cgi/query.cgi Xviewcvs-0.8/doc/help_rootview.html Xviewcvs-0.8/doc/help_dirview.html Xviewcvs-0.8/doc/images/logo.png Xviewcvs-0.8/doc/images/chalk.jpg Xviewcvs-0.8/doc/images/cvsgraph_16x16.png Xviewcvs-0.8/doc/images/cvsgraph_32x32.png Xviewcvs-0.8/lib/PyFontify.py Xviewcvs-0.8/lib/PyFontify.pyc Xviewcvs-0.8/lib/blame.py Xviewcvs-0.8/lib/blame.pyc Xviewcvs-0.8/lib/compat.py Xviewcvs-0.8/lib/compat.pyc Xviewcvs-0.8/lib/config.py Xviewcvs-0.8/lib/config.pyc Xviewcvs-0.8/lib/cvsdb.py Xviewcvs-0.8/lib/cvsdb.pyc Xviewcvs-0.8/lib/dbi.py Xviewcvs-0.8/lib/dbi.pyc Xviewcvs-0.8/lib/debug.py Xviewcvs-0.8/lib/debug.pyc Xviewcvs-0.8/lib/popen.py Xviewcvs-0.8/lib/popen.pyc Xviewcvs-0.8/lib/py2html.py Xviewcvs-0.8/lib/py2html.pyc Xviewcvs-0.8/lib/query.py Xviewcvs-0.8/lib/query.pyc Xviewcvs-0.8/lib/rcsparse.py Xviewcvs-0.8/lib/rcsparse.pyc Xviewcvs-0.8/lib/rlog.py Xviewcvs-0.8/lib/rlog.pyc Xviewcvs-0.8/lib/viewcvs.py Xviewcvs-0.8/lib/viewcvs.pyc Xviewcvs-0.8/lib/ezt.py Xviewcvs-0.8/lib/ezt.pyc Xviewcvs-0.8/lib/apache_icons.py Xviewcvs-0.8/lib/apache_icons.pyc Xviewcvs-0.8/templates/directory.ezt Xviewcvs-0.8/templates/log.ezt Xviewcvs-0.8/templates/log_table.ezt Xviewcvs-0.8/templates/query.ezt X@dirrm viewcvs-0.8/cgi X@dirrm viewcvs-0.8/doc/images X@dirrm viewcvs-0.8/doc X@dirrm viewcvs-0.8/lib X@dirrm viewcvs-0.8/templates END-of-viewcvs/pkg-plist echo x - viewcvs/pkg-comment sed 's/^X//' >viewcvs/pkg-comment << 'END-of-viewcvs/pkg-comment' XPython version of Zeller's cvsweb END-of-viewcvs/pkg-comment echo x - viewcvs/pkg-descr sed 's/^X//' >viewcvs/pkg-descr << 'END-of-viewcvs/pkg-descr' XViewCVS was inspired by cvsweb (Zeller's version). ViewCVS Xcan browse directories, change logs, and specific revisions Xof files. It can display diffs between versions and show Xselections of files based on tags or branches. In addition, XViewCVS has "annotation" or "blame" support, and the Xbeginnings of Bonsai-like query facilities. X XWWW: http://viewcvs.sourceforge.net/ XAuthor: Greg Stein X X- Will END-of-viewcvs/pkg-descr echo x - viewcvs/pkg-message sed 's/^X//' >viewcvs/pkg-message << 'END-of-viewcvs/pkg-message' XIf you would like to set up ViewCVS in a usable manner, all Xyou need to do is modify the configuration file, located at X%%PREFIX%%/viewcvs-0.8/viewcvs.conf, to note where your XCVSROOT is, and then copy the actual CGI (located at X%%PREFIX%%/viewcvs-0.8/cgi/viewcvs.cgi) to your cgi-bin. XYou may also want to browse the EZT template files at X%%PREFIX%%/viewcvs-0.8/templates/ to customize the look of Xyour web CVS viewer. END-of-viewcvs/pkg-message echo x - viewcvs/distinfo sed 's/^X//' >viewcvs/distinfo << 'END-of-viewcvs/distinfo' XMD5 (viewcvs-0.8.tar.gz) = 5778486247e28f9e9bcd90cf86bab1e9 END-of-viewcvs/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 18:35:58 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mel-rto3.wanadoo.fr (smtp-out-3.wanadoo.fr [193.252.19.233]) by hub.freebsd.org (Postfix) with ESMTP id 9623137B405 for ; Thu, 13 Dec 2001 18:35:52 -0800 (PST) Received: from mahonia.wanadoo.fr (193.252.19.58) by mel-rto3.wanadoo.fr; 14 Dec 2001 03:35:51 +0100 Received: from bureau (193.253.214.126) by mahonia.wanadoo.fr; 14 Dec 2001 03:35:51 +0100 Message-ID: <15a601c18447$363211c0$0a00000a@bureau> From: "DUAL RECRUT" To: Subject: =?iso-8859-1?Q?Venez_d=E9couvrir_notre_nouveau_site_de_recrutement_www.du?= =?iso-8859-1?Q?alrecrut.com?= MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Date: Thu, 13 Dec 2001 18:35:52 -0800 (PST) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Bonjour, Venez d=E9couvrir notre nouveau site de recrutement www.dualrecrut.com Le recrutement facile sur Internet sans abonnement, trouvez le candidat = qu'il vous faut ou un emploi=20 en un minimum de temps ! DUAL RECRUT permet la mise en relation des candidats avec les = recruteurs.=20 Offres d'emploi, CV et recrutement dans tous les domaines = d'activit=E9s. Mise =E0 jour r=E9cente. Fonctionnalit=E9s =E9tendues. A bient=F4t sur www.dualrecrut.com Si vous avez d=E9j=E0 re=E7u ce mail, nous en sommes d=E9sol=E9s, notre = serveur a dupliqu=E9 quelques=20 adresses emails. < pour ne plus recevoir de mail, r=E9pondez STOP =E0 stop@dualrecrut.com = > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 19:10:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E60DF37B417 for ; Thu, 13 Dec 2001 19:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE3A0Y29711; Thu, 13 Dec 2001 19:10:00 -0800 (PST) (envelope-from gnats) Received: from shiva.tri.asanuma.co.jp (shiva.tri.asanuma.co.jp [210.160.188.2]) by hub.freebsd.org (Postfix) with ESMTP id 80DFF37B41A for ; Thu, 13 Dec 2001 18:59:55 -0800 (PST) Received: from yashoda.tri.asanuma.co.jp (yashoda.tri.asanuma.co.jp [172.16.57.11]) by shiva.tri.asanuma.co.jp (Postfix) with ESMTP id 328415444 for ; Fri, 14 Dec 2001 11:59:44 +0900 (JST) Received: from localhost (kurishna.tri.asanuma.co.jp [172.16.57.2]) by yashoda.tri.asanuma.co.jp (8.11.3nb1/8.11.3) with ESMTP id fBE2xhe25528; Fri, 14 Dec 2001 11:59:43 +0900 (JST) Message-Id: <20011214.115943.74750974.mori@tri.asanuma.co.jp> Date: Fri, 14 Dec 2001 11:59:43 +0900 (JST) From: MORI Kouji To: FreeBSD-gnats-submit@freebsd.org Subject: ports/32824: Patch: japanese/man doesn't work -a option Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32824 >Category: ports >Synopsis: Patch: japanese/man doesn't work -a option >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 19:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Koji Mori >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: FreeBSD xxx 4.4-STABLE FreeBSD 4.4-STABLE #60: Thu Nov 29 11:59:47 JST 2001 root@xxx:/xxx/src/sys/XXX i386 >Description: with -a option, japanese/man (jman) search only japanese manual page. but we expect to search japanese and english (original) manual. >How-To-Repeat: do 'jman -a getopt'. if you have japanese manuals, jman output getopt(1) and getopt(3) in japanese, and stop. original manual is not. >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # files/patch-za # echo x - files/patch-za sed 's/^X//' >files/patch-za << 'END-of-files/patch-za' X--- man/locale.c 2001/08/27 00:01:55 X+++ man/locale.c 2001/12/13 03:00:32 X@@ -12,7 +12,6 @@ X X int debug; X int insecure = 0; X-int findall; X char *search_lang_path = "ja%en"; X X typedef struct { X@@ -259,7 +258,7 @@ X return found; X } X X-int man_ml(char *name) X+int man_ml(char *name, int findall) X { X static man_lang_env_t ***root = NULL; X man_lang_env_t ***p; X--- man/locale.h 2001/07/17 01:42:54 X+++ man/locale.h 2001/12/13 02:17:39 X@@ -20,5 +20,5 @@ X char *directive(int); X int try_section_ml(char *, char *, char *, int, int); X int try_section(char *, char *, char *, int); X-int man_ml(char *); X+int man_ml(char *, int); X int man(char *); X--- man/man.c 2001/07/30 08:49:20 X+++ man/man.c 2001/12/13 02:16:57 X@@ -222,7 +222,7 @@ X } X else X { X- status = man_ml (nextarg); X+ status = man_ml (nextarg, findall); X X if (status == 0) X gripe_not_found (nextarg, section); END-of-files/patch-za exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 19:20:20 2001 Delivered-To: freebsd-ports@freebsd.org Received: from seagull.cpinternet.com (mail.cpinternet.com [209.240.224.4]) by hub.freebsd.org (Postfix) with ESMTP id 7350B37B417; Thu, 13 Dec 2001 19:20:17 -0800 (PST) Received: from 209.240.253.23 ([209.240.253.23]) by seagull.cpinternet.com (8.12.0/8.12.0) with ESMTP id fBE3KEC9020212; Thu, 13 Dec 2001 21:20:14 -0600 (CST) Received: by 209.240.253.23 (Postfix, from userid 1001) id B967E14A03; Thu, 13 Dec 2001 21:21:06 -0600 (CST) To: freebsd-ports@freebsd.org Cc: gnome@freebsd.org Subject: evolution conduits From: Michael Harnois Date: Thu, 13 Dec 2001 21:21:06 -0600 Message-ID: <86667aebbx.fsf@mharnois.workgroup.net> Lines: 12 User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.5 (asparagus, i386-unknown-freebsd5.0) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I've got evolution running now, and it's a thing of beauty. But what's the deal with the conduits, which are commented out -- does anyone have a clue what the problem is? It would be truly useful (i.e. I might even be able to get rid of Outlook) if they worked so I could sync my Palm with it. -- Michael D. Harnois bilocational bivocational Pastor, Redeemer Lutheran Church Washburn, Iowa 1L, UST School of Law Minneapolis, Minnesota "Times are bad. Children no longer obey their parents, and everyone is writing a book." -- Marcus Tullius Cicero To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 21: 0:40 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.rapidsite.net (mail.rapidsite.net [207.158.192.62]) by hub.freebsd.org (Postfix) with SMTP id 6D19537B405 for ; Thu, 13 Dec 2001 21:00:37 -0800 (PST) Received: from r00.nat.boca.verio.net (208.55.254.110) by mail.rapidsite.net (RS ver 1.0.62s) with SMTP id 014797078; Fri, 14 Dec 2001 00:00:26 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Jason Vervlied To: consol , freebsd-ports@FreeBSD.ORG Subject: Re: trouble with Eterm Date: Fri, 14 Dec 2001 00:00:22 -0500 X-Mailer: KMail [version 1.3.2] References: <3C18F5FE.1080102@xs4all.nl> In-Reply-To: <3C18F5FE.1080102@xs4all.nl> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Loop-Detect: 1 Message-Id: <20011214050037.6D19537B405@hub.freebsd.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thursday 13 December 2001 01:39 pm, consol wrote: > hey all... > > I have just recently started using FreeBSD and think it's very > *refreshing* coming from a mostly Windows based environment..... > > Anyway whenever I start E-Term it displays something like: > > tcsh: Cannot open /etc/termcap. > tcsh: using dumb terminal settings. > > > Anybody seen this be4? > > Greetz > Yes, I have dealt with this before. This is caused by the new version of Eterm setting the TERM enviornment variable to Eterm rather than xterm or xterm-color as previous versions did. You can either for Eterm to user xterm as the TERM environment vairable by launching Eterm with the flag --term-name=xterm(or whatever else you would like to set TERM to). Or you can add Eterm as a valid TERM in your termcap database with the followin set of commands, assuming you installed Eterm from the ports. Other wise find the location of Eterm.tcap. cd /usr/share/misc/ ; cat /usr/X11R6/share/doc/Eterm/Eterm.tcap >> termcap ; cap_mkdb ./termcap - -Jason To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 21:29:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BEA537B405; Thu, 13 Dec 2001 21:29:38 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE5L4l48148; Thu, 13 Dec 2001 21:21:04 -0800 (PST) (envelope-from petef) Date: Thu, 13 Dec 2001 21:21:04 -0800 (PST) From: Message-Id: <200112140521.fBE5L4l48148@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/32824: Patch: japanese/man doesn't work -a option Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Patch: japanese/man doesn't work -a option Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: petef Responsible-Changed-When: Thu Dec 13 21:20:58 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32824 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 21:35:43 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 2D10D37B419 for ; Thu, 13 Dec 2001 21:35:37 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBE5WkW98285; Fri, 14 Dec 2001 00:32:46 -0500 (EST) (envelope-from alane) Date: Fri, 14 Dec 2001 00:32:46 -0500 From: Alan Eldridge To: Lev Serebryakov Cc: ports@FreeBSD.ORG Subject: Re: autoconf 2.50 Message-ID: <20011214003246.A98250@wwweasel.geeksrus.net> References: <19794459125.20011214005824@serebryakov.spb.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <19794459125.20011214005824@serebryakov.spb.ru>; from lev@serebryakov.spb.ru on Fri, Dec 14, 2001 at 12:58:24AM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Dec 14, 2001 at 12:58:24AM +0300, Lev Serebryakov wrote: >Hello, ports! How are you? > > > System has two identical ports now -- autoconf213 and autoconf. WHY? Lev, I was in a hurry and I might have come off sounding abrasive when I didn't mean to. When I said, "don't say update the ports that use old autoconf or automake", what I should have said was: Unfortunately, updating the ports that fail is not an option. Since ports, by nature, are source that is not under our control, even in cases where it is possible to do, updating would mean a lot of gratuitous patches that the actual author of the ported software has no reason to take. Also, some packages, such as KDE, are so large, and have such complex build systems, that the amount of time and effort expended could not be justified. -- Alan Eldridge Just another $LANGUAGE hacker. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 21:39:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 000AB37B416; Thu, 13 Dec 2001 21:39:38 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE5ZYn49760; Thu, 13 Dec 2001 21:35:34 -0800 (PST) (envelope-from petef) Date: Thu, 13 Dec 2001 21:35:34 -0800 (PST) From: Message-Id: <200112140535.fBE5ZYn49760@freefall.freebsd.org> To: mwm@mired.org, petef@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32540: Add Python Xlib port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Add Python Xlib port State-Changed-From-To: open->closed State-Changed-By: petef State-Changed-When: Thu Dec 13 21:35:28 PST 2001 State-Changed-Why: New port added, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32540 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 23:19:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 12D6837B405; Thu, 13 Dec 2001 23:19:39 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE7I2t68286; Thu, 13 Dec 2001 23:18:02 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 23:18:02 -0800 (PST) From: Message-Id: <200112140718.fBE7I2t68286@freefall.freebsd.org> To: statue@softwareliberty.org, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32813: update port: chinese/ghostscript6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: chinese/ghostscript6 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 23:17:54 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32813 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 23:20:14 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7DAB937B417 for ; Thu, 13 Dec 2001 23:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE7K1u69869; Thu, 13 Dec 2001 23:20:01 -0800 (PST) (envelope-from gnats) Received: from t-mta8.odn.ne.jp (mfep8.odn.ne.jp [143.90.131.186]) by hub.freebsd.org (Postfix) with ESMTP id 8F48237B417 for ; Thu, 13 Dec 2001 23:17:10 -0800 (PST) Received: from localhost ([61.201.64.62]) by t-mta8.odn.ne.jp with ESMTP id <20011214071709999.ZONW.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp>; Fri, 14 Dec 2001 16:17:10 +0900 Message-Id: <20011214071709999.ZONW.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp> Date: Fri, 14 Dec 2001 16:17:08 +0900 From: Kimura Fuyuki To: FreeBSD-gnats-submit@freebsd.org Subject: ports/32826: New port: eieio - Enhanced Integration of Emacs Interpreted Objects Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32826 >Category: ports >Synopsis: New port: eieio - Enhanced Integration of Emacs Interpreted Objects >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 13 23:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD ns.test 4.4-STABLE FreeBSD 4.4-STABLE #2: Tue Dec 4 16:17:57 JST 2001 root@ns.test:/sack/obj/usr/src/sys/NS i386 >Description: EIEIO is an Emacs lisp program which implements a controlled object-oriented programming methodology following the CLOS standard. EIEIO also has object browsing functions, and custom widget types. WWW: http://cedet.sourceforge.net/eieio.shtml >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # eieio # eieio/files # eieio/files/patch-aa # eieio/distinfo # eieio/pkg-plist # eieio/Makefile # eieio/pkg-comment # eieio/pkg-descr # echo c - eieio mkdir -p eieio > /dev/null 2>&1 echo c - eieio/files mkdir -p eieio/files > /dev/null 2>&1 echo x - eieio/files/patch-aa sed 's/^X//' >eieio/files/patch-aa << 'END-of-eieio/files/patch-aa' X--- eieio.texi.orig Sun Dec 9 19:00:01 2001 X+++ eieio.texi Sun Dec 9 19:26:09 2001 X@@ -7,9 +7,10 @@ X X @ifinfo X @format X-START-INFO-DIR-ENTRY X+@dircategory The Emacs editor and associated tools X+@direntry X * eieio: (eieio). Objects for Emacs X-END-INFO-DIR-ENTRY X+@end direntry X @end format X @end ifinfo X END-of-eieio/files/patch-aa echo x - eieio/distinfo sed 's/^X//' >eieio/distinfo << 'END-of-eieio/distinfo' XMD5 (eieio-0.16.tar.gz) = cd72c0adb2768898a255bb2cf95a83dc END-of-eieio/distinfo echo x - eieio/pkg-plist sed 's/^X//' >eieio/pkg-plist << 'END-of-eieio/pkg-plist' X@unexec install-info --delete %D/info/eieio.info %D/info/dir Xinfo/eieio.info X@exec install-info %D/info/eieio.info %D/info/dir X%%EMACS_SITE_LISPDIR%%/eieio/call-tree.el X%%EMACS_SITE_LISPDIR%%/eieio/call-tree.elc X%%EMACS_SITE_LISPDIR%%/eieio/chart.el X%%EMACS_SITE_LISPDIR%%/eieio/chart.elc X%%EMACS_SITE_LISPDIR%%/eieio/compare-strings.el X%%EMACS_SITE_LISPDIR%%/eieio/compare-strings.elc X%%EMACS_SITE_LISPDIR%%/eieio/eieio-base.el X%%EMACS_SITE_LISPDIR%%/eieio/eieio-base.elc X%%EMACS_SITE_LISPDIR%%/eieio/eieio-comp.el X%%EMACS_SITE_LISPDIR%%/eieio/eieio-comp.elc X%%EMACS_SITE_LISPDIR%%/eieio/eieio-custom.el X%%EMACS_SITE_LISPDIR%%/eieio/eieio-custom.elc X%%EMACS_SITE_LISPDIR%%/eieio/eieio-doc.el X%%EMACS_SITE_LISPDIR%%/eieio/eieio-doc.elc X%%EMACS_SITE_LISPDIR%%/eieio/eieio-opt.el X%%EMACS_SITE_LISPDIR%%/eieio/eieio-opt.elc X%%EMACS_SITE_LISPDIR%%/eieio/eieio-speedbar.el X%%EMACS_SITE_LISPDIR%%/eieio/eieio-speedbar.elc X%%EMACS_SITE_LISPDIR%%/eieio/eieio-tests.el X%%EMACS_SITE_LISPDIR%%/eieio/eieio.el X%%EMACS_SITE_LISPDIR%%/eieio/eieio.elc X%%EMACS_SITE_LISPDIR%%/eieio/tree.el X%%EMACS_SITE_LISPDIR%%/eieio/tree.elc X@dirrm %%EMACS_SITE_LISPDIR%%/eieio END-of-eieio/pkg-plist echo x - eieio/Makefile sed 's/^X//' >eieio/Makefile << 'END-of-eieio/Makefile' X# New ports collection makefile for: eieio X# Date created: 10 December 2001 X# Whom: Kimura Fuyuki X# X# $FreeBSD$ X# X XPORTNAME= eieio XPORTVERSION= 0.16 XCATEGORIES= devel elisp XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= cedet XPKGNAMESUFFIX= -${EMACS_PORT_NAME} X XMAINTAINER= fuyuki@mj.0038.net X XEMACS_PORT_NAME?= emacs21 X XUSE_GMAKE= yes X XLISPDIR= ${PREFIX}/${EMACS_SITE_LISPDIR}/eieio X Xdo-install: X ${MKDIR} ${LISPDIR} X.for i in *.el *.elc X ${INSTALL_DATA} ${WRKSRC}/${i} ${LISPDIR} X.endfor X ${INSTALL_DATA} ${WRKSRC}/eieio.info ${PREFIX}/info X install-info ${PREFIX}/info/eieio.info ${PREFIX}/info/dir X X.include END-of-eieio/Makefile echo x - eieio/pkg-comment sed 's/^X//' >eieio/pkg-comment << 'END-of-eieio/pkg-comment' XEnhanced Integration of Emacs Interpreted Objects END-of-eieio/pkg-comment echo x - eieio/pkg-descr sed 's/^X//' >eieio/pkg-descr << 'END-of-eieio/pkg-descr' XEIEIO is an Emacs lisp program which implements a controlled Xobject-oriented programming methodology following the CLOS Xstandard. EIEIO also has object browsing functions, and custom widget Xtypes. X XWWW: http://cedet.sourceforge.net/eieio.shtml X X- Kimura Fuyuki Xfuyuki@mj.0038.net END-of-eieio/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 23:29:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AAF0A37B419; Thu, 13 Dec 2001 23:29:38 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE7OZE73688; Thu, 13 Dec 2001 23:24:35 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 23:24:35 -0800 (PST) From: Message-Id: <200112140724.fBE7OZE73688@freefall.freebsd.org> To: leeym@utopia.leeym.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32820: new port: net/udptunnel 1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new port: net/udptunnel 1.1 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 23:24:23 PST 2001 State-Changed-Why: committed by clive, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32820 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 23:29:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9679537B41B; Thu, 13 Dec 2001 23:29:39 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE7QWI74063; Thu, 13 Dec 2001 23:26:32 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 23:26:32 -0800 (PST) From: Message-Id: <200112140726.fBE7QWI74063@freefall.freebsd.org> To: leeym@utopia.leeym.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32821: update port: mail/ricochet (bug fix) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: mail/ricochet (bug fix) State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 23:26:25 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32821 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 23:29:51 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 07D2537B416; Thu, 13 Dec 2001 23:29:41 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE7RiZ74338; Thu, 13 Dec 2001 23:27:44 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 23:27:44 -0800 (PST) From: Message-Id: <200112140727.fBE7RiZ74338@freefall.freebsd.org> To: matt@kerion.net, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32823: Update port: devel/viewcvs Update to ViewCVS 0.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: devel/viewcvs Update to ViewCVS 0.8 State-Changed-From-To: open->feedback State-Changed-By: ijliao State-Changed-When: Thu Dec 13 23:27:04 PST 2001 State-Changed-Why: please send in patches in diff format http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32823 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 23:29:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3952737B41C; Thu, 13 Dec 2001 23:29:40 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE7LYZ73087; Thu, 13 Dec 2001 23:21:34 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 23:21:34 -0800 (PST) From: Message-Id: <200112140721.fBE7LYZ73087@freefall.freebsd.org> To: statue@softwareliberty.org, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32814: update port: chinese/CJK from 20001003 to 20011008 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: chinese/CJK from 20001003 to 20011008 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Dec 13 23:21:25 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32814 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 13 23:29:59 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E40C37B417; Thu, 13 Dec 2001 23:29:41 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE7Nvh73543; Thu, 13 Dec 2001 23:23:57 -0800 (PST) (envelope-from ijliao) Date: Thu, 13 Dec 2001 23:23:57 -0800 (PST) From: Message-Id: <200112140723.fBE7Nvh73543@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, roam@FreeBSD.org Subject: Re: ports/32815: PORT UPDATE : ftp/curl 7.9.1 -> 7.9.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: PORT UPDATE : ftp/curl 7.9.1 -> 7.9.2 Responsible-Changed-From-To: freebsd-ports->roam Responsible-Changed-By: ijliao Responsible-Changed-When: Thu Dec 13 23:23:46 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32815 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 0:21:29 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by hub.freebsd.org (Postfix) with ESMTP id 361C537B61E for ; Fri, 14 Dec 2001 00:21:17 -0800 (PST) Received: by mail.broadpark.no (Postfix, from userid 60001) id 444F48387; Fri, 14 Dec 2001 09:19:46 +0100 (MET) To: ports@freebsd.org Subject: Message-ID: <1008317986.3c19b6223665b@mail.broadpark.no> Date: Fri, 14 Dec 2001 09:19:46 +0100 (MET) From: johann@broadpark.no MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dear FreeBSD ports staff, Would you mind checking out http://home.online.no/~geir37/genmenu/, and perhaps creating a port for it? Thanks. Sincerely, Johann Sharizan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 1:19:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA8E137B405; Fri, 14 Dec 2001 01:19:38 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE9J8r02346; Fri, 14 Dec 2001 01:19:08 -0800 (PST) (envelope-from sobomax) Date: Fri, 14 Dec 2001 01:19:08 -0800 (PST) From: Message-Id: <200112140919.fBE9J8r02346@freefall.freebsd.org> To: sobomax@FreeBSD.org, gnome@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32559: gdkxft is now at version 1.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: gdkxft is now at version 1.4 Responsible-Changed-From-To: gnome->freebsd-ports Responsible-Changed-By: sobomax Responsible-Changed-When: Fri Dec 14 01:18:23 PST 2001 Responsible-Changed-Why: I'm resigned as a maintainer. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32559 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 1:29:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D39AB37B405; Fri, 14 Dec 2001 01:29:38 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE9OKS03238; Fri, 14 Dec 2001 01:24:20 -0800 (PST) (envelope-from sobomax) Date: Fri, 14 Dec 2001 01:24:20 -0800 (PST) From: Message-Id: <200112140924.fBE9OKS03238@freefall.freebsd.org> To: sobomax@FreeBSD.org, gnome@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/31378: Port upgrade : gdkxft 1.1 -> gdkxft 1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Port upgrade : gdkxft 1.1 -> gdkxft 1.2 Responsible-Changed-From-To: gnome->freebsd-ports Responsible-Changed-By: sobomax Responsible-Changed-When: Fri Dec 14 01:23:43 PST 2001 Responsible-Changed-Why: GNOME is no longer maintains this port. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31378 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 1:29:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3ADCE37B416; Fri, 14 Dec 2001 01:29:39 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE9N3x03106; Fri, 14 Dec 2001 01:23:03 -0800 (PST) (envelope-from sobomax) Date: Fri, 14 Dec 2001 01:23:03 -0800 (PST) From: Message-Id: <200112140923.fBE9N3x03106@freefall.freebsd.org> To: sobomax@FreeBSD.org, gnome@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/30707: midnight commander can't handle correctly the C-o keyseq Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: midnight commander can't handle correctly the C-o keyseq Responsible-Changed-From-To: gnome->freebsd-ports Responsible-Changed-By: sobomax Responsible-Changed-When: Fri Dec 14 01:22:20 PST 2001 Responsible-Changed-Why: GNOME team no longer maintains this port. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30707 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 1:29:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BB5137B419; Fri, 14 Dec 2001 01:29:40 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBE9LOq02799; Fri, 14 Dec 2001 01:21:24 -0800 (PST) (envelope-from sobomax) Date: Fri, 14 Dec 2001 01:21:24 -0800 (PST) From: Message-Id: <200112140921.fBE9LOq02799@freefall.freebsd.org> To: sobomax@FreeBSD.org, gnome@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32328: Port update: mc-4.5.55 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Port update: mc-4.5.55 Responsible-Changed-From-To: gnome->freebsd-ports Responsible-Changed-By: sobomax Responsible-Changed-When: Fri Dec 14 01:19:32 PST 2001 Responsible-Changed-Why: GNOME team no longer maintains this port. Also submitted update has problems with hier(7) - data files shouldn't go into ${PREFIX}/lib - please correct and resubmit. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32328 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 3:14:16 2001 Delivered-To: freebsd-ports@freebsd.org Received: from demos.su (mx.demos.su [194.87.0.32]) by hub.freebsd.org (Postfix) with ESMTP id 7CD7C37B41B for ; Fri, 14 Dec 2001 03:14:09 -0800 (PST) Received: from [194.87.0.7] (HELO dune3.demos.su) by demos.su (CommuniGate Pro SMTP 3.4.8/D) with ESMTP-TLS id 35093786; Fri, 14 Dec 2001 14:14:07 +0300 Received: from storm.demos.su (storm.demos.su [194.87.2.36]) by dune3.demos.su (8.11.6/8.11.6) with ESMTP id fBEBE6c18356; Fri, 14 Dec 2001 14:14:06 +0300 (MSK) (envelope-from mitya@cavia.pp.ru) Date: Fri, 14 Dec 2001 14:10:11 +0300 From: =?Windows-1251?B?xOzo8vDo6SDR6OLg9+Xt6u4=?= X-Mailer: The Bat! (v1.53d) Business Reply-To: =?Windows-1251?B?xOzo8vDo6SDR6OLg9+Xt6u4=?= Organization: Demos-Internet X-Priority: 3 (Normal) Message-ID: <1497208835.20011214141011@cavia.pp.ru> To: "Akinori MUSHA" Cc: ports@FreeBSD.ORG Subject: Re: Announcing the FreeBSD-XFree86 workers list In-Reply-To: <86ofl5eps7.wl@archon.local.idaemons.org> References: <86ofl5eps7.wl@archon.local.idaemons.org> MIME-Version: 1.0 Content-Type: text/plain; charset=Windows-1251 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org AM> Here I announce the launch of the FreeBSD-XFree86 list, which is AM> created for discussion on reorganizing, improving and maintaining the AM> XFree86 ports for FreeBSD. Top priority of the moment is to divide AM> the one big XFree86-4 port into a set of component ports and make the AM> build process better. AM> Currently, the maintainers of the XFree86 4.x ports, Will as a AM> portmgr, and I as coordinator/administrator of the list are joining, AM> while we always welcome those who are interested in maintaining and AM> improving the XFree86 4.x ports. AM> To join the list and/or browse the archive, use the following web AM> interface: AM> http://lists.csociety.org/listinfo/freebsd-xfree86 AM> To begin with, we the workers will be concentrating on replacing the AM> stock x11/XFree86-4 port with a meta port of the component ports AM> (x11*/XFree86-4-*), so please do not post mere questions here yet. AM> Try ports@FreeBSD.org or questions@FreeBSD.org for that purpose. We AM> will post a further announcement when we are ready to accept questions AM> from ordinary users. (And we'll probably move to xfree86@FreeBSD.org AM> then) Why all this stuff is being maintained at lists.csociety.org rather that at FreeBSD dot org??? It is more convenient to manage all FreeBSD atuff in one place and to have the list of all lists available in one web-page. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 3:46:31 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mr01.conversent.com (mr01.conversent.net [216.41.101.18]) by hub.freebsd.org (Postfix) with ESMTP id 29D2F37B419; Fri, 14 Dec 2001 03:46:23 -0800 (PST) Received: from lynchandgreenfield.com (host202.96.41.216.conversent.net [216.41.96.202]) by mr01.conversent.com (8.11.6/8.11.6) with SMTP id fBEBjF517368; Fri, 14 Dec 2001 06:45:15 -0500 (EST) Message-Id: <200112141145.fBEBjF517368@mr01.conversent.com> Received: from WIN10548 ([130.94.19.12]) by lynchandgreenfield.com; Fri, 14 Dec 2001 06:19:15 -0500 From: sunheekim@hitel.net Subject: =?ISO-8859-1?Q?=BC=B1=C8=F1?= To: ports@freebsd.org Content-Type: text/plain;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Reply-To: sunheekim@hitel.net Date: Fri, 14 Dec 2001 06:10:09 -0500 X-Priority: 3 X-Library: Indy 8.0.25 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org
³ª¼±Èñ¾ß

ÀÌ»çÇÑ´Ù´õ´Ï ¿¬¶ôÀÌ À߾ȵǴ ±¸³ª

Á¾·Î¿¡¼­ ¿ù¸»¿¡ 5Â÷Á¤±â ¸ðÀÓÀÌ Àִµ¥,

ºÎµð ºüÁöÁö ¸»°í ³ª¿Í¶ó



±×¸®°í  ÀÎÀÚ »õ·Î»ý±ä »çÀÌÆ®µ¥ www.sexbozi.com À̾ß

½Ã°£ ÀÖÀ¸¸é Çѹø°¡ºÁ

±×·¡ ±×¶§º¸ÀÚ ¾È³ç..



±×¸®°í ³»ÆùÀÌ³Ä 016-582-1789 ¿¬¶ô±â´Ù¸°´Ù

¼±Èñ°¡.......
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 4:19:31 2001 Delivered-To: freebsd-ports@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id B0E1437B41D for ; Fri, 14 Dec 2001 04:19:27 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16ErKS-000Mgi-00 for ports@FreeBSD.org; Fri, 14 Dec 2001 14:20:40 +0200 From: Sheldon Hearn To: ports@FreeBSD.org Subject: How to skip a port on a newly added userland feature? Date: Fri, 14 Dec 2001 14:20:40 +0200 Message-ID: <87215.1008332440@axl.seasidesoftware.co.za> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi folks, How do I arrange for the net/smbfs port to refuse to build or install based on a newly added userland feature? My understanding is the OSRELDATE is for kernel-related features. What's the userland equivalent that I need to bump and then test? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 4:40:40 2001 Delivered-To: freebsd-ports@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 89B0537B416 for ; Fri, 14 Dec 2001 04:40:37 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16Erew-000Mnm-00 for ports@FreeBSD.org; Fri, 14 Dec 2001 14:41:50 +0200 From: Sheldon Hearn To: ports@FreeBSD.org Subject: Re: How to skip a port on a newly added userland feature? In-reply-to: Your message of "Fri, 14 Dec 2001 14:20:40 +0200." <87215.1008332440@axl.seasidesoftware.co.za> Date: Fri, 14 Dec 2001 14:41:50 +0200 Message-ID: <87653.1008333710@axl.seasidesoftware.co.za> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 14 Dec 2001 14:20:40 +0200, Sheldon Hearn wrote: > How do I arrange for the net/smbfs port to refuse to build or install > based on a newly added userland feature? > > My understanding is the OSRELDATE is for kernel-related features. > What's the userland equivalent that I need to bump and then test? Nevermind. Found my answer in the porter's handbook. Seems that OSRELDATE _is_ what I want, and I should bump it in param.h. Sorry, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 5:10:13 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id B82D337B405 for ; Fri, 14 Dec 2001 05:10:08 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id PAA65374; Fri, 14 Dec 2001 15:09:57 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (root@h222.229.dialup.iptcom.net [212.9.229.222]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id PAA21023; Fri, 14 Dec 2001 15:09:54 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id fBED9CF33163; Fri, 14 Dec 2001 15:09:12 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C19FAAF.7B3450F8@FreeBSD.org> Date: Fri, 14 Dec 2001 15:12:15 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Sheldon Hearn Cc: ports@FreeBSD.org Subject: Re: How to skip a port on a newly added userland feature? References: <87215.1008332440@axl.seasidesoftware.co.za> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Sheldon Hearn wrote: > > Hi folks, > > How do I arrange for the net/smbfs port to refuse to build or install > based on a newly added userland feature? > > My understanding is the OSRELDATE is for kernel-related features. > What's the userland equivalent that I need to bump and then test? Much simpler. In this particular case, ".if exists(/usr/bin/foo)" make(1) directive would do the trick. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 5:16:55 2001 Delivered-To: freebsd-ports@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 4925137B419; Fri, 14 Dec 2001 05:16:52 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16EsE0-000Myk-00; Fri, 14 Dec 2001 15:18:04 +0200 From: Sheldon Hearn To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: How to skip a port on a newly added userland feature? In-reply-to: Your message of "Fri, 14 Dec 2001 15:12:15 +0200." <3C19FAAF.7B3450F8@FreeBSD.org> Date: Fri, 14 Dec 2001 15:18:04 +0200 Message-ID: <88333.1008335884@axl.seasidesoftware.co.za> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 14 Dec 2001 15:12:15 +0200, Maxim Sobolev wrote: > Much simpler. In this particular case, ".if exists(/usr/bin/foo)" > make(1) directive would do the trick. The problem with that approach (which works fine for bzip2) is that mount_smbfs is installed into /sbin by the net/smbfs port, so upgrading with FORCE_PKG_REGISTER won't work on older systems. Is the approach you give preferred over what I've done to net/smbfs/Makefile using OSRELDATE, or is what I've done okay? .if ${OSVERSION} > 500027 BROKEN= "OS versions subsequent to 500027 include smbfs" .endif Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 5:38: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id A3CA837B41D for ; Fri, 14 Dec 2001 05:37:52 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id PAA88021; Fri, 14 Dec 2001 15:37:43 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (root@h71.229.dialup.iptcom.net [212.9.229.71]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id PAA32704; Fri, 14 Dec 2001 15:37:41 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id fBEDbdF33233; Fri, 14 Dec 2001 15:37:39 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C1A015B.2FAE2053@FreeBSD.org> Date: Fri, 14 Dec 2001 15:40:43 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Sheldon Hearn Cc: ports@FreeBSD.org Subject: Re: How to skip a port on a newly added userland feature? References: <88333.1008335884@axl.seasidesoftware.co.za> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Sheldon Hearn wrote: > > On Fri, 14 Dec 2001 15:12:15 +0200, Maxim Sobolev wrote: > > > Much simpler. In this particular case, ".if exists(/usr/bin/foo)" > > make(1) directive would do the trick. > > The problem with that approach (which works fine for bzip2) is that > mount_smbfs is installed into /sbin by the net/smbfs port, so upgrading > with FORCE_PKG_REGISTER won't work on older systems. Ah, I see. > Is the approach you give preferred over what I've done to > net/smbfs/Makefile using OSRELDATE, or is what I've done okay? > > .if ${OSVERSION} > 500027 > BROKEN= "OS versions subsequent to 500027 include smbfs" > .endif No, it much a personal preference, actually. BTW, IGNORE is more appropriate in such cases than BORKEN - I've just committed a fix. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 6:12: 8 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blake.arcadia.spb.ru (ns.arcadia.spb.ru [212.119.177.2]) by hub.freebsd.org (Postfix) with ESMTP id 0A1FB37B419 for ; Fri, 14 Dec 2001 06:12:02 -0800 (PST) Received: from antigw (anti.arcadia.spb.ru [212.119.177.3] (may be forged)) by blake.arcadia.spb.ru (8.9.2/8.8.6) with SMTP id RAA24426 for ; Fri, 14 Dec 2001 17:16:30 +0300 (MSK) Received: from [172.16.16.85]:3477 (EHLO lev) by anti.arcadia.spb.ru ([212.119.177.3]:25) (F-Secure Anti-Virus for Internet Mail 6.0.27 Release) with SMTP; Fri, 14 Dec 2001 14:05:58 -0000 Date: Fri, 14 Dec 2001 17:10:51 +0300 From: Lev Serebryakov X-Mailer: The Bat! (v1.53d) Reply-To: Lev Serebryakov X-Priority: 3 (Normal) Message-ID: <14211276915.20011214171051@serebryakov.spb.ru> To: Alan Eldridge Subject: Re[2]: autoconf 2.50 In-Reply-To: <20011213172333.A96484@wwweasel.geeksrus.net> References: <19794459125.20011214005824@serebryakov.spb.ru> <20011213172333.A96484@wwweasel.geeksrus.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello Alan, Friday, December 14, 2001, 1:23:33 AM, you wrote: AE> On Fri, Dec 14, 2001 at 12:58:24AM +0300, Lev Serebryakov wrote: >>Hello, ports! How are you? >> >> deve/autoconf port has 2.13-XXX version :( >> And many programs want autoconf-2.50 already. >> For example, I want to update icewm port to 1.0.9-2 version, and >> icewm 1.0.9 needs autoconf-2.50. >> System has two identical ports now -- autoconf213 and autoconf. WHY? AE> They are not identical. Same for automake. Oh, really?! devel/autoconf is: PORTNAME= autoconf PORTVERSION= 2.13.000227 devel/autoconf213 is: PORTNAME= autoconf213 PORTVERSION= 2.13.000227 They installs SAME files under DIFFERENT names. Now we have cool way to use differnet versions of autoconf & automake: USE_AUTOCONF_VER=XXX, USE_AUTOMAKE_VER=XXX So, we COULD have new autoconf in simple port (without version after name: devel/autoconf) and use DIFFERNT versions for DIFFERENT ports. Of course, we should use autoconf213 by default (if here is USE_AUTOCONF=yes and NO USE_AUTOCONF_VER=XXX) and same for automake14/automake. It WORK for automake now! We HAVE new automake in devel/automake port and appropriate code in Mk/bsd.port.mk (it understand versions 14 and 15)! And we have only a HALF of code for autoconf in Mk/bsd.port.mk (it understands only version 213), and we DON'T HAVE autoconf 2.50 in devel/autoconf. WHY? AE> Make ports will not build using the newer versions. And don't say they I know it. But see above... -- Best regards, Lev mailto:lev@serebryakov.spb.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 6:16:21 2001 Delivered-To: freebsd-ports@freebsd.org Received: from www.yahho.com (28.c210-85-16.ethome.net.tw [210.85.16.28]) by hub.freebsd.org (Postfix) with SMTP id 51E4E37B417; Fri, 14 Dec 2001 06:15:52 -0800 (PST) Received: from tpts7 by tcts.seed.net.tw with SMTP id VCZcKEgT6NfbFg3t5pGAwwAcg1; Fri, 14 Dec 2001 22:23:23 +0800 Message-ID: From: Santa@yahoo.com To: Subject:Merry Christmas MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_dWS8e4H5ubXjneRRoat" X-Mailer: oZma3iezzmlIMEBlK X-Priority: 3 X-MSMail-Priority: Normal Date: Fri, 14 Dec 2001 06:15:52 -0800 (PST) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_dWS8e4H5ubXjneRRoat Content-Type: multipart/alternative; boundary="----=_NextPart_dWS8e4H5ubXjneRRoatAA" ------=_NextPart_dWS8e4H5ubXjneRRoatAA Content-Type: text/html; charset="big5" Content-Transfer-Encoding: base64 PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT5VbnRpdGxlZCBEb2N1bWVudDwvdGl0bGU+DQo8bWV0YSBo dHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1iaWc1 Ij4NCjwvaGVhZD4NCg0KPGJvZHkgYmdjb2xvcj0iI0ZGRkZGRiI+DQo8b2JqZWN0IGNsYXNzaWQ9 ImNsc2lkOkQyN0NEQjZFLUFFNkQtMTFjZi05NkI4LTQ0NDU1MzU0MDAwMCIgY29kZWJhc2U9Imh0 dHA6Ly9kb3dubG9hZC5tYWNyb21lZGlhLmNvbS9wdWIvc2hvY2t3YXZlL2NhYnMvZmxhc2gvc3dm bGFzaC5jYWIjdmVyc2lvbj00LDAsMiwwIiB3aWR0aD0iNTUwIiBoZWlnaHQ9IjMyNCI+DQogIDxw YXJhbSBuYW1lPSJfY3giIHZhbHVlPSIxNDU1MiI+DQogIDxwYXJhbSBuYW1lPSJfY3kiIHZhbHVl PSI4NTczIj4NCiAgPHBhcmFtIG5hbWU9Ik1vdmllIiB2YWx1ZT0iaHR0cDovL3d3dy5pdmlkZW8u Y29tLnR3L2ZsYXNoL2UtY2FyZC5zd2YiPg0KICA8cGFyYW0gbmFtZT0iU3JjIiB2YWx1ZT0iaHR0 cDovL3d3dy5pdmlkZW8uY29tLnR3L2ZsYXNoL2UtY2FyZC5zd2YiPg0KICA8cGFyYW0gbmFtZT0i V01vZGUiIHZhbHVlPSJXaW5kb3ciPg0KICA8cGFyYW0gbmFtZT0iUGxheSIgdmFsdWU9IjAiPg0K ICA8cGFyYW0gbmFtZT0iTG9vcCIgdmFsdWU9Ii0xIj4NCiAgPHBhcmFtIG5hbWU9IlF1YWxpdHki IHZhbHVlPSJIaWdoIj4NCiAgPHBhcmFtIG5hbWU9IlNBbGlnbiIgdmFsdWU+DQogIDxwYXJhbSBu YW1lPSJNZW51IiB2YWx1ZT0iLTEiPg0KICA8cGFyYW0gbmFtZT0iQmFzZSIgdmFsdWU+DQogIDxw YXJhbSBuYW1lPSJTY2FsZSIgdmFsdWU9IlNob3dBbGwiPg0KICA8cGFyYW0gbmFtZT0iRGV2aWNl Rm9udCIgdmFsdWU9IjAiPg0KICA8cGFyYW0gbmFtZT0iRW1iZWRNb3ZpZSIgdmFsdWU9IjAiPg0K ICA8cGFyYW0gbmFtZT0iQkdDb2xvciIgdmFsdWU+DQogIDxwYXJhbSBuYW1lPSJTV1JlbW90ZSIg dmFsdWU+DQogIDxwYXJhbSBuYW1lPSJTdGFja2luZyIgdmFsdWU9ImJlbG93Ij48ZW1iZWQgc3Jj PSJodHRwOi8vd3d3Lml2aWRlby5jb20udHcvZmxhc2gvZS1jYXJkLnN3ZiIgcXVhbGl0eT0iaGln aCIgcGx1Z2luc3BhZ2U9Imh0dHA6Ly93d3cubWFjcm9tZWRpYS5jb20vc2hvY2t3YXZlL2Rvd25s b2FkL2luZGV4LmNnaT9QMV9Qcm9kX1ZlcnNpb249U2hvY2t3YXZlRmxhc2giIHR5cGU9ImFwcGxp Y2F0aW9uL3gtc2hvY2t3YXZlLWZsYXNoIiB3aWR0aD0iNTUwIiBoZWlnaHQ9IjMyNCI+IA0KPC9v YmplY3Q+IA0KDQo8cD48YSBocmVmPSJodHRwOi8vd3d3Lml2aWRlby5jb20udHcvZmxhc2gvcm9t YW5jZS5hc3AiPjxpbWcgYm9yZGVyPSIwIiBzcmM9Imh0dHA6Ly93d3cuaXZpZGVvLmNvbS50dy9m bGFzaC9pbWFnZXMvaG9tZV8xLmdpZiIgd2lkdGg9IjE1MiIgaGVpZ2h0PSI3MCI+PC9hPjwvcD4N CjwvYm9keT4NCjwvaHRtbD4= ------=_NextPart_dWS8e4H5ubXjneRRoatAA-- ------=_NextPart_dWS8e4H5ubXjneRRoat-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 6:28:39 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 0134637B419; Fri, 14 Dec 2001 06:28:29 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id QAA27790; Fri, 14 Dec 2001 16:28:18 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (root@h125.229.dialup.iptcom.net [212.9.229.125]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id QAA52662; Fri, 14 Dec 2001 16:28:16 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id fBEESFF33392; Fri, 14 Dec 2001 16:28:15 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C1A0D36.CBBD8DB8@FreeBSD.org> Date: Fri, 14 Dec 2001 16:31:18 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Michael Harnois Cc: freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: evolution conduits References: <86667aebbx.fsf@mharnois.workgroup.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Michael Harnois wrote: > > I've got evolution running now, and it's a thing of beauty. But what's > the deal with the conduits, which are commented out -- does anyone > have a clue what the problem is? It would be truly useful (i.e. I > might even be able to get rid of Outlook) if they worked so I could > sync my Palm with it. I've just committed appropriate change. Please recvsup and rebuild/reinstall Evolution as usually. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 7:11:55 2001 Delivered-To: freebsd-ports@freebsd.org Received: from madlen.mts.ru (madlen.mts.ru [212.44.140.2]) by hub.freebsd.org (Postfix) with ESMTP id F3E3C37B41C for ; Fri, 14 Dec 2001 07:11:50 -0800 (PST) Received: from stella.komi.mts.ru (stella [10.50.1.1]) by madlen.mts.ru with ESMTP id fBEFBjY13880; Fri, 14 Dec 2001 18:11:46 +0300 (MSK) Received: from DAV.komi.mts.ru (dav.komi.mts.ru [10.50.1.37]) (authenticated as tiamat with PLAIN) by stella.komi.mts.ru (8.11.6/0.0.0) with ESMTP id fBEFBdf33342 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified NO); Fri, 14 Dec 2001 18:11:42 +0300 (MSK) (envelope-from tiamat@komi.mts.ru) Date: Fri, 14 Dec 2001 18:11:39 +0300 From: Alex Deiter X-Mailer: The Bat! (v1.53d) Reply-To: Alex Deiter Organization: MTS X-Priority: 3 (Normal) Message-ID: <903321055.20011214181139@komi.mts.ru> To: gonza@techline.ru Cc: ports@FreeBSD.org Subject: FreeBSD Port: popa3d-0.4 MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org äÏÂÒÙÊ ÄÅÎØ! óËÁÖÉÔÅ ÐÏÖÁÌÕÊÓÔÁ, ÐÏÞÅÍÕ ÎÅ ÏÂÎÏ×ÌÑÅÔÓÑ popa3d × ÐÏÒÔÁÈ FreeBSD ? -- Best regards, Alex mailto:tiamat@komi.mts.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 7:54:23 2001 Delivered-To: freebsd-ports@freebsd.org Received: from seagull.cpinternet.com (mail.cpinternet.com [209.240.224.4]) by hub.freebsd.org (Postfix) with ESMTP id 1415737B405 for ; Fri, 14 Dec 2001 07:54:13 -0800 (PST) Received: from 209.240.253.23 ([209.240.253.23]) by seagull.cpinternet.com (8.12.0/8.12.0) with ESMTP id fBEFs9e1007576 for ; Fri, 14 Dec 2001 09:54:10 -0600 (CST) Received: by 209.240.253.23 (Postfix, from userid 1001) id 4B2A314A03; Fri, 14 Dec 2001 09:54:52 -0600 (CST) To: freebsd-ports@freebsd.org Subject: gdm and environment variables Keywords: perl,warning,locale From: Michael Harnois Date: Fri, 14 Dec 2001 09:54:50 -0600 Message-ID: <864rmtdcfp.fsf@mharnois.workgroup.net> Lines: 19 User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.5 (asparagus, i386-unknown-freebsd5.0) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Something about the difference between gdm and xdm seems to cause certain important environment variables not to get set, i.e. using perl generates messages like perl: warning: Falling back to the standard locale ("C"). perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LC_ALL = (unset), LANG = "en_US" are supported and installed on your system. Anyone have a clue? -- Michael D. Harnois bilocational bivocational Pastor, Redeemer Lutheran Church Washburn, Iowa 1L, UST School of Law Minneapolis, Minnesota "I have never heard anything about the resolutions of the apostles, but a good deal about their acts." --Horace Mann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 8: 2:10 2001 Delivered-To: freebsd-ports@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 60FA637B405 for ; Fri, 14 Dec 2001 08:02:06 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id fBEG2Qm82695; Fri, 14 Dec 2001 11:02:26 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 14 Dec 2001 11:02:26 -0500 (EST) From: Joe Clarke To: Michael Harnois Cc: freebsd-ports@FreeBSD.ORG Subject: Re: gdm and environment variables In-Reply-To: <864rmtdcfp.fsf@mharnois.workgroup.net> Message-ID: <20011214105836.V82637-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is an easy fix, and I should have submitted a PR, but you can get away without doing any patching. One option involves editing /usr/X11R6/etc/gdm/locale.alias, and change the "english" locale to either en_US.ISO_8859-1 or en_GB.ISO_8859-1 depending on what English you prefer. If you don't feel like editing a file, just make sure you select either American English or British English from the Language menu in gdm. Joe On Fri, 14 Dec 2001, Michael Harnois wrote: > Something about the difference between gdm and xdm seems to cause > certain important environment variables not to get set, i.e. using > perl generates messages like > > perl: warning: Falling back to the standard locale ("C"). > perl: warning: Setting locale failed. > perl: warning: Please check that your locale settings: > LC_ALL = (unset), > LANG = "en_US" > are supported and installed on your system. > > Anyone have a clue? > > -- > Michael D. Harnois bilocational bivocational > Pastor, Redeemer Lutheran Church Washburn, Iowa > 1L, UST School of Law Minneapolis, Minnesota > "I have never heard anything about the resolutions of the apostles, > but a good deal about their acts." --Horace Mann > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 8:40:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6236837B41A for ; Fri, 14 Dec 2001 08:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBEGe1Q08011; Fri, 14 Dec 2001 08:40:01 -0800 (PST) (envelope-from gnats) Received: from krusty.e-technik.uni-dortmund.de (krusty.E-Technik.Uni-Dortmund.DE [129.217.163.1]) by hub.freebsd.org (Postfix) with ESMTP id 7C9EA37B41A; Fri, 14 Dec 2001 08:39:23 -0800 (PST) Received: from emma1.emma.line.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1]) by krusty.e-technik.uni-dortmund.de (Postfix) with ESMTP id 0AFB3A3826; Fri, 14 Dec 2001 17:39:20 +0100 (CET) Received: from freebsd.emma.line.org (freebsd.emma.line.org [192.168.0.4]) by emma1.emma.line.org (Postfix) with ESMTP id 4963AA2003; Fri, 14 Dec 2001 17:39:20 +0100 (CET) Received: by freebsd.emma.line.org (Postfix, from userid 500) id 0BE362D308; Fri, 14 Dec 2001 17:39:19 +0100 (CET) Message-Id: <20011214163919.0BE362D308@freebsd.emma.line.org> Date: Fri, 14 Dec 2001 17:39:19 +0100 (CET) From: Matthias Andree Reply-To: Matthias Andree To: FreeBSD-gnats-submit@freebsd.org Cc: sobomax@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32829: update port: ftp/ftpcopy: 0.4.2 -> 0.4.5: bugfixes, features Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32829 >Category: ports >Synopsis: update port: ftp/ftpcopy: 0.4.2 -> 0.4.5: bugfixes, features >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 08:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.emma.line.org 4.4-STABLE FreeBSD 4.4-STABLE #1: Sat Nov 17 17:23:57 CET 2001 root@freebsd.emma.line.org:/usr/obj/usr/src/sys/M2A2 i386 >Description: A new ftpcopy version is available, it contains several new features and bugfixes. From NEWS: 0.4.5 December 2001 * worked around a ftp server which closed the data connection without having sent a single byte. * reordered and grouped --longhelp and --help output. * added --login-sleep option. It affects the time to sleep after a failed connect or login. The default is the fixed value used before (5). * added --max-deletes option to control how many files will be deleted at the end of a single run. The default is unlimited. 0.4.4 November 2001 * fixed a bug in the MLSD processing. * added --ignore-time option to not download files if the modification time has changed. * added --ignore-size option to not download files if the size has changed. * ftpls will no longer follow endless symbolic link loops. 0.4.3 September 2001 * the workaround for missing utimes() didn't work. Impact: 0.4.2 didn't compile on such systems (fix: trivial). >How-To-Repeat: >Fix: Apply this patch to ports/ with -p0: diff -ruN --exclude=work ftpcopy.orig/ftpcopy/Makefile ftpcopy/Makefile --- ftpcopy.orig/ftpcopy/Makefile Sun Sep 9 02:25:36 2001 +++ ftpcopy/Makefile Fri Dec 14 17:29:24 2001 @@ -6,7 +6,7 @@ # PORTNAME= ftpcopy -PORTVERSION= 0.4.2 +PORTVERSION= 0.4.5 CATEGORIES= ftp MASTER_SITES= http://www.ohse.de/uwe/ftpcopy/ diff -ruN --exclude=work ftpcopy.orig/ftpcopy/distinfo ftpcopy/distinfo --- ftpcopy.orig/ftpcopy/distinfo Sun Sep 9 02:25:36 2001 +++ ftpcopy/distinfo Fri Dec 14 17:29:37 2001 @@ -1 +1 @@ -MD5 (ftpcopy-0.4.2.tar.gz) = 0b2048457f0c6eb4b7f205bb8b502310 +MD5 (ftpcopy-0.4.5.tar.gz) = 48b8922897c5d4ae400c38594813a45d Binary files ftpcopy.orig/ftpcopy/ftpcopy-0.4.5.tgz and ftpcopy/ftpcopy-0.4.5.tgz differ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 9: 1: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from holmes.grauel.com (holmes.grauel.com [199.233.104.35]) by hub.freebsd.org (Postfix) with ESMTP id DC1F737B417 for ; Fri, 14 Dec 2001 09:00:56 -0800 (PST) Received: from moriarity.grauel.com (moriarity [199.233.104.37]) by holmes.grauel.com (8.11.6/8.11.2) with SMTP id fBEH0ou50442 for ; Fri, 14 Dec 2001 12:00:50 -0500 (EST) (envelope-from rjk@grauel.com) Date: Fri, 14 Dec 2001 12:00:51 -0500 From: Richard Kuhns To: freebsd-ports@freebsd.org Subject: Re: gdm and environment variables Message-Id: <20011214120051.7b0fe1d3.rjk@grauel.com> In-Reply-To: <20011214105836.V82637-100000@shumai.marcuscom.com> References: <864rmtdcfp.fsf@mharnois.workgroup.net> <20011214105836.V82637-100000@shumai.marcuscom.com> Organization: Grauel Enterprises, Inc X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 14 Dec 2001 11:02:26 -0500 (EST) Joe Clarke wrote: > This is an easy fix, and I should have submitted a PR, but you can get > away without doing any patching. > > One option involves editing /usr/X11R6/etc/gdm/locale.alias, and change > the "english" locale to either en_US.ISO_8859-1 or en_GB.ISO_8859-1 > depending on what English you prefer. If you don't feel like editing a > file, just make sure you select either American English or British English > from the Language menu in gdm. > > Joe > > > On Fri, 14 Dec 2001, Michael Harnois wrote: > > > Something about the difference between gdm and xdm seems to cause > > certain important environment variables not to get set, i.e. using > > perl generates messages like > > > > perl: warning: Falling back to the standard locale ("C"). > > perl: warning: Setting locale failed. > > perl: warning: Please check that your locale settings: > > LC_ALL = (unset), > > LANG = "en_US" > > are supported and installed on your system. > > > > Anyone have a clue? Another option is to run gdmconfig, go to the Basic/Login behaviour screen and change the default locale to something that works better for you. I chose "C". -- Richard Kuhns rjk@grauel.com PO Box 6249 Tel: (765)477-6000 \ 100 Sawmill Road x319 Lafayette, IN 47903 (800)489-4891 / To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 9: 9:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A44C137B41A; Fri, 14 Dec 2001 09:09:39 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBEH6qt14305; Fri, 14 Dec 2001 09:06:52 -0800 (PST) (envelope-from ijliao) Date: Fri, 14 Dec 2001 09:06:52 -0800 (PST) From: Message-Id: <200112141706.fBEH6qt14305@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/32829: update port: ftp/ftpcopy: 0.4.2 -> 0.4.5: bugfixes, features Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: ftp/ftpcopy: 0.4.2 -> 0.4.5: bugfixes, features Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: ijliao Responsible-Changed-When: Fri Dec 14 09:06:34 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32829 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 10: 0: 5 2001 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E57F37B416 for ; Fri, 14 Dec 2001 10:00:01 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBEI01P20009 for ports@freebsd.org; Fri, 14 Dec 2001 10:00:01 -0800 (PST) (envelope-from fenner) Date: Fri, 14 Dec 2001 10:00:01 -0800 (PST) From: Message-Id: <200112141800.fBEI01P20009@freefall.freebsd.org> To: ports@freebsd.org Subject: Possibly unbuildable ports reminder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://bento.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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 11: 0:32 2001 Delivered-To: freebsd-ports@freebsd.org Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by hub.freebsd.org (Postfix) with ESMTP id 15D1937B41B for ; Fri, 14 Dec 2001 11:00:30 -0800 (PST) Received: from localhost (scrappy@localhost) by earth.hub.org (8.11.3/8.11.6) with ESMTP id fBEJ0TJ08443 for ; Fri, 14 Dec 2001 14:00:29 -0500 (EST) (envelope-from scrappy@hub.org) Date: Fri, 14 Dec 2001 14:00:28 -0500 (EST) From: "Marc G. Fournier" To: freebsd-ports@freebsd.org Subject: Apache2 with PHP4 ... anyone? Message-ID: <20011214135903.L88444-100000@earth.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi ... I'm having one helluva time with it, even to the point of trying to do it "from source", and am getting zilch ... I've searched google, and find alot of ppl asking about it, but no answers, so either nobody is talking, or nobody is running :( Help? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 12: 0:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D5E837B43E for ; Fri, 14 Dec 2001 12:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBEK01p42658; Fri, 14 Dec 2001 12:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B08B137B405 for ; Fri, 14 Dec 2001 11:56:16 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBEJuGB42199; Fri, 14 Dec 2001 11:56:16 -0800 (PST) (envelope-from nobody) Message-Id: <200112141956.fBEJuGB42199@freefall.freebsd.org> Date: Fri, 14 Dec 2001 11:56:16 -0800 (PST) From: Wade Klaver To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32832: Kmail 1.3.2 / kde 2.2.1 / PGP 6.5.8 - kmail freezes busy-waiting. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32832 >Category: ports >Synopsis: Kmail 1.3.2 / kde 2.2.1 / PGP 6.5.8 - kmail freezes busy-waiting. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 12:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Wade Klaver >Release: FreeBSD 4.4-STABLE #0: Tue Nov 13 15:57 >Organization: >Environment: FreeBSD archeron.wavefire.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Tue Nov 13 15:57:47 PST 2001 root@archeron.wavefire.com:/usr/obj/usr/src/sys/WORKSTATION i386 >Description: As soon as one attempts to encrypt a mail message with kmail, or open an incomming document containing encryption, kmai uses as much CPU as it can get indefinately. This problem and a suggested fix have been reported in kde PR #35165. I applied this pathc and it did not appear to work. As far as i can tell, the bug is FreeBSD specific. In case it helps, following is a stack trace from gdb attached to a busy-waiting process: (gdb) bt #0 0x29348424 in read () from /usr/lib/libc.so.4 #1 0x287c5d8c in KpgpBase::run () from /usr/local/lib/libkdenetwork.so.1 #2 0x287cf9c7 in KpgpBase6::pubKeys () from /usr/local/lib/libkdenetwork.so.1 #3 0x287bfc75 in Kpgp::getPublicKey () from /usr/local/lib/libkdenetwork.so.1 #4 0x287be30a in Kpgp::encryptFor () from /usr/local/lib/libkdenetwork.so.1 #5 0x81109de in KMComposeWin::pgpProcessedMsg () #6 0x810eb6b in KMComposeWin::applyChanges () #7 0x8116917 in KMComposeWin::doSend () #8 0x8116dd8 in KMComposeWin::slotSendNow () #9 0x28e0b5c6 in QObject::activate_signal () from /usr/X11R6/lib/libqt2.so.4 #10 0x289dd251 in KAction::activated () from /usr/local/lib/libkdeui.so.4 #11 0x289ceda6 in KAction::slotActivated () from /usr/local/lib/libkdeui.so.4 #12 0x28e0b5c6 in QObject::activate_signal () from /usr/X11R6/lib/libqt2.so.4 #13 0x28f2379d in QButton::clicked () from /usr/X11R6/lib/libqt2.so.4 #14 0x28e6e415 in QButton::mouseReleaseEvent () from /usr/X11R6/lib/libqt2.so.4 #15 0x28e552b0 in QWidget::event () from /usr/X11R6/lib/libqt2.so.4 #16 0x28db89b2 in QApplication::notify () from /usr/X11R6/lib/libqt2.so.4 #17 0x28ae44dc in KApplication::notify () from /usr/local/lib/libkdecore.so.4 #18 0x28d8816f in QETWidget::translateMouseEvent () from /usr/X11R6/lib/libqt2.so.4 #19 0x28d85917 in QApplication::x11ProcessEvent () from /usr/X11R6/lib/libqt2.so.4 #20 0x28d848b3 in QApplication::processNextEvent () ---Type to continue, or q to quit--- from /usr/X11R6/lib/libqt2.so.4 #21 0x28dba80f in QApplication::enter_loop () from /usr/X11R6/lib/libqt2.so.4 #22 0x28d8482e in QApplication::exec () from /usr/X11R6/lib/libqt2.so.4 #23 0x81b2f06 in main () #24 0x80930cd in _start () >How-To-Repeat: Install PGP 6.5.8, configure kmail to use it, and attempt to send or receive an encrypted message. >Fix: See KDE PR #35165. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 13:21:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11B0C37B425 for ; Fri, 14 Dec 2001 13:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBELK1459133; Fri, 14 Dec 2001 13:20:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id B85AE37B417 for ; Fri, 14 Dec 2001 13:16:14 -0800 (PST) Received: from 3wgraphics.com (ppp-9-084.comintern.ru [213.148.9.84]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBDA9Ys423465 for ; Thu, 13 Dec 2001 13:09:35 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16ESkT-000KOS-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Dec 2001 13:05:53 +0300 Message-Id: Date: Thu, 13 Dec 2001 13:05:53 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32835: New port: p5-XML-RegExp-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32835 >Category: ports >Synopsis: New port: p5-XML-RegExp-0.03 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 13:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-XML-RegExp-0.03 Regular expressions for XML tokens >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-XML-RegExp # p5-XML-RegExp/pkg-comment # p5-XML-RegExp/Makefile # p5-XML-RegExp/distinfo # p5-XML-RegExp/pkg-descr # p5-XML-RegExp/pkg-plist # echo c - p5-XML-RegExp mkdir -p p5-XML-RegExp > /dev/null 2>&1 echo x - p5-XML-RegExp/pkg-comment sed 's/^X//' >p5-XML-RegExp/pkg-comment << 'END-of-p5-XML-RegExp/pkg-comment' XRegular expressions for XML tokens END-of-p5-XML-RegExp/pkg-comment echo x - p5-XML-RegExp/Makefile sed 's/^X//' >p5-XML-RegExp/Makefile << 'END-of-p5-XML-RegExp/Makefile' X# New ports collection makefile for: XML::RegExp X# Date created: 7 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= XML-RegExp XPORTVERSION= 0.03 XCATEGORIES= textproc perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= XML XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X X#RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp X#BUILD_DEPENDS= ${RUN_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= XML::RegExp.3 X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X X.include END-of-p5-XML-RegExp/Makefile echo x - p5-XML-RegExp/distinfo sed 's/^X//' >p5-XML-RegExp/distinfo << 'END-of-p5-XML-RegExp/distinfo' XMD5 (XML-RegExp-0.03.tar.gz) = 5826b24e0d05714e25c2bb04e1f1c09b END-of-p5-XML-RegExp/distinfo echo x - p5-XML-RegExp/pkg-descr sed 's/^X//' >p5-XML-RegExp/pkg-descr << 'END-of-p5-XML-RegExp/pkg-descr' XThis package contains regular expressions for the following XML tokens: XBaseChar, Ideographic, Letter, Digit, Extender, CombiningChar, NameChar, XEntityRef, CharRef, Reference, Name, NmToken, and AttValue. X XThe definitions of these tokens were taken from the XML spec X(Extensible Markup Language 1.0) at http://www.w3.org/TR/REC-xml. X XAlso contains the regular expressions for the following tokens from the XXML Namespaces spec at http://www.w3.org/TR/REC-xml-names: XNCNameChar, NCName, QName, Prefix and LocalPart. X XWWW: http://search.cpan.org/search?dist=XML-RegExp X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-XML-RegExp/pkg-descr echo x - p5-XML-RegExp/pkg-plist sed 's/^X//' >p5-XML-RegExp/pkg-plist << 'END-of-p5-XML-RegExp/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/RegExp/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/XML/RegExp.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/RegExp X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML 2>/dev/null || true END-of-p5-XML-RegExp/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 13:21:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0260C37B420 for ; Fri, 14 Dec 2001 13:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBELK0D59124; Fri, 14 Dec 2001 13:20:00 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 9E07B37B41B for ; Fri, 14 Dec 2001 13:15:56 -0800 (PST) Received: from 3wgraphics.com (ppp-9-082.comintern.ru [213.148.9.82]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBEFcWQ484575 for ; Fri, 14 Dec 2001 18:38:33 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16EuLE-0001W0-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 14 Dec 2001 18:33:40 +0300 Message-Id: Date: Fri, 14 Dec 2001 18:33:40 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32834: New port: p5-CGI-XMLApplication-1.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32834 >Category: ports >Synopsis: New port: p5-CGI-XMLApplication-1.0.2 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 13:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-CGI-XMLApplication-1.0.2 Object Oriented Interface for CGI Script Applications >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-CGI-XMLApplication # p5-CGI-XMLApplication/pkg-comment # p5-CGI-XMLApplication/Makefile # p5-CGI-XMLApplication/distinfo # p5-CGI-XMLApplication/pkg-descr # p5-CGI-XMLApplication/pkg-plist # echo c - p5-CGI-XMLApplication mkdir -p p5-CGI-XMLApplication > /dev/null 2>&1 echo x - p5-CGI-XMLApplication/pkg-comment sed 's/^X//' >p5-CGI-XMLApplication/pkg-comment << 'END-of-p5-CGI-XMLApplication/pkg-comment' XObject Oriented Interface for CGI Script Applications END-of-p5-CGI-XMLApplication/pkg-comment echo x - p5-CGI-XMLApplication/Makefile sed 's/^X//' >p5-CGI-XMLApplication/Makefile << 'END-of-p5-CGI-XMLApplication/Makefile' X# New ports collection makefile for: CGI::XMLApplication X# Date created: 13 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= CGI-XMLApplication XPORTVERSION= 1.0.2 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= CGI XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XRUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/LibXML.pm:${PORTSDIR}/textproc/p5-XML-LibXML \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/LibXSLT.pm:${PORTSDIR}/textproc/p5-XML-LibXSLT XBUILD_DEPENDS= ${RUN_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= CGI::XMLApplication.3 XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X Xpost-install: X.ifndef(NOPORTDOCS) X @${MKDIR} ${EXAMPLESDIR} X ${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${EXAMPLESDIR} X ${INSTALL_DATA} ${WRKSRC}/examples/*.pm ${EXAMPLESDIR} X ${INSTALL_DATA} ${WRKSRC}/examples/*.xsl ${EXAMPLESDIR} X.endif X X.include END-of-p5-CGI-XMLApplication/Makefile echo x - p5-CGI-XMLApplication/distinfo sed 's/^X//' >p5-CGI-XMLApplication/distinfo << 'END-of-p5-CGI-XMLApplication/distinfo' XMD5 (CGI-XMLApplication-1.0.2.tar.gz) = 57f971303e154ae5ca384fcba80fd881 END-of-p5-CGI-XMLApplication/distinfo echo x - p5-CGI-XMLApplication/pkg-descr sed 's/^X//' >p5-CGI-XMLApplication/pkg-descr << 'END-of-p5-CGI-XMLApplication/pkg-descr' XCGI::XMLApplication is a CGI application class, that intends to enable Xperl artists to implement CGIs that make use of XML/XSLT functionality, Xwithout taking too much care about specialized errorchecking or even Xcare too much about XML itself. It provides the power of the XXML::LibXML/ XML::LibXSLT module package for content deliverment. X XAs well CGI::XMLApplication is designed to support project management on Xcode level. The class allows to split web applications into several Xsimple parts. Through this most of the code stays simple and easy to Xmaintain. Throughout the whole lifetime of a script CGI::XMLApplication Xtries to keep the application stable. As well a programmer has not to Xbother about some of XML::LibXML/ XML::LibXSLT transformation pitfalls. X XWWW: http://search.cpan.org/search?dist=CGI-XMLApplication X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-CGI-XMLApplication/pkg-descr echo x - p5-CGI-XMLApplication/pkg-plist sed 's/^X//' >p5-CGI-XMLApplication/pkg-plist << 'END-of-p5-CGI-XMLApplication/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/CGI/XMLApplication/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/CGI/XMLApplication.pm X%%PORTDOCS%%share/examples/CGI-XMLApplication/ex2_finish.xsl X%%PORTDOCS%%share/examples/CGI-XMLApplication/ex2_form.xsl X%%PORTDOCS%%share/examples/CGI-XMLApplication/example1.pl X%%PORTDOCS%%share/examples/CGI-XMLApplication/example1.pm X%%PORTDOCS%%share/examples/CGI-XMLApplication/example2.pl X%%PORTDOCS%%share/examples/CGI-XMLApplication/example2.pm X%%PORTDOCS%%share/examples/CGI-XMLApplication/example3.pl X%%PORTDOCS%%share/examples/CGI-XMLApplication/example3.pm X%%PORTDOCS%%share/examples/CGI-XMLApplication/example4.pl X%%PORTDOCS%%share/examples/CGI-XMLApplication/example4.pm X%%PORTDOCS%%@dirrm share/examples/CGI-XMLApplication X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/CGI/XMLApplication X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/CGI 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/CGI 2>/dev/null || true END-of-p5-CGI-XMLApplication/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 13:21:49 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E4D4337B42C for ; Fri, 14 Dec 2001 13:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBELK1v59151; Fri, 14 Dec 2001 13:20:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 05DDC37B416 for ; Fri, 14 Dec 2001 13:16:18 -0800 (PST) Received: from 3wgraphics.com (ppp-9-084.comintern.ru [213.148.9.84]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBDA9Ns401933 for ; Thu, 13 Dec 2001 13:09:23 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16ESkG-000KMx-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Dec 2001 13:05:40 +0300 Message-Id: Date: Thu, 13 Dec 2001 13:05:40 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32837: Update port: p5-XML-DOM-1.35 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32837 >Category: ports >Synopsis: Update port: p5-XML-DOM-1.35 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 13:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: Update port: p5-XML-DOM-1.35 >How-To-Repeat: >Fix: diff -ur p5-XML-DOM/Makefile p5-XML-DOM-1.35/Makefile --- p5-XML-DOM/Makefile Fri Feb 23 14:41:09 2001 +++ p5-XML-DOM-1.35/Makefile Fri Dec 7 18:27:38 2001 @@ -6,7 +6,7 @@ # PORTNAME= XML-DOM -PORTVERSION= 1.25 +PORTVERSION= 1.35 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= XML @@ -14,11 +14,28 @@ MAINTAINER= kuriyama@FreeBSD.org -RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser +BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww \ + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/XML/Parser/PerlSAX.pm:${PORTSDIR}/textproc/p5-libxml \ + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/XML/RegExp.pm:${PORTSDIR}/textproc/p5-XML-RegExp +RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes -MAN3= XML::DOM.3 +MAN3= XML::DOM.3 XML::DOM::AttDef.3 XML::DOM::AttlistDecl.3 \ + XML::DOM::Attr.3 XML::DOM::CDATASection.3 \ + XML::DOM::CharacterData.3 XML::DOM::Comment.3 \ + XML::DOM::DOMImplementation.3 XML::DOM::Document.3 \ + XML::DOM::DocumentFragment.3 XML::DOM::DocumentType.3 \ + XML::DOM::Element.3 XML::DOM::ElementDecl.3 XML::DOM::Entity.3 \ + XML::DOM::EntityReference.3 XML::DOM::NamedNodeMap.3 \ + XML::DOM::Node.3 XML::DOM::NodeList.3 XML::DOM::Notation.3 \ + XML::DOM::Parser.3 XML::DOM::PerlSAX.3 \ + XML::DOM::ProcessingInstruction.3 XML::DOM::Text.3 \ + XML::DOM::XMLDecl.3 XML::Handler::BuildDOM.3 MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +post-extract: + @${PERL} -pi -e 's/^use bytes;.*//g;' ${WRKSRC}/lib/XML/DOM.pm .include diff -ur p5-XML-DOM/distinfo p5-XML-DOM-1.35/distinfo --- p5-XML-DOM/distinfo Sun Nov 7 14:06:44 1999 +++ p5-XML-DOM-1.35/distinfo Fri Dec 7 17:46:26 2001 @@ -1 +1 @@ -MD5 (XML-DOM-1.25.tar.gz) = c4d5c994a26b611ae2440399b9ab6315 +MD5 (XML-DOM-1.35.tar.gz) = 8c6532d29e6a0dd4491d302390c5f5a6 diff -ur p5-XML-DOM/pkg-descr p5-XML-DOM-1.35/pkg-descr --- p5-XML-DOM/pkg-descr Sun Nov 7 14:06:44 1999 +++ p5-XML-DOM-1.35/pkg-descr Fri Dec 7 18:14:57 2001 @@ -1,3 +1,5 @@ This is a Perl extension to XML::Parser. It adds a new 'Style' to XML::Parser, called 'Dom', that allows XML::Parser to build an Object Oriented datastructure with a DOM Level 1 compliant interface. + +WWW: http://search.cpan.org/search?dist=XML-DOM diff -ur p5-XML-DOM/pkg-plist p5-XML-DOM-1.35/pkg-plist --- p5-XML-DOM/pkg-plist Sun Nov 7 14:06:44 1999 +++ p5-XML-DOM-1.35/pkg-plist Fri Dec 7 18:21:13 2001 @@ -1,4 +1,33 @@ +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML-DOM/.packlist lib/perl5/site_perl/%%PERL_VER%%/XML/DOM.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/DOM/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/XML -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/DOM +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/AttDef.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/AttlistDecl.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/Attr.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/CDATASection.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/CharacterData.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/Comment.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/DOMException.pm +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/DOMImplementation.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/Document.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/DocumentFragment.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/DocumentType.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/Element.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/ElementDecl.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/Entity.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/EntityReference.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/NamedNodeMap.pm +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/NamedNodeMap.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/Node.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/NodeList.pm +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/NodeList.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/Notation.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/Parser.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/PerlSAX.pm +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/ProcessingInstruction.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/Text.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/DOM/XMLDecl.pod +lib/perl5/site_perl/%%PERL_VER%%/XML/Handler/BuildDOM.pm +@dirrm lib/perl5/site_perl/%%PERL_VER%%/XML/DOM +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML-DOM +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML/Handler 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 13:22:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F368737B42A for ; Fri, 14 Dec 2001 13:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBELK1A59142; Fri, 14 Dec 2001 13:20:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 4F13B37B416 for ; Fri, 14 Dec 2001 13:16:16 -0800 (PST) Received: from 3wgraphics.com (ppp-9-084.comintern.ru [213.148.9.84]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBDA9Is289938 for ; Thu, 13 Dec 2001 13:09:18 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16ESkC-000KLR-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Dec 2001 13:05:36 +0300 Message-Id: Date: Thu, 13 Dec 2001 13:05:36 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32836: Update port: p5-XML-LibXML-1.31 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32836 >Category: ports >Synopsis: Update port: p5-XML-LibXML-1.31 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 13:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: Update port: p5-XML-LibXML-1.31 >How-To-Repeat: >Fix: diff -ur p5-XML-LibXML-0.97/Makefile p5-XML-LibXML/Makefile --- p5-XML-LibXML-0.97/Makefile Mon Nov 19 17:45:51 2001 +++ p5-XML-LibXML/Makefile Fri Dec 7 17:01:45 2001 @@ -6,7 +6,7 @@ # PORTNAME= XML-LibXML -PORTVERSION= 0.97 +PORTVERSION= 1.31 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= XML @@ -14,16 +14,22 @@ MAINTAINER= skv@protey.ru +BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/XML/SAX.pm:${PORTSDIR}/textproc/p5-XML-SAX LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 +RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes CONFIGURE_ARGS= INC='-I${LOCALBASE}/include -I${LOCALBASE}/include/libxml2' -MAN3= XML::LibXML::Element.3 XML::LibXML::CDATASection.3 \ - XML::LibXML::Comment.3 XML::LibXML::Text.3 XML::LibXML.3 \ - XML::LibXML::Node.3 XML::LibXML::Document.3 \ - XML::LibXML::Dtd.3 XML::LibXML::Namespace.3 \ - XML::LibXML::DocumentFragment.3 XML::LibXML::Attr.3 +MAN3= XML::LibXML.3 XML::LibXML::Attr.3 XML::LibXML::Boolean.3 \ + XML::LibXML::CDATASection.3 XML::LibXML::Comment.3 \ + XML::LibXML::Document.3 XML::LibXML::DocumentFragment.3 \ + XML::LibXML::Dtd.3 XML::LibXML::Element.3 \ + XML::LibXML::Literal.3 XML::LibXML::Namespace.3 \ + XML::LibXML::Node.3 XML::LibXML::NodeList.3 \ + XML::LibXML::Number.3 XML::LibXML::SAX::Builder.3 \ + XML::LibXML::SAX::Generator.3 XML::LibXML::SAX::Parser.3 \ + XML::LibXML::Text.3 MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} diff -ur p5-XML-LibXML-0.97/distinfo p5-XML-LibXML/distinfo --- p5-XML-LibXML-0.97/distinfo Mon Nov 19 17:45:51 2001 +++ p5-XML-LibXML/distinfo Fri Dec 7 13:55:18 2001 @@ -1 +1 @@ -MD5 (XML-LibXML-0.97.tar.gz) = 560057a998d2ba3bb8ba415ce0d1d609 +MD5 (XML-LibXML-1.31.tar.gz) = 680089366ccb5cc06372dee14042c5e2 diff -ur p5-XML-LibXML-0.97/pkg-descr p5-XML-LibXML/pkg-descr --- p5-XML-LibXML-0.97/pkg-descr Mon Nov 19 17:45:51 2001 +++ p5-XML-LibXML/pkg-descr Fri Dec 7 13:54:18 2001 @@ -1,3 +1,6 @@ This module is a minimal interface to the Gnome libxml2 library. WWW: http://www.xmlsoft.org/ + +-- Sergey Skvortsov +skv@protey.ru diff -ur p5-XML-LibXML-0.97/pkg-plist p5-XML-LibXML/pkg-plist --- p5-XML-LibXML-0.97/pkg-plist Mon Nov 19 17:45:51 2001 +++ p5-XML-LibXML/pkg-plist Fri Dec 7 17:01:00 2001 @@ -1,17 +1,24 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/LibXML/.packlist lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Attr.pod +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Boolean.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/CDATASection.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Comment.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Document.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/DocumentFragment.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Dtd.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Element.pod +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Literal.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Namespace.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Node.pod +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/NodeList.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Number.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/SAX/Builder.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/SAX/Generator.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/SAX/Parser.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML/LibXML/Text.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/LibXML/LibXML.bs lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/LibXML/LibXML.so @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/LibXML -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/XML 2>/dev/null || true @unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 13:22:31 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFC4B37B41E for ; Fri, 14 Dec 2001 13:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBELK0V59115; Fri, 14 Dec 2001 13:20:00 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 5EEDA37B417 for ; Fri, 14 Dec 2001 13:15:32 -0800 (PST) Received: from 3wgraphics.com (ppp-9-082.comintern.ru [213.148.9.82]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBEG3lQ470971 for ; Fri, 14 Dec 2001 19:03:47 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16Eujf-0002pB-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 14 Dec 2001 18:58:55 +0300 Message-Id: Date: Fri, 14 Dec 2001 18:58:55 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32833: New port: p5-Inline-0.43 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32833 >Category: ports >Synopsis: New port: p5-Inline-0.43 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 13:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-Inline-0.43 Write Perl subroutines in other programming languages >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Inline # p5-Inline/distinfo # p5-Inline/Makefile # p5-Inline/pkg-comment # p5-Inline/pkg-descr # p5-Inline/pkg-plist # p5-Inline/files # p5-Inline/files/patch-C-Makefile.PL # echo c - p5-Inline mkdir -p p5-Inline > /dev/null 2>&1 echo x - p5-Inline/distinfo sed 's/^X//' >p5-Inline/distinfo << 'END-of-p5-Inline/distinfo' XMD5 (Inline-0.43.tar.gz) = 2defdebaaa5622b8653cb47f66f9d22e END-of-p5-Inline/distinfo echo x - p5-Inline/Makefile sed 's/^X//' >p5-Inline/Makefile << 'END-of-p5-Inline/Makefile' X# New ports collection makefile for: Inline X# Date created: 14 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= Inline XPORTVERSION= 0.43 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Inline XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Parse/RecDescent.pm:${PORTSDIR}/devel/p5-Parse-RecDescent XRUN_DEPENDS= ${BUILD_DEPENDS} X XPATCH_STRIP= -p1 XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= Inline-API.3 Inline-FAQ.3 Inline-Support.3 Inline.3 \ X Inline::C-Cookbook.3 Inline::C.3 X X.include END-of-p5-Inline/Makefile echo x - p5-Inline/pkg-comment sed 's/^X//' >p5-Inline/pkg-comment << 'END-of-p5-Inline/pkg-comment' XWrite Perl subroutines in other programming languages END-of-p5-Inline/pkg-comment echo x - p5-Inline/pkg-descr sed 's/^X//' >p5-Inline/pkg-descr << 'END-of-p5-Inline/pkg-descr' XThe Inline module allows you to put source code from other programming Xlanguages directly "inline" in a Perl script or module. The code is Xautomatically compiled as needed, and then loaded for immediate access Xfrom Perl. X XInline saves you from the hassle of having to write and compile your own Xglue code using facilities like XS or SWIG. Simply type the code where Xyou want it and run your Perl as normal. All the hairy details are Xhandled for you. The compilation and installation of your code chunks Xall happen transparently; all you will notice is the delay of Xcompilation on the first run. X XThe Inline code only gets compiled the first time you run it (or Xwhenever it is modified) so you only take the performance hit once. Code Xthat is Inlined into distributed modules (like on the CPAN) will get Xcompiled when the module is installed, so the end user will never notice Xthe compilation time. X XWWW: http://search.cpan.org/search?dist=Inline X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-Inline/pkg-descr echo x - p5-Inline/pkg-plist sed 's/^X//' >p5-Inline/pkg-plist << 'END-of-p5-Inline/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Inline-API.pod Xlib/perl5/site_perl/%%PERL_VER%%/Inline-FAQ.pod Xlib/perl5/site_perl/%%PERL_VER%%/Inline-Support.pod Xlib/perl5/site_perl/%%PERL_VER%%/Inline.pm Xlib/perl5/site_perl/%%PERL_VER%%/Inline.pod Xlib/perl5/site_perl/%%PERL_VER%%/Inline/C-Cookbook.pod Xlib/perl5/site_perl/%%PERL_VER%%/Inline/C.pm Xlib/perl5/site_perl/%%PERL_VER%%/Inline/C.pod Xlib/perl5/site_perl/%%PERL_VER%%/Inline/C/grammar.pm Xlib/perl5/site_perl/%%PERL_VER%%/Inline/Foo.pm Xlib/perl5/site_perl/%%PERL_VER%%/Inline/MakeMaker.pm Xlib/perl5/site_perl/%%PERL_VER%%/Inline/denter.pm Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M01_usage_use.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M02_usage.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M03_usage_bind.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M04_error_nocode.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M05_error_eval.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M06_code_file_failed_open.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M07_code_file_does_not_exist.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M08_no_DATA_source_code.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M09_marker_mismatch.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M10_usage_WITH.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M11_usage_DIRECTORY.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M12_usage_NAME.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M13_usage_VERSION.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M14_usage_Config.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M15_usage_install_directory.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M16_DIRECTORY_mkdir_failed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M17_config_open_failed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M18_error_old_version.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M19_usage_language.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M20_config_creation_failed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M21_opendir_failed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M22_usage_register.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M23_usage_alias_used.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M24_open_for_output_failed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M25_no_WITH_support.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M26_error_version_without_name.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M27_module_not_indexed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M28_error_grokking_path.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M29_error_relative_path.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M30_error_no_obj.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M31_inline_open_failed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M32_error_md5_validation.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M33_error_old_inline_version.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M34_error_incorrect_version.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M35_error_no_object_file.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M36_usage_install_main.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M37_usage_install_auto.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M38_usage_install_name.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M39_usage_install_version.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M40_usage_install_badname.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M41_usage_install_version_mismatch.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M42_usage_loader.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M43_error_bootstrap.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M45_usage_with.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M46_usage_with_bad.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M47_invalid_config_option.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M48_usage_shortcuts.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M49_usage_unsafe.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M51_unused_DATA.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M52_invalid_filter.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M53_mkdir_failed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M54_rmdir_failed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M55_unlink_failed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M56_no_DIRECTORY_found.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M57_wrong_architecture.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M58_site_install.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M59_bad_inline_file.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M60_no_inline_files.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M61_not_parsed.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M62_invalid_config_file.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M63_no_source.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/M64_install_not_c.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/_mkdir.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/_rmtree.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/autosplit.ix Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/check_config_file.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/check_module.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/clean_build.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/create_config_file.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/M01_invalid_indent_width.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/M02_no_key_end_marker.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/M03_no_value_end_marker.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/M04_mismatched_quotes.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/M05_invalid_key_value.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/M06_invalid_indent_level.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/M07_invalid_scalar_value.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/_print_ref.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/autosplit.ix Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/indent.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/indent_array.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/indent_data.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/indent_hash.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/indent_name.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/indent_ref.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/indent_scalar.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/indent_undef.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter/indent_value.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/env_untaint.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/filter.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/find_temp_dir.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/install.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/maker_utils.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/mkpath.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/obj_untaint.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/print_info.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/read_inline_file.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/receive_code.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/reportbug.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/rmpath.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/with_configs.al Xlib/perl5/site_perl/%%PERL_VER%%/auto/Inline/write_inl_file.al X@dirrm lib/perl5/site_perl/%%PERL_VER%%/auto/Inline/denter X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Inline 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/auto/Inline 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline 2>/dev/null || true END-of-p5-Inline/pkg-plist echo c - p5-Inline/files mkdir -p p5-Inline/files > /dev/null 2>&1 echo x - p5-Inline/files/patch-C-Makefile.PL sed 's/^X//' >p5-Inline/files/patch-C-Makefile.PL << 'END-of-p5-Inline/files/patch-C-Makefile.PL' Xdiff -ur Inline-0.43.orig/C/Makefile.PL Inline-0.43/C/Makefile.PL X--- Inline-0.43.orig/C/Makefile.PL Fri Dec 14 18:34:37 2001 X+++ Inline-0.43/C/Makefile.PL Fri Dec 14 18:44:57 2001 X@@ -51,26 +51,9 @@ X # ' X } X X-my $answer = ''; X-my $default = $found ? "y" : "n"; X-while (1) { X- $answer = prompt ('Do you want to install Inline::C?', $default); X- last if $answer =~ /^(y|yes|n|no)$/i; X-} X- X-if ($answer =~ /^(y|yes)$/i) { X WriteMakefile( X NAME => 'Inline::C', X VERSION_FROM => 'C.pm', X clean => {FILES => '_Inline_test/'}, X ) X-} X-else { X- open MF, "> Makefile" or die "Can't open Makefile for output"; X- print MF <<'END'; X-all:: X-test:: X-clean:: X-END X- close MF; X-} X+; END-of-p5-Inline/files/patch-C-Makefile.PL exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 13:29:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F2EF737B416; Fri, 14 Dec 2001 13:29:39 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBELRNn60034; Fri, 14 Dec 2001 13:27:23 -0800 (PST) (envelope-from petef) Date: Fri, 14 Dec 2001 13:27:23 -0800 (PST) From: Message-Id: <200112142127.fBELRNn60034@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/32832: Kmail 1.3.2 / kde 2.2.1 / PGP 6.5.8 - kmail freezes busy-waiting. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Kmail 1.3.2 / kde 2.2.1 / PGP 6.5.8 - kmail freezes busy-waiting. Responsible-Changed-From-To: freebsd-ports->kde Responsible-Changed-By: petef Responsible-Changed-When: Fri Dec 14 13:27:16 PST 2001 Responsible-Changed-Why: Over to maintainers http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32832 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 13:30:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DB7837B417 for ; Fri, 14 Dec 2001 13:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBELU1D60490; Fri, 14 Dec 2001 13:30:01 -0800 (PST) (envelope-from gnats) Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 3731B37B437 for ; Fri, 14 Dec 2001 13:20:21 -0800 (PST) Received: (from marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) id fBELKha86058; Fri, 14 Dec 2001 16:20:43 -0500 (EST) (envelope-from marcus) Message-Id: <200112142120.fBELKha86058@shumai.marcuscom.com> Date: Fri, 14 Dec 2001 16:20:43 -0500 (EST) From: Joe Marcus Clarke Reply-To: Joe Marcus Clarke To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32838: Add LDAP support to mail/evolution Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32838 >Category: ports >Synopsis: Add LDAP support to mail/evolution >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 13:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Joe Marcus Clarke >Release: FreeBSD 4.4-STABLE i386 >Organization: MarcusCom, Inc. >Environment: System: FreeBSD shumai.marcuscom.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 8 02:01:11 EST 2001 marcus@shumai.marcuscom.com:/usr/obj/usr/src/sys/SHUMAI i386 >Description: Evolution has the ability to work with LDAP backends. It really wants OpenLDAP 2. These patches add LDAP functionality to Evolution provided the port is built with the -DWITH_LDAP define. Bump PORTREVISION, too. >How-To-Repeat: >Fix: --- Makefile.orig Fri Dec 14 16:19:05 2001 +++ Makefile Fri Dec 14 16:20:17 2001 @@ -7,7 +7,7 @@ PORTNAME= evolution PORTVERSION= 1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/evolution @@ -16,8 +16,9 @@ BUILD_DEPENDS= ${X11BASE}/lib/gnome-pilot/conduits/libemail_conduit.so:${PORTSDIR}/palm/gnomepilot-conduits LIB_DEPENDS= bonobo_conf.0:${PORTSDIR}/devel/bonobo-conf -#ldap.1:${PORTSDIR}/net/openldap <- avoid extra dependency until -# it actually works +.if defined(WITH_LDAP) +LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap2 +.endif RUN_DEPENDS= ${X11BASE}/lib/gnome-pilot/conduits/libemail_conduit.so:${PORTSDIR}/palm/gnomepilot-conduits #BROKEN= "Out of sync with latest gal" @@ -33,6 +34,9 @@ --with-openssl-includes=${OPENSSLBASE}/include \ --with-openssl-libs=${OPENSSLBASE}/lib \ --with-pisock=${LOCALBASE}/pilot --enable-pilot-conduits=yes +.if defined(WITH_LDAP) +CONFIGURE_ARGS+= --with-openldap=/usr/local +.endif CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 14:19:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1218937B405; Fri, 14 Dec 2001 14:19:40 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBEMCLp68005; Fri, 14 Dec 2001 14:12:21 -0800 (PST) (envelope-from petef) Date: Fri, 14 Dec 2001 14:12:21 -0800 (PST) From: Message-Id: <200112142212.fBEMCLp68005@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/32838: Add LDAP support to mail/evolution Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Add LDAP support to mail/evolution Responsible-Changed-From-To: freebsd-ports->gnome Responsible-Changed-By: petef Responsible-Changed-When: Fri Dec 14 14:12:14 PST 2001 Responsible-Changed-Why: Over to maintainers http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32838 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 14:41:40 2001 Delivered-To: freebsd-ports@freebsd.org Received: from seagull.cpinternet.com (mail.cpinternet.com [209.240.224.4]) by hub.freebsd.org (Postfix) with ESMTP id E9EEA37B416 for ; Fri, 14 Dec 2001 14:41:29 -0800 (PST) Received: from 209.240.253.23 ([209.240.253.23]) by seagull.cpinternet.com (8.12.0/8.12.0) with ESMTP id fBEMfRe1009590 for ; Fri, 14 Dec 2001 16:41:28 -0600 (CST) Received: by 209.240.253.23 (Postfix, from userid 1001) id 5235C14A13; Fri, 14 Dec 2001 16:42:20 -0600 (CST) Subject: Re: gdm and environment variables From: Michael Harnois To: Richard Kuhns , marcus@marcuscom.com Cc: freebsd-ports@FreeBSD.ORG In-Reply-To: <20011214120051.7b0fe1d3.rjk@grauel.com> References: <864rmtdcfp.fsf@mharnois.workgroup.net> <20011214105836.V82637-100000@shumai.marcuscom.com> <20011214120051.7b0fe1d3.rjk@grauel.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0 (Preview Release) Date: 14 Dec 2001 16:42:20 -0600 Message-Id: <1008369740.883.0.camel@mharnois.workgroup.net> Mime-Version: 1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Well, Joe's solution doesn't make any difference here, and "C" doesn't appear as an option in gdmconfig, so I'l still stumped. On Fri, 2001-12-14 at 11:00, Richard Kuhns wrote: > On Fri, 14 Dec 2001 11:02:26 -0500 (EST) > Joe Clarke wrote: > > > This is an easy fix, and I should have submitted a PR, but you can get > > away without doing any patching. > > > > One option involves editing /usr/X11R6/etc/gdm/locale.alias, and change > > the "english" locale to either en_US.ISO_8859-1 or en_GB.ISO_8859-1 > > depending on what English you prefer. If you don't feel like editing a > > file, just make sure you select either American English or British > English > > from the Language menu in gdm. > > > > Joe > > > > > > On Fri, 14 Dec 2001, Michael Harnois wrote: > > > > > Something about the difference between gdm and xdm seems to cause > > > certain important environment variables not to get set, i.e. using > > > perl generates messages like > > > > > > perl: warning: Falling back to the standard locale ("C"). > > > perl: warning: Setting locale failed. > > > perl: warning: Please check that your locale settings: > > > LC_ALL = (unset), > > > LANG = "en_US" > > > are supported and installed on your system. > > > > > > Anyone have a clue? > > Another option is to run gdmconfig, go to the Basic/Login behaviour screen > and change the default locale to something that works better for you. I > chose "C". > > -- > Richard Kuhns rjk@grauel.com > PO Box 6249 Tel: (765)477-6000 \ > 100 Sawmill Road x319 > Lafayette, IN 47903 (800)489-4891 / > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > -- Michael D. Harnois bilocational bivocational Pastor, Redeemer Lutheran Church Washburn, Iowa 1L, UST School of Law Minneapolis, Minnesota If you want to follow Jesus, you better look good on wood. --Daniel Berrigan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 14:46:36 2001 Delivered-To: freebsd-ports@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 34B7D37B419 for ; Fri, 14 Dec 2001 14:46:29 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id fBEMkgs86536; Fri, 14 Dec 2001 17:46:42 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 14 Dec 2001 17:46:42 -0500 (EST) From: Joe Clarke To: Michael Harnois Cc: Richard Kuhns , Subject: Re: gdm and environment variables In-Reply-To: <1008369740.883.0.camel@mharnois.workgroup.net> Message-ID: <20011214174534.M82637-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Doh! I am going to have to write a PR. Edit /usr/X11R6/etc/gdm/locale.alias, and change english.us to: en_US.ISO_8859-1 Note the change of a '-' to a '_'. Then, restart gdm, and select American English as your Language. You should be set. I'll write up the PR. Joe On 14 Dec 2001, Michael Harnois wrote: > Well, Joe's solution doesn't make any difference here, and "C" doesn't > appear as an option in gdmconfig, so I'l still stumped. > > On Fri, 2001-12-14 at 11:00, Richard Kuhns wrote: > > On Fri, 14 Dec 2001 11:02:26 -0500 (EST) > > Joe Clarke wrote: > > > > > This is an easy fix, and I should have submitted a PR, but you can get > > > away without doing any patching. > > > > > > One option involves editing /usr/X11R6/etc/gdm/locale.alias, and change > > > the "english" locale to either en_US.ISO_8859-1 or en_GB.ISO_8859-1 > > > depending on what English you prefer. If you don't feel like editing a > > > file, just make sure you select either American English or British > > English > > > from the Language menu in gdm. > > > > > > Joe > > > > > > > > > On Fri, 14 Dec 2001, Michael Harnois wrote: > > > > > > > Something about the difference between gdm and xdm seems to cause > > > > certain important environment variables not to get set, i.e. using > > > > perl generates messages like > > > > > > > > perl: warning: Falling back to the standard locale ("C"). > > > > perl: warning: Setting locale failed. > > > > perl: warning: Please check that your locale settings: > > > > LC_ALL = (unset), > > > > LANG = "en_US" > > > > are supported and installed on your system. > > > > > > > > Anyone have a clue? > > > > Another option is to run gdmconfig, go to the Basic/Login behaviour screen > > and change the default locale to something that works better for you. I > > chose "C". > > > > -- > > Richard Kuhns rjk@grauel.com > > PO Box 6249 Tel: (765)477-6000 \ > > 100 Sawmill Road x319 > > Lafayette, IN 47903 (800)489-4891 / > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-ports" in the body of the message > > > -- > Michael D. Harnois bilocational bivocational > Pastor, Redeemer Lutheran Church Washburn, Iowa > 1L, UST School of Law Minneapolis, Minnesota > If you want to follow Jesus, you better look good on wood. > --Daniel Berrigan > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 14:58: 8 2001 Delivered-To: freebsd-ports@freebsd.org Received: from pan.ch.intel.com (chfdns01.ch.intel.com [143.182.246.24]) by hub.freebsd.org (Postfix) with ESMTP id 075E637B417 for ; Fri, 14 Dec 2001 14:58:01 -0800 (PST) Received: from sedona.intel.com (sedona.ch.intel.com [143.182.218.21]) by pan.ch.intel.com (8.9.1a+p1/8.9.1/d: relay.m4,v 1.48 2001/12/13 16:27:50 root Exp $) with ESMTP id WAA10759; Fri, 14 Dec 2001 22:58:00 GMT Received: from chlx169.ch.intel.com (chlx169.ch.intel.com [143.182.225.37]) by sedona.intel.com (8.9.1a/8.9.1/d: sendmail.cf,v 1.14 2001/01/02 18:39:59 steved Exp $) with ESMTP id PAA29363; Fri, 14 Dec 2001 15:57:59 -0700 (MST) X-Envelope-From: jreynold@sedona.ch.intel.com Received: (from jreynold@localhost) by chlx169.ch.intel.com (8.9.1a/8.9.1/d: client.m4,v 1.3 1998/09/29 16:36:11 sedayao Exp sedayao $) id PAA02640; Fri, 14 Dec 2001 15:58:03 -0700 X-Authentication-Warning: chlx169.ch.intel.com: jreynold set sender to jreynold@sedona.ch.intel.com using -f From: John Reynolds~ MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15386.33787.649499.200366@chlx169.ch.intel.com> Date: Fri, 14 Dec 2001 15:58:03 -0700 To: ports@freebsd.org Subject: sword-modules breaks "make readmes" from /usr/ports X-Mailer: VM 6.99 under Emacs 20.7.1 Cc: wvengen@stack.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I was doing a "make readmes" on my system in /usr/ports (for the heck of it) and noticed that the misc/sword-modules port breaks this. It started fetching distfiles for this port and then died trying to build the port. I then went into /usr/ports/misc/sword-modules and did "make readme". Here's the output: dolphin [ports/misc/sword-modules]<176>% sudo make readme ===> Creating README.html for sword-modules-1.0 1 out of 1 hunks failed--saving rejects to src/mgr/swmgr.cpp.rej pretty-print-build-depends-list: not found Ignoring previously applied (or reversed) patch. 4 out of 4 hunks ignored--saving rejects to Makefile.cfg.rej pretty-print-run-depends-list: not found sed: 22: "s%%BUILD_DEPENDS%%nescaped newline inside substitute pattern *** Error code 1 Stop in /usr/ports/misc/sword-modules. *** Error code 1 Stop in /usr/ports/misc/sword-modules. I've got no patches or ideas as to what's wrong, I just figured I would send a "heads up". This is on a newly CVSup'ed ports tree as of 5 minutes ago. -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | John Reynolds WCCG, CCE, CDS - Senior CAD Engineer | | Intel Corporation MS: CH6-210 Phone: 480-554-9092 pgr: 602-868-6512 | | jreynold@sedona.ch.intel.com http://www-aec.ch.intel.com/~jreynold/ | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 15:10:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5434237B417 for ; Fri, 14 Dec 2001 15:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBENA1277074; Fri, 14 Dec 2001 15:10:01 -0800 (PST) (envelope-from gnats) Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id CBBF737B417 for ; Fri, 14 Dec 2001 15:02:01 -0800 (PST) Received: (from marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) id fBEN2OR90205; Fri, 14 Dec 2001 18:02:24 -0500 (EST) (envelope-from marcus) Message-Id: <200112142302.fBEN2OR90205@shumai.marcuscom.com> Date: Fri, 14 Dec 2001 18:02:24 -0500 (EST) From: Joe Marcus Clarke Reply-To: Joe Marcus Clarke To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32840: Update x11/gdm to fix locale problems Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32840 >Category: ports >Synopsis: Update x11/gdm to fix locale problems >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 15:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Joe Marcus Clarke >Release: FreeBSD 4.4-STABLE i386 >Organization: MarcusCom, Inc. >Environment: System: FreeBSD shumai.marcuscom.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 8 02:01:11 EST 2001 marcus@shumai.marcuscom.com:/usr/obj/usr/src/sys/SHUMAI i386 >Description: The locales that gdm knows about are formatted incorrectly for FreeBSD. Most of them need a '-' substituted with a '_'. Also, the default locale is unknown to FreeBSD. >How-To-Repeat: Login after installing /usr/ports/x11/gdm. You will see: LC_ALL = (unset), LANG = "en_US" When trying to run certain applications. >Fix: This patch corrects the locale names, and makes US English the default English. Patch to /usr/ports/x11/gdm/files/patch-ab: --- patch-ab.orig Mon Nov 26 14:02:06 2001 +++ patch-ab Fri Dec 14 17:58:06 2001 @@ -1,8 +1,5 @@ - -$FreeBSD: ports/x11/gdm/files/patch-ab,v 1.4 2001/11/26 16:22:25 sobomax Exp $ - ---- config/gdm.conf.in.orig Fri Nov 16 13:42:13 2001 -+++ config/gdm.conf.in Mon Nov 26 17:53:18 2001 +--- gdm.conf.in.orig Fri Nov 16 06:42:13 2001 ++++ gdm.conf.in Fri Dec 14 17:57:18 2001 @@ -5,7 +5,7 @@ # want gdm to kill/restart the server, turn this on AlwaysRestartServer=false @@ -51,8 +48,12 @@ MaxIconWidth=128 MaxIconHeight=128 -@@ -80,11 +80,11 @@ - DefaultLocale=en_US +@@ -77,14 +77,14 @@ + ConfigAvailable=true + Browser=false + DefaultFace=@EXPANDED_PIXMAPDIR@/nobody.png +-DefaultLocale=en_US ++DefaultLocale=en_US.ISO_8859-1 # These are things excluded from the face browser, not from logging in Exclude=bin,daemon,adm,lp,sync,shutdown,halt,mail,news,uucp,operator,nobody,gdm,postgres,pvm,rpm -Font=-*-helvetica-bold-r-normal-*-*-180-*-*-*-*-*-*,* Patch to config/locale.aliase in the GDM dist: --- config/locale.alias.orig Fri Dec 14 17:47:02 2001 +++ config/locale.alias Fri Dec 14 17:50:12 2001 @@ -29,38 +29,38 @@ catalan ca_ES.ISO-8859-1 chinese(simplified) zh_CN.GB2312 chinese(traditional) zh_TW -croatian hr_HR.ISO-8859-2 -czech cs_CZ.ISO-8859-2 +croatian hr_HR.ISO_8859-2 +czech cs_CZ.ISO_8859-2 danish da_DK.ISO-8859-1 -dansk da_DK.ISO-8859-1 -deutsch de_DE.ISO-8859-1 -dutch nl_NL.ISO-8859-1 -english en.ISO-8859-1 -english.us en_US.ISO-8859-1 -english.gb en_GB.ISO-8859-1 -finnish fi_FI.ISO-8859-1 -french fr_FR.ISO-8859-1 -galician gl_ES.ISO-8859-1 -german de_DE.ISO-8859-1 -greek el_GR.ISO-8859-7 -hebrew iw_IL.ISO-8859-8 -hrvatski hr_HR.ISO-8859-2 -hungarian hu_HU.ISO-8859-2 -icelandic is_IS.ISO-8859-1 -italian it_IT.ISO-8859-1 +dansk da_DK.ISO_8859-1 +deutsch de_DE.ISO_8859-1 +dutch nl_NL.ISO_8859-1 +english en_US.ISO_8859-1 +english.us en_US.ISO_8859-1 +english.gb en_GB.ISO_8859-1 +finnish fi_FI.ISO_8859-1 +french fr_FR.ISO_8859-1 +galician gl_ES.ISO_8859-1 +german de_DE.ISO_8859-1 +greek el_GR.ISO_8859-7 +hebrew iw_IL.ISO_8859-8 +hrvatski hr_HR.ISO_8859-2 +hungarian hu_HU.ISO_8859-2 +icelandic is_IS.ISO_8859-1 +italian it_IT.ISO_8859-1 japanese ja_JP.EUC korean ko_KR.EUC -lithuanian lt_LT.ISO-8859-13 -norwegian no_NO.ISO-8859-1 -nynorsk nn_NO.ISO-8859-1 -polish pl_PL.ISO-8859-2 -portuguese pt_PT.ISO-8859-1 -portuguese.br pt_BR.ISO-8859-1 -romanian ro_RO.ISO-8859-2 +lithuanian lt_LT.ISO_8859-13 +norwegian no_NO.ISO_8859-1 +nynorsk nn_NO.ISO_8859-1 +polish pl_PL.ISO_8859-2 +portuguese pt_PT.ISO_8859-1 +portuguese.br pt_BR.ISO_8859-1 +romanian ro_RO.ISO_8859-2 russian ru_RU.KOI8-R -slovak sk_SK.ISO-8859-2 -slovenian sl_SI.ISO-8859-2 -spanish es_ES.ISO-8859-1 -swedish sv_SE.ISO-8859-1 -turkish tr_TR.ISO-8859-9 +slovak sk_SK.ISO_8859-2 +slovenian sl_SI.ISO_8859-2 +spanish es_ES.ISO_8859-1 +swedish sv_SE.ISO_8859-1 +turkish tr_TR.ISO_8859-9 ukrainian uk_UA.KOI8-U >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 15:19:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AD8437B405; Fri, 14 Dec 2001 15:19:40 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBENJKF78348; Fri, 14 Dec 2001 15:19:20 -0800 (PST) (envelope-from petef) Date: Fri, 14 Dec 2001 15:19:20 -0800 (PST) From: Message-Id: <200112142319.fBENJKF78348@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/32840: Update x11/gdm to fix locale problems Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update x11/gdm to fix locale problems Responsible-Changed-From-To: freebsd-ports->gnome Responsible-Changed-By: petef Responsible-Changed-When: Fri Dec 14 15:19:14 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32840 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 17:51: 8 2001 Delivered-To: freebsd-ports@freebsd.org Received: from bastuba.partitur.se (bastuba.partitur.se [212.209.169.194]) by hub.freebsd.org (Postfix) with ESMTP id 9991337B417 for ; Fri, 14 Dec 2001 17:51:01 -0800 (PST) Received: (from root@localhost) by bastuba.partitur.se (8.11.6/8.11.6) id fBF1p0011449 for ports@FreeBSD.ORG.AVP; Sat, 15 Dec 2001 02:51:00 +0100 (CET) (envelope-from girgen@partitur.se) Received: from elbas.partitur.se (elbas.partitur.se [212.209.169.222]) by bastuba.partitur.se (8.11.6/8.11.6) with ESMTP id fBF1ox311441 for ; Sat, 15 Dec 2001 02:51:00 +0100 (CET) (envelope-from girgen@partitur.se) Received: from elbas.partitur.se (localhost [127.0.0.1]) by elbas.partitur.se (8.11.6/8.11.6) with ESMTP id fBF1oxD67883 for ; Sat, 15 Dec 2001 02:50:59 +0100 (CET) (envelope-from girgen@partitur.se) Date: Sat, 15 Dec 2001 02:50:58 +0100 From: Palle Girgensohn To: ports@FreeBSD.ORG Subject: What's this? all ports broken: "don't know how to make real-build" Message-ID: <197270000.1008381058@elbas.partitur.se> X-Mailer: Mulberry/2.1.1 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi ports list, I have a problem on one of our machines. We have a bunch of FreeBSD systems, all running 4.4-RELEASE. After a fresh cvsup on all machines, *one* of them fails to build ports. All fail with the message: ===> Building for curl-7.9.2 `configure' is up to date. make: don't know how to make real-build. Stop *** Error code 2 make configure is fine. make build fails. On this machine, the output from make -dl is quite different: host:curl$ make -dl cd /usr/local/ports/ftp/curl && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' configure cd /usr/local/ports/ftp/curl && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' real-build echo "===> Building for curl-7.9.2" ===> Building for curl-7.9.2 cd /usr/local/ports/ftp/curl && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' pre-build true if [ -f /usr/local/ports/ftp/curl/scripts/pre-build ]; then cd /usr/local/ports/ftp/curl && /usr/bin/env PORTOBJFORMAT=elf BSD_INSTALL_PROGRAM="install -C -c -s -o root -g wheel -m 555" BSD_INSTALL_SCRIPT="install -C -c -o root -g wheel -m 555" BSD_INSTALL_DATA="install -C -c -o root -g wheel -m 444" BSD_INSTALL_MAN="install -C -c -o root -g wheel -m 444" CURDIR=/usr/local/ports/ftp/curl DISTDIR=/usr/ports/distfiles WRKDIR=/usr/local/obj/foo/usr/local/ports/ftp/curl/work WRKSRC=/usr/local/obj/foo/usr/local/ports/ftp/curl/work/curl-7.9.2 PATCHDIR=/usr/local/ports/ftp/curl/files SCRIPTDIR=/usr/local/ports/ftp/curl/scripts FILESDIR=/usr/local/ports/ftp/curl/files PORTSDIR=/usr/ports DEPENDS="" PREFIX=/usr/local LOCALBASE=/usr/local X11BASE=/usr/X11R6 /bin/sh /usr/local/ports/ftp/curl/scripts/pre-build; fi cd /usr/local/ports/ftp/curl && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' do-build (cd /usr/local/obj/foo/usr/local/ports/ftp/curl/work/curl-7.9.2; /usr/bin/env SHLIB_VER="2" OPENSSLLIB=/usr/lib OPENSSLINC=/usr/include OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl PORTOBJFORMAT=elf PREFIX=/usr/local LOCALBASE=/usr/local X11BASE=/usr/X11R6 MOTIFLIB="-L/usr/X11R6/lib -lXm -lXp" LIBDIR="/usr/lib" CFLAGS="-O -pipe " CXXFLAGS=" -O -pipe -fmemoize-lookups -fsave-memoized" BSD_INSTALL_PROGRAM="install -C -c -s -o root -g wheel -m 555" BSD_INSTALL_SCRIPT="install -C -c -o root -g wheel -m 555" BSD_INSTALL_DATA="install -C -c -o root -g wheel -m 444" BSD_INSTALL_MAN="install -C -c -o root -g wheel -m 444" make -f /usr/local/ports/ftp/curl/Makefile OPENSSL_CFLAGS="-DNO_IDEA" all) cd /usr/local/obj/foo/usr/local/ports/ftp/curl/work/curl-7.9.2 && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' configure `configure' is up to date. cd /usr/local/obj/foo/usr/local/ports/ftp/curl/work/curl-7.9.2 && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' real-build make: don't know how to make real-build. Stop *** Error code 2 ================================================================= GOOD example: otherhost:curl$ make -dl cd /usr/ports/ftp/curl && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' configure cd /usr/ports/ftp/curl && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' real-build echo "===> Building for curl-7.9.2" ===> Building for curl-7.9.2 cd /usr/ports/ftp/curl && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' pre-build true if [ -f /usr/ports/ftp/curl/scripts/pre-build ]; then cd /usr/ports/ftp/curl && /usr/bin/env PORTOBJFORMAT=elf BSD_INSTALL_PROGRAM="install -C -c -s -o root -g wheel -m 555" BSD_INSTALL_SCRIPT="install -C -c -o root -g wheel -m 555" BSD_INSTALL_DATA="install -C -c -o root -g wheel -m 444" BSD_INSTALL_MAN="install -C -c -o root -g wheel -m 444" CURDIR=/usr/ports/ftp/curl DISTDIR=/usr/ports/distfiles WRKDIR=/usr/local/obj/foo/usr/ports/ftp/curl/work WRKSRC=/usr/local/obj/foo/usr/ports/ftp/curl/work/curl-7.9.2 PATCHDIR=/usr/ports/ftp/curl/files SCRIPTDIR=/usr/ports/ftp/curl/scripts FILESDIR=/usr/ports/ftp/curl/files PORTSDIR=/usr/ports DEPENDS="" PREFIX=/usr/local LOCALBASE=/usr/local X11BASE=/usr/X11R6 /bin/sh /usr/ports/ftp/curl/scripts/pre-build; fi cd /usr/ports/ftp/curl && make 'CKSUMFILES+=curl-7.9.2.tar.bz2 curl-lib-sendf.c.patch' do-build (cd /usr/local/obj/foo/usr/ports/ftp/curl/work/curl-7.9.2; /usr/bin/env SHLIB_VER="2" OPENSSLLIB=/usr/lib OPENSSLINC=/usr/include OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl PORTOBJFORMAT=elf PREFIX=/usr/local LOCALBASE=/usr/local X11BASE=/usr/X11R6 MOTIFLIB="-L/usr/X11R6/lib -lXm -lXp" LIBDIR="/usr/lib" CFLAGS="-O -pipe " CXXFLAGS=" -O -pipe -fmemoize-lookups -fsave-memoized" BSD_INSTALL_PROGRAM="install -C -c -s -o root -g wheel -m 555" BSD_INSTALL_SCRIPT="install -C -c -o root -g wheel -m 555" BSD_INSTALL_DATA="install -C -c -o root -g wheel -m 444" BSD_INSTALL_MAN="install -C -c -o root -g wheel -m 444" make -f Makefile OPENSSL_CFLAGS="-DNO_IDEA" all) make all-recursive set fnord -d l; amf=$2; dot_seen=no; target=`echo all-recursive | sed s/-recursive//`; list='docs lib src include tests packages'; for subdir in $list; do echo "Making $target in $subdir"; if test "$subdir" = "."; then dot_seen=yes; local_target="$target-am"; else local_target="$target"; fi; (cd $subdir && make $local_target) || case "$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; done; if test "$dot_seen" = "no"; then make "$target-am" || exit 1; fi; test -z "$fail" Making all in docs set fnord -d l; amf=$2; dot_seen=no; target=`echo all-recursive | sed s/-recursive//`; list='examples'; for subdir in $list; do echo "Making $target in $subdir"; if test "$subdir" = "."; then dot_seen=yes; local_target="$target-am"; else local_target="$target"; fi; (cd $subdir && make $local_target) || case "$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; done; if test "$dot_seen" = "no"; then make "$target-am" || exit 1; fi; test -z "$fail" Making all in examples echo "done" I tried building as different users, use a copy of the same make.conf, /etc/defaults/make.confs are identical as are the contents of /usr/share/mk and /usr/ports/Mk. Note that I use a PORTSDIR separate from /usr/ports and separarate from WRKDIRPREFIX, but they also identical on the two machines. So are the make binaries. All are SMP machines. IF someone can shed som light over this, I'l be very happy. I found one identical issue long time ago on this list , but no solution. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 18:11:23 2001 Delivered-To: freebsd-ports@freebsd.org Received: from trex.fandom.net (CPE-203-45-79-235.nsw.bigpond.net.au [203.45.79.235]) by hub.freebsd.org (Postfix) with ESMTP id 7777437B417 for ; Fri, 14 Dec 2001 18:11:20 -0800 (PST) Received: from localhost.fandom.net ([127.0.0.1] helo=fandom.net) by trex.fandom.net with smtp (Exim 3.22 #1) id 16F4OG-000IBk-00 for ports@FreeBSD.org; Sat, 15 Dec 2001 13:17:28 +1100 Received: from 192.168.167.6 (SquirrelMail authenticated user daeron@fandom.net) by 192.168.167.1 with HTTP; Sat, 15 Dec 2001 13:17:28 +1100 (EST) Message-ID: <4899.192.168.167.6.1008382648.squirrel@192.168.167.1> Date: Sat, 15 Dec 2001 13:17:28 +1100 (EST) Subject: audio/midimountain From: "Daeron" To: ports@FreeBSD.org X-Mailer: SquirrelMail (version 1.0.6) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi Guys :), I was just trying to have a look at MidiMountain, it sounds like another excellent port to have available. Just a couple of notes: 1) It's website has moved to http://www.midimountain.com 2) It has released version 0.3 (he's still working on 0.4) 3) the vers 0.2.1 from the packages seems to core dump -- unfortunatly a quick look at its core from gdb doesn't look too informative for me. (gdb) core midimountain.core Core was generated by `midimountain'. Program terminated with signal 11, Segmentation fault. #0 0x806be49 in ?? () (gdb) bt #0 0x806be49 in ?? () #1 0x809159e in ?? () #2 0x805abb9 in ?? () (gdb) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 19:20: 6 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DD0B37B417 for ; Fri, 14 Dec 2001 19:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF3K0h19588; Fri, 14 Dec 2001 19:20:00 -0800 (PST) (envelope-from gnats) Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 3161F37B419 for ; Fri, 14 Dec 2001 19:11:42 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBF3AJE47353; Fri, 14 Dec 2001 22:10:19 -0500 (EST) (envelope-from alane) Message-Id: <200112150310.fBF3AJE47353@wwweasel.geeksrus.net> Date: Fri, 14 Dec 2001 22:10:19 -0500 (EST) From: Alan E Reply-To: Alan E To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32844: exiting konq term emulator causes crash Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32844 >Category: ports >Synopsis: exiting konq term emulator causes crash >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 19:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alan E >Release: FreeBSD 4.4-STABLE i386 >Organization: Geeksrus.NET >Environment: System: FreeBSD wwweasel.geeksrus.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:14:12 EST 2001 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 KDE-2.2.2 >Description: Exiting the konqueror terminal window causes konqueror to crash. >How-To-Repeat: Open the konqueror terminal emulator (*not* a separate terminal window). I did this by adding the "Show Terminal Emulator" button to the Extra Toolbar. Now, type ^D or exit in the terminal emulator frame. *Blammo*. >Fix: None yet. I will rebuild with debug enabled and post a stack backtrace. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 21:40:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8590A37B405 for ; Fri, 14 Dec 2001 21:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF5e3n72374; Fri, 14 Dec 2001 21:40:03 -0800 (PST) (envelope-from gnats) Date: Fri, 14 Dec 2001 21:40:03 -0800 (PST) Message-Id: <200112150540.fBF5e3n72374@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: TAKEMURA Masahiro Subject: Re: ports/32471: amavis-perl only usable for sendmail Reply-To: TAKEMURA Masahiro Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32471; it has been noted by GNATS. From: TAKEMURA Masahiro To: freebsd-gnats-submit@FreeBSD.org, martijn@ietsvaags.xs Cc: Subject: Re: ports/32471: amavis-perl only usable for sendmail Date: Sat, 15 Dec 2001 14:39:50 +0900 (JST) I update postfix support. following patch is diff to $FreeBSD: ports/security/amavis-perl/Makefile,v 1.5 2001/10/21 18:47:20 dwcjr Exp $ -- TAKEMURA Masahiro : mastake@msel.t.u-tokyo.ac.jp diff -urP amavis-perl.orig/Makefile amavis-perl/Makefile --- amavis-perl.orig/Makefile Mon Oct 22 03:47:20 2001 +++ amavis-perl/Makefile Sat Dec 15 13:29:55 2001 @@ -50,7 +50,18 @@ RUN_DEPENDS= ${BUILD_DEPENDS} .endif -.if !defined(MTA) +.if defined(MTA) +.if ${MTA} == "postfix" +DIROWNER?= vscan:daemon +CONFIGURE_ARGS+= --enable-postfix --enable-smtp +BUILD_DEPENDS+= ${LOCALBASE}/sbin/postfix:${PORTSDIR}/mail/postfix +.elif ${MTA} == "exim" +DIROWNER?= root:daemon +CONFIGURE_ARGS+= --enable-exim +BUILD_DEPENDS+= ${LOCALBASE}/sbin/exim:${PORTSDIR}/mail/exim +.endif +RUN_DEPENDS= ${BUILD_DEPENDS} +.else MTA?= sendmail DIROWNER?= root:daemon CONFIGURE_ARGS+= --enable-relay @@ -58,6 +69,7 @@ PKGDEINSTALL= ${PKGDIR}/pkg-deinstall.${MTA} PKGINSTALL= ${PKGDIR}/pkg-install.${MTA} +PKGMESSAGE= ${PKGDIR}/pkg-message.${MTA} do-install: @${MKDIR} /var/log/amavis @@ -71,9 +83,9 @@ .endif post-install: + @PKG_PREFIX=${PREFIX} ${PERL5} ${PKGINSTALL} _ POST-INSTALL @${CHOWN} ${DIROWNER} /var/log/amavis /var/spool/quarantine @${CHMOD} 0755 /var/log/amavis /var/spool/quarantine - @PKG_PREFIX=${PREFIX} ${PERL5} ${PKGINSTALL} _ POST-INSTALL - @${CAT} ${PKGMESSAGE}.${MTA} + @${CAT} ${PKGMESSAGE} .include diff -urP amavis-perl.orig/pkg-install.postfix amavis-perl/pkg-install.postfix --- amavis-perl.orig/pkg-install.postfix Thu Jan 1 09:00:00 1970 +++ amavis-perl/pkg-install.postfix Sat Dec 15 12:48:39 2001 @@ -0,0 +1,31 @@ +#!/usr/bin/perl + +$user=vscan; +$group=nogroup; + +if (`grep ^vscan: /etc/passwd` eq "") { + print "You need a user \"${user}\".\n"; + if (yesno("Would you like me to create it", "y")) { + system ("/usr/sbin/pw useradd ${user} -g ${group} -h - -d /nonexistent -s /nonexistent -c \"AMaViS Virus Scanner\" || exit"); + print "Done.\n"; + } else { + print "Please create it, and try again.\n"; + exit 1; + }; +} else { + print "You already have a user \"${user}\", so I will use it.\n"; +}; + +sub yesno() { + my ($mes, $def) = @_; + print "$mes [$def]? "; + $answer = ; + chomp($answer); + if ($answer eq "") { + $answer = "y"; + }; + if ($answer=~/^y/i) { + return 1; + }; + return 0; +}; diff -urP amavis-perl.orig/pkg-message.postfix amavis-perl/pkg-message.postfix --- amavis-perl.orig/pkg-message.postfix Thu Jan 1 09:00:00 1970 +++ amavis-perl/pkg-message.postfix Sat Dec 15 12:50:20 2001 @@ -0,0 +1,22 @@ + +Please read documentation on http://www.amavis.org/ before you start using it. + + To configure postfix, you have to do later: + + * add + + content_filter = vscan: + + to /usr/local/etc/postfix/main.cf + + * add + + vscan unix - n n - 10 pipe user-vscan + argv=/usr/local/sbin/amavis ${sender} ${recipient} + localhost:10025 inet n - n - - smtpd + -o content_filter= + + to /etc/postfix/master.cf. + +Please read /usr/local/share/doc/amavis/README.postfix for further information + To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 21:54: 2 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blotto.oss.uswest.net (blotto.oss.uswest.net [63.228.2.241]) by hub.freebsd.org (Postfix) with ESMTP id A441B37B405 for ; Fri, 14 Dec 2001 21:53:59 -0800 (PST) Received: (from pete@localhost) by blotto.oss.uswest.net (8.11.6/8.11.1) id fBF5xus04236 for ports@freebsd.org; Fri, 14 Dec 2001 23:59:56 -0600 (CST) (envelope-from pete) Date: Fri, 14 Dec 2001 23:59:56 -0600 From: Pete McKenna To: ports@freebsd.org Subject: Gnomemeeting work for anyone ? Message-ID: <20011214235956.A4216@blotto.qwest.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I have never been able to get this to build. I just cvsuped, built world, (4.4 Stable) and update my ports and it dies in the config. Any pointers on this ? What other information would be helpful ? I run KDE and know very little about Gnome. Thanks ; return 0; } configure:7677: checking for gmsgfmt configure:7713: checking for xgettext configure:7753: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/in clude -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R 6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 /tmp/cc8Hxg9C.o: In function `main': /tmp/cc8Hxg9C.o(.text+0x4): undefined reference to `_nl_msg_cat_cntr' configure: failed program was: #line 7745 "configure" #include "confdefs.h" int main() { extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } configure:8030: checking for catalogs to be installed configure:8141: checking ORBit version (end of "config.log") *** Error code 1 Stop in /usr/ports/devel/bonobo. -- Peter McKenna Systems Architect pete_mckenna@qwest.net Home 651-644-2131 Cell 651-263-5944 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 22: 9:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C814737B417; Fri, 14 Dec 2001 22:09:40 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF67nd77605; Fri, 14 Dec 2001 22:07:49 -0800 (PST) (envelope-from ijliao) Date: Fri, 14 Dec 2001 22:07:49 -0800 (PST) From: Message-Id: <200112150607.fBF67nd77605@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/32844: exiting konq term emulator causes crash Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: exiting konq term emulator causes crash Responsible-Changed-From-To: freebsd-ports->kde Responsible-Changed-By: ijliao Responsible-Changed-When: Fri Dec 14 22:07:15 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32844 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 22:10:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7ACFB37B419 for ; Fri, 14 Dec 2001 22:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF6A1J77686; Fri, 14 Dec 2001 22:10:01 -0800 (PST) (envelope-from gnats) Received: from yoda.bmi.net (yoda.bmi.net [204.57.191.163]) by hub.freebsd.org (Postfix) with ESMTP id 6463537B416 for ; Fri, 14 Dec 2001 22:09:49 -0800 (PST) Received: from johncoop.MSHOME (drumheller-router.bmi.net [206.63.201.3] (may be forged)) by yoda.bmi.net (Pro-8.9.3/Pro-8.9.3) with ESMTP id XAA21549 for ; Fri, 14 Dec 2001 23:43:37 -0800 Received: by johncoop.MSHOME (Postfix, from userid 0) id 8C7A315503; Fri, 14 Dec 2001 22:09:38 -0800 (PST) Message-Id: <20011215060938.8C7A315503@johncoop.MSHOME> Date: Fri, 14 Dec 2001 22:09:38 -0800 (PST) From: John Merryweather Cooper Reply-To: John Merryweather Cooper To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32846: [NEW PORT] SIDplug 1.1.4 - a Commodore 64 psid plugin for Mozilla Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32846 >Category: ports >Synopsis: [NEW PORT] SIDplug 1.1.4 - a Commodore 64 psid plugin for Mozilla >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 22:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: John Merryweather Cooper >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD johncoop.MSHOME 4.4-STABLE FreeBSD 4.4-STABLE #28: Thu Dec 13 21:16:38 PST 2001 root@johncoop.MSHOME:/usr/obj/usr/src/sys/JOHNCOOP i386 >Description: While working on plugger, I came upon this very nice psid player. Performance is excellent when used with xsidplay. >How-To-Repeat: N/A >Fix: The much-hated, totally unreliable shar archive follows (a tarball or gzip'ed shar on request): # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # sidplug # sidplug/files # sidplug/files/patch-Makefile # sidplug/Makefile # sidplug/distinfo # sidplug/pkg-comment # sidplug/pkg-descr # sidplug/pkg-plist # echo c - sidplug mkdir -p sidplug > /dev/null 2>&1 echo c - sidplug/files mkdir -p sidplug/files > /dev/null 2>&1 echo x - sidplug/files/patch-Makefile sed 's/^X//' >sidplug/files/patch-Makefile << 'END-of-sidplug/files/patch-Makefile' X--- Makefile Mon Nov 17 02:32:09 1997 X+++ Makefile.new Fri Dec 14 21:08:26 2001 X@@ -19,11 +19,10 @@ X # X X PLUGIN_SDK_PATH = ./PluginSDK30b5 X-PLUGIN_DEFINES= -DXP_UNIX -I$(PLUGIN_SDK_PATH)/include X+PLUGIN_DEFINES= -DXP_UNIX -I$(PLUGIN_SDK_PATH)/include -I$(X11BASE)/include X X-CC = gcc X-OPTIMIZER = -O X-CFLAGS = $(OPTIMIZER) $(PLUGIN_DEFINES) X+CC ?= gcc X+CFLAGS += $(PLUGIN_DEFINES) X X SRC= sidplug.c npunix.c X OBJ= sidplug.o npunix.o END-of-sidplug/files/patch-Makefile echo x - sidplug/Makefile sed 's/^X//' >sidplug/Makefile << 'END-of-sidplug/Makefile' X# New ports collection makefile for: sidplug X# Date created: 14 December 2001 X# Whom: John Merryweather Cooper X# X# $FreeBSD$ X# X XPORTNAME= sidplug XPORTVERSION= 1.1.4 XCATEGORIES= www audio XMASTER_SITES= http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/ XEXTRACT_SUFX= .tgz X XMAINTAINER= jmcoopr@webmail.bmi.net X XRUN_DEPENDS= xsidplay:${PORTSDIR}/audio/xsidplay X XUSE_X_PREFIX= yes XUSE_XLIB= yes X Xdo-install: X @${MKDIR} ${PREFIX}/lib/mozilla/plugins X @${INSTALL_PROGRAM} ${WRKSRC}/npsidplug.so ${PREFIX}/lib/mozilla/plugins X @${LN} -sf ${X11BASE}/bin/xsidplay ${PREFIX}/bin/sidplug X.ifndef(NOPORTDOCS) X @${MKDIR} ${EXAMPLESDIR} X @${INSTALL_DATA} ${WRKSRC}/Lazy_Fast.sid ${EXAMPLESDIR} X @${INSTALL_DATA} ${WRKSRC}/README.html ${EXAMPLESDIR} X @${INSTALL_DATA} ${WRKSRC}/sidplug.png ${EXAMPLESDIR} X.endif X X.include END-of-sidplug/Makefile echo x - sidplug/distinfo sed 's/^X//' >sidplug/distinfo << 'END-of-sidplug/distinfo' XMD5 (sidplug-1.1.4.tgz) = 7d53f49b1fd04e2d7f57c97dc96dfb25 END-of-sidplug/distinfo echo x - sidplug/pkg-comment sed 's/^X//' >sidplug/pkg-comment << 'END-of-sidplug/pkg-comment' XA Commodore 64 psid audio plugin for Mozilla web browser END-of-sidplug/pkg-comment echo x - sidplug/pkg-descr sed 's/^X//' >sidplug/pkg-descr << 'END-of-sidplug/pkg-descr' XSIDplug is a Commodore 64 psid audio Plugin for Mozilla. X X-- jmcoopr@webmail.bmi.net XWWW: http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/sidplug.html END-of-sidplug/pkg-descr echo x - sidplug/pkg-plist sed 's/^X//' >sidplug/pkg-plist << 'END-of-sidplug/pkg-plist' Xbin/sidplug Xlib/mozilla/plugins/npsidplug.so X@dirrm lib/mozilla/plugins X@dirrm lib/mozilla X%%PORTDOCS%%share/examples/sidplug/Lazy_Fast.sid X%%PORTDOCS%%share/examples/sidplug/README.html X%%PORTDOCS%%share/examples/sidplug/sidplug.png X%%PORTDOCS%%@dirrm share/examples/sidplug END-of-sidplug/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 22:40:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E8F637B41B for ; Fri, 14 Dec 2001 22:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF6e1V79661; Fri, 14 Dec 2001 22:40:01 -0800 (PST) (envelope-from gnats) Received: from yoda.bmi.net (yoda.bmi.net [204.57.191.163]) by hub.freebsd.org (Postfix) with ESMTP id F328537B416; Fri, 14 Dec 2001 22:32:08 -0800 (PST) Received: from johncoop.MSHOME (drumheller-router.bmi.net [206.63.201.3] (may be forged)) by yoda.bmi.net (Pro-8.9.3/Pro-8.9.3) with ESMTP id AAA25059; Sat, 15 Dec 2001 00:06:02 -0800 Received: by johncoop.MSHOME (Postfix, from userid 0) id BBD1915503; Fri, 14 Dec 2001 22:32:02 -0800 (PST) Message-Id: <20011215063202.BBD1915503@johncoop.MSHOME> Date: Fri, 14 Dec 2001 22:32:02 -0800 (PST) From: John Merryweather Cooper Reply-To: John Merryweather Cooper To: FreeBSD-gnats-submit@freebsd.org Cc: lioux@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32847: [MAINTAINER UPDATE] unbreak plugger for latest mozilla Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32847 >Category: ports >Synopsis: [MAINTAINER UPDATE] unbreak plugger for latest mozilla >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 22:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: John Merryweather Cooper >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD johncoop.MSHOME 4.4-STABLE FreeBSD 4.4-STABLE #28: Thu Dec 13 21:16:38 PST 2001 root@johncoop.MSHOME:/usr/obj/usr/src/sys/JOHNCOOP i386 >Description: The latest Mozilla in ports no longer recognizes plugins unless they start with libnp or np. Since plugger's plugin was named plugger.so, this caused it to be disabled. Fix this, and bump PORTREVISION, so that plugger once again works with Mozilla. >How-To-Repeat: N/A >Fix: Summary of changed files: 'plugger.new/Makefile' | 0 'plugger.new/pkg-plist' | 0 ./Makefile | 7 ++++--- ./pkg-plist | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) The patch: # This is a patch for plugger to update it to plugger.new # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # STEP 2: Run the 'patch' program with this file as input. # #### End of Preamble #### #### Patch data follows #### diff -u 'plugger/Makefile' 'plugger.new/Makefile' Index: ./Makefile --- ./Makefile Tue Sep 4 09:32:20 2001 +++ ./Makefile Fri Dec 14 22:18:34 2001 @@ -2,12 +2,12 @@ # Date created: 11 Februrary 1999 # Whom: Jay Sachs # -# $FreeBSD: ports/www/plugger/Makefile,v 1.9 2001/09/04 16:32:20 lioux Exp $ +# $FreeBSD$ # PORTNAME= plugger PORTVERSION= 3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www audio graphics MASTER_SITES= http://fredrik.hubbe.net/plugger/ \ ftp://ftp.netscape.com/pub/sdk/plugin/unix/ @@ -39,7 +39,8 @@ ${WRKSRC}/plugger.c.orig > ${WRKSRC}/plugger.c do-install: - @${INSTALL_DATA} ${WRKSRC}/plugger.so ${PREFIX}/lib/mozilla/plugins + @${INSTALL_PROGRAM} ${WRKSRC}/plugger.so \ + ${PREFIX}/lib/mozilla/plugins/npplugger.so @${INSTALL_MAN} ${WRKSRC}/plugger.7 ${MANPREFIX}/man/man7 @${INSTALL_DATA} ${WRKSRC}/pluggerrc ${PREFIX}/etc/pluggerrc.sample @${INSTALL_DATA} -b ${WRKSRC}/pluggerrc ${PREFIX}/etc diff -u 'plugger/pkg-plist' 'plugger.new/pkg-plist' Index: ./pkg-plist --- ./pkg-plist Tue Sep 4 09:32:20 2001 +++ ./pkg-plist Fri Dec 14 22:18:34 2001 @@ -1,4 +1,4 @@ -lib/mozilla/plugins/plugger.so +lib/mozilla/plugins/npplugger.so @unexec if [ -f %D/etc/pluggerrc ]; then cmp -s %D/etc/pluggerrc.sample %D/etc/pluggerrc && rm -f %D/etc/pluggerrc || echo "If you are permanently removing this port, you should do a ``rm -f ${PKG_PREFIX}/etc/pluggerrc`` to remove configuration files left." | fmt ; fi @unexec if [ -f %D/etc/pluggerrc.old ]; then echo "If you are permanently removing this port, you should do a ``rm -f ${PKG_PREFIX}/etc/pluggerrc.old`` to remove backup configuration files left." | fmt ; fi etc/pluggerrc.sample #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Fri Dec 14 22:21:41 2001 # Generated by : makepatch 2.00 # Recurse directories : Yes # p 'Makefile' 1636 1008397114 0100644 # p 'pkg-plist' 618 1008397114 0100644 #### End of ApplyPatch data #### #### End of Patch kit [created: Fri Dec 14 22:21:41 2001] #### #### Checksum: 69 2763 23890 #### >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 14 23: 0:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A38D37B419 for ; Fri, 14 Dec 2001 23:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF701e81504; Fri, 14 Dec 2001 23:00:01 -0800 (PST) (envelope-from gnats) Received: from t-mta8.odn.ne.jp (mfep8.odn.ne.jp [143.90.131.186]) by hub.freebsd.org (Postfix) with ESMTP id 8CA1537B405 for ; Fri, 14 Dec 2001 22:50:55 -0800 (PST) Received: from localhost ([61.201.64.62]) by t-mta8.odn.ne.jp with ESMTP id <20011215065054604.QAER.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp>; Sat, 15 Dec 2001 15:50:54 +0900 Message-Id: <20011215065054604.QAER.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp> Date: Sat, 15 Dec 2001 15:50:53 +0900 (JST) From: Kimura Fuyuki To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32848: New port: mail/smtpproxy Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32848 >Category: ports >Synopsis: New port: mail/smtpproxy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 23:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD ns.test 4.4-STABLE FreeBSD 4.4-STABLE #2: Tue Dec 4 16:17:57 JST 2001 root@ns.test:/sack/obj/usr/src/sys/NS i386 >Description: smtp.proxy is an application level gateway for SMTP. It connects a client to a server running on another machine watching that the protocol is accomplished. If commands outside the specification are sent they are not forwarded to the server. WWW: http://www.quietsche-entchen.de/software/smtp.proxy.html >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # smtpproxy # smtpproxy/files # smtpproxy/files/patch-aa # smtpproxy/distinfo # smtpproxy/pkg-plist # smtpproxy/Makefile # smtpproxy/pkg-comment # smtpproxy/pkg-descr # echo c - smtpproxy mkdir -p smtpproxy > /dev/null 2>&1 echo c - smtpproxy/files mkdir -p smtpproxy/files > /dev/null 2>&1 echo x - smtpproxy/files/patch-aa sed 's/^X//' >smtpproxy/files/patch-aa << 'END-of-smtpproxy/files/patch-aa' X--- makefile.orig Sat Dec 15 14:41:41 2001 X+++ makefile Sat Dec 15 14:45:34 2001 X@@ -1,6 +1,6 @@ X X-CC = gcc X-CFLAGS = -ggdb -Wall X+CC ?= gcc X+CFLAGS += -ggdb -Wall X X TAR = smtpproxy-1.1.3 X DIR = smtpproxy-1.1.3 X@@ -17,7 +17,7 @@ X X install: all X strip $(TARGETS) X- cp $(TARGETS) /usr/local/sbin X+ cp $(TARGETS) /usr/local/libexec X cp *.1 /usr/local/man/man1 X X END-of-smtpproxy/files/patch-aa echo x - smtpproxy/distinfo sed 's/^X//' >smtpproxy/distinfo << 'END-of-smtpproxy/distinfo' XMD5 (smtpproxy-1.1.3.tar.gz) = c4558c8d379644e5b1fd66c389107a1e END-of-smtpproxy/distinfo echo x - smtpproxy/pkg-plist sed 's/^X//' >smtpproxy/pkg-plist << 'END-of-smtpproxy/pkg-plist' Xlibexec/smtp.proxy X%%PORTDOCS%%share/doc/smtpproxy/README X%%PORTDOCS%%@dirrm share/doc/smtpproxy END-of-smtpproxy/pkg-plist echo x - smtpproxy/Makefile sed 's/^X//' >smtpproxy/Makefile << 'END-of-smtpproxy/Makefile' X# New ports collection makefile for: smtpproxy X# Date created: 15 December 2001 X# Whom: Kimura Fuyuki X# X# $FreeBSD$ X# X XPORTNAME= smtpproxy XPORTVERSION= 1.1.3 XCATEGORIES= mail XMASTER_SITES= http://www.quietsche-entchen.de/download/ X XMAINTAINER= fuyuki@mj.0038.net X XMAKEFILE= makefile X XMAN1= smtp.proxy.1 X Xpost-install: X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X.for i in README X ${INSTALL_MAN} ${WRKSRC}/${i} ${DOCSDIR} X.endfor X.endif X X.include END-of-smtpproxy/Makefile echo x - smtpproxy/pkg-comment sed 's/^X//' >smtpproxy/pkg-comment << 'END-of-smtpproxy/pkg-comment' XSMTP proxy server END-of-smtpproxy/pkg-comment echo x - smtpproxy/pkg-descr sed 's/^X//' >smtpproxy/pkg-descr << 'END-of-smtpproxy/pkg-descr' Xsmtp.proxy is an application level gateway for SMTP. It connects a Xclient to a server running on another machine watching that the Xprotocol is accomplished. If commands outside the specification are Xsent they are not forwarded to the server. X XWWW: http://www.quietsche-entchen.de/software/smtp.proxy.html X X- Kimura Fuyuki Xfuyuki@mj.0038.net END-of-smtpproxy/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:10:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA01037B420 for ; Sat, 15 Dec 2001 00:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A1D94262; Sat, 15 Dec 2001 00:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5280437B405 for ; Sat, 15 Dec 2001 00:01:54 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF81rL90408; Sat, 15 Dec 2001 00:01:53 -0800 (PST) (envelope-from nobody) Message-Id: <200112150801.fBF81rL90408@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:01:53 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32853: Update port: devel/libtecla to 1.4.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32853 >Category: ports >Synopsis: Update port: devel/libtecla to 1.4.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.4.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/libtecla/Makefile devel/libtecla/Makefile --- /usr/ports/devel/libtecla/Makefile Wed Jul 4 16:32:03 2001 +++ devel/libtecla/Makefile Tue Dec 11 22:40:09 2001 @@ -7,28 +7,41 @@ # PORTNAME= libtecla -PORTVERSION= 1.3.3 +PORTVERSION= 1.4.0 CATEGORIES= devel MASTER_SITES= http://www.astro.caltech.edu/~mcs/tecla/ MAINTAINER= ports@FreeBSD.org -GNU_CONFIGURE= yes - WRKSRC= ${WRKDIR}/${PORTNAME} -ALL_TARGET= + +GNU_CONFIGURE= yes +ALL_TARGET= default MAN3= cfc_file_start.3 cfc_literal_escapes.3 cfc_set_check_fn.3 \ cpl_add_completion.3 cpl_complete_word.3 cpl_file_completions.3 \ cpl_last_error.3 cpl_list_completions.3 cpl_record_error.3 \ - del_CplFileConf.3 del_ExpandFile.3 del_GetLine.3 del_PathCache.3 \ - del_PcaPathConf.3 del_WordCompletion.3 ef_expand_file.3 \ - ef_last_error.3 ef_list_expansions.3 gl_change_terminal.3 \ - gl_customize_completion.3 \ - gl_get_line.3 libtecla.3 new_CplFileConf.3 new_ExpandFile.3 \ - new_GetLine.3 new_PathCache.3 new_PcaPathConf.3 new_WordCompletion.3 \ - pca_last_error.3 pca_lookup_file.3 pca_path_completions.3 \ - pca_scan_path.3 pca_set_check_fn.3 ppc_file_start.3 \ - ppc_literal_escapes.3 + del_CplFileConf.3 del_ExpandFile.3 del_GetLine.3 \ + del_PathCache.3 del_PcaPathConf.3 del_WordCompletion.3 \ + ef_expand_file.3 ef_last_error.3 ef_list_expansions.3 \ + enhance.3 gl_change_terminal.3 gl_clear_history.3 \ + gl_configure_getline.3 gl_customize_completion.3 gl_echo_mode.3 \ + gl_get_line.3 gl_group_history.3 gl_ignore_signal.3 \ + gl_last_signal.3 gl_limit_history.3 gl_load_history.3 \ + gl_lookup_history.3 gl_prompt_style.3 gl_range_of_history.3 \ + gl_resize_history.3 gl_save_history.3 gl_show_history.3 \ + gl_size_of_history.3 gl_state_of_history.3 gl_terminal_size.3 \ + gl_toggle_history.3 gl_trap_signal.3 gl_watch_fd.3 \ + libtecla.3 libtecla_version.3 new_CplFileConf.3 \ + new_ExpandFile.3 new_GetLine.3 new_PathCache.3 \ + new_PcaPathConf.3 new_WordCompletion.3 pca_last_error.3 \ + pca_lookup_file.3 pca_path_completions.3 pca_scan_path.3 \ + pca_set_check_fn.3 ppc_file_start.3 ppc_literal_escapes.3 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/enhance ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/libtecla.a ${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/libtecla.h ${PREFIX}/include + ${INSTALL_MAN} ${WRKSRC}/man3/*.3 ${MANPREFIX}/man/man3 .include diff -urN /usr/ports/devel/libtecla/distinfo devel/libtecla/distinfo --- /usr/ports/devel/libtecla/distinfo Wed Jul 4 16:32:03 2001 +++ devel/libtecla/distinfo Tue Dec 11 22:05:09 2001 @@ -1 +1 @@ -MD5 (libtecla-1.3.3.tar.gz) = e2418443eb2ba982a735330642ade4c6 +MD5 (libtecla-1.4.0.tar.gz) = 2ac0cf19042e69338cec83866273ff0f diff -urN /usr/ports/devel/libtecla/pkg-plist devel/libtecla/pkg-plist --- /usr/ports/devel/libtecla/pkg-plist Sat Mar 17 03:25:43 2001 +++ devel/libtecla/pkg-plist Tue Dec 11 22:26:32 2001 @@ -1,2 +1,3 @@ +bin/enhance lib/libtecla.a include/libtecla.h >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:10:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9ADCF37B428 for ; Sat, 15 Dec 2001 00:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A2F94292; Sat, 15 Dec 2001 00:10:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2829037B416 for ; Sat, 15 Dec 2001 00:03:53 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF83rj90508; Sat, 15 Dec 2001 00:03:53 -0800 (PST) (envelope-from nobody) Message-Id: <200112150803.fBF83rj90508@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:03:53 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32856: Update port: graphics/png to 1.2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32856 >Category: ports >Synopsis: Update port: graphics/png to 1.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.2.1 Remove file: files/patch-pnggccrd.c >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/png/Makefile graphics/png/Makefile --- /usr/ports/graphics/png/Makefile Fri Nov 16 19:14:44 2001 +++ graphics/png/Makefile Sat Dec 15 14:00:41 2001 @@ -6,8 +6,7 @@ # PORTNAME= png -PORTVERSION= 1.2.0 -PORTREVISION= 1 +PORTVERSION= 1.2.1 CATEGORIES= graphics MASTER_SITES= http://www.libpng.org/pub/png/src/ \ ftp://swrinde.nde.swri.edu/pub/png/src/ \ diff -urN /usr/ports/graphics/png/distinfo graphics/png/distinfo --- /usr/ports/graphics/png/distinfo Tue Sep 11 18:45:51 2001 +++ graphics/png/distinfo Sat Dec 15 14:06:18 2001 @@ -1 +1 @@ -MD5 (libpng-1.2.0.tar.gz) = 0768b511b9cabb052c72146dd0de79d8 +MD5 (libpng-1.2.1.tar.gz) = 75a21cbfae566158a0ac6d9f39087c4d diff -urN /usr/ports/graphics/png/files/patch-pnggccrd.c graphics/png/files/patch-pnggccrd.c --- /usr/ports/graphics/png/files/patch-pnggccrd.c Fri Nov 16 08:32:37 2001 +++ graphics/png/files/patch-pnggccrd.c Thu Jan 1 09:00:00 1970 @@ -1,14 +0,0 @@ - -$FreeBSD: ports/graphics/png/files/patch-pnggccrd.c,v 1.1 2001/11/15 23:32:37 sobomax Exp $ - ---- pnggccrd.c 2001/11/15 23:03:00 1.1 -+++ pnggccrd.c 2001/11/15 23:07:03 -@@ -5287,6 +5287,8 @@ - "popfl \n\t" // restore modified value to Eflag reg - "pushfl \n\t" // save Eflag to stack - "popl %%eax \n\t" // get Eflag from stack -+ "pushl %%ecx \n\t" // save original Eflag to stack -+ "popfl \n\t" // restore original Eflag - "xorl %%ecx, %%eax \n\t" // compare new Eflag with original Eflag - "jz .NOT_SUPPORTED \n\t" // if same, CPUID instr. is not supported - >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:10:59 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5190137B41C for ; Sat, 15 Dec 2001 00:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A1h94232; Sat, 15 Dec 2001 00:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3283137B405 for ; Sat, 15 Dec 2001 00:00:46 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF80je90214; Sat, 15 Dec 2001 00:00:45 -0800 (PST) (envelope-from nobody) Message-Id: <200112150800.fBF80je90214@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:00:45 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32851: Update port: databases/unixODBC to 2.1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32851 >Category: ports >Synopsis: Update port: databases/unixODBC to 2.1.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 2.1.0 New file: files/patch-ltmain.sh >How-To-Repeat: >Fix: diff -urN /usr/ports/databases/unixODBC/Makefile databases/unixODBC/Makefile --- /usr/ports/databases/unixODBC/Makefile Thu Aug 23 19:47:09 2001 +++ databases/unixODBC/Makefile Thu Dec 13 06:28:00 2001 @@ -6,27 +6,25 @@ # PORTNAME= unixODBC -PORTVERSION= 2.0.9 +PORTVERSION= 2.1.0 CATEGORIES= databases MASTER_SITES= http://www.unixodbc.org/ MAINTAINER= ports@FreeBSD.org -USE_LIBTOOL= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-static --enable-shared INSTALLS_SHLIB= yes .if defined(WITH_GUI) USE_QT_VER= 2 QT_NONSTANDARD= yes -CONFIGURE_ENV= MOC="${MOC}" LIBQT="-l${QTNAME}" \ +CONFIGURE_ENV= MOC="${MOC}" \ + QTINC="${X11BASE}/include/qt2" \ + QTLIB="${X11BASE}/lib" \ USER_INCLUDES="${QTCPPFLAGS}" \ USER_LDFLAGS="${QTCFGLIBS}" -CONFIGURE_ARGS+= --enable-gui \ - --with-qt-includes=${X11BASE}/include/qt2 \ - --with-qt-libraries=${X11BASE}/lib \ - --with-extra-includes=${LOCALBASE}/include \ - --with-extra-libs=${LOCALBASE}/lib +CONFIGURE_ARGS+= --enable-gui PLIST_SUB= GUI:="" .else CONFIGURE_ARGS+= --disable-gui @@ -35,20 +33,16 @@ .if defined(WITH_PTHREAD) CONFIGURE_ARGS+= --enable-threads=yes +QT_NAME= qt2-mt .else CONFIGURE_ARGS+= --enable-threads=no +QT_NAME= qt2 .endif -pre-patch: -.if defined(WITH_PTHREAD) +post-patch: @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|-lqt|-lqt2-mt|g' ${WRKSRC}/configure -.else - @${PERL} -pi -e 's|-lqt|-lqt2|g' ${WRKSRC}/configure -.endif - -pre-build: - @${LN} -sf ${LOCALBASE}/bin/libtool ${WRKSRC}/libtool + s|"-lqt"|"-l${QT_NAME}"|g ; \ + s|"-lqt-mt"|"-l${QT_NAME}"|g' ${WRKSRC}/configure post-install: .if !defined(NOPORTDOCS) diff -urN /usr/ports/databases/unixODBC/distinfo databases/unixODBC/distinfo --- /usr/ports/databases/unixODBC/distinfo Thu Aug 23 19:47:10 2001 +++ databases/unixODBC/distinfo Wed Nov 28 04:14:17 2001 @@ -1 +1 @@ -MD5 (unixODBC-2.0.9.tar.gz) = 0e7b50be602aea5788fd940d7620da0e +MD5 (unixODBC-2.1.0.tar.gz) = 32f48117e6e14343a928e22385595c81 diff -urN /usr/ports/databases/unixODBC/files/patch-ltmain.sh databases/unixODBC/files/patch-ltmain.sh --- /usr/ports/databases/unixODBC/files/patch-ltmain.sh Thu Jan 1 09:00:00 1970 +++ databases/unixODBC/files/patch-ltmain.sh Thu Dec 13 05:47:24 2001 @@ -0,0 +1,33 @@ +--- ltmain.sh.orig Wed Oct 31 22:35:16 2001 ++++ ltmain.sh Thu Dec 13 05:47:16 2001 +@@ -944,6 +944,7 @@ + ;; + + -avoid-version) ++ build_old_libs=no + avoid_version=yes + continue + ;; +@@ -2408,6 +2409,9 @@ + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test $build_libtool_need_lc = "yes"; then +@@ -4175,10 +4179,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff -urN /usr/ports/databases/unixODBC/pkg-plist databases/unixODBC/pkg-plist --- /usr/ports/databases/unixODBC/pkg-plist Mon Jul 23 12:54:43 2001 +++ databases/unixODBC/pkg-plist Fri Dec 14 17:42:37 2001 @@ -15,90 +15,73 @@ include/sqlucode.h include/uodbc_stats.h lib/libboundparam.a -lib/libboundparam.la lib/libboundparam.so lib/libboundparam.so.1 lib/libesoobS.a -lib/libesoobS.la lib/libesoobS.so lib/libesoobS.so.1 lib/libgtrtst.a -lib/libgtrtst.la lib/libgtrtst.so lib/libgtrtst.so.1 lib/libnn.a -lib/libnn.la lib/libnn.so lib/libnn.so.1 lib/libodbc.a -lib/libodbc.la lib/libodbc.so lib/libodbc.so.1 lib/libodbccr.a -lib/libodbccr.la lib/libodbccr.so lib/libodbccr.so.1 lib/libodbcdrvcfg1S.a -lib/libodbcdrvcfg1S.la lib/libodbcdrvcfg1S.so lib/libodbcdrvcfg1S.so.1 lib/libodbcdrvcfg2S.a -lib/libodbcdrvcfg2S.la lib/libodbcdrvcfg2S.so lib/libodbcdrvcfg2S.so.1 lib/libodbcextras.a -lib/libodbcextras.la lib/libodbcextras.so lib/libodbcextras.so.1 lib/libodbcinst.a -lib/libodbcinst.la lib/libodbcinst.so lib/libodbcinst.so.1 +%%GUI:%%lib/libodbcinstQ.a +%%GUI:%%lib/libodbcinstQ.so +%%GUI:%%lib/libodbcinstQ.so.1 lib/libodbcminiS.a -lib/libodbcminiS.la lib/libodbcminiS.so lib/libodbcminiS.so.1 lib/libodbcmyS.a -lib/libodbcmyS.la lib/libodbcmyS.so lib/libodbcmyS.so.1 lib/libodbcnnS.a -lib/libodbcnnS.la lib/libodbcnnS.so lib/libodbcnnS.so.1 lib/libodbcpsql.a -lib/libodbcpsql.la lib/libodbcpsql.so lib/libodbcpsql.so.1 lib/libodbcpsql.so.2 lib/libodbcpsqlS.a -lib/libodbcpsqlS.la lib/libodbcpsqlS.so lib/libodbcpsqlS.so.1 lib/libodbctxt.a -lib/libodbctxt.la +lib/libodbctxt.so +lib/libodbctxt.so.1 lib/libodbctxtS.a -lib/libodbctxtS.la lib/libodbctxtS.so lib/libodbctxtS.so.1 lib/liboplodbcS.a -lib/liboplodbcS.la lib/liboplodbcS.so lib/liboplodbcS.so.1 lib/liboraodbcS.a -lib/liboraodbcS.la lib/liboraodbcS.so lib/liboraodbcS.so.1 lib/libsapdbS.a -lib/libsapdbS.la lib/libsapdbS.so lib/libsapdbS.so.1 lib/libtdsS.a -lib/libtdsS.la lib/libtdsS.so lib/libtdsS.so.1 lib/libtemplate.a -lib/libtemplate.la lib/libtemplate.so lib/libtemplate.so.1 %%PORTDOCS%%share/doc/unixODBC/AdministratorManual/index.html >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:11:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F6CF37B41E for ; Sat, 15 Dec 2001 00:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A1M94243; Sat, 15 Dec 2001 00:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A7E4237B626 for ; Sat, 15 Dec 2001 00:01:17 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF81H290330; Sat, 15 Dec 2001 00:01:17 -0800 (PST) (envelope-from nobody) Message-Id: <200112150801.fBF81H290330@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:01:17 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32852: Update port: devel/libdsp to 4.2.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32852 >Category: ports >Synopsis: Update port: devel/libdsp to 4.2.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 4.2.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/libdsp/Makefile devel/libdsp/Makefile --- /usr/ports/devel/libdsp/Makefile Mon Sep 10 19:28:51 2001 +++ devel/libdsp/Makefile Tue Dec 11 03:00:46 2001 @@ -7,11 +7,11 @@ # PORTNAME= libdsp -PORTVERSION= 4.1.1 +PORTVERSION= 4.2.0 CATEGORIES= devel audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= libdsp-src-${PORTVERSION} +DISTNAME= ${PORTNAME}-src-${PORTVERSION} MAINTAINER= ports@FreeBSD.org @@ -19,13 +19,13 @@ BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool WRKSRC= ${WRKDIR}/libdsp-src/${PORTNAME:S/dsp/DSP/}-${PORTVERSION} -MAKEFILE= Makefile.FreeBSD -INLINE_VER= 1.2.3 + USE_GMAKE= yes +MAKE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" MKDIR="${MKDIR}" \ + INLINE_VER="${INLINE_VER}" +MAKEFILE= Makefile.FreeBSD INSTALLS_SHLIB= yes -post-patch: - @${PERL} -pi -e "s|%%INLINE_VER%%|${INLINE_VER}|g ; \ - s|install -m 644|${INSTALL_DATA}|g" ${WRKSRC}/${MAKEFILE} +INLINE_VER= 1.2.4 .include diff -urN /usr/ports/devel/libdsp/distinfo devel/libdsp/distinfo --- /usr/ports/devel/libdsp/distinfo Mon Sep 10 19:28:52 2001 +++ devel/libdsp/distinfo Tue Dec 11 02:05:24 2001 @@ -1 +1 @@ -MD5 (libdsp-src-4.1.1.tar.gz) = 8c4dbba87b622319e652a8f42bbe4787 +MD5 (libdsp-src-4.2.0.tar.gz) = 985dada301ea0e7b3204c65d3e673a47 diff -urN /usr/ports/devel/libdsp/files/patch-Makefile.FreeBSD devel/libdsp/files/patch-Makefile.FreeBSD --- /usr/ports/devel/libdsp/files/patch-Makefile.FreeBSD Sun Sep 9 21:09:32 2001 +++ devel/libdsp/files/patch-Makefile.FreeBSD Tue Dec 11 03:02:20 2001 @@ -1,19 +1,81 @@ ---- Makefile.FreeBSD.orig Sun Sep 9 19:52:53 2001 -+++ Makefile.FreeBSD Sun Sep 9 19:54:01 2001 -@@ -17,14 +17,12 @@ +--- Makefile.FreeBSD.orig Sat Oct 20 09:17:16 2001 ++++ Makefile.FreeBSD Tue Dec 11 03:01:44 2001 +@@ -17,15 +17,8 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +-CC = gcc -CXX = g++ --CXXFLAGS = -mcpu=pentium -march=pentium -O6 -fomit-frame-pointer -ffast-math -funroll-loops -malign-loops=5 -malign-jumps=5 -malign-functions=5 -mpreferred-stack-boundary=5 -mfancy-math-387 -Wall -Werror #-g -+CXXFLAGS += -O6 -fomit-frame-pointer -ffast-math -funroll-loops -malign-loops=5 -malign-jumps=5 -malign-functions=5 -mpreferred-stack-boundary=5 -mfancy-math-387 -Wall -Werror #-g - DEFS = -D_REENTRANT -D_THREAD_SAFE -DBSDSYS -DX86 -DUSE_MEMMOVE +- +-CFLAGS = -mcpu=i586 -march=i586 -O6 -fomit-frame-pointer -ffast-math -funroll-loops -malign-loops=5 -malign-jumps=5 -malign-functions=5 -mpreferred-stack-boundary=5 -mfancy-math-387 -Wall -Werror -pthread #-g +-OPTFLAGS = -march=i686 -O3 -ffast-math -funroll-loops -malign-loops=5 -malign-jumps=5 -malign-functions=5 -mpreferred-stack-boundary=5 -mfancy-math-387 -Wall -Werror #-g +-CXXFLAGS = $(CFLAGS) +- + # thread safety +-DEFS = -D_REENTRANT -D_THREAD_SAFE ++#DEFS = -D_REENTRANT -D_THREAD_SAFE + # BSD system + DEFS += -DBSDSYS + # define if your compiler/c-library is ISO C 9x standard compliant +@@ -37,15 +30,15 @@ + # x86 architecture specific optimizations + #DEFS += -DDSP_X86 + -INCS = -I. -I/usr/local/include -+INCS = -I. -I../Inlines-%%INLINE_VER%% - LDFLAGS = #-g ++INCS = -I. -I../Inlines-${INLINE_VER} + +-LDFLAGS = -pthread #-g ++#LDFLAGS = -pthread #-g + LIBS = -lm #-ldrfftw -ldfftw + LIBTOOL = libtool + -PREFIX = /usr/local ++PREFIX ?= /usr/local + + VERSION = 1:4:0 + +@@ -113,24 +106,24 @@ + $(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -rpath $(PREFIX)/lib -version-info $(VERSION) -o libdsp.la $(LOBJS) $(LIBS) - VERSION = 1:1:0 + install: libdsp.la +- install -m 755 -d $(PREFIX)/include/dsp +- install -m 644 dsp/DSPConfig.hh $(PREFIX)/include/dsp +- install -m 644 dsp/DSPOp.hh $(PREFIX)/include/dsp +- install -m 644 dsp/DSPVector.hh $(PREFIX)/include/dsp +- install -m 644 dsp/Decimator.hh $(PREFIX)/include/dsp +- install -m 644 dsp/FFTDecimator.hh $(PREFIX)/include/dsp +- install -m 644 dsp/Filter.hh $(PREFIX)/include/dsp +- install -m 644 dsp/Filter2.hh $(PREFIX)/include/dsp +- install -m 644 dsp/FIRDecimator.hh $(PREFIX)/include/dsp +- install -m 644 dsp/Hankel.hh $(PREFIX)/include/dsp +- install -m 644 dsp/ReBuffer.hh $(PREFIX)/include/dsp +- install -m 644 dsp/ReBuffer2.hh $(PREFIX)/include/dsp +- install -m 644 dsp/ReBuffer3.hh $(PREFIX)/include/dsp +- install -m 644 dsp/RecDecimator.hh $(PREFIX)/include/dsp +- install -m 644 dsp/Transform4.hh $(PREFIX)/include/dsp +- install -m 644 dsp/Transform8.hh $(PREFIX)/include/dsp +- install -m 644 dsp/TransformS.hh $(PREFIX)/include/dsp +- install -m 644 dsp/X86.h $(PREFIX)/include/dsp ++ ${MKDIR} $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/DSPConfig.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/DSPOp.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/DSPVector.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/Decimator.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/FFTDecimator.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/Filter.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/Filter2.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/FIRDecimator.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/Hankel.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/ReBuffer.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/ReBuffer2.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/ReBuffer3.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/RecDecimator.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/Transform4.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/Transform8.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/TransformS.hh $(PREFIX)/include/dsp ++ ${BSD_INSTALL_DATA} dsp/X86.h $(PREFIX)/include/dsp + $(LIBTOOL) --mode=install install libdsp.la $(PREFIX)/lib + libdsp.dep: $(SRCS) diff -urN /usr/ports/devel/libdsp/pkg-plist devel/libdsp/pkg-plist --- /usr/ports/devel/libdsp/pkg-plist Mon Sep 10 19:28:52 2001 +++ devel/libdsp/pkg-plist Tue Dec 11 02:53:48 2001 @@ -3,9 +3,9 @@ include/dsp/DSPVector.hh include/dsp/Decimator.hh include/dsp/FFTDecimator.hh +include/dsp/FIRDecimator.hh include/dsp/Filter.hh include/dsp/Filter2.hh -include/dsp/FIRDecimator.hh include/dsp/Hankel.hh include/dsp/ReBuffer.hh include/dsp/ReBuffer2.hh @@ -14,8 +14,9 @@ include/dsp/Transform4.hh include/dsp/Transform8.hh include/dsp/TransformS.hh -@dirrm include/dsp +include/dsp/X86.h lib/libdsp.a lib/libdsp.la lib/libdsp.so lib/libdsp.so.1 +@dirrm include/dsp >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:11:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32C2937B426 for ; Sat, 15 Dec 2001 00:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A1J94283; Sat, 15 Dec 2001 00:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBAAE37B416 for ; Sat, 15 Dec 2001 00:03:20 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF83Kw90491; Sat, 15 Dec 2001 00:03:20 -0800 (PST) (envelope-from nobody) Message-Id: <200112150803.fBF83Kw90491@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:03:20 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32855: Update port: graphics/gnofract4d to 1.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32855 >Category: ports >Synopsis: Update port: graphics/gnofract4d to 1.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.6 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/gnofract4d/Makefile graphics/gnofract4d/Makefile --- /usr/ports/graphics/gnofract4d/Makefile Wed Jun 13 01:08:34 2001 +++ graphics/gnofract4d/Makefile Wed Dec 12 07:23:26 2001 @@ -6,7 +6,7 @@ # PORTNAME= gnofract4d -PORTVERSION= 1.5 +PORTVERSION= 1.6 CATEGORIES= graphics gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -19,11 +19,13 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --enable-compile-warnings=no pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g' + @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure + @find ${WRKSRC} -name "*Makefile*" | xargs ${PERL} -pi -e \ + 's|-g -O2 -Wall -D_REENTRANT|\@CXXFLAGS\@|g ; \ + s|\$$\(datadir\)/gnome|\$$\(datadir\)|g ; \ + s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g' .include diff -urN /usr/ports/graphics/gnofract4d/distinfo graphics/gnofract4d/distinfo --- /usr/ports/graphics/gnofract4d/distinfo Wed Jun 13 01:08:34 2001 +++ graphics/gnofract4d/distinfo Wed Dec 12 04:58:14 2001 @@ -1 +1 @@ -MD5 (gnofract4d-1.5.tar.gz) = fa5dc6a89a79956d0f0b9bf629a14765 +MD5 (gnofract4d-1.6.tar.gz) = b1ac3f960bb9036de8b1104e7e046005 diff -urN /usr/ports/graphics/gnofract4d/pkg-plist graphics/gnofract4d/pkg-plist --- /usr/ports/graphics/gnofract4d/pkg-plist Wed Jun 13 01:08:34 2001 +++ graphics/gnofract4d/pkg-plist Wed Dec 12 07:40:37 2001 @@ -4,18 +4,40 @@ share/gnome/help/gnofract4d/C/docbook.css share/gnome/help/gnofract4d/C/filemenu.html share/gnome/help/gnofract4d/C/gnofract4d.html -share/gnome/help/gnofract4d/C/julia_perturbed.gif -share/gnome/help/gnofract4d/C/julia_standard.gif -share/gnome/help/gnofract4d/C/mandelbrot_perturbed.gif -share/gnome/help/gnofract4d/C/mandelbrot_standard.gif +share/gnome/help/gnofract4d/C/hybrid.png +share/gnome/help/gnofract4d/C/julia_perturbed.png +share/gnome/help/gnofract4d/C/julia_standard.png +share/gnome/help/gnofract4d/C/mandelbrot_perturbed.png +share/gnome/help/gnofract4d/C/mandelbrot_standard.png share/gnome/help/gnofract4d/C/maths.html share/gnome/help/gnofract4d/C/mouse.html share/gnome/help/gnofract4d/C/preferences.html +share/gnome/help/gnofract4d/C/stylesheet-images/caution.gif +share/gnome/help/gnofract4d/C/stylesheet-images/home.gif +share/gnome/help/gnofract4d/C/stylesheet-images/important.gif +share/gnome/help/gnofract4d/C/stylesheet-images/next.gif +share/gnome/help/gnofract4d/C/stylesheet-images/note.gif +share/gnome/help/gnofract4d/C/stylesheet-images/prev.gif +share/gnome/help/gnofract4d/C/stylesheet-images/tip.gif +share/gnome/help/gnofract4d/C/stylesheet-images/toc-blank.gif +share/gnome/help/gnofract4d/C/stylesheet-images/toc-minus.gif +share/gnome/help/gnofract4d/C/stylesheet-images/toc-plus.gif +share/gnome/help/gnofract4d/C/stylesheet-images/up.gif +share/gnome/help/gnofract4d/C/stylesheet-images/warning.gif share/gnome/help/gnofract4d/C/toolbar.html share/gnome/help/gnofract4d/C/topic.dat share/gnome/help/gnofract4d/C/types.html -share/gnome/help/gnofract4d/C/xw_plane.gif +share/gnome/help/gnofract4d/C/xw_plane.png share/gnome/maps/gnofract4d/4zebbowx.map +share/gnome/maps/gnofract4d/Digiorg1.map +share/gnome/maps/gnofract4d/Gallet02.map +share/gnome/maps/gnofract4d/Gallet04.map +share/gnome/maps/gnofract4d/Gallet12.map +share/gnome/maps/gnofract4d/Gallet13.map +share/gnome/maps/gnofract4d/Skydye03.map +share/gnome/maps/gnofract4d/Skydye06.map +share/gnome/maps/gnofract4d/Skydye07.map +share/gnome/maps/gnofract4d/Wizzl011.map share/gnome/maps/gnofract4d/anenome.map share/gnome/maps/gnofract4d/basic.map share/gnome/maps/gnofract4d/bgold.map @@ -33,6 +55,7 @@ share/gnome/maps/gnofract4d/coldfire.map share/gnome/maps/gnofract4d/copper.map share/gnome/maps/gnofract4d/crwn.map +share/gnome/maps/gnofract4d/damien2.map share/gnome/maps/gnofract4d/egan1.map share/gnome/maps/gnofract4d/fadern1.map share/gnome/maps/gnofract4d/fadern2.map @@ -53,6 +76,7 @@ share/gnome/maps/gnofract4d/lace.map share/gnome/maps/gnofract4d/lite.map share/gnome/maps/gnofract4d/litnin1.map +share/gnome/maps/gnofract4d/lkmtch02.map share/gnome/maps/gnofract4d/longs.map share/gnome/maps/gnofract4d/lyapunov.map share/gnome/maps/gnofract4d/mandmap.map @@ -83,16 +107,12 @@ share/gnome/maps/gnofract4d/wine.map share/gnome/maps/gnofract4d/world.map share/gnome/pixmaps/gnofract4d/deepen_now.png -share/gnome/pixmaps/gnofract4d/deepen_now_1.png -share/gnome/pixmaps/gnofract4d/filmstrip.png -share/gnome/pixmaps/gnofract4d/full_screen.png share/gnome/pixmaps/gnofract4d/gnofract4d-logo.png -share/gnome/pixmaps/gnofract4d/pause.png -share/gnome/pixmaps/gnofract4d/ptest.png share/locale/fr/LC_MESSAGES/gnofract4d.mo @dirrm share/gnome/pixmaps/gnofract4d @dirrm share/gnome/maps/gnofract4d @dirrm share/gnome/maps +@dirrm share/gnome/help/gnofract4d/C/stylesheet-image @dirrm share/gnome/help/gnofract4d/C/images @dirrm share/gnome/help/gnofract4d/C @dirrm share/gnome/help/gnofract4d >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:11:28 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAF4137B422 for ; Sat, 15 Dec 2001 00:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A1S94271; Sat, 15 Dec 2001 00:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F14B837B416 for ; Sat, 15 Dec 2001 00:02:34 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF82Yl90462; Sat, 15 Dec 2001 00:02:34 -0800 (PST) (envelope-from nobody) Message-Id: <200112150802.fBF82Yl90462@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:02:34 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32854: Update port: graphics/gd (fix ports/31451) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32854 >Category: ports >Synopsis: Update port: graphics/gd (fix ports/31451) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Support CFLAGS properly - Fix compilation error when both FreeType and FreeType2 exist - Fix Xpm support - Use freetype-config to find include path and library path This PR supersedes ports/31451. ports/26104 shoule also be closed with this PR. >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/gd/Makefile graphics/gd/Makefile --- /usr/ports/graphics/gd/Makefile Fri Oct 26 23:11:28 2001 +++ graphics/gd/Makefile Mon Dec 10 21:51:09 2001 @@ -7,7 +7,7 @@ PORTNAME= gd PORTVERSION= 1.8.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES+= graphics MASTER_SITES= http://www.boutell.com/gd/http/ \ ftp://ftp.boutell.com/pub/boutell/gd/ \ @@ -19,37 +19,42 @@ MAINTAINER?= ports@FreeBSD.org +BUILD_DEPENDS= freetype-config:${PORTSDIR}/print/freetype2 # XXX +LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ + png.5:${PORTSDIR}/graphics/png \ + freetype.7:${PORTSDIR}/print/freetype2 .if !exists(/usr/bin/bzip2) BUILD_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2 .endif -LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - freetype:${PORTSDIR}/print/freetype2 -USE_FREETYPE2= yes +FREETYPE_CONFIG?= ${LOCALBASE}/bin/freetype-config + +MAKE_ENV= FREETYPE_CONFIG="${FREETYPE_CONFIG}" +INSTALLS_SHLIB= yes .if defined(WITH_X11) -USE_XLIB= yes USE_XPM= yes .endif -INSTALLS_SHLIB= yes - -DOCS= index.html +pre-everything:: +.if !defined(WITH_X11) + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with Xpm support," + @${ECHO_MSG} "hst Ctrl-C right now and use \"make WITH_X11=yes\"" + @${ECHO_MSG} +.endif post-extract: - bzip2 -d < ${_DISTDIR}/gd_gif_in.c.bz2 > ${WRKSRC}/gd_gif_in.c + @bzip2 -dc ${DISTDIR}/${DIST_SUBDIR}/gd_gif_in.c.bz2 \ + > ${WRKSRC}/gd_gif_in.c -pre-everything: -.if !defined(WITH_X11) - @${ECHO_MSG} "If you want to compile in X support use " - @${ECHO_MSG} "'make -DWITH_X11' instead" -.endif +post-patch: + @${PERL} -pi -e 's|||g' ${WRKSRC}/gdcache.h post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/index.html ${DOCSDIR} .endif .include diff -urN /usr/ports/graphics/gd/files/patch-ac graphics/gd/files/patch-ac --- /usr/ports/graphics/gd/files/patch-ac Tue Aug 21 10:30:32 2001 +++ graphics/gd/files/patch-ac Tue Oct 23 20:08:09 2001 @@ -1,6 +1,6 @@ ---- Makefile.orig Thu Feb 22 09:03:43 2001 -+++ Makefile Sat Feb 24 16:25:23 2001 -@@ -3,11 +3,11 @@ +--- Makefile.orig Fri Feb 23 02:03:43 2001 ++++ Makefile Tue Oct 23 19:47:37 2001 +@@ -3,21 +3,28 @@ #If you do not have gcc, change the setting for COMPILER, but you must #use an ANSI standard C compiler (NOT the old SunOS 4.1.3 cc #compiler; get gcc if you are still using it). @@ -14,15 +14,18 @@ #If you don't have FreeType, libjpeg and/or Xpm installed, including the #header files, uncomment this (default). You really must install -@@ -16,8 +16,14 @@ + #libpng and zlib to get anywhere if you wish to create PNG images. +-CFLAGS=-O -DHAVE_LIBPNG -DHAVE_LIBJPEG ++#CFLAGS=-O -DHAVE_LIBPNG -DHAVE_LIBJPEG #If you do have FreeType, libjpeg and/or Xpm fully installed, uncomment a #variation of this and comment out the line above. See also LIBS below. -#CFLAGS=-O -DHAVE_LIBXPM -DHAVE_LIBPNG -DHAVE_LIBJPEG \ -# -DHAVE_LIBFREETYPE -DHAVE_LIBTTF -+CFLAGS=-O -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE ++CFLAGS+=-DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE ++ +.if defined(WITH_X11) -+CFLAGS+=-DHAVE_LIBXPM ++CFLAGS+=-DHAVE_XPM +.endif + +.if defined(JISX0208) @@ -31,12 +34,12 @@ #To use the old FreeType 1.x library, add this additional #define #to the line above -@@ -30,13 +36,15 @@ +@@ -30,13 +37,15 @@ #Some systems are very picky about link order. They don't all agree #on the right order, either. -LIBS=-lgd -lpng -lz -lm -+LIBS=-lgd -lpng -lz -ljpeg -lfreetype -lm ++LIBS=-lgd -lpng -lz -ljpeg -lm `$(FREETYPE_CONFIG) --libs` #If you do have FreeType, JPEG and/or Xpm fully installed, uncomment a #variation of this and comment out the line above. Note that @@ -49,23 +52,29 @@ #Note: for Freetype 1.x, use DHAVE_LIBTTF and -lttf instead. -@@ -45,7 +53,8 @@ +@@ -45,7 +54,11 @@ #ensure that the version of gd you are installing is used, and not an #older release in your directory tree somewhere. -INCLUDEDIRS=-I. -I/usr/include/freetype2 -I/usr/include/X11 -I/usr/X11R6/include/X11 -I/usr/local/include -+INCLUDEDIRS=-I. -I${LOCALBASE}/include/freetype2 -I${LOCALBASE}/include -+INCLUDEDIRS+=-I${X11BASE}/include/X11 -I${X11BASE}/include/freetype2 -I${X11BASE}/include ++INCLUDEDIRS=-I. `$(FREETYPE_CONFIG) --cflags` -I${LOCALBASE}/include ++ ++.if defined(WITH_X11) ++INCLUDEDIRS+=-I${X11BASE}/include/X11 -I${X11BASE}/include ++.endif #Typical install locations for freetype, zlib, xpm and libpng libraries. #If yours are somewhere else, other than a standard location -@@ -55,16 +66,17 @@ +@@ -55,16 +68,20 @@ #on your system can't cause conflicts while building a new one. #This line shouldn't hurt if you don't actually have some of the #optional libraries and directories. -LIBDIRS=-L. -L/usr/local/lib -L/usr/lib/X11 -L/usr/X11R6/lib +LIBDIRS=-L. -L${LOCALBASE}/lib -Wl,--rpath,${LOCALBASE}/lib ++ ++.if defined(WITH_X11) +LIBDIRS+=-L${X11BASE}/lib -Wl,--rpath,${X11BASE}/lib ++.endif #Location where libgd.a should be installed by "make install". -INSTALL_LIB=/usr/local/lib @@ -81,13 +90,13 @@ # # -@@ -74,34 +88,44 @@ +@@ -74,34 +91,44 @@ VERSION=1.8.4 -CC=$(COMPILER) $(INCLUDEDIRS) -LINK=$(CC) $(LIBDIRS) $(LIBS) -+CC+=$(INCLUDEDIRS) ++CFLAGS+=$(INCLUDEDIRS) +#LINK=$(CC) $(LIBDIRS) $(LIBS) PROGRAMS=$(BIN_PROGRAMS) $(TEST_PROGRAMS) @@ -97,6 +106,8 @@ -all: libgd.a $(PROGRAMS) +SOVER=2 ++ ++.SUFFIXES: .c .so .o -install: libgd.a $(BIN_PROGRAMS) - sh ./install-item 644 libgd.a $(INSTALL_LIB)/libgd.a @@ -116,8 +127,6 @@ - sh ./install-item 644 gdfontmb.h $(INSTALL_INCLUDE)/gdfontmb.h - sh ./install-item 644 gdfonts.h $(INSTALL_INCLUDE)/gdfonts.h - sh ./install-item 644 gdfontt.h $(INSTALL_INCLUDE)/gdfontt.h -+.SUFFIXES: .c .so .o -+ +.c.so: + $(CC) -fpic -DPIC $(CFLAGS) -o $@ -c $< + @@ -147,7 +156,7 @@ gddemo: gddemo.o libgd.a $(CC) gddemo.o -o gddemo $(LIBDIRS) $(LIBS) -@@ -138,18 +162,21 @@ +@@ -138,18 +165,21 @@ gdtestttf: gdtestttf.o libgd.a $(CC) --verbose gdtestttf.o -o gdtestttf $(LIBDIRS) $(LIBS) diff -urN /usr/ports/graphics/gd/files/patch-malloc graphics/gd/files/patch-malloc --- /usr/ports/graphics/gd/files/patch-malloc Fri Aug 24 21:17:08 2001 +++ graphics/gd/files/patch-malloc Thu Jan 1 09:00:00 1970 @@ -1,5 +0,0 @@ ---- gdcache.h Tue Feb 6 14:44:02 2001 -+++ gdcache.h Fri Aug 24 08:10:41 2001 -@@ -43 +43 @@ --#include -+#include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:11:31 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 59D3537B42A for ; Sat, 15 Dec 2001 00:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A2Q94304; Sat, 15 Dec 2001 00:10:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC8D637B417 for ; Sat, 15 Dec 2001 00:04:29 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF84Tx90548; Sat, 15 Dec 2001 00:04:29 -0800 (PST) (envelope-from nobody) Message-Id: <200112150804.fBF84Tx90548@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:04:29 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32857: Update port: graphics/pngcrush to 1.5.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32857 >Category: ports >Synopsis: Update port: graphics/pngcrush to 1.5.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.5.8 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/pngcrush/Makefile graphics/pngcrush/Makefile --- /usr/ports/graphics/pngcrush/Makefile Wed Oct 10 19:54:50 2001 +++ graphics/pngcrush/Makefile Sat Dec 15 14:56:23 2001 @@ -6,7 +6,7 @@ # PORTNAME= pngcrush -PORTVERSION= 1.5.7 +PORTVERSION= 1.5.8 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= pmt diff -urN /usr/ports/graphics/pngcrush/distinfo graphics/pngcrush/distinfo --- /usr/ports/graphics/pngcrush/distinfo Wed Oct 10 19:54:51 2001 +++ graphics/pngcrush/distinfo Sat Dec 15 14:54:08 2001 @@ -1 +1 @@ -MD5 (pngcrush-1.5.7.tar.gz) = 004bf81a060e7c3980630b9fb2857294 +MD5 (pngcrush-1.5.8.tar.gz) = 1c6aa5408cd145d3a05ec3f6114722be >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:11:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 669B437B430 for ; Sat, 15 Dec 2001 00:10:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A2n94322; Sat, 15 Dec 2001 00:10:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83F7037B405 for ; Sat, 15 Dec 2001 00:06:38 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF86cR93950; Sat, 15 Dec 2001 00:06:38 -0800 (PST) (envelope-from nobody) Message-Id: <200112150806.fBF86cR93950@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:06:38 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32859: Update port: lang/smalltalk to 1.95.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32859 >Category: ports >Synopsis: Update port: lang/smalltalk to 1.95.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.95.7 >How-To-Repeat: >Fix: diff -urN /usr/ports/lang/smalltalk/Makefile lang/smalltalk/Makefile --- /usr/ports/lang/smalltalk/Makefile Fri Nov 30 22:47:43 2001 +++ lang/smalltalk/Makefile Sat Dec 15 14:46:14 2001 @@ -6,7 +6,7 @@ # PORTNAME= smalltalk -PORTVERSION= 1.95.6 +PORTVERSION= 1.95.7 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -15,8 +15,8 @@ USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_TARGET= # none -CONFIGURE_ARGS= --build=${ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= MAKEINFO='makeinfo --no-split' +CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} MAN1= gst.1 @@ -25,7 +25,7 @@ pre-patch: @find ${WRKSRC} -name 'Makefile.in' | xargs ${PERL} -pi -e \ - 's| -release \$$\(VERSION\)| -avoid-version|g ; \ - s|\@MAKEINFO\@|\@MAKEINFO\@ --no-split|g' + 's| -release \$$\(VERSION\)| -avoid-version|g' + @${PERL} -pi -e 's|||g' ${WRKSRC}/ltdl/ltdl.c .include diff -urN /usr/ports/lang/smalltalk/distinfo lang/smalltalk/distinfo --- /usr/ports/lang/smalltalk/distinfo Fri Nov 30 22:47:43 2001 +++ lang/smalltalk/distinfo Sat Dec 15 14:35:37 2001 @@ -1 +1 @@ -MD5 (smalltalk-1.95.6.tar.gz) = a527071ed6f7e5f67dc2d9891b916a5b +MD5 (smalltalk-1.95.7.tar.gz) = 5f04fda7b776df832e72138918cb81f2 diff -urN /usr/ports/lang/smalltalk/pkg-plist lang/smalltalk/pkg-plist --- /usr/ports/lang/smalltalk/pkg-plist Fri Nov 30 22:47:43 2001 +++ lang/smalltalk/pkg-plist Sat Dec 15 15:10:53 2001 @@ -233,6 +233,8 @@ share/smalltalk/web/rename.jpg share/smalltalk/web/test.st share/smalltalk/web/top.jpg +share/smalltalk/xml/Id-DOM.st +share/smalltalk/xml/Id-XWalker.st share/smalltalk/xml/XML.st @dirrm share/smalltalk/xml @dirrm share/smalltalk/web >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:11:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A92C237B41B for ; Sat, 15 Dec 2001 00:10:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A2l94331; Sat, 15 Dec 2001 00:10:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8C7737B41A for ; Sat, 15 Dec 2001 00:07:05 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF875a93994; Sat, 15 Dec 2001 00:07:05 -0800 (PST) (envelope-from nobody) Message-Id: <200112150807.fBF875a93994@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:07:05 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32860: Update port: mail/nail to 9.29 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32860 >Category: ports >Synopsis: Update port: mail/nail to 9.29 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 9.29 >How-To-Repeat: >Fix: diff -urN /usr/ports/mail/nail/Makefile mail/nail/Makefile --- /usr/ports/mail/nail/Makefile Mon Nov 5 22:46:23 2001 +++ mail/nail/Makefile Mon Dec 10 21:12:57 2001 @@ -6,7 +6,7 @@ # PORTNAME= nail -PORTVERSION= 9.28 +PORTVERSION= 9.29 CATEGORIES= mail MASTER_SITES= http://omnibus.ruf.uni-freiburg.de/~gritter/archive/nail/ diff -urN /usr/ports/mail/nail/distinfo mail/nail/distinfo --- /usr/ports/mail/nail/distinfo Mon Nov 5 22:46:23 2001 +++ mail/nail/distinfo Mon Dec 10 21:21:05 2001 @@ -1 +1 @@ -MD5 (nail-9.28.tar.gz) = cc55854fb7a5bc17827d52dd6299cf02 +MD5 (nail-9.29.tar.gz) = 2d60eff6c89ba1070ad809be3af1edcf >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:12: 4 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 956DC37B421 for ; Sat, 15 Dec 2001 00:10:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A3G94367; Sat, 15 Dec 2001 00:10:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CD4437B41A for ; Sat, 15 Dec 2001 00:09:15 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF89Fi94131; Sat, 15 Dec 2001 00:09:15 -0800 (PST) (envelope-from nobody) Message-Id: <200112150809.fBF89Fi94131@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:09:15 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32864: Update port: x11-wm/swm to 1.3.2 (fix ports/31303) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32864 >Category: ports >Synopsis: Update port: x11-wm/swm to 1.3.2 (fix ports/31303) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.3.2 New file: files/swm.conf Remove file: files/patch-Makefile This PR supersedes ports/31303. >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/swm/Makefile x11-wm/swm/Makefile --- /usr/ports/x11-wm/swm/Makefile Thu May 3 16:15:40 2001 +++ x11-wm/swm/Makefile Sat Dec 15 14:05:17 2001 @@ -6,66 +6,73 @@ # PORTNAME= swm -PORTVERSION= 1.2.5 +PORTVERSION= 1.3.2 CATEGORIES= x11-wm MASTER_SITES= http://www.informatik.hu-berlin.de/~sperling/prog/ EXTRACT_SUFX= -src.tgz MAINTAINER= trevor@FreeBSD.org -BINS= swm swmbg swmpanel swmswitch +BINS= swm swmbg swmswitch DOCDIR= share/doc/${PORTNAME} -DOCS= AUTHORS COMPILE_PARAMS COPYING ChangeLog LIESMICH README \ - README.iPaq swm.lsm -EXAMPLES= startswm.kde1 startswm.kde2 -MAN1= swm.1 swmbg.1 +DOCS= AUTHORS FEATURES FOR_MINIMALISTS LIESMICH README SWM-FAQ \ + X-SPEEDUP-FAQ updated +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" XROOT="${X11BASE}" +MAKEFILE= Makefile-xpm +MAN1= swm.1 swmbg.1 swmswitch.1 PLIST= ${WRKDIR}/pkg-plist SCRIPTS= startswm USE_GMAKE= yes USE_XPM= yes USE_X_PREFIX= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-src/src +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src + +post-patch: + ${CP} ${FILESDIR}/swm.conf ${WRKSRC} + +post-build: + cd ${WRKSRC}/../swmbg && ${CC} ${CFLAGS} -I${X11BASE}/include *.c \ + -o ${WRKSRC}/swmbg -lX11 -lXext -lXpm -L${X11BASE}/lib + cd ${WRKSRC}/../swmswitch && ${CC} ${CFLAGS} -I${X11BASE}/include *.c \ + -o ${WRKSRC}/swmswitch -lX11 -L${X11BASE}/lib pre-install: ${RM} -f ${PLIST} - for i in ${BINS} ${SCRIPTS}; \ - do ${ECHO} bin/$${i} >> ${PLIST}; \ - done +.for i in ${BINS} ${SCRIPTS} + ${ECHO} bin/${i} >> ${PLIST} +.endfor .if !defined(NOPORTDOCS) - for i in ${DOCS}; \ - do ${ECHO} ${DOCDIR}/$${i} >> ${PLIST}; \ - done - for i in 1 2 3; \ - do ${ECHO} ${DOCDIR}/examples/.swm/button$${i} >> ${PLIST}; \ - done - for i in ${EXAMPLES}; \ - do ${ECHO} ${DOCDIR}/examples/$${i} >> ${PLIST}; \ - done +.for i in ${DOCS} + ${ECHO} ${DOCDIR}/${i} >> ${PLIST} +.endfor +.for i in 1 2 3 + ${ECHO} ${DOCDIR}/examples/.swm/button${i} >> ${PLIST} +.endfor ${ECHO} @dirrm ${DOCDIR}/examples/.swm >> ${PLIST} ${ECHO} @dirrm ${DOCDIR}/examples >> ${PLIST} ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} .endif do-install: - for i in ${BINS}; \ - do ${INSTALL_PROGRAM} ${WRKSRC}/$${i} ${PREFIX}/bin; \ - done +.for i in ${BINS} + ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin +.endfor ${INSTALL_SCRIPT} ${WRKSRC}/${SCRIPTS} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/swm.1x ${PREFIX}/man/man1/swm.1 - ${INSTALL_MAN} ${WRKSRC}/swmbg.1x ${PREFIX}/man/man1/swmbg.1 -# ${INSTALL_MAN} ${WRKSRC}/swm-de.1x \ -# ${PREFIX}/man/de_DE.ISO_8859-1/man1/swm.1x + ${INSTALL_MAN} ${WRKSRC}/swm.1x ${MANPREFIX}/man/man1/swm.1 + ${INSTALL_MAN} ${WRKSRC}/../swmbg/swmbg.1x \ + ${MANPREFIX}/man/man1/swmbg.1 + ${INSTALL_MAN} ${WRKSRC}/../swmswitch/swmswitch.1x \ + ${MANPREFIX}/man/man1/swmswitch.1 .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/${DOCDIR} - cd ${WRKSRC}/../ && \ - ${CHMOD} -R 755 examples && \ - pax -r -w examples ${PREFIX}/${DOCDIR} -.for i in ${EXAMPLES} - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/${DOCDIR}/examples/ -.endfor - for i in ${DOCS}; \ - do ${INSTALL_DATA} ${WRKSRC}/../$${i} ${PREFIX}/${DOCDIR}; \ - done +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/../doc/${i} ${PREFIX}/${DOCDIR} +.endfor + ${MKDIR} ${PREFIX}/${DOCDIR}/examples/.swm +.for i in 1 2 3 + ${INSTALL_SCRIPT} ${WRKSRC}/../examples/.swm/button${i} \ + ${PREFIX}/${DOCDIR}/examples/.swm +.endfor .endif .include diff -urN /usr/ports/x11-wm/swm/distinfo x11-wm/swm/distinfo --- /usr/ports/x11-wm/swm/distinfo Thu May 3 16:15:40 2001 +++ x11-wm/swm/distinfo Sat Dec 15 14:07:05 2001 @@ -1 +1 @@ -MD5 (swm-1.2.5-src.tgz) = 586c3d467347c9f5066d9275085cf358 +MD5 (swm-1.3.2-src.tgz) = 7ebcb650493e276fdcf18109378f9865 diff -urN /usr/ports/x11-wm/swm/files/patch-Makefile x11-wm/swm/files/patch-Makefile --- /usr/ports/x11-wm/swm/files/patch-Makefile Fri Mar 30 18:18:30 2001 +++ x11-wm/swm/files/patch-Makefile Thu Jan 1 09:00:00 1970 @@ -1,21 +0,0 @@ ---- Makefile.orig Tue Mar 20 08:41:39 2001 -+++ Makefile Fri Mar 30 01:06:27 2001 -@@ -2,16 +2,15 @@ - # the swm.conf file. Normally, you should not have to edit this Makefile. - - # Only for testing & devellopment --CFLAGS = -O0 -Wall -g3 -ggdb -p -H - - # There should be nothing to edit below this line - # ----------------------------------------------------------------------------- --CC = gcc -+CC ?= gcc - - #LDPATH = -L$(XROOT)/lib -L/skiff/local/arm-linux/lib -L/skiff/local/lib/gcc-lib/arm-linux/2.95.2 - #INCLPATH = -I$(XROOT)/include -I/skiff/local/include -I/usr/include - --XROOT = /usr/X11R6 -+XROOT = ${X11BASE} - INCLPATH = -I$(XROOT)/include - LDPATH = -L$(XROOT)/lib - diff -urN /usr/ports/x11-wm/swm/files/swm.conf x11-wm/swm/files/swm.conf --- /usr/ports/x11-wm/swm/files/swm.conf Thu Jan 1 09:00:00 1970 +++ x11-wm/swm/files/swm.conf Fri Oct 12 05:50:28 2001 @@ -0,0 +1,24 @@ +#define SIGNALS +#define CURSORS +#define WINDOWCURSOR XC_left_ptr +#define BODYCURSOR XC_X_cursor +#define GNOME +#define KEYS +#define MWM +#define FONTS +#define DRAWTITLE +#define STD_IO +#define NUMBEROFDESKTOPS 4 +#define FONTS +#define TITLEBARFONT "*monotype-*-12*" +#define MAXIMIZE +#define SHADE +#define FOCUSNEW +#define PIXMAPS +#define CONFDIR "$HOME" +#define FOREGROUND "gold" +#define BACKGROUND "blue" +#define BORDERCOLOR "black" +#define TITLEBARHEIGHT 17 +#define MINWINDOWWIDTH 20 + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:12:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4DD4937B433 for ; Sat, 15 Dec 2001 00:10:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A3n94349; Sat, 15 Dec 2001 00:10:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD03C37B41B for ; Sat, 15 Dec 2001 00:08:06 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF886K94091; Sat, 15 Dec 2001 00:08:06 -0800 (PST) (envelope-from nobody) Message-Id: <200112150808.fBF886K94091@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:08:06 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32862: Update port: net/tn5250 to 0.16.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32862 >Category: ports >Synopsis: Update port: net/tn5250 to 0.16.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.16.3 Remove file: files/patch-aa files/patch-ab >How-To-Repeat: >Fix: diff -urN /usr/ports/net/tn5250/Makefile net/tn5250/Makefile --- /usr/ports/net/tn5250/Makefile Sat Aug 25 13:37:22 2001 +++ net/tn5250/Makefile Fri Dec 14 21:42:54 2001 @@ -6,16 +6,15 @@ # PORTNAME= tn5250 -PORTVERSION= 0.16.2 +PORTVERSION= 0.16.3 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org -USE_AUTOMAKE= yes -AUTOMAKE_ARGS= --include-deps -USE_LIBTOOL= yes +GNU_CONFIGURE= yes +CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --enable-os-dir=no INSTALLS_SHLIB= yes @@ -24,18 +23,24 @@ .if defined(WITH_SLANG) LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang PKGNAMESUFFIX= -slang -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS+= --with-slang +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -DUSE_CURSES" \ + LDFLAGS="-L${LOCALBASE}/lib -lcurses" +CONFIGURE_ARGS+= --with-slang=yes +.else +CONFIGURE_ARGS+= --with-slang=no .endif +pre-everything:: .if !defined(WITH_SLANG) -pre-everything: @${ECHO_MSG} @${ECHO_MSG} "If you want to compile with S/Lang support," @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SLANG=yes\"" @${ECHO_MSG} .endif + +post-patch: + @find ${WRKSRC}/src -name '*.[ch]' | xargs ${PERL} -pi -e \ + 's|||g' post-install: ${INSTALL_SCRIPT} ${WRKSRC}/freebsd/5250keys ${PREFIX}/bin diff -urN /usr/ports/net/tn5250/distinfo net/tn5250/distinfo --- /usr/ports/net/tn5250/distinfo Sat Aug 25 13:37:22 2001 +++ net/tn5250/distinfo Thu Dec 13 05:58:40 2001 @@ -1 +1 @@ -MD5 (tn5250-0.16.2.tar.gz) = 9508690ee431814b2a9ff731191879b1 +MD5 (tn5250-0.16.3.tar.gz) = bf09402b03e2fcef5bf591005d5c4130 diff -urN /usr/ports/net/tn5250/files/patch-aa net/tn5250/files/patch-aa --- /usr/ports/net/tn5250/files/patch-aa Tue Apr 18 09:11:35 2000 +++ net/tn5250/files/patch-aa Thu Jan 1 09:00:00 1970 @@ -1,10 +0,0 @@ ---- src/debug.c.orig Fri Feb 18 06:59:19 2000 -+++ src/debug.c Mon Apr 10 03:00:00 2000 -@@ -31,7 +31,6 @@ - #include - #include - #include --#include - - #include "utility.h" - #include "buffer.h" diff -urN /usr/ports/net/tn5250/files/patch-ab net/tn5250/files/patch-ab --- /usr/ports/net/tn5250/files/patch-ab Tue Apr 18 09:11:36 2000 +++ net/tn5250/files/patch-ab Thu Jan 1 09:00:00 1970 @@ -1,10 +0,0 @@ ---- src/tn5250-private.h.orig Sun Feb 13 11:32:48 2000 -+++ src/tn5250-private.h Mon Apr 10 03:00:00 2000 -@@ -29,7 +29,6 @@ - #include - #include - #include --#include - #include - #include - #include diff -urN /usr/ports/net/tn5250/files/patch-ac net/tn5250/files/patch-ac --- /usr/ports/net/tn5250/files/patch-ac Tue Dec 19 17:07:57 2000 +++ net/tn5250/files/patch-ac Thu Jan 1 09:00:00 1970 @@ -1,30 +0,0 @@ ---- configure.in.orig Wed Nov 1 04:09:17 2000 -+++ configure.in Sat Dec 16 14:58:58 2000 -@@ -56,6 +56,7 @@ - if test "$with_slang" != "no" - then - USE_SLANG=1 -+ AC_DEFINE_UNQUOTED(USE_CURSES,1) - AC_DEFINE_UNQUOTED(USE_SLANG,1) - else - USE_CURSES=1 -@@ -65,7 +66,7 @@ - USE_CURSES=1 - AC_DEFINE_UNQUOTED(USE_CURSES,1) - ]) --if test "$USE_CURSES" = "1" -+if test "$USE_CURSES" = "1" -o "$USE_SLANG" = "1" - then - AC_CHECK_LIB(ncurses, initscr) - if test "$ac_cv_lib_ncurses_initscr" != "yes" -@@ -103,7 +104,9 @@ - AC_DEFINE_UNQUOTED(attr_t,int) - fi - AC_MSG_RESULT($HAVE_ATTR_T) --else -+fi -+if test "$USE_SLANG" = "1" -+then - AC_CHECK_LIB(slang, SLang_init_tty) - if test "$ac_cv_lib_slang_SLang_init_tty" != "yes" - then diff -urN /usr/ports/net/tn5250/files/patch-ltmain.sh net/tn5250/files/patch-ltmain.sh --- /usr/ports/net/tn5250/files/patch-ltmain.sh Thu Jan 1 09:00:00 1970 +++ net/tn5250/files/patch-ltmain.sh Thu Dec 13 06:40:32 2001 @@ -0,0 +1,41 @@ +--- ltmain.sh.orig Sat Dec 8 06:29:06 2001 ++++ ltmain.sh Thu Dec 13 06:40:22 2001 +@@ -1043,14 +1043,14 @@ + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; +- *-*-openbsd*) ++ *-*-openbsd* | *-*-freebsd*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in +- *-*-openbsd*) ++ *-*-openbsd* | *-*-freebsd*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; +@@ -2441,7 +2441,7 @@ + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; +- *-*-openbsd*) ++ *-*-openbsd* | *-*-freebsd*) + # Do not include libc due to us having libc/libc_r. + ;; + *) +@@ -4210,10 +4210,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:12:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBCE937B41D for ; Sat, 15 Dec 2001 00:10:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A3K94340; Sat, 15 Dec 2001 00:10:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BE3137B419 for ; Sat, 15 Dec 2001 00:07:33 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF87XE94042; Sat, 15 Dec 2001 00:07:33 -0800 (PST) (envelope-from nobody) Message-Id: <200112150807.fBF87XE94042@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:07:33 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32861: Update port: net/maradns to 0.8.99 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32861 >Category: ports >Synopsis: Update port: net/maradns to 0.8.99 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.8.99 >How-To-Repeat: >Fix: diff -urN /usr/ports/net/maradns/Makefile net/maradns/Makefile --- /usr/ports/net/maradns/Makefile Sun Dec 9 07:14:22 2001 +++ net/maradns/Makefile Sat Dec 15 14:52:29 2001 @@ -6,7 +6,7 @@ # PORTNAME= maradns -PORTVERSION= 0.8.35 +PORTVERSION= 0.8.99 CATEGORIES= net MASTER_SITES= http://www.maradns.org/download/ \ ftp://ftp.nuug.no/pub/anders/distfiles/ diff -urN /usr/ports/net/maradns/distinfo net/maradns/distinfo --- /usr/ports/net/maradns/distinfo Sun Dec 9 07:14:23 2001 +++ net/maradns/distinfo Sat Dec 15 16:05:39 2001 @@ -1 +1 @@ -MD5 (maradns-0.8.35.tar.bz2) = a2a47a31bcd71d48e7b1bbe26123ba03 +MD5 (maradns-0.8.99.tar.bz2) = 8d9c902d4e102bdcc54fde8a3b3095b8 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:12:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A23337B434 for ; Sat, 15 Dec 2001 00:10:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A3Z94376; Sat, 15 Dec 2001 00:10:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECB4537B419 for ; Sat, 15 Dec 2001 00:09:46 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF89ki94198; Sat, 15 Dec 2001 00:09:46 -0800 (PST) (envelope-from nobody) Message-Id: <200112150809.fBF89ki94198@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:09:46 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32865: Update port: x11/xdialog to 2.0.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32865 >Category: ports >Synopsis: Update port: x11/xdialog to 2.0.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 2.0.4 >How-To-Repeat: >Fix: diff -urN /usr/ports/x11/xdialog/Makefile x11/xdialog/Makefile --- /usr/ports/x11/xdialog/Makefile Sun Dec 9 07:18:40 2001 +++ x11/xdialog/Makefile Fri Dec 14 22:31:19 2001 @@ -7,26 +7,21 @@ # PORTNAME= xdialog -PORTVERSION= 2.0.3 +PORTVERSION= 2.0.4 CATEGORIES= x11 MASTER_SITES= http://xdialog.free.fr/ DISTNAME= ${PORTNAME:S/x/X/}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt - USE_BZIP2= yes USE_GTK= yes USE_X_PREFIX= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt" + LDFLAGS="-L${LOCALBASE}/lib" MAN1= Xdialog.1 - -post-patch: - @${PERL} -pi -e 's|-L../lib -lgetopt||g' ${WRKSRC}/src/Makefile.in post-install: .if !defined(NOPORTDOCS) diff -urN /usr/ports/x11/xdialog/distinfo x11/xdialog/distinfo --- /usr/ports/x11/xdialog/distinfo Fri Jul 13 20:43:39 2001 +++ x11/xdialog/distinfo Fri Dec 14 22:29:32 2001 @@ -1 +1 @@ -MD5 (Xdialog-2.0.3.tar.bz2) = b215e64216cdb8ca7ce3ccda2dafd73f +MD5 (Xdialog-2.0.4.tar.bz2) = 59747a8aa4a36471c4aa8c44a0238d7c diff -urN /usr/ports/x11/xdialog/pkg-plist x11/xdialog/pkg-plist --- /usr/ports/x11/xdialog/pkg-plist Sun Dec 9 07:18:41 2001 +++ x11/xdialog/pkg-plist Sun Dec 9 11:18:00 2001 @@ -3,6 +3,7 @@ share/locale/es/LC_MESSAGES/Xdialog.mo share/locale/fr/LC_MESSAGES/Xdialog.mo share/locale/hu/LC_MESSAGES/Xdialog.mo +share/locale/pt_BR/LC_MESSAGES/Xdialog.mo share/locale/ru/LC_MESSAGES/Xdialog.mo %%PORTDOCS%%share/xdialog/2ranges.png %%PORTDOCS%%share/xdialog/authors.html @@ -23,6 +24,7 @@ %%PORTDOCS%%share/xdialog/fixedfont.png %%PORTDOCS%%share/xdialog/fselect.png %%PORTDOCS%%share/xdialog/gauge.png +%%PORTDOCS%%share/xdialog/gtk.html %%PORTDOCS%%share/xdialog/icon.png %%PORTDOCS%%share/xdialog/index.html %%PORTDOCS%%share/xdialog/infobox.png >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:12:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E431937B425 for ; Sat, 15 Dec 2001 00:10:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A3D94358; Sat, 15 Dec 2001 00:10:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 979CF37B41A for ; Sat, 15 Dec 2001 00:08:38 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF88cr94109; Sat, 15 Dec 2001 00:08:38 -0800 (PST) (envelope-from nobody) Message-Id: <200112150808.fBF88cr94109@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:08:38 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32863: Update port: x11-wm/aewm to 1.1.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32863 >Category: ports >Synopsis: Update port: x11-wm/aewm to 1.1.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.1.3 Remove file: files/patch-Makefile >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/aewm/Makefile x11-wm/aewm/Makefile --- /usr/ports/x11-wm/aewm/Makefile Thu Jan 11 10:35:35 2001 +++ x11-wm/aewm/Makefile Thu Dec 13 01:46:59 2001 @@ -6,15 +6,17 @@ # PORTNAME= aewm -PORTVERSION= 1.1.2 +PORTVERSION= 1.1.3 CATEGORIES= x11-wm MASTER_SITES= http://www.red-bean.com/~decklin/aewm/ MAINTAINER= trevor@FreeBSD.org +ALL_TARGET= aewm BINS= aewm DOCDIR= share/doc/${PORTNAME} DOCS= Changelog README TODO +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" XROOT="${X11BASE}" MAN1= aewm.1 PLIST= ${WRKDIR}/pkg-plist USE_GMAKE= yes @@ -23,20 +25,20 @@ pre-install: ${ECHO} bin/aewm > ${PLIST} .if !defined(NOPORTDOCS) - for i in ${DOCS}; \ - do ${ECHO} ${DOCDIR}/$${i} >> ${PLIST}; \ - done +.for i in ${DOCS} + ${ECHO} ${DOCDIR}/${i} >> ${PLIST} +.endfor ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} .endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/aewm ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/aewm.1x ${PREFIX}/man/man1/aewm.1 + ${INSTALL_MAN} ${WRKSRC}/aewm.1x ${MANPREFIX}/man/man1/aewm.1 .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/${DOCDIR} - for i in ${DOCS}; \ - do ${INSTALL_DATA} ${WRKSRC}/$${i} ${PREFIX}/${DOCDIR}; \ - done +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/${DOCDIR} +.endfor .endif .include diff -urN /usr/ports/x11-wm/aewm/distinfo x11-wm/aewm/distinfo --- /usr/ports/x11-wm/aewm/distinfo Thu Jan 11 10:35:35 2001 +++ x11-wm/aewm/distinfo Thu Dec 13 00:24:52 2001 @@ -1 +1 @@ -MD5 (aewm-1.1.2.tar.gz) = 3eca52e76888f768b96d17dcb84b57cc +MD5 (aewm-1.1.3.tar.gz) = 64943e7d938dd63687af0b4d27b7086e diff -urN /usr/ports/x11-wm/aewm/files/patch-Makefile x11-wm/aewm/files/patch-Makefile --- /usr/ports/x11-wm/aewm/files/patch-Makefile Mon Jan 8 06:52:37 2001 +++ x11-wm/aewm/files/patch-Makefile Thu Jan 1 09:00:00 1970 @@ -1,17 +0,0 @@ ---- Makefile.orig Mon Jan 1 21:43:57 2001 -+++ Makefile Sun Jan 7 13:40:03 2001 -@@ -25,12 +25,11 @@ - - # This should be set to the location of the X installation you want to - # compile against. --XROOT = /usr/X11R6 -+XROOT = $(X11BASE) - - # -------------------------------------------------------------------- - --CC = gcc --CFLAGS = -g -O2 -Wall -+CC ?= gcc - - BINDIR = $(DESTDIR)$(XROOT)/bin - MANDIR = $(DESTDIR)$(XROOT)/man/man1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:13:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41D7B37B42C for ; Sat, 15 Dec 2001 00:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8A2M94313; Sat, 15 Dec 2001 00:10:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B48337B417 for ; Sat, 15 Dec 2001 00:05:59 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF85xl93890; Sat, 15 Dec 2001 00:05:59 -0800 (PST) (envelope-from nobody) Message-Id: <200112150805.fBF85xl93890@freefall.freebsd.org> Date: Sat, 15 Dec 2001 00:05:59 -0800 (PST) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32858: Update port: graphics/tiff to 3.5.7 (fix ports/32407) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32858 >Category: ports >Synopsis: Update port: graphics/tiff to 3.5.7 (fix ports/32407) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 00:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.4-RELEASE i386 >Organization: >Environment: >Description: - Update to version 3.5.7 Remove file: files/patch-tools::fax2ps.c pkg-plist.nodocs This PR supersedes ports/32407. >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/tiff/Makefile graphics/tiff/Makefile --- /usr/ports/graphics/tiff/Makefile Sat Nov 24 06:27:53 2001 +++ graphics/tiff/Makefile Sat Dec 15 00:00:00 2001 @@ -8,10 +8,9 @@ # PORTNAME= tiff -PORTVERSION= 3.5.5 -PORTREVISION= 1 +PORTVERSION= 3.5.7 CATEGORIES= graphics -MASTER_SITES= ftp://ftp.onshore.com/pub/libtiff/ \ +MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \ http://www.libtiff.org/ DISTNAME= ${PORTNAME}-v${PORTVERSION} @@ -19,7 +18,6 @@ LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg -INSTALLS_SHLIB= yes HAS_CONFIGURE= yes CONFIGURE_ARGS= --with-ZIP --with-JPEG \ --with-DIR_BIN=${PREFIX}/bin \ @@ -27,86 +25,87 @@ --with-DIR_INC=${PREFIX}/include \ --with-DIR_MAN=${PREFIX}/man \ --with-CC="${CC}" --with-GCOPTS="${CFLAGS}" \ + --with-OPTIMIZER="" \ --with-DIRS_LIBINC=${LOCALBASE}/include \ --with-DIR_GZLIB=/usr/lib \ --with-DIR_JPEGLIB=${LOCALBASE}/lib \ --with-LIBGL=no --with-LIBIMAGE=no \ --with-INSTALL="${SH} ${WRKSRC}/port/install.sh" \ --noninteractive +INSTALLS_SHLIB= yes -.if defined(NOPORTDOCS) -PLIST= ${PKGDIR}/pkg-plist.nodocs -.else -CONFIGURE_ARGS+= --with-HTML --with-DIR_HTML=${PREFIX}/share/doc/tiff +.if !defined(NOPORTDOCS) +CONFIGURE_ARGS+= --with-HTML --with-DIR_HTML=${DOCSDIR} .endif MAN1= fax2ps.1 fax2tiff.1 gif2tiff.1 pal2rgb.1 ppm2tiff.1 ras2tiff.1 \ - rgb2ycbcr.1 sgi2tiff.1 thumbnail.1 tiff2bw.1 tiff2ps.1 tiffcmp.1 \ - tiffcp.1 tiffdither.1 tiffdump.1 tiffgt.1 tiffinfo.1 tiffmedian.1 \ - tiffsplit.1 tiffsv.1 + rgb2ycbcr.1 sgi2tiff.1 thumbnail.1 tiff2bw.1 tiff2ps.1 tiff2rgba.1 \ + tiffcmp.1 tiffcp.1 tiffdither.1 tiffdump.1 tiffgt.1 tiffinfo.1 \ + tiffmedian.1 tiffsplit.1 tiffsv.1 MAN3= TIFFClose.3t TIFFError.3t TIFFFlush.3t TIFFGetField.3t TIFFOpen.3t \ - TIFFPrintDirectory.3t TIFFquery.3t TIFFRGBAImage.3t \ - TIFFReadDirectory.3t TIFFReadEncodedStrip.3t TIFFReadEncodedTile.3t \ - TIFFReadRGBAImage.3t TIFFReadRGBAStrip.3t TIFFReadRGBATile.3t \ - TIFFReadRawStrip.3t TIFFReadRawTile.3t TIFFReadScanline.3t \ - TIFFReadTile.3t TIFFSetDirectory.3t TIFFSetField.3t TIFFWarning.3t \ + TIFFPrintDirectory.3t TIFFRGBAImage.3t TIFFReadDirectory.3t \ + TIFFReadEncodedStrip.3t TIFFReadEncodedTile.3t TIFFReadRGBAImage.3t \ + TIFFReadRGBAStrip.3t TIFFReadRGBATile.3t TIFFReadRawStrip.3t \ + TIFFReadRawTile.3t TIFFReadScanline.3t TIFFReadTile.3t \ + TIFFSetDirectory.3t TIFFSetField.3t TIFFWarning.3t \ TIFFWriteDirectory.3t TIFFWriteEncodedStrip.3t \ TIFFWriteEncodedTile.3t TIFFWriteRawStrip.3t TIFFWriteRawTile.3t \ TIFFWriteScanline.3t TIFFWriteTile.3t TIFFbuffer.3t TIFFcodec.3t \ - TIFFmemory.3t TIFFsize.3t TIFFstrip.3t TIFFswab.3t TIFFtile.3t \ - libtiff.3t -MLINKS= TIFFError.3t TIFFSetErrorHandler.3t \ - TIFFFlush.3t TIFFFlushData.3t \ - TIFFGetField.3t TIFFVGetField.3t \ - TIFFOpen.3t TIFFFdOpen.3t \ - TIFFRGBAImage.3t TIFFRGBAImageBegin.3t \ - TIFFRGBAImage.3t TIFFRGBAImageEnd.3t \ - TIFFRGBAImage.3t TIFFRGBAImageGet.3t \ - TIFFRGBAImage.3t TIFFRGBAImageOK.3t \ - TIFFSetDirectory.3t TIFFSetSubDirectory.3t \ - TIFFSetField.3t TIFFVSetField.3t \ - TIFFWarning.3t TIFFSetWarningHandler.3t \ - TIFFbuffer.3t TIFFReadBufferSetup.3t \ - TIFFbuffer.3t TIFFWriteBufferSetup.3t \ - TIFFcodec.3t TIFFFindCODEC.3t \ - TIFFcodec.3t TIFFRegisterCODEC.3t \ - TIFFcodec.3t TIFFUnRegisterCODEC.3t \ - TIFFmemory.3t TIFFfree.3t \ - TIFFmemory.3t TIFFmalloc.3t \ - TIFFmemory.3t TIFFmemcmp.3t \ - TIFFmemory.3t TIFFmemcpy.3t \ - TIFFmemory.3t TIFFmemset.3t \ - TIFFmemory.3t TIFFrealloc.3t \ - TIFFquery.3t TIFFCurrentDirectory.3t \ - TIFFquery.3t TIFFCurrentRow.3t \ - TIFFquery.3t TIFFCurrentStrip.3t \ - TIFFquery.3t TIFFCurrentTile.3t \ - TIFFquery.3t TIFFFileName.3t \ - TIFFquery.3t TIFFFileno.3t \ - TIFFquery.3t TIFFGetMode.3t \ - TIFFquery.3t TIFFIsByteSwapped.3t \ - TIFFquery.3t TIFFIsMSB2LSB.3t \ - TIFFquery.3t TIFFIsTiled.3t \ - TIFFquery.3t TIFFIsUpSampled.3t \ - TIFFquery.3t TIFFLastDirectory.3t \ - TIFFsize.3t TIFFRasterScanlineSize.3t \ - TIFFsize.3t TIFFScanlineSize.3t \ - TIFFstrip.3t TIFFComputeStrip.3t \ - TIFFstrip.3t TIFFDefaultStripSize.3t \ - TIFFstrip.3t TIFFNumberOfStrips.3t \ - TIFFstrip.3t TIFFStripSize.3t \ - TIFFstrip.3t TIFFVStripSize.3t \ - TIFFswab.3t TIFFReverseBits.3t \ - TIFFswab.3t TIFFSwabArrayOfLong.3t \ - TIFFswab.3t TIFFSwabArrayOfShort.3t \ - TIFFswab.3t TIFFSwabLong.3t \ - TIFFswab.3t TIFFSwabShort.3t \ - TIFFtile.3t TIFFCheckTile.3t \ - TIFFtile.3t TIFFComputeTile.3t \ - TIFFtile.3t TIFFDefaultTileSize.3t \ - TIFFtile.3t TIFFNumberOfTiles.3t \ - TIFFtile.3t TIFFTileRowSize.3t \ - TIFFtile.3t TIFFTileSize.3t \ - TIFFtile.3t TIFFVTileSize.3t + TIFFmemory.3t TIFFquery.3t TIFFsize.3t TIFFstrip.3t TIFFswab.3t \ + TIFFtile.3t libtiff.3t +MLINKS= TIFFError.3t TIFFSetErrorHandler.3t \ + TIFFFlush.3t TIFFFlushData.3t \ + TIFFGetField.3t TIFFVGetField.3t \ + TIFFOpen.3t TIFFFdOpen.3t \ + TIFFOpen.3t TIFFClientOpen.3t \ + TIFFRGBAImage.3t TIFFRGBAImageOK.3t \ + TIFFRGBAImage.3t TIFFRGBAImageBegin.3t \ + TIFFRGBAImage.3t TIFFRGBAImageGet.3t \ + TIFFRGBAImage.3t TIFFRGBAImageEnd.3t \ + TIFFSetDirectory.3t TIFFSetSubDirectory.3t \ + TIFFSetField.3t TIFFVSetField.3t \ + TIFFWarning.3t TIFFSetWarningHandler.3t \ + TIFFWriteDirectory.3t TIFFRewriteDirectory.3t \ + TIFFbuffer.3t TIFFReadBufferSetup.3t \ + TIFFbuffer.3t TIFFWriteBufferSetup.3t \ + TIFFcodec.3t TIFFFindCODEC.3t \ + TIFFcodec.3t TIFFRegisterCODEC.3t \ + TIFFcodec.3t TIFFUnRegisterCODEC.3t \ + TIFFmemory.3t TIFFfree.3t \ + TIFFmemory.3t TIFFmalloc.3t \ + TIFFmemory.3t TIFFmemcmp.3t \ + TIFFmemory.3t TIFFmemcpy.3t \ + TIFFmemory.3t TIFFmemset.3t \ + TIFFmemory.3t TIFFrealloc.3t \ + TIFFquery.3t TIFFCurrentDirectory.3t \ + TIFFquery.3t TIFFCurrentRow.3t \ + TIFFquery.3t TIFFCurrentStrip.3t \ + TIFFquery.3t TIFFCurrentTile.3t \ + TIFFquery.3t TIFFFileName.3t \ + TIFFquery.3t TIFFFileno.3t \ + TIFFquery.3t TIFFGetMode.3t \ + TIFFquery.3t TIFFIsTiled.3t \ + TIFFquery.3t TIFFIsByteSwapped.3t \ + TIFFquery.3t TIFFIsUpSampled.3t \ + TIFFquery.3t TIFFIsMSB2LSB.3t \ + TIFFquery.3t TIFFLastDirectory.3t \ + TIFFsize.3t TIFFScanlineSize.3t \ + TIFFstrip.3t TIFFComputeStrip.3t \ + TIFFstrip.3t TIFFDefaultStripSize.3t \ + TIFFstrip.3t TIFFNumberOfStrips.3t \ + TIFFstrip.3t TIFFStripSize.3t \ + TIFFstrip.3t TIFFVStripSize.3t \ + TIFFswab.3t TIFFReverseBits.3t \ + TIFFswab.3t TIFFSwabArrayOfLong.3t \ + TIFFswab.3t TIFFSwabArrayOfShort.3t \ + TIFFswab.3t TIFFSwabLong.3t \ + TIFFswab.3t TIFFSwabShort.3t \ + TIFFtile.3t TIFFCheckTile.3t \ + TIFFtile.3t TIFFComputeTile.3t \ + TIFFtile.3t TIFFDefaultTileSize.3t \ + TIFFtile.3t TIFFNumberOfTiles.3t \ + TIFFtile.3t TIFFTileSize.3t \ + TIFFtile.3t TIFFTileRowSize.3t \ + TIFFtile.3t TIFFVTileSize.3t .include diff -urN /usr/ports/graphics/tiff/distinfo graphics/tiff/distinfo --- /usr/ports/graphics/tiff/distinfo Sat Apr 1 08:45:38 2000 +++ graphics/tiff/distinfo Sat Dec 15 00:00:00 2001 @@ -1 +1 @@ -MD5 (tiff-v3.5.5.tar.gz) = 407d65a98c7621ad6e2c64cd3d1e7a40 +MD5 (tiff-v3.5.7.tar.gz) = 82243b5ae9b7c9e492aeebc501680990 diff -urN /usr/ports/graphics/tiff/files/patch-aa graphics/tiff/files/patch-aa --- /usr/ports/graphics/tiff/files/patch-aa Sat Apr 1 08:45:39 2000 +++ graphics/tiff/files/patch-aa Sat Dec 15 00:00:00 2001 @@ -1,63 +1,59 @@ ---- libtiff/Makefile.in.orig Mon Nov 29 05:15:36 1999 -+++ libtiff/Makefile.in Sat Apr 1 00:00:00 2000 -@@ -62,7 +62,7 @@ - # - CONF_LIBRARY=@CONF_JPEG@ @CONF_ZIP@ - COPTS = @GCOPTS@ --OPTIMIZER=-O -+#OPTIMIZER=-O - CFLAGS = @ENVOPTS@ @LIBCOPTS@ ${COPTS} ${OPTIMIZER} ${IPATH} ${CONF_LIBRARY} - # - SRCS = \ -@@ -197,8 +197,8 @@ - ${AR} ${AROPTS} libtiff.@DSOSUF@ shr.o - rm -f shr.o +--- libtiff/Makefile.in.orig Mon Sep 10 00:56:04 2001 ++++ libtiff/Makefile.in Sat Dec 15 00:00:00 2001 +@@ -220,8 +220,8 @@ + @LN@ @LN_S@ libtiff.@DSOSUF_VERSION@ libtiff.@DSOSUF@; \ + fi touch $@ --# NetBSD 1.1 or FreeBSD --NETBSDdso FREEBSDdso: ${OBJS} -+# NetBSD 1.1 -+NETBSDdso: ${OBJS} +-# NetBSD 1.1 or FreeBSD (old style) +-NETBSDdso FREEBSDdso oldOPENBSDdso: ${OBJS} ++# NetBSD 1.1 (old style) ++NETBSDdso oldOPENBSDdso: ${OBJS} @rm -f libtiff_pic.a @${AR} cq libtiff_pic.a `lorder ${OBJS} | tsort -q` ${RANLIB} libtiff_pic.a -@@ -215,7 +215,12 @@ +@@ -239,6 +239,14 @@ # OSF/1 3.2 shared lib rule OSFdso: ${OBJS} ${LD} -o libtiff.@DSOSUF@ -shared -error_unresolved ${OBJS} @LIBJPEG@ @LIBGZ@ -lc -lm -- +# FreeBSD shared lib rule +FREEBSDdso: ${OBJS} -+ ${CC} -shared -Wl,-soname,libtiff.@DSOSUF_VERSION@ -o libtiff.@DSOSUF_VERSION@ \ -+ ${OBJS} @LIBJPEG@ @LIBGZ@ ++ ${CC} -shared -Wl,-soname,libtiff.@DSOSUF_VERSION@ \ ++ -o libtiff.@DSOSUF_VERSION@ ${OBJS} \ ++ @LIBJPEG@ @LIBGZ@ @MACHDEPLIBS@ ++ rm -f libtiff.@DSOSUF@ + @LN@ @LN_S@ libtiff.@DSOSUF_VERSION@ libtiff.@DSOSUF@ + touch $@ - ${OBJS}: ${SRCDIR}/tiffio.h ${SRCDIR}/tiff.h ${SRCDIR}/tif_dir.h - ${OBJS}: ${SRCDIR}/tiffcomp.h ${SRCDIR}/tiffiop.h ${SRCDIR}/tiffconf.h -@@ -319,22 +324,20 @@ - ${INSTALL} -idb tiff.sw.dev -m 755 -dir @DIR_INC@ - for i in ${INCS}; do \ + OPENBSDdso: ${OBJS} + ${CC} -shared @LIBCOPTS@ -o libtiff.@DSOSUF_VERSION@ ${OBJS} @LIBJPEG@ @LIBGZ@ -lm +@@ -358,18 +366,15 @@ + ${INSTALL} -idb tiff.sw.dev -m 755 -dir ${DESTDIR}@DIR_INC@ + for i in ${INCS_PRIVATE}; do \ f=`basename $$i`; \ -- ${INSTALL} -idb tiff.sw.dev -m 444 -F @DIR_INC@ \ +- ${INSTALL} -idb tiff.sw.dev -m 444 -F ${DESTDIR}@DIR_INC@ \ - -src $$i -O $$f; \ -+ ${BSD_INSTALL_DATA} $$i @DIR_INC@/$$f; \ ++ ${BSD_INSTALL_DATA} $$i ${DESTDIR}@DIR_INC@/$$f; \ done + installDSO: @DSO@dso if [ @DSOSUF_VERSION@ != @DSOSUF@ ]; then \ -- ${INSTALL} -idb tiff.sw.tools -m 555 -F @DIR_LIB@ \ +- ${INSTALL} -idb tiff.sw.tools -m 555 -F ${DESTDIR}@DIR_LIB@ \ - -O libtiff.@DSOSUF_VERSION@; \ -+ ${BSD_INSTALL_DATA} libtiff.@DSOSUF_VERSION@ @DIR_LIB@; \ - ${INSTALL} -idb tiff.sw.tools -F @DIR_LIB@ \ -- -ln libtiff.@DSOSUF_VERSION@ -O libtiff.@DSOSUF@; \ -+ -lns libtiff.@DSOSUF_VERSION@ -O libtiff.@DSOSUF@; \ ++ ${BSD_INSTALL_DATA} libtiff.@DSOSUF_VERSION@ \ ++ ${DESTDIR}@DIR_LIB@; \ + ${INSTALL} -idb tiff.sw.tools -F ${DESTDIR}@DIR_LIB@ \ + -lns libtiff.@DSOSUF_VERSION@ -O libtiff.@DSOSUF@; \ +- ${INSTALL} -idb tiff.sw.tools -F ${DESTDIR}@DIR_LIB@ \ +- -lns libtiff.@DSOSUF@ -O libtiff.so; \ else \ - ${INSTALL} -idb tiff.sw.tools -m 555 -F @DIR_LIB@ \ + ${INSTALL} -idb tiff.sw.tools -m 555 -F ${DESTDIR}@DIR_LIB@ \ -O libtiff.@DSOSUF@; \ - fi +@@ -377,7 +382,7 @@ + install: all installHdrs - ${INSTALL} -idb tiff.sw.dev -m 755 -dir @DIR_LIB@ -- ${INSTALL} -idb tiff.sw.dev -m 444 -F @DIR_LIB@ -O libtiff.a -+ ${BSD_INSTALL_DATA} libtiff.a @DIR_LIB@ + ${INSTALL} -idb tiff.sw.dev -m 755 -dir ${DESTDIR}@DIR_LIB@ +- ${INSTALL} -idb tiff.sw.dev -m 444 -F ${DESTDIR}@DIR_LIB@ -O libtiff.a ++ ${BSD_INSTALL_DATA} libtiff.a ${DESTDIR}@DIR_LIB@ if [ @DSO@dso != nodso ]; then \ - ${MAKE} installDSO; \ + ${MAKE} -${MAKEFLAGS} installDSO; \ else \ diff -urN /usr/ports/graphics/tiff/files/patch-ab graphics/tiff/files/patch-ab --- /usr/ports/graphics/tiff/files/patch-ab Tue Sep 19 03:15:04 2000 +++ graphics/tiff/files/patch-ab Sat Dec 15 00:00:00 2001 @@ -1,18 +1,38 @@ ---- configure.orig Mon Mar 20 20:20:42 2000 -+++ configure Mon Sep 18 21:04:27 2000 -@@ -1150,8 +1150,10 @@ +--- configure.orig Fri Nov 16 02:21:05 2001 ++++ configure Sat Dec 15 00:00:00 2001 +@@ -170,10 +170,10 @@ + esac + done + +-DIR_BIN=${EPREFIX}/bin # destination for applications +-DIR_LIB=${EPREFIX}/lib # destination for library +-DIR_INC=${PREFIX}/include # destination for include files +-DIR_HTML=${PREFIX}/doc/libtiff # destination for HTML files ++#DIR_BIN=${EPREFIX}/bin # destination for applications ++#DIR_LIB=${EPREFIX}/lib # destination for library ++#DIR_INC=${PREFIX}/include # destination for include files ++#DIR_HTML=${PREFIX}/doc/libtiff # destination for HTML files + + if [ -n "$ac_prev" ]; then + bitch "configure: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" +@@ -1172,11 +1172,12 @@ TIFFLIBREF='-L${DEPTH}/libtiff -ltiff' ;; *-freebsd*) -- DSOSUF=so.${DIST_MAJOR}.0 +- DSOSUF=so.${DIST_MAJOR} +- DSOSUF_VERSION=${DSOSUF}.${DIST_MINOR}.${DIST_POINT} +- LIBCOPTS='-fPIC' + DSOSUF=so - LIBCOPTS='-fpic -fPIC' + DSOSUF_VERSION=${DSOSUF}.4 -+ DSOOPTS='-shared' - DSO=FREEBSD - TIFFLIBREF='-L${DEPTH}/libtiff -ltiff' ++ LIBCOPTS='-fPIC -DPIC' + DSOOPTS='-shared' +- DSO=GNULD ++ DSO=FREEBSD ++ TIFFLIBREF='-L${DEPTH}/libtiff -ltiff' ;; -@@ -1256,7 +1258,7 @@ + *-openbsd*) + DSOSUF=so.${DIST_MAJOR}.${DIST_MINOR} +@@ -1300,7 +1301,7 @@ # Check if ln -s creates a symbolic link. # if [ -z "${LN_S-}" ]; then diff -urN /usr/ports/graphics/tiff/files/patch-ac graphics/tiff/files/patch-ac --- /usr/ports/graphics/tiff/files/patch-ac Sat Apr 1 08:45:40 2000 +++ graphics/tiff/files/patch-ac Sat Dec 15 00:00:00 2001 @@ -1,35 +1,12 @@ ---- tools/Makefile.in.orig Tue Dec 21 08:46:11 1999 -+++ tools/Makefile.in Sat Apr 1 00:00:00 2000 -@@ -43,17 +43,17 @@ - INSTALL = @INSTALL@ - # - COPTS = @GCOPTS@ --OPTIMIZER=-O -+#OPTIMIZER=-O - IPATH = -I. -I${SRCDIR} -I${LIBDIR} --CFLAGS = @ENVOPTS@ ${COPTS} ${OPTIMIZER} ${IPATH} -+CFLAGS = @ENVOPTS@ ${COPTS} ${OPTIMIZER} ${IPATH} -L../libtiff - # --TIFFLIB = ${DEPTH}/libtiff/libtiff.@DSOSUF@ -+TIFFLIB = ${DEPTH}/libtiff/libtiff.@DSOSUF_VERSION@ - LIBJPEG = @LIBJPEG@ - LIBGZ = @LIBGZ@ - LIBTIFF = @TIFFLIBREF@ - LIBPORT = @LIBPORT@ - MACHLIBS= @MACHDEPLIBS@ --LIBS = ${LIBTIFF} ${LIBJPEG} ${LIBGZ} ${LIBPORT} ${MACHLIBS} -+LIBS = ${LIBJPEG} ${LIBGZ} ${LIBPORT} ${MACHLIBS} -ltiff - # - OBJS= \ - fax2tiff.o \ -@@ -108,8 +108,8 @@ - true; \ - fi +--- tools/Makefile.in.orig Tue Jul 17 22:13:37 2001 ++++ tools/Makefile.in Sat Dec 15 00:00:00 2001 +@@ -113,8 +113,7 @@ install: all -- ${INSTALL} -idb nostrip tiff.sw.tools -m 755 -dir @DIR_BIN@ -- ${INSTALL} -idb nostrip tiff.sw.tools -m 755 -F @DIR_BIN@ -O ${TARGETS} -+ ${INSTALL} -idb tiff.sw.tools -m 755 -dir @DIR_BIN@ -+ ${BSD_INSTALL_PROGRAM} ${TARGETS} @DIR_BIN@ - @if [ "@LIBIMAGE@" = yes ]; then \ - ${INSTALL} -idb tiff.sw.tools -m 755 -F @DIR_BIN@ -O sgi2tiff; \ - else \ + ${INSTALL} -idb nostrip -idb tiff.sw.tools -m 755 \ + -dir ${DESTDIR}@DIR_BIN@ +- ${INSTALL} -idb nostrip -idb tiff.sw.tools -m 755 \ +- -F ${DESTDIR}@DIR_BIN@ -O ${TARGETS} ++ ${BSD_INSTALL_PROGRAM} ${TARGETS} ${DESTDIR}@DIR_BIN@ + @if [ "@LIBIMAGE@" = yes ]; then \ + ${INSTALL} -idb tiff.sw.tools -m 755 \ + -F ${DESTDIR}@DIR_BIN@ -O sgi2tiff; \ diff -urN /usr/ports/graphics/tiff/files/patch-ad graphics/tiff/files/patch-ad --- /usr/ports/graphics/tiff/files/patch-ad Sat Apr 1 08:45:41 2000 +++ graphics/tiff/files/patch-ad Sat Dec 15 00:00:00 2001 @@ -1,152 +1,26 @@ ---- man/Makefile.in.orig Tue Nov 30 01:42:44 1999 -+++ man/Makefile.in Sat Apr 1 00:00:00 2000 -@@ -41,6 +41,7 @@ - SED = sed - MV = mv - RM = rm -f -+LN = ln -sf - INSTALL = @INSTALL@ - - # -@@ -82,7 +83,7 @@ - # pathname prefix in the .so commands when setting - # up alternate files for multi-function manual pages. - # --#MANDIR = man3/ -+MANDIR = - - MANTOOLS=\ - apps/fax2tiff.1 \ -@@ -274,59 +275,59 @@ - lib/TIFFswab.3t:: ${SRCDIR}/TIFFswab.3t; ${MANCVT} - lib/TIFFtile.3t:: ${SRCDIR}/TIFFtile.3t; ${MANCVT} - --lib/TIFFComputeTile.3t:; ${ECHO} ".so ${MANDIR}TIFFtile.3t" > $@ --lib/TIFFCheckTile.3t:; ${ECHO} ".so ${MANDIR}TIFFtile.3t" > $@ --lib/TIFFNumberOfTiles.3t:; ${ECHO} ".so ${MANDIR}TIFFtile.3t" > $@ --lib/TIFFComputeStrip.3t:; ${ECHO} ".so ${MANDIR}TIFFstrip.3t" > $@ --lib/TIFFNumberOfStrips.3t:; ${ECHO} ".so ${MANDIR}TIFFstrip.3t" > $@ --lib/TIFFCurrentDirectory.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFCurrentRow.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFCurrentStrip.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFCurrentTile.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFFdOpen.3t:; ${ECHO} ".so ${MANDIR}TIFFOpen.3t" > $@ --lib/TIFFFileName.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFFileno.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFFlushData.3t:; ${ECHO} ".so ${MANDIR}TIFFFlush.3t" > $@ --lib/TIFFGetMode.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFIsTiled.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFIsByteSwapped.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFIsUpSampled.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFIsMSB2LSB.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFLastDirectory.3t:; ${ECHO} ".so ${MANDIR}TIFFquery.3t" > $@ --lib/TIFFReverseBits.3t:; ${ECHO} ".so ${MANDIR}TIFFswab.3t" > $@ --lib/TIFFRGBAImageOK.3t:; ${ECHO} ".so ${MANDIR}TIFFRGBAImage.3t" > $@ --lib/TIFFRGBAImageBegin.3t:; ${ECHO} ".so ${MANDIR}TIFFRGBAImage.3t" > $@ --lib/TIFFRGBAImageGet.3t:; ${ECHO} ".so ${MANDIR}TIFFRGBAImage.3t" > $@ --lib/TIFFRGBAImageEnd.3t:; ${ECHO} ".so ${MANDIR}TIFFRGBAImage.3t" > $@ --lib/TIFFSetErrorHandler.3t:; ${ECHO} ".so ${MANDIR}TIFFError.3t" > $@ --lib/TIFFSetSubDirectory.3t:; ${ECHO} ".so ${MANDIR}TIFFSetDirectory.3t" > $@ --lib/TIFFSetWarningHandler.3t:; ${ECHO} ".so ${MANDIR}TIFFWarning.3t" > $@ --lib/TIFFSwabArrayOfLong.3t:; ${ECHO} ".so ${MANDIR}TIFFswab.3t" > $@ --lib/TIFFSwabArrayOfShort.3t:; ${ECHO} ".so ${MANDIR}TIFFswab.3t" > $@ --lib/TIFFSwabLong.3t:; ${ECHO} ".so ${MANDIR}TIFFswab.3t" > $@ --lib/TIFFSwabShort.3t:; ${ECHO} ".so ${MANDIR}TIFFswab.3t" > $@ --lib/TIFFScanlineSize.3t:; ${ECHO} ".so ${MANDIR}TIFFsize.3t" > $@ --lib/TIFFRasterScanlineSize.3t:; ${ECHO} ".so ${MANDIR}TIFFsize.3t" > $@ --lib/TIFFDefaultStripSize.3t:; ${ECHO} ".so ${MANDIR}TIFFstrip.3t" > $@ --lib/TIFFStripSize.3t:; ${ECHO} ".so ${MANDIR}TIFFstrip.3t" > $@ --lib/TIFFVStripSize.3t:; ${ECHO} ".so ${MANDIR}TIFFstrip.3t" > $@ --lib/TIFFTileSize.3t:; ${ECHO} ".so ${MANDIR}TIFFtile.3t" > $@ --lib/TIFFVTileSize.3t:; ${ECHO} ".so ${MANDIR}TIFFtile.3t" > $@ --lib/TIFFDefaultTileSize.3t:; ${ECHO} ".so ${MANDIR}TIFFtile.3t" > $@ --lib/TIFFTileRowSize.3t:; ${ECHO} ".so ${MANDIR}TIFFtile.3t" > $@ --lib/TIFFVGetField.3t:; ${ECHO} ".so ${MANDIR}TIFFGetField.3t" > $@ --lib/TIFFVSetField.3t:; ${ECHO} ".so ${MANDIR}TIFFSetField.3t" > $@ --lib/TIFFFindCODEC.3t:; ${ECHO} ".so ${MANDIR}TIFFcodec.3t" > $@ --lib/TIFFRegisterCODEC.3t:; ${ECHO} ".so ${MANDIR}TIFFcodec.3t" > $@ --lib/TIFFUnRegisterCODEC.3t:; ${ECHO} ".so ${MANDIR}TIFFcodec.3t" > $@ --lib/TIFFmalloc.3t:; ${ECHO} ".so ${MANDIR}TIFFmemory.3t" > $@ --lib/TIFFrealloc.3t:; ${ECHO} ".so ${MANDIR}TIFFmemory.3t" > $@ --lib/TIFFfree.3t:; ${ECHO} ".so ${MANDIR}TIFFmemory.3t" > $@ --lib/TIFFmemset.3t:; ${ECHO} ".so ${MANDIR}TIFFmemory.3t" > $@ --lib/TIFFmemcpy.3t:; ${ECHO} ".so ${MANDIR}TIFFmemory.3t" > $@ --lib/TIFFmemcmp.3t:; ${ECHO} ".so ${MANDIR}TIFFmemory.3t" > $@ --lib/TIFFReadBufferSetup.3t:; ${ECHO} ".so ${MANDIR}TIFFbuffer.3t" > $@ --lib/TIFFWriteBufferSetup.3t:; ${ECHO} ".so ${MANDIR}TIFFbuffer.3t" > $@ -+lib/TIFFComputeTile.3t:; ${LN} ${MANDIR}TIFFtile.3t $@ -+lib/TIFFCheckTile.3t:; ${LN} ${MANDIR}TIFFtile.3t $@ -+lib/TIFFNumberOfTiles.3t:; ${LN} ${MANDIR}TIFFtile.3t $@ -+lib/TIFFComputeStrip.3t:; ${LN} ${MANDIR}TIFFstrip.3t $@ -+lib/TIFFNumberOfStrips.3t:; ${LN} ${MANDIR}TIFFstrip.3t $@ -+lib/TIFFCurrentDirectory.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFCurrentRow.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFCurrentStrip.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFCurrentTile.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFFdOpen.3t:; ${LN} ${MANDIR}TIFFOpen.3t $@ -+lib/TIFFFileName.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFFileno.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFFlushData.3t:; ${LN} ${MANDIR}TIFFFlush.3t $@ -+lib/TIFFGetMode.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFIsTiled.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFIsByteSwapped.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFIsUpSampled.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFIsMSB2LSB.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFLastDirectory.3t:; ${LN} ${MANDIR}TIFFquery.3t $@ -+lib/TIFFReverseBits.3t:; ${LN} ${MANDIR}TIFFswab.3t $@ -+lib/TIFFRGBAImageOK.3t:; ${LN} ${MANDIR}TIFFRGBAImage.3t $@ -+lib/TIFFRGBAImageBegin.3t:; ${LN} ${MANDIR}TIFFRGBAImage.3t $@ -+lib/TIFFRGBAImageGet.3t:; ${LN} ${MANDIR}TIFFRGBAImage.3t $@ -+lib/TIFFRGBAImageEnd.3t:; ${LN} ${MANDIR}TIFFRGBAImage.3t $@ -+lib/TIFFSetErrorHandler.3t:; ${LN} ${MANDIR}TIFFError.3t $@ -+lib/TIFFSetSubDirectory.3t:; ${LN} ${MANDIR}TIFFSetDirectory.3t $@ -+lib/TIFFSetWarningHandler.3t:; ${LN} ${MANDIR}TIFFWarning.3t $@ -+lib/TIFFSwabArrayOfLong.3t:; ${LN} ${MANDIR}TIFFswab.3t $@ -+lib/TIFFSwabArrayOfShort.3t:; ${LN} ${MANDIR}TIFFswab.3t $@ -+lib/TIFFSwabLong.3t:; ${LN} ${MANDIR}TIFFswab.3t $@ -+lib/TIFFSwabShort.3t:; ${LN} ${MANDIR}TIFFswab.3t $@ -+lib/TIFFScanlineSize.3t:; ${LN} ${MANDIR}TIFFsize.3t $@ -+lib/TIFFRasterScanlineSize.3t:; ${LN} ${MANDIR}TIFFsize.3t $@ -+lib/TIFFDefaultStripSize.3t:; ${LN} ${MANDIR}TIFFstrip.3t $@ -+lib/TIFFStripSize.3t:; ${LN} ${MANDIR}TIFFstrip.3t $@ -+lib/TIFFVStripSize.3t:; ${LN} ${MANDIR}TIFFstrip.3t $@ -+lib/TIFFTileSize.3t:; ${LN} ${MANDIR}TIFFtile.3t $@ -+lib/TIFFVTileSize.3t:; ${LN} ${MANDIR}TIFFtile.3t $@ -+lib/TIFFDefaultTileSize.3t:; ${LN} ${MANDIR}TIFFtile.3t $@ -+lib/TIFFTileRowSize.3t:; ${LN} ${MANDIR}TIFFtile.3t $@ -+lib/TIFFVGetField.3t:; ${LN} ${MANDIR}TIFFGetField.3t $@ -+lib/TIFFVSetField.3t:; ${LN} ${MANDIR}TIFFSetField.3t $@ -+lib/TIFFFindCODEC.3t:; ${LN} ${MANDIR}TIFFcodec.3t $@ -+lib/TIFFRegisterCODEC.3t:; ${LN} ${MANDIR}TIFFcodec.3t $@ -+lib/TIFFUnRegisterCODEC.3t:; ${LN} ${MANDIR}TIFFcodec.3t $@ -+lib/TIFFmalloc.3t:; ${LN} ${MANDIR}TIFFmemory.3t $@ -+lib/TIFFrealloc.3t:; ${LN} ${MANDIR}TIFFmemory.3t $@ -+lib/TIFFfree.3t:; ${LN} ${MANDIR}TIFFmemory.3t $@ -+lib/TIFFmemset.3t:; ${LN} ${MANDIR}TIFFmemory.3t $@ -+lib/TIFFmemcpy.3t:; ${LN} ${MANDIR}TIFFmemory.3t $@ -+lib/TIFFmemcmp.3t:; ${LN} ${MANDIR}TIFFmemory.3t $@ -+lib/TIFFReadBufferSetup.3t:; ${LN} ${MANDIR}TIFFbuffer.3t $@ -+lib/TIFFWriteBufferSetup.3t:; ${LN} ${MANDIR}TIFFbuffer.3t $@ - - apps/Makefile: - test -d apps || mkdir apps -@@ -336,8 +337,7 @@ +--- man/Makefile.in.orig Thu Sep 27 02:32:24 2001 ++++ man/Makefile.in Sat Dec 15 00:00:00 2001 +@@ -343,9 +343,8 @@ ${ECHO} 'install:'; \ for i in *.1; do \ f=${MANAPPNAME}; \ -- ${ECHO} ' cd ..; ${INSTALL} -m 444 -F ${MAN}/${MANAPPS} \ +- ${ECHO} ' cd ..; ${INSTALL} -m 444 \ +- -F ${DESTDIR}${MAN}/${MANAPPS} \ - -idb tiff.man.tools -src' apps/"$$i" '-O' "$$f"; \ -+ ${ECHO} ' ${BSD_INSTALL_MAN}' $$i ${MAN}/${MANAPPS}/$$f; \ ++ ${ECHO} ' ${BSD_INSTALL_MAN}' \ ++ $$i ${DESTDIR}${MAN}/${MANAPPS}/$$f; \ done \ )>apps/Makefile lib/Makefile: -@@ -348,8 +348,7 @@ +@@ -356,9 +355,8 @@ ${ECHO} 'install:'; \ for i in *.3t; do \ f=${MANLIBNAME}; \ -- ${ECHO} ' cd ..; ${INSTALL} -m 444 -F ${MAN}/${MANLIB} \ +- ${ECHO} ' cd ..; ${INSTALL} -m 444 \ +- -F ${DESTDIR}${MAN}/${MANLIB} \ - -idb tiff.man.dev -src' lib/"$$i" '-O' "$$f"; \ -+ ${ECHO} ' ${BSD_INSTALL_MAN}' $$i ${MAN}/${MANLIB}/$$f; \ ++ ${ECHO} ' ${BSD_INSTALL_MAN}' \ ++ $$i ${DESTDIR}${MAN}/${MANLIB}/$$f; \ done \ )>lib/Makefile diff -urN /usr/ports/graphics/tiff/files/patch-ae graphics/tiff/files/patch-ae --- /usr/ports/graphics/tiff/files/patch-ae Sat Apr 1 08:45:41 2000 +++ graphics/tiff/files/patch-ae Sat Dec 15 00:00:00 2001 @@ -1,15 +1,16 @@ ---- html/Makefile.in.orig Tue Mar 28 02:05:55 2000 -+++ html/Makefile.in Sat Apr 1 00:00:00 2000 -@@ -76,8 +76,6 @@ +--- html/Makefile.in.orig Tue Jul 17 22:13:37 2001 ++++ html/Makefile.in Sat Dec 15 00:00:00 2001 +@@ -77,8 +77,7 @@ v3.5.1.html \ v3.5.2.html \ v3.5.3.html \ - v3.5.4.html \ - v3.5.5.html \ ++ v3.5.7.html \ ${NULL} IMAGES=\ images/back.gif \ -@@ -85,6 +83,8 @@ +@@ -86,6 +85,8 @@ images/cat.gif \ images/cover.jpg \ images/cramps.gif \ @@ -18,13 +19,13 @@ images/jello.jpg \ images/jim.gif \ images/note.gif \ -@@ -102,8 +102,7 @@ +@@ -103,8 +104,7 @@ install: all - ${INSTALL} -m 755 -dir -idb tiff.man.html ${HTML} ${HTML}/images + ${INSTALL} -m 755 -dir -idb tiff.man.html ${DESTDIR}${HTML} ${HTML}/images for i in ${HTMLFILES} ${IMAGES}; do \ -- ${INSTALL} -idb tiff.man.html -m 444 -F ${HTML} \ +- ${INSTALL} -idb tiff.man.html -m 444 -F ${DESTDIR}${HTML} \ - -src ${SRCDIR}/$$i -O $$i; \ -+ ${BSD_INSTALL_DATA} ${SRCDIR}/$$i ${HTML}/$$i; \ ++ ${BSD_INSTALL_DATA} ${SRCDIR}/$$i ${DESTDIR}${HTML}/$$i; \ done clean:; diff -urN /usr/ports/graphics/tiff/files/patch-tools::fax2ps.c graphics/tiff/files/patch-tools::fax2ps.c --- /usr/ports/graphics/tiff/files/patch-tools::fax2ps.c Sat Nov 24 03:03:41 2001 +++ graphics/tiff/files/patch-tools::fax2ps.c Thu Jan 1 09:00:00 1970 @@ -1,42 +0,0 @@ - ---- tools/fax2ps.c.orig Tue Sep 2 19:54:34 1997 -+++ tools/fax2ps.c Sat Feb 13 16:43:01 1999 -@@ -151,7 +151,7 @@ - { - uint32 w, h; - uint16 unit; -- float xres, yres; -+ float xres, yres, scale = 1.0; - tstrip_t s, ns; - - TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &h); -@@ -174,21 +174,13 @@ - - printf("%%%%Page: \"%d\" %d\n", pageNumber, pageNumber); - printf("/$pageTop save def gsave\n"); -- if (scaleToPage) { -- float yscale = pageHeight / (h/yres); -- float xscale = pageWidth / (w/xres); -- printf("%d %d translate\n", -- (int) (((basePageWidth - pageWidth) * points) * half), -- (int)((yscale*(h/yres)*points) + -- (basePageHeight - pageHeight) * points * half) ); -- printf("%g %g scale\n", (72.*xscale)/xres, -(72.*yscale)/yres); -- } else { -- printf("%d %d translate\n", -- (int) ((basePageWidth - pageWidth) * points * half), -- (int)((72.*h/yres) + -- (basePageHeight - pageHeight) * points * half) ); -- printf("%g %g scale\n", 72./xres, -72./yres); -- } -+ if (scaleToPage) -+ scale = pageHeight / (h/yres) < pageWidth / (w/xres) ? -+ pageHeight / (h/yres) : pageWidth / (w/xres); -+ printf("%g %g translate\n", -+ points * (pageWidth - scale*w/xres) * half, -+ points * (scale*h/yres + (pageHeight - scale*h/yres) * half)); -+ printf("%g %g scale\n", points/xres*scale, -points/yres*scale); - printf("0 setgray\n"); - TIFFSetField(tif, TIFFTAG_FAXFILLFUNC, printruns); - ns = TIFFNumberOfStrips(tif); - diff -urN /usr/ports/graphics/tiff/pkg-plist graphics/tiff/pkg-plist --- /usr/ports/graphics/tiff/pkg-plist Fri Jun 16 02:59:43 2000 +++ graphics/tiff/pkg-plist Sat Dec 15 00:00:00 2001 @@ -19,51 +19,53 @@ include/tiff.h include/tiffconf.h include/tiffio.h +include/tiffvers.h lib/libtiff.a lib/libtiff.so lib/libtiff.so.4 -share/doc/tiff/bugs.html -share/doc/tiff/build.html -share/doc/tiff/contrib.html -share/doc/tiff/document.html -share/doc/tiff/images/back.gif -share/doc/tiff/images/bali.jpg -share/doc/tiff/images/cat.gif -share/doc/tiff/images/cover.jpg -share/doc/tiff/images/cramps.gif -share/doc/tiff/images/dave.gif -share/doc/tiff/images/info.gif -share/doc/tiff/images/jello.jpg -share/doc/tiff/images/jim.gif -share/doc/tiff/images/note.gif -share/doc/tiff/images/oxford.gif -share/doc/tiff/images/quad.jpg -share/doc/tiff/images/ring.gif -share/doc/tiff/images/smallliz.jpg -share/doc/tiff/images/strike.gif -share/doc/tiff/images/warning.gif -share/doc/tiff/images.html -share/doc/tiff/index.html -share/doc/tiff/internals.html -share/doc/tiff/intro.html -share/doc/tiff/libtiff.html -share/doc/tiff/misc.html -share/doc/tiff/support.html -share/doc/tiff/tools.html -share/doc/tiff/v3.4beta007.html -share/doc/tiff/v3.4beta016.html -share/doc/tiff/v3.4beta018.html -share/doc/tiff/v3.4beta024.html -share/doc/tiff/v3.4beta028.html -share/doc/tiff/v3.4beta029.html -share/doc/tiff/v3.4beta031.html -share/doc/tiff/v3.4beta032.html -share/doc/tiff/v3.4beta033.html -share/doc/tiff/v3.4beta034.html -share/doc/tiff/v3.4beta035.html -share/doc/tiff/v3.4beta036.html -share/doc/tiff/v3.5.1.html -share/doc/tiff/v3.5.2.html -share/doc/tiff/v3.5.3.html -@dirrm share/doc/tiff/images -@dirrm share/doc/tiff +%%PORTDOCS%%share/doc/tiff/bugs.html +%%PORTDOCS%%share/doc/tiff/build.html +%%PORTDOCS%%share/doc/tiff/contrib.html +%%PORTDOCS%%share/doc/tiff/document.html +%%PORTDOCS%%share/doc/tiff/images/back.gif +%%PORTDOCS%%share/doc/tiff/images/bali.jpg +%%PORTDOCS%%share/doc/tiff/images/cat.gif +%%PORTDOCS%%share/doc/tiff/images/cover.jpg +%%PORTDOCS%%share/doc/tiff/images/cramps.gif +%%PORTDOCS%%share/doc/tiff/images/dave.gif +%%PORTDOCS%%share/doc/tiff/images/info.gif +%%PORTDOCS%%share/doc/tiff/images/jello.jpg +%%PORTDOCS%%share/doc/tiff/images/jim.gif +%%PORTDOCS%%share/doc/tiff/images/note.gif +%%PORTDOCS%%share/doc/tiff/images/oxford.gif +%%PORTDOCS%%share/doc/tiff/images/quad.jpg +%%PORTDOCS%%share/doc/tiff/images/ring.gif +%%PORTDOCS%%share/doc/tiff/images/smallliz.jpg +%%PORTDOCS%%share/doc/tiff/images/strike.gif +%%PORTDOCS%%share/doc/tiff/images/warning.gif +%%PORTDOCS%%share/doc/tiff/images.html +%%PORTDOCS%%share/doc/tiff/index.html +%%PORTDOCS%%share/doc/tiff/internals.html +%%PORTDOCS%%share/doc/tiff/intro.html +%%PORTDOCS%%share/doc/tiff/libtiff.html +%%PORTDOCS%%share/doc/tiff/misc.html +%%PORTDOCS%%share/doc/tiff/support.html +%%PORTDOCS%%share/doc/tiff/tools.html +%%PORTDOCS%%share/doc/tiff/v3.4beta007.html +%%PORTDOCS%%share/doc/tiff/v3.4beta016.html +%%PORTDOCS%%share/doc/tiff/v3.4beta018.html +%%PORTDOCS%%share/doc/tiff/v3.4beta024.html +%%PORTDOCS%%share/doc/tiff/v3.4beta028.html +%%PORTDOCS%%share/doc/tiff/v3.4beta029.html +%%PORTDOCS%%share/doc/tiff/v3.4beta031.html +%%PORTDOCS%%share/doc/tiff/v3.4beta032.html +%%PORTDOCS%%share/doc/tiff/v3.4beta033.html +%%PORTDOCS%%share/doc/tiff/v3.4beta034.html +%%PORTDOCS%%share/doc/tiff/v3.4beta035.html +%%PORTDOCS%%share/doc/tiff/v3.4beta036.html +%%PORTDOCS%%share/doc/tiff/v3.5.1.html +%%PORTDOCS%%share/doc/tiff/v3.5.2.html +%%PORTDOCS%%share/doc/tiff/v3.5.3.html +%%PORTDOCS%%share/doc/tiff/v3.5.7.html +%%PORTDOCS%%@dirrm share/doc/tiff/images +%%PORTDOCS%%@dirrm share/doc/tiff diff -urN /usr/ports/graphics/tiff/pkg-plist.nodocs graphics/tiff/pkg-plist.nodocs --- /usr/ports/graphics/tiff/pkg-plist.nodocs Fri Jun 16 02:59:43 2000 +++ graphics/tiff/pkg-plist.nodocs Thu Jan 1 09:00:00 1970 @@ -1,24 +0,0 @@ -bin/fax2ps -bin/fax2tiff -bin/gif2tiff -bin/pal2rgb -bin/ppm2tiff -bin/ras2tiff -bin/rgb2ycbcr -bin/thumbnail -bin/tiff2bw -bin/tiff2ps -bin/tiff2rgba -bin/tiffcmp -bin/tiffcp -bin/tiffdither -bin/tiffdump -bin/tiffinfo -bin/tiffmedian -bin/tiffsplit -include/tiff.h -include/tiffconf.h -include/tiffio.h -lib/libtiff.a -lib/libtiff.so -lib/libtiff.so.4 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:15:52 2001 Delivered-To: freebsd-ports@freebsd.org Received: from t-mta8.odn.ne.jp (mfep8.odn.ne.jp [143.90.131.186]) by hub.freebsd.org (Postfix) with ESMTP id 4665037B417; Sat, 15 Dec 2001 00:15:48 -0800 (PST) Received: from localhost ([61.201.64.62]) by t-mta8.odn.ne.jp with ESMTP id <20011215081547429.QZGM.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp>; Sat, 15 Dec 2001 17:15:47 +0900 Date: Sat, 15 Dec 2001 17:15:46 +0900 From: Kimura Fuyuki To: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32848: New port: mail/smtpproxy In-Reply-To: <200112150700.fBF701x81500@freefall.freebsd.org> User-Agent: Wanderlust/2.6.1 (Upside Down) Emacs/21.1 Mule/5.0 (SAKAKI) References: <200112150700.fBF701x81500@freefall.freebsd.org> X-Fingerprint: 096E 3D3A 47A6 855C 0FB8 0BB4 0FF1 3354 3389 CBDB MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Message-Id: <20011215081547429.QZGM.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org PREFIX should be honored. diff -ru smtpproxy.orig/files/patch-aa smtpproxy/files/patch-aa --- smtpproxy.orig/files/patch-aa Sat Dec 15 14:45:57 2001 +++ smtpproxy/files/patch-aa Sat Dec 15 17:00:07 2001 @@ -1,5 +1,5 @@ --- makefile.orig Sat Dec 15 14:41:41 2001 -+++ makefile Sat Dec 15 14:45:34 2001 ++++ makefile Sat Dec 15 16:59:38 2001 @@ -1,6 +1,6 @@ -CC = gcc @@ -9,12 +9,14 @@ TAR = smtpproxy-1.1.3 DIR = smtpproxy-1.1.3 -@@ -17,7 +17,7 @@ +@@ -17,8 +17,8 @@ install: all strip $(TARGETS) - cp $(TARGETS) /usr/local/sbin -+ cp $(TARGETS) /usr/local/libexec - cp *.1 /usr/local/man/man1 +- cp *.1 /usr/local/man/man1 ++ cp $(TARGETS) $(PREFIX)/libexec ++ cp *.1 $(PREFIX)/man/man1 + smtp.proxy: $(SMTPPROXY) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 0:19:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0798A37B405; Sat, 15 Dec 2001 00:19:41 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF8Hhb94953; Sat, 15 Dec 2001 00:17:43 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 00:17:43 -0800 (PST) From: Message-Id: <200112150817.fBF8Hhb94953@freefall.freebsd.org> To: eanholt@gladstone.uoregon.edu, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/31505: New port: linux-dri Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: linux-dri State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Sat Dec 15 00:17:05 PST 2001 State-Changed-Why: Committed as graphics/linux_dri, Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31505 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 1: 0: 6 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6F1337B419 for ; Sat, 15 Dec 2001 01:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF902r98168; Sat, 15 Dec 2001 01:00:02 -0800 (PST) (envelope-from gnats) Date: Sat, 15 Dec 2001 01:00:02 -0800 (PST) Message-Id: <200112150900.fBF902r98168@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Kimura Fuyuki Subject: Re: ports/32848: New port: mail/smtpproxy Reply-To: Kimura Fuyuki Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32848; it has been noted by GNATS. From: Kimura Fuyuki To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/32848: New port: mail/smtpproxy Date: Sat, 15 Dec 2001 17:57:40 +0900 PREFIX should be honored. diff -ru smtpproxy.orig/files/patch-aa smtpproxy/files/patch-aa --- smtpproxy.orig/files/patch-aa Sat Dec 15 14:45:57 2001 +++ smtpproxy/files/patch-aa Sat Dec 15 17:00:07 2001 @@ -1,5 +1,5 @@ --- makefile.orig Sat Dec 15 14:41:41 2001 -+++ makefile Sat Dec 15 14:45:34 2001 ++++ makefile Sat Dec 15 16:59:38 2001 @@ -1,6 +1,6 @@ -CC = gcc @@ -9,12 +9,14 @@ TAR = smtpproxy-1.1.3 DIR = smtpproxy-1.1.3 -@@ -17,7 +17,7 @@ +@@ -17,8 +17,8 @@ install: all strip $(TARGETS) - cp $(TARGETS) /usr/local/sbin -+ cp $(TARGETS) /usr/local/libexec - cp *.1 /usr/local/man/man1 +- cp *.1 /usr/local/man/man1 ++ cp $(TARGETS) $(PREFIX)/libexec ++ cp *.1 $(PREFIX)/man/man1 + smtp.proxy: $(SMTPPROXY) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 1: 3:16 2001 Delivered-To: freebsd-ports@freebsd.org Received: from t-mta8.odn.ne.jp (mfep8.odn.ne.jp [143.90.131.186]) by hub.freebsd.org (Postfix) with ESMTP id 9959E37B416; Sat, 15 Dec 2001 01:03:13 -0800 (PST) Received: from localhost ([61.201.64.62]) by t-mta8.odn.ne.jp with ESMTP id <20011215090313029.RMLT.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp>; Sat, 15 Dec 2001 18:03:13 +0900 Date: Sat, 15 Dec 2001 18:03:12 +0900 From: Kimura Fuyuki To: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32848: New port: mail/smtpproxy In-Reply-To: <20011215081547429.QZGM.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp> References: <200112150700.fBF701x81500@freefall.freebsd.org> <20011215081547429.QZGM.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp> User-Agent: Wanderlust/2.6.1 (Upside Down) Emacs/21.1 Mule/5.0 (SAKAKI) X-Fingerprint: 096E 3D3A 47A6 855C 0FB8 0BB4 0FF1 3354 3389 CBDB MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Message-Id: <20011215090313029.RMLT.1471.t-mta8.odn.ne.jp@mta8.odn.ne.jp> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Wrong address, sorry for disturbing. At Sat, 15 Dec 2001 17:15:46 +0900, Kimura Fuyuki wrote: > > PREFIX should be honored. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 1: 9:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 506A837B405; Sat, 15 Dec 2001 01:09:41 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF97Pb02113; Sat, 15 Dec 2001 01:07:25 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 01:07:25 -0800 (PST) From: Message-Id: <200112150907.fBF97Pb02113@freefall.freebsd.org> To: andreasd@unik.no, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/29422: New port: archivers/stuffit (un)compresses stuffit archives Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: archivers/stuffit (un)compresses stuffit archives State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Dec 15 01:07:12 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=29422 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 1:20:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FCCC37B417; Sat, 15 Dec 2001 01:19:53 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF9BL202432; Sat, 15 Dec 2001 01:11:21 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 01:11:21 -0800 (PST) From: Message-Id: <200112150911.fBF9BL202432@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/32858: Update port: graphics/tiff to 3.5.7 (fix ports/32407) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: graphics/tiff to 3.5.7 (fix ports/32407) Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: ijliao Responsible-Changed-When: Sat Dec 15 01:11:11 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32858 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 1:20:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED58A37B41E; Sat, 15 Dec 2001 01:19:51 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF9ANM02291; Sat, 15 Dec 2001 01:10:23 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 01:10:23 -0800 (PST) From: Message-Id: <200112150910.fBF9ANM02291@freefall.freebsd.org> To: tkato@prontomail.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32853: Update port: devel/libtecla to 1.4.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: devel/libtecla to 1.4.0 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Dec 15 01:10:06 PST 2001 State-Changed-Why: already 1.4.0, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32853 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 1:59:51 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FC4637B42F; Sat, 15 Dec 2001 01:59:45 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF9tib08742; Sat, 15 Dec 2001 01:55:44 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 01:55:44 -0800 (PST) From: Message-Id: <200112150955.fBF9tib08742@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32833: New port: p5-Inline-0.43 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-Inline-0.43 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Dec 15 01:55:36 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32833 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 1:59:51 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7504937B437; Sat, 15 Dec 2001 01:59:45 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF9xc109619; Sat, 15 Dec 2001 01:59:38 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 01:59:38 -0800 (PST) From: Message-Id: <200112150959.fBF9xc109619@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32835: New port: p5-XML-RegExp-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-XML-RegExp-0.03 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Dec 15 01:59:31 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32835 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 2: 0:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA3CA37B405; Sat, 15 Dec 2001 01:59:45 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF9viq09178; Sat, 15 Dec 2001 01:57:44 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 01:57:44 -0800 (PST) From: Message-Id: <200112150957.fBF9viq09178@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32834: New port: p5-CGI-XMLApplication-1.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-CGI-XMLApplication-1.0.2 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Dec 15 01:57:37 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32834 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 2: 0:14 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B8FC37B41B; Sat, 15 Dec 2001 01:59:46 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBF9pBG07876; Sat, 15 Dec 2001 01:51:11 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 01:51:11 -0800 (PST) From: Message-Id: <200112150951.fBF9pBG07876@freefall.freebsd.org> To: dominic_marks@btinternet.com, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32268: Port of TightVNC overwrites existing VNC install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Port of TightVNC overwrites existing VNC install State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Dec 15 01:50:59 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32268 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 2:19:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33DD437B405; Sat, 15 Dec 2001 02:19:41 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFAAIo13999; Sat, 15 Dec 2001 02:10:18 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 02:10:18 -0800 (PST) From: Message-Id: <200112151010.fBFAAIo13999@freefall.freebsd.org> To: skv@protey.ru, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32836: Update port: p5-XML-LibXML-1.31 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: p5-XML-LibXML-1.31 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Dec 15 02:10:01 PST 2001 State-Changed-Why: committed, thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32836 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 2:19:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 86FBC37B416; Sat, 15 Dec 2001 02:19:41 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFABFL14248; Sat, 15 Dec 2001 02:11:15 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 02:11:15 -0800 (PST) From: Message-Id: <200112151011.fBFABFL14248@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/32837: Update port: p5-XML-DOM-1.35 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: p5-XML-DOM-1.35 Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: ijliao Responsible-Changed-When: Sat Dec 15 02:10:59 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32837 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 2:30:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D177237B417 for ; Sat, 15 Dec 2001 02:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFAU6q15531; Sat, 15 Dec 2001 02:30:06 -0800 (PST) (envelope-from gnats) Received: from mailout03.sul.t-online.com (mailout03.sul.t-online.com [194.25.134.81]) by hub.freebsd.org (Postfix) with ESMTP id 89A0B37B41A; Sat, 15 Dec 2001 02:24:04 -0800 (PST) Received: from fwd04.sul.t-online.de by mailout03.sul.t-online.de with smtp id 16FBl7-0003BT-0C; Sat, 15 Dec 2001 11:09:33 +0100 Received: from theater.dyndns.org (320068889749-0001@[217.224.148.40]) by fmrl04.sul.t-online.com with esmtp id 16FBkx-0q2uvYC; Sat, 15 Dec 2001 11:09:23 +0100 Received: (from vs@localhost) by theater.dyndns.org (8.11.6/8.11.4) id fBFA9Nm07198; Sat, 15 Dec 2001 11:09:23 +0100 (CET) (envelope-from vs) Message-Id: <200112151009.fBFA9Nm07198@theater.dyndns.org> Date: Sat, 15 Dec 2001 11:09:23 +0100 (CET) From: Volker Stolz To: FreeBSD-gnats-submit@freebsd.org Cc: des@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32866: www/linux-opera considered harmful, downgrade to previous 5.x Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32866 >Category: ports >Synopsis: www/linux-opera considered harmful, downgrade to previous 5.x >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 02:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Volker Stolz >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD erde.ikea.net 4.4-STABLE FreeBSD 4.4-STABLE #6: Sat Oct 13 11:05:01 CEST 2001 root@monster.ikea.net:/opt/obj/opt/src/sys/GATE i386 >Description: The www/linux-opera port got updated to using the brand new 6.0TP2 which has several issues including - some JavaScript breakage - bad interaction with proxies/junkbuster ("hanging" connections) - sends you sometimes to an old URL when entering a new one - will print the HTML code instead of rendering it The previous version was *much* more stable. I suggest backing out the new version and revertering to the latest version from 5.x. The version 6.0TP2 could be provided by a separate port, e.g. www/linux-opera6. >How-To-Repeat: Update Opera from ports, try to use it more than 5 minutes. >Fix: Downgrade to 5.x >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 3:29:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C4C737B405; Sat, 15 Dec 2001 03:29:41 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFBLP122770; Sat, 15 Dec 2001 03:21:25 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 03:21:25 -0800 (PST) From: Message-Id: <200112151121.fBFBLP122770@freefall.freebsd.org> To: pat@FreeBSD.org, freebsd-ports@FreeBSD.org, des@FreeBSD.org Subject: Re: ports/32866: www/linux-opera considered harmful, downgrade to previous 5.x Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/linux-opera considered harmful, downgrade to previous 5.x Responsible-Changed-From-To: freebsd-ports->des Responsible-Changed-By: pat Responsible-Changed-When: Sat Dec 15 03:20:52 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32866 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 3:39:50 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A907E37B422; Sat, 15 Dec 2001 03:39:41 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFBVDW23572; Sat, 15 Dec 2001 03:31:13 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 03:31:13 -0800 (PST) From: Message-Id: <200112151131.fBFBVDW23572@freefall.freebsd.org> To: pat@FreeBSD.org, freebsd-ports@FreeBSD.org, ache@FreeBSD.org Subject: Re: ports/32856: Update port: graphics/png to 1.2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: graphics/png to 1.2.1 Responsible-Changed-From-To: freebsd-ports->ache Responsible-Changed-By: pat Responsible-Changed-When: Sat Dec 15 03:30:31 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32856 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 3:39:50 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1118637B423; Sat, 15 Dec 2001 03:39:42 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFBZqu24375; Sat, 15 Dec 2001 03:35:52 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 03:35:52 -0800 (PST) From: Message-Id: <200112151135.fBFBZqu24375@freefall.freebsd.org> To: pat@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/32863: Update port: x11-wm/aewm to 1.1.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: x11-wm/aewm to 1.1.3 Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: pat Responsible-Changed-When: Sat Dec 15 03:35:20 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32863 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 3:40: 2 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6341737B420; Sat, 15 Dec 2001 03:39:42 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFBU9E23384; Sat, 15 Dec 2001 03:30:09 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 03:30:09 -0800 (PST) From: Message-Id: <200112151130.fBFBU9E23384@freefall.freebsd.org> To: pat@FreeBSD.org, freebsd-ports@FreeBSD.org, jedgar@FreeBSD.org Subject: Re: ports/32857: Update port: graphics/pngcrush to 1.5.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: graphics/pngcrush to 1.5.8 Responsible-Changed-From-To: freebsd-ports->jedgar Responsible-Changed-By: pat Responsible-Changed-When: Sat Dec 15 03:29:28 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32857 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 3:40: 4 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B844F37B425; Sat, 15 Dec 2001 03:39:42 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFBWtr23867; Sat, 15 Dec 2001 03:32:55 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 03:32:55 -0800 (PST) From: Message-Id: <200112151132.fBFBWtr23867@freefall.freebsd.org> To: pat@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/32864: Update port: x11-wm/swm to 1.3.2 (fix ports/31303) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: x11-wm/swm to 1.3.2 (fix ports/31303) Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: pat Responsible-Changed-When: Sat Dec 15 03:32:06 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32864 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 3:49:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53C8537B41E; Sat, 15 Dec 2001 03:49:41 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFBesI24651; Sat, 15 Dec 2001 03:40:54 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 03:40:54 -0800 (PST) From: Message-Id: <200112151140.fBFBesI24651@freefall.freebsd.org> To: tkato@prontomail.com, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/31451: Update port: graphics/gd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: graphics/gd State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Sat Dec 15 03:40:18 PST 2001 State-Changed-Why: Superceded by PR 32854 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31451 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 3:59:49 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 580D237B417; Sat, 15 Dec 2001 03:59:41 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFBqX325618; Sat, 15 Dec 2001 03:52:33 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 03:52:33 -0800 (PST) From: Message-Id: <200112151152.fBFBqX325618@freefall.freebsd.org> To: abgoeree@wish.net, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32792: Upgrade databases/adodb to v1.63 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Upgrade databases/adodb to v1.63 State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Sat Dec 15 03:52:01 PST 2001 State-Changed-Why: Committed, Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32792 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 4: 9:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D17337B41B; Sat, 15 Dec 2001 04:09:41 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFC8HB37029; Sat, 15 Dec 2001 04:08:17 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 04:08:17 -0800 (PST) From: Message-Id: <200112151208.fBFC8HB37029@freefall.freebsd.org> To: tkato@prontomail.com, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32865: Update port: x11/xdialog to 2.0.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: x11/xdialog to 2.0.4 State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Sat Dec 15 04:07:51 PST 2001 State-Changed-Why: Committed, Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32865 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 4:49:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B39837B416; Sat, 15 Dec 2001 04:49:41 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFCmt541310; Sat, 15 Dec 2001 04:48:55 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 04:48:55 -0800 (PST) From: Message-Id: <200112151248.fBFCmt541310@freefall.freebsd.org> To: osa@FreeBSD.org.ru, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32794: update games/gtkballs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update games/gtkballs State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Sat Dec 15 04:48:30 PST 2001 State-Changed-Why: Committed, Thanks http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32794 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 4:59:51 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0882F37B416; Sat, 15 Dec 2001 04:59:49 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFCrAF41687; Sat, 15 Dec 2001 04:53:10 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 04:53:10 -0800 (PST) From: Message-Id: <200112151253.fBFCrAF41687@freefall.freebsd.org> To: tkato@prontomail.com, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32860: Update port: mail/nail to 9.29 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: mail/nail to 9.29 State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Sat Dec 15 04:52:41 PST 2001 State-Changed-Why: Committed Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32860 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 4:59:52 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DA0837B417; Sat, 15 Dec 2001 04:59:49 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFCtwB41970; Sat, 15 Dec 2001 04:55:58 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 04:55:58 -0800 (PST) From: Message-Id: <200112151255.fBFCtwB41970@freefall.freebsd.org> To: tkato@prontomail.com, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32861: Update port: net/maradns to 0.8.99 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: net/maradns to 0.8.99 State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Sat Dec 15 04:55:22 PST 2001 State-Changed-Why: Committed, Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32861 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 6: 0:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BD1B37B419 for ; Sat, 15 Dec 2001 06:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFE01Q59471; Sat, 15 Dec 2001 06:00:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 66D4437B416 for ; Sat, 15 Dec 2001 05:53:43 -0800 (PST) Received: from 3wgraphics.com (ppp-9-066.comintern.ru [213.148.9.66]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBFDrOQ501238 for ; Sat, 15 Dec 2001 16:53:29 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16FFB0-000JzN-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 15 Dec 2001 16:48:30 +0300 Message-Id: Date: Sat, 15 Dec 2001 16:48:30 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32868: New port: p5-Inline-Filters-0.12 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32868 >Category: ports >Synopsis: New port: p5-Inline-Filters-0.12 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 06:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-Inline-Filters-0.12 Common source code filters for Inline Modules >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Inline-Filters # p5-Inline-Filters/distinfo # p5-Inline-Filters/Makefile # p5-Inline-Filters/pkg-comment # p5-Inline-Filters/pkg-descr # p5-Inline-Filters/pkg-plist # echo c - p5-Inline-Filters mkdir -p p5-Inline-Filters > /dev/null 2>&1 echo x - p5-Inline-Filters/distinfo sed 's/^X//' >p5-Inline-Filters/distinfo << 'END-of-p5-Inline-Filters/distinfo' XMD5 (Inline-Filters-0.12.tar.gz) = 388567f0ce9d59a4c5145ef59312815d END-of-p5-Inline-Filters/distinfo echo x - p5-Inline-Filters/Makefile sed 's/^X//' >p5-Inline-Filters/Makefile << 'END-of-p5-Inline-Filters/Makefile' X# New ports collection makefile for: Inline::Filters X# Date created: 14 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= Inline-Filters XPORTVERSION= 0.12 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Inline XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Inline.pm:${PORTSDIR}/devel/p5-Inline XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= Inline::Filters.3 X X.include END-of-p5-Inline-Filters/Makefile echo x - p5-Inline-Filters/pkg-comment sed 's/^X//' >p5-Inline-Filters/pkg-comment << 'END-of-p5-Inline-Filters/pkg-comment' XCommon source code filters for Inline Modules END-of-p5-Inline-Filters/pkg-comment echo x - p5-Inline-Filters/pkg-descr sed 's/^X//' >p5-Inline-Filters/pkg-descr << 'END-of-p5-Inline-Filters/pkg-descr' XInline::Filters provides common source code filters to Inline Language XModules. Unless you're an Inline module developer, you can just read the Xnext section. X XWWW: http://search.cpan.org/search?dist=Inline-Filters X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-Inline-Filters/pkg-descr echo x - p5-Inline-Filters/pkg-plist sed 's/^X//' >p5-Inline-Filters/pkg-plist << 'END-of-p5-Inline-Filters/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/Filters/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Inline/Filters.pm Xlib/perl5/site_perl/%%PERL_VER%%/Inline/Filters.pod X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/Filters X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Inline 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline 2>/dev/null || true END-of-p5-Inline-Filters/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 6: 0:32 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2095F37B416 for ; Sat, 15 Dec 2001 06:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFE01T59462; Sat, 15 Dec 2001 06:00:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 5F73C37B405 for ; Sat, 15 Dec 2001 05:53:11 -0800 (PST) Received: from 3wgraphics.com (ppp-9-066.comintern.ru [213.148.9.66]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBFDr6Q512851 for ; Sat, 15 Dec 2001 16:53:07 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16FFAw-000JwN-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 15 Dec 2001 16:48:26 +0300 Message-Id: Date: Sat, 15 Dec 2001 16:48:26 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32867: New port: p5-Inline-ASM-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32867 >Category: ports >Synopsis: New port: p5-Inline-ASM-0.03 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 06:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-Inline-ASM-0.03 Write Perl Subroutines in assembler >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Inline-ASM # p5-Inline-ASM/Makefile # p5-Inline-ASM/pkg-comment # p5-Inline-ASM/pkg-descr # p5-Inline-ASM/pkg-plist # p5-Inline-ASM/distinfo # echo c - p5-Inline-ASM mkdir -p p5-Inline-ASM > /dev/null 2>&1 echo x - p5-Inline-ASM/Makefile sed 's/^X//' >p5-Inline-ASM/Makefile << 'END-of-p5-Inline-ASM/Makefile' X# New ports collection makefile for: Inline::ASM X# Date created: 14 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= Inline-ASM XPORTVERSION= 0.03 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Inline XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Inline.pm:${PORTSDIR}/devel/p5-Inline XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes XCONFIGURE_ARGS= END-of-p5-Inline-ASM/Makefile echo x - p5-Inline-ASM/pkg-comment sed 's/^X//' >p5-Inline-ASM/pkg-comment << 'END-of-p5-Inline-ASM/pkg-comment' XWrite Perl Subroutines in assembler END-of-p5-Inline-ASM/pkg-comment echo x - p5-Inline-ASM/pkg-descr sed 's/^X//' >p5-Inline-ASM/pkg-descr << 'END-of-p5-Inline-ASM/pkg-descr' XInline::ASM allows you to write Perl subroutines in assembly language. XOf course, many C compilers allow you to put assembly right in your C Xcode, so this module does not provide any new functionality. It does, Xhowever, provide a feature most C compilers don't: you can mix different Xassembler syntaxes in the same file! X XWWW: http://search.cpan.org/search?dist=Inline-ASM X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-Inline-ASM/pkg-descr echo x - p5-Inline-ASM/pkg-plist sed 's/^X//' >p5-Inline-ASM/pkg-plist << 'END-of-p5-Inline-ASM/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/ASM/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Inline/ASM.pm Xlib/perl5/site_perl/%%PERL_VER%%/Inline/ASM.pod X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/ASM X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Inline 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline 2>/dev/null || true END-of-p5-Inline-ASM/pkg-plist echo x - p5-Inline-ASM/distinfo sed 's/^X//' >p5-Inline-ASM/distinfo << 'END-of-p5-Inline-ASM/distinfo' XMD5 (Inline-ASM-0.03.tar.gz) = af0241d8d9993598fc146eab4be247b2 END-of-p5-Inline-ASM/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 6: 4:57 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EAD1E37B41B for ; Sat, 15 Dec 2001 06:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFE01v59480; Sat, 15 Dec 2001 06:00:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 997A837B41A for ; Sat, 15 Dec 2001 05:53:43 -0800 (PST) Received: from 3wgraphics.com (ppp-9-066.comintern.ru [213.148.9.66]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBFDr8Q511442 for ; Sat, 15 Dec 2001 16:53:08 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16FFAy-000Jxs-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 15 Dec 2001 16:48:28 +0300 Message-Id: Date: Sat, 15 Dec 2001 16:48:28 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32869: New port: p5-Inline-CPP-0.23 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32869 >Category: ports >Synopsis: New port: p5-Inline-CPP-0.23 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 06:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-Inline-CPP-0.23 Write Perl subroutines and classes in C++ >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Inline-CPP # p5-Inline-CPP/distinfo # p5-Inline-CPP/work # p5-Inline-CPP/work/Inline-CPP-0.23 # p5-Inline-CPP/work/Inline-CPP-0.23/README # p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pod # p5-Inline-CPP/work/Inline-CPP-0.23/grammar # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/02scope.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/16varlst.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/01nherit.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/14const.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/13vararg.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/12retlst.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/10struct.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/08anon.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/06deflt.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/15stvar.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/11minhrt.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/07static.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/09purevt.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/03inline.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/05virt.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/04const.t # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/grammar.pm # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile.PL # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/pm_to_blib # p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile # p5-Inline-CPP/work/Inline-CPP-0.23/MANIFEST # p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pm # p5-Inline-CPP/work/Inline-CPP-0.23/Changes # p5-Inline-CPP/work/Inline-CPP-0.23/Makefile.PL # p5-Inline-CPP/work/Inline-CPP-0.23/t # p5-Inline-CPP/work/Inline-CPP-0.23/t/02prefix.t # p5-Inline-CPP/work/Inline-CPP-0.23/t/01basic.t # p5-Inline-CPP/work/Inline-CPP-0.23/TESTED # p5-Inline-CPP/work/Inline-CPP-0.23/blib # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/.exists # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pod # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pm # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/.exists # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/grammar.pm # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/.exists # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/grammar # p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/grammar/.exists # p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch # p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto # p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline # p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP # p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/.exists # p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/grammar # p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/grammar/.exists # p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3 # p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/.exists # p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/Inline::CPP.3 # p5-Inline-CPP/work/Inline-CPP-0.23/Makefile # p5-Inline-CPP/work/Inline-CPP-0.23/pm_to_blib # p5-Inline-CPP/work/.extract_done.p5-Inline-CPP-0.23 # p5-Inline-CPP/work/.patch_done.p5-Inline-CPP-0.23 # p5-Inline-CPP/work/.configure_done.p5-Inline-CPP-0.23 # p5-Inline-CPP/work/.build_done.p5-Inline-CPP-0.23 # p5-Inline-CPP/Makefile # p5-Inline-CPP/pkg-comment # p5-Inline-CPP/pkg-descr # p5-Inline-CPP/pkg-plist # echo c - p5-Inline-CPP mkdir -p p5-Inline-CPP > /dev/null 2>&1 echo x - p5-Inline-CPP/distinfo sed 's/^X//' >p5-Inline-CPP/distinfo << 'END-of-p5-Inline-CPP/distinfo' XMD5 (Inline-CPP-0.23.tar.gz) = 2d7826f5224836f200751fc82ec165de END-of-p5-Inline-CPP/distinfo echo c - p5-Inline-CPP/work mkdir -p p5-Inline-CPP/work > /dev/null 2>&1 echo c - p5-Inline-CPP/work/Inline-CPP-0.23 mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23 > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/README sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/README << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/README' XINTRODUCTION: X XInline::CPP -- Write Perl subroutines and classes in C++. X XInline::CPP lets you write Perl subroutines and classes in C++. You Xdon't have to learn XS or SWIG, you can just put code right "inline" Xin your source. X XExample: X X use Inline CPP => <<'END'; X X class JAxH { X public: X JAxH(char *x); X X SV* data(); X private: X SV *dat; X }; X X JAxH::JAxH(char *x) { dat = newSVpvf("Just Another %s Hacker", x); } X SV* JAxH::data() { return dat; } X X END X X print JAxH->new('Inline')->data(), "\n"; X XWhen run, this complete program prints: X X Just Another Inline Hacker. X X----------------------------------------------------------------------------- XFEATURES: X XInline::CPP version 0.23 is a minor upgrade from previous versions. It Xincludes: X X+ Bug fix -- allow static member variables X X----------------------------------------------------------------------------- XINSTALLATION: X XThis module requires Inline::C.pm version 0.42 or higher to be installed. X XTo install Inline::CPP do this: X Xperl Makefile.PL Xmake Xmake test Xmake install X X(On ActivePerl for MSWin32, use nmake instead of make.) X XYou have to 'make install' before you can run it successfully. X X----------------------------------------------------------------------------- XINFORMATION: X X- For more information on Inline::CPP see 'perldoc Inline::CPP'. X- For information about Inline.pm, see 'perldoc Inline'. X- For information on using Perl with C or C++, see 'perldoc perlapi' X XThe Inline mailing list is inline@perl.org. Send mail to Xinline-subscribe@perl.org to subscribe. X XPlease send questions and comments to "Neil Watkiss" X XCopyright (c) 2000, Neil Watkiss. All Rights Reserved. END-of-p5-Inline-CPP/work/Inline-CPP-0.23/README echo x - p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pod sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pod << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pod' X=head1 NAME X XInline::CPP - Write Perl subroutines and classes in C++. X X=head1 SYNOPSIS X X use Inline CPP; X X print "9 + 16 = ", add(9, 16), "\n"; X print "9 - 16 = ", subtract(9, 16), "\n"; X X __END__ X __CPP__ X X int add(int x, int y) { X return x + y; X } X X int subtract(int x, int y) { X return x - y; X } X X END_OF_CPP_CODE X X=head1 DESCRIPTION X XThe C module allows you to put C++ source code directly X"inline" in a Perl script or module. You code classes or functions in XC++, and you can use them as if they were written in Perl. X X=head1 Choosing a C++ Compiler X XInline::CPP just parses your C++ code and creates bindings to it. Like XInline::C, you will need a suitable compiler the first time you run the Xscript. Choosing a C++ compiler can prove difficult, because Perl is Xwritten in C, not C++. X XHere's the rule: use any C++ compiler that's compatible with the compiler Xwhich built perl. For instance, if perl was built with C, use C. XIf you're on a Sun or an IRIX box and the system C compiler C built perl, Xthen use the system C++ compiler, C. X XSome compilers actually compile both C and C++ with the same compiler. XMicrosoft's C is one such compiler -- you pass it the <-TP> flag Xto convince it that you want C++ mode. X X=head1 Using Inline::CPP X XInline::CPP is very similar to Inline::C. It uses a grammar to Xparse your C++ code, and binds to functions or classes which are Xrecognized. If a function is recognized, it will be available from XPerl space. If the function's signature is not recognized, it will not Xbe available from Perl space, but will be available from other Xfunctions in C++. X XFor more information about the grammar used to parse C++ code, see the Xsection called "Grammar". X XThe following example shows how C++ snippets map into the Perl Xnamespace: X XExample 1: X X use Inline CPP => <<'END'; X X int doodle() { } X X class Foo { X public: X Foo(); X ~Foo(); X X int get_data() { return data; } X void set_data(int a) { data = a; } X private: X int data; X }; X X Foo::Foo() { cout << "creating a Foo()" << endl; } X Foo::~Foo() { cout << "deleting a Foo()" << endl; } X X END X XAfter running the code above, Perl's namespace would look similar to if Xfollowing code had been run: X X sub main::doodle { } X X package main::Foo; X X sub new { print "creating a Foo()\n"; bless {}, shift } X sub DESTROY { print "deleting a Foo()\n" } X X sub get_data { my $o=shift; $o->{data} } X sub set_data { my $o=shift; $o->{data} = shift } X XThe difference, of course, is that in the latter, Perl does the work. In the XInline::CPP example, all function calls get sent off to your C++ code. That Xmeans that things like this won't work: X X my $obj = new Foo; X $obj->{extrafield} = 10; X XIt doesn't work because C<$obj> is not a blessed hash. It's a blessed Xreference to a C++ object (and anyway, C++ wouldn't let you do that either, Xsince extrafield wasn't defined). X X=head1 C++ Configuration Options X XFor information on how to specify Inline configuration options, see XL. This section describes each of the configuration options Xavailable for C. Most of the options correspond either the MakeMaker Xor XS options of the same name. See L and XL. X X=head2 ALTLIBS X XAdds a new entry to the end of the list of alternative libraries to Xbind with. MakeMaker will search through this list and use the first Xentry where all the libraries are found. X X use Inline Config => ALTLIBS => '-L/my/other/lib -lfoo'; X XSee also the LIBS config option, which appends to the last entry in Xthe list. X X=head2 AUTO_INCLUDE X XSpecifies extra statements to be automatically included. They will be Xadded on to the defaults. A newline char will automatically be added. X X use Inline Config => AUTO_INCLUDE => '#include "something.h"'; X X=head2 BOOT X XSpecifies code to be run when your code is loaded. May not contain any Xblank lines. See L for more information. X X use Inline Config => BOOT => 'foo();'; X X=head2 CC X XSpecifies which compiler to use. X X=head2 CCFLAGS X XSpecifies extra compiler flags. Corresponds to the MakeMaker option. X X=head2 FILTERS X XSpecifies one (or more, in an array ref) filter which is to be applied to Xthe code just prior to parsing. The filters are executed one after another, Xeach operating on the output of the previous one. You can pass in a code Xreference or the name of a prepackaged filter. X X use Inline Config => FILTERS => [Strip_POD => \&myfilter]; X XThe filter may do anything. The code is passed as the first argument, and Xit returns the filtered code. X X=head2 INC X XSpecifies extra include directories. Corresponds to the MakeMaker Xparameter. X X use Inline Config => INC => '-I/my/path'; X X=head2 LD X XSpecifies the linker to use. X X=head2 LDDLFLAGS X XSpecifies which linker flags to use. X XNOTE: These flags will completely override the existing flags, instead Xof just adding to them. So if you need to use those too, you must Xrespecify them here. X X=head2 LIBS X XSpecifies external libraries that should be linked into your Xcode. Corresponds to the MakeMaker parameter. X X use Inline Config => LIBS => '-L/your/path -lyourlib'; X XUnlike the LIBS configuration parameter used in Inline::C, successive Xcalls to LIBS append to the previous calls. For example, X X use Inline Config => LIBS => '-L/my/path', LIBS => '-lyourlib'; X Xwill work correctly. If you want to add a new element to the list of Xpossible libraries to link with, use the Inline::CPP configuration ALTLIBS. X X=head2 MAKE X XSpecifies the name of the 'make' utility to use. X X=head2 MYEXTLIB X XSpecifies a user compiled object that should be linked in. Corresponds Xto the MakeMaker parameter. X X use Inline Config => MYEXTLIB => '/your/path/something.o'; X X=head2 PREFIX X XSpecifies a prefix that will automatically be stripped from C++ Xfunctions when they are bound to Perl. Less useful than in C, because XC++ mangles its function names so they don't conflict with C functions Xof the same name. X X use Inline Config => PREFIX => 'ZLIB_'; X XThis only affects C++ function names, not C++ class names or methods. X X=head2 PRESERVE_ELLIPSIS X XBy default, Inline::CPP replaces C<...> in bound functions with three Xspaces, since the arguments are always passed on the Perl Stack, not on Xthe C stack. This is usually desired, since it allows functions with Xno fixed arguments (most compilers require at least one fixed argument). X X use Inline Config => PRESERVE_ELLIPSIS => 1; Xor X use Inline Config => ENABLE => PRESERVE_ELLIPSIS; X XFor an example of why PRESERVE_ELLIPSIS is normally not needed, see the Xexamples section, below. X X=head2 STD_IOSTREAM X XBy default, Inline::CPP includes C at the top of your code. This Xoption makes it include C instead, which is the ANSI-compliant Xversion of the makefile. On non-GNU implementations, these files are not Xcompatible with one another. X X use Inline CPP => Config => ENABLE => STD_IOSTREAM; X X=head2 STRUCTS X XSpecifies whether to bind C structs into Perl using Inline::Struct. XNOTE: Support for this option is experimental. Inline::CPP already binds Xto structs defined in your code. Structs and classes are treated as the Xsame construct, except that a struct's initial scope is public, not Xprivate. Inline::Struct provides autogenerated get/set methods, an Xoverloaded constructor, and several other features not available in XInline::CPP. X XYou can invoke STRUCTS in several ways: X X use Inline Config => STRUCTS => 'Foo'; Xor X use Inline Config => STRUCTS => ['Bar', 'Baz']; X XBinds the named structs to Perl. Emits warnings if a struct was requested Xbut could not be bound for some reason. X X use Inline Config => ENABLE => 'STRUCTS'; Xor X use Inline Config => STRUCTS => 1; X XEnables binding structs to Perl. All structs which can be bound, will. This Xparameter overrides all requests for particular structs. X X use Inline Config => DISABLE => 'STRUCTS'; Xor X use Inline Config => STRUCTS => 0; X XDisables binding structs to Perl. Overrides any other settings. X XSee L for more details about how C Xbinds C structs to Perl. X X=head2 TYPEMAPS X XSpecifies extra typemap files to use. These types will modify the Xbehaviour of C++ parsing. Corresponds to the MakeMaker parameter. X X use Inline Config => TYPEMAPS => '/your/path/typemap'; X X=head1 C++-Perl Bindings X XThis section describes how the C variables get mapped to C Xvariables and back again. X XPerl uses a stack to pass arguments back and forth to subroutines. When Xa sub is called, it pops off all its arguments from the stack; when it's Xdone, it pushes its return values back onto the stack. X XXS (Perl's language for creating C or C++ extensions for Perl) uses X"typemaps" to turn SVs into C types and back again. This is done through Xvarious XS macro calls, casts, and the Perl API. XS also allows you to Xdefine your own mappings. X XC uses a much simpler approach. It parses the system's Xtypemap files and only binds to functions with supported types. You Xcan tell C about custom typemap files too. X XIf you have very complicated data structures in either C++ or Perl, Xyou should just pass them as an SV* and do the conversion yourself in Xyour C++ function. X XIn C++, a struct is a class whose default scope is public, not Xprivate. Inline::CPP binds to structs with this in mind -- get/set Xmethods are not yet auto-generated (although they are scheduled to Xland in an upcoming release). X XIf you have a C struct, you can use Inline::Struct to allow Perl Xcomplete access to the internals of the struct. You can create and Xmodify structs from inside Perl, as well as pass structs into C++ Xfunctions and return them from functions. Please note that XInline::Struct does not understand any C++ features, so constructors Xand member functions are not supported. See L for more Xdetails. X X=head1 EXAMPLES X XHere are some examples. X X=head2 Example 1 - Farmer Bob X XThis example illustrates how to use a simple class (C) from XPerl. One of the new features in Inline::CPP is binding to classes Xwith inline method definitions: X X use Inline CPP; X X my $farmer = new Farmer("Ingy", 42); X my $slavedriver = 1; X while($farmer->how_tired < 420) { X $farmer->do_chores($slavedriver); X $slavedriver <<= 1; X } X X print "Wow! The farmer worked ", $farmer->how_long, " hours!\n"; X X __END__ X __CPP__ X X class Farmer { X public: X Farmer(char *name, int age); X ~Farmer(); X X int how_tired() { return tiredness; } X int how_long() { return howlong; } X void do_chores(int howlong); X X private: X char *name; X int age; X int tiredness; X int howlong; X }; X X Farmer::Farmer(char *name, int age) { X this->name = strdup(name); X this->age = age; X tiredness = 0; X howlong = 0; X } X X Farmer::~Farmer() { X free(name); X } X X void Farmer::do_chores(int hl) { X howlong += hl; X tiredness += (age * hl); X } X X=head2 Example 2 - Plane and Simple X XThis example demonstrates some new features of Inline::CPP: support for Xinheritance and abstract classes. The defined methods of the abstract Xclass C are bound to Perl, but there is no constructor or Xdestructor, meaning you cannot instantiate an C. X XThe C is a fully-bound class which can be created and Xmanipulated from Perl. X X use Inline CPP; X X my $plane = new Airplane; X $plane->print; X if ($plane->isa("Object")) { print "Plane is an Object!\n"; } X unless ($plane->can("fly")) { print "This plane sucks!\n"; } X X __END__ X __CPP__ X X /* Abstract class (interface) */ X class Object { X public: X virtual void print() { cout << "Object (" << this << ")" << endl; } X virtual void info() = 0; X virtual bool isa(char *klass) = 0; X virtual bool can(char *method) = 0; X }; X X class Airplane : public Object { X public: X Airplane() {} X ~Airplane() {} X X virtual void info() { print(); } X virtual bool isa(char *klass) { return strcmp(klass, "Object")==0; } X virtual bool can(char *method) { X bool yes = false; X yes |= strcmp(method, "print")==0; X yes |= strcmp(method, "info")==0; X yes |= strcmp(method, "isa")==0; X yes |= strcmp(method, "can")==0; X return yes; X } X }; X X=head2 Example 3 - The Ellipsis Abridged X XOne of the big advantages of Perl over C or C++ is the ability to pass an Xarbitrary number of arguments to a subroutine. You can do it in C, but it's Xmessy and difficult to get it right. All of this mess is necessary because XC doesn't give the programmer access to the stack. Perl, on the other hand, Xgives you access to everything. X XHere's a useful function written in Perl that is relatively slow: X X sub average { X my $average = 0; X for (my $i=0; $i<@_; $i++) { X $average *= $i; X $average += $_[$i]; X $average /= $i + 1; X } X return $average; X } X XHere's the same function written in C: X X double average() { X Inline_Stack_Vars; X double avg = 0.0; X for (int i=0; i C or C++ is faster than Perl. Well..., actually, Xthat wasn't really the point; that was an aside. Look at the function Xdeclaration: X X double avg(...) X XWhy didn't we need to use varargs macros to get at the arguments? Why didn't Xthe compiler complain that there were no required arguments? Because XInline::C++ actually compiled this: X X double avg( ) X XWhen it bound to the function, it noticed the ellipsis and decided to get rid Xof it. Any function bound to Perl that has an ellipsis in it will have its Xarguments passed via the Perl stack, not the C stack. That means if you write Xa function like this: X X void myprintf(char *format, ...); X Xthen you'd better be reading things from the Perl stack. If you aren't, then Xspecify the PRESERVE_ELLIPSIS option in your script. That will leave the Xellipsis in the code for the compiler to whine about. :) X X=head2 Example 4 - Stacks and Queues X XEveryone who learns C++ writes a stack and queue class sooner or Xlater. I might as well try it from Inline. But why reinvent the wheel? XPerl has a perfectly good Array type, which can easily implement both Xa Queue and a Stack. X XThis example implements a Queue and a Stack class, and shows off just Xa few more new features of Inline::CPP: default values to arguments, X X use Inline CPP; X X my $q = new Queue; X $q->q(50); X $q->q("Where am I?"); X $q->q("In a queue."); X print "There are ", $q->size, " items in the queue\n"; X while($q->size) { X print "About to dequeue: ", $q->peek, "\n"; X print "Actually dequeued: ", $q->dq, "\n"; X } X X my $s = new Stack; X $s->push(42); X $s->push("What?"); X print "There are ", $s->size, " items on the stack\n"; X while($s->size) { X print "About to pop: ", $s->peek, "\n"; X print "Actually popped: ", $s->pop, "\n"; X } X X __END__ X __CPP__ X X class Queue { X public: X Queue(int sz=0) { q = newAV(); if (sz) av_extend(q, sz-1); } X ~Queue() { av_undef(q); } X X int size() {return av_len(q) + 1; } X X int q(SV *item) { av_push(q, SvREFCNT_inc(item)); return av_len(q)+1; } X SV *dq() { return av_shift(q); } X SV *peek() { return size() ? SvREFCNT_inc(*av_fetch(q,0,0)): &PL_sv_undef;} X X private: X AV *q; X }; X X class Stack { X public: X Stack(int sz=0) { s = newAV(); if (sz) av_extend(s, sz-1); } X ~Stack() { av_undef(s); } X X int size() { return av_len(s) + 1; } X X int push(SV *i) { av_push(s, SvREFCNT_inc(i)); return av_len(s)+1; } X SV *pop() { return av_pop(s); } X SV *peek() { return size() ? SvREFCNT_inc(*av_fetch(s,size()-1,0)) : &PL_sv_undef; } X X private: X AV *s; X }; X X=head1 Grammar Details X XPerl 5.6.0 is recommended for Inline::CPP, and is required to get all the Xnew features. If you are using Perl 5.005_03 the package will build and run, Xbut you will have problems in certain circumstances: X X=head2 Inline function definitions X XFor the purposes of this discussion, inline function definitions are best Xdescribed by this example: X X class Foo { X public: X Foo() { /* Do something */ } X }; X XThis example shows a class with a constructor defined inline. Inline::CPP can Xparse this example with 5.005. But this example requires Perl 5.6.0: X X class Foo { X public: X Foo() { if(1) { /* Do something */ } } X }; X XHere's what happened: Inline::CPP saw a class, saw the method, then noticed Xit was an inline method. So it grabbed this text: X X "{ if(1) { /* Do something */ }" X XAnd then it tried to match another part of the class. But it failed because Xthe next part of the string is this (with newlines trimmed): X X "} };" X XThe remaining text doesn't parse right. There are two solutions: X X=over 4 X X=item a X XUse Perl version 5.6.0 or better; or, X X=item b X XMove the definition outside the class. X X=back X X=head2 Complex default parameters X XAgain, default parameters are best described by example: X X int root(double number, int whatroot=2); X XThis function takes one or two arguments. If the second is missing, C++ gives Xit the value 2. Inline::CPP can parse this simple example regardless of your Xperl version. But the following example requires 5.6.0: X X int root(double number, int whatroot=((2))); X XThat's because if you're using 5.005, your arguments are parsed with a regular Xexpression that looks for only one closing parenthesis. Any more than that, Xand you get a parse error. X XAgain, there are two solutions: X X=over 4 X X=item a X XUse Perl version 5.6.0 or better; or, X X=item b X XMake the strange expression a constant or macro and use that. X X=back X X=head2 Rant: Perl 5.005 is for Dummies X XI'm going to take the opportunity to rant. Everything in the rest of this Xsection can be ignored if you don't want to hear it. X XPerl 5.6.0 has been out for a long time. It's proven, stable, and people use Xit all the time. Perl 5.6.1 is the latest stable release. Unless you depend Xon one of the few modules which are only available for the ancient versions of XPerl, there is B not to upgrade today! X X=head1 SEE ALSO X XFor general information about how C binds code to Perl, see XL. X XFor information on using C with Perl, see L and XL. For C, see L, XL, L, and L. X XFor information on using C and C++ structs with Perl, see XL. X X=head1 BUGS AND DEFICIENCIES X XWhen reporting a bug, please do the following: X X - Put "use Inline REPORTBUG;" at the top of your code, or X use the command line option "perl -MInline=REPORTBUG ...". X - Run your code. X - Follow the printed instructions. X XHere are some things to watch out for: X X=over 4 X X=item 1 X XThe grammar used for parsing C++ is still quite simple, and does not allow Xseveral features of C++: X X=over 4 X X=item a X Xtemplates X X=item b X Xoperator overloading X X=item c X Xfunction overloading X X=back X XOther grammar problems will probably be noticed quickly. X X=item 2 X XIn order of relative importance, improvements planned in the near Xfuture are: X X=over 4 X X=item a X Xsupport for overloaded functions and methods X X=item b X Xbinding to constants and constant #defines X X=item c X Xbinding to unions X X=item d X Xautogenerated get/set methods on public members X X=back X X=back X X=head1 AUTHOR X XNeil Watkiss X XBrian Ingerson is the author of C, XC and C. He is known in the innermost Inline Xcircles as "Batman". ;) X X=head1 COPYRIGHT X XCopyright (c) 2000 - 2001, Neil Watkiss. X XAll Rights Reserved. This module is free software. It may be used, Xredistributed and/or modified under the same terms as Perl itself. X XSee http://www.perl.com/perl/misc/Artistic.html X X=cut END-of-p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pod echo c - p5-Inline-CPP/work/Inline-CPP-0.23/grammar mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/grammar > /dev/null 2>&1 echo c - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/02scope.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/02scope.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/02scope.t' Xuse Test; XBEGIN { plan tests => 2; } Xuse Inline CPP => <<'END'; X Xclass Foo { X void priv(int a) { q = a; } X int q; Xpublic: X Foo() {} X ~Foo() {} X void zippo(int quack) { printf("Hello, world!\n"); } X}; X XEND X Xok(1); XFoo->new->zippo(10); Xok(2); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/02scope.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/16varlst.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/16varlst.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/16varlst.t' Xuse Test; X# Test declarations of multiple variables in a list XBEGIN { plan tests => 2 } Xuse Inline CPP => <<'END'; X X#define NUMBER 25 X#define FOO() 25 X Xclass Foo { X public: X Foo(double _o) : o(_o) {} X ~Foo() {} X int test() { return 10; } X private: X int a, b; X char *c, d; X char *e, *f; X char g, **h; X double i, j, *k, **m, n, &o; X X static const int aa = 10, X bb = FOO(), X cc = NUMBER, X dd = 1.25 X ; X}; X Xclass Bar { X public: X Bar() { } X ~Bar() { } X int test() { return -1; } X}; X XEND Xok(Foo->new(1.23)->test, 10); Xok(Bar->new->test, -1); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/16varlst.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/01nherit.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/01nherit.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/01nherit.t' Xuse Test; XBEGIN { plan tests => 5 } X Xuse Inline CPP => <<'END'; X Xclass Foo { X public: X Foo() { X secret=0; X } X X ~Foo() { } X X int get_secret() { return secret; } X void set_secret(int s) { secret = s; } X X protected: X int secret; X}; X Xclass Bar : public Foo { X public: X Bar(int s) { secret = s; } X ~Bar() { } X X void set_secret(int s) { secret = s * 2; } X}; X XEND X X# If it works, it will print this. Otherwise it won't. Xok(1); X X# Test Foo Xmy $o = new Foo; Xok($o->get_secret(), 0); X$o->set_secret(539); Xok($o->get_secret(), 539); X X# Test Bar Xmy $p = new Bar(11); Xok($p->get_secret(), 11); X$p->set_secret(21); Xok($p->get_secret(), 42); X END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/01nherit.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/14const.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/14const.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/14const.t' Xuse Test; XBEGIN { plan tests => 1 } Xuse Inline CPP => <<'END'; Xclass Foo { X public: X Foo() {} X ~Foo() {} X char *data() const { return "Hello dolly!\n"; } X}; X XEND Xok(Foo->new->data, "Hello dolly!\n"); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/14const.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/13vararg.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/13vararg.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/13vararg.t' Xuse Test; XBEGIN { plan tests => 6 } Xuse Inline CPP; X Xok(sum(), 0); Xok(sum(1), 1); Xok(sum(1, 2), 3); Xok(sum(1, 2, 3), 6); Xok(sum(1, 2, 3, 4), 10); Xok(sum(1, 2, 3, 4, 5), 15); X X__END__ X__CPP__ X Xint sum(...) { X Inline_Stack_Vars; X int s = 0; X for (int i=0; ip5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/12retlst.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/12retlst.t' Xuse Test; XBEGIN { plan tests => 3 } Xuse Inline CPP; Xuse Data::Dumper; X Xmy @list = return_list(); Xprint Dumper \@list; Xok($list[0], 1); Xok($list[1], 'Hello?'); Xok($list[2], 15.6); X Xprint Dumper return_void(); X X__END__ X__CPP__ X Xvoid return_list() { X Inline_Stack_Vars; X Inline_Stack_Reset; X Inline_Stack_Push(sv_2mortal(newSViv(1))); X Inline_Stack_Push(sv_2mortal(newSVpv("Hello?",0))); X Inline_Stack_Push(sv_2mortal(newSVnv(15.6))); X Inline_Stack_Done; X} X Xvoid return_void() { X printf("Hello!\n"); X} END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/12retlst.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/10struct.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/10struct.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/10struct.t' Xuse Test; XBEGIN { plan tests => 1 } Xuse Inline CPP => <<'END'; X Xstruct Fizzle { X int q; X double foozle; X int quack; X Fizzle(int Q=0, double Foozle=0, int Quack=0) { X q = Q; X foozle = Foozle; X quack = Quack; X } X int get_q() { return q; } X double get_foozle() { return foozle; } X int get_quack() { return quack; } X}; X XEND X Xmy $o = new Fizzle; Xok($o->get_q, 0); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/10struct.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/08anon.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/08anon.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/08anon.t' Xuse Test; XBEGIN { plan tests => 1 } Xuse Inline CPP => <<'END'; X Xclass Foo { X public: X Foo(int, int); X}; X XFoo::Foo(int a, int b) { X X} X Xint add(int, int); Xint add(int a, int b) { return a + b; } X XEND X Xok(defined Foo->new(10, 11)); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/08anon.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/06deflt.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/06deflt.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/06deflt.t' Xuse Test; XBEGIN { plan tests => 2 } Xuse Inline CPP => <<'END'; X Xint foo(int a=10) { return a; } Xdouble pi() { return 3.1415926; } X Xclass Freak { X public: X Freak() {} X ~Freak() {} X X int foo(int a=10, int b=13+4, double c=pi()) { return (a+b)/c; } X int foo2(int a, int b=15) { return a^b; } X int foo3(int a, int b, int c=0, int d=-5) { return 2*a - b + 2*c - d; } X int foo4(int a, char *b="hello") { return a + strlen(b); } X}; X XEND Xok(Freak->new->foo, 8); Xok(foo, 10); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/06deflt.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/15stvar.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/15stvar.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/15stvar.t' Xuse Test; X# Test static variables XBEGIN { plan tests => 1 } Xuse Inline CPP => <<'END'; Xclass Foo { X public: X Foo() {} X ~Foo() {} X static int get_thing() { return s_thing; } X private: X static int s_thing; X}; X Xint Foo::s_thing = 10; X XEND Xok(Foo->new->get_thing, 10); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/15stvar.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/11minhrt.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/11minhrt.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/11minhrt.t' Xuse Test; XBEGIN { plan tests => 3 } Xuse Inline CPP; X Xok(Parent1->new->do_something, 51); Xok(Parent2->new->do_another, 17); Xok(Child->new->yet_another, 3); X X__END__ X__CPP__ X Xclass Parent1 { X public: X Parent1() { } X ~Parent1() { } X X virtual int do_something() { return 51; } X}; X Xclass Parent2 { X public: X Parent2(); X ~Parent2(); X X virtual int do_another(); X}; X XParent2::Parent2() { } XParent2::~Parent2() { } Xint Parent2::do_another() { return 17; } X Xclass Child : public Parent1, public Parent2 { X public: X Child() { } X ~Child() { } X X int yet_another() { return 3; } X}; END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/11minhrt.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/07static.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/07static.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/07static.t' Xuse Test; XBEGIN { plan test => 1 } Xuse Inline CPP => <<'END'; Xclass Foo { X public: X Foo() {} X ~Foo() {} X static char *get_string() { return "Hello, world!\n"; } X}; XEND X Xok(Foo->get_string, "Hello, world!\n"); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/07static.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/09purevt.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/09purevt.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/09purevt.t' Xuse Test; XBEGIN { plan tests => 2 } Xuse Inline CPP => <<'END'; X Xclass Abstract { X public: X virtual char *text() = 0; X virtual int greet(char *name) { X printf("Hello, %s\n", name); X return 17; X } X}; X Xclass Impl : public Abstract { X public: X Impl() {} X ~Impl() {} X virtual char *text() { return "Hello from Impl!"; } X}; X XEND X Xmy $o = new Impl; Xok($o->text, 'Hello from Impl!'); Xok($o->greet('Neil'), 17); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/09purevt.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/03inline.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/03inline.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/03inline.t' Xuse Test; XBEGIN { plan tests => 2 } X Xuse Inline CPP; Xuse strict; X Xmy $obj = new Color; Xok(ref $obj, 'main::Color'); X X$obj->set_color(15); Xprint $obj->get_color, "\n"; X Xok($obj->get_color, 15); X X__END__ X__CPP__ Xvoid prn() { X printf("prn() called!\n"); X} X Xclass Color { X public: X Color() X { X printf("new Color object created...\n"); X } X X ~Color() X { X printf("Color object being destroyed...\n"); X } X X int get_color() X { X printf("Color::get_color called. Returning %i\n", color); X return color; X } X X void set_color(int a) X { X printf("Color::set_color(%i)\n", a); X color = a; X } X X private: X int color; X}; X X END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/03inline.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/05virt.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/05virt.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/05virt.t' Xuse Test; XBEGIN { plan tests => 1 } Xuse Inline CPP => <<'END'; Xclass Foo { X public: X Foo() { } X ~Foo() { } X X virtual const char *get_data_ro() { return "Hello Sally!\n"; } X}; XEND Xok(Foo->new->get_data_ro, "Hello Sally!\n"); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/05virt.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/04const.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/04const.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/04const.t' Xuse Test; XBEGIN { plan tests => 1 } Xuse Inline CPP => <<'END'; Xclass Foo { X public: X Foo() {} X ~Foo() {} X const char *data() { return "Hello dolly!\n"; } X}; X XEND Xok(Foo->new->data, "Hello dolly!\n"); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/t/04const.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/grammar.pm sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/grammar.pm << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/grammar.pm' Xpackage Inline::CPP::grammar; X Xuse strict; Xuse vars qw($TYPEMAP_KIND $VERSION); X$VERSION = '0.23'; X X#============================================================================ X# Regular expressions to match code blocks, numbers, strings, parenthesized X# expressions, function calls, and macros. The more complex regexes are only X# implemented in 5.6.0 and above, so they're in eval-blocks. X# X# These are all adapted from the output of Damian Conway's excellent X# Regexp::Common module. In future, Inline::CPP may depend directly on it, X# but for now I'll just duplicate the code. Xuse vars qw($code_block $string $number $parens $funccall); X#============================================================================ Xeval <<'END'; # $RE{balanced}{-parens=>q|{}()[]"'|} X$code_block = qr'(?-xism:(?-xism:(?:[{](?:(?>[^][)(}{]+)|(??{$Inline::CPP::grammar::code_block}))*[}]))|(?-xism:(?-xism:(?:[(](?:(?>[^][)(}{]+)|(??{$Inline::CPP::grammar::code_block}))*[)]))|(?-xism:(?-xism:(?:[[](?:(?>[^][)(}{]+)|(??{$Inline::CPP::grammar::code_block}))*[]]))|(?-xism:(?!)))))'; XEND X$code_block = qr'{[^}]*}' if $@; # For the stragglers: here's a lame regexp. X Xeval <<'END'; # $RE{balanced}{-parens=>q|()"'|} X$parens = qr'(?-xism:(?-xism:(?:[(](?:(?>[^)(]+)|(??{$Inline::CPP::grammar::parens}))*[)]))|(?-xism:(?!)))'; XEND X$parens = qr'\([^)]*\)' if $@; # For the stragglers: here's another X X# $RE{quoted} X$string = qr'(?:(?:\")(?:[^\\\"]*(?:\\.[^\\\"]*)*)(?:\")|(?:\')(?:[^\\\']*(?:\\.[^\\\']*)*)(?:\')|(?:\`)(?:[^\\\`]*(?:\\.[^\\\`]*)*)(?:\`))'; X X# $RE{num}{real}|$RE{num}{real}{-base=>16}|$RE{num}{int} X$number = qr'(?:(?i)(?:[+-]?)(?:(?=[0123456789]|[.])(?:[0123456789]*)(?:(?:[.])(?:[0123456789]{0,}))?)(?:(?:[E])(?:(?:[+-]?)(?:[0123456789]+))|))|(?:(?i)(?:[+-]?)(?:(?=[0123456789ABCDEF]|[.])(?:[0123456789ABCDEF]*)(?:(?:[.])(?:[0123456789ABCDEF]{0,}))?)(?:(?:[G])(?:(?:[+-]?)(?:[0123456789ABCDEF]+))|))|(?:(?:[+-]?)(?:\d+))'; X$funccall = qr/[_a-zA-Z][_a-zA-Z0-9]*(?:$Inline::CPP::grammar::parens)?/; X X#============================================================================ X# Inline::CPP's grammar X#============================================================================ Xsub grammar { X <<'END'; X X{ use Data::Dumper; } X Xcode: part(s) {1} X Xpart: comment X | class_def X { X# print "Found a class: $item[1]->[0]\n"; X my $class = $item[1]->[0]; X my @parts; X for my $part (@{$item[1]->[1]}) { push @parts, @$_ for @$part } X push @{$thisparser->{data}{classes}}, $class X unless defined $thisparser->{data}{class}{$class}; X $thisparser->{data}{class}{$class} = \@parts; X# print "Class:\n", Dumper \@parts; X Inline::CPP::grammar::typemap($thisparser, $class); X 1; X } X | function_def X { X# print "found a function: $item[1]->{name}\n"; X my $name = $item[1]->{name}; X my $i=0; X for my $arg (@{$item[1]->{args}}) { X $arg->{name} = 'dummy' . ++$i unless defined $arg->{name}; X } X Inline::CPP::grammar::strip_ellipsis($thisparser, X $item[1]->{args}); X push @{$thisparser->{data}{functions}}, $name X unless defined $thisparser->{data}{function}{$name}; X $thisparser->{data}{function}{$name} = $item[1]; X# print Dumper $item[1]; X 1; X } X | all X Xclass_def: class IDENTIFIER '{' class_part(s) '}' ';' X { X# print "Found a class definition: $item[2]\n"; X [@item[2,4]] X } X | class IDENTIFIER ':' '{' class_part(s) '}' ';' X { X# print "Found a class definition: $item[2]\n"; X push @{$item[6]}, [$item[4]]; X [@item[2,6]] X } X Xinherit: scope IDENTIFIER X { {thing => 'inherits', name => $item[2], scope => $item[1]} } X Xclass_part: comment { [ {thing => 'comment'} ] } X | scope ':' class_decl(s) X { X for my $part (@{$item[3]}) { X $_->{scope} = $item[1] for @$part; X } X $item[3] X } X | class_decl(s) X { X for my $part (@{$item[1]}) { X $_->{scope} = $thisparser->{data}{defaultscope} X for @$part; X } X $item[1] X } X Xclass_decl: comment { [{thing => 'comment'}] } X | method_def X { X $item[1]->{thing} = 'method'; X# print "class_decl found a method: $item[1]->{name}\n"; X my $i=0; X for my $arg (@{$item[1]->{args}}) { X $arg->{name} = 'dummy' . ++$i unless defined $arg->{name}; X } X Inline::CPP::grammar::strip_ellipsis($thisparser, X $item[1]->{args}); X [$item[1]]; X } X | member_def X { X# print "class_decl found one or more members:\n", Dumper(\@item); X $_->{thing} = 'member' for @{$item[1]}; X $item[1]; X } X Xfunction_def: rtype IDENTIFIER '(' (s?) ')' ';' X { X {rtype => $item[1], name => $item[2], args => $item[4]} X } X | rtype IDENTIFIER '(' (s?) ')' code_block X { X {rtype => $item[1], name => $item[2], args => $item[4]} X } X Xmethod_def: IDENTIFIER '(' (s?) ')' method_imp X { X# print "con-/de-structor found: $item[1]\n"; X {name => $item[1], args => $item[3], abstract => ${$item[5]}}; X } X | rtype IDENTIFIER '(' (s?) ')' method_imp X { X# print "method found: $item[2]\n"; X $return = X {name => $item[2], rtype => $item[1], args => $item[4], X abstract => ${$item[6]}, X rconst => $thisparser->{data}{smod}{const}, X }; X $thisparser->{data}{smod}{const} = 0; X } X X# By adding smod, we allow 'const' member functions. This would also bind to X# incorrect C++ with the word 'static' after the argument list, but we don't X# care at all because such code would never be compiled successfully. X X# By adding init, we allow constructors to initialize references. Again, we'll X# allow them anywhere, but our goal is not to enforce c++ standards -- that's X# the compiler's job. Xmethod_imp: smod(?) ';' { \0 } X | smod(?) initlist(?) code_block { \0 } X | smod(?) '=' '0' ';' { \1 } X | smod(?) '=' '0' code_block { \0 } X Xinitlist: ':' X Xmember_def: anytype ';' X { X my @retval; X for my $def (@{$item[2]}) { X my $type = join '', $item[1], @{$def->[0]}; X my $name = $def->[1]; X# print "member found: type=$type, name=$name\n"; X push @retval, { name => $name, type => $type }; X } X \@retval; X } X Xvar: star(s?) IDENTIFIER '=' expr { [@item[1,2]] } X | star(s?) IDENTIFIER { [@item[1,2]] } X Xarg: type IDENTIFIER '=' expr X { X# print "argument $item[2] found\n"; X# print "expression: $item[4]\n"; X {type => $item[1], name => $item[2], optional => 1, X offset => $thisoffset} X } X | type IDENTIFIER X { X# print "argument $item[2] found\n"; X {type => $item[1], name => $item[2], offset => $thisoffset} X } X | type { {type => $item[1]} } X | '...' X { {name => '...', type => '...', offset => $thisoffset} } X XIDENTIFIER: /[~_a-z]\w*/i X { X# print "IDENTIFIER: $item[1]\n"; X $item[1] X } X X# Parse::RecDescent is retarded in this one case: if a subrule fails, it X# gives up the entire rule. This is a stupid way to get around that. Xrtype: rtype2 | rtype1 Xrtype1: TYPE star(s?) X { X $return = $item[1]; X $return .= join '',' ',@{$item[2]} if @{$item[2]}; X# print "rtype1: $return\n"; X return undef X unless(defined$thisparser->{data}{typeconv}{valid_rtypes}{$return}); X } Xrtype2: modifier(s) TYPE star(s?) X { X $return = $item[2]; X $return = join ' ',grep{$_}@{$item[1]},$return X if @{$item[1]}; X $return .= join '',' ',@{$item[3]} if @{$item[3]}; X# print "rtype2: $return\n"; X return undef X unless(defined$thisparser->{data}{typeconv}{valid_rtypes}{$return}); X $return = 'static ' . $return X if $thisparser->{data}{smod}{static}; X $thisparser->{data}{smod}{static} = 0; X } X Xtype: type2 | type1 Xtype1: TYPE star(s?) X { X $return = $item[1]; X $return .= join '',' ',@{$item[2]} if @{$item[2]}; X return undef X unless(defined$thisparser->{data}{typeconv}{valid_types}{$return}); X } Xtype2: modifier(s) TYPE star(s?) X { X $return = $item[2]; X $return = join ' ',grep{$_}@{$item[1]},$return if @{$item[1]}; X $return .= join '',' ',@{$item[3]} if @{$item[3]}; X return undef X unless(defined$thisparser->{data}{typeconv}{valid_types}{$return}); X } X Xanytype: anytype2 | anytype1 Xanytype1: TYPE star(s?) X { X $return = $item[1]; X $return .= join '',' ',@{$item[2]} if @{$item[2]}; X } Xanytype2: modifier(s) TYPE star(s?) X { X $return = $item[2]; X $return = join ' ',grep{$_}@{$item[1]},$return if @{$item[1]}; X $return .= join '',' ',@{$item[3]} if @{$item[3]}; X } X Xcomment: m{\s* // [^\n]* \n }x X | m{\s* /\* (?:[^*]+|\*(?!/))* \*/ ([ \t]*)? }x X X# long and short aren't recognized as modifiers because they break when used X# as regular types. Another Parse::RecDescent problem is greedy matching; I X# need tmodifier to "give back" long or short in cases where keeping them would X# cause the modifier rule to fail. One side-effect is 'long long' can never X# be parsed correctly here. Xmodifier: tmod X | smod { ++$thisparser->{data}{smod}{$item[1]}; ''} X | nmod { '' } Xtmod: 'unsigned' # | 'long' | 'short' Xsmod: 'const' | 'static' Xnmod: 'extern' | 'virtual' | 'mutable' | 'volatile' | 'inline' X Xscope: 'public' | 'private' | 'protected' X Xclass: 'class' { $thisparser->{data}{defaultscope} = 'private'; $item[1] } X | 'struct' { $thisparser->{data}{defaultscope} = 'public'; $item[1] } X Xstar: '*' | '&' X Xcode_block: /$Inline::CPP::grammar::code_block/ X X# Consume expressions Xexpr: { X my $o = join '', @{$item[1]}; X# print "expr: $o\n"; X $o; X} Xsubexpr: /$Inline::CPP::grammar::funccall/ # Matches a macro, too X | /$Inline::CPP::grammar::string/ X | /$Inline::CPP::grammar::number/ X | UOP subexpr XOP: '+' | '-' | '*' | '/' | '^' | '&' | '|' | '%' | '||' | '&&' XUOP: '~' | '!' | '-' | '*' | '&' X XTYPE: /\w+/ X Xall: /.*/ X XEND X X} X X#============================================================================ X# Generate typemap code for the classes and structs we bind to. This allows X# functions declared after a class to return or accept class objects as X# parameters. X#============================================================================ X$TYPEMAP_KIND = 'O_Inline_CPP_Class'; Xsub typemap { X my $parser = shift; X my $typename = shift; X X# print "Inline::CPP::grammar::typemap(): typename=$typename\n"; X X my ($TYPEMAP, $INPUT, $OUTPUT); X $TYPEMAP = "$typename *\t\t$TYPEMAP_KIND\n"; X $INPUT = <{data}{typeconv}{input_expr}{$TYPEMAP_KIND} ||= $INPUT; X $parser->{data}{typeconv}{output_expr}{$TYPEMAP_KIND} ||= $OUTPUT; X $parser->{data}{typeconv}{type_kind}{$ctypename} = $TYPEMAP_KIND; X $parser->{data}{typeconv}{valid_types}{$ctypename}++; X $parser->{data}{typeconv}{valid_rtypes}{$ctypename}++; X} X X#============================================================================ X# Default action is to strip ellipses from the C++ code. This allows having X# _only_ a '...' in the code, just like XS. It is the default. X#============================================================================ Xsub strip_ellipsis { X my $parser = shift; X my $args = shift; X return if $parser->{ILSM}{PRESERVE_ELLIPSIS}; X for (my $i=0; $i<@$args; $i++) { X next unless $args->[$i]{name} eq '...'; X # if it's the first one, just strip it X if ($i==0) { X substr($parser->{ILSM}{code}, $args->[$i]{offset} - 3, 3) = " "; X } X else { X my $prev = $i - 1; X my $prev_offset = $args->[$prev]{offset}; X my $length = $args->[$i]{offset} - $prev_offset; X substr($parser->{ILSM}{code}, $prev_offset, $length) =~ s/\S/ /g; X } X } X} END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/grammar.pm echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile.PL sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile.PL << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile.PL' Xuse ExtUtils::MakeMaker; XWriteMakefile( X NAME => 'Inline::CPP::grammar', X VERSION_FROM => 'grammar.pm', X ); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile.PL echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/pm_to_blib sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/pm_to_blib << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/pm_to_blib' END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/pm_to_blib echo x - p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile' X# This Makefile is for the Inline::CPP::grammar extension to perl. X# X# It was generated automatically by MakeMaker version X# 5.4302 (Revision: 1.222) from the contents of X# Makefile.PL. Don't edit this file, edit Makefile.PL instead. X# X# ANY CHANGES MADE HERE WILL BE LOST! X# X# MakeMaker ARGV: (q[CC=cc], q[CCFLAGS=-O -pipe ], q[PREFIX=/usr/local]) X# X# MakeMaker Parameters: X X# NAME => q[Inline::CPP::grammar] X# VERSION_FROM => q[grammar.pm] X X# --- MakeMaker post_initialize section: X X X# --- MakeMaker const_config section: X X# These definitions are from config.sh (via /usr/libdata/perl/5.00503/mach/Config.pm) X X# They may have been overridden via Makefile.PL or on the command line XAR = ar XCC = cc XCCCDLFLAGS = -DPIC -fpic XCCDLFLAGS = -Wl,-R/usr/lib XDLEXT = so XDLSRC = dl_dlopen.xs XLD = cc XLDDLFLAGS = -Wl,-E -shared -lperl -lm XLDFLAGS = -Wl,-E -lperl -lm XLIBC = XLIB_EXT = .a XOBJ_EXT = .o XOSNAME = freebsd XOSVERS = 4.0-current XRANLIB = : XSO = so XEXE_EXT = X X X# --- MakeMaker constants section: XAR_STATIC_ARGS = cr XNAME = Inline::CPP::grammar XDISTNAME = Inline-CPP-grammar XNAME_SYM = Inline_CPP_grammar XVERSION = 0.23 XVERSION_SYM = 0_23 XXS_VERSION = 0.23 XINST_BIN = ../blib/bin XINST_EXE = ../blib/script XINST_LIB = ../blib/lib XINST_ARCHLIB = ../blib/arch XINST_SCRIPT = ../blib/script XPREFIX = /usr XINSTALLDIRS = site XINSTALLPRIVLIB = /usr/libdata/perl/5.00503 XINSTALLARCHLIB = /usr/libdata/perl/5.00503/mach XINSTALLSITELIB = /usr/local/lib/perl5/site_perl/5.005 XINSTALLSITEARCH = /usr/local/lib/perl5/site_perl/5.005/i386-freebsd XINSTALLBIN = $(PREFIX)/bin XINSTALLSCRIPT = $(PREFIX)/bin XPERL_LIB = /usr/libdata/perl/5.00503 XPERL_ARCHLIB = /usr/libdata/perl/5.00503/mach XSITELIBEXP = /usr/local/lib/perl5/site_perl/5.005 XSITEARCHEXP = /usr/local/lib/perl5/site_perl/5.005/i386-freebsd XLIBPERL_A = libperl.a XFIRST_MAKEFILE = Makefile XMAKE_APERL_FILE = Makefile.aperl XPERLMAINCC = $(CC) XPERL_INC = /usr/libdata/perl/5.00503/mach/CORE XPERL = /usr/bin/perl5.00503 XFULLPERL = /usr/bin/perl5.00503 X XVERSION_MACRO = VERSION XDEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\" XXS_VERSION_MACRO = XS_VERSION XXS_DEFINE_VERSION = -D$(XS_VERSION_MACRO)=\"$(XS_VERSION)\" X XMAKEMAKER = /usr/libdata/perl/5.00503/ExtUtils/MakeMaker.pm XMM_VERSION = 5.4302 X X# FULLEXT = Pathname for extension directory (eg Foo/Bar/Oracle). X# BASEEXT = Basename part of FULLEXT. May be just equal FULLEXT. (eg Oracle) X# ROOTEXT = Directory part of FULLEXT with leading slash (eg /DBD) !!! Deprecated from MM 5.32 !!! X# PARENT_NAME = NAME without BASEEXT and no trailing :: (eg Foo::Bar) X# DLBASE = Basename part of dynamic library. May be just equal BASEEXT. XFULLEXT = Inline/CPP/grammar XBASEEXT = grammar XPARENT_NAME = Inline::CPP XDLBASE = $(BASEEXT) XVERSION_FROM = grammar.pm XOBJECT = XLDFROM = $(OBJECT) XLINKTYPE = dynamic X X# Handy lists of source code files: XXS_FILES= XC_FILES = XO_FILES = XH_FILES = XMAN1PODS = XMAN3PODS = XINST_MAN1DIR = ../blib/man1 XINSTALLMAN1DIR = /usr/local/man/man1 XMAN1EXT = 1 XINST_MAN3DIR = ../blib/man3 XINSTALLMAN3DIR = /usr/local/lib/perl5/5.00503/man/man3 XMAN3EXT = 3 XPERM_RW = 644 XPERM_RWX = 755 X X# work around a famous dec-osf make(1) feature(?): Xmakemakerdflt: all X X.SUFFIXES: .xs .c .C .cpp .cxx .cc $(OBJ_EXT) X X# Nick wanted to get rid of .PRECIOUS. I don't remember why. I seem to recall, that X# some make implementations will delete the Makefile when we rebuild it. Because X# we call false(1) when we rebuild it. So make(1) is not completely wrong when it X# does so. Our milage may vary. X# .PRECIOUS: Makefile # seems to be not necessary anymore X X.PHONY: all config static dynamic test linkext manifest X X# Where is the Config information that we are using/depend on XCONFIGDEP = $(PERL_ARCHLIB)/Config.pm $(PERL_INC)/config.h X X# Where to put things: XINST_LIBDIR = $(INST_LIB)/Inline/CPP XINST_ARCHLIBDIR = $(INST_ARCHLIB)/Inline/CPP X XINST_AUTODIR = $(INST_LIB)/auto/$(FULLEXT) XINST_ARCHAUTODIR = $(INST_ARCHLIB)/auto/$(FULLEXT) X XINST_STATIC = XINST_DYNAMIC = XINST_BOOT = X XEXPORT_LIST = X XPERL_ARCHIVE = X XTO_INST_PM = grammar.pm X XPM_TO_BLIB = grammar.pm \ X $(INST_LIBDIR)/grammar.pm X X X# --- MakeMaker tool_autosplit section: X X# Usage: $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto XAUTOSPLITFILE = $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -e 'use AutoSplit;autosplit($$ARGV[0], $$ARGV[1], 0, 1, 1) ;' X X X# --- MakeMaker tool_xsubpp section: X X X# --- MakeMaker tools_other section: X XSHELL = /bin/sh XCHMOD = chmod XCP = cp XLD = cc XMV = mv XNOOP = $(SHELL) -c true XRM_F = rm -f XRM_RF = rm -rf XTEST_F = test -f XTOUCH = touch XUMASK_NULL = umask 0 XDEV_NULL = > /dev/null 2>&1 X X# The following is a portable way to say mkdir -p X# To see which directories are created, change the if 0 to if 1 XMKPATH = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e mkpath X X# This helps us to minimize the effect of the .exists files A yet X# better solution would be to have a stable file in the perl X# distribution with a timestamp of zero. But this solution doesn't X# need any changes to the core distribution and works with older perls XEQUALIZE_TIMESTAMP = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e eqtime X X X# --- MakeMaker dist section skipped. X X# --- MakeMaker macro section: X X X# --- MakeMaker depend section: X X X# --- MakeMaker cflags section: X X X# --- MakeMaker const_loadlibs section: X X X# --- MakeMaker const_cccmd section: X X X# --- MakeMaker post_constants section: X X X# --- MakeMaker pasthru section: X XPASTHRU = LIB="$(LIB)"\ X LIBPERL_A="$(LIBPERL_A)"\ X LINKTYPE="$(LINKTYPE)"\ X PREFIX="$(PREFIX)"\ X OPTIMIZE="$(OPTIMIZE)" X X X# --- MakeMaker c_o section: X X X# --- MakeMaker xs_c section: X X X# --- MakeMaker xs_o section: X X X# --- MakeMaker top_targets section: X X#all :: config $(INST_PM) subdirs linkext manifypods X Xall :: pure_all manifypods X @$(NOOP) X Xpure_all :: config pm_to_blib subdirs linkext X @$(NOOP) X Xsubdirs :: $(MYEXTLIB) X @$(NOOP) X Xconfig :: Makefile $(INST_LIBDIR)/.exists X @$(NOOP) X Xconfig :: $(INST_ARCHAUTODIR)/.exists X @$(NOOP) X Xconfig :: $(INST_AUTODIR)/.exists X @$(NOOP) X X$(INST_AUTODIR)/.exists :: /usr/libdata/perl/5.00503/mach/CORE/perl.h X @$(MKPATH) $(INST_AUTODIR) X @$(EQUALIZE_TIMESTAMP) /usr/libdata/perl/5.00503/mach/CORE/perl.h $(INST_AUTODIR)/.exists X X -@$(CHMOD) $(PERM_RWX) $(INST_AUTODIR) X X$(INST_LIBDIR)/.exists :: /usr/libdata/perl/5.00503/mach/CORE/perl.h X @$(MKPATH) $(INST_LIBDIR) X @$(EQUALIZE_TIMESTAMP) /usr/libdata/perl/5.00503/mach/CORE/perl.h $(INST_LIBDIR)/.exists X X -@$(CHMOD) $(PERM_RWX) $(INST_LIBDIR) X X$(INST_ARCHAUTODIR)/.exists :: /usr/libdata/perl/5.00503/mach/CORE/perl.h X @$(MKPATH) $(INST_ARCHAUTODIR) X @$(EQUALIZE_TIMESTAMP) /usr/libdata/perl/5.00503/mach/CORE/perl.h $(INST_ARCHAUTODIR)/.exists X X -@$(CHMOD) $(PERM_RWX) $(INST_ARCHAUTODIR) X Xhelp: X perldoc ExtUtils::MakeMaker X XVersion_check: X @$(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \ X -MExtUtils::MakeMaker=Version_check \ X -e "Version_check('$(MM_VERSION)')" X X X# --- MakeMaker linkext section: X Xlinkext :: $(LINKTYPE) X @$(NOOP) X X X# --- MakeMaker dlsyms section: X X X# --- MakeMaker dynamic section: X X## $(INST_PM) has been moved to the all: target. X## It remains here for awhile to allow for old usage: "make dynamic" X#dynamic :: Makefile $(INST_DYNAMIC) $(INST_BOOT) $(INST_PM) Xdynamic :: Makefile $(INST_DYNAMIC) $(INST_BOOT) X @$(NOOP) X X X# --- MakeMaker dynamic_bs section: X XBOOTSTRAP = X X X# --- MakeMaker dynamic_lib section: X X X# --- MakeMaker static section: X X## $(INST_PM) has been moved to the all: target. X## It remains here for awhile to allow for old usage: "make static" X#static :: Makefile $(INST_STATIC) $(INST_PM) Xstatic :: Makefile $(INST_STATIC) X @$(NOOP) X X X# --- MakeMaker static_lib section: X X X# --- MakeMaker manifypods section: X Xmanifypods : pure_all X @$(NOOP) X X X# --- MakeMaker processPL section: X X X# --- MakeMaker installbin section: X X X# --- MakeMaker subdirs section: X X# none X X# --- MakeMaker clean section: X X# Delete temporary files but do not touch installed files. We don't delete X# the Makefile here so a later make realclean still has a makefile to use. X Xclean :: X -rm -rf ./blib $(MAKE_APERL_FILE) $(INST_ARCHAUTODIR)/extralibs.all perlmain.c mon.out core so_locations pm_to_blib *~ */*~ */*/*~ *$(OBJ_EXT) *$(LIB_EXT) perl.exe $(BOOTSTRAP) $(BASEEXT).bso $(BASEEXT).def $(BASEEXT).exp X -mv Makefile Makefile.old $(DEV_NULL) X X X# --- MakeMaker realclean section: X X# Delete temporary files (via clean) and also delete installed files Xrealclean purge :: clean X rm -rf $(INST_AUTODIR) $(INST_ARCHAUTODIR) X rm -f $(INST_LIBDIR)/grammar.pm X rm -rf Makefile Makefile.old X X X# --- MakeMaker dist_basics section skipped. X X# --- MakeMaker dist_core section skipped. X X# --- MakeMaker dist_dir section skipped. X X# --- MakeMaker dist_test section skipped. X X# --- MakeMaker dist_ci section skipped. X X# --- MakeMaker install section skipped. X X# --- MakeMaker force section: X# Phony target to force checking subdirectories. XFORCE: X @$(NOOP) X X X# --- MakeMaker perldepend section: X X X# --- MakeMaker makefile section: X X# We take a very conservative approach here, but it\'s worth it. X# We move Makefile to Makefile.old here to avoid gnu make looping. XMakefile : Makefile.PL $(CONFIGDEP) X @echo "Makefile out-of-date with respect to $?" X @echo "Cleaning current config before rebuilding Makefile..." X -@$(RM_F) Makefile.old X -@$(MV) Makefile Makefile.old X -$(MAKE) -f Makefile.old clean $(DEV_NULL) || $(NOOP) X $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" Makefile.PL "CC=cc" "CCFLAGS=-O -pipe " "PREFIX=/usr/local" X @echo "==> Your Makefile has been rebuilt. <==" X @echo "==> Please rerun the make command. <==" X false X X# To change behavior to :: would be nice, but would break Tk b9.02 X# so you find such a warning below the dist target. X#Makefile :: $(VERSION_FROM) X# @echo "Warning: Makefile possibly out of date with $(VERSION_FROM)" X X X# --- MakeMaker staticmake section: X X# --- MakeMaker makeaperl section --- XMAP_TARGET = ../perl XFULLPERL = /usr/bin/perl5.00503 X X X# --- MakeMaker test section: X XTEST_VERBOSE=0 XTEST_TYPE=test_$(LINKTYPE) XTEST_FILE = test.pl XTEST_FILES = t/*.t XTESTDB_SW = -d X Xtestdb :: testdb_$(LINKTYPE) X Xtest :: $(TEST_TYPE) X Xtest_dynamic :: pure_all X PERL_DL_NONLAZY=1 $(FULLPERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -e 'use Test::Harness qw(&runtests $$verbose); $$verbose=$(TEST_VERBOSE); runtests @ARGV;' $(TEST_FILES) X Xtestdb_dynamic :: pure_all X PERL_DL_NONLAZY=1 $(FULLPERL) $(TESTDB_SW) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(TEST_FILE) X Xtest_ : test_dynamic X Xtest_static :: test_dynamic Xtestdb_static :: testdb_dynamic X X X# --- MakeMaker ppd section: X# Creates a PPD (Perl Package Description) for a binary distribution. Xppd: X @$(PERL) -e "print qq{\n}. qq{\tInline-CPP-grammar\n}. qq{\t\n}. qq{\t\n}. qq{\t\n}. qq{\t\t\n}. qq{\t\t\n}. qq{\t\t\n}. qq{\t\n}. qq{\n}" > Inline-CPP-grammar.ppd X X# --- MakeMaker pm_to_blib section: X Xpm_to_blib: $(TO_INST_PM) X @$(PERL) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" \ X "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -MExtUtils::Install \ X -e "pm_to_blib({qw{$(PM_TO_BLIB)}},'$(INST_LIB)/auto')" X @$(TOUCH) $@ X X X# --- MakeMaker selfdocument section: X X X# --- MakeMaker postamble section: X X X# End. END-of-p5-Inline-CPP/work/Inline-CPP-0.23/grammar/Makefile echo x - p5-Inline-CPP/work/Inline-CPP-0.23/MANIFEST sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/MANIFEST << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/MANIFEST' XChanges XCPP.pm XCPP.pod XMANIFEST XMakefile.PL XREADME XTESTED Xgrammar/grammar.pm Xgrammar/Makefile.PL Xgrammar/t/01nherit.t Xgrammar/t/02scope.t Xgrammar/t/03inline.t Xgrammar/t/04const.t Xgrammar/t/05virt.t Xgrammar/t/06deflt.t Xgrammar/t/07static.t Xgrammar/t/08anon.t Xgrammar/t/09purevt.t Xgrammar/t/10struct.t Xgrammar/t/11minhrt.t Xgrammar/t/12retlst.t Xgrammar/t/13vararg.t Xgrammar/t/14const.t Xgrammar/t/15stvar.t Xgrammar/t/16varlst.t Xt/01basic.t Xt/02prefix.t END-of-p5-Inline-CPP/work/Inline-CPP-0.23/MANIFEST echo x - p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pm sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pm << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pm' Xpackage Inline::CPP; X Xuse strict; Xrequire Inline::C; Xrequire Inline::CPP::grammar; Xuse Carp; X Xuse vars qw(@ISA $VERSION); X X@ISA = qw(Inline::C); X$VERSION = "0.23"; Xmy $TYPEMAP_KIND = $Inline::CPP::grammar::TYPEMAP_KIND; X X#============================================================================ X# Register Inline::CPP as an Inline language module X#============================================================================ Xsub register { X use Config; X return { X language => 'CPP', X aliases => ['cpp', 'C++', 'c++', 'Cplusplus', 'cplusplus'], X type => 'compiled', X suffix => $Config{dlext}, X }; X} X X#============================================================================ X# Validate the C++ config options: Now mostly done in Inline::C X#============================================================================ Xsub validate { X my $o = shift; X $o->{ILSM}{MAKEFILE}{CC} ||= 'g++'; # default compiler X $o->{ILSM}{MAKEFILE}{LIBS} ||= ['-lstdc++']; # default libs X X # I haven't traced it out yet, but $o->{STRUCT} gets set before getting X # properly set from Inline::C's validate(). X $o->{STRUCT} ||= { X '.macros' => '', X '.xs' => '', X '.any' => 0, X '.all' => 0, X }; X $o->{ILSM}{AUTO_INCLUDE} ||= < X#endif X#ifdef __CYGWIN__ Xextern "C" { X#endif X#include "EXTERN.h" X#include "perl.h" X#include "XSUB.h" X#include "INLINE.h" X#ifdef __CYGWIN__ X} X#endif X#ifdef bool X#undef bool X#include <%iostream%> X#endif XEND X $o->{ILSM}{PRESERVE_ELLIPSIS} = 0 X unless defined $o->{ILSM}{PRESERVE_ELLIPSIS}; X X # Filter out the parameters we treat differently than Inline::C X my @propagate; X while(@_) { X my ($key, $value) = (shift, shift); X if ($key eq 'LIBS') { X $value = [$value] unless ref $value eq 'ARRAY'; X my $num = scalar @{$o->{ILSM}{MAKEFILE}{LIBS}} - 1; X $o->{ILSM}{MAKEFILE}{LIBS}[$num] .= ' ' . $_ X for (@$value); X next; X } X if ($key eq 'ALTLIBS') { X $value = [$value] unless ref $value eq 'ARRAY'; X push @{$o->{ILSM}{MAKEFILE}{LIBS}}, ''; X my $num = scalar @{$o->{ILSM}{MAKEFILE}{LIBS}} - 1; X $o->{ILSM}{MAKEFILE}{LIBS}[$num] .= ' ' . $_ X for (@$value); X next; X } X if ($key eq 'PRESERVE_ELLIPSIS' or X $key eq 'STD_IOSTREAM') { X croak "Argument to $key must be 0 or 1" X unless $value == 0 or $value == 1; X $o->{ILSM}{$key} = $value; X next; X } X push @propagate, $key, $value; X } X X # Replace %iostream% with the correct iostream library X my $iostream = "iostream"; X $iostream .= ".h" unless (defined $o->{ILSM}{STD_IOSTREAM} and X $o->{ILSM}{STD_IOSTREAM}); X $o->{ILSM}{AUTO_INCLUDE} =~ s|%iostream%|$iostream|g; X X # Forward all unknown requests up to Inline::C X $o->SUPER::validate(@propagate) if @propagate; X} X X#============================================================================ X# Print a small report if PRINT_INFO option is set X#============================================================================ Xsub info { X my $o = shift; X my $info = ""; X X $o->parse unless $o->{ILSM}{parser}; X my $data = $o->{ILSM}{parser}{data}; X X if (defined $o->{ILSM}{parser}{data}{classes}) { X $info .= "The following C++ classes have been bound to Perl:\n"; X for my $class (sort @{$data->{classes}}) { X my @parents = grep { $_->{thing} eq 'inherits' } X @{$data->{class}{$class}}; X $info .= "\tclass $class"; X $info .= (" : " X . join (', ', X map { $_->{scope} . " " . $_->{name} } @parents) X ) if @parents; X $info .= " {\n"; X for my $thing (sort { $a->{name} cmp $b->{name} } X @{$data->{class}{$class}}) { X my ($name, $scope, $type) = @{$thing}{qw(name scope thing)}; X next unless $scope eq 'public' and $type eq 'method'; X my $rtype = $thing->{rtype} || ""; X $info .= "\t\t$rtype" . ($rtype ? " " : ""); X $info .= $class . "::$name("; X my @args = grep { $_->{name} ne '...' } @{$thing->{args}}; X my $ellipsis = (scalar @{$thing->{args}} - scalar @args) != 0; X $info .= join ', ', (map "$_->{type} $_->{name}", @args), X $ellipsis ? "..." : (); X $info .= ");\n"; X } X $info .= "\t};\n" X } X $info .= "\n"; X } X else { X $info .= "No C++ classes have been successfully bound to Perl.\n\n"; X } X if (defined $o->{ILSM}{parser}{data}{functions}) { X $info .= "The following C++ functions have been bound to Perl:\n"; X for my $function (sort @{$data->{functions}}) { X my $func = $data->{function}{$function}; X $info .= "\t" . $func->{rtype} . " "; X $info .= $func->{name} . "("; X my @args = grep { $_->{name} ne '...' } @{$func->{args}}; X my $ellipsis = (scalar @{$func->{args}} - scalar @args) != 0; X $info .= join ', ', (map "$_->{type} $_->{name}", @args), X $ellipsis ? "..." : (); X $info .= ");\n"; X } X $info .= "\n"; X } X else { X $info .= "No C++ functions have been bound to Perl.\n\n"; X } X $info .= Inline::Struct::info($o) if $o->{STRUCT}{'.any'}; X return $info; X} X X#============================================================================ X# Generate a C++ parser X#============================================================================ Xsub get_parser { X my $o = shift; X my $grammar = Inline::CPP::grammar::grammar() X or croak "Can't find C++ grammar\n"; X $::RD_HINT++; X require Parse::RecDescent; X my $parser = Parse::RecDescent->new($grammar); X $parser->{data}{typeconv} = $o->{ILSM}{typeconv}; X $parser->{ILSM} = $o->{ILSM}; # give parser access to config options X return $parser; X} X X#============================================================================ X# Intercept xs_generate and create the typemap file X#============================================================================ Xsub xs_generate { X my $o = shift; X $o->write_typemap; X $o->SUPER::xs_generate; X} X X#============================================================================ X# Return bindings for functions and classes X#============================================================================ Xsub xs_bindings { X my $o = shift; X my ($pkg, $module) = @{$o->{API}}{qw(pkg module modfname)}; X my $data = $o->{ILSM}{parser}{data}; X my $XS = ''; X X warn("Warning: No Inline C++ functions or classes bound to Perl\n" . X "Check your C++ for Inline compatibility.\n\n") X if ((not defined $data->{classes}) X and (not defined $data->{functions}) X and ($^W)); X X for my $class (@{$data->{classes}}) { X my $proper_pkg = $pkg . "::$class"; X # Set up the proper namespace X $XS .= <{class}{$class}}) { X my ($name, $scope, $type) = @{$thing}{qw|name scope thing|}; X X # Let Perl handle inheritance X if ($type eq 'inherits' and $scope eq 'public') { X $o->{ILSM}{XS}{BOOT} ||= ''; X my $ISA_name = "${pkg}::${class}::ISA"; X my $parent = "${pkg}::${name}"; X $o->{ILSM}{XS}{BOOT} .= <{abstract}); X next if ($type eq 'method' and $thing->{abstract}); X next unless ($scope eq 'public' and $type eq 'method'); X X # generate an XS wrapper X $ctor ||= ($name eq $class); X $dtor ||= ($name eq "~$class"); X $XS .= $o->wrap($thing, $name, $class); X } X X # Provide default constructor and destructor: X $XS .= <{ILSM}{XS}{PREFIX}) ? X "PREFIX = $o->{ILSM}{XS}{PREFIX}" : X ''); X $XS .= <{functions}}) { X next if $data->{function}{$function}{rtype} =~ 'static'; # special case X $XS .= $o->wrap($data->{function}{$function}, $function); X } X X return $XS; X} X X#============================================================================ X# Generate an XS wrapper around anything: a C++ method or function X#============================================================================ Xsub wrap { X my $o = shift; X my $thing = shift; X my $name = shift; X my $class = shift || ""; X X my ($XS, $PREINIT, $CODE) = ("", "", ""); X my ($ctor, $dtor) = (0, 0); X X if ($name eq $class) { # ctor X $XS .= $class . " *\n" . $class . "::new"; X $ctor = 1; X } X elsif ($name eq "~$class") { # dtor X $XS .= "void\n$class" . "::DESTROY"; X $dtor = 1; X } X elsif ($class) { # method X $XS .= "$thing->{rtype}\n$class" . "::$thing->{name}"; X } X else { # function X $XS .= "$thing->{rtype}\n$thing->{name}"; X } X X # Filter out optional subroutine arguments X my (@args, @opts, $ellipsis, $void); X $_->{optional} ? push@opts,$_ : push@args,$_ for @{$thing->{args}}; X $ellipsis = pop @args if (@args and $args[-1]->{name} eq '...'); X $void = ($thing->{rtype} and $thing->{rtype} eq 'void'); X $XS .= join '', X ("(", X (join ", ", (map {$_->{name}} @args), X (scalar @opts or $ellipsis) ? '...' : ()), X ")\n", X ); X X # Declare the non-optional arguments for XS type-checking X $XS .= "\t$_->{type}\t$_->{name}\n" for @args; X X # Wrap "complicated" subs in stack-checking code X if ($void or $ellipsis) { X $PREINIT .= "\tI32 *\t__temp_markstack_ptr;\n"; X $CODE .= "\t__temp_markstack_ptr = PL_markstack_ptr++;\n"; X } X X if (@opts) { X $PREINIT .= "\t$_->{type}\t$_->{name};\n" for @opts; X $CODE .= "switch(items" . ($class ? '-1' : '') . ") {\n"; X X my $offset = scalar @args; # which is the first optional? X my $total = $offset + scalar @opts; X for (my $i=$offset; $i<$total; $i++) { X $CODE .= "case " . ($i+1) . ":\n"; X my @tmp; X for (my $j=$offset; $j<=$i; $j++) { X my $targ = $opts[$j-$offset]->{name}; X my $type = $opts[$j-$offset]->{type}; X my $src = "ST($j)"; X $CODE .= $o->typeconv($targ,$src,$type,'input_expr') X . ";\n"; X push @tmp, $targ; X } X $CODE .= "\t"; X $CODE .= "RETVAL = " X unless $void; X call_or_instantiate(\$CODE, $name, $ctor, $dtor, $class, X $thing->{rconst}, $thing->{rtype}, X (map { $_->{name} } @args), @tmp); X $CODE .= "\tbreak; /* case " . ($i+1) . " */\n"; X } X $CODE .= "default:\n"; X $CODE .= "\tRETVAL = " X unless $void; X call_or_instantiate(\$CODE, $name, $ctor, $dtor, $class, X $thing->{rconst}, $thing->{rtype}, X map { $_->{name} } @args); X $CODE .= "} /* switch(items) */ \n"; X } X elsif ($void) { X $CODE .= "\t"; X call_or_instantiate(\$CODE, $name, $ctor, $dtor, $class, 0, '', X map { $_->{name} } @args); X } X elsif ($ellipsis or $thing->{rconst}) { X $CODE .= "\t"; X $CODE .= "RETVAL = "; X call_or_instantiate(\$CODE, $name, $ctor, $dtor, $class, X $thing->{rconst}, $thing->{rtype}, X map { $_->{name} } @args); X } X if ($void) { X $CODE .= <<'END'; X if (PL_markstack_ptr != __temp_markstack_ptr) { X /* truly void, because dXSARGS not invoked */ X PL_markstack_ptr = __temp_markstack_ptr; X XSRETURN_EMPTY; /* return empty stack */ X } X /* must have used dXSARGS; list context implied */ X return; /* assume stack size is correct */ XEND X } X elsif ($ellipsis) { X $CODE .= "\tPL_markstack_ptr = __temp_markstack_ptr;\n"; X } X X # The actual function: X $XS .= "PREINIT:\n$PREINIT" if length $PREINIT; X $XS .= "PP" if $void; X $XS .= "CODE:\n$CODE" if length $CODE; X $XS .= "OUTPUT:\nRETVAL\n" X if (length $CODE and not $void); X $XS .= "\n"; X return $XS; X} X Xsub call_or_instantiate { X my $text_ref = shift; X my ($name, $ctor, $dtor, $class, $const, $type, @args) = @_; X X # Create an rvalue (which might be const-casted later). X my $rval = ''; X $rval .= "new " if $ctor; X $rval .= "delete " if $dtor; X $rval .= "THIS->" if ($class and not ($ctor or $dtor)); X $rval .= "$name(" . join (',', @args) . ")"; X X $$text_ref .= const_cast($rval, $const, $type); X $$text_ref .= ";\n"; # this is a convenience X} X Xsub const_cast { X my $value = shift; X my $const = shift; X my $type = shift; X return $value unless $const and $type =~ /\*|\&/; X return "const_cast<$type>($value)"; X} X Xsub write_typemap { X my $o = shift; X my $filename = "$o->{API}{build_dir}/CPP.map"; X my $type_kind = $o->{ILSM}{typeconv}{type_kind}; X my $typemap = ""; X $typemap .= $_ . "\t"x2 . $TYPEMAP_KIND . "\n" X for grep { $type_kind->{$_} eq $TYPEMAP_KIND } keys %$type_kind; X return unless length $typemap; X open TYPEMAP, "> $filename" X or croak "Error: Can't write to $filename: $!"; X print TYPEMAP <{ILSM}{typeconv}{output_expr}{$TYPEMAP_KIND} XINPUT X$TYPEMAP_KIND X$o->{ILSM}{typeconv}{input_expr}{$TYPEMAP_KIND} XEND X close TYPEMAP; X $o->validate(TYPEMAPS => $filename); X} X X# Generate type conversion code: perl2c or c2perl. Xsub typeconv { X my $o = shift; X my $var = shift; X my $arg = shift; X my $type = shift; X my $dir = shift; X my $preproc = shift; X my $tkind = $o->{ILSM}{typeconv}{type_kind}{$type}; X my $ret = X eval qq{qq{$o->{ILSM}{typeconv}{$dir}{$tkind}}}; X chomp $ret; X $ret =~ s/\n/\\\n/g if $preproc; X return $ret; X} X X1; X X__END__ END-of-p5-Inline-CPP/work/Inline-CPP-0.23/CPP.pm echo x - p5-Inline-CPP/work/Inline-CPP-0.23/Changes sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/Changes << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/Changes' XRevision history for Perl extension Inline::CPP. X X0.23 Sun Jul 15 15:53:02 PDT 2001 X - Allow declaration lists: int a, b; X - Allow initializer lists: Foo(double _o) : o(_o) { } X - Added a test case for both of these. X X0.23 Sat Jul 7 15:00:55 PDT 2001 X - Renamed subs to use Inline::C's new naming scheme. Refactored some X common code into a new sub named call_or_instantiate(). X X0.23 Fri Jul 6 19:51:23 PDT 2001 X - Added smart-sense for Sun 2.6 (Solaris 6). Needed to include X libCrun.so. X X0.23 Wed Jun 20 00:56:58 PDT 2001 X - Fixed a grammar bug to allow modifiers on member variables. X - Added a test case for it. X X0.22 Mon Jun 11 11:35:26 PDT 2001 X - Compatible with Inline::0.42 (not backwards compatible). X X0.21 Wed Jun 6 08:55:50 PDT 2001 X - Compatible with Inline::0.40 (not backwards compatible). X - Documentation improvements. X X0.20 Wed May 2 23:00:50 PDT 2001 X - Made Inline::CPP a subclass of Inline::C. Moved most functionality X into Inline::C, and trimmed code a lot. X - Fixed bug in handling of 'LIBS' config option. Added a 'ALTLIBS' X config option which adds a new element to the list of alternate X libs. X - Added 'PRESERVE_ELLIPSIS' option, which prevents Inline::CPP from X replacing '...' arguments with nothing. X - Inline::CPP now works on Cygwin! X - Grammar improvements: X - Inline functions X - Inheritance X - Default parameters: void foo(int a=10, char *b="Hello"); X - Unnamed parameters: void foo(int, char *); X - Support for public, private and protected scopes X - 'structs' are now bound just like classes, except the X default scope is public. X - Support for no fixed arguments: void foo(...); X X0.14 Tue Mar 13 23:10:14 PST 2001 X - Moved the distribution module from CPP_pm to CPP.pm to get X Inline::CPP indexed properly. X - Fixed some minor bugs. X X0.13 Sun Mar 4 22:09:35 PST 2001 X - Added Win32-specific configuration code to add '-TP' flag to compiler X - Special case for AIX ($Config{so}) X - Added the following configuration options: 'CC', 'LD', 'CCFLAGS', 'LDDLFLAGS', 'MYEXTLIB', and 'MAKE': proxies for the MakeMaker options of the same name. X X0.12 Sun Jan 21 17:16:43 PST 2001 X - Upgraded modules to conform to Inline-0.31 X - Documentation upgrades X X0.11 Thu Nov 23 16:46:27 PST 2000 X - Created Inline::CPP. END-of-p5-Inline-CPP/work/Inline-CPP-0.23/Changes echo x - p5-Inline-CPP/work/Inline-CPP-0.23/Makefile.PL sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/Makefile.PL << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/Makefile.PL' Xuse ExtUtils::MakeMaker; Xuse Config; X Xmy %PREREQ_PM = ( X Inline => '0.43', X 'Inline::C' => '0.43', X); X#============================================================================ X# We'll do our own prerequisite checking, since MakeMaker does it X# in a way that always fails: 'use Inline::C 0.33' will never work. X#============================================================================ Xfor (sort keys %PREREQ_PM) { X eval "require $_"; X warn "Warning: prerequisite $_ version $PREREQ_PM{$_} not found" X if $@ or ${$_ . "::VERSION"} < $PREREQ_PM{$_}; X} X X#============================================================================ X# Make an intelligent guess about what compiler to use X#============================================================================ Xmy $cc_guess; Xmy $libs_guess; Xif ($Config{osname} =~ /^MSWin/) { X $cc_guess = 'cl -TP'; X $libs_guess = 'MSVCIRT.LIB'; X} Xelsif ($Config{osname} eq 'linux') { X $cc_guess = 'g++'; X $libs_guess = '-lstdc++'; X} Xelsif ($Config{osname} eq 'cygwin') { X $cc_guess = 'g++'; X $libs_guess = '-lstdc++'; X} Xelsif ($Config{osname} eq 'solaris' or $Config{osname} eq 'SunOS') { X if ($Config{cc} eq 'gcc') { X $cc_guess = 'g++'; X $libs_guess = '-lstdc++'; X } X else { X $cc_guess = 'CC'; X $libs_guess ='-lCrun'; X } X} X# Sane defaults for other (probably unix-like) operating systems Xelse { X $cc_guess = 'g++'; X $libs_guess = '-lstdc++'; X} X Xprint "This will configure and build Inline::C++.\n"; X Xmy $cpp_compiler = prompt("What default C++ compiler would you like to use?", X $cc_guess); Xmy $libs = prompt("What default libraries would you like to include?", X $libs_guess); X X# Apply the defaults: Xopen CPP, "CPP.pm"; Xmy @lines = ; Xclose CPP; X Xfor (@lines) { X s|\@COMPILER|$cpp_compiler| if m|\# default compiler|; X s|\@DEFAULTLIBS|$libs| if m|\# default libs|; X} X Xopen CPP, ">CPP.pm" X or die "Can't write to CPP.pm!"; Xprint CPP @lines; Xclose CPP; X XWriteMakefile( X NAME => 'Inline::CPP', X VERSION_FROM => 'CPP.pm', X clean => {FILES => '_Inline/ grammar/_Inline'}, X ); END-of-p5-Inline-CPP/work/Inline-CPP-0.23/Makefile.PL echo c - p5-Inline-CPP/work/Inline-CPP-0.23/t mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/t > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/t/02prefix.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/t/02prefix.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/t/02prefix.t' Xuse Test; XBEGIN { plan tests => 4 } X Xok(1); X Xuse Inline CPP => DATA => PREFIX => 'Foo_'; X Xok(identity("Neil"), "Neil"); Xok(identity(identity("123")), "123"); X Xok(Foo->new->dummy, "10"); X X__END__ X__CPP__ X Xstruct Foo { X int dummy() { return 10; } X}; X Xchar *Foo_identity(char *in) { return in; } X END-of-p5-Inline-CPP/work/Inline-CPP-0.23/t/02prefix.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/t/01basic.t sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/t/01basic.t << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/t/01basic.t' Xuse Test; XBEGIN { plan tests => 10 } X Xok(1); X Xmy $obj1 = Soldier->new('Benjamin', 'Private', 11111); Xmy $obj2 = Soldier->new('Sanders', 'Colonel', 22222); Xmy $obj3 = Soldier->new('Matt', 'Sergeant', 33333); X Xfor my $obj ($obj1, $obj2, $obj3) { X print $obj->get_serial, ") ", X $obj->get_name, " is a ", X $obj->get_rank, "\n"; X} X Xok($obj1->get_serial, 11111); Xok($obj1->get_name, 'Benjamin'); Xok($obj1->get_rank, 'Private'); X Xok($obj2->get_serial, 22222); Xok($obj2->get_name, 'Sanders'); Xok($obj2->get_rank, 'Colonel'); X Xok($obj3->get_serial, 33333); Xok($obj3->get_name, 'Matt'); Xok($obj3->get_rank, 'Sergeant'); X X############################################################################### X Xuse Inline 'C++' => <name = name; X this->rank = rank; X this->serial = serial; X} X Xchar *Soldier::get_name() { X return name; X} X Xchar *Soldier::get_rank() { X return rank; X} X Xint Soldier::get_serial() { X return serial; X} X XEND END-of-p5-Inline-CPP/work/Inline-CPP-0.23/t/01basic.t echo x - p5-Inline-CPP/work/Inline-CPP-0.23/TESTED sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/TESTED << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/TESTED' XThis is a list I try to keep as up-to-date as possible with the state Xof the module. This list is known to be up to date with Inline::CPP Xversion 0.20. X XKey to reading this list: XACROSS: Arch/OS/Compiler -or- Arch/Compiler XDOWN: Perl Version XCELLS: PASS|FAIL(tester's initials) X X#============================================================================ X Linux/Alpha/GCC Linux/x86/GCC OpenBSD/x86/GCC X5.005 PASS(nw) PASS(nw) X5.6.0 PASS(nw) PASS(nw) X5.6.1 PASS(nw) X5.7.0 PASS(nw) X5.7.1 PASS(nw) XAP623 PASS(nw) XAP626 PASS(nw) X#============================================================================ X Sun2.5.1/GCC Sun2.5.1/Sun SunOS5.6/GCC SunOS5.6/Sun X5.005 PASS(nw) PASS(nw) X5.6.0 X5.6.1 X5.7.0 X#============================================================================ X HPUX11/GCC HPUX11/HP HPUX10.20/GCC HPUX10.20/HP X5.005 X5.6.1 X5.7.0 X#============================================================================ X AIX/GCC AIX/IBM X5.005 X5.6.1 X5.7.0 X#============================================================================ X Win32/MS Win32/Cyg XAP623 PASS(nw) X5.005 X5.6.1 PASS(nw) X5.7.0 X#============================================================================ X XSpecial Configurations: X XThis section describes special settings needed to make Inline::CPP work on Xcertain platforms. X X o On Solaris using the SUNWspro compiler, you'll need to use these settings: X compiler: 'CC' X library: '-lCrun' X Note that if you use any of the "special" C++ things like cout or cin, X you'll need to add other libraries (and I'm not sure what they are). X On my box, I needed these flags: X library: '-lCrun -L/opt/SUNWspro/WS6/lib -lCstd' X XThings to watch out for: X X o LD_LIBRARY_PATH: If your c++ compiler is intalled in /usr/local, the X libstdc++ library might not be found. You can export LD_LIBRARY_PATH on X most systems to extend the search to the nonstandard paths. See the X ldconfig manpage for more information. X X o You need to make sure the c++ compiler you use is compatible with the X version of perl you are using. For instance, when using perl built with X gcc, you should use g++ as the c++ compiler. If your perl was built with X the SUNWspro compiler, it's probably best to use the SUNWspro compiler to X build your c++ extensions. X X o If Inline::CPP fails to bind to valid C++ code and you're running Perl X 5.005, check the Inline::CPP manpage to see if you've hit one of the known X cases where Inline::CPP needs Perl 5.6.0 or better. You may be able to X adjust your code slightly to make it match. Or you can upgrade your Perl X to the current version and forget all about it forever. X XWho are the testing people? Xnw Neil Watkiss NEILW@cpan.org Xbi Brian Ingerson INGY@cpan.org Xks Ken Simpson KenS@ActiveState.com X END-of-p5-Inline-CPP/work/Inline-CPP-0.23/TESTED echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib > /dev/null 2>&1 echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib > /dev/null 2>&1 echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/.exists sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/.exists << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/.exists' END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/.exists echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pod sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pod << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pod' X=head1 NAME X XInline::CPP - Write Perl subroutines and classes in C++. X X=head1 SYNOPSIS X X use Inline CPP; X X print "9 + 16 = ", add(9, 16), "\n"; X print "9 - 16 = ", subtract(9, 16), "\n"; X X __END__ X __CPP__ X X int add(int x, int y) { X return x + y; X } X X int subtract(int x, int y) { X return x - y; X } X X END_OF_CPP_CODE X X=head1 DESCRIPTION X XThe C module allows you to put C++ source code directly X"inline" in a Perl script or module. You code classes or functions in XC++, and you can use them as if they were written in Perl. X X=head1 Choosing a C++ Compiler X XInline::CPP just parses your C++ code and creates bindings to it. Like XInline::C, you will need a suitable compiler the first time you run the Xscript. Choosing a C++ compiler can prove difficult, because Perl is Xwritten in C, not C++. X XHere's the rule: use any C++ compiler that's compatible with the compiler Xwhich built perl. For instance, if perl was built with C, use C. XIf you're on a Sun or an IRIX box and the system C compiler C built perl, Xthen use the system C++ compiler, C. X XSome compilers actually compile both C and C++ with the same compiler. XMicrosoft's C is one such compiler -- you pass it the <-TP> flag Xto convince it that you want C++ mode. X X=head1 Using Inline::CPP X XInline::CPP is very similar to Inline::C. It uses a grammar to Xparse your C++ code, and binds to functions or classes which are Xrecognized. If a function is recognized, it will be available from XPerl space. If the function's signature is not recognized, it will not Xbe available from Perl space, but will be available from other Xfunctions in C++. X XFor more information about the grammar used to parse C++ code, see the Xsection called "Grammar". X XThe following example shows how C++ snippets map into the Perl Xnamespace: X XExample 1: X X use Inline CPP => <<'END'; X X int doodle() { } X X class Foo { X public: X Foo(); X ~Foo(); X X int get_data() { return data; } X void set_data(int a) { data = a; } X private: X int data; X }; X X Foo::Foo() { cout << "creating a Foo()" << endl; } X Foo::~Foo() { cout << "deleting a Foo()" << endl; } X X END X XAfter running the code above, Perl's namespace would look similar to if Xfollowing code had been run: X X sub main::doodle { } X X package main::Foo; X X sub new { print "creating a Foo()\n"; bless {}, shift } X sub DESTROY { print "deleting a Foo()\n" } X X sub get_data { my $o=shift; $o->{data} } X sub set_data { my $o=shift; $o->{data} = shift } X XThe difference, of course, is that in the latter, Perl does the work. In the XInline::CPP example, all function calls get sent off to your C++ code. That Xmeans that things like this won't work: X X my $obj = new Foo; X $obj->{extrafield} = 10; X XIt doesn't work because C<$obj> is not a blessed hash. It's a blessed Xreference to a C++ object (and anyway, C++ wouldn't let you do that either, Xsince extrafield wasn't defined). X X=head1 C++ Configuration Options X XFor information on how to specify Inline configuration options, see XL. This section describes each of the configuration options Xavailable for C. Most of the options correspond either the MakeMaker Xor XS options of the same name. See L and XL. X X=head2 ALTLIBS X XAdds a new entry to the end of the list of alternative libraries to Xbind with. MakeMaker will search through this list and use the first Xentry where all the libraries are found. X X use Inline Config => ALTLIBS => '-L/my/other/lib -lfoo'; X XSee also the LIBS config option, which appends to the last entry in Xthe list. X X=head2 AUTO_INCLUDE X XSpecifies extra statements to be automatically included. They will be Xadded on to the defaults. A newline char will automatically be added. X X use Inline Config => AUTO_INCLUDE => '#include "something.h"'; X X=head2 BOOT X XSpecifies code to be run when your code is loaded. May not contain any Xblank lines. See L for more information. X X use Inline Config => BOOT => 'foo();'; X X=head2 CC X XSpecifies which compiler to use. X X=head2 CCFLAGS X XSpecifies extra compiler flags. Corresponds to the MakeMaker option. X X=head2 FILTERS X XSpecifies one (or more, in an array ref) filter which is to be applied to Xthe code just prior to parsing. The filters are executed one after another, Xeach operating on the output of the previous one. You can pass in a code Xreference or the name of a prepackaged filter. X X use Inline Config => FILTERS => [Strip_POD => \&myfilter]; X XThe filter may do anything. The code is passed as the first argument, and Xit returns the filtered code. X X=head2 INC X XSpecifies extra include directories. Corresponds to the MakeMaker Xparameter. X X use Inline Config => INC => '-I/my/path'; X X=head2 LD X XSpecifies the linker to use. X X=head2 LDDLFLAGS X XSpecifies which linker flags to use. X XNOTE: These flags will completely override the existing flags, instead Xof just adding to them. So if you need to use those too, you must Xrespecify them here. X X=head2 LIBS X XSpecifies external libraries that should be linked into your Xcode. Corresponds to the MakeMaker parameter. X X use Inline Config => LIBS => '-L/your/path -lyourlib'; X XUnlike the LIBS configuration parameter used in Inline::C, successive Xcalls to LIBS append to the previous calls. For example, X X use Inline Config => LIBS => '-L/my/path', LIBS => '-lyourlib'; X Xwill work correctly. If you want to add a new element to the list of Xpossible libraries to link with, use the Inline::CPP configuration ALTLIBS. X X=head2 MAKE X XSpecifies the name of the 'make' utility to use. X X=head2 MYEXTLIB X XSpecifies a user compiled object that should be linked in. Corresponds Xto the MakeMaker parameter. X X use Inline Config => MYEXTLIB => '/your/path/something.o'; X X=head2 PREFIX X XSpecifies a prefix that will automatically be stripped from C++ Xfunctions when they are bound to Perl. Less useful than in C, because XC++ mangles its function names so they don't conflict with C functions Xof the same name. X X use Inline Config => PREFIX => 'ZLIB_'; X XThis only affects C++ function names, not C++ class names or methods. X X=head2 PRESERVE_ELLIPSIS X XBy default, Inline::CPP replaces C<...> in bound functions with three Xspaces, since the arguments are always passed on the Perl Stack, not on Xthe C stack. This is usually desired, since it allows functions with Xno fixed arguments (most compilers require at least one fixed argument). X X use Inline Config => PRESERVE_ELLIPSIS => 1; Xor X use Inline Config => ENABLE => PRESERVE_ELLIPSIS; X XFor an example of why PRESERVE_ELLIPSIS is normally not needed, see the Xexamples section, below. X X=head2 STD_IOSTREAM X XBy default, Inline::CPP includes C at the top of your code. This Xoption makes it include C instead, which is the ANSI-compliant Xversion of the makefile. On non-GNU implementations, these files are not Xcompatible with one another. X X use Inline CPP => Config => ENABLE => STD_IOSTREAM; X X=head2 STRUCTS X XSpecifies whether to bind C structs into Perl using Inline::Struct. XNOTE: Support for this option is experimental. Inline::CPP already binds Xto structs defined in your code. Structs and classes are treated as the Xsame construct, except that a struct's initial scope is public, not Xprivate. Inline::Struct provides autogenerated get/set methods, an Xoverloaded constructor, and several other features not available in XInline::CPP. X XYou can invoke STRUCTS in several ways: X X use Inline Config => STRUCTS => 'Foo'; Xor X use Inline Config => STRUCTS => ['Bar', 'Baz']; X XBinds the named structs to Perl. Emits warnings if a struct was requested Xbut could not be bound for some reason. X X use Inline Config => ENABLE => 'STRUCTS'; Xor X use Inline Config => STRUCTS => 1; X XEnables binding structs to Perl. All structs which can be bound, will. This Xparameter overrides all requests for particular structs. X X use Inline Config => DISABLE => 'STRUCTS'; Xor X use Inline Config => STRUCTS => 0; X XDisables binding structs to Perl. Overrides any other settings. X XSee L for more details about how C Xbinds C structs to Perl. X X=head2 TYPEMAPS X XSpecifies extra typemap files to use. These types will modify the Xbehaviour of C++ parsing. Corresponds to the MakeMaker parameter. X X use Inline Config => TYPEMAPS => '/your/path/typemap'; X X=head1 C++-Perl Bindings X XThis section describes how the C variables get mapped to C Xvariables and back again. X XPerl uses a stack to pass arguments back and forth to subroutines. When Xa sub is called, it pops off all its arguments from the stack; when it's Xdone, it pushes its return values back onto the stack. X XXS (Perl's language for creating C or C++ extensions for Perl) uses X"typemaps" to turn SVs into C types and back again. This is done through Xvarious XS macro calls, casts, and the Perl API. XS also allows you to Xdefine your own mappings. X XC uses a much simpler approach. It parses the system's Xtypemap files and only binds to functions with supported types. You Xcan tell C about custom typemap files too. X XIf you have very complicated data structures in either C++ or Perl, Xyou should just pass them as an SV* and do the conversion yourself in Xyour C++ function. X XIn C++, a struct is a class whose default scope is public, not Xprivate. Inline::CPP binds to structs with this in mind -- get/set Xmethods are not yet auto-generated (although they are scheduled to Xland in an upcoming release). X XIf you have a C struct, you can use Inline::Struct to allow Perl Xcomplete access to the internals of the struct. You can create and Xmodify structs from inside Perl, as well as pass structs into C++ Xfunctions and return them from functions. Please note that XInline::Struct does not understand any C++ features, so constructors Xand member functions are not supported. See L for more Xdetails. X X=head1 EXAMPLES X XHere are some examples. X X=head2 Example 1 - Farmer Bob X XThis example illustrates how to use a simple class (C) from XPerl. One of the new features in Inline::CPP is binding to classes Xwith inline method definitions: X X use Inline CPP; X X my $farmer = new Farmer("Ingy", 42); X my $slavedriver = 1; X while($farmer->how_tired < 420) { X $farmer->do_chores($slavedriver); X $slavedriver <<= 1; X } X X print "Wow! The farmer worked ", $farmer->how_long, " hours!\n"; X X __END__ X __CPP__ X X class Farmer { X public: X Farmer(char *name, int age); X ~Farmer(); X X int how_tired() { return tiredness; } X int how_long() { return howlong; } X void do_chores(int howlong); X X private: X char *name; X int age; X int tiredness; X int howlong; X }; X X Farmer::Farmer(char *name, int age) { X this->name = strdup(name); X this->age = age; X tiredness = 0; X howlong = 0; X } X X Farmer::~Farmer() { X free(name); X } X X void Farmer::do_chores(int hl) { X howlong += hl; X tiredness += (age * hl); X } X X=head2 Example 2 - Plane and Simple X XThis example demonstrates some new features of Inline::CPP: support for Xinheritance and abstract classes. The defined methods of the abstract Xclass C are bound to Perl, but there is no constructor or Xdestructor, meaning you cannot instantiate an C. X XThe C is a fully-bound class which can be created and Xmanipulated from Perl. X X use Inline CPP; X X my $plane = new Airplane; X $plane->print; X if ($plane->isa("Object")) { print "Plane is an Object!\n"; } X unless ($plane->can("fly")) { print "This plane sucks!\n"; } X X __END__ X __CPP__ X X /* Abstract class (interface) */ X class Object { X public: X virtual void print() { cout << "Object (" << this << ")" << endl; } X virtual void info() = 0; X virtual bool isa(char *klass) = 0; X virtual bool can(char *method) = 0; X }; X X class Airplane : public Object { X public: X Airplane() {} X ~Airplane() {} X X virtual void info() { print(); } X virtual bool isa(char *klass) { return strcmp(klass, "Object")==0; } X virtual bool can(char *method) { X bool yes = false; X yes |= strcmp(method, "print")==0; X yes |= strcmp(method, "info")==0; X yes |= strcmp(method, "isa")==0; X yes |= strcmp(method, "can")==0; X return yes; X } X }; X X=head2 Example 3 - The Ellipsis Abridged X XOne of the big advantages of Perl over C or C++ is the ability to pass an Xarbitrary number of arguments to a subroutine. You can do it in C, but it's Xmessy and difficult to get it right. All of this mess is necessary because XC doesn't give the programmer access to the stack. Perl, on the other hand, Xgives you access to everything. X XHere's a useful function written in Perl that is relatively slow: X X sub average { X my $average = 0; X for (my $i=0; $i<@_; $i++) { X $average *= $i; X $average += $_[$i]; X $average /= $i + 1; X } X return $average; X } X XHere's the same function written in C: X X double average() { X Inline_Stack_Vars; X double avg = 0.0; X for (int i=0; i C or C++ is faster than Perl. Well..., actually, Xthat wasn't really the point; that was an aside. Look at the function Xdeclaration: X X double avg(...) X XWhy didn't we need to use varargs macros to get at the arguments? Why didn't Xthe compiler complain that there were no required arguments? Because XInline::C++ actually compiled this: X X double avg( ) X XWhen it bound to the function, it noticed the ellipsis and decided to get rid Xof it. Any function bound to Perl that has an ellipsis in it will have its Xarguments passed via the Perl stack, not the C stack. That means if you write Xa function like this: X X void myprintf(char *format, ...); X Xthen you'd better be reading things from the Perl stack. If you aren't, then Xspecify the PRESERVE_ELLIPSIS option in your script. That will leave the Xellipsis in the code for the compiler to whine about. :) X X=head2 Example 4 - Stacks and Queues X XEveryone who learns C++ writes a stack and queue class sooner or Xlater. I might as well try it from Inline. But why reinvent the wheel? XPerl has a perfectly good Array type, which can easily implement both Xa Queue and a Stack. X XThis example implements a Queue and a Stack class, and shows off just Xa few more new features of Inline::CPP: default values to arguments, X X use Inline CPP; X X my $q = new Queue; X $q->q(50); X $q->q("Where am I?"); X $q->q("In a queue."); X print "There are ", $q->size, " items in the queue\n"; X while($q->size) { X print "About to dequeue: ", $q->peek, "\n"; X print "Actually dequeued: ", $q->dq, "\n"; X } X X my $s = new Stack; X $s->push(42); X $s->push("What?"); X print "There are ", $s->size, " items on the stack\n"; X while($s->size) { X print "About to pop: ", $s->peek, "\n"; X print "Actually popped: ", $s->pop, "\n"; X } X X __END__ X __CPP__ X X class Queue { X public: X Queue(int sz=0) { q = newAV(); if (sz) av_extend(q, sz-1); } X ~Queue() { av_undef(q); } X X int size() {return av_len(q) + 1; } X X int q(SV *item) { av_push(q, SvREFCNT_inc(item)); return av_len(q)+1; } X SV *dq() { return av_shift(q); } X SV *peek() { return size() ? SvREFCNT_inc(*av_fetch(q,0,0)): &PL_sv_undef;} X X private: X AV *q; X }; X X class Stack { X public: X Stack(int sz=0) { s = newAV(); if (sz) av_extend(s, sz-1); } X ~Stack() { av_undef(s); } X X int size() { return av_len(s) + 1; } X X int push(SV *i) { av_push(s, SvREFCNT_inc(i)); return av_len(s)+1; } X SV *pop() { return av_pop(s); } X SV *peek() { return size() ? SvREFCNT_inc(*av_fetch(s,size()-1,0)) : &PL_sv_undef; } X X private: X AV *s; X }; X X=head1 Grammar Details X XPerl 5.6.0 is recommended for Inline::CPP, and is required to get all the Xnew features. If you are using Perl 5.005_03 the package will build and run, Xbut you will have problems in certain circumstances: X X=head2 Inline function definitions X XFor the purposes of this discussion, inline function definitions are best Xdescribed by this example: X X class Foo { X public: X Foo() { /* Do something */ } X }; X XThis example shows a class with a constructor defined inline. Inline::CPP can Xparse this example with 5.005. But this example requires Perl 5.6.0: X X class Foo { X public: X Foo() { if(1) { /* Do something */ } } X }; X XHere's what happened: Inline::CPP saw a class, saw the method, then noticed Xit was an inline method. So it grabbed this text: X X "{ if(1) { /* Do something */ }" X XAnd then it tried to match another part of the class. But it failed because Xthe next part of the string is this (with newlines trimmed): X X "} };" X XThe remaining text doesn't parse right. There are two solutions: X X=over 4 X X=item a X XUse Perl version 5.6.0 or better; or, X X=item b X XMove the definition outside the class. X X=back X X=head2 Complex default parameters X XAgain, default parameters are best described by example: X X int root(double number, int whatroot=2); X XThis function takes one or two arguments. If the second is missing, C++ gives Xit the value 2. Inline::CPP can parse this simple example regardless of your Xperl version. But the following example requires 5.6.0: X X int root(double number, int whatroot=((2))); X XThat's because if you're using 5.005, your arguments are parsed with a regular Xexpression that looks for only one closing parenthesis. Any more than that, Xand you get a parse error. X XAgain, there are two solutions: X X=over 4 X X=item a X XUse Perl version 5.6.0 or better; or, X X=item b X XMake the strange expression a constant or macro and use that. X X=back X X=head2 Rant: Perl 5.005 is for Dummies X XI'm going to take the opportunity to rant. Everything in the rest of this Xsection can be ignored if you don't want to hear it. X XPerl 5.6.0 has been out for a long time. It's proven, stable, and people use Xit all the time. Perl 5.6.1 is the latest stable release. Unless you depend Xon one of the few modules which are only available for the ancient versions of XPerl, there is B not to upgrade today! X X=head1 SEE ALSO X XFor general information about how C binds code to Perl, see XL. X XFor information on using C with Perl, see L and XL. For C, see L, XL, L, and L. X XFor information on using C and C++ structs with Perl, see XL. X X=head1 BUGS AND DEFICIENCIES X XWhen reporting a bug, please do the following: X X - Put "use Inline REPORTBUG;" at the top of your code, or X use the command line option "perl -MInline=REPORTBUG ...". X - Run your code. X - Follow the printed instructions. X XHere are some things to watch out for: X X=over 4 X X=item 1 X XThe grammar used for parsing C++ is still quite simple, and does not allow Xseveral features of C++: X X=over 4 X X=item a X Xtemplates X X=item b X Xoperator overloading X X=item c X Xfunction overloading X X=back X XOther grammar problems will probably be noticed quickly. X X=item 2 X XIn order of relative importance, improvements planned in the near Xfuture are: X X=over 4 X X=item a X Xsupport for overloaded functions and methods X X=item b X Xbinding to constants and constant #defines X X=item c X Xbinding to unions X X=item d X Xautogenerated get/set methods on public members X X=back X X=back X X=head1 AUTHOR X XNeil Watkiss X XBrian Ingerson is the author of C, XC and C. He is known in the innermost Inline Xcircles as "Batman". ;) X X=head1 COPYRIGHT X XCopyright (c) 2000 - 2001, Neil Watkiss. X XAll Rights Reserved. This module is free software. It may be used, Xredistributed and/or modified under the same terms as Perl itself. X XSee http://www.perl.com/perl/misc/Artistic.html X X=cut END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pod echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pm sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pm << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pm' Xpackage Inline::CPP; X Xuse strict; Xrequire Inline::C; Xrequire Inline::CPP::grammar; Xuse Carp; X Xuse vars qw(@ISA $VERSION); X X@ISA = qw(Inline::C); X$VERSION = "0.23"; Xmy $TYPEMAP_KIND = $Inline::CPP::grammar::TYPEMAP_KIND; X X#============================================================================ X# Register Inline::CPP as an Inline language module X#============================================================================ Xsub register { X use Config; X return { X language => 'CPP', X aliases => ['cpp', 'C++', 'c++', 'Cplusplus', 'cplusplus'], X type => 'compiled', X suffix => $Config{dlext}, X }; X} X X#============================================================================ X# Validate the C++ config options: Now mostly done in Inline::C X#============================================================================ Xsub validate { X my $o = shift; X $o->{ILSM}{MAKEFILE}{CC} ||= 'g++'; # default compiler X $o->{ILSM}{MAKEFILE}{LIBS} ||= ['-lstdc++']; # default libs X X # I haven't traced it out yet, but $o->{STRUCT} gets set before getting X # properly set from Inline::C's validate(). X $o->{STRUCT} ||= { X '.macros' => '', X '.xs' => '', X '.any' => 0, X '.all' => 0, X }; X $o->{ILSM}{AUTO_INCLUDE} ||= < X#endif X#ifdef __CYGWIN__ Xextern "C" { X#endif X#include "EXTERN.h" X#include "perl.h" X#include "XSUB.h" X#include "INLINE.h" X#ifdef __CYGWIN__ X} X#endif X#ifdef bool X#undef bool X#include <%iostream%> X#endif XEND X $o->{ILSM}{PRESERVE_ELLIPSIS} = 0 X unless defined $o->{ILSM}{PRESERVE_ELLIPSIS}; X X # Filter out the parameters we treat differently than Inline::C X my @propagate; X while(@_) { X my ($key, $value) = (shift, shift); X if ($key eq 'LIBS') { X $value = [$value] unless ref $value eq 'ARRAY'; X my $num = scalar @{$o->{ILSM}{MAKEFILE}{LIBS}} - 1; X $o->{ILSM}{MAKEFILE}{LIBS}[$num] .= ' ' . $_ X for (@$value); X next; X } X if ($key eq 'ALTLIBS') { X $value = [$value] unless ref $value eq 'ARRAY'; X push @{$o->{ILSM}{MAKEFILE}{LIBS}}, ''; X my $num = scalar @{$o->{ILSM}{MAKEFILE}{LIBS}} - 1; X $o->{ILSM}{MAKEFILE}{LIBS}[$num] .= ' ' . $_ X for (@$value); X next; X } X if ($key eq 'PRESERVE_ELLIPSIS' or X $key eq 'STD_IOSTREAM') { X croak "Argument to $key must be 0 or 1" X unless $value == 0 or $value == 1; X $o->{ILSM}{$key} = $value; X next; X } X push @propagate, $key, $value; X } X X # Replace %iostream% with the correct iostream library X my $iostream = "iostream"; X $iostream .= ".h" unless (defined $o->{ILSM}{STD_IOSTREAM} and X $o->{ILSM}{STD_IOSTREAM}); X $o->{ILSM}{AUTO_INCLUDE} =~ s|%iostream%|$iostream|g; X X # Forward all unknown requests up to Inline::C X $o->SUPER::validate(@propagate) if @propagate; X} X X#============================================================================ X# Print a small report if PRINT_INFO option is set X#============================================================================ Xsub info { X my $o = shift; X my $info = ""; X X $o->parse unless $o->{ILSM}{parser}; X my $data = $o->{ILSM}{parser}{data}; X X if (defined $o->{ILSM}{parser}{data}{classes}) { X $info .= "The following C++ classes have been bound to Perl:\n"; X for my $class (sort @{$data->{classes}}) { X my @parents = grep { $_->{thing} eq 'inherits' } X @{$data->{class}{$class}}; X $info .= "\tclass $class"; X $info .= (" : " X . join (', ', X map { $_->{scope} . " " . $_->{name} } @parents) X ) if @parents; X $info .= " {\n"; X for my $thing (sort { $a->{name} cmp $b->{name} } X @{$data->{class}{$class}}) { X my ($name, $scope, $type) = @{$thing}{qw(name scope thing)}; X next unless $scope eq 'public' and $type eq 'method'; X my $rtype = $thing->{rtype} || ""; X $info .= "\t\t$rtype" . ($rtype ? " " : ""); X $info .= $class . "::$name("; X my @args = grep { $_->{name} ne '...' } @{$thing->{args}}; X my $ellipsis = (scalar @{$thing->{args}} - scalar @args) != 0; X $info .= join ', ', (map "$_->{type} $_->{name}", @args), X $ellipsis ? "..." : (); X $info .= ");\n"; X } X $info .= "\t};\n" X } X $info .= "\n"; X } X else { X $info .= "No C++ classes have been successfully bound to Perl.\n\n"; X } X if (defined $o->{ILSM}{parser}{data}{functions}) { X $info .= "The following C++ functions have been bound to Perl:\n"; X for my $function (sort @{$data->{functions}}) { X my $func = $data->{function}{$function}; X $info .= "\t" . $func->{rtype} . " "; X $info .= $func->{name} . "("; X my @args = grep { $_->{name} ne '...' } @{$func->{args}}; X my $ellipsis = (scalar @{$func->{args}} - scalar @args) != 0; X $info .= join ', ', (map "$_->{type} $_->{name}", @args), X $ellipsis ? "..." : (); X $info .= ");\n"; X } X $info .= "\n"; X } X else { X $info .= "No C++ functions have been bound to Perl.\n\n"; X } X $info .= Inline::Struct::info($o) if $o->{STRUCT}{'.any'}; X return $info; X} X X#============================================================================ X# Generate a C++ parser X#============================================================================ Xsub get_parser { X my $o = shift; X my $grammar = Inline::CPP::grammar::grammar() X or croak "Can't find C++ grammar\n"; X $::RD_HINT++; X require Parse::RecDescent; X my $parser = Parse::RecDescent->new($grammar); X $parser->{data}{typeconv} = $o->{ILSM}{typeconv}; X $parser->{ILSM} = $o->{ILSM}; # give parser access to config options X return $parser; X} X X#============================================================================ X# Intercept xs_generate and create the typemap file X#============================================================================ Xsub xs_generate { X my $o = shift; X $o->write_typemap; X $o->SUPER::xs_generate; X} X X#============================================================================ X# Return bindings for functions and classes X#============================================================================ Xsub xs_bindings { X my $o = shift; X my ($pkg, $module) = @{$o->{API}}{qw(pkg module modfname)}; X my $data = $o->{ILSM}{parser}{data}; X my $XS = ''; X X warn("Warning: No Inline C++ functions or classes bound to Perl\n" . X "Check your C++ for Inline compatibility.\n\n") X if ((not defined $data->{classes}) X and (not defined $data->{functions}) X and ($^W)); X X for my $class (@{$data->{classes}}) { X my $proper_pkg = $pkg . "::$class"; X # Set up the proper namespace X $XS .= <{class}{$class}}) { X my ($name, $scope, $type) = @{$thing}{qw|name scope thing|}; X X # Let Perl handle inheritance X if ($type eq 'inherits' and $scope eq 'public') { X $o->{ILSM}{XS}{BOOT} ||= ''; X my $ISA_name = "${pkg}::${class}::ISA"; X my $parent = "${pkg}::${name}"; X $o->{ILSM}{XS}{BOOT} .= <{abstract}); X next if ($type eq 'method' and $thing->{abstract}); X next unless ($scope eq 'public' and $type eq 'method'); X X # generate an XS wrapper X $ctor ||= ($name eq $class); X $dtor ||= ($name eq "~$class"); X $XS .= $o->wrap($thing, $name, $class); X } X X # Provide default constructor and destructor: X $XS .= <{ILSM}{XS}{PREFIX}) ? X "PREFIX = $o->{ILSM}{XS}{PREFIX}" : X ''); X $XS .= <{functions}}) { X next if $data->{function}{$function}{rtype} =~ 'static'; # special case X $XS .= $o->wrap($data->{function}{$function}, $function); X } X X return $XS; X} X X#============================================================================ X# Generate an XS wrapper around anything: a C++ method or function X#============================================================================ Xsub wrap { X my $o = shift; X my $thing = shift; X my $name = shift; X my $class = shift || ""; X X my ($XS, $PREINIT, $CODE) = ("", "", ""); X my ($ctor, $dtor) = (0, 0); X X if ($name eq $class) { # ctor X $XS .= $class . " *\n" . $class . "::new"; X $ctor = 1; X } X elsif ($name eq "~$class") { # dtor X $XS .= "void\n$class" . "::DESTROY"; X $dtor = 1; X } X elsif ($class) { # method X $XS .= "$thing->{rtype}\n$class" . "::$thing->{name}"; X } X else { # function X $XS .= "$thing->{rtype}\n$thing->{name}"; X } X X # Filter out optional subroutine arguments X my (@args, @opts, $ellipsis, $void); X $_->{optional} ? push@opts,$_ : push@args,$_ for @{$thing->{args}}; X $ellipsis = pop @args if (@args and $args[-1]->{name} eq '...'); X $void = ($thing->{rtype} and $thing->{rtype} eq 'void'); X $XS .= join '', X ("(", X (join ", ", (map {$_->{name}} @args), X (scalar @opts or $ellipsis) ? '...' : ()), X ")\n", X ); X X # Declare the non-optional arguments for XS type-checking X $XS .= "\t$_->{type}\t$_->{name}\n" for @args; X X # Wrap "complicated" subs in stack-checking code X if ($void or $ellipsis) { X $PREINIT .= "\tI32 *\t__temp_markstack_ptr;\n"; X $CODE .= "\t__temp_markstack_ptr = PL_markstack_ptr++;\n"; X } X X if (@opts) { X $PREINIT .= "\t$_->{type}\t$_->{name};\n" for @opts; X $CODE .= "switch(items" . ($class ? '-1' : '') . ") {\n"; X X my $offset = scalar @args; # which is the first optional? X my $total = $offset + scalar @opts; X for (my $i=$offset; $i<$total; $i++) { X $CODE .= "case " . ($i+1) . ":\n"; X my @tmp; X for (my $j=$offset; $j<=$i; $j++) { X my $targ = $opts[$j-$offset]->{name}; X my $type = $opts[$j-$offset]->{type}; X my $src = "ST($j)"; X $CODE .= $o->typeconv($targ,$src,$type,'input_expr') X . ";\n"; X push @tmp, $targ; X } X $CODE .= "\t"; X $CODE .= "RETVAL = " X unless $void; X call_or_instantiate(\$CODE, $name, $ctor, $dtor, $class, X $thing->{rconst}, $thing->{rtype}, X (map { $_->{name} } @args), @tmp); X $CODE .= "\tbreak; /* case " . ($i+1) . " */\n"; X } X $CODE .= "default:\n"; X $CODE .= "\tRETVAL = " X unless $void; X call_or_instantiate(\$CODE, $name, $ctor, $dtor, $class, X $thing->{rconst}, $thing->{rtype}, X map { $_->{name} } @args); X $CODE .= "} /* switch(items) */ \n"; X } X elsif ($void) { X $CODE .= "\t"; X call_or_instantiate(\$CODE, $name, $ctor, $dtor, $class, 0, '', X map { $_->{name} } @args); X } X elsif ($ellipsis or $thing->{rconst}) { X $CODE .= "\t"; X $CODE .= "RETVAL = "; X call_or_instantiate(\$CODE, $name, $ctor, $dtor, $class, X $thing->{rconst}, $thing->{rtype}, X map { $_->{name} } @args); X } X if ($void) { X $CODE .= <<'END'; X if (PL_markstack_ptr != __temp_markstack_ptr) { X /* truly void, because dXSARGS not invoked */ X PL_markstack_ptr = __temp_markstack_ptr; X XSRETURN_EMPTY; /* return empty stack */ X } X /* must have used dXSARGS; list context implied */ X return; /* assume stack size is correct */ XEND X } X elsif ($ellipsis) { X $CODE .= "\tPL_markstack_ptr = __temp_markstack_ptr;\n"; X } X X # The actual function: X $XS .= "PREINIT:\n$PREINIT" if length $PREINIT; X $XS .= "PP" if $void; X $XS .= "CODE:\n$CODE" if length $CODE; X $XS .= "OUTPUT:\nRETVAL\n" X if (length $CODE and not $void); X $XS .= "\n"; X return $XS; X} X Xsub call_or_instantiate { X my $text_ref = shift; X my ($name, $ctor, $dtor, $class, $const, $type, @args) = @_; X X # Create an rvalue (which might be const-casted later). X my $rval = ''; X $rval .= "new " if $ctor; X $rval .= "delete " if $dtor; X $rval .= "THIS->" if ($class and not ($ctor or $dtor)); X $rval .= "$name(" . join (',', @args) . ")"; X X $$text_ref .= const_cast($rval, $const, $type); X $$text_ref .= ";\n"; # this is a convenience X} X Xsub const_cast { X my $value = shift; X my $const = shift; X my $type = shift; X return $value unless $const and $type =~ /\*|\&/; X return "const_cast<$type>($value)"; X} X Xsub write_typemap { X my $o = shift; X my $filename = "$o->{API}{build_dir}/CPP.map"; X my $type_kind = $o->{ILSM}{typeconv}{type_kind}; X my $typemap = ""; X $typemap .= $_ . "\t"x2 . $TYPEMAP_KIND . "\n" X for grep { $type_kind->{$_} eq $TYPEMAP_KIND } keys %$type_kind; X return unless length $typemap; X open TYPEMAP, "> $filename" X or croak "Error: Can't write to $filename: $!"; X print TYPEMAP <{ILSM}{typeconv}{output_expr}{$TYPEMAP_KIND} XINPUT X$TYPEMAP_KIND X$o->{ILSM}{typeconv}{input_expr}{$TYPEMAP_KIND} XEND X close TYPEMAP; X $o->validate(TYPEMAPS => $filename); X} X X# Generate type conversion code: perl2c or c2perl. Xsub typeconv { X my $o = shift; X my $var = shift; X my $arg = shift; X my $type = shift; X my $dir = shift; X my $preproc = shift; X my $tkind = $o->{ILSM}{typeconv}{type_kind}{$type}; X my $ret = X eval qq{qq{$o->{ILSM}{typeconv}{$dir}{$tkind}}}; X chomp $ret; X $ret =~ s/\n/\\\n/g if $preproc; X return $ret; X} X X1; X X__END__ END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP.pm echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/.exists sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/.exists << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/.exists' END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/.exists echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/grammar.pm sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/grammar.pm << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/grammar.pm' Xpackage Inline::CPP::grammar; X Xuse strict; Xuse vars qw($TYPEMAP_KIND $VERSION); X$VERSION = '0.23'; X X#============================================================================ X# Regular expressions to match code blocks, numbers, strings, parenthesized X# expressions, function calls, and macros. The more complex regexes are only X# implemented in 5.6.0 and above, so they're in eval-blocks. X# X# These are all adapted from the output of Damian Conway's excellent X# Regexp::Common module. In future, Inline::CPP may depend directly on it, X# but for now I'll just duplicate the code. Xuse vars qw($code_block $string $number $parens $funccall); X#============================================================================ Xeval <<'END'; # $RE{balanced}{-parens=>q|{}()[]"'|} X$code_block = qr'(?-xism:(?-xism:(?:[{](?:(?>[^][)(}{]+)|(??{$Inline::CPP::grammar::code_block}))*[}]))|(?-xism:(?-xism:(?:[(](?:(?>[^][)(}{]+)|(??{$Inline::CPP::grammar::code_block}))*[)]))|(?-xism:(?-xism:(?:[[](?:(?>[^][)(}{]+)|(??{$Inline::CPP::grammar::code_block}))*[]]))|(?-xism:(?!)))))'; XEND X$code_block = qr'{[^}]*}' if $@; # For the stragglers: here's a lame regexp. X Xeval <<'END'; # $RE{balanced}{-parens=>q|()"'|} X$parens = qr'(?-xism:(?-xism:(?:[(](?:(?>[^)(]+)|(??{$Inline::CPP::grammar::parens}))*[)]))|(?-xism:(?!)))'; XEND X$parens = qr'\([^)]*\)' if $@; # For the stragglers: here's another X X# $RE{quoted} X$string = qr'(?:(?:\")(?:[^\\\"]*(?:\\.[^\\\"]*)*)(?:\")|(?:\')(?:[^\\\']*(?:\\.[^\\\']*)*)(?:\')|(?:\`)(?:[^\\\`]*(?:\\.[^\\\`]*)*)(?:\`))'; X X# $RE{num}{real}|$RE{num}{real}{-base=>16}|$RE{num}{int} X$number = qr'(?:(?i)(?:[+-]?)(?:(?=[0123456789]|[.])(?:[0123456789]*)(?:(?:[.])(?:[0123456789]{0,}))?)(?:(?:[E])(?:(?:[+-]?)(?:[0123456789]+))|))|(?:(?i)(?:[+-]?)(?:(?=[0123456789ABCDEF]|[.])(?:[0123456789ABCDEF]*)(?:(?:[.])(?:[0123456789ABCDEF]{0,}))?)(?:(?:[G])(?:(?:[+-]?)(?:[0123456789ABCDEF]+))|))|(?:(?:[+-]?)(?:\d+))'; X$funccall = qr/[_a-zA-Z][_a-zA-Z0-9]*(?:$Inline::CPP::grammar::parens)?/; X X#============================================================================ X# Inline::CPP's grammar X#============================================================================ Xsub grammar { X <<'END'; X X{ use Data::Dumper; } X Xcode: part(s) {1} X Xpart: comment X | class_def X { X# print "Found a class: $item[1]->[0]\n"; X my $class = $item[1]->[0]; X my @parts; X for my $part (@{$item[1]->[1]}) { push @parts, @$_ for @$part } X push @{$thisparser->{data}{classes}}, $class X unless defined $thisparser->{data}{class}{$class}; X $thisparser->{data}{class}{$class} = \@parts; X# print "Class:\n", Dumper \@parts; X Inline::CPP::grammar::typemap($thisparser, $class); X 1; X } X | function_def X { X# print "found a function: $item[1]->{name}\n"; X my $name = $item[1]->{name}; X my $i=0; X for my $arg (@{$item[1]->{args}}) { X $arg->{name} = 'dummy' . ++$i unless defined $arg->{name}; X } X Inline::CPP::grammar::strip_ellipsis($thisparser, X $item[1]->{args}); X push @{$thisparser->{data}{functions}}, $name X unless defined $thisparser->{data}{function}{$name}; X $thisparser->{data}{function}{$name} = $item[1]; X# print Dumper $item[1]; X 1; X } X | all X Xclass_def: class IDENTIFIER '{' class_part(s) '}' ';' X { X# print "Found a class definition: $item[2]\n"; X [@item[2,4]] X } X | class IDENTIFIER ':' '{' class_part(s) '}' ';' X { X# print "Found a class definition: $item[2]\n"; X push @{$item[6]}, [$item[4]]; X [@item[2,6]] X } X Xinherit: scope IDENTIFIER X { {thing => 'inherits', name => $item[2], scope => $item[1]} } X Xclass_part: comment { [ {thing => 'comment'} ] } X | scope ':' class_decl(s) X { X for my $part (@{$item[3]}) { X $_->{scope} = $item[1] for @$part; X } X $item[3] X } X | class_decl(s) X { X for my $part (@{$item[1]}) { X $_->{scope} = $thisparser->{data}{defaultscope} X for @$part; X } X $item[1] X } X Xclass_decl: comment { [{thing => 'comment'}] } X | method_def X { X $item[1]->{thing} = 'method'; X# print "class_decl found a method: $item[1]->{name}\n"; X my $i=0; X for my $arg (@{$item[1]->{args}}) { X $arg->{name} = 'dummy' . ++$i unless defined $arg->{name}; X } X Inline::CPP::grammar::strip_ellipsis($thisparser, X $item[1]->{args}); X [$item[1]]; X } X | member_def X { X# print "class_decl found one or more members:\n", Dumper(\@item); X $_->{thing} = 'member' for @{$item[1]}; X $item[1]; X } X Xfunction_def: rtype IDENTIFIER '(' (s?) ')' ';' X { X {rtype => $item[1], name => $item[2], args => $item[4]} X } X | rtype IDENTIFIER '(' (s?) ')' code_block X { X {rtype => $item[1], name => $item[2], args => $item[4]} X } X Xmethod_def: IDENTIFIER '(' (s?) ')' method_imp X { X# print "con-/de-structor found: $item[1]\n"; X {name => $item[1], args => $item[3], abstract => ${$item[5]}}; X } X | rtype IDENTIFIER '(' (s?) ')' method_imp X { X# print "method found: $item[2]\n"; X $return = X {name => $item[2], rtype => $item[1], args => $item[4], X abstract => ${$item[6]}, X rconst => $thisparser->{data}{smod}{const}, X }; X $thisparser->{data}{smod}{const} = 0; X } X X# By adding smod, we allow 'const' member functions. This would also bind to X# incorrect C++ with the word 'static' after the argument list, but we don't X# care at all because such code would never be compiled successfully. X X# By adding init, we allow constructors to initialize references. Again, we'll X# allow them anywhere, but our goal is not to enforce c++ standards -- that's X# the compiler's job. Xmethod_imp: smod(?) ';' { \0 } X | smod(?) initlist(?) code_block { \0 } X | smod(?) '=' '0' ';' { \1 } X | smod(?) '=' '0' code_block { \0 } X Xinitlist: ':' X Xmember_def: anytype ';' X { X my @retval; X for my $def (@{$item[2]}) { X my $type = join '', $item[1], @{$def->[0]}; X my $name = $def->[1]; X# print "member found: type=$type, name=$name\n"; X push @retval, { name => $name, type => $type }; X } X \@retval; X } X Xvar: star(s?) IDENTIFIER '=' expr { [@item[1,2]] } X | star(s?) IDENTIFIER { [@item[1,2]] } X Xarg: type IDENTIFIER '=' expr X { X# print "argument $item[2] found\n"; X# print "expression: $item[4]\n"; X {type => $item[1], name => $item[2], optional => 1, X offset => $thisoffset} X } X | type IDENTIFIER X { X# print "argument $item[2] found\n"; X {type => $item[1], name => $item[2], offset => $thisoffset} X } X | type { {type => $item[1]} } X | '...' X { {name => '...', type => '...', offset => $thisoffset} } X XIDENTIFIER: /[~_a-z]\w*/i X { X# print "IDENTIFIER: $item[1]\n"; X $item[1] X } X X# Parse::RecDescent is retarded in this one case: if a subrule fails, it X# gives up the entire rule. This is a stupid way to get around that. Xrtype: rtype2 | rtype1 Xrtype1: TYPE star(s?) X { X $return = $item[1]; X $return .= join '',' ',@{$item[2]} if @{$item[2]}; X# print "rtype1: $return\n"; X return undef X unless(defined$thisparser->{data}{typeconv}{valid_rtypes}{$return}); X } Xrtype2: modifier(s) TYPE star(s?) X { X $return = $item[2]; X $return = join ' ',grep{$_}@{$item[1]},$return X if @{$item[1]}; X $return .= join '',' ',@{$item[3]} if @{$item[3]}; X# print "rtype2: $return\n"; X return undef X unless(defined$thisparser->{data}{typeconv}{valid_rtypes}{$return}); X $return = 'static ' . $return X if $thisparser->{data}{smod}{static}; X $thisparser->{data}{smod}{static} = 0; X } X Xtype: type2 | type1 Xtype1: TYPE star(s?) X { X $return = $item[1]; X $return .= join '',' ',@{$item[2]} if @{$item[2]}; X return undef X unless(defined$thisparser->{data}{typeconv}{valid_types}{$return}); X } Xtype2: modifier(s) TYPE star(s?) X { X $return = $item[2]; X $return = join ' ',grep{$_}@{$item[1]},$return if @{$item[1]}; X $return .= join '',' ',@{$item[3]} if @{$item[3]}; X return undef X unless(defined$thisparser->{data}{typeconv}{valid_types}{$return}); X } X Xanytype: anytype2 | anytype1 Xanytype1: TYPE star(s?) X { X $return = $item[1]; X $return .= join '',' ',@{$item[2]} if @{$item[2]}; X } Xanytype2: modifier(s) TYPE star(s?) X { X $return = $item[2]; X $return = join ' ',grep{$_}@{$item[1]},$return if @{$item[1]}; X $return .= join '',' ',@{$item[3]} if @{$item[3]}; X } X Xcomment: m{\s* // [^\n]* \n }x X | m{\s* /\* (?:[^*]+|\*(?!/))* \*/ ([ \t]*)? }x X X# long and short aren't recognized as modifiers because they break when used X# as regular types. Another Parse::RecDescent problem is greedy matching; I X# need tmodifier to "give back" long or short in cases where keeping them would X# cause the modifier rule to fail. One side-effect is 'long long' can never X# be parsed correctly here. Xmodifier: tmod X | smod { ++$thisparser->{data}{smod}{$item[1]}; ''} X | nmod { '' } Xtmod: 'unsigned' # | 'long' | 'short' Xsmod: 'const' | 'static' Xnmod: 'extern' | 'virtual' | 'mutable' | 'volatile' | 'inline' X Xscope: 'public' | 'private' | 'protected' X Xclass: 'class' { $thisparser->{data}{defaultscope} = 'private'; $item[1] } X | 'struct' { $thisparser->{data}{defaultscope} = 'public'; $item[1] } X Xstar: '*' | '&' X Xcode_block: /$Inline::CPP::grammar::code_block/ X X# Consume expressions Xexpr: { X my $o = join '', @{$item[1]}; X# print "expr: $o\n"; X $o; X} Xsubexpr: /$Inline::CPP::grammar::funccall/ # Matches a macro, too X | /$Inline::CPP::grammar::string/ X | /$Inline::CPP::grammar::number/ X | UOP subexpr XOP: '+' | '-' | '*' | '/' | '^' | '&' | '|' | '%' | '||' | '&&' XUOP: '~' | '!' | '-' | '*' | '&' X XTYPE: /\w+/ X Xall: /.*/ X XEND X X} X X#============================================================================ X# Generate typemap code for the classes and structs we bind to. This allows X# functions declared after a class to return or accept class objects as X# parameters. X#============================================================================ X$TYPEMAP_KIND = 'O_Inline_CPP_Class'; Xsub typemap { X my $parser = shift; X my $typename = shift; X X# print "Inline::CPP::grammar::typemap(): typename=$typename\n"; X X my ($TYPEMAP, $INPUT, $OUTPUT); X $TYPEMAP = "$typename *\t\t$TYPEMAP_KIND\n"; X $INPUT = <{data}{typeconv}{input_expr}{$TYPEMAP_KIND} ||= $INPUT; X $parser->{data}{typeconv}{output_expr}{$TYPEMAP_KIND} ||= $OUTPUT; X $parser->{data}{typeconv}{type_kind}{$ctypename} = $TYPEMAP_KIND; X $parser->{data}{typeconv}{valid_types}{$ctypename}++; X $parser->{data}{typeconv}{valid_rtypes}{$ctypename}++; X} X X#============================================================================ X# Default action is to strip ellipses from the C++ code. This allows having X# _only_ a '...' in the code, just like XS. It is the default. X#============================================================================ Xsub strip_ellipsis { X my $parser = shift; X my $args = shift; X return if $parser->{ILSM}{PRESERVE_ELLIPSIS}; X for (my $i=0; $i<@$args; $i++) { X next unless $args->[$i]{name} eq '...'; X # if it's the first one, just strip it X if ($i==0) { X substr($parser->{ILSM}{code}, $args->[$i]{offset} - 3, 3) = " "; X } X else { X my $prev = $i - 1; X my $prev_offset = $args->[$prev]{offset}; X my $length = $args->[$i]{offset} - $prev_offset; X substr($parser->{ILSM}{code}, $prev_offset, $length) =~ s/\S/ /g; X } X } X} END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/Inline/CPP/grammar.pm echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto > /dev/null 2>&1 echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline > /dev/null 2>&1 echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/.exists sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/.exists << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/.exists' END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/.exists echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/grammar mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/grammar > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/grammar/.exists sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/grammar/.exists << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/grammar/.exists' END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/lib/auto/Inline/CPP/grammar/.exists echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch > /dev/null 2>&1 echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto > /dev/null 2>&1 echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline > /dev/null 2>&1 echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/.exists sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/.exists << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/.exists' END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/.exists echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/grammar mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/grammar > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/grammar/.exists sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/grammar/.exists << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/grammar/.exists' END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/arch/auto/Inline/CPP/grammar/.exists echo c - p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3 mkdir -p p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3 > /dev/null 2>&1 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/.exists sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/.exists << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/.exists' END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/.exists echo x - p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/Inline::CPP.3 sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/Inline::CPP.3 << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/Inline::CPP.3' X.rn '' }` X''' $RCSfile$$Revision$$Date$ X''' X''' $Log$ X''' X.de Sh X.br X.if t .Sp X.ne 5 X.PP X\fB\\$1\fR X.PP X.. X.de Sp X.if t .sp .5v X.if n .sp X.. X.de Ip X.br X.ie \\n(.$>=3 .ne \\$3 X.el .ne 3 X.IP "\\$1" \\$2 X.. X.de Vb X.ft CW X.nf X.ne \\$1 X.. X.de Ve X.ft R X X.fi X.. X''' X''' X''' Set up \*(-- to give an unbreakable dash; X''' string Tr holds user defined translation string. X''' Bell System Logo is used as a dummy character. X''' X.tr \(*W-|\(bv\*(Tr X.ie n \{\ X.ds -- \(*W- X.ds PI pi X.if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch X.if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch X.ds L" "" X.ds R" "" X''' \*(M", \*(S", \*(N" and \*(T" are the equivalent of X''' \*(L" and \*(R", except that they are used on ".xx" lines, X''' such as .IP and .SH, which do another additional levels of X''' double-quote interpretation X.ds M" """ X.ds S" """ X.ds N" """"" X.ds T" """"" X.ds L' ' X.ds R' ' X.ds M' ' X.ds S' ' X.ds N' ' X.ds T' ' X'br\} X.el\{\ X.ds -- \(em\| X.tr \*(Tr X.ds L" `` X.ds R" '' X.ds M" `` X.ds S" '' X.ds N" `` X.ds T" '' X.ds L' ` X.ds R' ' X.ds M' ` X.ds S' ' X.ds N' ` X.ds T' ' X.ds PI \(*p X'br\} X.\" If the F register is turned on, we'll generate X.\" index entries out stderr for the following things: X.\" TH Title X.\" SH Header X.\" Sh Subsection X.\" Ip Item X.\" X<> Xref (embedded X.\" Of course, you have to process the output yourself X.\" in some meaninful fashion. X.if \nF \{ X.de IX X.tm Index:\\$1\t\\n%\t"\\$2" X.. X.nr % 0 X.rr F X.\} X.TH CPP 1 "perl 5.005, patch 03" "8/Jul/2001" "User Contributed Perl Documentation" X.UC X.if n .hy 0 X.if n .na X.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' X.de CQ \" put $1 in typewriter font X.ft CW X'if n "\c X'if t \\&\\$1\c X'if n \\&\\$1\c X'if n \&" X\\&\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 X'.ft R X.. X.\" @(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2 X. \" AM - accent mark definitions X.bd B 3 X. \" fudge factors for nroff and troff X.if n \{\ X. ds #H 0 X. ds #V .8m X. ds #F .3m X. ds #[ \f1 X. ds #] \fP X.\} X.if t \{\ X. ds #H ((1u-(\\\\n(.fu%2u))*.13m) X. ds #V .6m X. ds #F 0 X. ds #[ \& X. ds #] \& X.\} X. \" simple accents for nroff and troff X.if n \{\ X. ds ' \& X. ds ` \& X. ds ^ \& X. ds , \& X. ds ~ ~ X. ds ? ? X. ds ! ! X. ds / X. ds q X.\} X.if t \{\ X. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" X. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' X. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' X. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' X. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' X. ds ? \s-2c\h'-\w'c'u*7/10'\u\h'\*(#H'\zi\d\s+2\h'\w'c'u*8/10' X. ds ! \s-2\(or\s+2\h'-\w'\(or'u'\v'-.8m'.\v'.8m' X. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' X. ds q o\h'-\w'o'u*8/10'\s-4\v'.4m'\z\(*i\v'-.4m'\s+4\h'\w'o'u*8/10' X.\} X. \" troff and (daisy-wheel) nroff accents X.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' X.ds 8 \h'\*(#H'\(*b\h'-\*(#H' X.ds v \\k:\h'-(\\n(.wu*9/10-\*(#H)'\v'-\*(#V'\*(#[\s-4v\s0\v'\*(#V'\h'|\\n:u'\*(#] X.ds _ \\k:\h'-(\\n(.wu*9/10-\*(#H+(\*(#F*2/3))'\v'-.4m'\z\(hy\v'.4m'\h'|\\n:u' X.ds . \\k:\h'-(\\n(.wu*8/10)'\v'\*(#V*4/10'\z.\v'-\*(#V*4/10'\h'|\\n:u' X.ds 3 \*(#[\v'.2m'\s-2\&3\s0\v'-.2m'\*(#] X.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] X.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' X.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' X.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] X.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] X.ds ae a\h'-(\w'a'u*4/10)'e X.ds Ae A\h'-(\w'A'u*4/10)'E X.ds oe o\h'-(\w'o'u*4/10)'e X.ds Oe O\h'-(\w'O'u*4/10)'E X. \" corrections for vroff X.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' X.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' X. \" for low resolution devices (crt and lpr) X.if \n(.H>23 .if \n(.V>19 \ X\{\ X. ds : e X. ds 8 ss X. ds v \h'-1'\o'\(aa\(ga' X. ds _ \h'-1'^ X. ds . \h'-1'. X. ds 3 3 X. ds o a X. ds d- d\h'-1'\(ga X. ds D- D\h'-1'\(hy X. ds th \o'bp' X. ds Th \o'LP' X. ds ae ae X. ds Ae AE X. ds oe oe X. ds Oe OE X.\} X.rm #[ #] #H #V #F C X.SH "NAME" XInline::CPP \- Write Perl subroutines and classes in \*(C+. X.SH "SYNOPSIS" X.PP X.Vb 1 X\& use Inline CPP; X.Ve X.Vb 2 X\& print "9 + 16 = ", add(9, 16), "\en"; X\& print "9 - 16 = ", subtract(9, 16), "\en"; X.Ve X.Vb 2 X\& __END__ X\& __CPP__ X.Ve X.Vb 3 X\& int add(int x, int y) { X\& return x + y; X\& } X.Ve X.Vb 3 X\& int subtract(int x, int y) { X\& return x - y; X\& } X.Ve X.Vb 1 X\& END_OF_CPP_CODE X.Ve X.SH "DESCRIPTION" XThe \f(CWInline::CPP\fR module allows you to put \*(C+ source code directly X\*(L"inline\*(R" in a Perl script or module. You code classes or functions in X\*(C+, and you can use them as if they were written in Perl. X.SH "Choosing a \*(C+ Compiler" XInline::CPP just parses your \*(C+ code and creates bindings to it. Like XInline::C, you will need a suitable compiler the first time you run the Xscript. Choosing a \*(C+ compiler can prove difficult, because Perl is Xwritten in C, not \*(C+. X.PP XHere's the rule: use any \*(C+ compiler that's compatible with the compiler Xwhich built perl. For instance, if perl was built with \f(CWgcc\fR, use \f(CWg++\fR. XIf you're on a Sun or an IRIX box and the system C compiler \f(CWcc\fR built perl, Xthen use the system \*(C+ compiler, \f(CWCC\fR. X.PP XSome compilers actually compile both C and \*(C+ with the same compiler. XMicrosoft's \f(CWcl.exe\fR is one such compiler -- you pass it the <\-TP> flag Xto convince it that you want \*(C+ mode. X.SH "Using Inline::CPP" XInline::CPP is very similar to Inline::C. It uses a grammar to Xparse your \*(C+ code, and binds to functions or classes which are Xrecognized. If a function is recognized, it will be available from XPerl space. If the function's signature is not recognized, it will not Xbe available from Perl space, but will be available from other Xfunctions in \*(C+. X.PP XFor more information about the grammar used to parse \*(C+ code, see the Xsection called \*(L"Grammar\*(R". X.PP XThe following example shows how \*(C+ snippets map into the Perl Xnamespace: X.PP XExample 1: X.PP X.Vb 1 X\& use Inline CPP => <<'END'; X.Ve X.Vb 1 X\& int doodle() { } X.Ve X.Vb 4 X\& class Foo { X\& public: X\& Foo(); X\& ~Foo(); X.Ve X.Vb 5 X\& int get_data() { return data; } X\& void set_data(int a) { data = a; } X\& private: X\& int data; X\& }; X.Ve X.Vb 2 X\& Foo::Foo() { cout << "creating a Foo()" << endl; } X\& Foo::~Foo() { cout << "deleting a Foo()" << endl; } X.Ve X.Vb 1 X\& END X.Ve XAfter running the code above, Perl's namespace would look similar to if Xfollowing code had been run: X.PP X.Vb 1 X\& sub main::doodle { } X.Ve X.Vb 1 X\& package main::Foo; X.Ve X.Vb 2 X\& sub new { print "creating a Foo()\en"; bless {}, shift } X\& sub DESTROY { print "deleting a Foo()\en" } X.Ve X.Vb 2 X\& sub get_data { my $o=shift; $o->{data} } X\& sub set_data { my $o=shift; $o->{data} = shift } X.Ve XThe difference, of course, is that in the latter, Perl does the work. In the XInline::CPP example, all function calls get sent off to your \*(C+ code. That Xmeans that things like this won't work: X.PP X.Vb 2 X\& my $obj = new Foo; X\& $obj->{extrafield} = 10; X.Ve XIt doesn't work because \f(CW$obj\fR is not a blessed hash. It's a blessed Xreference to a \*(C+ object (and anyway, \*(C+ wouldn't let you do that either, Xsince extrafield wasn't defined). X.SH "\*(C+ Configuration Options" XFor information on how to specify Inline configuration options, see Xthe \fIInline\fR manpage. This section describes each of the configuration options Xavailable for C. Most of the options correspond either the MakeMaker Xor XS options of the same name. See the \fIExtUtils::MakeMaker\fR manpage and Xthe \fIperlxs\fR manpage. X.Sh "\s-1ALTLIBS\s0" XAdds a new entry to the end of the list of alternative libraries to Xbind with. MakeMaker will search through this list and use the first Xentry where all the libraries are found. X.PP X.Vb 1 X\& use Inline Config => ALTLIBS => '-L/my/other/lib -lfoo'; X.Ve XSee also the \s-1LIBS\s0 config option, which appends to the last entry in Xthe list. X.Sh "\s-1AUTO_INCLUDE\s0" XSpecifies extra statements to be automatically included. They will be Xadded on to the defaults. A newline char will automatically be added. X.PP X.Vb 1 X\& use Inline Config => AUTO_INCLUDE => '#include "something.h"'; X.Ve X.Sh "\s-1BOOT\s0" XSpecifies code to be run when your code is loaded. May not contain any Xblank lines. See the \fIperlxs\fR manpage for more information. X.PP X.Vb 1 X\& use Inline Config => BOOT => 'foo();'; X.Ve X.Sh "\s-1CC\s0" XSpecifies which compiler to use. X.Sh "\s-1CCFLAGS\s0" XSpecifies extra compiler flags. Corresponds to the MakeMaker option. X.Sh "\s-1FILTERS\s0" XSpecifies one (or more, in an array ref) filter which is to be applied to Xthe code just prior to parsing. The filters are executed one after another, Xeach operating on the output of the previous one. You can pass in a code Xreference or the name of a prepackaged filter. X.PP X.Vb 1 X\& use Inline Config => FILTERS => [Strip_POD => \e&myfilter]; X.Ve XThe filter may do anything. The code is passed as the first argument, and Xit returns the filtered code. X.Sh "\s-1INC\s0" XSpecifies extra include directories. Corresponds to the MakeMaker Xparameter. X.PP X.Vb 1 X\& use Inline Config => INC => '-I/my/path'; X.Ve X.Sh "\s-1LD\s0" XSpecifies the linker to use. X.Sh "\s-1LDDLFLAGS\s0" XSpecifies which linker flags to use. X.PP X\s-1NOTE\s0: These flags will completely override the existing flags, instead Xof just adding to them. So if you need to use those too, you must Xrespecify them here. X.Sh "\s-1LIBS\s0" XSpecifies external libraries that should be linked into your Xcode. Corresponds to the MakeMaker parameter. X.PP X.Vb 1 X\& use Inline Config => LIBS => '-L/your/path -lyourlib'; X.Ve XUnlike the \s-1LIBS\s0 configuration parameter used in Inline::C, successive Xcalls to \s-1LIBS\s0 append to the previous calls. For example, X.PP X.Vb 1 X\& use Inline Config => LIBS => '-L/my/path', LIBS => '-lyourlib'; X.Ve Xwill work correctly. If you want to add a new element to the list of Xpossible libraries to link with, use the Inline::\s-1CPP\s0 configuration \s-1ALTLIBS\s0. X.Sh "\s-1MAKE\s0" XSpecifies the name of the \*(L'make\*(R' utility to use. X.Sh "\s-1MYEXTLIB\s0" XSpecifies a user compiled object that should be linked in. Corresponds Xto the MakeMaker parameter. X.PP X.Vb 1 X\& use Inline Config => MYEXTLIB => '/your/path/something.o'; X.Ve X.Sh "\s-1PREFIX\s0" XSpecifies a prefix that will automatically be stripped from \*(C+ Xfunctions when they are bound to Perl. Less useful than in C, because X\*(C+ mangles its function names so they don't conflict with C functions Xof the same name. X.PP X.Vb 1 X\& use Inline Config => PREFIX => 'ZLIB_'; X.Ve XThis only affects \*(C+ function names, not \*(C+ class names or methods. X.Sh "\s-1PRESERVE_ELLIPSIS\s0" XBy default, Inline::\s-1CPP\s0 replaces \f(CW...\fR in bound functions with three Xspaces, since the arguments are always passed on the Perl Stack, not on Xthe C stack. This is usually desired, since it allows functions with Xno fixed arguments (most compilers require at least one fixed argument). X.PP X.Vb 3 X\& use Inline Config => PRESERVE_ELLIPSIS => 1; X\&or X\& use Inline Config => ENABLE => PRESERVE_ELLIPSIS; X.Ve XFor an example of why \s-1PRESERVE_ELLIPSIS\s0 is normally not needed, see the Xexamples section, below. X.Sh "\s-1STD_IOSTREAM\s0" XBy default, Inline::\s-1CPP\s0 includes \f(CWiostream.h\fR at the top of your code. This Xoption makes it include \f(CWiostream\fR instead, which is the \s-1ANSI\s0\-compliant Xversion of the makefile. On non-\s-1GNU\s0 implementations, these files are not Xcompatible with one another. X.PP X.Vb 1 X\& use Inline CPP => Config => ENABLE => STD_IOSTREAM; X.Ve X.Sh "\s-1STRUCTS\s0" XSpecifies whether to bind C structs into Perl using Inline::Struct. X\s-1NOTE\s0: Support for this option is experimental. Inline::\s-1CPP\s0 already binds Xto structs defined in your code. Structs and classes are treated as the Xsame construct, except that a struct's initial scope is public, not Xprivate. Inline::Struct provides autogenerated get/set methods, an Xoverloaded constructor, and several other features not available in XInline::\s-1CPP\s0. X.PP XYou can invoke \s-1STRUCTS\s0 in several ways: X.PP X.Vb 3 X\& use Inline Config => STRUCTS => 'Foo'; X\&or X\& use Inline Config => STRUCTS => ['Bar', 'Baz']; X.Ve XBinds the named structs to Perl. Emits warnings if a struct was requested Xbut could not be bound for some reason. X.PP X.Vb 3 X\& use Inline Config => ENABLE => 'STRUCTS'; X\&or X\& use Inline Config => STRUCTS => 1; X.Ve XEnables binding structs to Perl. All structs which can be bound, will. This Xparameter overrides all requests for particular structs. X.PP X.Vb 3 X\& use Inline Config => DISABLE => 'STRUCTS'; X\&or X\& use Inline Config => STRUCTS => 0; X.Ve XDisables binding structs to Perl. Overrides any other settings. X.PP XSee the \fIInline::Struct\fR manpage for more details about how \f(CWInline::Struct\fR Xbinds C structs to Perl. X.Sh "\s-1TYPEMAPS\s0" XSpecifies extra typemap files to use. These types will modify the Xbehaviour of \*(C+ parsing. Corresponds to the MakeMaker parameter. X.PP X.Vb 1 X\& use Inline Config => TYPEMAPS => '/your/path/typemap'; X.Ve X.SH "\*(C+\-Perl Bindings" XThis section describes how the \f(CWPerl\fR variables get mapped to \f(CWC++\fR Xvariables and back again. X.PP XPerl uses a stack to pass arguments back and forth to subroutines. When Xa sub is called, it pops off all its arguments from the stack; when it's Xdone, it pushes its return values back onto the stack. X.PP XXS (Perl's language for creating C or \*(C+ extensions for Perl) uses X\*(L"typemaps\*(R" to turn SVs into C types and back again. This is done through Xvarious XS macro calls, casts, and the Perl API. XS also allows you to Xdefine your own mappings. X.PP X\f(CWInline::CPP\fR uses a much simpler approach. It parses the system's Xtypemap files and only binds to functions with supported types. You Xcan tell \f(CWInline::CPP\fR about custom typemap files too. X.PP XIf you have very complicated data structures in either \*(C+ or Perl, Xyou should just pass them as an SV* and do the conversion yourself in Xyour \*(C+ function. X.PP XIn \*(C+, a struct is a class whose default scope is public, not Xprivate. Inline::CPP binds to structs with this in mind -- get/set Xmethods are not yet auto-generated (although they are scheduled to Xland in an upcoming release). X.PP XIf you have a C struct, you can use Inline::Struct to allow Perl Xcomplete access to the internals of the struct. You can create and Xmodify structs from inside Perl, as well as pass structs into \*(C+ Xfunctions and return them from functions. Please note that XInline::Struct does not understand any \*(C+ features, so constructors Xand member functions are not supported. See the \fIInline::Struct\fR manpage for more Xdetails. X.SH "EXAMPLES" XHere are some examples. X.Sh "Example 1 \- Farmer Bob" XThis example illustrates how to use a simple class (\f(CWFarmer\fR) from XPerl. One of the new features in Inline::\s-1CPP\s0 is binding to classes Xwith inline method definitions: X.PP X.Vb 1 X\& use Inline CPP; X.Ve X.Vb 6 X\& my $farmer = new Farmer("Ingy", 42); X\& my $slavedriver = 1; X\& while($farmer->how_tired < 420) { X\& $farmer->do_chores($slavedriver); X\& $slavedriver <<= 1; X\& } X.Ve X.Vb 1 X\& print "Wow! The farmer worked ", $farmer->how_long, " hours!\en"; X.Ve X.Vb 2 X\& __END__ X\& __CPP__ X.Ve X.Vb 4 X\& class Farmer { X\& public: X\& Farmer(char *name, int age); X\& ~Farmer(); X.Ve X.Vb 3 X\& int how_tired() { return tiredness; } X\& int how_long() { return howlong; } X\& void do_chores(int howlong); X.Ve X.Vb 6 X\& private: X\& char *name; X\& int age; X\& int tiredness; X\& int howlong; X\& }; X.Ve X.Vb 6 X\& Farmer::Farmer(char *name, int age) { X\& this->name = strdup(name); X\& this->age = age; X\& tiredness = 0; X\& howlong = 0; X\& } X.Ve X.Vb 3 X\& Farmer::~Farmer() { X\& free(name); X\& } X.Ve X.Vb 4 X\& void Farmer::do_chores(int hl) { X\& howlong += hl; X\& tiredness += (age * hl); X\& } X.Ve X.Sh "Example 2 \- Plane and Simple" XThis example demonstrates some new features of Inline::\s-1CPP\s0: support for Xinheritance and abstract classes. The defined methods of the abstract Xclass \f(CWObject\fR are bound to Perl, but there is no constructor or Xdestructor, meaning you cannot instantiate an \f(CWObject\fR. X.PP XThe \f(CWAirplane\fR is a fully-bound class which can be created and Xmanipulated from Perl. X.PP X.Vb 1 X\& use Inline CPP; X.Ve X.Vb 4 X\& my $plane = new Airplane; X\& $plane->print; X\& if ($plane->isa("Object")) { print "Plane is an Object!\en"; } X\& unless ($plane->can("fly")) { print "This plane sucks!\en"; } X.Ve X.Vb 2 X\& __END__ X\& __CPP__ X.Ve X.Vb 8 X\& /* Abstract class (interface) */ X\& class Object { X\& public: X\& virtual void print() { cout << "Object (" << this << ")" << endl; } X\& virtual void info() = 0; X\& virtual bool isa(char *klass) = 0; X\& virtual bool can(char *method) = 0; X\& }; X.Ve X.Vb 4 X\& class Airplane : public Object { X\& public: X\& Airplane() {} X\& ~Airplane() {} X.Ve X.Vb 11 X\& virtual void info() { print(); } X\& virtual bool isa(char *klass) { return strcmp(klass, "Object")==0; } X\& virtual bool can(char *method) { X\& bool yes = false; X\& yes |= strcmp(method, "print")==0; X\& yes |= strcmp(method, "info")==0; X\& yes |= strcmp(method, "isa")==0; X\& yes |= strcmp(method, "can")==0; X\& return yes; X\& } X\& }; X.Ve X.Sh "Example 3 \- The Ellipsis Abridged" XOne of the big advantages of Perl over C or \*(C+ is the ability to pass an Xarbitrary number of arguments to a subroutine. You can do it in C, but it's Xmessy and difficult to get it right. All of this mess is necessary because XC doesn't give the programmer access to the stack. Perl, on the other hand, Xgives you access to everything. X.PP XHere's a useful function written in Perl that is relatively slow: X.PP X.Vb 9 X\& sub average { X\& my $average = 0; X\& for (my $i=0; $i<@_; $i++) { X\& $average *= $i; X\& $average += $_[$i]; X\& $average /= $i + 1; X\& } X\& return $average; X\& } X.Ve XHere's the same function written in C: X.PP X.Vb 10 X\& double average() { X\& Inline_Stack_Vars; X\& double avg = 0.0; X\& for (int i=0; iq(50); X\& $q->q("Where am I?"); X\& $q->q("In a queue."); X\& print "There are ", $q->size, " items in the queue\en"; X\& while($q->size) { X\& print "About to dequeue: ", $q->peek, "\en"; X\& print "Actually dequeued: ", $q->dq, "\en"; X\& } X.Ve X.Vb 8 X\& my $s = new Stack; X\& $s->push(42); X\& $s->push("What?"); X\& print "There are ", $s->size, " items on the stack\en"; X\& while($s->size) { X\& print "About to pop: ", $s->peek, "\en"; X\& print "Actually popped: ", $s->pop, "\en"; X\& } X.Ve X.Vb 2 X\& __END__ X\& __CPP__ X.Ve X.Vb 4 X\& class Queue { X\& public: X\& Queue(int sz=0) { q = newAV(); if (sz) av_extend(q, sz-1); } X\& ~Queue() { av_undef(q); } X.Ve X.Vb 1 X\& int size() {return av_len(q) + 1; } X.Ve X.Vb 3 X\& int q(SV *item) { av_push(q, SvREFCNT_inc(item)); return av_len(q)+1; } X\& SV *dq() { return av_shift(q); } X\& SV *peek() { return size() ? SvREFCNT_inc(*av_fetch(q,0,0)): &PL_sv_undef;} X.Ve X.Vb 3 X\& private: X\& AV *q; X\& }; X.Ve X.Vb 4 X\& class Stack { X\& public: X\& Stack(int sz=0) { s = newAV(); if (sz) av_extend(s, sz-1); } X\& ~Stack() { av_undef(s); } X.Ve X.Vb 1 X\& int size() { return av_len(s) + 1; } X.Ve X.Vb 3 X\& int push(SV *i) { av_push(s, SvREFCNT_inc(i)); return av_len(s)+1; } X\& SV *pop() { return av_pop(s); } X\& SV *peek() { return size() ? SvREFCNT_inc(*av_fetch(s,size()-1,0)) : &PL_sv_undef; } X.Ve X.Vb 3 X\& private: X\& AV *s; X\& }; X.Ve X.SH "Grammar Details" XPerl 5.6.0 is recommended for Inline::CPP, and is required to get all the Xnew features. If you are using Perl 5.005_03 the package will build and run, Xbut you will have problems in certain circumstances: X.Sh "Inline function definitions" XFor the purposes of this discussion, inline function definitions are best Xdescribed by this example: X.PP X.Vb 4 X\& class Foo { X\& public: X\& Foo() { /* Do something */ } X\& }; X.Ve XThis example shows a class with a constructor defined inline. Inline::\s-1CPP\s0 can Xparse this example with 5.005. But this example requires Perl 5.6.0: X.PP X.Vb 4 X\& class Foo { X\& public: X\& Foo() { if(1) { /* Do something */ } } X\& }; X.Ve XHere's what happened: Inline::\s-1CPP\s0 saw a class, saw the method, then noticed Xit was an inline method. So it grabbed this text: X.PP X.Vb 1 X\& "{ if(1) { /* Do something */ }" X.Ve XAnd then it tried to match another part of the class. But it failed because Xthe next part of the string is this (with newlines trimmed): X.PP X.Vb 1 X\& "} };" X.Ve XThe remaining text doesn't parse right. There are two solutions: X.Ip "a" 4 XUse Perl version 5.6.0 or better; or, X.Ip "b" 4 XMove the definition outside the class. X.Sh "Complex default parameters" XAgain, default parameters are best described by example: X.PP X.Vb 1 X\& int root(double number, int whatroot=2); X.Ve XThis function takes one or two arguments. If the second is missing, \*(C+ gives Xit the value 2. Inline::\s-1CPP\s0 can parse this simple example regardless of your Xperl version. But the following example requires 5.6.0: X.PP X.Vb 1 X\& int root(double number, int whatroot=((2))); X.Ve XThat's because if you're using 5.005, your arguments are parsed with a regular Xexpression that looks for only one closing parenthesis. Any more than that, Xand you get a parse error. X.PP XAgain, there are two solutions: X.Ip "a" 4 XUse Perl version 5.6.0 or better; or, X.Ip "b" 4 XMake the strange expression a constant or macro and use that. X.Sh "Rant: Perl 5.005 is for Dummies" XI'm going to take the opportunity to rant. Everything in the rest of this Xsection can be ignored if you don't want to hear it. X.PP XPerl 5.6.0 has been out for a long time. It's proven, stable, and people use Xit all the time. Perl 5.6.1 is the latest stable release. Unless you depend Xon one of the few modules which are only available for the ancient versions of XPerl, there is \fBabsolutely no reason\fR not to upgrade today! X.SH "SEE ALSO" XFor general information about how \f(CWInline\fR binds code to Perl, see Xthe \fIInline\fR manpage. X.PP XFor information on using C with Perl, see the \fIInline::C\fR manpage and Xthe \fIInline::C\-Cookbook\fR manpage. For \f(CWWMTYEWTK\fR, see the \fIperlxs\fR manpage, Xthe \fIperlxstut\fR manpage, the \fIperlapi\fR manpage, and the \fIperlguts\fR manpage. X.PP XFor information on using C and \*(C+ structs with Perl, see Xthe \fIInline::Struct\fR manpage. X.SH "BUGS AND DEFICIENCIES" XWhen reporting a bug, please do the following: X.PP X.Vb 4 X\& - Put "use Inline REPORTBUG;" at the top of your code, or X\& use the command line option "perl -MInline=REPORTBUG ...". X\& - Run your code. X\& - Follow the printed instructions. X.Ve XHere are some things to watch out for: X.Ip "1" 4 XThe grammar used for parsing \*(C+ is still quite simple, and does not allow Xseveral features of \*(C+: X.Ip "a" 8 Xtemplates X.Ip "b" 8 Xoperator overloading X.Ip "c" 8 Xfunction overloading X.Sp XOther grammar problems will probably be noticed quickly. X.Ip "2" 4 XIn order of relative importance, improvements planned in the near Xfuture are: X.Ip "a" 8 Xsupport for overloaded functions and methods X.Ip "b" 8 Xbinding to constants and constant #defines X.Ip "c" 8 Xbinding to unions X.Ip "d" 8 Xautogenerated get/set methods on public members X.SH "AUTHOR" XNeil Watkiss X.PP XBrian Ingerson is the author of \f(CWInline\fR, X\f(CWInline::C\fR and \f(CWInline::CPR\fR. He is known in the innermost Inline Xcircles as \*(L"Batman\*(R". ;) X.SH "COPYRIGHT" XCopyright (c) 2000 \- 2001, Neil Watkiss. X.PP XAll Rights Reserved. This module is free software. It may be used, Xredistributed and/or modified under the same terms as Perl itself. X.PP XSee http://www.perl.com/perl/misc/Artistic.html X X.rn }` '' X.IX Title "CPP 1" X.IX Name "Inline::CPP - Write Perl subroutines and classes in C++." X X.IX Header "NAME" X X.IX Header "SYNOPSIS" X X.IX Header "DESCRIPTION" X X.IX Header "Choosing a \*(C+ Compiler" X X.IX Header "Using Inline::CPP" X X.IX Header "\*(C+ Configuration Options" X X.IX Subsection "\s-1ALTLIBS\s0" X X.IX Subsection "\s-1AUTO_INCLUDE\s0" X X.IX Subsection "\s-1BOOT\s0" X X.IX Subsection "\s-1CC\s0" X X.IX Subsection "\s-1CCFLAGS\s0" X X.IX Subsection "\s-1FILTERS\s0" X X.IX Subsection "\s-1INC\s0" X X.IX Subsection "\s-1LD\s0" X X.IX Subsection "\s-1LDDLFLAGS\s0" X X.IX Subsection "\s-1LIBS\s0" X X.IX Subsection "\s-1MAKE\s0" X X.IX Subsection "\s-1MYEXTLIB\s0" X X.IX Subsection "\s-1PREFIX\s0" X X.IX Subsection "\s-1PRESERVE_ELLIPSIS\s0" X X.IX Subsection "\s-1STD_IOSTREAM\s0" X X.IX Subsection "\s-1STRUCTS\s0" X X.IX Subsection "\s-1TYPEMAPS\s0" X X.IX Header "\*(C+\-Perl Bindings" X X.IX Header "EXAMPLES" X X.IX Subsection "Example 1 \- Farmer Bob" X X.IX Subsection "Example 2 \- Plane and Simple" X X.IX Subsection "Example 3 \- The Ellipsis Abridged" X X.IX Subsection "Example 4 \- Stacks and Queues" X X.IX Header "Grammar Details" X X.IX Subsection "Inline function definitions" X X.IX Item "a" X X.IX Item "b" X X.IX Subsection "Complex default parameters" X X.IX Item "a" X X.IX Item "b" X X.IX Subsection "Rant: Perl 5.005 is for Dummies" X X.IX Header "SEE ALSO" X X.IX Header "BUGS AND DEFICIENCIES" X X.IX Item "1" X X.IX Item "a" X X.IX Item "b" X X.IX Item "c" X X.IX Item "2" X X.IX Item "a" X X.IX Item "b" X X.IX Item "c" X X.IX Item "d" X X.IX Header "AUTHOR" X X.IX Header "COPYRIGHT" X END-of-p5-Inline-CPP/work/Inline-CPP-0.23/blib/man3/Inline::CPP.3 echo x - p5-Inline-CPP/work/Inline-CPP-0.23/Makefile sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/Makefile << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/Makefile' X# This Makefile is for the Inline::CPP extension to perl. X# X# It was generated automatically by MakeMaker version X# 5.4302 (Revision: 1.222) from the contents of X# Makefile.PL. Don't edit this file, edit Makefile.PL instead. X# X# ANY CHANGES MADE HERE WILL BE LOST! X# X# MakeMaker ARGV: (q[CC=cc], q[CCFLAGS=-O -pipe ], q[PREFIX=/usr/local]) X# X# MakeMaker Parameters: X X# NAME => q[Inline::CPP] X# VERSION_FROM => q[CPP.pm] X# clean => { FILES=>q[_Inline/ grammar/_Inline] } X X# --- MakeMaker post_initialize section: X X X# --- MakeMaker const_config section: X X# These definitions are from config.sh (via /usr/libdata/perl/5.00503/mach/Config.pm) X X# They may have been overridden via Makefile.PL or on the command line XAR = ar XCC = cc XCCCDLFLAGS = -DPIC -fpic XCCDLFLAGS = -Wl,-R/usr/lib XDLEXT = so XDLSRC = dl_dlopen.xs XLD = cc XLDDLFLAGS = -Wl,-E -shared -lperl -lm XLDFLAGS = -Wl,-E -lperl -lm XLIBC = XLIB_EXT = .a XOBJ_EXT = .o XOSNAME = freebsd XOSVERS = 4.0-current XRANLIB = : XSO = so XEXE_EXT = X X X# --- MakeMaker constants section: XAR_STATIC_ARGS = cr XNAME = Inline::CPP XDISTNAME = Inline-CPP XNAME_SYM = Inline_CPP XVERSION = 0.23 XVERSION_SYM = 0_23 XXS_VERSION = 0.23 XINST_BIN = blib/bin XINST_EXE = blib/script XINST_LIB = blib/lib XINST_ARCHLIB = blib/arch XINST_SCRIPT = blib/script XPREFIX = /usr/local XINSTALLDIRS = site XINSTALLPRIVLIB = /usr/libdata/perl/5.00503 XINSTALLARCHLIB = /usr/libdata/perl/5.00503/mach XINSTALLSITELIB = /usr/local/lib/perl5/site_perl/5.005 XINSTALLSITEARCH = /usr/local/lib/perl5/site_perl/5.005/i386-freebsd XINSTALLBIN = $(PREFIX)/bin XINSTALLSCRIPT = $(PREFIX)/bin XPERL_LIB = /usr/libdata/perl/5.00503 XPERL_ARCHLIB = /usr/libdata/perl/5.00503/mach XSITELIBEXP = /usr/local/lib/perl5/site_perl/5.005 XSITEARCHEXP = /usr/local/lib/perl5/site_perl/5.005/i386-freebsd XLIBPERL_A = libperl.a XFIRST_MAKEFILE = Makefile XMAKE_APERL_FILE = Makefile.aperl XPERLMAINCC = $(CC) XPERL_INC = /usr/libdata/perl/5.00503/mach/CORE XPERL = /usr/bin/perl5.00503 XFULLPERL = /usr/bin/perl5.00503 X XVERSION_MACRO = VERSION XDEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\" XXS_VERSION_MACRO = XS_VERSION XXS_DEFINE_VERSION = -D$(XS_VERSION_MACRO)=\"$(XS_VERSION)\" X XMAKEMAKER = /usr/libdata/perl/5.00503/ExtUtils/MakeMaker.pm XMM_VERSION = 5.4302 X X# FULLEXT = Pathname for extension directory (eg Foo/Bar/Oracle). X# BASEEXT = Basename part of FULLEXT. May be just equal FULLEXT. (eg Oracle) X# ROOTEXT = Directory part of FULLEXT with leading slash (eg /DBD) !!! Deprecated from MM 5.32 !!! X# PARENT_NAME = NAME without BASEEXT and no trailing :: (eg Foo::Bar) X# DLBASE = Basename part of dynamic library. May be just equal BASEEXT. XFULLEXT = Inline/CPP XBASEEXT = CPP XPARENT_NAME = Inline XDLBASE = $(BASEEXT) XVERSION_FROM = CPP.pm XOBJECT = XLDFROM = $(OBJECT) XLINKTYPE = dynamic X X# Handy lists of source code files: XXS_FILES= XC_FILES = XO_FILES = XH_FILES = XMAN1PODS = XMAN3PODS = CPP.pod XINST_MAN1DIR = blib/man1 XINSTALLMAN1DIR = /usr/local/man/man1 XMAN1EXT = 1 XINST_MAN3DIR = blib/man3 XINSTALLMAN3DIR = /usr/local/lib/perl5/5.00503/man/man3 XMAN3EXT = 3 XPERM_RW = 644 XPERM_RWX = 755 X X# work around a famous dec-osf make(1) feature(?): Xmakemakerdflt: all X X.SUFFIXES: .xs .c .C .cpp .cxx .cc $(OBJ_EXT) X X# Nick wanted to get rid of .PRECIOUS. I don't remember why. I seem to recall, that X# some make implementations will delete the Makefile when we rebuild it. Because X# we call false(1) when we rebuild it. So make(1) is not completely wrong when it X# does so. Our milage may vary. X# .PRECIOUS: Makefile # seems to be not necessary anymore X X.PHONY: all config static dynamic test linkext manifest X X# Where is the Config information that we are using/depend on XCONFIGDEP = $(PERL_ARCHLIB)/Config.pm $(PERL_INC)/config.h X X# Where to put things: XINST_LIBDIR = $(INST_LIB)/Inline XINST_ARCHLIBDIR = $(INST_ARCHLIB)/Inline X XINST_AUTODIR = $(INST_LIB)/auto/$(FULLEXT) XINST_ARCHAUTODIR = $(INST_ARCHLIB)/auto/$(FULLEXT) X XINST_STATIC = XINST_DYNAMIC = XINST_BOOT = X XEXPORT_LIST = X XPERL_ARCHIVE = X XTO_INST_PM = CPP.pm \ X CPP.pod X XPM_TO_BLIB = CPP.pod \ X $(INST_LIBDIR)/CPP.pod \ X CPP.pm \ X $(INST_LIBDIR)/CPP.pm X X X# --- MakeMaker tool_autosplit section: X X# Usage: $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto XAUTOSPLITFILE = $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -e 'use AutoSplit;autosplit($$ARGV[0], $$ARGV[1], 0, 1, 1) ;' X X X# --- MakeMaker tool_xsubpp section: X X X# --- MakeMaker tools_other section: X XSHELL = /bin/sh XCHMOD = chmod XCP = cp XLD = cc XMV = mv XNOOP = $(SHELL) -c true XRM_F = rm -f XRM_RF = rm -rf XTEST_F = test -f XTOUCH = touch XUMASK_NULL = umask 0 XDEV_NULL = > /dev/null 2>&1 X X# The following is a portable way to say mkdir -p X# To see which directories are created, change the if 0 to if 1 XMKPATH = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e mkpath X X# This helps us to minimize the effect of the .exists files A yet X# better solution would be to have a stable file in the perl X# distribution with a timestamp of zero. But this solution doesn't X# need any changes to the core distribution and works with older perls XEQUALIZE_TIMESTAMP = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e eqtime X X# Here we warn users that an old packlist file was found somewhere, X# and that they should call some uninstall routine XWARN_IF_OLD_PACKLIST = $(PERL) -we 'exit unless -f $$ARGV[0];' \ X-e 'print "WARNING: I have found an old package in\n";' \ X-e 'print "\t$$ARGV[0].\n";' \ X-e 'print "Please make sure the two installations are not conflicting\n";' X XUNINST=0 XVERBINST=1 X XMOD_INSTALL = $(PERL) -I$(INST_LIB) -I$(PERL_LIB) -MExtUtils::Install \ X-e "install({@ARGV},'$(VERBINST)',0,'$(UNINST)');" X XDOC_INSTALL = $(PERL) -e '$$\="\n\n";' \ X-e 'print "=head2 ", scalar(localtime), ": C<", shift, ">", " L<", shift, ">";' \ X-e 'print "=over 4";' \ X-e 'while (defined($$key = shift) and defined($$val = shift)){print "=item *";print "C<$$key: $$val>";}' \ X-e 'print "=back";' X XUNINSTALL = $(PERL) -MExtUtils::Install \ X-e 'uninstall($$ARGV[0],1,1); print "\nUninstall is deprecated. Please check the";' \ X-e 'print " packlist above carefully.\n There may be errors. Remove the";' \ X-e 'print " appropriate files manually.\n Sorry for the inconveniences.\n"' X X X# --- MakeMaker dist section: X XDISTVNAME = $(DISTNAME)-$(VERSION) XTAR = tar XTARFLAGS = cvf XZIP = zip XZIPFLAGS = -r XCOMPRESS = gzip --best XSUFFIX = .gz XSHAR = shar XPREOP = @$(NOOP) XPOSTOP = @$(NOOP) XTO_UNIX = @$(NOOP) XCI = ci -u XRCS_LABEL = rcs -Nv$(VERSION_SYM): -q XDIST_CP = best XDIST_DEFAULT = tardist X X X# --- MakeMaker macro section: X X X# --- MakeMaker depend section: X X X# --- MakeMaker cflags section: X X X# --- MakeMaker const_loadlibs section: X X X# --- MakeMaker const_cccmd section: X X X# --- MakeMaker post_constants section: X X X# --- MakeMaker pasthru section: X XPASTHRU = LIB="$(LIB)"\ X LIBPERL_A="$(LIBPERL_A)"\ X LINKTYPE="$(LINKTYPE)"\ X PREFIX="$(PREFIX)"\ X OPTIMIZE="$(OPTIMIZE)" X X X# --- MakeMaker c_o section: X X X# --- MakeMaker xs_c section: X X X# --- MakeMaker xs_o section: X X X# --- MakeMaker top_targets section: X X#all :: config $(INST_PM) subdirs linkext manifypods X Xall :: pure_all manifypods X @$(NOOP) X Xpure_all :: config pm_to_blib subdirs linkext X @$(NOOP) X Xsubdirs :: $(MYEXTLIB) X @$(NOOP) X Xconfig :: Makefile $(INST_LIBDIR)/.exists X @$(NOOP) X Xconfig :: $(INST_ARCHAUTODIR)/.exists X @$(NOOP) X Xconfig :: $(INST_AUTODIR)/.exists X @$(NOOP) X Xconfig :: Version_check X @$(NOOP) X X X$(INST_AUTODIR)/.exists :: /usr/libdata/perl/5.00503/mach/CORE/perl.h X @$(MKPATH) $(INST_AUTODIR) X @$(EQUALIZE_TIMESTAMP) /usr/libdata/perl/5.00503/mach/CORE/perl.h $(INST_AUTODIR)/.exists X X -@$(CHMOD) $(PERM_RWX) $(INST_AUTODIR) X X$(INST_LIBDIR)/.exists :: /usr/libdata/perl/5.00503/mach/CORE/perl.h X @$(MKPATH) $(INST_LIBDIR) X @$(EQUALIZE_TIMESTAMP) /usr/libdata/perl/5.00503/mach/CORE/perl.h $(INST_LIBDIR)/.exists X X -@$(CHMOD) $(PERM_RWX) $(INST_LIBDIR) X X$(INST_ARCHAUTODIR)/.exists :: /usr/libdata/perl/5.00503/mach/CORE/perl.h X @$(MKPATH) $(INST_ARCHAUTODIR) X @$(EQUALIZE_TIMESTAMP) /usr/libdata/perl/5.00503/mach/CORE/perl.h $(INST_ARCHAUTODIR)/.exists X X -@$(CHMOD) $(PERM_RWX) $(INST_ARCHAUTODIR) X Xconfig :: $(INST_MAN3DIR)/.exists X @$(NOOP) X X X$(INST_MAN3DIR)/.exists :: /usr/libdata/perl/5.00503/mach/CORE/perl.h X @$(MKPATH) $(INST_MAN3DIR) X @$(EQUALIZE_TIMESTAMP) /usr/libdata/perl/5.00503/mach/CORE/perl.h $(INST_MAN3DIR)/.exists X X -@$(CHMOD) $(PERM_RWX) $(INST_MAN3DIR) X Xhelp: X perldoc ExtUtils::MakeMaker X XVersion_check: X @$(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \ X -MExtUtils::MakeMaker=Version_check \ X -e "Version_check('$(MM_VERSION)')" X X X# --- MakeMaker linkext section: X Xlinkext :: $(LINKTYPE) X @$(NOOP) X X X# --- MakeMaker dlsyms section: X X X# --- MakeMaker dynamic section: X X## $(INST_PM) has been moved to the all: target. X## It remains here for awhile to allow for old usage: "make dynamic" X#dynamic :: Makefile $(INST_DYNAMIC) $(INST_BOOT) $(INST_PM) Xdynamic :: Makefile $(INST_DYNAMIC) $(INST_BOOT) X @$(NOOP) X X X# --- MakeMaker dynamic_bs section: X XBOOTSTRAP = X X X# --- MakeMaker dynamic_lib section: X X X# --- MakeMaker static section: X X## $(INST_PM) has been moved to the all: target. X## It remains here for awhile to allow for old usage: "make static" X#static :: Makefile $(INST_STATIC) $(INST_PM) Xstatic :: Makefile $(INST_STATIC) X @$(NOOP) X X X# --- MakeMaker static_lib section: X X X# --- MakeMaker manifypods section: XPOD2MAN_EXE = /usr/bin/pod2man XPOD2MAN = $(PERL) -we '%m=@ARGV;for (keys %m){' \ X-e 'next if -e $$m{$$_} && -M $$m{$$_} < -M $$_ && -M $$m{$$_} < -M "Makefile";' \ X-e 'print "Manifying $$m{$$_}\n";' \ X-e 'system(qq[$$^X ].q["-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" $(POD2MAN_EXE) ].qq[$$_>$$m{$$_}])==0 or warn "Couldn\047t install $$m{$$_}\n";' \ X-e 'chmod(oct($(PERM_RW))), $$m{$$_} or warn "chmod $(PERM_RW) $$m{$$_}: $$!\n";}' X Xmanifypods : pure_all CPP.pod X @$(POD2MAN) \ X CPP.pod \ X $(INST_MAN3DIR)/Inline::CPP.$(MAN3EXT) X X# --- MakeMaker processPL section: X X X# --- MakeMaker installbin section: X X X# --- MakeMaker subdirs section: X X# The default clean, realclean and test targets in this Makefile X# have automatically been given entries for each subdir. X X X Xsubdirs :: X @cd grammar && $(MAKE) all $(PASTHRU) X X X X# --- MakeMaker clean section: X X# Delete temporary files but do not touch installed files. We don't delete X# the Makefile here so a later make realclean still has a makefile to use. X Xclean :: X -cd grammar && $(TEST_F) Makefile && $(MAKE) clean X -rm -rf _Inline/ grammar/_Inline ./blib $(MAKE_APERL_FILE) $(INST_ARCHAUTODIR)/extralibs.all perlmain.c mon.out core so_locations pm_to_blib *~ */*~ */*/*~ *$(OBJ_EXT) *$(LIB_EXT) perl.exe $(BOOTSTRAP) $(BASEEXT).bso $(BASEEXT).def $(BASEEXT).exp X -mv Makefile Makefile.old $(DEV_NULL) X X X# --- MakeMaker realclean section: X X# Delete temporary files (via clean) and also delete installed files Xrealclean purge :: clean X -cd grammar && $(TEST_F) Makefile.old && $(MAKE) -f Makefile.old realclean X -cd grammar && $(TEST_F) Makefile && $(MAKE) realclean X rm -rf $(INST_AUTODIR) $(INST_ARCHAUTODIR) X rm -f $(INST_LIBDIR)/CPP.pod $(INST_LIBDIR)/CPP.pm X rm -rf Makefile Makefile.old X X X# --- MakeMaker dist_basics section: X Xdistclean :: realclean distcheck X Xdistcheck : X $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=fullcheck \ X -e fullcheck X Xskipcheck : X $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=skipcheck \ X -e skipcheck X Xmanifest : X $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=mkmanifest \ X -e mkmanifest X X X# --- MakeMaker dist_core section: X Xdist : $(DIST_DEFAULT) X @$(PERL) -le 'print "Warning: Makefile possibly out of date with $$vf" if ' \ X -e '-e ($$vf="$(VERSION_FROM)") and -M $$vf < -M "Makefile";' X Xtardist : $(DISTVNAME).tar$(SUFFIX) X Xzipdist : $(DISTVNAME).zip X X$(DISTVNAME).tar$(SUFFIX) : distdir X $(PREOP) X $(TO_UNIX) X $(TAR) $(TARFLAGS) $(DISTVNAME).tar $(DISTVNAME) X $(RM_RF) $(DISTVNAME) X $(COMPRESS) $(DISTVNAME).tar X $(POSTOP) X X$(DISTVNAME).zip : distdir X $(PREOP) X $(ZIP) $(ZIPFLAGS) $(DISTVNAME).zip $(DISTVNAME) X $(RM_RF) $(DISTVNAME) X $(POSTOP) X Xuutardist : $(DISTVNAME).tar$(SUFFIX) X uuencode $(DISTVNAME).tar$(SUFFIX) \ X $(DISTVNAME).tar$(SUFFIX) > \ X $(DISTVNAME).tar$(SUFFIX)_uu X Xshdist : distdir X $(PREOP) X $(SHAR) $(DISTVNAME) > $(DISTVNAME).shar X $(RM_RF) $(DISTVNAME) X $(POSTOP) X X X# --- MakeMaker dist_dir section: X Xdistdir : X $(RM_RF) $(DISTVNAME) X $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=manicopy,maniread \ X -e "manicopy(maniread(),'$(DISTVNAME)', '$(DIST_CP)');" X X X# --- MakeMaker dist_test section: X Xdisttest : distdir X cd $(DISTVNAME) && $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) Makefile.PL X cd $(DISTVNAME) && $(MAKE) X cd $(DISTVNAME) && $(MAKE) test X X X# --- MakeMaker dist_ci section: X Xci : X $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=maniread \ X -e "@all = keys %{ maniread() };" \ X -e 'print("Executing $(CI) @all\n"); system("$(CI) @all");' \ X -e 'print("Executing $(RCS_LABEL) ...\n"); system("$(RCS_LABEL) @all");' X X X# --- MakeMaker install section: X Xinstall :: all pure_install doc_install X Xinstall_perl :: all pure_perl_install doc_perl_install X Xinstall_site :: all pure_site_install doc_site_install X Xinstall_ :: install_site X @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site X Xpure_install :: pure_$(INSTALLDIRS)_install X Xdoc_install :: doc_$(INSTALLDIRS)_install X @echo Appending installation info to $(INSTALLARCHLIB)/perllocal.pod X Xpure__install : pure_site_install X @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site X Xdoc__install : doc_site_install X @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site X Xpure_perl_install :: X @$(MOD_INSTALL) \ X read $(PERL_ARCHLIB)/auto/$(FULLEXT)/.packlist \ X write $(INSTALLARCHLIB)/auto/$(FULLEXT)/.packlist \ X $(INST_LIB) $(INSTALLPRIVLIB) \ X $(INST_ARCHLIB) $(INSTALLARCHLIB) \ X $(INST_BIN) $(INSTALLBIN) \ X $(INST_SCRIPT) $(INSTALLSCRIPT) \ X $(INST_MAN1DIR) $(INSTALLMAN1DIR) \ X $(INST_MAN3DIR) $(INSTALLMAN3DIR) X @$(WARN_IF_OLD_PACKLIST) \ X $(SITEARCHEXP)/auto/$(FULLEXT) X X Xpure_site_install :: X @$(MOD_INSTALL) \ X read $(SITEARCHEXP)/auto/$(FULLEXT)/.packlist \ X write $(INSTALLSITEARCH)/auto/$(FULLEXT)/.packlist \ X $(INST_LIB) $(INSTALLSITELIB) \ X $(INST_ARCHLIB) $(INSTALLSITEARCH) \ X $(INST_BIN) $(INSTALLBIN) \ X $(INST_SCRIPT) $(INSTALLSCRIPT) \ X $(INST_MAN1DIR) $(INSTALLMAN1DIR) \ X $(INST_MAN3DIR) $(INSTALLMAN3DIR) X @$(WARN_IF_OLD_PACKLIST) \ X $(PERL_ARCHLIB)/auto/$(FULLEXT) X Xdoc_perl_install :: X -@$(DOC_INSTALL) \ X "Module" "$(NAME)" \ X "installed into" "$(INSTALLPRIVLIB)" \ X LINKTYPE "$(LINKTYPE)" \ X VERSION "$(VERSION)" \ X EXE_FILES "$(EXE_FILES)" \ X >> $(INSTALLARCHLIB)/perllocal.pod X Xdoc_site_install :: X -@$(DOC_INSTALL) \ X "Module" "$(NAME)" \ X "installed into" "$(INSTALLSITELIB)" \ X LINKTYPE "$(LINKTYPE)" \ X VERSION "$(VERSION)" \ X EXE_FILES "$(EXE_FILES)" \ X >> $(INSTALLARCHLIB)/perllocal.pod X X Xuninstall :: uninstall_from_$(INSTALLDIRS)dirs X Xuninstall_from_perldirs :: X @$(UNINSTALL) $(PERL_ARCHLIB)/auto/$(FULLEXT)/.packlist X Xuninstall_from_sitedirs :: X @$(UNINSTALL) $(SITEARCHEXP)/auto/$(FULLEXT)/.packlist X X X# --- MakeMaker force section: X# Phony target to force checking subdirectories. XFORCE: X @$(NOOP) X X X# --- MakeMaker perldepend section: X X X# --- MakeMaker makefile section: X X# We take a very conservative approach here, but it\'s worth it. X# We move Makefile to Makefile.old here to avoid gnu make looping. XMakefile : Makefile.PL $(CONFIGDEP) X @echo "Makefile out-of-date with respect to $?" X @echo "Cleaning current config before rebuilding Makefile..." X -@$(RM_F) Makefile.old X -@$(MV) Makefile Makefile.old X -$(MAKE) -f Makefile.old clean $(DEV_NULL) || $(NOOP) X $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" Makefile.PL "CC=cc" "CCFLAGS=-O -pipe " "PREFIX=/usr/local" X @echo "==> Your Makefile has been rebuilt. <==" X @echo "==> Please rerun the make command. <==" X false X X# To change behavior to :: would be nice, but would break Tk b9.02 X# so you find such a warning below the dist target. X#Makefile :: $(VERSION_FROM) X# @echo "Warning: Makefile possibly out of date with $(VERSION_FROM)" X X X# --- MakeMaker staticmake section: X X# --- MakeMaker makeaperl section --- XMAP_TARGET = perl XFULLPERL = /usr/bin/perl5.00503 X X$(MAP_TARGET) :: static $(MAKE_APERL_FILE) X $(MAKE) -f $(MAKE_APERL_FILE) $@ X X$(MAKE_APERL_FILE) : $(FIRST_MAKEFILE) X @echo Writing \"$(MAKE_APERL_FILE)\" for this $(MAP_TARGET) X @$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \ X Makefile.PL DIR=grammar \ X MAKEFILE=$(MAKE_APERL_FILE) LINKTYPE=static \ X MAKEAPERL=1 NORECURS=1 CCCDLFLAGS= \ X CC=cc \ X CCFLAGS='-O -pipe ' \ X PREFIX=/usr/local X X X# --- MakeMaker test section: X XTEST_VERBOSE=0 XTEST_TYPE=test_$(LINKTYPE) XTEST_FILE = test.pl XTEST_FILES = t/*.t XTESTDB_SW = -d X Xtestdb :: testdb_$(LINKTYPE) X Xtest :: $(TEST_TYPE) X @cd grammar && $(TEST_F) Makefile && $(MAKE) test $(PASTHRU) X Xtest_dynamic :: pure_all X PERL_DL_NONLAZY=1 $(FULLPERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -e 'use Test::Harness qw(&runtests $$verbose); $$verbose=$(TEST_VERBOSE); runtests @ARGV;' $(TEST_FILES) X Xtestdb_dynamic :: pure_all X PERL_DL_NONLAZY=1 $(FULLPERL) $(TESTDB_SW) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(TEST_FILE) X Xtest_ : test_dynamic X Xtest_static :: test_dynamic Xtestdb_static :: testdb_dynamic X X X# --- MakeMaker ppd section: X# Creates a PPD (Perl Package Description) for a binary distribution. Xppd: X @$(PERL) -e "print qq{\n}. qq{\tInline-CPP\n}. qq{\t\n}. qq{\t\n}. qq{\t\n}. qq{\t\t\n}. qq{\t\t\n}. qq{\t\t\n}. qq{\t\n}. qq{\n}" > Inline-CPP.ppd X X# --- MakeMaker pm_to_blib section: X Xpm_to_blib: $(TO_INST_PM) X @$(PERL) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" \ X "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -MExtUtils::Install \ X -e "pm_to_blib({qw{$(PM_TO_BLIB)}},'$(INST_LIB)/auto')" X @$(TOUCH) $@ X X X# --- MakeMaker selfdocument section: X X X# --- MakeMaker postamble section: X X X# End. END-of-p5-Inline-CPP/work/Inline-CPP-0.23/Makefile echo x - p5-Inline-CPP/work/Inline-CPP-0.23/pm_to_blib sed 's/^X//' >p5-Inline-CPP/work/Inline-CPP-0.23/pm_to_blib << 'END-of-p5-Inline-CPP/work/Inline-CPP-0.23/pm_to_blib' END-of-p5-Inline-CPP/work/Inline-CPP-0.23/pm_to_blib echo x - p5-Inline-CPP/work/.extract_done.p5-Inline-CPP-0.23 sed 's/^X//' >p5-Inline-CPP/work/.extract_done.p5-Inline-CPP-0.23 << 'END-of-p5-Inline-CPP/work/.extract_done.p5-Inline-CPP-0.23' END-of-p5-Inline-CPP/work/.extract_done.p5-Inline-CPP-0.23 echo x - p5-Inline-CPP/work/.patch_done.p5-Inline-CPP-0.23 sed 's/^X//' >p5-Inline-CPP/work/.patch_done.p5-Inline-CPP-0.23 << 'END-of-p5-Inline-CPP/work/.patch_done.p5-Inline-CPP-0.23' END-of-p5-Inline-CPP/work/.patch_done.p5-Inline-CPP-0.23 echo x - p5-Inline-CPP/work/.configure_done.p5-Inline-CPP-0.23 sed 's/^X//' >p5-Inline-CPP/work/.configure_done.p5-Inline-CPP-0.23 << 'END-of-p5-Inline-CPP/work/.configure_done.p5-Inline-CPP-0.23' END-of-p5-Inline-CPP/work/.configure_done.p5-Inline-CPP-0.23 echo x - p5-Inline-CPP/work/.build_done.p5-Inline-CPP-0.23 sed 's/^X//' >p5-Inline-CPP/work/.build_done.p5-Inline-CPP-0.23 << 'END-of-p5-Inline-CPP/work/.build_done.p5-Inline-CPP-0.23' END-of-p5-Inline-CPP/work/.build_done.p5-Inline-CPP-0.23 echo x - p5-Inline-CPP/Makefile sed 's/^X//' >p5-Inline-CPP/Makefile << 'END-of-p5-Inline-CPP/Makefile' X# New ports collection makefile for: Inline::CPP X# Date created: 14 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= Inline-CPP XPORTVERSION= 0.23 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Inline XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Inline.pm:${PORTSDIR}/devel/p5-Inline XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes XCONFIGURE_ARGS= END-of-p5-Inline-CPP/Makefile echo x - p5-Inline-CPP/pkg-comment sed 's/^X//' >p5-Inline-CPP/pkg-comment << 'END-of-p5-Inline-CPP/pkg-comment' XWrite Perl subroutines and classes in C++ END-of-p5-Inline-CPP/pkg-comment echo x - p5-Inline-CPP/pkg-descr sed 's/^X//' >p5-Inline-CPP/pkg-descr << 'END-of-p5-Inline-CPP/pkg-descr' XThe Inline::CPP module allows you to put C++ source code directly X"inline" in a Perl script or module. You code classes or functions in XC++, and you can use them as if they were written in Perl. X XWWW: http://search.cpan.org/search?dist=Inline-CPP X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-Inline-CPP/pkg-descr echo x - p5-Inline-CPP/pkg-plist sed 's/^X//' >p5-Inline-CPP/pkg-plist << 'END-of-p5-Inline-CPP/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/CPP/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Inline/CPP.pm Xlib/perl5/site_perl/%%PERL_VER%%/Inline/CPP.pod Xlib/perl5/site_perl/%%PERL_VER%%/Inline/CPP/grammar.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/Inline/CPP X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/CPP X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Inline 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline 2>/dev/null || true END-of-p5-Inline-CPP/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 6: 9:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C42837B419; Sat, 15 Dec 2001 06:09:42 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFE6vG63633; Sat, 15 Dec 2001 06:06:57 -0800 (PST) (envelope-from pat) Date: Sat, 15 Dec 2001 06:06:57 -0800 (PST) From: Message-Id: <200112151406.fBFE6vG63633@freefall.freebsd.org> To: michiel.dewilde@rug.ac.be, pat@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32099: Update port: x11-wm/mosfet-liquid (BY MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: x11-wm/mosfet-liquid (BY MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: pat State-Changed-When: Sat Dec 15 06:06:37 PST 2001 State-Changed-Why: Committed, Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32099 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 6:20:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 01B3237B416 for ; Sat, 15 Dec 2001 06:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFEK0j64786; Sat, 15 Dec 2001 06:20:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A97537B41A for ; Sat, 15 Dec 2001 06:13:56 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFEDuS64249; Sat, 15 Dec 2001 06:13:56 -0800 (PST) (envelope-from nobody) Message-Id: <200112151413.fBFEDuS64249@freefall.freebsd.org> Date: Sat, 15 Dec 2001 06:13:56 -0800 (PST) From: Miguel Mendez To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32870: sysutils/koncd can't be built, should be upgraded to 1.0.rc2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32870 >Category: ports >Synopsis: sysutils/koncd can't be built, should be upgraded to 1.0.rc2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 06:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Miguel Mendez >Release: FreeBSD 4.4-STABLE >Organization: n/a >Environment: FreeBSD swordfish.energyhq.org 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Dec 5 18:08:19 CET 2001 root@swordfish.energyhq.org:/usr/obj/usr/src/sys/SWORDFISH i386 >Description: KonCD has been upgraded to 1.0rc2, and the old rc1 is no longer available for download. I've tried upgrading the package myself but unfortunately I've been unable to compile, I attach a partial upgrade. >How-To-Repeat: cd /usr/ports/sysutils/koncd && make install >Fix: begin 644 koncd.diff M9&EF9B`MBD@/2!D8C)B968S8V$T-&-F9C-F,S=F-3(W.3!D.34V '9&$X,@HK"@`` ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 6:20:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 49F8C37B419 for ; Sat, 15 Dec 2001 06:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFEK1w64795; Sat, 15 Dec 2001 06:20:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 6387D37B419 for ; Sat, 15 Dec 2001 06:18:00 -0800 (PST) Received: from 3wgraphics.com (ppp-9-066.comintern.ru [213.148.9.66]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBFEHrQ391931 for ; Sat, 15 Dec 2001 17:17:54 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16FFYs-000D8p-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 15 Dec 2001 17:13:10 +0300 Message-Id: Date: Sat, 15 Dec 2001 17:13:10 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32871: Update port: p5-XML-Parser-encodings-1.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32871 >Category: ports >Synopsis: Update port: p5-XML-Parser-encodings-1.02 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 06:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: Update port: p5-XML-Parser-encodings-1.02 Additional russian encodings for XML::Parser >How-To-Repeat: >Fix: diff -ur p5-XML-Parser-encodings-1.01/Makefile p5-XML-Parser-encodings/Makefile --- p5-XML-Parser-encodings-1.01/Makefile Sat Dec 15 17:07:08 2001 +++ p5-XML-Parser-encodings/Makefile Sat Dec 15 17:11:52 2001 @@ -6,7 +6,7 @@ # PORTNAME= XML-Parser-encodings -PORTVERSION= 1.01 +PORTVERSION= 1.02 CATEGORIES= russian textproc perl5 PKGNAMEPREFIX= p5- DISTFILES= @@ -20,13 +20,13 @@ ${NONEXISTENT}:${PORTSDIR}/converters/iconv-extra:extract NO_WRKSUBDIR= YES - RUSSIANENC= windows-1251 koi8-r cp1251 cp866 mac-cyrillic post-extract: .for ICONVPORT in iconv iconv-extra - ${LN} -sfh `find ${PORTSDIR}/converters/${ICONVPORT} -type d \ - -name "ccs"` ${WRKSRC}/${ICONVPORT} + @${LN} -s \ + `cd ${PORTSDIR}/converters/${ICONVPORT} && ${MAKE} -V WRKSRC`/ccs \ + ${WRKSRC}/${ICONVPORT} .endfor do-configure: @@ -42,7 +42,7 @@ do-build: .for ENC in ${RUSSIANENC} @${PREFIX}/bin/make_encmap ${ENC} ${WRKDIR}/${ENC}.txt | \ - ${PERL} -pi -e "s/(?<=^)/ expat='yes'/;" \ + @${PERL} -pi -e "s/(?<=^)/ expat='yes'/;" \ >${WRKDIR}/${ENC}.xml @${PREFIX}/bin/compile_encoding \ -o ${WRKDIR}/${ENC}.enc ${WRKDIR}/${ENC}.xml >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 6:34: 5 2001 Delivered-To: freebsd-ports@freebsd.org Received: from pluto.runbox.com (pluto.runbox.com [193.71.199.39]) by hub.freebsd.org (Postfix) with ESMTP id C711537B419; Sat, 15 Dec 2001 06:34:00 -0800 (PST) Received: from [62.107.25.113] (helo=3E6B1971.aarh.stofanet.dk) by pluto.runbox.com with esmtp (Exim 3.16 #2) id 16FFsg-0002Kl-00; Sat, 15 Dec 2001 15:33:38 +0100 Subject: FreeBSD Port: gnomepilot-conduits-0.8 From: Kasper Steensgaard To: gnome@FreeBSD.org Cc: ports@FreeBSD.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-g0NCYKa+fxEuz5Q7qq8y" X-Mailer: Evolution/1.0 (Preview Release) Date: 15 Dec 2001 15:33:50 +0100 Message-Id: <1008426831.19481.0.camel@elysium> Mime-Version: 1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --=-g0NCYKa+fxEuz5Q7qq8y Content-Type: text/plain Content-Transfer-Encoding: quoted-printable When i enable the memofile conduit in the gnomecc, the gpilotd-control-applet segfaults. (When I release the enable button) Does anybody know the solution to this problem ? btw. thanks for the evolution upgrade to make it support palm-sync'ing -- Kasper --=-g0NCYKa+fxEuz5Q7qq8y Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQA8G19OnXgdhQeXASURAhm7AJkB/Enw0+7CBoM2rwMWCab5pzOR8QCfUruo KBUU35HWGATjQLoZ6eAhM2M= =QRQo -----END PGP SIGNATURE----- --=-g0NCYKa+fxEuz5Q7qq8y-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 6:39:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3C0937B41A; Sat, 15 Dec 2001 06:39:41 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFEc3E92510; Sat, 15 Dec 2001 06:38:03 -0800 (PST) (envelope-from ijliao) Date: Sat, 15 Dec 2001 06:38:03 -0800 (PST) From: Message-Id: <200112151438.fBFEc3E92510@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org, demon@FreeBSD.org Subject: Re: ports/32870: sysutils/koncd can't be built, should be upgraded to 1.0.rc2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sysutils/koncd can't be built, should be upgraded to 1.0.rc2 Responsible-Changed-From-To: freebsd-ports->demon Responsible-Changed-By: ijliao Responsible-Changed-When: Sat Dec 15 06:37:54 PST 2001 Responsible-Changed-Why: over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32870 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 6:39:47 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 969B237B419; Sat, 15 Dec 2001 06:39:41 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFEUSx65740; Sat, 15 Dec 2001 06:30:28 -0800 (PST) (envelope-from lioux) Date: Sat, 15 Dec 2001 06:30:28 -0800 (PST) From: Message-Id: <200112151430.fBFEUSx65740@freefall.freebsd.org> To: john_m_cooper@yahoo.com, lioux@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32847: [MAINTAINER UPDATE] unbreak plugger for latest mozilla Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] unbreak plugger for latest mozilla State-Changed-From-To: open->closed State-Changed-By: lioux State-Changed-When: Sat Dec 15 06:30:06 PST 2001 State-Changed-Why: Committed, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32847 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 7: 4:39 2001 Delivered-To: freebsd-ports@freebsd.org Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 8D5E437B416; Sat, 15 Dec 2001 07:04:33 -0800 (PST) Received: from 3wgraphics.com (ppp-9-066.comintern.ru [213.148.9.66]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBFF4PQ488082; Sat, 15 Dec 2001 18:04:25 +0300 (MSD) Received: from godegisel.3wgraphics.com ([192.168.0.1] helo=protey.ru) by 3wgraphics.com with esmtp (Exim 3.33 #1) id 16FGHo-000ELx-00; Sat, 15 Dec 2001 17:59:36 +0300 Message-ID: <3C1B6558.34E8517@protey.ru> Date: Sat, 15 Dec 2001 17:59:36 +0300 From: Sergey Skvortsov X-Mailer: Mozilla 4.78 [en] (Windows NT 5.0; U) X-Accept-Language: en,ru MIME-Version: 1.0 To: portmgr@freebsd.org Cc: ports@freebsd.org Subject: bsd.port.mk patch Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org this patch is intended to: 1. add default MANPREFIX if PERL_CONFIGURE=yes 2. add useful variables to PLIST_SUB --- bsd.port.mk.orig Wed Nov 28 08:00:36 2001 +++ bsd.port.mk Sat Dec 15 17:54:45 2001 @@ -1378,6 +1378,7 @@ CONFIGURE_ARGS+= CC="${CC}" CCFLAGS="${CFLAGS}" PREFIX="${PREFIX}" CONFIGURE_SCRIPT?= Makefile.PL USE_PERL5= yes +MANPREFIX?= ${PREFIX}/lib/perl5/${PERL_VERSION} .undef HAS_CONFIGURE .endif @@ -1497,6 +1498,11 @@ DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME} EXAMPLESDIR?= ${PREFIX}/share/examples/${PORTNAME} DATADIR?= ${PREFIX}/share/${PORTNAME} + +PLIST_DIRS= DOCSDIR="${DOCSDIR}" \ + EXAMPLESDIR="${EXAMPLESDIR}" \ + DATADIR="${DATADIR}" +PLIST_SUB+= ${PLIST_DIRS:S,DIR="${LOCALBASE}/,DIR=",} .MAIN: all -- Sergey Skvortsov mailto: skv@protey.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 7: 9:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28C4D37B417; Sat, 15 Dec 2001 07:09:42 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFF4FF86058; Sat, 15 Dec 2001 07:04:15 -0800 (PST) (envelope-from lioux) Date: Sat, 15 Dec 2001 07:04:15 -0800 (PST) From: Message-Id: <200112151504.fBFF4FF86058@freefall.freebsd.org> To: tkato@prontomail.com, lioux@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32854: Update port: graphics/gd (fix ports/31451) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: graphics/gd (fix ports/31451) State-Changed-From-To: open->closed State-Changed-By: lioux State-Changed-When: Sat Dec 15 07:03:43 PST 2001 State-Changed-Why: Committed, thanks! Please, list the removed files in following PRs. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32854 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 7: 9:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D4F537B419; Sat, 15 Dec 2001 07:09:42 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFF3Pi85942; Sat, 15 Dec 2001 07:03:25 -0800 (PST) (envelope-from lioux) Date: Sat, 15 Dec 2001 07:03:25 -0800 (PST) From: Message-Id: <200112151503.fBFF3Pi85942@freefall.freebsd.org> To: stijn@win.tue.nl, lioux@FreeBSD.org, billf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/26104: PORT UPDATE: add ${FREETYPE_CONFIG} support for graphics/gd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: PORT UPDATE: add ${FREETYPE_CONFIG} support for graphics/gd State-Changed-From-To: open->closed State-Changed-By: lioux State-Changed-When: Sat Dec 15 07:00:34 PST 2001 State-Changed-Why: Maintainership was released to freebsd-ports PR fixed by PR 32854 Responsible-Changed-From-To: billf->freebsd-ports Responsible-Changed-By: lioux Responsible-Changed-When: Sat Dec 15 07:00:34 PST 2001 Responsible-Changed-Why: Maintainership was released to freebsd-ports http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26104 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 7:20:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5067937B417 for ; Sat, 15 Dec 2001 07:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFFK1G90482; Sat, 15 Dec 2001 07:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E2AFB37B419 for ; Sat, 15 Dec 2001 07:14:04 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFFE4T89999; Sat, 15 Dec 2001 07:14:04 -0800 (PST) (envelope-from nobody) Message-Id: <200112151514.fBFFE4T89999@freefall.freebsd.org> Date: Sat, 15 Dec 2001 07:14:04 -0800 (PST) From: Andreas Klemm To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/32872: nethack3-gnome port, gtk library component complains about running SUID Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32872 >Category: ports >Synopsis: nethack3-gnome port, gtk library component complains about running SUID >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 07:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andreas Klemm >Release: 4.4 >Organization: >Environment: FreeBSD titan.klemm.gtn.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 8 17:33:34 CET 2001 root@titan.klemm.gtn.com:/usr/src/sys/compile/TITAN i386 >Description: andreas@titan[ttyp2]{1003} ~ nethack Gtk-WARNING **: This process is currently running setuid or setgid. This is not a supported use of GTK+. You must create a helper program instead. For further details, see: http://www.gtk.org/setuid.html Refusing to initialize GTK+. These shared libs are in use: andreas@titan[ttyp2]{1018} ...share/nethack ldd nethack nethack: libncurses.so.5 => /usr/lib/libncurses.so.5 (0x281cb000) libgnomeui.so.5 => /usr/X11R6/lib/libgnomeui.so.5 (0x2820d000) libgnome.so.5 => /usr/X11R6/lib/libgnome.so.5 (0x282db000) libart_lgpl.so.5 => /usr/X11R6/lib/libart_lgpl.so.5 (0x282f2000) libgtk12.so.2 => /usr/X11R6/lib/libgtk12.so.2 (0x28300000) libgdk12.so.2 => /usr/X11R6/lib/libgdk12.so.2 (0x28428000) libglib12.so.3 => /usr/local/lib/libglib12.so.3 (0x2845a000) libpopt.so.0 => /usr/local/lib/libpopt.so.0 (0x2847c000) libc.so.4 => /usr/lib/libc.so.4 (0x28482000) libgdk_imlib.so.5 => /usr/X11R6/lib/libgdk_imlib.so.5 (0x2851b000) libesd.so.2 => /usr/local/lib/libesd.so.2 (0x28544000) libaudiofile.so.0 => /usr/local/lib/libaudiofile.so.0 (0x2854c000) libm.so.2 => /usr/lib/libm.so.2 (0x2856d000) libtiff.so.4 => /usr/local/lib/libtiff.so.4 (0x28589000) libungif.so.5 => /usr/local/lib/libungif.so.5 (0x285ca000) libpng.so.5 => /usr/local/lib/libpng.so.5 (0x285d2000) libz.so.2 => /usr/lib/libz.so.2 (0x285f4000) libgmodule12.so.3 => /usr/local/lib/libgmodule12.so.3 (0x28601000) libintl.so.1 => /usr/local/lib/libintl.so.1 (0x28604000) libxpg4.so.3 => /usr/lib/libxpg4.so.3 (0x28609000) libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x2860b000) libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x28619000) libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x286f4000) libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x286fd000) libjpeg.so.9 => /usr/local/lib/libjpeg.so.9 (0x28713000) libXThrStub.so.6 => /usr/X11R6/lib/libXThrStub.so.6 (0x28731000) >How-To-Repeat: compile and install nethack3-gnome port >Fix: write a wrapper program to make the port work out of the box ? I tried to chmod 0555 /usr/local/share/nethack/nethack and chmod g+s /usr/local/bin/nethack to make it SUID games, but appearantly SGID doesn't work on FreeBSD with shellscripts, remember an issue with that but forgot what needs to be arranged. Putting an "id" command in /usr/local/bin/nethack shellscript gives on the output: andreas@titan[ttyp2]{1066} ...local/bin nethack uid=1001(andreas) gid=1001(andreas) groups=1001(andreas), 0(wheel), 5(operator) Warning: cannot write scoreboard file record No write permission to lock perm! So: SGID shellscript doesn't do the right thing ... Could it be the case that we need a binary wrapper program ??? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 7:20:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EB6437B41B for ; Sat, 15 Dec 2001 07:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFFK1I90491; Sat, 15 Dec 2001 07:20:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id 75D6237B41A for ; Sat, 15 Dec 2001 07:15:55 -0800 (PST) Received: from 3wgraphics.com (ppp-9-066.comintern.ru [213.148.9.66]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBFFFnQ436144 for ; Sat, 15 Dec 2001 18:15:50 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16FGSy-000Etz-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 15 Dec 2001 18:11:08 +0300 Message-Id: Date: Sat, 15 Dec 2001 18:11:08 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32873: New port: p5-Inline-Tcl-0.09 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32873 >Category: ports >Synopsis: New port: p5-Inline-Tcl-0.09 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 07:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-Inline-Tcl-0.09 Write Perl subroutines in Tcl >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Inline-Tcl # p5-Inline-Tcl/Makefile # p5-Inline-Tcl/pkg-comment # p5-Inline-Tcl/pkg-descr # p5-Inline-Tcl/pkg-plist # p5-Inline-Tcl/distinfo # echo c - p5-Inline-Tcl mkdir -p p5-Inline-Tcl > /dev/null 2>&1 echo x - p5-Inline-Tcl/Makefile sed 's/^X//' >p5-Inline-Tcl/Makefile << 'END-of-p5-Inline-Tcl/Makefile' X# New ports collection makefile for: Inline::Tcl X# Date created: 14 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= Inline-Tcl XPORTVERSION= 0.09 XCATEGORIES= devel perl5 tcl83 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Inline XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Inline.pm:${PORTSDIR}/devel/p5-Inline XLIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes XCONFIGURE_ARGS= END-of-p5-Inline-Tcl/Makefile echo x - p5-Inline-Tcl/pkg-comment sed 's/^X//' >p5-Inline-Tcl/pkg-comment << 'END-of-p5-Inline-Tcl/pkg-comment' XWrite Perl subroutines in Tcl END-of-p5-Inline-Tcl/pkg-comment echo x - p5-Inline-Tcl/pkg-descr sed 's/^X//' >p5-Inline-Tcl/pkg-descr << 'END-of-p5-Inline-Tcl/pkg-descr' XThe Inline::Tcl module allows you to put Tcl source code directly X"inline" in a Perl script or module. A Tcl interpreter is loaded and the XTcl code is interpreted, then Perl asks the Tcl interpreter which global Xprocedures have been defined. Those functions are made available to your XPerl program as if they had been written in Perl. X XThe process of interrogating the Tcl interpreter for globals only occurs Xthe first time you run your Tcl code. The namespace is cached, and Xsubsequent calls use the cached version. X XWWW: http://search.cpan.org/search?dist=Inline-Tcl X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-Inline-Tcl/pkg-descr echo x - p5-Inline-Tcl/pkg-plist sed 's/^X//' >p5-Inline-Tcl/pkg-plist << 'END-of-p5-Inline-Tcl/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/Tcl/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Inline/Tcl.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Inline/Tcl.pod Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/Tcl/Tcl.bs Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/Tcl/Tcl.so X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/Tcl X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Inline 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline 2>/dev/null || true END-of-p5-Inline-Tcl/pkg-plist echo x - p5-Inline-Tcl/distinfo sed 's/^X//' >p5-Inline-Tcl/distinfo << 'END-of-p5-Inline-Tcl/distinfo' XMD5 (Inline-Tcl-0.09.tar.gz) = c3f0a7852196b68a89128e54ce381f07 END-of-p5-Inline-Tcl/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 7:30:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E299837B417 for ; Sat, 15 Dec 2001 07:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFFU1f91149; Sat, 15 Dec 2001 07:30:01 -0800 (PST) (envelope-from gnats) Received: from arrakis.niedermayer.com (dial-224.digitel2002.hu [213.163.2.224]) by hub.freebsd.org (Postfix) with ESMTP id 569E837B419 for ; Sat, 15 Dec 2001 07:26:47 -0800 (PST) Received: from [fec0:ff:0:5::2] (helo=niedermayer.com) by arrakis.niedermayer.com with esmtp (Exim 3.33 #1) id 16FGhD-0004Py-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 15 Dec 2001 16:25:51 +0100 Received: (qmail 16983 invoked by uid 1003); 15 Dec 2001 15:25:51 -0000 Message-Id: <20011215152551.16982.qmail@niedermayer.com> Date: 15 Dec 2001 15:25:51 -0000 From: mico@bsd.hu Reply-To: Miklos Niedermayer To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32874: Maintainer update of misc/smssend Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32874 >Category: ports >Synopsis: Maintainer update of misc/smssend >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 07:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Miklos Niedermayer >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD arrakis.niedermayer.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Mon Oct 29 11:27:23 CET 2001 root@arrakis.niedermayer.com:/usr/obj/usr/src/sys/MICO i386 >Description: The patch below updates misc/smssend to version 2.9 and fixes a bug i made in the last update (man files in pkg-plist). Also ** please remove the files subdirectory **, it's no longer needed. Thank you. >How-To-Repeat: >Fix: diff -uNr smssend.old/Makefile smssend/Makefile --- smssend.old/Makefile Tue Nov 6 18:05:11 2001 +++ smssend/Makefile Sat Dec 15 16:03:27 2001 @@ -6,7 +6,7 @@ # PORTNAME= smssend -PORTVERSION= 2.8 +PORTVERSION= 2.9 CATEGORIES= misc MASTER_SITES= http://zekiller.skytech.org/fichiers/smssend/ diff -uNr smssend.old/distinfo smssend/distinfo --- smssend.old/distinfo Tue Nov 6 18:05:11 2001 +++ smssend/distinfo Sat Dec 15 16:03:32 2001 @@ -1 +1 @@ -MD5 (smssend-2.8.tar.gz) = 423584c2fffdf5d30b3dd28fb9b08cda +MD5 (smssend-2.9.tar.gz) = c29c82d6bb0e3a8eeef8dc8a0ad124a6 diff -uNr smssend.old/pkg-plist smssend/pkg-plist --- smssend.old/pkg-plist Sat Dec 15 16:10:20 2001 +++ smssend/pkg-plist Sat Dec 15 16:20:40 2001 @@ -1,11 +1,5 @@ bin/smssend bin/email2smssend -man/man1/email2smssend.1.gz -man/man1/smssend.1.gz -man/man1/smssend.scripting.1.gz -man/fr/man1/email2smssend.1.gz -man/fr/man1/smssend.1.gz -man/fr/man1/smssend.scripting.1.gz share/smssend/1rstwap.sms share/smssend/6sens.sms share/smssend/banana.sms @@ -13,11 +7,14 @@ share/smssend/bol.sms share/smssend/bol_rus.sms share/smssend/boltblue.sms +share/smssend/caltanet.sms +share/smssend/coolsmsdk.sms share/smssend/e-merge.sms share/smssend/eurobate.sms share/smssend/eurotel.sms share/smssend/everyday.sms share/smssend/exoset.sms +share/smssend/extel-gsm.sms share/smssend/fajront.sms share/smssend/fido.sms share/smssend/free-sms.sms @@ -28,9 +25,11 @@ share/smssend/handypack.sms share/smssend/hooya.sms share/smssend/hotsms.sms -share/smssend/iol.sms +share/smssend/inet.sms share/smssend/info2you.sms share/smssend/ingyensms.sms +share/smssend/inwind.sms +share/smssend/iol.sms share/smssend/kiwee-inter.sms share/smssend/kiwee-pseudo.sms share/smssend/kiwee.sms @@ -48,6 +47,8 @@ share/smssend/mybegin.sms share/smssend/navegalia.sms share/smssend/nwgsm.sms +share/smssend/onelv.sms +share/smssend/orf.sms share/smssend/oskar.sms share/smssend/paegas.sms share/smssend/passagen.sms @@ -61,12 +62,14 @@ share/smssend/smspress.sms share/smssend/starhub.sms share/smssend/suomi24.sms +share/smssend/surfeu.sms share/smssend/time.sms share/smssend/totalise.sms share/smssend/unimobile.sms share/smssend/vlf.sms share/smssend/w777.sms share/smssend/w777f.sms +share/smssend/yab.sms @dirrm man/fr @dirrm man/fr/man1 @dirrm share/smssend >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 8:29:47 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C85B37B417; Sat, 15 Dec 2001 08:29:42 -0800 (PST) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFGOiG99523; Sat, 15 Dec 2001 08:24:44 -0800 (PST) (envelope-from tobez) Date: Sat, 15 Dec 2001 08:24:44 -0800 (PST) From: Message-Id: <200112151624.fBFGOiG99523@freefall.freebsd.org> To: tobez@FreeBSD.org, freebsd-ports@FreeBSD.org, tobez@FreeBSD.org Subject: Re: ports/32871: Update port: p5-XML-Parser-encodings-1.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: p5-XML-Parser-encodings-1.02 Responsible-Changed-From-To: freebsd-ports->tobez Responsible-Changed-By: tobez Responsible-Changed-When: Sat Dec 15 08:24:11 PST 2001 Responsible-Changed-Why: I'll take care of this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32871 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 8:29:48 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD86737B416; Sat, 15 Dec 2001 08:29:41 -0800 (PST) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFGNeN99333; Sat, 15 Dec 2001 08:23:40 -0800 (PST) (envelope-from tobez) Date: Sat, 15 Dec 2001 08:23:40 -0800 (PST) From: Message-Id: <200112151623.fBFGNeN99333@freefall.freebsd.org> To: skv@protey.ru, tobez@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/30679: Update port: Sablot-0.70 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: Sablot-0.70 State-Changed-From-To: feedback->closed State-Changed-By: tobez State-Changed-When: Sat Dec 15 08:22:43 PST 2001 State-Changed-Why: Superceeded by 32334. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30679 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 9: 2:29 2001 Delivered-To: freebsd-ports@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id AB96037B405; Sat, 15 Dec 2001 09:02:22 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id TAA23044; Sat, 15 Dec 2001 19:02:18 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from h203.228.dialup.iptcom.net (h203.228.dialup.iptcom.net [212.9.228.203]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id TAA15225; Sat, 15 Dec 2001 19:02:15 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Subject: [HEADS-UP] Serious Evolution stability issue has been resolved From: Maxim Sobolev To: gnome@FreeBSD.org Cc: ports@FreeBSD.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0 (Preview Release) Date: 15 Dec 2001 19:02:09 +0200 Message-Id: <1008435732.37441.0.camel@notebook> Mime-Version: 1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi folks, Just to let you know, that after my last db3 surgery stability of Evolution improved greatly - I'm testing it for almost a day now and so far have not had a single(!!!) crash. On the same system (my development 5-CURRENT box) previous version was not even able to complete initial configuation wizard. Therefore, update to evolution-1.0_4 is really recommended for all current users and is a must before reporting any problems. Of course, I'm typing this message in Evolution - it really rocks, and if you are looking for the good mail client for FreeBSD then you should give it a try. :) Thanks! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 9:29:47 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EB9837B41A; Sat, 15 Dec 2001 09:29:43 -0800 (PST) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFHKxu08646; Sat, 15 Dec 2001 09:20:59 -0800 (PST) (envelope-from tobez) Date: Sat, 15 Dec 2001 09:20:59 -0800 (PST) From: Message-Id: <200112151720.fBFHKxu08646@freefall.freebsd.org> To: skv@protey.ru, tobez@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32867: New port: p5-Inline-ASM-0.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-Inline-ASM-0.03 State-Changed-From-To: open->closed State-Changed-By: tobez State-Changed-When: Sat Dec 15 09:13:59 PST 2001 State-Changed-Why: New port added, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32867 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 9:30:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E80137B420 for ; Sat, 15 Dec 2001 09:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFHU0210132; Sat, 15 Dec 2001 09:30:00 -0800 (PST) (envelope-from gnats) Received: from mail.westbend.net (ns1.westbend.net [216.47.253.3]) by hub.freebsd.org (Postfix) with ESMTP id B446A37B416 for ; Sat, 15 Dec 2001 09:27:05 -0800 (PST) Received: (from admin@localhost) by mail.westbend.net (8.11.6/8.11.6) id fBFHR1Y44157; Sat, 15 Dec 2001 11:27:01 -0600 (CST) (envelope-from admin) Message-Id: <200112151727.fBFHR1Y44157@mail.westbend.net> Date: Sat, 15 Dec 2001 11:27:01 -0600 (CST) From: Scot Hetzel Reply-To: Scot Hetzel To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32875: p5-Achive-Zip - Zip distfile no longer available Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32875 >Category: ports >Synopsis: p5-Achive-Zip - Zip distfile no longer available >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 09:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Scot Hetzel >Release: FreeBSD 4.4-STABLE i386 >Organization: West Bend Internet >Environment: System: FreeBSD mail.westbend.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Dec 5 17:58:00 CST 2001 root@wbiW009.westbend.net:/usr/obj/usr/src/sys/GENERIC-SMP i386 >Description: The ${MASTER_SITE_PERL_CPAN} sites do not have the Zip file for p5-Archive-Zip. They only have the tar.gz file. >How-To-Repeat: Remove Archive-Zip-0.11.zip from /usr/ports/distfiles and try to build the port. >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/p5-Archive-Zip/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 10 Mar 2001 04:23:42 -0000 1.4 +++ Makefile 15 Dec 2001 17:16:31 -0000 @@ -17,7 +17,6 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Compress/Zlib.pm:${PORTSDIR}/archivers/p5-Compress-Zlib RUN_DEPENDS= ${BUILD_DEPENDS} -USE_ZIP= yes PERL_CONFIGURE= yes MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} Index: distinfo =================================================================== RCS file: /home/ncvs/ports/archivers/p5-Archive-Zip/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 26 Feb 2001 15:43:14 -0000 1.2 +++ distinfo 15 Dec 2001 17:11:18 -0000 @@ -1 +1 @@ -MD5 (Archive-Zip-0.11.zip) = 564fa866fb1338e34601dea9538b5382 +MD5 (Archive-Zip-0.11.tar.gz) = 5c30b462388c8a9c1544e3139b62383a >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 9:39:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBF4B37B405; Sat, 15 Dec 2001 09:39:41 -0800 (PST) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFHVpC10370; Sat, 15 Dec 2001 09:31:51 -0800 (PST) (envelope-from tobez) Date: Sat, 15 Dec 2001 09:31:51 -0800 (PST) From: Message-Id: <200112151731.fBFHVpC10370@freefall.freebsd.org> To: skv@protey.ru, tobez@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32869: New port: p5-Inline-CPP-0.23 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-Inline-CPP-0.23 State-Changed-From-To: open->closed State-Changed-By: tobez State-Changed-When: Sat Dec 15 09:21:08 PST 2001 State-Changed-Why: New port added, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32869 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 9:39:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BF7337B416; Sat, 15 Dec 2001 09:39:42 -0800 (PST) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFHbaU11591; Sat, 15 Dec 2001 09:37:36 -0800 (PST) (envelope-from tobez) Date: Sat, 15 Dec 2001 09:37:36 -0800 (PST) From: Message-Id: <200112151737.fBFHbaU11591@freefall.freebsd.org> To: skv@protey.ru, tobez@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32868: New port: p5-Inline-Filters-0.12 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-Inline-Filters-0.12 State-Changed-From-To: open->closed State-Changed-By: tobez State-Changed-When: Sat Dec 15 09:33:38 PST 2001 State-Changed-Why: New port added, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32868 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 9:49:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B88D437B405; Sat, 15 Dec 2001 09:49:43 -0800 (PST) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFHiLu12879; Sat, 15 Dec 2001 09:44:21 -0800 (PST) (envelope-from tobez) Date: Sat, 15 Dec 2001 09:44:21 -0800 (PST) From: Message-Id: <200112151744.fBFHiLu12879@freefall.freebsd.org> To: skv@protey.ru, tobez@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32873: New port: p5-Inline-Tcl-0.09 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: p5-Inline-Tcl-0.09 State-Changed-From-To: open->closed State-Changed-By: tobez State-Changed-When: Sat Dec 15 09:38:23 PST 2001 State-Changed-Why: New port added, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32873 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 9:59:52 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E20D937B617; Sat, 15 Dec 2001 09:59:41 -0800 (PST) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFHqRK13563; Sat, 15 Dec 2001 09:52:27 -0800 (PST) (envelope-from tobez) Date: Sat, 15 Dec 2001 09:52:27 -0800 (PST) From: Message-Id: <200112151752.fBFHqRK13563@freefall.freebsd.org> To: hetzels@westbend.net, tobez@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32875: p5-Achive-Zip - Zip distfile no longer available Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: p5-Achive-Zip - Zip distfile no longer available State-Changed-From-To: open->closed State-Changed-By: tobez State-Changed-When: Sat Dec 15 09:47:51 PST 2001 State-Changed-Why: Fix committed, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32875 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 10:57:54 2001 Delivered-To: freebsd-ports@freebsd.org Received: from gramsc1.dyndns.org (h00609774e769.ne.mediaone.net [24.91.224.187]) by hub.freebsd.org (Postfix) with ESMTP id 2E90E37B41E for ; Sat, 15 Dec 2001 10:57:09 -0800 (PST) Received: from there (tr0tsky [10.0.0.4]) by gramsc1.dyndns.org (8.12.1/8.12.1) with SMTP id fBFIv64Z004299 for ; Sat, 15 Dec 2001 13:57:07 -0500 (EST)?g (envelope-from resopmok@gramsc1.dyndns.org)œ Message-Id: <200112151857.fBFIv64Z004299@gramsc1.dyndns.org> From: Chris Thomas Reply-To: resopmok@gramsc1.dyndns.org To: freebsd-ports@freebsd.org Subject: KDE 2.2.2 copmile failure Date: Sat, 15 Dec 2001 13:57:03 -0500 X-Mailer: KMail [version 1.3.1] MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="------------Boundary-00=_3BFE2PIHVOVH4E4Q14FM" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --------------Boundary-00=_3BFE2PIHVOVH4E4Q14FM Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit i get the following error messages trying to compile KDE 2.2.2 from the x11/kdebase2 metaport kfileivi.cc: In method `void KFileIVI::setEffect(int, int)': kfileivi.cc:197: no matching function for call to `KIconEffect::hasEffect (KIcon::Group, int &)' kfileivi.cc:198: no matching function for call to `KIconEffect::hasEffect (KIcon::Group, int &)' gmake[3]: *** [kfileivi.lo] Error 1 gmake[3]: Leaving directory `/usr/ports/x11/kdebase2/work/kdebase-2.2.2/libkonq' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/x11/kdebase2/work/kdebase-2.2.2/libkonq' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11/kdebase2/work/kdebase-2.2.2' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/x11/kdebase2. *** Error code 1 and then it continues to barf from there i did nothing special except make install, and have no idea what could be causing the problem. I already have KDE 2.2.1 installed, if this makes any difference. i'm running 4.4-STABLE, and the most recent ports were cvsupped before attempting this build. attached is a full typescript of the session. thanks, -chris p.s. please address all relevant responses to me, as i am not subscribed to the list. --------------Boundary-00=_3BFE2PIHVOVH4E4Q14FM Content-Type: text/plain; charset="iso-8859-1"; name="typescript" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="typescript" U2NyaXB0IHN0YXJ0ZWQgb24gU2F0IERlYyAxNSAxMzozODowMCAyMDAxCmJhc2gtMi4wNSMgbWFr ZSBpbnN0YWxsDQo9PT0+ICBFeHRyYWN0aW5nIGZvciBrZGViYXNlLTIuMi4yXzENCj4+IENoZWNr c3VtIE9LIGZvciBLREUva2RlYmFzZS0yLjIuMi50YXIuYnoyLg0KPT09PiAgIGtkZWJhc2UtMi4y LjJfMSBkZXBlbmRzIG9uIGV4ZWN1dGFibGU6IGF1dG9jb25mMjEzIC0gZm91bmQNCj09PT4gICBr ZGViYXNlLTIuMi4yXzEgZGVwZW5kcyBvbiBleGVjdXRhYmxlOiBhdXRvbWFrZTE0IC0gZm91bmQN Cj09PT4gICBrZGViYXNlLTIuMi4yXzEgZGVwZW5kcyBvbiBleGVjdXRhYmxlOiBvYmpwcmVsaW5r IC0gZm91bmQNCj09PT4gICBrZGViYXNlLTIuMi4yXzEgZGVwZW5kcyBvbiBleGVjdXRhYmxlOiBn bWFrZSAtIGZvdW5kDQo9PT0+ICAga2RlYmFzZS0yLjIuMl8xIGRlcGVuZHMgb24gc2hhcmVkIGxp YnJhcnk6IGludGwuMSAtIGZvdW5kDQo9PT0+ICAga2RlYmFzZS0yLjIuMl8xIGRlcGVuZHMgb24g c2hhcmVkIGxpYnJhcnk6IGtkZWNvcmUuNCAtIGZvdW5kDQo9PT0+ICAga2RlYmFzZS0yLjIuMl8x IGRlcGVuZHMgb24gc2hhcmVkIGxpYnJhcnk6IHF0Mi40IC0gZm91bmQNCj09PT4gICBrZGViYXNl LTIuMi4yXzEgZGVwZW5kcyBvbiBzaGFyZWQgbGlicmFyeTogWG0uMiAtIGZvdW5kDQo9PT0+ICAg a2RlYmFzZS0yLjIuMl8xIGRlcGVuZHMgb24gc2hhcmVkIGxpYnJhcnk6IFhwbS40IC0gZm91bmQN Cj09PT4gIFBhdGNoaW5nIGZvciBrZGViYXNlLTIuMi4yXzENCj09PT4gIEFwcGx5aW5nIEZyZWVC U0QgcGF0Y2hlcyBmb3Iga2RlYmFzZS0yLjIuMl8xDQo9PT0+ICBDb25maWd1cmluZyBmb3Iga2Rl YmFzZS0yLjIuMl8xDQovYmluL21rZGlyIC1wIC91c3IvcG9ydHMveDExL2tkZWJhc2UyL3dvcmsv a2RlYmFzZS0yLjIuMi9hdXRvLWJpbg0KL2Jpbi9sbiAtc2YgL3Vzci9sb2NhbC9iaW4vYXV0b2Nv bmYyMTMgL3Vzci9wb3J0cy94MTEva2RlYmFzZTIvd29yay9rZGViYXNlLTIuMi4yL2F1dG8tYmlu L2F1dG9jb25mDQovYmluL2xuIC1zZiAvdXNyL2xvY2FsL2Jpbi9hdXRvaGVhZGVyMjEzIC91c3Iv cG9ydHMveDExL2tkZWJhc2UyL3dvcmsva2RlYmFzZS0yLjIuMi9hdXRvLWJpbi9hdXRvaGVhZGVy DQovYmluL2xuIC1zZiAvdXNyL2xvY2FsL2Jpbi9hdXRvbWFrZTE0IC91c3IvcG9ydHMveDExL2tk ZWJhc2UyL3dvcmsva2RlYmFzZS0yLjIuMi9hdXRvLWJpbi9hdXRvbWFrZQ0KL2Jpbi9sbiAtc2Yg L3Vzci9sb2NhbC9iaW4vYWNsb2NhbDE0IC91c3IvcG9ydHMveDExL2tkZWJhc2UyL3dvcmsva2Rl YmFzZS0yLjIuMi9hdXRvLWJpbi9hY2xvY2FsDQpjZCAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi93 b3JrL2tkZWJhc2UtMi4yLjIgJiYgZW52IFBBVEg9L3Vzci9wb3J0cy94MTEva2RlYmFzZTIvd29y ay9rZGViYXNlLTIuMi4yL2F1dG8tYmluOiRQQVRIICBnbWFrZSAtZiBNYWtlZmlsZS5jdnMNClRo aXMgTWFrZWZpbGUgaXMgb25seSBmb3IgdGhlIENWUyByZXBvc2l0b3J5DQpUaGlzIHdpbGwgYmUg ZGVsZXRlZCBiZWZvcmUgbWFraW5nIHRoZSBkaXN0cmlidXRpb24NCg0KKioqIENyZWF0aW5nIGFj aW5jbHVkZS5tNA0KISEhIElmIHlvdSBnZXQgcmVjdXJzaW9uIGVycm9ycyBmcm9tIGF1dG9jb25m LCBpdCBpcyBhZHZpc2FibGUgdG8gc2V0IHRoZQ0KICAgIGVudmlyb25tZW50IHZhcmlhYmxlIE00 IHRvIHNvbWV0aGluZyBpbmNsdWRpbmcgIi0tbmVzdGluZy1saW1pdD01MDAiDQoqKiogQ3JlYXRp bmcgbGlzdCBvZiBzdWJkaXJlY3Rvcmllcw0KKioqIENyZWF0aW5nIGNvbmZpZ3VyZS5pbg0KKioq IENyZWF0aW5nIGFjbG9jYWwubTQNCioqKiBDcmVhdGluZyBjb25maWd1cmUNCmNvbmZpZ3VyZS5p bjoxMjk6IHdhcm5pbmc6IEFDX1RSWV9SVU4gY2FsbGVkIHdpdGhvdXQgZGVmYXVsdCB0byBhbGxv dyBjcm9zcyBjb21waWxpbmcNCmNvbmZpZ3VyZS5pbjoxMzc6IHdhcm5pbmc6IEFDX1RSWV9SVU4g Y2FsbGVkIHdpdGhvdXQgZGVmYXVsdCB0byBhbGxvdyBjcm9zcyBjb21waWxpbmcNCioqKiBDcmVh dGluZyBjb25maWcuaCB0ZW1wbGF0ZQ0KY29uZmlndXJlLmluOjEyOTogd2FybmluZzogQUNfVFJZ X1JVTiBjYWxsZWQgd2l0aG91dCBkZWZhdWx0IHRvIGFsbG93IGNyb3NzIGNvbXBpbGluZw0KY29u ZmlndXJlLmluOjEzNzogd2FybmluZzogQUNfVFJZX1JVTiBjYWxsZWQgd2l0aG91dCBkZWZhdWx0 IHRvIGFsbG93IGNyb3NzIGNvbXBpbGluZw0KKioqIENyZWF0aW5nIE1ha2VmaWxlIHRlbXBsYXRl cw0KKioqIFBvc3Rwcm9jZXNzaW5nIE1ha2VmaWxlIHRlbXBsYXRlcw0KKioqIENyZWF0aW5nIGRh dGUvdGltZSBzdGFtcA0KKioqIEZpbmlzaGVkDQogICAgRG9uJ3QgZm9yZ2V0IHRvIHJ1biAuL2Nv bmZpZ3VyZQ0KICAgIElmIHlvdSBoYXZlbid0IGRvbmUgc28gaW4gYSB3aGlsZSwgcnVuIC4vY29u ZmlndXJlIC0taGVscA0KL3Vzci9iaW4vcGVybCAtcGkgLWUgInNAdmVyc2lvbi1pbmZvIDM6MEB2 ZXJzaW9uLWluZm8gNDowQGciIC91c3IvcG9ydHMveDExL2tkZWJhc2UyL3dvcmsva2RlYmFzZS0y LjIuMi9saWJrb25xL01ha2VmaWxlLmluDQovdXNyL2Jpbi9wZXJsIC1waSAtZSAic0B2ZXJzaW9u LWluZm8gMTowOjBAdmVyc2lvbi1pbmZvIDQ6MEBnIiAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi93 b3JrL2tkZWJhc2UtMi4yLjIva2hlbHBjZW50ZXIvTWFrZWZpbGUuaW4NCi91c3IvYmluL3Blcmwg LXBpIC1lICJzQHZlcnNpb24taW5mbyAxOjE6MEB2ZXJzaW9uLWluZm8gNDowQGciIC91c3IvcG9y dHMveDExL2tkZWJhc2UyL3dvcmsva2RlYmFzZS0yLjIuMi9uc3BsdWdpbnMvTWFrZWZpbGUuaW4N Ci91c3IvYmluL3BlcmwgLXBpIC1lICJzQFRJTUVfV0lUSF9TWVNfVElNRUBJTlZBTElEX0ZPT0Bn IiAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi93b3JrL2tkZWJhc2UtMi4yLjIva2lvc2xhdmUvbGRh cC9rbGRhcC5oDQpjcmVhdGluZyBjYWNoZSAuL2NvbmZpZy5jYWNoZQ0KY2hlY2tpbmcgaG9zdCBz eXN0ZW0gdHlwZS4uLiBpMzg2LS1mcmVlYnNkNC40DQpjaGVja2luZyB0YXJnZXQgc3lzdGVtIHR5 cGUuLi4gaTM4Ni0tZnJlZWJzZDQuNA0KY2hlY2tpbmcgYnVpbGQgc3lzdGVtIHR5cGUuLi4gaTM4 Ni0tZnJlZWJzZDQuNA0KY2hlY2tpbmcgZm9yIGEgQlNEIGNvbXBhdGlibGUgaW5zdGFsbC4uLiAv dXNyL2Jpbi9pbnN0YWxsIC1jIC1vIHJvb3QgLWcgd2hlZWwNCmNoZWNraW5nIHdoZXRoZXIgYnVp bGQgZW52aXJvbm1lbnQgaXMgc2FuZS4uLiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgZ21ha2Ugc2V0 cyAke01BS0V9Li4uIHllcw0KY2hlY2tpbmcgZm9yIHdvcmtpbmcgYWNsb2NhbC4uLiBmb3VuZA0K Y2hlY2tpbmcgZm9yIHdvcmtpbmcgYXV0b2NvbmYuLi4gZm91bmQNCmNoZWNraW5nIGZvciB3b3Jr aW5nIGF1dG9tYWtlLi4uIGZvdW5kDQpjaGVja2luZyBmb3Igd29ya2luZyBhdXRvaGVhZGVyLi4u IGZvdW5kDQpjaGVja2luZyBmb3Igd29ya2luZyBtYWtlaW5mby4uLiBmb3VuZA0KY2hlY2tpbmcg Zm9yIGdjYy4uLiBjYw0KY2hlY2tpbmcgd2hldGhlciB0aGUgQyBjb21waWxlciAoY2MgIC1PIC1w aXBlICApIHdvcmtzLi4uIHllcw0KY2hlY2tpbmcgd2hldGhlciB0aGUgQyBjb21waWxlciAoY2Mg IC1PIC1waXBlICApIGlzIGEgY3Jvc3MtY29tcGlsZXIuLi4gbm8NCmNoZWNraW5nIHdoZXRoZXIg d2UgYXJlIHVzaW5nIEdOVSBDLi4uIHllcw0KY2hlY2tpbmcgd2hldGhlciBjYyBhY2NlcHRzIC1n Li4uIHllcw0KY2hlY2tpbmcgZm9yIGMrKy4uLiBjKysNCmNoZWNraW5nIHdoZXRoZXIgdGhlIEMr KyBjb21waWxlciAoYysrICAgLU8gLXBpcGUgICkgd29ya3MuLi4geWVzDQpjaGVja2luZyB3aGV0 aGVyIHRoZSBDKysgY29tcGlsZXIgKGMrKyAgIC1PIC1waXBlICApIGlzIGEgY3Jvc3MtY29tcGls ZXIuLi4gbm8NCmNoZWNraW5nIHdoZXRoZXIgd2UgYXJlIHVzaW5nIEdOVSBDKysuLi4geWVzDQpj aGVja2luZyB3aGV0aGVyIGMrKyBhY2NlcHRzIC1nLi4uIHllcw0KY2hlY2tpbmcgd2hldGhlciBj Kysgc3VwcG9ydHMgLWZuby1leGNlcHRpb25zLi4uIHllcw0KY2hlY2tpbmcgd2hldGhlciBjKysg c3VwcG9ydHMgLWZuby1jaGVjay1uZXcuLi4geWVzDQpjaGVja2luZyB3aGV0aGVyIGMrKyBzdXBw b3J0cyAtZmV4Y2VwdGlvbnMuLi4geWVzDQpjaGVja2luZyBob3cgdG8gcnVuIHRoZSBDKysgcHJl cHJvY2Vzc29yLi4uIGMrKyAtRQ0KY2hlY2tpbmcgd2hldGhlciBjKysgc3VwcG9ydHMgLWZyZXBv Li4uIHllcw0KY2hlY2tpbmcgZm9yIGxkIHVzZWQgYnkgR0NDLi4uIC91c3IvbGliZXhlYy9lbGYv bGQNCmNoZWNraW5nIGlmIHRoZSBsaW5rZXIgKC91c3IvbGliZXhlYy9lbGYvbGQpIGlzIEdOVSBs ZC4uLiB5ZXMNCmNoZWNraW5nIGZvciAvdXNyL2xpYmV4ZWMvZWxmL2xkIG9wdGlvbiB0byByZWxv YWQgb2JqZWN0IGZpbGVzLi4uIC1yDQpjaGVja2luZyBmb3IgQlNELWNvbXBhdGlibGUgbm0uLi4g L3Vzci9iaW4vbm0gLUINCmNoZWNraW5nIHdoZXRoZXIgbG4gLXMgd29ya3MuLi4geWVzDQpjaGVj a2luZyBob3cgdG8gcmVjb2duaXNlIGRlcGVuZGFudCBsaWJyYXJpZXMuLi4gcGFzc19hbGwNCmNo ZWNraW5nIGZvciByYW5saWIuLi4gcmFubGliDQpjaGVja2luZyBmb3Igc3RyaXAuLi4gc3RyaXAN CmNoZWNraW5nIGZvciBDeWd3aW4gZW52aXJvbm1lbnQuLi4gbm8NCmNoZWNraW5nIGZvciBtaW5n dzMyIGVudmlyb25tZW50Li4uIG5vDQp1cGRhdGluZyBjYWNoZSAuL2NvbmZpZy5jYWNoZQ0KbG9h ZGluZyBjYWNoZSAuL2NvbmZpZy5jYWNoZSB3aXRoaW4gbHRjb25maWcNCmNoZWNraW5nIHdoZXRo ZXIgLWxjIHNob3VsZCBiZSBleHBsaWNpdGx5IGxpbmtlZCBpbi4uLiAoc2tpcHBpbmcsIHVzaW5n IG5vKSBubw0KY2hlY2tpbmcgZm9yIG9iamRpci4uLiAubGlicw0KY2hlY2tpbmcgZm9yIGNjIG9w dGlvbiB0byBwcm9kdWNlIFBJQy4uLiAtZlBJQyAtRFBJQw0KY2hlY2tpbmcgaWYgY2MgUElDIGZs YWcgLWZQSUMgLURQSUMgd29ya3MuLi4geWVzDQpjaGVja2luZyBpZiBjYyBzdGF0aWMgZmxhZyAt c3RhdGljIHdvcmtzLi4uIHllcw0KZmluZGluZyB0aGUgbWF4aW11bSBsZW5ndGggb2YgY29tbWFu ZCBsaW5lIGFyZ3VtZW50cy4uLiAzNjg2NQ0KY2hlY2tpbmcgaWYgY2Mgc3VwcG9ydHMgLWMgLW8g ZmlsZS5vLi4uIHllcw0KY2hlY2tpbmcgaWYgY2Mgc3VwcG9ydHMgLWZuby1ydHRpIC1mbm8tZXhj ZXB0aW9ucyAuLi4geWVzDQpjaGVja2luZyB3aGV0aGVyIHRoZSBsaW5rZXIgKC91c3IvbGliZXhl Yy9lbGYvbGQpIHN1cHBvcnRzIHNoYXJlZCBsaWJyYXJpZXMuLi4geWVzDQpjaGVja2luZyBob3cg dG8gaGFyZGNvZGUgbGlicmFyeSBwYXRocyBpbnRvIHByb2dyYW1zLi4uIGltbWVkaWF0ZQ0KY2hl Y2tpbmcgd2hldGhlciBzdHJpcHBpbmcgbGlicmFyaWVzIGlzIHBvc3NpYmxlLi4uIHllcw0KY2hl Y2tpbmcgZHluYW1pYyBsaW5rZXIgY2hhcmFjdGVyaXN0aWNzLi4uIGZyZWVic2Q0LjQgbGQuc28N CmNoZWNraW5nIGNvbW1hbmQgdG8gcGFyc2UgL3Vzci9iaW4vbm0gLUIgb3V0cHV0Li4uIG9rDQpj aGVja2luZyBpZiBsaWJ0b29sIHN1cHBvcnRzIHNoYXJlZCBsaWJyYXJpZXMuLi4geWVzDQpjaGVj a2luZyB3aGV0aGVyIHRvIGJ1aWxkIHNoYXJlZCBsaWJyYXJpZXMuLi4geWVzDQpjaGVja2luZyB3 aGV0aGVyIHRvIGJ1aWxkIHN0YXRpYyBsaWJyYXJpZXMuLi4gbm8NCmNoZWNraW5nIGZvciBkbG9w ZW4gaW4gLWxkbC4uLiBubw0KY2hlY2tpbmcgZm9yIGRsb3Blbi4uLiB5ZXMNCmNoZWNraW5nIGZv ciBkbGZjbi5oLi4uIHllcw0KY2hlY2tpbmcgd2hldGhlciBhIHByb2dyYW0gY2FuIGRsb3BlbiBp dHNlbGYuLi4geWVzDQpjaGVja2luZyB3aGV0aGVyIGEgc3RhdGljYWxseSBsaW5rZWQgcHJvZ3Jh bSBjYW4gZGxvcGVuIGl0c2VsZi4uLiBubw0KY3JlYXRpbmcgbGlidG9vbA0KdXBkYXRpbmcgY2Fj aGUgLi9jb25maWcuY2FjaGUNCmxvYWRpbmcgY2FjaGUgLi9jb25maWcuY2FjaGUNCmxvYWRpbmcg Y2FjaGUgLi9jb25maWcuY2FjaGUgd2l0aGluIGx0Y29uZmlnDQpjaGVja2luZyBob3N0IHN5c3Rl bSB0eXBlLi4uIGkzODYtLWZyZWVic2Q0LjQNCmNoZWNraW5nIGJ1aWxkIHN5c3RlbSB0eXBlLi4u IGkzODYtLWZyZWVic2Q0LjQNCmx0Y2YtY3h4OiB3aXRoX2djYz15ZXMgOyB3aXRoX2dudV9sZD15 ZXMNCmNoZWNraW5nIGZvciBvYmpkaXIuLi4gLmxpYnMNCmNoZWNraW5nIGZvciBjKysgb3B0aW9u IHRvIHByb2R1Y2UgUElDLi4uIC1mUElDIC1EUElDDQpjaGVja2luZyBpZiBjKysgUElDIGZsYWcg LWZQSUMgLURQSUMgd29ya3MuLi4geWVzDQpjaGVja2luZyBpZiBjKysgc3RhdGljIGZsYWcgLXN0 YXRpYyB3b3Jrcy4uLiB5ZXMNCmZpbmRpbmcgdGhlIG1heGltdW0gbGVuZ3RoIG9mIGNvbW1hbmQg bGluZSBhcmd1bWVudHMuLi4gKGNhY2hlZCkgMzY4NjUNCmNoZWNraW5nIGlmIGMrKyBzdXBwb3J0 cyAtYyAtbyBmaWxlLm8uLi4gKGNhY2hlZCkgeWVzDQpjaGVja2luZyBpZiBjKysgc3VwcG9ydHMg LWZuby1ydHRpIC1mbm8tZXhjZXB0aW9ucyAuLi4geWVzDQpjaGVja2luZyB3aGV0aGVyIHRoZSBs aW5rZXIgKC91c3IvbGliZXhlYy9lbGYvbGQpIHN1cHBvcnRzIHNoYXJlZCBsaWJyYXJpZXMuLi4g eWVzDQpjaGVja2luZyBob3cgdG8gaGFyZGNvZGUgbGlicmFyeSBwYXRocyBpbnRvIHByb2dyYW1z Li4uIGltbWVkaWF0ZQ0KY2hlY2tpbmcgd2hldGhlciBzdHJpcHBpbmcgbGlicmFyaWVzIGlzIHBv c3NpYmxlLi4uIHllcw0KY2hlY2tpbmcgZHluYW1pYyBsaW5rZXIgY2hhcmFjdGVyaXN0aWNzLi4u IGZyZWVic2Q0LjQgbGQuc28NCmNoZWNraW5nIGNvbW1hbmQgdG8gcGFyc2UgL3Vzci9iaW4vbm0g LUIgb3V0cHV0Li4uIG9rDQpjaGVja2luZyBpZiBsaWJ0b29sIHN1cHBvcnRzIHNoYXJlZCBsaWJy YXJpZXMuLi4geWVzDQpjaGVja2luZyB3aGV0aGVyIHRvIGJ1aWxkIHNoYXJlZCBsaWJyYXJpZXMu Li4geWVzDQpjaGVja2luZyB3aGV0aGVyIHRvIGJ1aWxkIHN0YXRpYyBsaWJyYXJpZXMuLi4gbm8N CmNoZWNraW5nIGZvciBkbGZjbi5oLi4uIChjYWNoZWQpIHllcw0KY2hlY2tpbmcgd2hldGhlciBh IHByb2dyYW0gY2FuIGRsb3BlbiBpdHNlbGYuLi4gKGNhY2hlZCkgeWVzDQpjaGVja2luZyB3aGV0 aGVyIGEgc3RhdGljYWxseSBsaW5rZWQgcHJvZ3JhbSBjYW4gZGxvcGVuIGl0c2VsZi4uLiAoY2Fj aGVkKSBubw0KYXBwZW5kaW5nIGNvbmZpZ3VyYXRpb24gdGFnICJDWFgiIHRvIGxpYnRvb2wNCmNo ZWNraW5nIGZvciBvYmplY3Qgc3VmZml4Li4uIG8NCmNoZWNraW5nIGZvciBleGVjdXRhYmxlIHN1 ZmZpeC4uLiBubw0KY2hlY2tpbmcgZm9yIG9ianByZWxpbmsuLi4gL3Vzci9sb2NhbC9iaW4vb2Jq cHJlbGluaw0KY2hlY2tpbmcgUGF0Y2hpbmcgbGlidG9vbCB0byBydW4gb2JqcHJlbGluay4uLi4g ZG9uZQ0KY2hlY2tpbmcgZm9yIG1zZ2ZtdC4uLiAvdXNyL2xvY2FsL2Jpbi9tc2dmbXQNCmNoZWNr aW5nIGZvciBnbXNnZm10Li4uIC91c3IvbG9jYWwvYmluL21zZ2ZtdA0KY2hlY2tpbmcgZm9yIHhn ZXR0ZXh0Li4uIC91c3IvbG9jYWwvYmluL3hnZXR0ZXh0DQpjaGVja2luZyBob3cgdG8gcnVuIHRo ZSBDIHByZXByb2Nlc3Nvci4uLiBjYyAtRQ0KY2hlY2tpbmcgZm9yIG1haW4gaW4gLWx1dGlsLi4u IHllcw0KY2hlY2tpbmcgZm9yIG1haW4gaW4gLWxjb21wYXQuLi4geWVzDQpjaGVja2luZyBmb3Ig Y3J5cHQgaW4gLWxjcnlwdC4uLiB5ZXMNCmNoZWNraW5nIGZvciBzb2NrbGVuX3QuLi4gc29ja2xl bl90DQpjaGVja2luZyBmb3IgZG5ldF9udG9hIGluIC1sZG5ldC4uLiBubw0KY2hlY2tpbmcgZm9y IGRuZXRfbnRvYSBpbiAtbGRuZXRfc3R1Yi4uLiBubw0KY2hlY2tpbmcgZm9yIGluZXRfbnRvYS4u LiB5ZXMNCmNoZWNraW5nIGZvciBjb25uZWN0Li4uIHllcw0KY2hlY2tpbmcgZm9yIHJlbW92ZS4u LiB5ZXMNCmNoZWNraW5nIGZvciBzaG1hdC4uLiB5ZXMNCmNoZWNraW5nIGZvciByZXNfaW5pdC4u LiB5ZXMNCmNoZWNraW5nIGZvciBraWxscGcgaW4gLWx1Y2IuLi4gbm8NCmNoZWNraW5nIHNpemUg b2YgaW50Li4uIDQNCmNoZWNraW5nIHNpemUgb2YgbG9uZy4uLiA0DQpjaGVja2luZyBzaXplIG9m IGNoYXIgKi4uLiA0DQpjaGVja2luZyBzaXplIG9mIGNoYXIuLi4gMQ0KY2hlY2tpbmcgZm9yIGRs b3BlbiBpbiAtbGRsLi4uIChjYWNoZWQpIG5vDQpjaGVja2luZyBmb3Igc2hsX3VubG9hZCBpbiAt bGRsZC4uLiBubw0KY2hlY2tpbmcgZm9yIGV4dHJhIGluY2x1ZGVzLi4uIG5vDQpjaGVja2luZyBm b3IgZXh0cmEgbGlicy4uLiBhZGRlZA0KY2hlY2tpbmcgZm9yIGxpYnouLi4gLWx6DQpjaGVja2lu ZyBmb3IgWC4uLiBsaWJyYXJpZXMgL3Vzci9YMTFSNi9saWIsIGhlYWRlcnMgL3Vzci9YMTFSNi9p bmNsdWRlDQpjaGVja2luZyBmb3IgSWNlQ29ubmVjdGlvbk51bWJlciBpbiAtbElDRS4uLiB5ZXMN CmNoZWNraW5nIGZvciBsaWJYZXh0Li4uIHllcw0KY2hlY2tpbmcgZm9yIFhpbmVyYW1hLi4uIG5v DQpjaGVja2luZyBmb3IgbGlicG5nLi4uIC1scG5nIC1seiAtbG0NCmNoZWNraW5nIGZvciBsaWJq cGVnNmIuLi4gbm8NCmNoZWNraW5nIGZvciBsaWJqcGVnLi4uIC1sanBlZw0KY2hlY2tpbmcgZm9y IFF0Li4uIGxpYnJhcmllcyAvdXNyL1gxMVI2L2xpYiwgaGVhZGVycyAvdXNyL1gxMVI2L2luY2x1 ZGUvcXQyIA0KY2hlY2tpbmcgZm9yIG1vYy4uLiAvdXNyL1gxMVI2L2Jpbi9tb2MyDQpjaGVja2lu ZyBmb3IgdWljLi4uIC91c3IvWDExUjYvYmluL3VpYw0KY2hlY2tpbmcgZm9yIHJwYXRoLi4uIHll cw0KY2hlY2tpbmcgZm9yIEtERS4uLiBsaWJyYXJpZXMgL3Vzci9sb2NhbC9saWIsIGhlYWRlcnMg L3Vzci9sb2NhbC9pbmNsdWRlDQpjaGVja2luZyBmb3IgS0RFIHBhdGhzLi4uIGRlZmF1bHRzDQpj aGVja2luZyBmb3IgZGNvcGlkbC4uLiAvdXNyL2xvY2FsL2Jpbi9kY29waWRsDQpjaGVja2luZyBm b3IgZGNvcGlkbDJjcHAuLi4gL3Vzci9sb2NhbC9iaW4vZGNvcGlkbDJjcHANCmNoZWNraW5nIGZv ciBtY29waWRsLi4uIC91c3IvbG9jYWwvYmluL21jb3BpZGwNCmNoZWNraW5nIGZvciBhcnRzYy1j b25maWcuLi4gL3Vzci9sb2NhbC9iaW4vYXJ0c2MtY29uZmlnDQpjaGVja2luZyBmb3Iga2RlLWNv bmZpZy4uLiAvdXNyL2xvY2FsL2Jpbi9rZGUtY29uZmlnDQpjaGVja2luZyBmb3IgbWVpbnByb2Mu Li4gL3Vzci9sb2NhbC9iaW4vbWVpbnByb2MNCmNoZWNraW5nIGZvciBwYW1fc3RhcnQgaW4gLWxw YW0uLi4geWVzDQpjaGVja2luZyBmb3Igc2VjdXJpdHkvcGFtX2FwcGwuaC4uLiB5ZXMNCmNoZWNr aW5nIGZvciBQQU0uLi4geWVzDQpjaGVja2luZyBmb3IgY29uc3QgcGFtX21lc3NhZ2UuLi4gY29u c3Q6IExpbnV4LXR5cGUgUEFNDQpjaGVja2luZyBmb3IgZ2V0c3BlbnQgaW4gLWxzaGFkb3cuLi4g bm8NCmNoZWNraW5nIGZvciBnZXRzcGVudCBpbiAtbGdlbi4uLiBubw0KY2hlY2tpbmcgZm9yIGdl dHNwZW50Li4uIG5vDQpjaGVja2luZyBmb3Igc2hhZG93IHBhc3N3b3Jkcy4uLiBubw0KVGhlIFBB TSBzZXJ2aWNlIHVzZWQgYnkga2RtIHdpbGwgYmUga2RlDQpUaGUgUEFNIHNlcnZpY2UgdXNlZCBi eSBrY2hlY2twYXNzIHdpbGwgYmUga2RlDQpUaGUgUEFNIHNlcnZpY2UgdXNlZCBieSBrc2NyZWVu c2F2ZXIgd2lsbCBiZSBrZGUNCmNoZWNraW5nIGZvciBsaWJ0aWZmIHRpZmYuLi4geWVzDQpjaGVj a2luZyBmb3IgZGlyZW50LmggdGhhdCBkZWZpbmVzIERJUi4uLiB5ZXMNCmNoZWNraW5nIGZvciBv cGVuZGlyIGluIC1sZGlyLi4uIG5vDQpjaGVja2luZyBmb3IgQU5TSSBDIGhlYWRlciBmaWxlcy4u LiB5ZXMNCmNoZWNraW5nIGZvciBzeXMvdGltZS5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIGNyeXB0 LmguLi4gbm8NCmNoZWNraW5nIGZvciBzeXMvc2VsZWN0LmguLi4geWVzDQpjaGVja2luZyBmb3Ig c3lzL2lvY3RsLmguLi4geWVzDQpjaGVja2luZyBmb3Igc3lzL3N0cm9wdHMuaC4uLiBubw0KY2hl Y2tpbmcgZm9yIHN0cm9wdHMuaC4uLiBubw0KY2hlY2tpbmcgZm9yIHRlcm1pby5oLi4uIG5vDQpj aGVja2luZyBmb3IgdGVybWlvcy5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIHN5cy90ZXJtaW9zLmgu Li4geWVzDQpjaGVja2luZyBmb3IgbGFzdGxvZy5oLi4uIG5vDQpjaGVja2luZyBmb3Igc3lzL3Nv Y2tldC5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIHN5cy9zb2NraW8uaC4uLiB5ZXMNCmNoZWNraW5n IGZvciBrcmI1L2tyYjUuaC4uLiBubw0KY2hlY2tpbmcgZm9yIHJwYy9ycGMuaC4uLiB5ZXMNCmNo ZWNraW5nIGZvciBycGMva2V5X3Byb3QuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBzeXMvbV93YWl0 LmguLi4gbm8NCmNoZWNraW5nIGZvciBuY3Vyc2VzLmguLi4geWVzDQpjaGVja2luZyBmb3IgcGF0 aHMuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBsb2dpbl9jYXAuaC4uLiB5ZXMNCmNoZWNraW5nIGZv ciBzeXNsb2cuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBzeXMvd2FpdC5oLi4uIHllcw0KY2hlY2tp bmcgZm9yIHN5cy91Y3JlZC5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIHN5cy9tb3VudC5oLi4uIHll cw0KY2hlY2tpbmcgZm9yIGZsb2F0aW5ncG9pbnQuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBmc3Rh Yi5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIG1udGVudC5oLi4uIG5vDQpjaGVja2luZyBmb3IgQWxp Yi5oLi4uIG5vDQpjaGVja2luZyBmb3IgbGlidXRpbC5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIHV0 aWwuaC4uLiBubw0KY2hlY2tpbmcgZm9yIHRpbWUuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBsaW1p dHMuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciB2Zm9yay5oLi4uIG5vDQpjaGVja2luZyBmb3Igc3Ry aW5nLmguLi4geWVzDQpjaGVja2luZyBmb3IgZmxvYXQuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBt YXRoLmguLi4geWVzDQpjaGVja2luZyBmb3IgbmFuLmguLi4gbm8NCmNoZWNraW5nIGZvciBpZWVl ZnAuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBtYWluIGluIC1sQWxpYi4uLiBubw0KY2hlY2tpbmcg Zm9yIG1haW4gaW4gLWxvc3NhdWRpby4uLiBubw0KY2hlY2tpbmcgZm9yIG1haW4gaW4gLWxjZmcu Li4gbm8NCmNoZWNraW5nIGZvciBtYWluIGluIC1sb2RtLi4uIG5vDQpjaGVja2luZyBmb3Igc2V0 dXB0ZXJtIGluIC1sY3Vyc2VzLi4uIHllcw0KY2hlY2tpbmcgZm9yIGFkZFRvVXRtcCBpbiAtbHV0 ZW1wdGVyLi4uIG5vDQpjaGVja2luZyBmb3IgcmVzX2luaXQuLi4gKGNhY2hlZCkgeWVzDQpjaGVj a2luZyB3aGV0aGVyIHRpbWUuaCBhbmQgc3lzL3RpbWUuaCBtYXkgYm90aCBiZSBpbmNsdWRlZC4u LiB5ZXMNCmNoZWNraW5nIGZvciBsb25nIGRvdWJsZS4uLiB5ZXMNCmNoZWNraW5nIGZvciB1aWRf dCBpbiBzeXMvdHlwZXMuaC4uLiB5ZXMNCmNoZWNraW5nIHR5cGUgb2YgYXJyYXkgYXJndW1lbnQg dG8gZ2V0Z3JvdXBzLi4uIGdpZF90DQpjaGVja2luZyBzaXplIG9mIGNoYXIuLi4gKGNhY2hlZCkg MQ0KY2hlY2tpbmcgc2l6ZSBvZiBzaG9ydC4uLiAyDQpjaGVja2luZyBzaXplIG9mIGludC4uLiAo Y2FjaGVkKSA0DQpjaGVja2luZyBzaXplIG9mIGxvbmcuLi4gKGNhY2hlZCkgNA0KY2hlY2tpbmcg d2hldGhlciBieXRlIG9yZGVyaW5nIGlzIGJpZ2VuZGlhbi4uLiBubw0KY2hlY2tpbmcgZm9yIHNv Y2tldC4uLiB5ZXMNCmNoZWNraW5nIGZvciBwb3dsLi4uIG5vDQpjaGVja2luZyBmb3Igc3FydGwu Li4gbm8NCmNoZWNraW5nIGZvciBzdHJkdXAuLi4geWVzDQpjaGVja2luZyBmb3IgZ2V0ZHRhYmxl c2l6ZS4uLiB5ZXMNCmNoZWNraW5nIGZvciB2c25wcmludGYuLi4geWVzDQpjaGVja2luZyBmb3Ig c2V0cGdpZC4uLiB5ZXMNCmNoZWNraW5nIGZvciBuaWNlLi4uIHllcw0KY2hlY2tpbmcgZm9yIHNl dGV1aWQuLi4geWVzDQpjaGVja2luZyBmb3Igc25wcmludGYuLi4geWVzDQpjaGVja2luZyBmb3Ig dnN5c2xvZy4uLiB5ZXMNCmNoZWNraW5nIGZvciBpbml0Z3JvdXBzLi4uIHllcw0KY2hlY2tpbmcg Zm9yIHNldGdyb3Vwcy4uLiB5ZXMNCmNoZWNraW5nIGZvciBnZXRncm91cHMuLi4geWVzDQpjaGVj a2luZyBmb3IgZ3JhbnRwdC4uLiBubw0KY2hlY2tpbmcgZm9yIHB3X2VuY3J5cHQuLi4gbm8NCmNo ZWNraW5nIGZvciBzZXRwcmlvcml0eS4uLiB5ZXMNCmNoZWNraW5nIGZvciBnZXRwdC4uLiBubw0K Y2hlY2tpbmcgZm9yIHVubG9ja3B0Li4uIG5vDQpjaGVja2luZyBmb3IgcHRzbmFtZS4uLiBubw0K Y2hlY2tpbmcgZm9yIHNldGVudi4uLiB5ZXMNCmNoZWNraW5nIGZvciB1bnNldGVudi4uLiB5ZXMN CmNoZWNraW5nIGZvciB3YWl0cGlkLi4uIHllcw0KY2hlY2tpbmcgZm9yIG1rc3RlbXAuLi4geWVz DQpjaGVja2luZyBmb3Igb3BlbnB0eS4uLiBubw0KY2hlY2tpbmcgZm9yIGdldGRvbWFpbm5hbWUu Li4geWVzDQpjaGVja2luZyBpZiBnZXRkb21haW5uYW1lIG5lZWRzIGN1c3RvbSBwcm90b3R5cGUu Li4gbm8NCmNoZWNraW5nIGZvciBnZXRob3N0bmFtZS4uLiB5ZXMNCmNoZWNraW5nIGlmIGdldGhv c3RuYW1lIG5lZWRzIGN1c3RvbSBwcm90b3R5cGUuLi4gbm8NCmNoZWNraW5nIGZvciB1c2xlZXAu Li4geWVzDQpjaGVja2luZyBmb3IgcmFuZG9tLi4uIHllcw0KY2hlY2tpbmcgZm9yIFNfSVNTT0NL Li4uIHllcw0KY2hlY2tpbmcgZm9yIE1BWFBBVEhMRU4uLi4gMTAyNCAgDQpjaGVja2luZyBpZiBp dCdzIHNhZmUgdG8gZW5hYmxlIFVUTVAuLi4geWVzDQpjaGVja2luZyBmb3IgdXRtcCBmaWxlLi4u IC92YXIvcnVuL3V0bXANCmNoZWNraW5nIGZvciBrc3RhdF9vcGVuIGluIC1sa3N0YXQuLi4gbm8N CmNoZWNraW5nIGZvciBsaWJkZXZpbmZvLmguLi4gbm8NCmNoZWNraW5nIGZvciBYMTEvZXh0ZW5z aW9ucy9YVGVzdC5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIFhUZXN0RmFrZUtleUV2ZW50IGluIC1s WHRzdC4uLiB5ZXMNCmNoZWNraW5nIGZvciBYMTEvWEtCbGliLmguLi4geWVzDQpjaGVja2luZyBm b3IgWGtiTG9ja01vZGlmaWVycyBpbiAtbFgxMS4uLiB5ZXMNCmNoZWNraW5nIGZvciBYa2JTZXRQ ZXJDbGllbnRDb250cm9scyBpbiAtbFgxMS4uLiBubw0KY2hlY2tpbmcgZm9yIFgxMS9leHRlbnNp b25zL1hLQnN0ci5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIGFudGktYWxpYXNpbmcgc3VwcG9ydCBp biBRdC4uLiBubw0KY2hlY2tpbmcgZm9yIE9wZW5TU0wuLi4gbGlicmFyaWVzIC91c3IvbGliLCBo ZWFkZXJzIC91c3IvaW5jbHVkZQ0KY2hlY2tpbmcgd2hldGhlciBPcGVuU1NMIHVzZXMgcnNhcmVm Li4uIG5vDQpjaGVja2luZyBmb3IgbG9uZyBsb25nLi4uIHllcw0KY2hlY2tpbmcgZm9yIGtkZWRi IGxpYnJhcmllcyBhbmQgaGVhZGVycy4uLiBub3QgZm91bmQNCmNoZWNraW5nIGZvciBjdXBzU2Vy dmVyIGluIC1sY3Vwcy4uLiB5ZXMNCmNoZWNraW5nIGZvciBjdXBzL2N1cHMuaC4uLiB5ZXMNCmNo ZWNraW5nIGZvciBzaWdzZXQuLi4gbm8NCmNoZWNraW5nIGZvciBzaWdhY3Rpb24uLi4geWVzDQpj aGVja2luZyBzdHJ1Y3QgdWNyZWQuLi4gbm8NCmNoZWNraW5nIG5vZ3JvdXAuLi4gNjU1MzQNCmNo ZWNraW5nIGZvciB4bWttZi4uLiAvdXNyL1gxMVI2L2Jpbi94bWttZg0KY2hlY2tpbmcgdmFyaW91 cyBYIHNldHRpbmdzLi4uIGRvbmUNCmNoZWNraW5nIHdoZXRoZXIgdG8gdXNlIHhkbSBhdXRob3Jp emF0aW9uLi4uIG5vDQpjaGVja2luZyBmb3IgWCBiaW5hcnkgZGlyZWN0b3J5Li4uIC91c3IvWDEx UjYvYmluDQpjaGVja2luZyBmb3IgWCBsaWJyYXJ5IGRpcmVjdG9yeS4uLiAvdXNyL1gxMVI2L2xp Yi9YMTENCmNoZWNraW5nIGZvciBtYWluIGluIC1sWGF1Li4uIHllcw0KY2hlY2tpbmcgZm9yIG1h aW4gaW4gLWxYZG1jcC4uLiB5ZXMNCmNoZWNraW5nIGZvciBYMTEvWGRtY3AuaC4uLiB5ZXMNCmNo ZWNraW5nIHdoZXRoZXIgdG8gdXNlIEtlcmJlcm9zIHY0Li4uIG5vDQpjaGVja2luZyB3aGV0aGVy IHRvIHVzZSBBRlMuLi4gbm8NCmNoZWNraW5nIGZvciBtYWluIGluIC1scy4uLiBubw0KY2hlY2tp bmcgd2hldGhlciB0byB1c2UgS2VyYmVyb3M1IGZvciBYYXV0aCBjb29raWVzIGluIGtkbS4uLiBu bw0KY2hlY2tpbmcgd2hldGhlciB0byB1c2UgU3VuJ3Mgc2VjdXJlIFJQQyBmb3IgWGF1dGggY29v a2llcyBpbiBrZG0uLi4gbm8NCmNoZWNraW5nIGZvciB2c3lzbG9nLi4uIChjYWNoZWQpIHllcw0K eGRtIENGTEFHUzogLURDU1JHX0JBU0VEIC1EVENQQ09OTiAtRFVOSVhDT05OIC1ET1NNQUpPUlZF UlNJT049NCAtRE9TTUlOT1JWRVJTSU9OPTQgLURGUkFHSUxFX0RFVl9NRU0gLURCU0Q0NFNPQ0tF VFMgIC1EVVNFX1NZU0xPRyAtRFVTRV9QQU0gLURYRE1DUA0KY2hlY2tpbmcgZm9yIGNkcGFyYW5v aWEgbGlicmFyaWVzIGFuZCBoZWFkZXJzLi4uIHNlYXJjaGVkIGJ1dCBub3QgZm91bmQNCmNoZWNr aW5nIGZvciBsYW1lIGxpYnJhcnkgYW5kIGhlYWRlci4uLiBzZWFyY2hlZCBidXQgbm90IGZvdW5k DQpjaGVja2luZyBmb3IgVm9yYmlzIE9nZyBsaWJyYXJpZXMgYW5kIGhlYWRlcnMuLi4gc2VhcmNo ZWQgYnV0IG5vdCBmb3VuZA0KY2hlY2tpbmcgZm9yIGJ6RGVjb21wcmVzcyBpbiBsaWJiejIuLi4g bm8NCmNoZWNraW5nIGZvciBCWjJfYnpEZWNvbXByZXNzIGluIGxpYmJ6Mi4uLiAtbGJ6Mg0KY2hl Y2tpbmcgd2hldGhlciB0byBjb21waWxlIExEQVAgc3VwcG9ydC4uLiBubw0KY2hlY2tpbmcgZm9y IGxpYnNtYmNsaWVudC5oLi4uIG5vDQpjaGVja2luZyBmb3Igc21iY19pbml0IGluIC1sc21iY2xp ZW50Li4uIG5vDQpjaGVja2luZyBmb3IgR0wuLi4gbm8NCmNoZWNraW5nIGZvciBnZXR0aW1lb2Zk YXkuLi4geWVzDQpjaGVja2luZyBmb3IgRFBNUy4uLiB5ZXMNCmNoZWNraW5nIGZvciBfSWNlVHJh bnNOb0xpc3Rlbi4uLiB5ZXMNCmNoZWNraW5nIGlmIGtzeXNndWFyZGQgY2FuIGJlIGNvbXBpbGVk Li4uIHllcw0KY2hlY2tpbmcgZm9yIHNlbnNvcnNfaW5pdCBpbiAtbHNlbnNvcnMuLi4gbm8NCmNo ZWNraW5nIGZvciBzZW5zb3JzL3NlbnNvcnMuaC4uLiBubw0KY2hlY2tpbmcgZm9yIFgxMS9leHRl bnNpb25zL1hLQnN0ci5oLi4uIChjYWNoZWQpIHllcw0KY2hlY2tpbmcgZm9yIFguLi4gbGlicmFy aWVzIC91c3IvWDExUjYvbGliLCBoZWFkZXJzIC91c3IvWDExUjYvaW5jbHVkZQ0KY2hlY2tpbmcg Zm9yIGRuZXRfbnRvYSBpbiAtbGRuZXQuLi4gKGNhY2hlZCkgbm8NCmNoZWNraW5nIGZvciBkbmV0 X250b2EgaW4gLWxkbmV0X3N0dWIuLi4gKGNhY2hlZCkgbm8NCmNoZWNraW5nIGZvciBnZXRob3N0 YnluYW1lLi4uIHllcw0KY2hlY2tpbmcgZm9yIGNvbm5lY3QuLi4gKGNhY2hlZCkgeWVzDQpjaGVj a2luZyBmb3IgcmVtb3ZlLi4uIChjYWNoZWQpIHllcw0KY2hlY2tpbmcgZm9yIHNobWF0Li4uIChj YWNoZWQpIHllcw0KY2hlY2tpbmcgZm9yIEljZUNvbm5lY3Rpb25OdW1iZXIgaW4gLWxJQ0UuLi4g KGNhY2hlZCkgeWVzDQpjaGVja2luZyBmb3IgTW90aWYuLi4gbGlicmFyaWVzIGluIGRlZmF1bHQg cGF0aCwgaGVhZGVycyBpbiBkZWZhdWx0IHBhdGgNCmNoZWNraW5nIGZvciBYcFN0YXJ0UGFnZSBp biAtbFhwLi4uIHllcw0KY2hlY2tpbmcgaWYgYXBwbG5rIHNob3VsZCBiZSBjb21waWxlZC4uLiB5 ZXMNCmNoZWNraW5nIGlmIGRvYyBzaG91bGQgYmUgY29tcGlsZWQuLi4geWVzDQpjaGVja2luZyBp ZiBkcmtvbnFpIHNob3VsZCBiZSBjb21waWxlZC4uLiB5ZXMNCmNoZWNraW5nIGlmIGthZGRyZXNz Ym9vayBzaG91bGQgYmUgY29tcGlsZWQuLi4geWVzDQpjaGVja2luZyBpZiBrYXBwZmluZGVyIHNo b3VsZCBiZSBjb21waWxlZC4uLiB5ZXMNCmNoZWNraW5nIGlmIGthdGUgc2hvdWxkIGJlIGNvbXBp bGVkLi4uIHllcw0KY2hlY2tpbmcgaWYga2NoZWNrcGFzcyBzaG91bGQgYmUgY29tcGlsZWQuLi4g eWVzDQpjaGVja2luZyBpZiBrY29udHJvbCBzaG91bGQgYmUgY29tcGlsZWQuLi4geWVzDQpjaGVj a2luZyBpZiBrZGNvcCBzaG91bGQgYmUgY29tcGlsZWQuLi4geWVzDQpjaGVja2luZyBpZiBrZGVi dWdkaWFsb2cgc2hvdWxkIGJlIGNvbXBpbGVkLi4uIHllcw0KY2hlY2tpbmcgaWYga2RlcHJpbnQg c2hvdWxkIGJlIGNvbXBpbGVkLi4uIHllcw0KY2hlY2tpbmcgaWYga2Rlc2t0b3Agc2hvdWxkIGJl IGNvbXBpbGVkLi4uIHllcw0KY2hlY2tpbmcgaWYga2Rlc3Ugc2hvdWxkIGJlIGNvbXBpbGVkLi4u IHllcw0KY2hlY2tpbmcgaWYga2RtIHNob3VsZCBiZSBjb21waWxlZC4uLiB5ZXMNCmNoZWNraW5n IGlmIGtoZWxwY2VudGVyIHNob3VsZCBiZSBjb21waWxlZC4uLiB5ZXMNCmNoZWNraW5nIGlmIGto b3RrZXlzIHNob3VsZCBiZSBjb21waWxlZC4uLiB5ZXMNCmNoZWNraW5nIGlmIGtpY2tlciBzaG91 bGQgYmUgY29tcGlsZWQuLi4geWVzDQpjaGVja2luZyBpZiBraW9zbGF2ZSBzaG91bGQgYmUgY29t cGlsZWQuLi4geWVzDQpjaGVja2luZyBpZiBrbGlwcGVyIHNob3VsZCBiZSBjb21waWxlZC4uLiB5 ZXMNCmNoZWNraW5nIGlmIGttZW51ZWRpdCBzaG91bGQgYmUgY29tcGlsZWQuLi4geWVzDQpjaGVj a2luZyBpZiBrb25xdWVyb3Igc2hvdWxkIGJlIGNvbXBpbGVkLi4uIHllcw0KY2hlY2tpbmcgaWYg a29uc29sZSBzaG91bGQgYmUgY29tcGlsZWQuLi4geWVzDQpjaGVja2luZyBpZiBrcGFnZXIgc2hv dWxkIGJlIGNvbXBpbGVkLi4uIHllcw0KY2hlY2tpbmcgaWYga3BlcnNvbmFsaXplciBzaG91bGQg YmUgY29tcGlsZWQuLi4geWVzDQpjaGVja2luZyBpZiBrcmVhZGNvbmZpZyBzaG91bGQgYmUgY29t cGlsZWQuLi4geWVzDQpjaGVja2luZyBpZiBrc2NyZWVuc2F2ZXIgc2hvdWxkIGJlIGNvbXBpbGVk Li4uIHllcw0KY2hlY2tpbmcgaWYga3Ntc2VydmVyIHNob3VsZCBiZSBjb21waWxlZC4uLiB5ZXMN CmNoZWNraW5nIGlmIGtzcGxhc2ggc2hvdWxkIGJlIGNvbXBpbGVkLi4uIHllcw0KY2hlY2tpbmcg aWYga3N0YXJ0IHNob3VsZCBiZSBjb21waWxlZC4uLiB5ZXMNCmNoZWNraW5nIGlmIGtzeXNndWFy ZCBzaG91bGQgYmUgY29tcGlsZWQuLi4geWVzDQpjaGVja2luZyBpZiBrdGlwIHNob3VsZCBiZSBj b21waWxlZC4uLiB5ZXMNCmNoZWNraW5nIGlmIGt3aW4gc2hvdWxkIGJlIGNvbXBpbGVkLi4uIHll cw0KY2hlY2tpbmcgaWYga3hrYiBzaG91bGQgYmUgY29tcGlsZWQuLi4geWVzDQpjaGVja2luZyBp ZiBreG1scnBjIHNob3VsZCBiZSBjb21waWxlZC4uLiB5ZXMNCmNoZWNraW5nIGlmIGwxMG4gc2hv dWxkIGJlIGNvbXBpbGVkLi4uIHllcw0KY2hlY2tpbmcgaWYgbGVnYWN5aW1wb3J0IHNob3VsZCBi ZSBjb21waWxlZC4uLiB5ZXMNCmNoZWNraW5nIGlmIG5zcGx1Z2lucyBzaG91bGQgYmUgY29tcGls ZWQuLi4geWVzDQpjaGVja2luZyBpZiBwaWNzIHNob3VsZCBiZSBjb21waWxlZC4uLiB5ZXMNCnVw ZGF0aW5nIGNhY2hlIC4vY29uZmlnLmNhY2hlDQpjcmVhdGluZyAuL2NvbmZpZy5zdGF0dXMNCmZh c3QgY3JlYXRpbmcgLi9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBhcHBsbmsvTWFrZWZpbGUNCmZh c3QgY3JlYXRpbmcgZG9jL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGRvYy9rYWRkcmVzc2Jvb2sv TWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcgZG9jL2thdGUvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcg ZG9jL2tjb250cm9sL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGRvYy9rZGVidWdkaWFsb2cvTWFr ZWZpbGUNCmZhc3QgY3JlYXRpbmcgZG9jL2tkZXByaW50L01ha2VmaWxlDQpmYXN0IGNyZWF0aW5n IGRvYy9rZGVzdS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBkb2Mva2RtL01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIGRvYy9raGVscGNlbnRlci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBkb2Mva2hl bHBjZW50ZXIvZmFxL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGRvYy9raGVscGNlbnRlci9nbG9z c2FyeS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBkb2Mva2hlbHBjZW50ZXIvcXVpY2tzdGFydC9N YWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBkb2Mva2hlbHBjZW50ZXIvdXNlcmd1aWRlL01ha2VmaWxl DQpmYXN0IGNyZWF0aW5nIGRvYy9raGVscGNlbnRlci92aXN1YWxkaWN0L01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIGRvYy9raWNrZXIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcgZG9jL2tpb3NsYXZl L01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGRvYy9rbGlwcGVyL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGRvYy9rbWVudWVkaXQvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcgZG9jL2tvbnF1ZXJvci9N YWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBkb2Mva29uc29sZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGlu ZyBkb2Mva3BhZ2VyL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGRvYy9rc3lzZ3VhcmQvTWFrZWZp bGUNCmZhc3QgY3JlYXRpbmcgZG9jL2t3cml0ZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBkcmtv bnFpL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGRya29ucWkvZGVidWdnZXJzL01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGRya29ucWkvcGljcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBkcmtvbnFp L3ByZXNldHMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2FkZHJlc3Nib29rL01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGthZGRyZXNzYm9vay9waWNzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGth cHBmaW5kZXIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2FwcGZpbmRlci9hcHBzL01ha2VmaWxl DQpmYXN0IGNyZWF0aW5nIGthcHBmaW5kZXIvYXBwcy9EZXZlbG9wbWVudC9NYWtlZmlsZQ0KZmFz dCBjcmVhdGluZyBrYXBwZmluZGVyL2FwcHMvRWRpdG9ycy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGlu ZyBrYXBwZmluZGVyL2FwcHMvR2FtZXMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2FwcGZpbmRl ci9hcHBzL0dhbWVzL0FyY2FkZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrYXBwZmluZGVyL2Fw cHMvR2FtZXMvQm9hcmQvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2FwcGZpbmRlci9hcHBzL0dh bWVzL0NhcmQvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2FwcGZpbmRlci9hcHBzL0dhbWVzL0Vt dWxhdG9ycy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrYXBwZmluZGVyL2FwcHMvR2FtZXMvVGFj dGljU3RyYXRlZ3kvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2FwcGZpbmRlci9hcHBzL0dyYXBo aWNzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGthcHBmaW5kZXIvYXBwcy9JbnRlcm5ldC9NYWtl ZmlsZQ0KZmFzdCBjcmVhdGluZyBrYXBwZmluZGVyL2FwcHMvSW50ZXJuZXQvVGVybWluYWwvTWFr ZWZpbGUNCmZhc3QgY3JlYXRpbmcga2FwcGZpbmRlci9hcHBzL011bHRpbWVkaWEvTWFrZWZpbGUN CmZhc3QgY3JlYXRpbmcga2FwcGZpbmRlci9hcHBzL09mZmljZS9NYWtlZmlsZQ0KZmFzdCBjcmVh dGluZyBrYXBwZmluZGVyL2FwcHMvU3lzdGVtL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGthcHBm aW5kZXIvYXBwcy9TeXN0ZW0vU2NyZWVuU2F2ZXJzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGth cHBmaW5kZXIvYXBwcy9TeXN0ZW0vVGVybWluYWwvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2Fw cGZpbmRlci9hcHBzL1RveXMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2FwcGZpbmRlci9hcHBz L1V0aWxpdGllcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrYXBwZmluZGVyL2FwcHMvVXRpbGl0 aWVzL3h1dGlscy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrYXBwZmluZGVyL2FwcHMvV29yZFBy b2Nlc3NpbmcvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2F0ZS9NYWtlZmlsZQ0KZmFzdCBjcmVh dGluZyBrYXRlL2FwcC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrYXRlL2NvbnNvbGUvTWFrZWZp bGUNCmZhc3QgY3JlYXRpbmcga2F0ZS9kYXRhL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGthdGUv ZG9jdW1lbnQvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2F0ZS9mYWN0b3J5L01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGthdGUvZmlsZWxpc3QvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2F0ZS9m aWxlc2VsZWN0b3IvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2F0ZS9pbnRlcmZhY2VzL01ha2Vm aWxlDQpmYXN0IGNyZWF0aW5nIGthdGUva2RldmVsb3AvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcg a2F0ZS9tYWluL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGthdGUvbWFpbndpbmRvdy9NYWtlZmls ZQ0KZmFzdCBjcmVhdGluZyBrYXRlL3BpY3MvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2F0ZS9w aWNzL2FjdGlvbnMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2F0ZS9waWNzL2luZGljYXRvcnMv TWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2F0ZS9waWNzL3RhYmljb25zL01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIGthdGUvcGx1Z2lubWFuYWdlci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrYXRl L3F0M2JhY2svTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2F0ZS92aWV3L01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIGtjaGVja3Bhc3MvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvTWFr ZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvYWNjZXNzL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGtjb250cm9sL2FydHMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvYmFja2dy b3VuZC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9iYWNrZ3JvdW5kL3BpY3MvTWFr ZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvYmVsbC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGlu ZyBrY29udHJvbC9jbG9jay9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9jb2xvcnMv TWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvY3J5cHRvL01ha2VmaWxlDQpmYXN0IGNy ZWF0aW5nIGtjb250cm9sL2Nzcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9kaXNw bGF5L01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL2Rpc3BsYXkvYWQvTWFrZWZpbGUN CmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvZGlzcGxheS9rY3MvTWFrZWZpbGUNCmZhc3QgY3JlYXRp bmcga2NvbnRyb2wvZGlzcGxheS9waWNzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9s L2Vicm93c2luZy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9lYnJvd3NpbmcvcGx1 Z2lucy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9lYnJvd3NpbmcvcGx1Z2lucy9p a3dzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL2Vicm93c2luZy9wbHVnaW5zL2lr d3Mvc2VhcmNocHJvdmlkZXJzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL2Vicm93 c2luZy9wbHVnaW5zL3Nob3J0dXJpL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL2Vt YWlsL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL2VuZXJneS9NYWtlZmlsZQ0KZmFz dCBjcmVhdGluZyBrY29udHJvbC9lbmVyZ3kvcGljcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBr Y29udHJvbC9maWxldHlwZXMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvZm9udHMv TWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvaWNvbnMvTWFrZWZpbGUNCmZhc3QgY3Jl YXRpbmcga2NvbnRyb2wvaW5mby9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9pbnB1 dC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9pbnB1dC9waWNzL01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGtjb250cm9sL2lvc2xhdmVpbmZvL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5n IGtjb250cm9sL2tjb250cm9sL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL2tjb250 cm9sL3BpY3MvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wva2RlZGIvTWFrZWZpbGUN CmZhc3QgY3JlYXRpbmcga2NvbnRyb2wva2RtL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250 cm9sL2tkbS9waWNzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL2tleXMvTWFrZWZp bGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wva2lja2VyL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5n IGtjb250cm9sL2tpby9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9raW8vdWFzcHJv dmlkZXJzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL2tub3RpZnkvTWFrZWZpbGUN CmZhc3QgY3JlYXRpbmcga2NvbnRyb2wva25vdGlmeS9zb3VuZHMvTWFrZWZpbGUNCmZhc3QgY3Jl YXRpbmcga2NvbnRyb2wva29ucS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9rb25x aHRtbC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9rb25zb2xlL01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGtjb250cm9sL2t3aW5kZWNvcmF0aW9uL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGtjb250cm9sL2t3bS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9rd20vcGlj cy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrY29udHJvbC9sYXVuY2gvTWFrZWZpbGUNCmZhc3Qg Y3JlYXRpbmcga2NvbnRyb2wvbG9jYWxlL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9s L2xvY2FsZS9kZWZhdWx0L01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL2xvY2FsZS9w aWNzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL21pZGkvTWFrZWZpbGUNCmZhc3Qg Y3JlYXRpbmcga2NvbnRyb2wvcGFzc3dvcmRzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250 cm9sL3BpY3MvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvcGljcy9oaWNvbG9yL01h a2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL3NhbWJhL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGtjb250cm9sL3NjcmVlbnNhdmVyL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9s L3NjcmVlbnNhdmVyL3BpY3MvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvc21zZXJ2 ZXIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2NvbnRyb2wvc29ja3MvTWFrZWZpbGUNCmZhc3Qg Y3JlYXRpbmcga2NvbnRyb2wvc3BlbGxjaGVja2luZy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBr Y29udHJvbC90YXNrYmFyL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL3RoZW1lbWdy L01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtjb250cm9sL3VzYnZpZXcvTWFrZWZpbGUNCmZhc3Qg Y3JlYXRpbmcga2Rjb3AvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2RlYnVnZGlhbG9nL01ha2Vm aWxlDQpmYXN0IGNyZWF0aW5nIGtkZXByaW50L01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtkZXBy aW50L2Rlc2NyaXB0aW9ucy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrZGVwcmludC9rZGVwcmlu dF9wYXJ0L01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtkZXByaW50L2tkZXByaW50ZmF4L01ha2Vm aWxlDQpmYXN0IGNyZWF0aW5nIGtkZXByaW50L2tqb2J2aWV3ZXIvTWFrZWZpbGUNCmZhc3QgY3Jl YXRpbmcga2RlcHJpbnQva3ByaW50ZXIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2RlcHJpbnQv cHJpbnRtZ3IvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2RlcHJpbnQvc2xhdmUvTWFrZWZpbGUN CmZhc3QgY3JlYXRpbmcga2RlcHJpbnQvc2xhdmUvbWltZXR5cGVzL01ha2VmaWxlDQpmYXN0IGNy ZWF0aW5nIGtkZXByaW50L3NsYXZlL3BpY3MvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2RlcHJp bnQvc2xhdmUvdGVtcGxhdGVzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtkZXNrdG9wL01ha2Vm aWxlDQpmYXN0IGNyZWF0aW5nIGtkZXNrdG9wL2luaXQvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcg a2Rlc2t0b3AvaW5pdC9UZW1wbGF0ZXMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2Rlc2t0b3Av a3dlYmRlc2t0b3AvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2Rlc2t0b3AvcGF0dGVybnMvTWFr ZWZpbGUNCmZhc3QgY3JlYXRpbmcga2Rlc2t0b3AvcGljcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGlu ZyBrZGVza3RvcC9wcm9ncmFtcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrZGVzdS9NYWtlZmls ZQ0KZmFzdCBjcmVhdGluZyBrZGVzdS9rZGVzdS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrZGVz dS9rZGVzdWQvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2RtL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGtkbS9iYWNrZW5kL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtkbS9jaG9vc2VyL01ha2Vm aWxlDQpmYXN0IGNyZWF0aW5nIGtkbS9rZnJvbnRlbmQvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcg a2RtL2tmcm9udGVuZC9waWNzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtoZWxwY2VudGVyL01h a2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtoZWxwY2VudGVyL2h0bWxzZWFyY2gvTWFrZWZpbGUNCmZh c3QgY3JlYXRpbmcga2hlbHBjZW50ZXIvcGljcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBraGVs cGNlbnRlci9wbHVnaW5zL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtoZWxwY2VudGVyL3BsdWdp bnMvVHV0b3JpYWxzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtob3RrZXlzL01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGtob3RrZXlzL2tjb250cm9sL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGto b3RrZXlzL2tob3RrZXlzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtob3RrZXlzL3NoYXJlZC9N YWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBraWNrZXIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lj a2VyL2FwcGxldHMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lja2VyL2FwcGxldHMvY2xvY2sv TWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lja2VyL2FwcGxldHMvbGF1bmNoZXIvTWFrZWZpbGUN CmZhc3QgY3JlYXRpbmcga2lja2VyL2FwcGxldHMvbWluaXBhZ2VyL01ha2VmaWxlDQpmYXN0IGNy ZWF0aW5nIGtpY2tlci9hcHBsZXRzL25hdWdodHkvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lj a2VyL2FwcGxldHMvcnVuL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtpY2tlci9hcHBsZXRzL3N3 YWxsb3cvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lja2VyL2FwcGxldHMvc3lzdGVtdHJheS9N YWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBraWNrZXIvYXBwbGV0cy90YXNrYmFyL01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGtpY2tlci9jb3JlL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtpY2tlci9k YXRhL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtpY2tlci9kYXRhL2FwcF9zdGFydF9hbmltL01h a2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtpY2tlci9kYXRhL2ljb25zL01ha2VmaWxlDQpmYXN0IGNy ZWF0aW5nIGtpY2tlci9kYXRhL2ljb25zL2FjdGlvbnMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcg a2lja2VyL2RhdGEvdGlsZXMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lja2VyL2RhdGEvd2Fs bHBhcGVyL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtpY2tlci9leHRlbnNpb25zL01ha2VmaWxl DQpmYXN0IGNyZWF0aW5nIGtpY2tlci9leHRlbnNpb25zL2NoaWxkcGFuZWwvTWFrZWZpbGUNCmZh c3QgY3JlYXRpbmcga2lja2VyL2V4dGVuc2lvbnMvZG9ja2Jhci9NYWtlZmlsZQ0KZmFzdCBjcmVh dGluZyBraWNrZXIvZXh0ZW5zaW9ucy9rYXNiYXIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lj a2VyL2V4dGVuc2lvbnMvdGFza2Jhci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBraWNrZXIvcHJv eHkvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lja2VyL3NoYXJlL01ha2VmaWxlDQpmYXN0IGNy ZWF0aW5nIGtpY2tlci90YXNrYmFyL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtpY2tlci90YXNr bWFuYWdlci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBraWNrZXIvdWkvTWFrZWZpbGUNCmZhc3Qg Y3JlYXRpbmcga2lvc2xhdmUvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lvc2xhdmUvYXVkaW9j ZC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBraW9zbGF2ZS9hdWRpb2NkL2tjbWF1ZGlvY2QvTWFr ZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lvc2xhdmUvZmlsdGVyL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGtpb3NsYXZlL2Zpbmdlci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBraW9zbGF2ZS9mbG9w cHkvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lvc2xhdmUvZ29waGVyL01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIGtpb3NsYXZlL2ltYXA0L01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtpb3NsYXZl L2luZm8vTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lvc2xhdmUvbGRhcC9NYWtlZmlsZQ0KZmFz dCBjcmVhdGluZyBraW9zbGF2ZS9tYW4vTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lvc2xhdmUv bmZzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtpb3NsYXZlL25udHAvTWFrZWZpbGUNCmZhc3Qg Y3JlYXRpbmcga2lvc2xhdmUvcG9wMy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBraW9zbGF2ZS9z bWIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lvc2xhdmUvc21icm8vTWFrZWZpbGUNCmZhc3Qg Y3JlYXRpbmcga2lvc2xhdmUvc210cC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBraW9zbGF2ZS90 YXIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga2lvc2xhdmUvdGh1bWJuYWlsL01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGtsaXBwZXIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga21lbnVlZGl0L01h a2VmaWxlDQpmYXN0IGNyZWF0aW5nIGttZW51ZWRpdC9waXhtYXBzL01ha2VmaWxlDQpmYXN0IGNy ZWF0aW5nIGtvbnF1ZXJvci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVyb3IvYWJvdXQv TWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVlcm9yL2NsaWVudC9NYWtlZmlsZQ0KZmFzdCBj cmVhdGluZyBrb25xdWVyb3IvZGlydHJlZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVy b3IvZGlydHJlZS9ib29rbWFya19tb2R1bGUvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVl cm9yL2RpcnRyZWUvZGlydHJlZV9tb2R1bGUvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVl cm9yL2RpcnRyZWUvaGlzdG9yeV9tb2R1bGUvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVl cm9yL2RpcnRyZWUvaW5pdC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVyb3IvZGlydHJl ZS9pbml0L3JlbW90ZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVyb3IvZGlydHJlZS9p bml0L3JlbW90ZS9mdHAvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVlcm9yL2RpcnRyZWUv aW5pdC9yZW1vdGUvd2ViL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtvbnF1ZXJvci9kaXJ0cmVl L2luaXQvc2VydmljZXMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVlcm9yL2hpc3Rvcnkv TWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVlcm9yL2ljb252aWV3L01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIGtvbnF1ZXJvci9rZWRpdGJvb2ttYXJrcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGlu ZyBrb25xdWVyb3Iva2ZpbmRwYXJ0L01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtvbnF1ZXJvci9r ZmluZHBhcnQvcGljcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVyb3Iva2ZtZXhlYy9N YWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVyb3IvbGlzdHZpZXcvTWFrZWZpbGUNCmZhc3Qg Y3JlYXRpbmcga29ucXVlcm9yL3BpY3MvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVlcm9y L3BpY3MvYWN0aW9ucy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVyb3IvcGljcy9pbmRp Y2F0b3JzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtvbnF1ZXJvci9waWNzL3RpbGVzL01ha2Vm aWxlDQpmYXN0IGNyZWF0aW5nIGtvbnF1ZXJvci9zaGVsbGNtZHBsdWdpbi9NYWtlZmlsZQ0KZmFz dCBjcmVhdGluZyBrb25xdWVyb3Ivc2lkZWJhci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25x dWVyb3Ivc2lkZWJhci9zaWRlYmFyX2NsYXNzaWMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29u cXVlcm9yL3NpZGViYXIvdGVzdC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVyb3Ivc2lk ZWJhci90cmVlcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVyb3Ivc2lkZWJhci90cmVl cy9ib29rbWFya19tb2R1bGUvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVlcm9yL3NpZGVi YXIvdHJlZXMvZGlydHJlZV9tb2R1bGUvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29ucXVlcm9y L3NpZGViYXIvdHJlZXMvaGlzdG9yeV9tb2R1bGUvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga29u cXVlcm9yL3NpZGViYXIvdHJlZXMvaW5pdC9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25xdWVy b3Ivc2lkZWJhci90cmVlcy9pbml0L3JlbW90ZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25x dWVyb3Ivc2lkZWJhci90cmVlcy9pbml0L3JlbW90ZS9mdHAvTWFrZWZpbGUNCmZhc3QgY3JlYXRp bmcga29ucXVlcm9yL3NpZGViYXIvdHJlZXMvaW5pdC9yZW1vdGUvd2ViL01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIGtvbnF1ZXJvci9zaWRlYmFyL3RyZWVzL2luaXQvc2VydmljZXMvTWFrZWZpbGUN CmZhc3QgY3JlYXRpbmcga29uc29sZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25zb2xlL2Rv Yy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25zb2xlL2RvYy9WVDEwMC9NYWtlZmlsZQ0KZmFz dCBjcmVhdGluZyBrb25zb2xlL2ZvbnRzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtvbnNvbGUv aW5jbHVkZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrb25zb2xlL290aGVyL01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGtvbnNvbGUvc3JjL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtwYWdlci9N YWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrcGVyc29uYWxpemVyL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGtwZXJzb25hbGl6ZXIvcGljcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrcmVhZGNvbmZp Zy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrc2NyZWVuc2F2ZXIvTWFrZWZpbGUNCmZhc3QgY3Jl YXRpbmcga3NjcmVlbnNhdmVyL2tkZXNhdmVycy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrc2Ny ZWVuc2F2ZXIva3BhcnRzYXZlci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrc2NyZWVuc2F2ZXIv a3hzY29uZmlnL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtzY3JlZW5zYXZlci9reHNjb25maWcv Y29uZmlnL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtzY3JlZW5zYXZlci94c2F2ZXJzL01ha2Vm aWxlDQpmYXN0IGNyZWF0aW5nIGtzbXNlcnZlci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrc3Bs YXNoL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGtzcGxhc2gvcGljcy9NYWtlZmlsZQ0KZmFzdCBj cmVhdGluZyBrc3BsYXNoL3BpY3MvbG9jb2xvci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrc3Rh cnQvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3N5c2d1YXJkL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGtzeXNndWFyZC9DQ29udExpYi9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrc3lzZ3VhcmQv ZXhhbXBsZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrc3lzZ3VhcmQvZ3VpL01ha2VmaWxlDQpm YXN0IGNyZWF0aW5nIGtzeXNndWFyZC9rc3lzZ3VhcmRkL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5n IGtzeXNndWFyZC9rc3lzZ3VhcmRkL0ZyZWVCU0QvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3N5 c2d1YXJkL2tzeXNndWFyZGQvTGludXgvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3N5c2d1YXJk L2tzeXNndWFyZGQvU29sYXJpcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrc3lzZ3VhcmQvcGlj cy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrdGlwL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGt0 aXAvcGljcy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrd2luL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGt3aW4vY2xpZW50cy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrd2luL2NsaWVudHMvYjIv TWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3dpbi9jbGllbnRzL2RlZmF1bHQvTWFrZWZpbGUNCmZh c3QgY3JlYXRpbmcga3dpbi9jbGllbnRzL2RlZmF1bHQvY29uZmlnL01ha2VmaWxlDQpmYXN0IGNy ZWF0aW5nIGt3aW4vY2xpZW50cy9pY2V3bS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrd2luL2Ns aWVudHMvaWNld20vY29uZmlnL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGt3aW4vY2xpZW50cy9p Y2V3bS9pY2V3bS10aGVtZXMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3dpbi9jbGllbnRzL2tk ZS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrd2luL2NsaWVudHMva2RlMS9NYWtlZmlsZQ0KZmFz dCBjcmVhdGluZyBrd2luL2NsaWVudHMva3N0ZXAvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3dp bi9jbGllbnRzL2t3bXRoZW1lL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGt3aW4vY2xpZW50cy9r d210aGVtZS9jbGlfaW5zdGFsbGVyL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGt3aW4vY2xpZW50 cy9sYXB0b3AvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3dpbi9jbGllbnRzL21vZGVybnN5c3Rl bS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrd2luL2NsaWVudHMvbW9kZXJuc3lzdGVtL2NvbmZp Zy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrd2luL2NsaWVudHMvbXdtL01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIGt3aW4vY2xpZW50cy9xdWFydHovTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3dp bi9jbGllbnRzL3F1YXJ0ei9jb25maWcvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3dpbi9jbGll bnRzL3JlZG1vbmQvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3dpbi9jbGllbnRzL3Jpc2Nvcy9N YWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBrd2luL2NsaWVudHMvc3lzdGVtL01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIGt3aW4vY2xpZW50cy93ZWIvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcga3dpbi9w aWNzL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGt4a2IvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcg a3htbHJwYy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBsMTBuL01ha2VmaWxlDQpmYXN0IGNyZWF0 aW5nIGwxMG4vQy9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBsZWdhY3lpbXBvcnQvTWFrZWZpbGUN CmZhc3QgY3JlYXRpbmcgbGlia29ucS9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBsaWJrb25xL2Zh dmljb25zL01ha2VmaWxlDQpmYXN0IGNyZWF0aW5nIGxpYmtvbnEvcGljcy9NYWtlZmlsZQ0KZmFz dCBjcmVhdGluZyBuc3BsdWdpbnMvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcgbnNwbHVnaW5zL2Nv bnRyb2wvTWFrZWZpbGUNCmZhc3QgY3JlYXRpbmcgbnNwbHVnaW5zL3Rlc3QvTWFrZWZpbGUNCmZh c3QgY3JlYXRpbmcgbnNwbHVnaW5zL3ZpZXdlci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBuc3Bs dWdpbnMvd3JhcHBlci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBwaWNzL01ha2VmaWxlDQpmYXN0 IGNyZWF0aW5nIHBpY3MvaGljb2xvci9NYWtlZmlsZQ0KZmFzdCBjcmVhdGluZyBwaWNzL3dhbGxw YXBlcnMvTWFrZWZpbGUNCmNyZWF0aW5nIGNvbmZpZy5oDQoNCkdvb2QgLSB5b3VyIGNvbmZpZ3Vy ZSBmaW5pc2hlZC4gU3RhcnQgbWFrZSBub3cNCg0KL3Vzci9iaW4vcGVybCAtcGkgLWUgInNANDQ0 QDY0NEBnIiAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi93b3JrL2tkZWJhc2UtMi4yLjIva2Rlc2t0 b3AvaW5pdC9UZW1wbGF0ZXMvTWFrZWZpbGUNCj09PT4gIEJ1aWxkaW5nIGZvciBrZGViYXNlLTIu Mi4yXzENCmdtYWtlICBhbGwtcmVjdXJzaXZlDQpnbWFrZVsxXTogRW50ZXJpbmcgZGlyZWN0b3J5 IGAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi93b3JrL2tkZWJhc2UtMi4yLjInDQpNYWtpbmcgYWxs IGluIGxpYmtvbnENCmdtYWtlWzJdOiBFbnRlcmluZyBkaXJlY3RvcnkgYC91c3IvcG9ydHMveDEx L2tkZWJhc2UyL3dvcmsva2RlYmFzZS0yLjIuMi9saWJrb25xJw0KTWFraW5nIGFsbCBpbiBwaWNz DQpnbWFrZVszXTogRW50ZXJpbmcgZGlyZWN0b3J5IGAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi93 b3JrL2tkZWJhc2UtMi4yLjIvbGlia29ucS9waWNzJw0KZ21ha2VbM106IE5vdGhpbmcgdG8gYmUg ZG9uZSBmb3IgYGFsbCcuDQpnbWFrZVszXTogTGVhdmluZyBkaXJlY3RvcnkgYC91c3IvcG9ydHMv eDExL2tkZWJhc2UyL3dvcmsva2RlYmFzZS0yLjIuMi9saWJrb25xL3BpY3MnDQpNYWtpbmcgYWxs IGluIGZhdmljb25zDQpnbWFrZVszXTogRW50ZXJpbmcgZGlyZWN0b3J5IGAvdXNyL3BvcnRzL3gx MS9rZGViYXNlMi93b3JrL2tkZWJhc2UtMi4yLjIvbGlia29ucS9mYXZpY29ucycNCi91c3IvWDEx UjYvYmluL21vYzIgLi9mYXZpY29ucy5oIC1vIGZhdmljb25zLm1vYw0KL2Jpbi9zaCAuLi8uLi9s aWJ0b29sIC0tbW9kZT1jb21waWxlIC0tdGFnPUNYWCBjKysgLURIQVZFX0NPTkZJR19IIC1JLiAt SS4gLUkuLi8uLiAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIg LUkvdXNyL1gxMVI2L2luY2x1ZGUgICAtSS91c3IvaW5jbHVkZSAtRF9HRVRPUFRfSCAtRF9QVEhf SF8gLURfUFRIX1BUSFJFQURfSF8gIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9sb2NhbC9p bmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAgLU8yIC1PIC1waXBlIC1mbm8tZXhjZXB0 aW9ucyAtZm5vLWNoZWNrLW5ldyAtRFFUX0NMRUFOX05BTUVTUEFDRSAtRFFUX05PX0NPTVBBVCAt RFFUX05PX0FTQ0lJX0NBU1QgIC1jIGZhdmljb25zLmNwcA0KbWtkaXIgLmxpYnMNCmMrKyAtREhB VkVfQ09ORklHX0ggLUkuIC1JLiAtSS4uLy4uIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9Y MTFSNi9pbmNsdWRlL3F0MiAtSS91c3IvWDExUjYvaW5jbHVkZSAtSS91c3IvaW5jbHVkZSAtRF9H RVRPUFRfSCAtRF9QVEhfSF8gLURfUFRIX1BUSFJFQURfSF8gLUkvdXNyL2xvY2FsL2luY2x1ZGUg LUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1PMiAtTyAtcGlw ZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVBTl9OQU1FU1BBQ0UgLURR VF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNUIC1XcCwtTUQsLmRlcHMvZmF2aWNvbnMucHAg LWMgZmF2aWNvbnMuY3BwICAtZlBJQyAtRFBJQyAtbyAubGlicy9mYXZpY29ucy5vDQovdXNyL2xv Y2FsL2Jpbi9kY29waWRsIC4vZmF2aWNvbnMuaCA+IGZhdmljb25zLmtpZGwgfHwgKCBybSAtZiBm YXZpY29ucy5raWRsIDsgL2Jpbi9mYWxzZSApDQovdXNyL2xvY2FsL2Jpbi9kY29waWRsMmNwcCAt LWMrKy1zdWZmaXggY3BwIC0tbm8tc3R1YiBmYXZpY29ucy5raWRsDQovYmluL3NoIC4uLy4uL2xp YnRvb2wgLS1tb2RlPWNvbXBpbGUgLS10YWc9Q1hYIGMrKyAtREhBVkVfQ09ORklHX0ggLUkuIC1J LiAtSS4uLy4uIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAt SS91c3IvWDExUjYvaW5jbHVkZSAgIC1JL3Vzci9pbmNsdWRlIC1EX0dFVE9QVF9IIC1EX1BUSF9I XyAtRF9QVEhfUFRIUkVBRF9IXyAgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL2xvY2FsL2lu Y2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyICAtTzIgLU8gLXBpcGUgLWZuby1leGNlcHRp b25zIC1mbm8tY2hlY2stbmV3IC1EUVRfQ0xFQU5fTkFNRVNQQUNFIC1EUVRfTk9fQ09NUEFUIC1E UVRfTk9fQVNDSUlfQ0FTVCAgLWMgZmF2aWNvbnNfc2tlbC5jcHANCmMrKyAtREhBVkVfQ09ORklH X0ggLUkuIC1JLiAtSS4uLy4uIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNs dWRlL3F0MiAtSS91c3IvWDExUjYvaW5jbHVkZSAtSS91c3IvaW5jbHVkZSAtRF9HRVRPUFRfSCAt RF9QVEhfSF8gLURfUFRIX1BUSFJFQURfSF8gLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL2xv Y2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1PMiAtTyAtcGlwZSAtZm5vLWV4 Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVBTl9OQU1FU1BBQ0UgLURRVF9OT19DT01Q QVQgLURRVF9OT19BU0NJSV9DQVNUIC1XcCwtTUQsLmRlcHMvZmF2aWNvbnNfc2tlbC5wcCAtYyBm YXZpY29uc19za2VsLmNwcCAgLWZQSUMgLURQSUMgLW8gLmxpYnMvZmF2aWNvbnNfc2tlbC5vDQpj cmVhdGluZyBsaWJrZGVkX2Zhdmljb25zX2xhX21ldGFfdW5sb2FkLmNwcA0KL2Jpbi9zaCAuLi8u Li9saWJ0b29sIC0tbW9kZT1jb21waWxlIC0tdGFnPUNYWCBjKysgLURIQVZFX0NPTkZJR19IIC1J LiAtSS4gLUkuLi8uLiAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9x dDIgLUkvdXNyL1gxMVI2L2luY2x1ZGUgICAtSS91c3IvaW5jbHVkZSAtRF9HRVRPUFRfSCAtRF9Q VEhfSF8gLURfUFRIX1BUSFJFQURfSF8gIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9sb2Nh bC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAgLU8yIC1PIC1waXBlIC1mbm8tZXhj ZXB0aW9ucyAtZm5vLWNoZWNrLW5ldyAtRFFUX0NMRUFOX05BTUVTUEFDRSAtRFFUX05PX0NPTVBB VCAtRFFUX05PX0FTQ0lJX0NBU1QgIC1jIGxpYmtkZWRfZmF2aWNvbnNfbGFfbWV0YV91bmxvYWQu Y3BwDQpjKysgLURIQVZFX0NPTkZJR19IIC1JLiAtSS4gLUkuLi8uLiAtSS91c3IvbG9jYWwvaW5j bHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIgLUkvdXNyL1gxMVI2L2luY2x1ZGUgLUkvdXNy L2luY2x1ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfIC1JL3Vzci9s b2NhbC9pbmNsdWRlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0 MiAtTzIgLU8gLXBpcGUgLWZuby1leGNlcHRpb25zIC1mbm8tY2hlY2stbmV3IC1EUVRfQ0xFQU5f TkFNRVNQQUNFIC1EUVRfTk9fQ09NUEFUIC1EUVRfTk9fQVNDSUlfQ0FTVCAtV3AsLU1ELC5kZXBz L2xpYmtkZWRfZmF2aWNvbnNfbGFfbWV0YV91bmxvYWQucHAgLWMgbGlia2RlZF9mYXZpY29uc19s YV9tZXRhX3VubG9hZC5jcHAgIC1mUElDIC1EUElDIC1vIC5saWJzL2xpYmtkZWRfZmF2aWNvbnNf bGFfbWV0YV91bmxvYWQubw0KL2Jpbi9zaCAuLi8uLi9saWJ0b29sIC0tbW9kZT1saW5rIC0tdGFn PUNYWCBjKysgIC1PMiAtTyAtcGlwZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURR VF9DTEVBTl9OQU1FU1BBQ0UgLURRVF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNUICAgLW8g bGlia2RlZF9mYXZpY29ucy5sYSAtcnBhdGggL3Vzci9sb2NhbC9saWIva2RlMiAtTC91c3IvWDEx UjYvbGliIC1ML3Vzci9sb2NhbC9saWIgIC1ML3Vzci9sb2NhbC9saWIgLW1vZHVsZSAtYXZvaWQt dmVyc2lvbiBmYXZpY29ucy5sbyBmYXZpY29uc19za2VsLmxvIGxpYmtkZWRfZmF2aWNvbnNfbGFf bWV0YV91bmxvYWQubG8gIC1sa3N5Y29jYSANCm9ianByZWxpbmsgLmxpYnMvZmF2aWNvbnMubw0K b2JqcHJlbGluayAubGlicy9mYXZpY29uc19za2VsLm8NCm9ianByZWxpbmsgLmxpYnMvbGlia2Rl ZF9mYXZpY29uc19sYV9tZXRhX3VubG9hZC5vDQpjKysgLXNoYXJlZCAtbm9zdGRsaWIgL3Vzci9s aWIvY3J0aS5vIC91c3IvbGliL2NydGJlZ2luUy5vICAubGlicy9mYXZpY29ucy5vIC5saWJzL2Zh dmljb25zX3NrZWwubyAubGlicy9saWJrZGVkX2Zhdmljb25zX2xhX21ldGFfdW5sb2FkLm8gIC1M L3Vzci9YMTFSNi9saWIgLUwvdXNyL2xvY2FsL2xpYiAvdXNyL2xvY2FsL2xpYi9saWJrc3ljb2Nh LnNvIC1ML3Vzci9saWJleGVjL2VsZiAtTC91c3IvbGliZXhlYyAtTC91c3IvbGliIC1sc3RkYysr IC1sbSAvdXNyL2xpYi9jcnRlbmRTLm8gL3Vzci9saWIvY3J0bi5vICAtV2wsLXNvbmFtZSAtV2ws bGlia2RlZF9mYXZpY29ucy5zbyAtbyAubGlicy9saWJrZGVkX2Zhdmljb25zLnNvDQpjcmVhdGlu ZyBsaWJrZGVkX2Zhdmljb25zLmxhDQooY2QgLmxpYnMgJiYgcm0gLWYgbGlia2RlZF9mYXZpY29u cy5sYSAmJiBsbiAtcyAuLi9saWJrZGVkX2Zhdmljb25zLmxhIGxpYmtkZWRfZmF2aWNvbnMubGEp DQpnbWFrZVszXTogTGVhdmluZyBkaXJlY3RvcnkgYC91c3IvcG9ydHMveDExL2tkZWJhc2UyL3dv cmsva2RlYmFzZS0yLjIuMi9saWJrb25xL2Zhdmljb25zJw0KZ21ha2VbM106IEVudGVyaW5nIGRp cmVjdG9yeSBgL3Vzci9wb3J0cy94MTEva2RlYmFzZTIvd29yay9rZGViYXNlLTIuMi4yL2xpYmtv bnEnDQovdXNyL1gxMVI2L2Jpbi9tb2MyIC4va29ucV9zb3VuZC5oIC1vIGtvbnFfc291bmQubW9j DQovYmluL3NoIC4uL2xpYnRvb2wgLS1tb2RlPWNvbXBpbGUgLS10YWc9Q1hYIGMrKyAtREhBVkVf Q09ORklHX0ggLUkuIC1JLiAtSS4uIC1JL3Vzci9sb2NhbC9pbmNsdWRlL2FydHMgLUkvdXNyL2xv Y2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1JL3Vzci9YMTFSNi9pbmNsdWRl ICAgLUkvdXNyL2luY2x1ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hf ICAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYv aW5jbHVkZS9xdDIgIC1PMiAtTyAtcGlwZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcg LURRVF9DTEVBTl9OQU1FU1BBQ0UgLURRVF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNUICAt YyBrb25xX3NvdW5kLmNjDQpta2RpciAubGlicw0KYysrIC1ESEFWRV9DT05GSUdfSCAtSS4gLUku IC1JLi4gLUkvdXNyL2xvY2FsL2luY2x1ZGUvYXJ0cyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91 c3IvWDExUjYvaW5jbHVkZS9xdDIgLUkvdXNyL1gxMVI2L2luY2x1ZGUgLUkvdXNyL2luY2x1ZGUg LURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfIC1JL3Vzci9sb2NhbC9pbmNs dWRlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAtTzIgLU8g LXBpcGUgLWZuby1leGNlcHRpb25zIC1mbm8tY2hlY2stbmV3IC1EUVRfQ0xFQU5fTkFNRVNQQUNF IC1EUVRfTk9fQ09NUEFUIC1EUVRfTk9fQVNDSUlfQ0FTVCAtV3AsLU1ELC5kZXBzL2tvbnFfc291 bmQucHAgLWMga29ucV9zb3VuZC5jYyAgLWZQSUMgLURQSUMgLW8gLmxpYnMva29ucV9zb3VuZC5v DQovYmluL3NoIC4uL2xpYnRvb2wgLS1tb2RlPWxpbmsgLS10YWc9Q1hYIGMrKyAgLU8yIC1PIC1w aXBlIC1mbm8tZXhjZXB0aW9ucyAtZm5vLWNoZWNrLW5ldyAtRFFUX0NMRUFOX05BTUVTUEFDRSAt RFFUX05PX0NPTVBBVCAtRFFUX05PX0FTQ0lJX0NBU1QgICAtbyBsaWJrb25xc291bmQubGEgLXJw YXRoIC91c3IvbG9jYWwvbGliL2tkZTIgLUwvdXNyL1gxMVI2L2xpYiAtTC91c3IvbG9jYWwvbGli ICAtTC91c3IvbG9jYWwvbGliIC1hdm9pZC12ZXJzaW9uIC1tb2R1bGUgLW5vLXVuZGVmaW5lZCAt UiAvdXNyL2xvY2FsL2xpYiAtUiAvdXNyL1gxMVI2L2xpYiAtUiAvdXNyL1gxMVI2L2xpYiAtUiAv dXNyL2xvY2FsL2xpYiBrb25xX3NvdW5kLmxvIC1sc291bmRzZXJ2ZXJfaWRsIC1sYXJ0c2tkZSAN Cm9ianByZWxpbmsgLmxpYnMva29ucV9zb3VuZC5vDQpjKysgLXNoYXJlZCAtbm9zdGRsaWIgL3Vz ci9saWIvY3J0aS5vIC91c3IvbGliL2NydGJlZ2luUy5vICAubGlicy9rb25xX3NvdW5kLm8gIC1X bCwtLXJwYXRoIC1XbCwvdXNyL2xvY2FsL2xpYiAtV2wsLS1ycGF0aCAtV2wsL3Vzci9YMTFSNi9s aWIgIC1ML3Vzci9YMTFSNi9saWIgLUwvdXNyL2xvY2FsL2xpYiAvdXNyL2xvY2FsL2xpYi9saWJz b3VuZHNlcnZlcl9pZGwuc28gLUwvdXNyL2xpYmV4ZWMvZWxmIC1ML3Vzci9saWJleGVjIC1ML3Vz ci9saWIgL3Vzci9sb2NhbC9saWIvbGliYXJ0c2tkZS5zbyAtbHN0ZGMrKyAtbG0gL3Vzci9saWIv Y3J0ZW5kUy5vIC91c3IvbGliL2NydG4ubyAgLVdsLC1zb25hbWUgLVdsLGxpYmtvbnFzb3VuZC5z byAtbyAubGlicy9saWJrb25xc291bmQuc28NCmNyZWF0aW5nIGxpYmtvbnFzb3VuZC5sYQ0KKGNk IC5saWJzICYmIHJtIC1mIGxpYmtvbnFzb3VuZC5sYSAmJiBsbiAtcyAuLi9saWJrb25xc291bmQu bGEgbGlia29ucXNvdW5kLmxhKQ0KL3Vzci9YMTFSNi9iaW4vbW9jMiAuL2tvbnFfcG9wdXBtZW51 LmggLW8ga29ucV9wb3B1cG1lbnUubW9jDQovYmluL3NoIC4uL2xpYnRvb2wgLS1tb2RlPWNvbXBp bGUgLS10YWc9Q1hYIGMrKyAtREhBVkVfQ09ORklHX0ggLUkuIC1JLiAtSS4uIC1JL3Vzci9sb2Nh bC9pbmNsdWRlL2FydHMgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUv cXQyIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAgLUkvdXNyL2luY2x1ZGUgLURfR0VUT1BUX0ggLURf UFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfICAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvbG9j YWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIgIC1PMiAtTyAtcGlwZSAtZm5vLWV4 Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVBTl9OQU1FU1BBQ0UgLURRVF9OT19DT01Q QVQgLURRVF9OT19BU0NJSV9DQVNUICAtYyBrb25xX3BvcHVwbWVudS5jYw0KYysrIC1ESEFWRV9D T05GSUdfSCAtSS4gLUkuIC1JLi4gLUkvdXNyL2xvY2FsL2luY2x1ZGUvYXJ0cyAtSS91c3IvbG9j YWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIgLUkvdXNyL1gxMVI2L2luY2x1ZGUg LUkvdXNyL2luY2x1ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfIC1J L3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNs dWRlL3F0MiAtTzIgLU8gLXBpcGUgLWZuby1leGNlcHRpb25zIC1mbm8tY2hlY2stbmV3IC1EUVRf Q0xFQU5fTkFNRVNQQUNFIC1EUVRfTk9fQ09NUEFUIC1EUVRfTk9fQVNDSUlfQ0FTVCAtV3AsLU1E LC5kZXBzL2tvbnFfcG9wdXBtZW51LnBwIC1jIGtvbnFfcG9wdXBtZW51LmNjICAtZlBJQyAtRFBJ QyAtbyAubGlicy9rb25xX3BvcHVwbWVudS5vDQovdXNyL1gxMVI2L2Jpbi9tb2MyIC4va25ld21l bnUuaCAtbyBrbmV3bWVudS5tb2MNCi9iaW4vc2ggLi4vbGlidG9vbCAtLW1vZGU9Y29tcGlsZSAt LXRhZz1DWFggYysrIC1ESEFWRV9DT05GSUdfSCAtSS4gLUkuIC1JLi4gLUkvdXNyL2xvY2FsL2lu Y2x1ZGUvYXJ0cyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIg LUkvdXNyL1gxMVI2L2luY2x1ZGUgICAtSS91c3IvaW5jbHVkZSAtRF9HRVRPUFRfSCAtRF9QVEhf SF8gLURfUFRIX1BUSFJFQURfSF8gIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9sb2NhbC9p bmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAgLU8yIC1PIC1waXBlIC1mbm8tZXhjZXB0 aW9ucyAtZm5vLWNoZWNrLW5ldyAtRFFUX0NMRUFOX05BTUVTUEFDRSAtRFFUX05PX0NPTVBBVCAt RFFUX05PX0FTQ0lJX0NBU1QgIC1jIGtuZXdtZW51LmNjDQpjKysgLURIQVZFX0NPTkZJR19IIC1J LiAtSS4gLUkuLiAtSS91c3IvbG9jYWwvaW5jbHVkZS9hcnRzIC1JL3Vzci9sb2NhbC9pbmNsdWRl IC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAtSS91c3IvWDExUjYvaW5jbHVkZSAtSS91c3IvaW5j bHVkZSAtRF9HRVRPUFRfSCAtRF9QVEhfSF8gLURfUFRIX1BUSFJFQURfSF8gLUkvdXNyL2xvY2Fs L2luY2x1ZGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1P MiAtTyAtcGlwZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVBTl9OQU1F U1BBQ0UgLURRVF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNUIC1XcCwtTUQsLmRlcHMva25l d21lbnUucHAgLWMga25ld21lbnUuY2MgIC1mUElDIC1EUElDIC1vIC5saWJzL2tuZXdtZW51Lm8N Ci91c3IvWDExUjYvYmluL21vYzIgLi9rYm9va21hcmttZW51LmggLW8ga2Jvb2ttYXJrbWVudS5t b2MNCi9iaW4vc2ggLi4vbGlidG9vbCAtLW1vZGU9Y29tcGlsZSAtLXRhZz1DWFggYysrIC1ESEFW RV9DT05GSUdfSCAtSS4gLUkuIC1JLi4gLUkvdXNyL2xvY2FsL2luY2x1ZGUvYXJ0cyAtSS91c3Iv bG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIgLUkvdXNyL1gxMVI2L2luY2x1 ZGUgICAtSS91c3IvaW5jbHVkZSAtRF9HRVRPUFRfSCAtRF9QVEhfSF8gLURfUFRIX1BUSFJFQURf SF8gIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFS Ni9pbmNsdWRlL3F0MiAgLU8yIC1PIC1waXBlIC1mbm8tZXhjZXB0aW9ucyAtZm5vLWNoZWNrLW5l dyAtRFFUX0NMRUFOX05BTUVTUEFDRSAtRFFUX05PX0NPTVBBVCAtRFFUX05PX0FTQ0lJX0NBU1Qg IC1jIGtib29rbWFya21lbnUuY2MNCmMrKyAtREhBVkVfQ09ORklHX0ggLUkuIC1JLiAtSS4uIC1J L3Vzci9sb2NhbC9pbmNsdWRlL2FydHMgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2 L2luY2x1ZGUvcXQyIC1JL3Vzci9YMTFSNi9pbmNsdWRlIC1JL3Vzci9pbmNsdWRlIC1EX0dFVE9Q VF9IIC1EX1BUSF9IXyAtRF9QVEhfUFRIUkVBRF9IXyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91 c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIgLU8yIC1PIC1waXBlIC1m bm8tZXhjZXB0aW9ucyAtZm5vLWNoZWNrLW5ldyAtRFFUX0NMRUFOX05BTUVTUEFDRSAtRFFUX05P X0NPTVBBVCAtRFFUX05PX0FTQ0lJX0NBU1QgLVdwLC1NRCwuZGVwcy9rYm9va21hcmttZW51LnBw IC1jIGtib29rbWFya21lbnUuY2MgIC1mUElDIC1EUElDIC1vIC5saWJzL2tib29rbWFya21lbnUu bw0KL2Jpbi9zaCAuLi9saWJ0b29sIC0tbW9kZT1jb21waWxlIC0tdGFnPUNYWCBjKysgLURIQVZF X0NPTkZJR19IIC1JLiAtSS4gLUkuLiAtSS91c3IvbG9jYWwvaW5jbHVkZS9hcnRzIC1JL3Vzci9s b2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAtSS91c3IvWDExUjYvaW5jbHVk ZSAgIC1JL3Vzci9pbmNsdWRlIC1EX0dFVE9QVF9IIC1EX1BUSF9IXyAtRF9QVEhfUFRIUkVBRF9I XyAgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2 L2luY2x1ZGUvcXQyICAtTzIgLU8gLXBpcGUgLWZuby1leGNlcHRpb25zIC1mbm8tY2hlY2stbmV3 IC1EUVRfQ0xFQU5fTkFNRVNQQUNFIC1EUVRfTk9fQ09NUEFUIC1EUVRfTk9fQVNDSUlfQ0FTVCAg LWMga2Jvb2ttYXJrLmNjDQpjKysgLURIQVZFX0NPTkZJR19IIC1JLiAtSS4gLUkuLiAtSS91c3Iv bG9jYWwvaW5jbHVkZS9hcnRzIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNs dWRlL3F0MiAtSS91c3IvWDExUjYvaW5jbHVkZSAtSS91c3IvaW5jbHVkZSAtRF9HRVRPUFRfSCAt RF9QVEhfSF8gLURfUFRIX1BUSFJFQURfSF8gLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL2xv Y2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1PMiAtTyAtcGlwZSAtZm5vLWV4 Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVBTl9OQU1FU1BBQ0UgLURRVF9OT19DT01Q QVQgLURRVF9OT19BU0NJSV9DQVNUIC1XcCwtTUQsLmRlcHMva2Jvb2ttYXJrLnBwIC1jIGtib29r bWFyay5jYyAgLWZQSUMgLURQSUMgLW8gLmxpYnMva2Jvb2ttYXJrLm8NCi91c3IvWDExUjYvYmlu L21vYzIgLi9rYm9va21hcmtiYXIuaCAtbyBrYm9va21hcmtiYXIubW9jDQovYmluL3NoIC4uL2xp YnRvb2wgLS1tb2RlPWNvbXBpbGUgLS10YWc9Q1hYIGMrKyAtREhBVkVfQ09ORklHX0ggLUkuIC1J LiAtSS4uIC1JL3Vzci9sb2NhbC9pbmNsdWRlL2FydHMgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkv dXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAgLUkvdXNyL2luY2x1 ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfICAtSS91c3IvbG9jYWwv aW5jbHVkZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIgIC1P MiAtTyAtcGlwZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVBTl9OQU1F U1BBQ0UgLURRVF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNUICAtYyBrYm9va21hcmtiYXIu Y2MNCmMrKyAtREhBVkVfQ09ORklHX0ggLUkuIC1JLiAtSS4uIC1JL3Vzci9sb2NhbC9pbmNsdWRl L2FydHMgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1JL3Vz ci9YMTFSNi9pbmNsdWRlIC1JL3Vzci9pbmNsdWRlIC1EX0dFVE9QVF9IIC1EX1BUSF9IXyAtRF9Q VEhfUFRIUkVBRF9IXyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAt SS91c3IvWDExUjYvaW5jbHVkZS9xdDIgLU8yIC1PIC1waXBlIC1mbm8tZXhjZXB0aW9ucyAtZm5v LWNoZWNrLW5ldyAtRFFUX0NMRUFOX05BTUVTUEFDRSAtRFFUX05PX0NPTVBBVCAtRFFUX05PX0FT Q0lJX0NBU1QgLVdwLC1NRCwuZGVwcy9rYm9va21hcmtiYXIucHAgLWMga2Jvb2ttYXJrYmFyLmNj ICAtZlBJQyAtRFBJQyAtbyAubGlicy9rYm9va21hcmtiYXIubw0KL3Vzci9YMTFSNi9iaW4vbW9j MiAuL2tib29rbWFya2ltcG9ydGVyLmggLW8ga2Jvb2ttYXJraW1wb3J0ZXIubW9jDQovYmluL3No IC4uL2xpYnRvb2wgLS1tb2RlPWNvbXBpbGUgLS10YWc9Q1hYIGMrKyAtREhBVkVfQ09ORklHX0gg LUkuIC1JLiAtSS4uIC1JL3Vzci9sb2NhbC9pbmNsdWRlL2FydHMgLUkvdXNyL2xvY2FsL2luY2x1 ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAgLUkvdXNy L2luY2x1ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfICAtSS91c3Iv bG9jYWwvaW5jbHVkZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9x dDIgIC1PMiAtTyAtcGlwZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVB Tl9OQU1FU1BBQ0UgLURRVF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNUICAtYyBrYm9va21h cmtpbXBvcnRlci5jYw0KYysrIC1ESEFWRV9DT05GSUdfSCAtSS4gLUkuIC1JLi4gLUkvdXNyL2xv Y2FsL2luY2x1ZGUvYXJ0cyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVk ZS9xdDIgLUkvdXNyL1gxMVI2L2luY2x1ZGUgLUkvdXNyL2luY2x1ZGUgLURfR0VUT1BUX0ggLURf UFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9sb2Nh bC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAtTzIgLU8gLXBpcGUgLWZuby1leGNl cHRpb25zIC1mbm8tY2hlY2stbmV3IC1EUVRfQ0xFQU5fTkFNRVNQQUNFIC1EUVRfTk9fQ09NUEFU IC1EUVRfTk9fQVNDSUlfQ0FTVCAtV3AsLU1ELC5kZXBzL2tib29rbWFya2ltcG9ydGVyLnBwIC1j IGtib29rbWFya2ltcG9ydGVyLmNjICAtZlBJQyAtRFBJQyAtbyAubGlicy9rYm9va21hcmtpbXBv cnRlci5vDQovYmluL3NoIC4uL2xpYnRvb2wgLS1tb2RlPWNvbXBpbGUgLS10YWc9Q1hYIGMrKyAt REhBVkVfQ09ORklHX0ggLUkuIC1JLiAtSS4uIC1JL3Vzci9sb2NhbC9pbmNsdWRlL2FydHMgLUkv dXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1JL3Vzci9YMTFSNi9p bmNsdWRlICAgLUkvdXNyL2luY2x1ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhS RUFEX0hfICAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3Iv WDExUjYvaW5jbHVkZS9xdDIgIC1PMiAtTyAtcGlwZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVj ay1uZXcgLURRVF9DTEVBTl9OQU1FU1BBQ0UgLURRVF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9D QVNUICAtYyBrYm9va21hcmtleHBvcnRlci5jYw0KYysrIC1ESEFWRV9DT05GSUdfSCAtSS4gLUku IC1JLi4gLUkvdXNyL2xvY2FsL2luY2x1ZGUvYXJ0cyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91 c3IvWDExUjYvaW5jbHVkZS9xdDIgLUkvdXNyL1gxMVI2L2luY2x1ZGUgLUkvdXNyL2luY2x1ZGUg LURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfIC1JL3Vzci9sb2NhbC9pbmNs dWRlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAtTzIgLU8g LXBpcGUgLWZuby1leGNlcHRpb25zIC1mbm8tY2hlY2stbmV3IC1EUVRfQ0xFQU5fTkFNRVNQQUNF IC1EUVRfTk9fQ09NUEFUIC1EUVRfTk9fQVNDSUlfQ0FTVCAtV3AsLU1ELC5kZXBzL2tib29rbWFy a2V4cG9ydGVyLnBwIC1jIGtib29rbWFya2V4cG9ydGVyLmNjICAtZlBJQyAtRFBJQyAtbyAubGli cy9rYm9va21hcmtleHBvcnRlci5vDQovdXNyL1gxMVI2L2Jpbi9tb2MyIC4va2Jvb2ttYXJrbWFu YWdlci5oIC1vIGtib29rbWFya21hbmFnZXIubW9jDQovYmluL3NoIC4uL2xpYnRvb2wgLS1tb2Rl PWNvbXBpbGUgLS10YWc9Q1hYIGMrKyAtREhBVkVfQ09ORklHX0ggLUkuIC1JLiAtSS4uIC1JL3Vz ci9sb2NhbC9pbmNsdWRlL2FydHMgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2lu Y2x1ZGUvcXQyIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAgLUkvdXNyL2luY2x1ZGUgLURfR0VUT1BU X0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfICAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91 c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIgIC1PMiAtTyAtcGlwZSAt Zm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVBTl9OQU1FU1BBQ0UgLURRVF9O T19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNUICAtYyBrYm9va21hcmttYW5hZ2VyLmNjDQpjKysg LURIQVZFX0NPTkZJR19IIC1JLiAtSS4gLUkuLiAtSS91c3IvbG9jYWwvaW5jbHVkZS9hcnRzIC1J L3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAtSS91c3IvWDExUjYv aW5jbHVkZSAtSS91c3IvaW5jbHVkZSAtRF9HRVRPUFRfSCAtRF9QVEhfSF8gLURfUFRIX1BUSFJF QURfSF8gLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gx MVI2L2luY2x1ZGUvcXQyIC1PMiAtTyAtcGlwZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1u ZXcgLURRVF9DTEVBTl9OQU1FU1BBQ0UgLURRVF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNU IC1XcCwtTUQsLmRlcHMva2Jvb2ttYXJrbWFuYWdlci5wcCAtYyBrYm9va21hcmttYW5hZ2VyLmNj ICAtZlBJQyAtRFBJQyAtbyAubGlicy9rYm9va21hcmttYW5hZ2VyLm8NCi9iaW4vc2ggLi4vbGli dG9vbCAtLW1vZGU9Y29tcGlsZSAtLXRhZz1DWFggYysrIC1ESEFWRV9DT05GSUdfSCAtSS4gLUku IC1JLi4gLUkvdXNyL2xvY2FsL2luY2x1ZGUvYXJ0cyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91 c3IvWDExUjYvaW5jbHVkZS9xdDIgLUkvdXNyL1gxMVI2L2luY2x1ZGUgICAtSS91c3IvaW5jbHVk ZSAtRF9HRVRPUFRfSCAtRF9QVEhfSF8gLURfUFRIX1BUSFJFQURfSF8gIC1JL3Vzci9sb2NhbC9p bmNsdWRlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAgLU8y IC1PIC1waXBlIC1mbm8tZXhjZXB0aW9ucyAtZm5vLWNoZWNrLW5ldyAtRFFUX0NMRUFOX05BTUVT UEFDRSAtRFFUX05PX0NPTVBBVCAtRFFUX05PX0FTQ0lJX0NBU1QgIC1jIGtib29rbWFya2RyYWcu Y2MNCmMrKyAtREhBVkVfQ09ORklHX0ggLUkuIC1JLiAtSS4uIC1JL3Vzci9sb2NhbC9pbmNsdWRl L2FydHMgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1JL3Vz ci9YMTFSNi9pbmNsdWRlIC1JL3Vzci9pbmNsdWRlIC1EX0dFVE9QVF9IIC1EX1BUSF9IXyAtRF9Q VEhfUFRIUkVBRF9IXyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAt SS91c3IvWDExUjYvaW5jbHVkZS9xdDIgLU8yIC1PIC1waXBlIC1mbm8tZXhjZXB0aW9ucyAtZm5v LWNoZWNrLW5ldyAtRFFUX0NMRUFOX05BTUVTUEFDRSAtRFFUX05PX0NPTVBBVCAtRFFUX05PX0FT Q0lJX0NBU1QgLVdwLC1NRCwuZGVwcy9rYm9va21hcmtkcmFnLnBwIC1jIGtib29rbWFya2RyYWcu Y2MgIC1mUElDIC1EUElDIC1vIC5saWJzL2tib29rbWFya2RyYWcubw0KL3Vzci9YMTFSNi9iaW4v bW9jMiAuL2tvbnFfZGlybGlzdGVyLmggLW8ga29ucV9kaXJsaXN0ZXIubW9jDQovYmluL3NoIC4u L2xpYnRvb2wgLS1tb2RlPWNvbXBpbGUgLS10YWc9Q1hYIGMrKyAtREhBVkVfQ09ORklHX0ggLUku IC1JLiAtSS4uIC1JL3Vzci9sb2NhbC9pbmNsdWRlL2FydHMgLUkvdXNyL2xvY2FsL2luY2x1ZGUg LUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAgLUkvdXNyL2lu Y2x1ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfICAtSS91c3IvbG9j YWwvaW5jbHVkZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIg IC1PMiAtTyAtcGlwZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVBTl9O QU1FU1BBQ0UgLURRVF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNUICAtYyBrb25xX2Rpcmxp c3Rlci5jYw0KYysrIC1ESEFWRV9DT05GSUdfSCAtSS4gLUkuIC1JLi4gLUkvdXNyL2xvY2FsL2lu Y2x1ZGUvYXJ0cyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIg LUkvdXNyL1gxMVI2L2luY2x1ZGUgLUkvdXNyL2luY2x1ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hf IC1EX1BUSF9QVEhSRUFEX0hfIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9sb2NhbC9pbmNs dWRlIC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAtTzIgLU8gLXBpcGUgLWZuby1leGNlcHRpb25z IC1mbm8tY2hlY2stbmV3IC1EUVRfQ0xFQU5fTkFNRVNQQUNFIC1EUVRfTk9fQ09NUEFUIC1EUVRf Tk9fQVNDSUlfQ0FTVCAtV3AsLU1ELC5kZXBzL2tvbnFfZGlybGlzdGVyLnBwIC1jIGtvbnFfZGly bGlzdGVyLmNjICAtZlBJQyAtRFBJQyAtbyAubGlicy9rb25xX2Rpcmxpc3Rlci5vDQovYmluL3No IC4uL2xpYnRvb2wgLS1tb2RlPWNvbXBpbGUgLS10YWc9Q1hYIGMrKyAtREhBVkVfQ09ORklHX0gg LUkuIC1JLiAtSS4uIC1JL3Vzci9sb2NhbC9pbmNsdWRlL2FydHMgLUkvdXNyL2xvY2FsL2luY2x1 ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUvcXQyIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAgLUkvdXNy L2luY2x1ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hfIC1EX1BUSF9QVEhSRUFEX0hfICAtSS91c3Iv bG9jYWwvaW5jbHVkZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9x dDIgIC1PMiAtTyAtcGlwZSAtZm5vLWV4Y2VwdGlvbnMgLWZuby1jaGVjay1uZXcgLURRVF9DTEVB Tl9OQU1FU1BBQ0UgLURRVF9OT19DT01QQVQgLURRVF9OT19BU0NJSV9DQVNUICAtYyBrZmlsZWl2 aS5jYw0KYysrIC1ESEFWRV9DT05GSUdfSCAtSS4gLUkuIC1JLi4gLUkvdXNyL2xvY2FsL2luY2x1 ZGUvYXJ0cyAtSS91c3IvbG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9xdDIgLUkv dXNyL1gxMVI2L2luY2x1ZGUgLUkvdXNyL2luY2x1ZGUgLURfR0VUT1BUX0ggLURfUFRIX0hfIC1E X1BUSF9QVEhSRUFEX0hfIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9sb2NhbC9pbmNsdWRl IC1JL3Vzci9YMTFSNi9pbmNsdWRlL3F0MiAtTzIgLU8gLXBpcGUgLWZuby1leGNlcHRpb25zIC1m bm8tY2hlY2stbmV3IC1EUVRfQ0xFQU5fTkFNRVNQQUNFIC1EUVRfTk9fQ09NUEFUIC1EUVRfTk9f QVNDSUlfQ0FTVCAtV3AsLU1ELC5kZXBzL2tmaWxlaXZpLnBwIC1jIGtmaWxlaXZpLmNjICAtZlBJ QyAtRFBJQyAtbyAubGlicy9rZmlsZWl2aS5vDQprZmlsZWl2aS5jYzogSW4gbWV0aG9kIGB2b2lk IEtGaWxlSVZJOjpzZXRFZmZlY3QoaW50LCBpbnQpJzoNCmtmaWxlaXZpLmNjOjE5Nzogbm8gbWF0 Y2hpbmcgZnVuY3Rpb24gZm9yIGNhbGwgdG8gYEtJY29uRWZmZWN0OjpoYXNFZmZlY3QgKEtJY29u OjpHcm91cCwgaW50ICYpJw0Ka2ZpbGVpdmkuY2M6MTk4OiBubyBtYXRjaGluZyBmdW5jdGlvbiBm b3IgY2FsbCB0byBgS0ljb25FZmZlY3Q6Omhhc0VmZmVjdCAoS0ljb246Okdyb3VwLCBpbnQgJikn DQpnbWFrZVszXTogKioqIFtrZmlsZWl2aS5sb10gRXJyb3IgMQ0KZ21ha2VbM106IExlYXZpbmcg ZGlyZWN0b3J5IGAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi93b3JrL2tkZWJhc2UtMi4yLjIvbGli a29ucScNCmdtYWtlWzJdOiAqKiogW2FsbC1yZWN1cnNpdmVdIEVycm9yIDENCmdtYWtlWzJdOiBM ZWF2aW5nIGRpcmVjdG9yeSBgL3Vzci9wb3J0cy94MTEva2RlYmFzZTIvd29yay9rZGViYXNlLTIu Mi4yL2xpYmtvbnEnDQpnbWFrZVsxXTogKioqIFthbGwtcmVjdXJzaXZlXSBFcnJvciAxDQpnbWFr ZVsxXTogTGVhdmluZyBkaXJlY3RvcnkgYC91c3IvcG9ydHMveDExL2tkZWJhc2UyL3dvcmsva2Rl YmFzZS0yLjIuMicNCmdtYWtlOiAqKiogW2FsbC1yZWN1cnNpdmUtYW1dIEVycm9yIDINCioqKiBF cnJvciBjb2RlIDINCg0KU3RvcCBpbiAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi4NCioqKiBFcnJv ciBjb2RlIDENCg0KU3RvcCBpbiAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi4NCioqKiBFcnJvciBj b2RlIDENCg0KU3RvcCBpbiAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi4NCioqKiBFcnJvciBjb2Rl IDENCg0KU3RvcCBpbiAvdXNyL3BvcnRzL3gxMS9rZGViYXNlMi4NCmJhc2gtMi4wNSMgZ2NjIC0t dmVyc2lvbg0KMi45NS4zDQpiYXNoLTIuMDUjIGV4aXQNCmV4aXQNCgpTY3JpcHQgZG9uZSBvbiBT YXQgRGVjIDE1IDEzOjUxOjMxIDIwMDEK --------------Boundary-00=_3BFE2PIHVOVH4E4Q14FM-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 11: 5:55 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hex.databits.net (hex.csh.rit.edu [129.21.60.203]) by hub.freebsd.org (Postfix) with SMTP id 648DD37B41A for ; Sat, 15 Dec 2001 11:05:53 -0800 (PST) Received: (qmail 54592 invoked by uid 1001); 15 Dec 2001 19:05:53 -0000 Date: Sat, 15 Dec 2001 14:05:53 -0500 From: Pete Fritchman To: Chris Thomas Cc: freebsd-ports@freebsd.org Subject: Re: KDE 2.2.2 copmile failure Message-ID: <20011215140553.D43337@databits.net> References: <200112151857.fBFIv64Z004299@gramsc1.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200112151857.fBFIv64Z004299@gramsc1.dyndns.org>; from resopmok@gramsc1.dyndns.org on Sat, Dec 15, 2001 at 01:57:03PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ++ 15/12/01 13:57 -0500 - Chris Thomas: | i did nothing special except make install, and have no idea what could be | causing the problem. I already have KDE 2.2.1 installed, if this makes any | difference. [...] Yes, this is probably causing a problem. Try 'pkg_delete -f /var/db/pkg/kde*'. I'd imagine the main problem with your kdebase 2.2.2 is having kdelibs 2.2.1 installed. -pete -- Pete Fritchman [petef@(databits.net|freebsd.org|csh.rit.edu)] finger petef@databits.net for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 11:10:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 960FB37B41C for ; Sat, 15 Dec 2001 11:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFJA1N26427; Sat, 15 Dec 2001 11:10:01 -0800 (PST) (envelope-from gnats) Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id 4BC2437B41C for ; Sat, 15 Dec 2001 11:01:53 -0800 (PST) Received: from horsey.gshapiro.net (gshapiro@localhost [IPv6:::1]) by horsey.gshapiro.net (8.12.2.Beta2/8.12.2.Beta2) with ESMTP id fBFJ1odq045788 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sat, 15 Dec 2001 11:01:50 -0800 (PST) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.2.Beta2/8.12.2.Beta2/Submit) id fBFJ1onG045787; Sat, 15 Dec 2001 11:01:50 -0800 (PST) Message-Id: <200112151901.fBFJ1onG045787@horsey.gshapiro.net> Date: Sat, 15 Dec 2001 11:01:50 -0800 (PST) From: Gregory Neil Shapiro To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32876: Update port: mail/listmanager Upgrade to version 2.109 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32876 >Category: ports >Synopsis: Update port: mail/listmanager Upgrade to version 2.109 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 11:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Gregory Neil Shapiro >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD horsey.gshapiro.net 4.4-STABLE FreeBSD 4.4-STABLE #26: Wed Dec 12 19:25:41 PST 2001 root@horsey.gshapiro.net:/home/FreeBSD/RELENG_4/obj/sys/HORSEY i386 >Description: Here is a patch for mail/listmanager to update the port to the new release, 2.109. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/listmanager/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 24 Nov 2001 19:23:01 -0000 1.10 +++ Makefile 15 Dec 2001 18:58:28 -0000 @@ -6,14 +6,20 @@ # PORTNAME= listmanager -PORTVERSION= 2.108 -PORTREVISION= 1 +PORTVERSION= 2.109 CATEGORIES= mail MASTER_SITES= http://www.listmanager.org/ DISTNAME= ${PORTNAME} +DIST_SUBDIR= ${PORTNAME} + +.include + +.if ${OSVERSION} >= 440000 +EXTRACT_SUFX= .freebsd44 +.else EXTRACT_SUFX= .freebsd35 +.endif DISTFILES= ${DISTNAME}${EXTRACT_SUFX} INSTALL help.tar.gz listmanager.8 ack -DIST_SUBDIR= ${PORTNAME} MAINTAINER= gshapiro@FreeBSD.org @@ -53,4 +59,4 @@ post-install: @${CAT} ${PKGMESSAGE} -.include +.include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/mail/listmanager/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- distinfo 15 May 2001 06:45:00 -0000 1.6 +++ distinfo 15 Dec 2001 18:58:28 -0000 @@ -1,4 +1,5 @@ -MD5 (listmanager/listmanager.freebsd35) = c11a9860de2fd8393c708b3aecaf0df0 +MD5 (listmanager/listmanager.freebsd35) = fc3f01bfa0176550161dcd7ca1409074 +MD5 (listmanager/listmanager.freebsd44) = 9c3468a9fbafb7056b9b7b508eeb9c0d MD5 (listmanager/INSTALL) = daab4be48e990a66b58e09fece5bb993 MD5 (listmanager/help.tar.gz) = 55473e6dd480392fa783874723627fcc MD5 (listmanager/listmanager.8) = d321176b26b8ddb2a539a69a7bf640a7 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 12: 3:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id F0E6337B41A for ; Sat, 15 Dec 2001 12:03:15 -0800 (PST) Received: from there (localhost.geeksrus.net [127.0.0.1]) by wwweasel.geeksrus.net (8.11.6/8.11.6) with SMTP id fBFK1QQ09604; Sat, 15 Dec 2001 15:01:26 -0500 (EST) (envelope-from alane@geeksrus.net) Message-Id: <200112152001.fBFK1QQ09604@wwweasel.geeksrus.net> Content-Type: text/plain; charset="iso-8859-1" From: Alan E To: resopmok@gramsc1.dyndns.org, freebsd-ports@FreeBSD.ORG Subject: Re: KDE 2.2.2 copmile failure Date: Sat, 15 Dec 2001 15:01:26 -0500 X-Mailer: KMail [version 1.3.2] References: <200112151857.fBFIv64Z004299@gramsc1.dyndns.org> In-Reply-To: <200112151857.fBFIv64Z004299@gramsc1.dyndns.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Saturday 15 December 2001 13:57, Chris Thomas wrote: > i get the following error messages trying to compile KDE 2.2.2 from the > x11/kdebase2 metaport > > kfileivi.cc: In method `void KFileIVI::setEffect(int, int)': > kfileivi.cc:197: no matching function for call to `KIconEffect::hasEffect > (KIcon::Group, int &)' > kfileivi.cc:198: no matching function for call to `KIconEffect::hasEffect > i did nothing special except make install, and have no idea what could be > causing the problem. I already have KDE 2.2.1 installed, if this makes any > difference. i'm running 4.4-STABLE, and the most recent ports were > cvsupped before attempting this build. attached is a full typescript of > the session. thanks, You don't have kdelibs-2.2.2 installed. You must build & install kdelibs-2.2.2, then build & install kdebase-2.2.2, then do whatever other packages you want. -- Alan Eldridge Just another $LANGUAGE hacker. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 12:10:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 887BF37B41D for ; Sat, 15 Dec 2001 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFKA1o35434; Sat, 15 Dec 2001 12:10:01 -0800 (PST) (envelope-from gnats) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id DB62137B419 for ; Sat, 15 Dec 2001 12:09:47 -0800 (PST) Received: from cheshire.blacktabby.org ([12.233.190.154]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20011215200944.OZN5010.rwcrmhc51.attbi.com@cheshire.blacktabby.org> for ; Sat, 15 Dec 2001 20:09:44 +0000 Received: by cheshire.blacktabby.org (Postfix, from userid 1000) id 05E62597C; Sat, 15 Dec 2001 12:09:18 -0800 (PST) Message-Id: <20011215200918.05E62597C@cheshire.blacktabby.org> Date: Sat, 15 Dec 2001 12:09:18 -0800 (PST) From: Adam Kranzel Reply-To: Adam Kranzel To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32879: Maintainer update of games/slashem-tty port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32879 >Category: ports >Synopsis: Maintainer update of games/slashem-tty port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 12:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Adam Kranzel >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cheshire.blacktabby.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sun Nov 25 14:17:49 PST 2001 adam@cheshire.blacktabby.org:/usr/obj/usr/src/sys/CHESHIRE-NODEBUG i386 >Description: The stable version of Slash'Em has been updated to 0.0.6e4f6, tha attached patch updates the port to this version. >How-To-Repeat: n/a >Fix: diff -ruN slashem-tty.good/Makefile slashem-tty/Makefile --- slashem-tty.good/Makefile Sat Dec 15 11:23:58 2001 +++ slashem-tty/Makefile Sat Dec 15 11:24:10 2001 @@ -6,7 +6,7 @@ # PORTNAME= slashem -PORTVERSION= 0.0.6E.4F.5 +PORTVERSION= 0.0.6E.4F.6 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN slashem-tty.good/distinfo slashem-tty/distinfo --- slashem-tty.good/distinfo Sat Dec 15 11:23:58 2001 +++ slashem-tty/distinfo Sat Dec 15 11:24:47 2001 @@ -1 +1 @@ -MD5 (se006e4f5.tar.gz) = ab03bfcc47f71bcfbb943102a6cb36cb +MD5 (se006e4f6.tar.gz) = 43e20163d08b0c7e5f24fe3f2da715ea >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 12:10:23 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 636A137B419 for ; Sat, 15 Dec 2001 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFKA1o35424; Sat, 15 Dec 2001 12:10:01 -0800 (PST) (envelope-from gnats) Received: from darkone.comintern.net (darkone.comintern.net [213.148.1.98]) by hub.freebsd.org (Postfix) with ESMTP id A6ADB37B41D for ; Sat, 15 Dec 2001 12:02:48 -0800 (PST) Received: from 3wgraphics.com (ppp-9-066.comintern.ru [213.148.9.66]) by darkone.comintern.net (8.11.6/8.11.6) with ESMTP id fBFK2hQ440588 for ; Sat, 15 Dec 2001 23:02:44 +0300 (MSD) Received: from root by 3wgraphics.com with local (Exim 3.33 #1) id 16FKwc-000IZC-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 15 Dec 2001 22:58:02 +0300 Message-Id: Date: Sat, 15 Dec 2001 22:58:02 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/32878: New port: p5-Carp-Assert-0.17 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32878 >Category: ports >Synopsis: New port: p5-Carp-Assert-0.17 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 12:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: >Description: New port: p5-Carp-Assert-0.17 Executable comments like the ANSI C library assert.h >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Carp-Assert # p5-Carp-Assert/distinfo # p5-Carp-Assert/Makefile # p5-Carp-Assert/pkg-comment # p5-Carp-Assert/pkg-descr # p5-Carp-Assert/pkg-plist # echo c - p5-Carp-Assert mkdir -p p5-Carp-Assert > /dev/null 2>&1 echo x - p5-Carp-Assert/distinfo sed 's/^X//' >p5-Carp-Assert/distinfo << 'END-of-p5-Carp-Assert/distinfo' XMD5 (Carp-Assert-0.17.tar.gz) = 94c208587f49a85b3d3d354d0d3a7dc4 END-of-p5-Carp-Assert/distinfo echo x - p5-Carp-Assert/Makefile sed 's/^X//' >p5-Carp-Assert/Makefile << 'END-of-p5-Carp-Assert/Makefile' X# New ports collection makefile for: Carp-Assert X# Date created: 15 Dec 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= Carp-Assert XPORTVERSION= 0.17 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Carp XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= Carp::Assert.3 X X.include END-of-p5-Carp-Assert/Makefile echo x - p5-Carp-Assert/pkg-comment sed 's/^X//' >p5-Carp-Assert/pkg-comment << 'END-of-p5-Carp-Assert/pkg-comment' XExecutable comments like the ANSI C library assert.h END-of-p5-Carp-Assert/pkg-comment echo x - p5-Carp-Assert/pkg-descr sed 's/^X//' >p5-Carp-Assert/pkg-descr << 'END-of-p5-Carp-Assert/pkg-descr' XCarp::Assert is intended for a purpose like the ANSI C library assert.h. X XWWW: http://search.cpan.org/search?dist=Carp-Assert X X-- Sergey Skvortsov Xskv@protey.ru END-of-p5-Carp-Assert/pkg-descr echo x - p5-Carp-Assert/pkg-plist sed 's/^X//' >p5-Carp-Assert/pkg-plist << 'END-of-p5-Carp-Assert/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Carp/Assert/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Carp/Assert.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Carp/Assert X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Carp 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Carp 2>/dev/null || true END-of-p5-Carp-Assert/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 12:26: 6 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (oe43.pav1.hotmail.com [64.4.30.15]) by hub.freebsd.org (Postfix) with ESMTP id 55E9937B41A for ; Sat, 15 Dec 2001 12:26:03 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 15 Dec 2001 12:26:03 -0800 X-Originating-IP: [66.185.84.77] From: "jack xiao" To: Cc: Subject: FreeBSD Port: radiusclient-0.3.1 Date: Sat, 15 Dec 2001 15:28:09 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000D_01C1857D.19B3BB20" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: X-OriginalArrivalTime: 15 Dec 2001 20:26:03.0157 (UTC) FILETIME=[B76DB450:01C185A6] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_000D_01C1857D.19B3BB20 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 SGksDQoNCk5vdyBJIHdhbnQgdG8gdXNlIHJhZGl1c2NsaWVudCAoIHZlcnNpb24gMC4zLjEgKSB1 bmRlciBGcmVlQlNEIHBvcnRzIGFuZCB1c2UgcmFkbG9naW4gdG8gc3Vic3RpdHV0ZSBub3JtYWwg bG9naW4gZm9yIFBQUCBsb2dpbiB1c2Vycy4gSSBoYXZlIHBvcnRlZCByYWRpdXNjbGllbnQgYW5k IHJhZGxvZ2luIHdvcmtzIHdlbGwsIGJ1dCBJIGRvbid0IGtub3cgaG93IHRvIHVzZSByYWRsb2dp biBpbnN0ZWFkIG9mIGxvZ2luLiBJdCdzYSBpZCB0aGVyZSBpcyBhIHBhdGNoIG9mIHJhZGl1c2Ns aW5ldCBmb3IgcHBwZCwgd2hlcmUgaXMgaXQgdW5kZXIgRnJlZUJTRD8gQW55IGlkZWFzIHdpbGwg YmUgYXBwcmVjaWF0ZWQuDQoNClRoYW5rcyENCg0KSmFjaw0K ------=_NextPart_000_000D_01C1857D.19B3BB20 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv L0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgaHR0cC1lcXVpdj1Db250ZW50LVR5cGUgY29udGVu dD0idGV4dC9odG1sOyBjaGFyc2V0PWdiMjMxMiI+DQo8TUVUQSBjb250ZW50PSJNU0hUTUwgNi4w MC4yNjAwLjAiIG5hbWU9R0VORVJBVE9SPg0KPFNUWUxFPjwvU1RZTEU+DQo8L0hFQUQ+DQo8Qk9E WSBiZ0NvbG9yPSNmZmZmZmY+DQo8RElWPjxGT05UIGZhY2U9QXJpYWwgc2l6ZT0yPg0KPERJViBz dHlsZT0iRk9OVDogMTBwdCBhcmlhbCI+PEZPTlQgZmFjZT1BcmlhbCBzaXplPTI+SGksPC9GT05U PjwvRElWPg0KPERJVj48Rk9OVCBmYWNlPUFyaWFsIHNpemU9Mj48L0ZPTlQ+Jm5ic3A7PC9ESVY+ DQo8RElWPjxGT05UIGZhY2U9QXJpYWwgc2l6ZT0yPk5vdyBJIHdhbnQgdG8gdXNlIHJhZGl1c2Ns aWVudCAoIHZlcnNpb24gMC4zLjEgDQopJm5ic3A7dW5kZXIgRnJlZUJTRCBwb3J0cyBhbmQmbmJz cDt1c2UgcmFkbG9naW4gdG8gc3Vic3RpdHV0ZSBub3JtYWwgbG9naW4gDQpmb3ImbmJzcDtQUFAg bG9naW4gdXNlcnMuJm5ic3A7SSBoYXZlIHBvcnRlZCByYWRpdXNjbGllbnQgYW5kIA0KcmFkbG9n aW4mbmJzcDt3b3JrcyB3ZWxsLCBidXQgSSBkb24ndCBrbm93IGhvdyB0byB1c2UgcmFkbG9naW4g aW5zdGVhZCBvZiANCmxvZ2luLiZuYnNwO0l0J3NhIGlkIHRoZXJlIGlzIGEgcGF0Y2ggb2YgcmFk aXVzY2xpbmV0IGZvciBwcHBkLCB3aGVyZSBpcyBpdCANCnVuZGVyIEZyZWVCU0Q/IEFueSBpZGVh cyB3aWxsIGJlIGFwcHJlY2lhdGVkLjwvRk9OVD48L0RJVj4NCjxESVY+PEZPTlQgZmFjZT1Bcmlh bCBzaXplPTI+PC9GT05UPiZuYnNwOzwvRElWPg0KPERJVj48Rk9OVCBmYWNlPUFyaWFsIHNpemU9 Mj5UaGFua3MhPC9GT05UPjwvRElWPg0KPERJVj48Rk9OVCBmYWNlPUFyaWFsIHNpemU9Mj48L0ZP TlQ+Jm5ic3A7PC9ESVY+DQo8RElWPjxGT05UIGZhY2U9QXJpYWwgc2l6ZT0yPkphY2s8L0ZPTlQ+ PC9ESVY+PC9GT05UPjwvRElWPjwvQk9EWT48L0hUTUw+DQo= ------=_NextPart_000_000D_01C1857D.19B3BB20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 12:29:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54A9837B41A; Sat, 15 Dec 2001 12:29:42 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFKRgJ37056; Sat, 15 Dec 2001 12:27:42 -0800 (PST) (envelope-from petef) Date: Sat, 15 Dec 2001 12:27:42 -0800 (PST) From: Message-Id: <200112152027.fBFKRgJ37056@freefall.freebsd.org> To: gshapiro+freebsd-gnats@freebsd.org, petef@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/32876: Update port: mail/listmanager Upgrade to version 2.109 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: mail/listmanager Upgrade to version 2.109 State-Changed-From-To: open->closed State-Changed-By: petef State-Changed-When: Sat Dec 15 12:27:32 PST 2001 State-Changed-Why: Committed, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32876 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 13: 3:22 2001 Delivered-To: freebsd-ports@freebsd.org Received: from pioneernet.net (mail.pioneernet.net [207.115.64.224]) by hub.freebsd.org (Postfix) with ESMTP id 3950637B405 for ; Sat, 15 Dec 2001 13:03:18 -0800 (PST) Received: from there [66.114.152.128] by pioneernet.net (SMTPD32-6.06) id AA921E1F0026; Sat, 15 Dec 2001 13:03:14 -0800 Content-Type: text/plain; charset="iso-8859-1" From: chip To: ports@freebsd.org Subject: sharity port maintainor link is bad - Fwd: Undeliverable Mail Date: Sat, 15 Dec 2001 13:03:14 -0800 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200112151303171.SM01060@there> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ---------- Forwarded Message ---------- Subject: Undeliverable Mail Date: Sat, 15 Dec 2001 11:10:36 -0800 From: "Postmaster" To: Unknown host: ports%FreeBSD.org?cc=3Dports%FreeBSD.org&subject=3DFreeBSD%20Port:@20sha= rity-lig ht-1.2 Original message follows. Received: from there [66.114.152.128] by pioneernet.net (SMTPD32-6.06) id A02B1D3300C0; Sat, 15 Dec 2001 11:10:35 -0800 Content-Type: text/plain; charset=3D"iso-8859-1" X-KMail-Redirect-From: "Postmaster" Subject: Undeliverable Mail From: "Postmaster" (by way of chip ) Date: Sat, 15 Dec 2001 11:10:34 -0800 To: ports@FreeBSD.org?cc=3Dports@FreeBSD.org&subject=3DFreeBSD%20Port:%20sha= rity-lig ht-1.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200112151110671.SM01060@there> Unknown host: ports%FreeBSD.org?cc=3D3Dports%FreeBSD.org&subject=3D3DFreeBSD%20Port:@2= 0sha=3D rity-lig ht-1.2 Original message follows. Received: from there [66.114.152.128] by pioneernet.net (SMTPD32-6.06) id AE1811EF00A2; Fri, 14 Dec 2001 23:39:04 -0800 Content-Type: text/plain; charset=3D3D"iso-8859-1" From: chip To: ports@FreeBSD.org?cc=3D3Dports@FreeBSD.org&subject=3D3DFreeBSD%20Port:%2= 0sha=3D rity-lig ht-1.2 Subject: Sharity-Light is very out-dated Date: Fri, 14 Dec 2001 23:38:59 -0800 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200112142339676.SM01060@there> I was going to installl the port of this app, then I noticed it is waaaay= =3D =3D3D yyy=3D3D20 behind the releases from Objective Development. Will there be any=3D3D20 improvements made in this area any time soon? In the meantime I will have= =3D =3D3D to=3D3D20 install the precompiled binary from OD and hope it works, it's at version= =3D =3D3D =3D3D20 2.6.1. Regards, --=3D3D20 Chip=3D3D20 chip@wiegand.org <+><+><+><+><+><+><+><+> Windows 95/NT - 32 bit extensions and a graphical shell for a 16 bit patc= =3D =3D3D h to an 8 bit operating system originally coded for a 4 bit microprocessor, written by a 2 bit company that can't stand 1 bit of competition. <+><+><+><+><+><+><+><+> ------------------------------------------------------- --=20 <+><+><+><+><+><+><+><+> Windows 95/NT - 32 bit extensions and a graphical shell for a 16 bit patc= h to an 8 bit operating system originally coded for a 4 bit microprocessor, written by a 2 bit company that can't stand 1 bit of competition. <+><+><+><+><+><+><+><+> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 13:38:14 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ducky.net (ducky.net [199.26.172.91]) by hub.freebsd.org (Postfix) with ESMTP id 1AA2837B405 for ; Sat, 15 Dec 2001 13:38:09 -0800 (PST) Received: from ducky.net (localhost [127.0.0.1]) by ducky.net (8.11.6/8.11.4) with ESMTP id fBFLc5r75928; Sat, 15 Dec 2001 13:38:06 -0800 (PST) (envelope-from mike@ducky.net) Message-Id: <200112152138.fBFLc5r75928@ducky.net> To: freebsd-ports@freebsd.org, kaveman@magna.com.au Subject: improvement for FreeBSD Spice port Date: Sat, 15 Dec 2001 13:38:05 -0800 From: Mike Haertel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Here are patches for ports/cad/spice to incorporate the latest BSIM3 MOS transistor model from Berkeley. With this addition, I have successfully used Berkeley Spice to simulate circuits in a .13 micron process, obtaining nearly identical results with hspice (a hideously expensive commercial version of spice). Index: Makefile =================================================================== RCS file: /home/ncvs/ports/cad/spice/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- Makefile 14 Feb 2001 05:41:52 -0000 1.18 +++ Makefile 15 Dec 2001 21:27:35 -0000 @@ -6,11 +6,16 @@ # PORTNAME= spice -PORTVERSION= 3f5.1 +PORTVERSION= 3f5.2 CATEGORIES= cad -MASTER_SITES= ftp://ic.eecs.berkeley.edu/pub/Spice3/ +MASTER_SITES= ftp://ic.eecs.berkeley.edu/pub/Spice3/ \ + http://www-device.eecs.berkeley.edu/~bsim3/ftpv323/src/ +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${BSIM_SRC} DISTNAME= sp3f4.kit EXTRACT_SUFX= .tar.Z +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} + +BSIM_SRC= BSIM3v323.tar.Z MAINTAINER= kaveman@magna.com.au @@ -26,6 +31,11 @@ MAN3= mfb.3 MAN5= mfbcap.5 MLINKS= spice.1 spice3.1 + +post-extract: + ${ECHO_MSG} ">>> in post-extract ..." + ${MKDIR} ${WRKDIR}/src/lib/dev/bsim3 + ${TAR} -C ${WRKDIR}/src/lib/dev/bsim3 -xzf ${DISTDIR}/${BSIM_SRC} post-install: .if !defined(NOPORTDOCS) Index: distinfo =================================================================== RCS file: /home/ncvs/ports/cad/spice/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 23 Dec 1996 07:26:18 -0000 1.2 +++ distinfo 30 Nov 2001 06:14:52 -0000 @@ -1 +1,2 @@ MD5 (sp3f4.kit.tar.Z) = d55eb08a7f523248b1b509092a444aeb +MD5 (BSIM3v323.tar.Z) = 5c6cfd0f9cff1bb7f75ca236ea9b4b41 Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/cad/spice/pkg-descr,v retrieving revision 1.5 diff -u -r1.5 pkg-descr --- pkg-descr 2 May 1999 21:40:08 -0000 1.5 +++ pkg-descr 30 Nov 2001 06:54:06 -0000 @@ -15,3 +15,13 @@ Julian Jenkins kaveman@magna.com.au + +This port now incorporates Berkeley's latest BSIM3 v3.2 MOS transistor +model for deep submicron designs. Many foundries provide process parameter +files compatible with this model. To access the BSIM3 model, use LEVEL=7 +and VERSION=3.2.3 in your .MODEL directives. + +http://www-device.eecs.berkeley.edu/~bsim3/ + +Mike Haertel +mike@ducky.net Index: files/patch-bc =================================================================== RCS file: files/patch-bc diff -N files/patch-bc --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-bc 30 Nov 2001 06:25:20 -0000 @@ -0,0 +1,19 @@ +--- conf/defaults.orig Thu Nov 29 22:24:06 2001 ++++ conf/defaults Thu Nov 29 22:25:05 2001 +@@ -237,6 +237,7 @@ + # bjt: bipolar junction transistor + # bsim1: MOS model + # bsim2: MOS model ++# bsim3: deep submicron MOS model + # cap: capacitor + # cccs: current-controlled current source + # ccvs: current-controlled voltage source +@@ -259,7 +260,7 @@ + # vcvs: voltage-controlled voltage source + # vsrc: voltage source + +-DEVICES = asrc bjt bsim1 bsim2 cap cccs ccvs csw dio ind isrc \ ++DEVICES = asrc bjt bsim1 bsim2 bsim3 cap cccs ccvs csw dio ind isrc \ + jfet ltra mes mos1 mos2 mos3 mos6 res sw tra urc \ + vccs vcvs vsrc + To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 13:50:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F6E937B416 for ; Sat, 15 Dec 2001 13:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFLo1P46916; Sat, 15 Dec 2001 13:50:01 -0800 (PST) (envelope-from gnats) Received: from phobos.raisdorf.net (phobos.raisdorf.net [195.244.235.251]) by hub.freebsd.org (Postfix) with ESMTP id 4580137B417 for ; Sat, 15 Dec 2001 13:41:05 -0800 (PST) Received: (from olivleh1@localhost) by phobos.raisdorf.net (8.11.6/8.11.6) id fBFLUo526818; Sat, 15 Dec 2001 22:30:51 +0100 (CET) Message-Id: <200112152130.fBFLUo526818@phobos.raisdorf.net> Date: Sat, 15 Dec 2001 22:30:51 +0100 (CET) From: Oliver Lehmann Reply-To: Oliver Lehmann To: FreeBSD-gnats-submit@freebsd.org Cc: Oliver Lehmann X-Send-Pr-Version: 3.113 Subject: ports/32881: update-port: mail/sylpheed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32881 >Category: ports >Synopsis: update-port: mail/sylpheed >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 13:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Oliver Lehmann >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD sina.sesamestreet.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 15 16:46:48 CET 2001 olivleh1@sina.sesamestreet.net:/usr/obj/i386/usr/src/sys/SINA i386 >Description: update mail/sylpheed to 0.6.6 >How-To-Repeat: >Fix: diff -ruN sylpheed.old/Makefile sylpheed/Makefile --- sylpheed.old/Makefile Wed Nov 28 04:19:00 2001 +++ sylpheed/Makefile Sat Dec 15 20:50:41 2001 @@ -6,8 +6,7 @@ # PORTNAME= sylpheed -PORTVERSION= 0.6.5 -PORTREVISION= 1 +PORTVERSION= 0.6.6 CATEGORIES= mail ipv6 MASTER_SITES= http://sylpheed.good-day.net/sylpheed/ diff -ruN sylpheed.old/distinfo sylpheed/distinfo --- sylpheed.old/distinfo Sat Nov 24 19:38:46 2001 +++ sylpheed/distinfo Sat Dec 15 20:59:15 2001 @@ -1 +1 @@ -MD5 (sylpheed-0.6.5.tar.bz2) = 60016b1319df112172fa5623308afe2c +MD5 (sylpheed-0.6.6.tar.bz2) = 1c7dc0f3074a9bb05da915892c7a6409 diff -ruN sylpheed.old/pkg-plist sylpheed/pkg-plist --- sylpheed.old/pkg-plist Thu Oct 11 12:54:29 2001 +++ sylpheed/pkg-plist Sat Dec 15 21:24:45 2001 @@ -1,4 +1,5 @@ bin/sylpheed +lib/charset.alias %%PORTDOCS%%share/doc/sylpheed/ChangeLog %%PORTDOCS%%share/doc/sylpheed/ChangeLog.jp %%PORTDOCS%%share/doc/sylpheed/INSTALL @@ -11,11 +12,14 @@ share/locale/de/LC_MESSAGES/sylpheed.mo share/locale/el/LC_MESSAGES/sylpheed.mo share/locale/es/LC_MESSAGES/sylpheed.mo +share/locale/et/LC_MESSAGES/sylpheed.mo share/locale/fr/LC_MESSAGES/sylpheed.mo share/locale/hr/LC_MESSAGES/sylpheed.mo +share/locale/hu/LC_MESSAGES/sylpheed.mo share/locale/it/LC_MESSAGES/sylpheed.mo share/locale/ja/LC_MESSAGES/sylpheed.mo share/locale/ko/LC_MESSAGES/sylpheed.mo +share/locale/locale.alias share/locale/nl/LC_MESSAGES/sylpheed.mo share/locale/pl/LC_MESSAGES/sylpheed.mo share/locale/pt_BR/LC_MESSAGES/sylpheed.mo >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 14: 0:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C8BA37B417 for ; Sat, 15 Dec 2001 14:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFM01A47693; Sat, 15 Dec 2001 14:00:01 -0800 (PST) (envelope-from gnats) Received: from kaj.dyndns.org (c213-89-185-52.cm-upc.chello.se [213.89.185.52]) by hub.freebsd.org (Postfix) with ESMTP id BE34137B419 for ; Sat, 15 Dec 2001 13:51:52 -0800 (PST) Received: (from kaj@localhost) by kaj.dyndns.org (8.11.6/8.11.6) id fBFLpn420421; Sat, 15 Dec 2001 22:51:49 +0100 (CET) (envelope-from kaj) Message-Id: <200112152151.fBFLpn420421@kaj.dyndns.org> Date: Sat, 15 Dec 2001 22:51:49 +0100 (CET) From: Rasmus Kaj Reply-To: Rasmus Kaj To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32882: www/webredirect MASTER_SITES update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32882 >Category: ports >Synopsis: www/webredirect MASTER_SITES update >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 14:00:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Rasmus Kaj >Release: FreeBSD 4.4-STABLE i386 >Organization: N/A >Environment: System: FreeBSD kaj.dyndns.org 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Nov 18 23:31:39 CET 2001 root@kaj.dyndns.org:/usr/obj/usr/src/sys/RASMUS i386 >Description: The old MASTER_SITES for webredirect is no longer available. Here's a new one. >How-To-Repeat: cd /usr/ports/www/webredirect && make fetch >Fix: diff -ruN webredirect/Makefile webredirect.fix/Makefile --- webredirect/Makefile Mon Mar 19 02:01:35 2001 +++ webredirect.fix/Makefile Sat Dec 15 19:33:50 2001 @@ -8,7 +8,7 @@ PORTNAME= webredirect PORTVERSION= 0.2 CATEGORIES= www -MASTER_SITES= ftp://Raditex.se/pub/kaj/ +MASTER_SITES= ftp://ftp.stacken.kth.se/pub/projects/webredirect MAINTAINER= rasmus@kaj.se >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 14:40:26 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEE4237B416 for ; Sat, 15 Dec 2001 14:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFMe1055196; Sat, 15 Dec 2001 14:40:01 -0800 (PST) (envelope-from gnats) Received: from postfix1-2.free.fr (postfix1-2.free.fr [213.228.0.130]) by hub.freebsd.org (Postfix) with ESMTP id A05A237B419 for ; Sat, 15 Dec 2001 14:39:49 -0800 (PST) Received: from graf.pompo.net (lyon-1-a7-16-179.dial.proxad.net [62.147.16.179]) by postfix1-2.free.fr (Postfix) with ESMTP id 4608BAB510 for ; Sat, 15 Dec 2001 23:39:45 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id 09E4C751D; Sat, 15 Dec 2001 23:37:54 +0100 (CET) Message-Id: <20011215223754.09E4C751D@graf.pompo.net> Date: Sat, 15 Dec 2001 23:37:54 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32883: New port: deskutils/nag - Horde's task list manager. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32883 >Category: ports >Synopsis: New port: deskutils/nag - Horde's task list manager. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 14:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.4-STABLE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Nov 25 07:49:02 CET 2001 root@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF010429 i386 >Description: Nag is the Horde task list manager. >How-To-Repeat: N/A >Fix: Execute the following shar file: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/deskutils/nag # /usr/ports/deskutils/nag/files # /usr/ports/deskutils/nag/files/patch-aa # /usr/ports/deskutils/nag/files/httpd.conf.nag # /usr/ports/deskutils/nag/files/patch-ab # /usr/ports/deskutils/nag/pkg-plist # /usr/ports/deskutils/nag/pkg-message # /usr/ports/deskutils/nag/pkg-descr # /usr/ports/deskutils/nag/pkg-comment # /usr/ports/deskutils/nag/distinfo # /usr/ports/deskutils/nag/Makefile # echo c - /usr/ports/deskutils/nag mkdir -p /usr/ports/deskutils/nag > /dev/null 2>&1 echo c - /usr/ports/deskutils/nag/files mkdir -p /usr/ports/deskutils/nag/files > /dev/null 2>&1 echo x - /usr/ports/deskutils/nag/files/patch-aa sed 's/^X//' >/usr/ports/deskutils/nag/files/patch-aa << 'END-of-/usr/ports/deskutils/nag/files/patch-aa' X--- scripts/drivers/nag_tasks.sql.orig Tue Dec 11 14:47:41 2001 X+++ scripts/drivers/nag_tasks.sql Sat Dec 15 00:42:13 2001 X@@ -13,4 +13,4 @@ X primary key (task_owner, task_id) X ); X X-grant select, insert, update, delete on nag_tasks to horde; X+grant select, insert, update, delete on nag_tasks to hordemgr; END-of-/usr/ports/deskutils/nag/files/patch-aa echo x - /usr/ports/deskutils/nag/files/httpd.conf.nag sed 's/^X//' >/usr/ports/deskutils/nag/files/httpd.conf.nag << 'END-of-/usr/ports/deskutils/nag/files/httpd.conf.nag' X# This is included in Apache's httpd.conf for Nag X# X# For security, don't serve pages from the Nag configuration and X# library directories. X# X X order deny,allow X deny from all X X X order deny,allow X deny from all X X X order deny,allow X deny from all X X X order deny,allow X deny from all X X X order deny,allow X deny from all X X X order deny,allow X deny from all X X# End of Nag configuration ================ X END-of-/usr/ports/deskutils/nag/files/httpd.conf.nag echo x - /usr/ports/deskutils/nag/files/patch-ab sed 's/^X//' >/usr/ports/deskutils/nag/files/patch-ab << 'END-of-/usr/ports/deskutils/nag/files/patch-ab' X--- config/conf.php.dist.orig Thu Nov 15 19:48:58 2001 X+++ config/conf.php.dist Sat Dec 15 00:53:04 2001 X@@ -40,6 +40,14 @@ X // Any parameters that the storage driver needs. This includes X // database or ldap server, username/password to connect with, etc. X $conf['storage']['params'] = array(); X+// Replace mysql by pgsql for PostgreSQL X+$conf['storage']['params']['phptype'] = 'mysql'; X+$conf['storage']['params']['hostspec'] = 'localhost'; X+$conf['storage']['params']['username'] = 'hordemgr'; X+$conf['storage']['params']['password'] = 'hordemgr'; X+$conf['storage']['params']['database'] = 'horde'; X+$conf['storage']['params']['table'] = 'nag_tasks'; X+// $conf['storage']['params']['protocol'] = 'unix'; X X X /** END-of-/usr/ports/deskutils/nag/files/patch-ab echo x - /usr/ports/deskutils/nag/pkg-plist sed 's/^X//' >/usr/ports/deskutils/nag/pkg-plist << 'END-of-/usr/ports/deskutils/nag/pkg-plist' X%%PORTDOCS%%share/doc/nag/CHANGES X%%PORTDOCS%%share/doc/nag/COPYING X%%PORTDOCS%%share/doc/nag/CREDITS X%%PORTDOCS%%share/doc/nag/INSTALL X%%PORTDOCS%%share/doc/nag/README X%%PORTDOCS%%share/doc/nag/ROADMAP X%%PORTDOCS%%share/doc/nag/TODO X%%NAGDIR%%/config/conf.php X%%NAGDIR%%/config/conf.php.dist X%%NAGDIR%%/config/conf.php.dist.orig X%%NAGDIR%%/config/html.php X%%NAGDIR%%/config/html.php.dist X%%NAGDIR%%/config/menu.php X%%NAGDIR%%/config/menu.php.dist X%%NAGDIR%%/config/motd.php X%%NAGDIR%%/config/motd.php.dist X%%NAGDIR%%/config/prefs.php X%%NAGDIR%%/config/prefs.php.dist X%%NAGDIR%%/graphics/add.gif X%%NAGDIR%%/graphics/checkbox.gif X%%NAGDIR%%/graphics/down.gif X%%NAGDIR%%/graphics/high.gif X%%NAGDIR%%/graphics/list.gif X%%NAGDIR%%/graphics/low.gif X%%NAGDIR%%/graphics/nag.gif X%%NAGDIR%%/graphics/note.gif X%%NAGDIR%%/graphics/refresh.gif X%%NAGDIR%%/graphics/search.gif X%%NAGDIR%%/graphics/up.gif X%%NAGDIR%%/index.php X%%NAGDIR%%/lib/Driver.php X%%NAGDIR%%/lib/Driver/sql.php X%%NAGDIR%%/lib/Nag.php X%%NAGDIR%%/lib/api.php X%%NAGDIR%%/lib/base.php X%%NAGDIR%%/lib/constants.php X%%NAGDIR%%/lib/version.php X%%NAGDIR%%/list.php X%%NAGDIR%%/locale/cs_CZ/LC_MESSAGES/nag.mo X%%NAGDIR%%/locale/de_DE/LC_MESSAGES/nag.mo X%%NAGDIR%%/locale/en_US/help.xml X%%NAGDIR%%/locale/es_ES/LC_MESSAGES/nag.mo X%%NAGDIR%%/locale/fr_FR/LC_MESSAGES/nag.mo X%%NAGDIR%%/locale/it_IT/LC_MESSAGES/nag.mo X%%NAGDIR%%/locale/nl_NL/LC_MESSAGES/nag.mo X%%NAGDIR%%/locale/ru_koi/LC_MESSAGES/nag.mo X%%NAGDIR%%/locale/ru_win/LC_MESSAGES/nag.mo X%%NAGDIR%%/menu.php X%%NAGDIR%%/po/Makefile X%%NAGDIR%%/po/README X%%NAGDIR%%/po/cs_CZ.po X%%NAGDIR%%/po/de_DE.po X%%NAGDIR%%/po/es_ES.po X%%NAGDIR%%/po/extract.pl X%%NAGDIR%%/po/fr_FR.po X%%NAGDIR%%/po/it_IT.po X%%NAGDIR%%/po/nl_NL.po X%%NAGDIR%%/po/ru_koi.po X%%NAGDIR%%/po/ru_win.po X%%NAGDIR%%/po/shtool X%%NAGDIR%%/po/xgettext.sh X%%NAGDIR%%/prefs.php X%%NAGDIR%%/scripts/drivers/nag_tasks.sql X%%NAGDIR%%/scripts/drivers/nag_tasks.sql.orig X%%NAGDIR%%/search.php X%%NAGDIR%%/status.php X%%NAGDIR%%/task.php X%%NAGDIR%%/templates/common-footer.inc X%%NAGDIR%%/templates/common-header.inc X%%NAGDIR%%/templates/index/css.inc X%%NAGDIR%%/templates/index/notconfigured.inc X%%NAGDIR%%/templates/list/actions.inc X%%NAGDIR%%/templates/list/empty.inc X%%NAGDIR%%/templates/list/footer.inc X%%NAGDIR%%/templates/list/header.inc X%%NAGDIR%%/templates/list/javascript.inc X%%NAGDIR%%/templates/list/task_footers.inc X%%NAGDIR%%/templates/list/task_headers.inc X%%NAGDIR%%/templates/list/task_summaries.inc X%%NAGDIR%%/templates/menu/menu.inc X%%NAGDIR%%/templates/search/begin.inc X%%NAGDIR%%/templates/search/end.inc X%%NAGDIR%%/templates/search/search.inc X%%NAGDIR%%/templates/task/begin.inc X%%NAGDIR%%/templates/task/end.inc X%%NAGDIR%%/templates/task/task.inc X%%NAGDIR%%/templates/view/description.inc X%%NAGDIR%%/templates/view/headers.inc X%%NAGDIR%%/templates/view/navbar.inc X%%NAGDIR%%/templates/view/no-task.inc X%%NAGDIR%%/view.php X@dirrm %%NAGDIR%%/config X@dirrm %%NAGDIR%%/graphics X@dirrm %%NAGDIR%%/lib/Driver X@dirrm %%NAGDIR%%/lib X@dirrm %%NAGDIR%%/locale/cs_CZ/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/cs_CZ X@dirrm %%NAGDIR%%/locale/de/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/de X@dirrm %%NAGDIR%%/locale/de_DE/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/de_DE X@dirrm %%NAGDIR%%/locale/en_EN X@dirrm %%NAGDIR%%/locale/en X@dirrm %%NAGDIR%%/locale/en_US X@dirrm %%NAGDIR%%/locale/es_ES/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/es_ES X@dirrm %%NAGDIR%%/locale/fr_FR/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/fr_FR X@dirrm %%NAGDIR%%/locale/it_IT/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/it_IT X@dirrm %%NAGDIR%%/locale/nl/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/nl X@dirrm %%NAGDIR%%/locale/nl_NL/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/nl_NL X@dirrm %%NAGDIR%%/locale/ru_koi/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/ru_koi X@dirrm %%NAGDIR%%/locale/ru_win/LC_MESSAGES X@dirrm %%NAGDIR%%/locale/ru_win X@dirrm %%NAGDIR%%/locale X@dirrm %%NAGDIR%%/po X@dirrm %%NAGDIR%%/scripts/drivers X@dirrm %%NAGDIR%%/scripts X@dirrm %%NAGDIR%%/templates/errors X@dirrm %%NAGDIR%%/templates/index X@dirrm %%NAGDIR%%/templates/list X@dirrm %%NAGDIR%%/templates/menu X@dirrm %%NAGDIR%%/templates/prefs X@dirrm %%NAGDIR%%/templates/search X@dirrm %%NAGDIR%%/templates/task X@dirrm %%NAGDIR%%/templates/view X@dirrm %%NAGDIR%%/templates X@dirrm %%NAGDIR%% Xetc/horde/httpd.conf.nag X%%PORTDOCS%%@dirrm share/doc/nag END-of-/usr/ports/deskutils/nag/pkg-plist echo x - /usr/ports/deskutils/nag/pkg-message sed 's/^X//' >/usr/ports/deskutils/nag/pkg-message << 'END-of-/usr/ports/deskutils/nag/pkg-message' X************************************************************************ XNag has been installed in %%NAGDIR%% with your blank Xconfiguration files. X XHorde and Kronolith must be configured; if not, see: X- %%PORTSDIR%%/www/horde-devel/pkg-message X- %%PORTSDIR%%/deskutils/kronolith/pkg-message X XThen, you have to create the table nag_tasks, from the SQL script X%%NAGDIR%%/scripts/drivers/nag_tasks.sql. XFor example, if your database is MySQL, you may run Xmysql --user=hordemgr --password=yourpass horde < nag_tasks.sql X(If you run another database server, see X %%HORDEDIR%%/scripts/db/README X for more explanations.) X XFinally, you may have to tune the configuration files located in X%%CONFDIR%%/, specially the files conf.php. X XTo protect your configuration files, you have to restart Apache. X************************************************************************ END-of-/usr/ports/deskutils/nag/pkg-message echo x - /usr/ports/deskutils/nag/pkg-descr sed 's/^X//' >/usr/ports/deskutils/nag/pkg-descr << 'END-of-/usr/ports/deskutils/nag/pkg-descr' XNag is the Horde task list manager. X XWWW: http://horde.org/nag/ END-of-/usr/ports/deskutils/nag/pkg-descr echo x - /usr/ports/deskutils/nag/pkg-comment sed 's/^X//' >/usr/ports/deskutils/nag/pkg-comment << 'END-of-/usr/ports/deskutils/nag/pkg-comment' XNag is a simple, multiuser task list manager END-of-/usr/ports/deskutils/nag/pkg-comment echo x - /usr/ports/deskutils/nag/distinfo sed 's/^X//' >/usr/ports/deskutils/nag/distinfo << 'END-of-/usr/ports/deskutils/nag/distinfo' XMD5 (nag-0.0.2.011214.tar.gz) = 558c2d117bd7a8d42263a48ec1933447 END-of-/usr/ports/deskutils/nag/distinfo echo x - /usr/ports/deskutils/nag/Makefile sed 's/^X//' >/usr/ports/deskutils/nag/Makefile << 'END-of-/usr/ports/deskutils/nag/Makefile' X# Ports collection makefile for: Nag X# Date created: Sun Dec 14, 2001 X# Whom: Thierry Thomas () X# X# $FreeBSD$ X# X XPORTNAME= nag XPORTVERSION= 0.0.2.011214 XCATEGORIES= deskutils www XMASTER_SITES= http://pompo.net/horde/nag/ X XMAINTAINER= thierry@thomas.as X XRUN_DEPENDS= ${LOCALBASE}/www/horde/kronolith/index.php:${PORTSDIR}/deskutils/kronolith X XNO_BUILD= yes X XDOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ X docs/ROADMAP docs/TODO XCONFFILE= conf.php html.php menu.php motd.php prefs.php X XLHORDEDIR?= www/horde XLNAGDIR?= ${LHORDEDIR}/nag X XPLIST_SUB= HORDEDIR=${LHORDEDIR} NAGDIR=${LNAGDIR} X XHORDEDIR= ${PREFIX}/${LHORDEDIR} XNAGDIR= ${PREFIX}/${LNAGDIR} XCONFDIR= ${NAGDIR}/config X XHORDE_INC= ${LOCALBASE}/etc/horde X Xdo-install: X @${MKDIR} ${NAGDIR} X @${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${NAGDIR} X @${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/po ${WRKSRC}/scripts ${NAGDIR} X @${CP} -Rp ${WRKSRC}/templates ${NAGDIR} X @${CP} -p ${WRKSRC}/*.php ${NAGDIR} X @${MKDIR} ${NAGDIR}/scripts X.for FILE in ${CONFFILE} X @if [ ! -f ${CONFDIR}/${FILE} ]; then \ X ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ X fi X.endfor X @${CHOWN} -R www:www ${NAGDIR} X @${CHMOD} -R o-rwx ${CONFDIR} X @${CP} -p ${FILESDIR}/httpd.conf.nag ${HORDE_INC} X @${PERL} -pi -e "s:/home/httpd/html/horde/nag:${NAGDIR}:g" \ X ${HORDE_INC}/httpd.conf.nag X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for FILE in ${DOCS} X @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} X.endfor X @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." X.endif X Xpost-install: X @${ECHO_MSG} X @${CAT} ${PKGMESSAGE} | \ X ${SED} -e "s:%%NAGDIR%%:${NAGDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g;s:%%CONFDIR%%:${CONFDIR}:g;s:%%HORDEDIR%%:${HORDEDIR}:" X @${ECHO_MSG} X X.include END-of-/usr/ports/deskutils/nag/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 14:59:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E37D37B416; Sat, 15 Dec 2001 14:59:42 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFMquC56421; Sat, 15 Dec 2001 14:52:56 -0800 (PST) (envelope-from petef) Date: Sat, 15 Dec 2001 14:52:56 -0800 (PST) From: Message-Id: <200112152252.fBFMquC56421@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, dec@FreeBSD.org Subject: Re: ports/32800: gated dies on ppp interface up/down Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: gated dies on ppp interface up/down Responsible-Changed-From-To: freebsd-ports->dec Responsible-Changed-By: petef Responsible-Changed-When: Sat Dec 15 14:52:49 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32800 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 15:40: 8 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D076137B417 for ; Sat, 15 Dec 2001 15:40:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBFNe0j63575; Sat, 15 Dec 2001 15:40:00 -0800 (PST) (envelope-from gnats) Received: from newtrinity.default-network.net (newtrinity.default-network.net [62.159.128.162]) by hub.freebsd.org (Postfix) with ESMTP id 6F98437B419; Sat, 15 Dec 2001 15:38:41 -0800 (PST) Received: (from corex@localhost) by newtrinity.default-network.net (8.11.3/8.11.3/DEFAULT-NETWORK.NET) id fBFNOqN93066; Sun, 16 Dec 2001 00:24:52 +0100 (CET) (envelope-from corex) Message-Id: <200112152324.fBFNOqN93066@newtrinity.default-network.net> Date: Sun, 16 Dec 2001 00:24:52 +0100 (CET) From: marius@alchemy.franken.de Reply-To: marius@alchemy.franken.de To: FreeBSD-gnats-submit@freebsd.org Cc: jdp@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32884: [PATCH] net/cvsup-mirror: cvsupd.sh doesn't respect 'maxclients'-setting Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32884 >Category: ports >Synopsis: [PATCH] net/cvsup-mirror: cvsupd.sh doesn't respect 'maxclients'-setting >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 15:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: marius >Release: FreeBSD 4.4-20011210-STABLE i386 >Organization: >Environment: System: FreeBSD alchemy.franken.de 4.4-20011210-STABLE FreeBSD 4.4-20011210-STABLE #0: Mon Dec 10 22:26:57 CET 2001 root@alchemy.franken.de:/usr/src/sys/compile/alchemy i386 >Description: cvsupd.sh doesn't respect the 'maxclients'-variable from config.sh (created interactively during 'make all') but uses a hardcoded value of 100 (!) >How-To-Repeat: >Fix: --- cvsupd.sh.orig Sun Dec 16 00:00:47 2001 +++ cvsupd.sh Sun Dec 16 00:04:36 2001 @@ -20,7 +20,7 @@ case $arg in start) su -f -m ${user} -c \ - "cvsupd -e -C 100 -l @${facility} -b ${base} -s sup.client" \ + "cvsupd -e -C @${maxclients} -l @${facility} -b ${base} -s sup.client" \ >>${out} 2>&1;; stop) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 16:10:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2472C37B41A for ; Sat, 15 Dec 2001 16:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG0A1368917; Sat, 15 Dec 2001 16:10:01 -0800 (PST) (envelope-from gnats) Received: from gatesrv.RZ.UniBw-Muenchen.de (gatesrv.RZ.UniBW-Muenchen.de [137.193.11.27]) by hub.freebsd.org (Postfix) with ESMTP id ED0D837B416 for ; Sat, 15 Dec 2001 16:00:23 -0800 (PST) Received: from nemesis.informatik.unibw-muenchen.de (nemesis.Informatik.UniBw-Muenchen.de [137.193.60.30]) by gatesrv.RZ.UniBw-Muenchen.de (8.11.2/8.11.2) with ESMTP id fBFNV6u08665 for ; Sun, 16 Dec 2001 00:31:06 +0100 (MET) Received: by nemesis.informatik.unibw-muenchen.de (Postfix, from userid 1001) id 543C55A546; Sun, 16 Dec 2001 00:30:30 +0100 (CET) Message-Id: <20011215233030.543C55A546@nemesis.informatik.unibw-muenchen.de> Date: Sun, 16 Dec 2001 00:30:30 +0100 (CET) From: Oliver Braun Reply-To: Oliver Braun To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32886: Update Port: lang/hugs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32886 >Category: ports >Synopsis: Update Port: lang/hugs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 16:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Oliver Braun >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD nemesis.informatik.unibw-muenchen.de 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Dec 12 14:59:02 CET 2001 root@nemesis.informatik.unibw-muenchen.de:/usr/obj/usr/src/sys/NEMESIS_OB i386 >Description: Update Hugs-Port to December 2001 Release diff -ruN hugs.orig/Makefile hugs/Makefile --- hugs.orig/Makefile Wed Aug 15 11:37:19 2001 +++ hugs/Makefile Sat Dec 15 22:13:06 2001 @@ -6,10 +6,9 @@ # PORTNAME= hugs98 -PORTVERSION= 200102 -PORTREVISION= 1 +PORTVERSION= 200112 CATEGORIES= lang -MASTER_SITES= ftp://www.cse.ogi.edu/pub/pacsoft/hugs/ +MASTER_SITES= http://cvs.haskell.org/Hugs/downloads/ DISTNAME= ${PORTNAME}-${HUGS_DATE} MAINTAINER= obraun@informatik.unibw-muenchen.de @@ -24,7 +23,7 @@ HUGS_DOC= ${WRKDIR}/hugs98-${HUGS_DATE}/docs # Little hack to teach it to use our install MAKE_ENV+= HACK_INSTALL_DIR="${INSTALL_DIR}" -HUGS_DATE= Feb2001 +HUGS_DATE= Dec2001 MAN1= hugs.1 @@ -38,6 +37,9 @@ .if !defined(NOPORTDOCS) ${INSTALL_DIR} -d ${PREFIX}/share/doc/hugs ${INSTALL_DATA} ${HUGS_DOC}/* ${PREFIX}/share/doc/hugs + ${INSTALL_DATA} ${WRKSRC}/../Credits ${PREFIX}/share/doc/hugs + ${INSTALL_DATA} ${WRKSRC}/../License ${PREFIX}/share/doc/hugs + ${INSTALL_DATA} ${WRKSRC}/../Readme ${PREFIX}/share/doc/hugs .endif .include diff -ruN hugs.orig/distinfo hugs/distinfo --- hugs.orig/distinfo Wed Aug 15 11:37:19 2001 +++ hugs/distinfo Sat Dec 15 21:22:39 2001 @@ -1 +1 @@ -MD5 (hugs98-Feb2001.tar.gz) = 8e234bea0222e8ab88aa235eca919239 +MD5 (hugs98-Dec2001.tar.gz) = a7b30a909c5f1b5503733211e29671b2 diff -ruN hugs.orig/files/patch-aa hugs/files/patch-aa --- hugs.orig/files/patch-aa Wed Aug 15 11:37:19 2001 +++ hugs/files/patch-aa Sat Dec 15 22:08:02 2001 @@ -1,6 +1,6 @@ ---- MkInstal.in.ORIG Sun Apr 30 01:09:58 2000 -+++ MkInstal.in Sun Apr 30 01:10:23 2000 -@@ -10,8 +10,8 @@ +--- MkInstal.in.orig Sat Dec 15 22:07:04 2001 ++++ MkInstal.in Sat Dec 15 22:07:34 2001 +@@ -10,15 +10,15 @@ # multiple files at once. ################################################################ @@ -11,3 +11,11 @@ install :: install_bin install_lib # the bare minimum install :: install_libs # lotsa libraries + install :: install_demos # goodies + install :: install_man # manual page + install :: install_include # FFI headers +-install :: install_notes # Readme, etc ++#install :: install_notes # Readme, etc + + install_libs :: install_libhugs # Hugs libraries + install_libs :: install_libexts # ghc compatability diff -ruN hugs.orig/pkg-plist hugs/pkg-plist --- hugs.orig/pkg-plist Wed Aug 15 11:37:19 2001 +++ hugs/pkg-plist Sun Dec 16 00:00:25 2001 @@ -30,44 +30,131 @@ share/hugs/demos/prolog/Subst.hs share/hugs/demos/prolog/readme share/hugs/demos/prolog/stdlib +share/hugs/include/GreenCard.h share/hugs/lib/Array.hs share/hugs/lib/Char.hs share/hugs/lib/Complex.hs +share/hugs/lib/CPUTime.hs +share/hugs/lib/Directory.hs share/hugs/lib/IO.hs share/hugs/lib/Ix.hs share/hugs/lib/List.hs share/hugs/lib/Locale.lhs +share/hugs/lib/Locale.hs share/hugs/lib/Maybe.hs share/hugs/lib/Monad.hs share/hugs/lib/Numeric.hs share/hugs/lib/Prelude.hs -share/hugs/lib/Quote.hs share/hugs/lib/Random.hs share/hugs/lib/Ratio.hs share/hugs/lib/System.hs +share/hugs/lib/Time.hs share/hugs/lib/exts/Addr.hs +share/hugs/lib/exts/Assoc.hs +share/hugs/lib/exts/AssocDefaults.hs +share/hugs/lib/exts/AssocList.hs +share/hugs/lib/exts/BankersQueue.hs +share/hugs/lib/exts/BinaryRandList.hs share/hugs/lib/exts/Bits.hs +share/hugs/lib/exts/BraunSeq.hs +share/hugs/lib/exts/COPYRIGHT.edison +share/hugs/lib/exts/CVar.lhs +share/hugs/lib/exts/Chan.lhs share/hugs/lib/exts/Channel.lhs share/hugs/lib/exts/ChannelVar.lhs +share/hugs/lib/exts/Collection.hs +share/hugs/lib/exts/CollectionDefaults.hs +share/hugs/lib/exts/CollectionUtils.hs share/hugs/lib/exts/ConcBase.hs share/hugs/lib/exts/Concurrent.lhs share/hugs/lib/exts/Dynamic.lhs +share/hugs/lib/exts/EdisonPrelude.hs +share/hugs/lib/exts/Exception.hs +share/hugs/lib/exts/FiniteMap.lhs share/hugs/lib/exts/Foreign.hs share/hugs/lib/exts/GetOpt.lhs +share/hugs/lib/exts/Haskell2Xml.hs +share/hugs/lib/exts/Html.lhs +share/hugs/lib/exts/HtmlBlockTable.lhs share/hugs/lib/exts/IOExts.hs +share/hugs/lib/exts/IORef.lhs share/hugs/lib/exts/Int.hs +share/hugs/lib/exts/IsPrefixOf.hs +share/hugs/lib/exts/IsSuffixOf.hs +share/hugs/lib/exts/JoinList.hs +share/hugs/lib/exts/LazyPairingHeap.hs share/hugs/lib/exts/LazyST.hs +share/hugs/lib/exts/LeftistHeap.hs +share/hugs/lib/exts/ListSeq.hs +share/hugs/lib/exts/MVar.lhs share/hugs/lib/exts/Memo.hs +share/hugs/lib/exts/Merge.lhs +share/hugs/lib/exts/MinHeap.hs +share/hugs/lib/exts/MonadCont.lhs +share/hugs/lib/exts/MonadEither.lhs +share/hugs/lib/exts/MonadError.lhs +share/hugs/lib/exts/MonadFix.lhs +share/hugs/lib/exts/MonadIdentity.lhs +share/hugs/lib/exts/MonadList.lhs +share/hugs/lib/exts/MonadRWS.lhs +share/hugs/lib/exts/MonadReader.lhs share/hugs/lib/exts/MonadRec.hs -share/hugs/lib/exts/NumExts.hs +share/hugs/lib/exts/MonadState.lhs +share/hugs/lib/exts/MonadTrans.lhs +share/hugs/lib/exts/MonadWriter.lhs +share/hugs/lib/exts/Monoid.lhs +share/hugs/lib/exts/MyersStack.hs +share/hugs/lib/exts/NumExts.lhs share/hugs/lib/exts/Observe.lhs +share/hugs/lib/exts/Parallel.lhs +share/hugs/lib/exts/ParseSTLib.hs +share/hugs/lib/exts/Parsec.hs +share/hugs/lib/exts/ParsecChar.hs +share/hugs/lib/exts/ParsecCombinator.hs +share/hugs/lib/exts/ParsecError.hs +share/hugs/lib/exts/ParsecExpr.hs +share/hugs/lib/exts/ParsecLanguage.hs +share/hugs/lib/exts/ParsecPerm.hs +share/hugs/lib/exts/ParsecPos.hs +share/hugs/lib/exts/ParsecPrim.hs +share/hugs/lib/exts/ParsecToken.hs +share/hugs/lib/exts/PatriciaLoMap.hs share/hugs/lib/exts/Pretty.lhs +share/hugs/lib/exts/QSem.lhs +share/hugs/lib/exts/QSemN.lhs +share/hugs/lib/exts/QuickCheck.hs +share/hugs/lib/exts/QuickCheckPoly.hs +share/hugs/lib/exts/QuickCheckUtils.hs +share/hugs/lib/exts/RandList.hs +share/hugs/lib/exts/RevSeq.hs share/hugs/lib/exts/ST.hs share/hugs/lib/exts/SampleVar.lhs share/hugs/lib/exts/Semaphore.lhs +share/hugs/lib/exts/Sequence.hs +share/hugs/lib/exts/SequenceDefaults.hs +share/hugs/lib/exts/Set.lhs +share/hugs/lib/exts/ShowFunctions.lhs +share/hugs/lib/exts/SimpleQueue.hs +share/hugs/lib/exts/SizedSeq.hs +share/hugs/lib/exts/SkewHeap.hs +share/hugs/lib/exts/SplayHeap.hs share/hugs/lib/exts/Stable.hs +share/hugs/lib/exts/TestOrdBag.hs +share/hugs/lib/exts/TestOrdSet.hs +share/hugs/lib/exts/TestSeq.hs +share/hugs/lib/exts/UnbalancedSet.hs share/hugs/lib/exts/Weak.hs share/hugs/lib/exts/Word.hs +share/hugs/lib/exts/Xml2Haskell.hs +share/hugs/lib/exts/XmlCombinators.hs +share/hugs/lib/exts/XmlHtmlGen.hs +share/hugs/lib/exts/XmlHtmlPP.hs +share/hugs/lib/exts/XmlHtmlParse.hs +share/hugs/lib/exts/XmlLex.hs +share/hugs/lib/exts/XmlLib.hs +share/hugs/lib/exts/XmlPP.hs +share/hugs/lib/exts/XmlParse.hs +share/hugs/lib/exts/XmlTypes.hs share/hugs/lib/hugs/AnsiInteract.hs share/hugs/lib/hugs/AnsiScreen.hs share/hugs/lib/hugs/CVHAssert.hs @@ -80,8 +167,8 @@ share/hugs/lib/hugs/ListUtils.hs share/hugs/lib/hugs/Number.hs share/hugs/lib/hugs/OldWeak.hs +share/hugs/lib/hugs/Quote.hs share/hugs/lib/hugs/ParseLib.hs -share/hugs/lib/hugs/Sequence.hs share/hugs/lib/hugs/StdLibs.hs share/hugs/lib/hugs/Trace.hs share/hugs/lib/hugs/Trex.hs @@ -97,9 +184,13 @@ share/doc/hugs/server.tex share/doc/hugs/server.html share/doc/hugs/hugs.1 +share/doc/hugs/Credits +share/doc/hugs/License +share/doc/hugs/Readme @dirrm share/hugs/lib/hugs @dirrm share/hugs/lib/exts @dirrm share/hugs/lib +@dirrm share/hugs/include @dirrm share/hugs/demos/prolog @dirrm share/hugs/demos @dirrm share/hugs >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 16:40: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E3DB37B41A for ; Sat, 15 Dec 2001 16:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG0e2a71444; Sat, 15 Dec 2001 16:40:02 -0800 (PST) (envelope-from gnats) Received: from newtrinity.default-network.net (newtrinity.default-network.net [62.159.128.162]) by hub.freebsd.org (Postfix) with ESMTP id E07D437B416 for ; Sat, 15 Dec 2001 16:35:49 -0800 (PST) Received: (from corex@localhost) by newtrinity.default-network.net (8.11.3/8.11.3/DEFAULT-NETWORK.NET) id fBG0LxR93573; Sun, 16 Dec 2001 01:21:59 +0100 (CET) (envelope-from corex) Message-Id: <200112160021.fBG0LxR93573@newtrinity.default-network.net> Date: Sun, 16 Dec 2001 01:21:59 +0100 (CET) From: marius@alchemy.franken.de Reply-To: marius@alchemy.franken.de To: FreeBSD-gnats-submit@freebsd.org Cc: udo.schweigert@siemens.com X-Send-Pr-Version: 3.113 Subject: ports/32887: mail/mutt broken since recent changes: charmaps no longer get installed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32887 >Category: ports >Synopsis: mail/mutt broken since recent changes: charmaps no longer get installed >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 16:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: marius >Release: FreeBSD 4.4-20011210-STABLE i386 >Organization: >Environment: System: FreeBSD alchemy.franken.de 4.4-20011210-STABLE FreeBSD 4.4-20011210-STABLE #0: Mon Dec 10 22:26:57 CET 2001 root@alchemy.franken.de:/usr/src/sys/compile/alchemy i386 >Description: since the recent change to mail/mutt to use automake it no longer installs the charmaps-files, i didn't check for runtime problems but they are still specified in pkg-plist and therefore 'make package' fails : # make package ===> Building package for mutt-1.2.5 Creating package /usr/ports/packages/All/mutt-1.2.5.tgz Registering depends: gettext-0.10.35. Creating gzip'd tar ball in '/usr/ports/packages/All/mutt-1.2.5.tgz' tar: can't add file share/mutt/charmaps/ANSI_X3.110-1983 : No such file or directory tar: can't add file share/mutt/charmaps/ANSI_X3.4-1968 : No such file or directory <...> as does 'make deinstall' : # make deinstall ===> Deinstalling for mutt-1.2.5 pkg_delete: file `/usr/local/share/mutt/charmaps/ANSI_X3.110-1983' doesn't really exist pkg_delete: file `/usr/local/share/mutt/charmaps/ANSI_X3.4-1968' doesn't really exist please don't assign this to David O'Brien (the mainatainer of this port): On Tue, Dec 11, 2001 at 12:17:38PM -0800, David O'Brien wrote: > I am unable to do much about this as I cannot see the build logs that > should show me the offical package build logs. I am about to go on a > long business trip and will not have time to > fix this before the release -- please see if you can get any Ports > committer to investigate this. >How-To-Repeat: # cd /usr/ports/mail/mutt && make package # make deinstall >Fix: sorry, no idea >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 16:42:26 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.XtremeDev.com (xtremedev.com [216.241.38.65]) by hub.freebsd.org (Postfix) with ESMTP id 4ACB237B416 for ; Sat, 15 Dec 2001 16:42:24 -0800 (PST) Received: from xtremedev.com (xtremedev.com [216.241.38.65]) by mail.XtremeDev.com (Postfix) with ESMTP id 3A43C70607; Sat, 15 Dec 2001 17:42:18 -0700 (MST) Date: Sat, 15 Dec 2001 17:42:18 -0700 (MST) From: FreeBSD user To: ports@freebsd.org Cc: issei@jp.FreeBSD.org Subject: SSH2 FreeBSD port Message-ID: <20011215174031.Y81004-100000@Amber.XtremeDev.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Is this port no longer supported? I know OpenSSH is part of FreeBSD now, I'm merely curious if this port is even updated/supported anymore. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 17:40:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D593137B41D for ; Sat, 15 Dec 2001 17:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG1e1i82908; Sat, 15 Dec 2001 17:40:01 -0800 (PST) (envelope-from gnats) Received: from christel.heitec.net (christel.heitec.net [193.101.232.3]) by hub.freebsd.org (Postfix) with ESMTP id E92FB37B416 for ; Sat, 15 Dec 2001 17:34:44 -0800 (PST) Received: from heitec.net (paladin.heitec.net [193.101.232.30]) by christel.heitec.net (Postfix) with ESMTP id 1CA01B8101 for ; Sun, 16 Dec 2001 02:34:44 +0100 (CET) Received: (from root@localhost) by heitec.net (8.11.6/8.11.4) id fBG1YiB39523; Sun, 16 Dec 2001 02:34:44 +0100 (CET) (envelope-from bernd) Message-Id: <200112160134.fBG1YiB39523@ heitec.net> Date: Sun, 16 Dec 2001 02:34:44 +0100 (CET) From: bdluevel@heitec.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32889: Port graphics/gd fails to build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32889 >Category: ports >Synopsis: Port graphics/gd fails to build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 17:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: bdluevel@heitec.net >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD 4.4-STABLE #0: Sun Dec 16 00:38:21 CET 2001 >Description: The patch 'patch-ac' of the port graphics/gd is lacking a space after the end of line 24. Because of this, the "patch" stage of the build fails. >How-To-Repeat: cd /usr/ports/graphics/gd make clean make patch >Fix: I'm afraid a diff will not show the missing space visibly; anyway, it's after the -DHAVE_LIBTTF in the added line. --- files/.vimbk/patch-ac.vimbk Sat Dec 15 15:59:57 2001 +++ files/patch-ac Sun Dec 16 02:20:20 2001 @@ -21,7 +21,7 @@ #If you do have FreeType, libjpeg and/or Xpm fully installed, uncomment a #variation of this and comment out the line above. See also LIBS below. #CFLAGS=-O -DHAVE_LIBXPM -DHAVE_LIBPNG -DHAVE_LIBJPEG \ - # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF + # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF +.if defined(WITH_X11) +CFLAGS+=-DHAVE_XPM >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 17:50:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E091937B41B for ; Sat, 15 Dec 2001 17:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG1o1s83455; Sat, 15 Dec 2001 17:50:01 -0800 (PST) (envelope-from gnats) Received: from oregonnet.com (cyndi.oregonnet.com [207.189.131.60]) by hub.freebsd.org (Postfix) with ESMTP id 182D537B417 for ; Sat, 15 Dec 2001 17:47:26 -0800 (PST) Received: from eekeek.org (root@[64.53.6.49]) by oregonnet.com (8.9.3/8.9.3) with ESMTP id RAA02780 for ; Sat, 15 Dec 2001 17:47:08 -0800 Received: (from root@localhost) by moonlight.crystalflame.net (8.11.6/8.11.6) id fBG1hEg48462; Sat, 15 Dec 2001 20:43:14 -0500 (EST) (envelope-from coral) Message-Id: <200112160143.fBG1hEg48462@moonlight.crystalflame.net> Date: Sat, 15 Dec 2001 20:43:14 -0500 (EST) From: Richard Soderberg Reply-To: freebsd@crystalflame.net To: FreeBSD-gnats-submit@freebsd.org Cc: freebsd@crystalflame.net X-Send-Pr-Version: 3.113 Subject: ports/32890: sysutils/wmbattery port does not work; update enclosed. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32890 >Category: ports >Synopsis: sysutils/wmbattery port does not work; update enclosed. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 17:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: coral >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD moonlight.crystalflame.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Fri Dec 14 22:31:59 EST 2001 root@moonlight.crystalflame.net:/usr/obj/usr/src/sys/FEATHER i386 >Description: The port was looking for 1.19, which disappeared recently and was replaced with 1.20. Enclosed is the update to the port to make it look for 1.20 in the proper location. >How-To-Repeat: Attempt to install the port in cvsup as of the time of this message. >Fix: Install the enclosed update; the package will then install. MASTER_SITES changed because the symbolic link in wmbattery/ hasn't been created at the site at this time. --- sysutils/wmbattery/Makefile~ Mon Dec 3 03:40:33 2001 +++ sysutils/wmbattery/Makefile Sat Dec 15 20:25:28 2001 @@ -6,9 +6,9 @@ # PORTNAME= wmbattery -PORTVERSION= 1.19 +PORTVERSION= 1.20 CATEGORIES= sysutils windowmaker -MASTER_SITES= http://kitenet.net/programs/code/wmbattery/ +MASTER_SITES= http://kitenet.net/programs/code/debian/ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= pat@FreeBSD.org --- sysutils/wmbattery/distinfo~ Sat Dec 15 20:41:32 2001 +++ sysutils/wmbattery/distinfo Sat Dec 15 20:41:27 2001 @@ -1 +1 @@ -MD5 (wmbattery_1.19.tar.gz) = 5d0f3707c5811ddfa4dfad3071c79b4a +MD5 (wmbattery_1.20.tar.gz) = 348becfb919034ea20e19b63594a7ce1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 17:50:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FE0737B416 for ; Sat, 15 Dec 2001 17:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG1o1O83446; Sat, 15 Dec 2001 17:50:01 -0800 (PST) (envelope-from gnats) Date: Sat, 15 Dec 2001 17:50:01 -0800 (PST) Message-Id: <200112160150.fBG1o1O83446@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: John Merryweather Cooper Subject: Re: ports/32889: Port graphics/gd fails to build Reply-To: John Merryweather Cooper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32889; it has been noted by GNATS. From: John Merryweather Cooper To: bdluevel@heitec.net Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/32889: Port graphics/gd fails to build Date: Sat, 15 Dec 2001 17:46:37 -0800 --=_7tCqrGA+HQ0/zt Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit On 2001.12.15 17:34 bdluevel@heitec.net wrote: > > >Number: 32889 > >Category: ports > >Synopsis: Port graphics/gd fails to build > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Sat Dec 15 17:40:01 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: bdluevel@heitec.net > >Release: FreeBSD 4.4-STABLE i386 > >Organization: > >Environment: > System: FreeBSD 4.4-STABLE #0: Sun Dec 16 00:38:21 CET 2001 > > >Description: > The patch 'patch-ac' of the port graphics/gd is lacking a space > after the end of line 24. Because of this, the "patch" stage of > the build fails. > > >How-To-Repeat: > cd /usr/ports/graphics/gd > make clean > make patch > > >Fix: > I'm afraid a diff will not show the missing space visibly; anyway, > it's after the -DHAVE_LIBTTF in the added line. > > --- files/.vimbk/patch-ac.vimbk Sat Dec 15 15:59:57 2001 > +++ files/patch-ac Sun Dec 16 02:20:20 2001 > @@ -21,7 +21,7 @@ > #If you do have FreeType, libjpeg and/or Xpm fully installed, > uncomment a > #variation of this and comment out the line above. See also LIBS > below. > #CFLAGS=-O -DHAVE_LIBXPM -DHAVE_LIBPNG -DHAVE_LIBJPEG \ > - # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF > + # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF > > +.if defined(WITH_X11) > +CFLAGS+=-DHAVE_XPM > >Release-Note: > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > There's also a problem with the symlinking during the install. See attached. Note, I've already sent this patch to lioux (but without a PR). -- jmc || MacroHard -- \ || the perfection of form over | ----------------------------------|| substance, marketing over | Web: http://www.borgsdemons.com || performance, and greed over | || design . . . | =====================================================================/ Public Key: http://www.borgsdemons.com/Personal/pgpkey.asc | =====================================================================\ --=_7tCqrGA+HQ0/zt Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="fix-gd.txt" # This is a patch for gd to update it to gd.new # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # STEP 2: Run the 'patch' program with this file as input. # #### End of Preamble #### #### Patch data follows #### diff -u 'gd/files/patch-ac' 'gd.new/files/patch-ac' Index: ./files/patch-ac --- ./files/patch-ac Sat Dec 15 06:59:57 2001 +++ ./files/patch-ac Sat Dec 15 13:42:45 2001 @@ -1,5 +1,5 @@ ---- Makefile.orig Sat Dec 15 12:52:57 2001 -+++ Makefile Sat Dec 15 12:55:02 2001 +--- Makefile Thu Feb 22 09:03:43 2001 ++++ Makefile.new Sat Dec 15 12:23:02 2001 @@ -3,22 +3,30 @@ #If you do not have gcc, change the setting for COMPILER, but you must #use an ANSI standard C compiler (NOT the old SunOS 4.1.3 cc @@ -21,10 +21,10 @@ #If you do have FreeType, libjpeg and/or Xpm fully installed, uncomment a #variation of this and comment out the line above. See also LIBS below. #CFLAGS=-O -DHAVE_LIBXPM -DHAVE_LIBPNG -DHAVE_LIBJPEG \ - # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF + # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF +.if defined(WITH_X11) -+CFLAGS+=-DHAVE_XPM ++CFLAGS+=-DHAVE_XPM +.endif + +.if defined(JISX0208) @@ -63,7 +63,7 @@ + +.if defined(WITH_X11) +INCLUDEDIRS+=-I${X11BASE}/include/X11 -I${X11BASE}/include -+.endif ++.endif #Typical install locations for freetype, zlib, xpm and libpng libraries. #If yours are somewhere else, other than a standard location @@ -107,8 +107,6 @@ -all: libgd.a $(PROGRAMS) +SOVER=2 -+ -+.SUFFIXES: .c .so .o -install: libgd.a $(BIN_PROGRAMS) - sh ./install-item 644 libgd.a $(INSTALL_LIB)/libgd.a @@ -128,6 +126,8 @@ - sh ./install-item 644 gdfontmb.h $(INSTALL_INCLUDE)/gdfontmb.h - sh ./install-item 644 gdfonts.h $(INSTALL_INCLUDE)/gdfonts.h - sh ./install-item 644 gdfontt.h $(INSTALL_INCLUDE)/gdfontt.h ++.SUFFIXES: .c .so .o ++ +.c.so: + $(CC) -fpic -DPIC $(CFLAGS) -o $@ -c $< + @@ -137,7 +137,7 @@ + -mkdir -p $(INSTALL_LIB) $(INSTALL_INCLUDE) $(INSTALL_BIN) + ${BSD_INSTALL_DATA} libgd.a $(INSTALL_LIB)/libgd.a + ${BSD_INSTALL_DATA} libgd.so.$(SOVER) $(INSTALL_LIB)/libgd.so.$(SOVER) -+ -ln -sf libgd.so.$(SOVER) $(INSTALL_LIB)/libgd.so ++ -ln -sf $(INSTALL_LIB)/libgd.so.$(SOVER) $(INSTALL_LIB)/libgd.so + ${BSD_INSTALL_PROGRAM} pngtogd $(INSTALL_BIN)/pngtogd + ${BSD_INSTALL_PROGRAM} pngtogd2 $(INSTALL_BIN)/pngtogd2 + ${BSD_INSTALL_PROGRAM} gdtopng $(INSTALL_BIN)/gdtopng @@ -157,7 +157,7 @@ gddemo: gddemo.o libgd.a $(CC) gddemo.o -o gddemo $(LIBDIRS) $(LIBS) -@@ -138,18 +167,21 @@ +@@ -138,19 +167,21 @@ gdtestttf: gdtestttf.o libgd.a $(CC) --verbose gdtestttf.o -o gdtestttf $(LIBDIRS) $(LIBS) @@ -170,7 +170,7 @@ +INCS= gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h \ gdfontg.h gdhelpers.h + -+libgd.a: $(INCS) $(OBJS) ++libgd.a: $(INCS) $(OBJS) rm -f libgd.a - $(AR) rc libgd.a gd.o gd_gd.o gd_gd2.o gd_io.o gd_io_dp.o \ - gd_io_file.o gd_ss.o gd_io_ss.o gd_png.o gd_jpeg.o gdxpm.o \ @@ -179,10 +179,10 @@ - gd_wbmp.o gdhelpers.o + $(AR) rc libgd.a $(OBJS) -ranlib libgd.a -+ -+libgd.so.$(SOVER): $(INCS) $(OBJS:.o=.so) + ++libgd.so.$(SOVER): $(INCS) $(OBJS:.o=.so) + $(CC) -shared -Wl,-x,-soname,$@ -o $@ $(OBJS:.o=.so) $(LIBDIRS) $(LIBS) + ln -sf libgd.so.$(SOVER) libgd.so - clean: rm -f *.o *.a ${PROGRAMS} test/gdtest.jpg test/gdtest.wbmp + #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Sat Dec 15 13:48:03 2001 # Generated by : makepatch 2.00 # Recurse directories : Yes # p 'files/patch-ac' 7134 1008452565 0100644 #### End of ApplyPatch data #### #### End of Patch kit [created: Sat Dec 15 13:48:03 2001] #### #### Checksum: 122 4088 39139 #### --=_7tCqrGA+HQ0/zt-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 17:59:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A34C637B405; Sat, 15 Dec 2001 17:59:42 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG1w8o84097; Sat, 15 Dec 2001 17:58:08 -0800 (PST) (envelope-from petef) Date: Sat, 15 Dec 2001 17:58:08 -0800 (PST) From: Message-Id: <200112160158.fBG1w8o84097@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, pat@FreeBSD.org Subject: Re: ports/32890: sysutils/wmbattery port does not work; update enclosed. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sysutils/wmbattery port does not work; update enclosed. Responsible-Changed-From-To: freebsd-ports->pat Responsible-Changed-By: petef Responsible-Changed-When: Sat Dec 15 17:58:02 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32890 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 17:59:47 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1029D37B417; Sat, 15 Dec 2001 17:59:43 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG1uk383918; Sat, 15 Dec 2001 17:56:46 -0800 (PST) (envelope-from petef) Date: Sat, 15 Dec 2001 17:56:46 -0800 (PST) From: Message-Id: <200112160156.fBG1uk383918@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, jdp@FreeBSD.org Subject: Re: ports/32884: [PATCH] net/cvsup-mirror: cvsupd.sh doesn't respect 'maxclients'-setting Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] net/cvsup-mirror: cvsupd.sh doesn't respect 'maxclients'-setting Responsible-Changed-From-To: freebsd-ports->jdp Responsible-Changed-By: petef Responsible-Changed-When: Sat Dec 15 17:56:34 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32884 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 17:59:49 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8BA537B41A; Sat, 15 Dec 2001 17:59:43 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG1vNv84011; Sat, 15 Dec 2001 17:57:23 -0800 (PST) (envelope-from petef) Date: Sat, 15 Dec 2001 17:57:23 -0800 (PST) From: Message-Id: <200112160157.fBG1vNv84011@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/32887: mail/mutt broken since recent changes: charmaps no longer get installed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mail/mutt broken since recent changes: charmaps no longer get installed Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: petef Responsible-Changed-When: Sat Dec 15 17:57:12 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32887 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 18:10: 7 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 68E7D37B419 for ; Sat, 15 Dec 2001 18:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG2A2O87993; Sat, 15 Dec 2001 18:10:02 -0800 (PST) (envelope-from gnats) Date: Sat, 15 Dec 2001 18:10:02 -0800 (PST) Message-Id: <200112160210.fBG2A2O87993@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jochem Kossen Subject: Re: ports/32655: New Port: fluxbox x11 window manager Reply-To: Jochem Kossen Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32655; it has been noted by GNATS. From: Jochem Kossen To: Matthew Hawkins Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/32655: New Port: fluxbox x11 window manager Date: Mon, 10 Dec 2001 01:29:22 +0100 On Mon, Dec 10, 2001 at 10:05:42AM +1100, Matthew Hawkins wrote: > > >Number: 32655 > >Category: ports > >Synopsis: New Port: fluxbox x11 window manager > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: change-request > >Submitter-Id: current-users > >Arrival-Date: Sun Dec 09 15:10:01 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: Matthew Hawkins > >Release: FreeBSD 4.4-STABLE i386 > >Organization: > tSA Group Pty Ltd > >Environment: > System: FreeBSD sideshowbob.tsa 4.4-STABLE FreeBSD 4.4-STABLE #2: Mon Dec 3 10:32:13 EST 2001 root@sideshowbob.tsa:/usr/obj/usr/src/sys/SSB i386 > > > > >Description: > Fluxbox is a new x11 window manager under active development, based > on blackbox but with extra functionality including pwm-like tabs, > customisable titlebar button placement and more. > >How-To-Repeat: > cvsup ports, notice fluxbox is not there ;-) > >Fix: > > > >Release-Note: > >Audit-Trail: > >Unformatted: I think this can be closed, ports/32390 is a request for the same windowmanager, but that one has a port in it... Greetz, Jochem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 21:20:18 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B2F5337B416 for ; Sat, 15 Dec 2001 21:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG5K1W10687; Sat, 15 Dec 2001 21:20:01 -0800 (PST) (envelope-from gnats) Date: Sat, 15 Dec 2001 21:20:01 -0800 (PST) Message-Id: <200112160520.fBG5K1W10687@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: John Merryweather Cooper Subject: Re: ports/32889: Port graphics/gd fails to build Reply-To: John Merryweather Cooper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/32889; it has been noted by GNATS. From: John Merryweather Cooper To: bdluevel@heitec.net Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/32889: Port graphics/gd fails to build Date: Sat, 15 Dec 2001 17:46:37 -0800 --=_7tCqrGA+HQ0/zt Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit On 2001.12.15 17:34 bdluevel@heitec.net wrote: > > >Number: 32889 > >Category: ports > >Synopsis: Port graphics/gd fails to build > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Sat Dec 15 17:40:01 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: bdluevel@heitec.net > >Release: FreeBSD 4.4-STABLE i386 > >Organization: > >Environment: > System: FreeBSD 4.4-STABLE #0: Sun Dec 16 00:38:21 CET 2001 > > >Description: > The patch 'patch-ac' of the port graphics/gd is lacking a space > after the end of line 24. Because of this, the "patch" stage of > the build fails. > > >How-To-Repeat: > cd /usr/ports/graphics/gd > make clean > make patch > > >Fix: > I'm afraid a diff will not show the missing space visibly; anyway, > it's after the -DHAVE_LIBTTF in the added line. > > --- files/.vimbk/patch-ac.vimbk Sat Dec 15 15:59:57 2001 > +++ files/patch-ac Sun Dec 16 02:20:20 2001 > @@ -21,7 +21,7 @@ > #If you do have FreeType, libjpeg and/or Xpm fully installed, > uncomment a > #variation of this and comment out the line above. See also LIBS > below. > #CFLAGS=-O -DHAVE_LIBXPM -DHAVE_LIBPNG -DHAVE_LIBJPEG \ > - # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF > + # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF > > +.if defined(WITH_X11) > +CFLAGS+=-DHAVE_XPM > >Release-Note: > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > There's also a problem with the symlinking during the install. See attached. Note, I've already sent this patch to lioux (but without a PR). -- jmc || MacroHard -- \ || the perfection of form over | ----------------------------------|| substance, marketing over | Web: http://www.borgsdemons.com || performance, and greed over | || design . . . | =====================================================================/ Public Key: http://www.borgsdemons.com/Personal/pgpkey.asc | =====================================================================\ --=_7tCqrGA+HQ0/zt Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="fix-gd.txt" # This is a patch for gd to update it to gd.new # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # STEP 2: Run the 'patch' program with this file as input. # #### End of Preamble #### #### Patch data follows #### diff -u 'gd/files/patch-ac' 'gd.new/files/patch-ac' Index: ./files/patch-ac --- ./files/patch-ac Sat Dec 15 06:59:57 2001 +++ ./files/patch-ac Sat Dec 15 13:42:45 2001 @@ -1,5 +1,5 @@ ---- Makefile.orig Sat Dec 15 12:52:57 2001 -+++ Makefile Sat Dec 15 12:55:02 2001 +--- Makefile Thu Feb 22 09:03:43 2001 ++++ Makefile.new Sat Dec 15 12:23:02 2001 @@ -3,22 +3,30 @@ #If you do not have gcc, change the setting for COMPILER, but you must #use an ANSI standard C compiler (NOT the old SunOS 4.1.3 cc @@ -21,10 +21,10 @@ #If you do have FreeType, libjpeg and/or Xpm fully installed, uncomment a #variation of this and comment out the line above. See also LIBS below. #CFLAGS=-O -DHAVE_LIBXPM -DHAVE_LIBPNG -DHAVE_LIBJPEG \ - # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF + # -DHAVE_LIBFREETYPE -DHAVE_LIBTTF +.if defined(WITH_X11) -+CFLAGS+=-DHAVE_XPM ++CFLAGS+=-DHAVE_XPM +.endif + +.if defined(JISX0208) @@ -63,7 +63,7 @@ + +.if defined(WITH_X11) +INCLUDEDIRS+=-I${X11BASE}/include/X11 -I${X11BASE}/include -+.endif ++.endif #Typical install locations for freetype, zlib, xpm and libpng libraries. #If yours are somewhere else, other than a standard location @@ -107,8 +107,6 @@ -all: libgd.a $(PROGRAMS) +SOVER=2 -+ -+.SUFFIXES: .c .so .o -install: libgd.a $(BIN_PROGRAMS) - sh ./install-item 644 libgd.a $(INSTALL_LIB)/libgd.a @@ -128,6 +126,8 @@ - sh ./install-item 644 gdfontmb.h $(INSTALL_INCLUDE)/gdfontmb.h - sh ./install-item 644 gdfonts.h $(INSTALL_INCLUDE)/gdfonts.h - sh ./install-item 644 gdfontt.h $(INSTALL_INCLUDE)/gdfontt.h ++.SUFFIXES: .c .so .o ++ +.c.so: + $(CC) -fpic -DPIC $(CFLAGS) -o $@ -c $< + @@ -137,7 +137,7 @@ + -mkdir -p $(INSTALL_LIB) $(INSTALL_INCLUDE) $(INSTALL_BIN) + ${BSD_INSTALL_DATA} libgd.a $(INSTALL_LIB)/libgd.a + ${BSD_INSTALL_DATA} libgd.so.$(SOVER) $(INSTALL_LIB)/libgd.so.$(SOVER) -+ -ln -sf libgd.so.$(SOVER) $(INSTALL_LIB)/libgd.so ++ -ln -sf $(INSTALL_LIB)/libgd.so.$(SOVER) $(INSTALL_LIB)/libgd.so + ${BSD_INSTALL_PROGRAM} pngtogd $(INSTALL_BIN)/pngtogd + ${BSD_INSTALL_PROGRAM} pngtogd2 $(INSTALL_BIN)/pngtogd2 + ${BSD_INSTALL_PROGRAM} gdtopng $(INSTALL_BIN)/gdtopng @@ -157,7 +157,7 @@ gddemo: gddemo.o libgd.a $(CC) gddemo.o -o gddemo $(LIBDIRS) $(LIBS) -@@ -138,18 +167,21 @@ +@@ -138,19 +167,21 @@ gdtestttf: gdtestttf.o libgd.a $(CC) --verbose gdtestttf.o -o gdtestttf $(LIBDIRS) $(LIBS) @@ -170,7 +170,7 @@ +INCS= gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h \ gdfontg.h gdhelpers.h + -+libgd.a: $(INCS) $(OBJS) ++libgd.a: $(INCS) $(OBJS) rm -f libgd.a - $(AR) rc libgd.a gd.o gd_gd.o gd_gd2.o gd_io.o gd_io_dp.o \ - gd_io_file.o gd_ss.o gd_io_ss.o gd_png.o gd_jpeg.o gdxpm.o \ @@ -179,10 +179,10 @@ - gd_wbmp.o gdhelpers.o + $(AR) rc libgd.a $(OBJS) -ranlib libgd.a -+ -+libgd.so.$(SOVER): $(INCS) $(OBJS:.o=.so) + ++libgd.so.$(SOVER): $(INCS) $(OBJS:.o=.so) + $(CC) -shared -Wl,-x,-soname,$@ -o $@ $(OBJS:.o=.so) $(LIBDIRS) $(LIBS) + ln -sf libgd.so.$(SOVER) libgd.so - clean: rm -f *.o *.a ${PROGRAMS} test/gdtest.jpg test/gdtest.wbmp + #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Sat Dec 15 13:48:03 2001 # Generated by : makepatch 2.00 # Recurse directories : Yes # p 'files/patch-ac' 7134 1008452565 0100644 #### End of ApplyPatch data #### #### End of Patch kit [created: Sat Dec 15 13:48:03 2001] #### #### Checksum: 122 4088 39139 #### --=_7tCqrGA+HQ0/zt-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 21:30:18 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3AE7337B41A for ; Sat, 15 Dec 2001 21:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG5U1S11258; Sat, 15 Dec 2001 21:30:01 -0800 (PST) (envelope-from gnats) Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 602C637B405 for ; Sat, 15 Dec 2001 21:29:36 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 7BC252B78B for ; Sun, 16 Dec 2001 06:28:40 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 3F46F1A3; Sun, 16 Dec 2001 16:27:59 +1100 (EST) Message-Id: <20011216052759.3F46F1A3@k7.mavetju.org> Date: Sun, 16 Dec 2001 16:27:59 +1100 (EST) From: Edwin Groothuis Reply-To: Edwin Groothuis To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32892: New ports: x11-toolkits/gtk12-apireference Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32892 >Category: ports >Synopsis: New ports: x11-toolkits/gtk12-apireference >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 21:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 4.4-RELEASE i386 >Organization: - >Environment: System: FreeBSD k7.mavetju.org 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Sat Nov 10 21:31:47 EST 2001 edwin@k7.mavetju.org:/usr/src/sys/compile/k7 i386 n/a >Description: Gtk12-apireference is the manual for the GIMP Toolkit. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # x11-toolkits/gtk12-apireference/ # x11-toolkits/gtk12-apireference/Makefile # x11-toolkits/gtk12-apireference/distinfo # x11-toolkits/gtk12-apireference/pkg-plist # x11-toolkits/gtk12-apireference/pkg-comment # x11-toolkits/gtk12-apireference/pkg-descr # echo c - x11-toolkits/gtk12-apireference/ mkdir -p x11-toolkits/gtk12-apireference/ > /dev/null 2>&1 echo x - x11-toolkits/gtk12-apireference/Makefile sed 's/^X//' >x11-toolkits/gtk12-apireference/Makefile << 'END-of-x11-toolkits/gtk12-apireference/Makefile' X# New ports collection makefile for: gtk12-apireference X# Date created: 13 December 2001 X# Whom: Edwin Groothuis (edwin@mavetju.org) X# X# $FreeBSD$ X# X XPORTNAME= gtk12-apireference XPORTVERSION= 1.0 XCATEGORIES= x11-toolkits XMASTER_SITES= http://developer.gnome.org/doc/API/ XDISTFILES= glib-docs.tar.gz gtk-docs.tar.gz gdk-docs.tar.gz X XMAINTAINER= edwin@mavetju.org X XNO_BUILD= yes # it's only text! X Xdo-install: X ${MKDIR} ${PREFIX}/share/doc/gdk12 X ${MKDIR} ${PREFIX}/share/doc/gtk12 X ${MKDIR} ${PREFIX}/share/doc/glib12 X ${CP} -R ${WRKDIR}/gdk/* ${PREFIX}/share/doc/gdk12 X ${CP} -R ${WRKDIR}/glib/* ${PREFIX}/share/doc/glib12 X ${CP} -R ${WRKDIR}/gtk/* ${PREFIX}/share/doc/gtk12 X X.include END-of-x11-toolkits/gtk12-apireference/Makefile echo x - x11-toolkits/gtk12-apireference/distinfo sed 's/^X//' >x11-toolkits/gtk12-apireference/distinfo << 'END-of-x11-toolkits/gtk12-apireference/distinfo' XMD5 (glib-docs.tar.gz) = 686f933cf6fa3b65156b9524de9d1503 XMD5 (gtk-docs.tar.gz) = ae1d6638d1c4799a4a328f27f62aa224 XMD5 (gdk-docs.tar.gz) = b80957f7e3148dc3b540fba0c88e51e5 END-of-x11-toolkits/gtk12-apireference/distinfo echo x - x11-toolkits/gtk12-apireference/pkg-plist sed 's/^X//' >x11-toolkits/gtk12-apireference/pkg-plist << 'END-of-x11-toolkits/gtk12-apireference/pkg-plist' Xshare/doc/glib12/glib-arrays.html Xshare/doc/glib12/glib-automatic-string-completion.html Xshare/doc/glib12/glib-balanced-binary-trees.html Xshare/doc/glib12/glib-basic-types.html Xshare/doc/glib12/glib-byte-arrays.html Xshare/doc/glib12/glib-byte-order-macros.html Xshare/doc/glib12/glib-caches.html Xshare/doc/glib12/glib-core.html Xshare/doc/glib12/glib-data-types.html Xshare/doc/glib12/glib-datasets.html Xshare/doc/glib12/glib-date-and-time-functions.html Xshare/doc/glib12/glib-doubly-linked-lists.html Xshare/doc/glib12/glib-dynamic-loading-of-modules.html Xshare/doc/glib12/glib-quarks.html Xshare/doc/glib12/glib-fundamentals.html Xshare/doc/glib12/glib-hash-tables.html Xshare/doc/glib12/glib-hook-functions.html Xshare/doc/glib12/glib-io-channels.html Xshare/doc/glib12/glib-keyed-data-lists.html Xshare/doc/glib12/glib-lexical-scanner.html Xshare/doc/glib12/glib-limits-of-basic-types.html Xshare/doc/glib12/glib-memory-allocation.html Xshare/doc/glib12/glib-memory-allocators.html Xshare/doc/glib12/glib-memory-chunks.html Xshare/doc/glib12/glib-message-logging.html Xshare/doc/glib12/glib-miscellaneous-macros.html Xshare/doc/glib12/glib-miscellaneous-utility-functions.html Xshare/doc/glib12/glib-n-ary-trees.html Xshare/doc/glib12/glib-pointer-arrays.html Xshare/doc/glib12/glib-relations-and-tuples.html Xshare/doc/glib12/glib-singly-linked-lists.html Xshare/doc/glib12/glib-standard-macros.html Xshare/doc/glib12/glib-string-chunks.html Xshare/doc/glib12/glib-string-utility-functions.html Xshare/doc/glib12/glib-strings.html Xshare/doc/glib12/glib-the-main-event-loop.html Xshare/doc/glib12/glib-threads.html Xshare/doc/glib12/glib-timers.html Xshare/doc/glib12/glib-type-conversion-macros.html Xshare/doc/glib12/glib-utilities.html Xshare/doc/glib12/glib-warnings-and-assertions.html Xshare/doc/glib12/index.html Xshare/doc/glib12/index.sgml Xshare/doc/glib12/glib-windows-compatability-functions.html Xshare/doc/gtk12/gtk-bindings.html Xshare/doc/gtk12/gtk-drag-and-drop.html Xshare/doc/gtk12/gtk-feature-test-macros.html Xshare/doc/gtk12/gtk-general.html Xshare/doc/gtk12/gtk-graphics-contexts.html Xshare/doc/gtk12/gtk-index.html Xshare/doc/gtk12/gtk-keyboard-accelerators.html Xshare/doc/gtk12/gtk-object-properties.html Xshare/doc/gtk12/gtk-private-information.html Xshare/doc/gtk12/gtk-resource-files.html Xshare/doc/gtk12/gtk-selections.html Xshare/doc/gtk12/gtk-signal-marshallers.html Xshare/doc/gtk12/gtk-signals.html Xshare/doc/gtk12/gtk-standard-enumerations.html Xshare/doc/gtk12/gtk.html Xshare/doc/gtk12/gtk-styles.html Xshare/doc/gtk12/gtk-themes.html Xshare/doc/gtk12/gtk-types.html Xshare/doc/gtk12/gtkaccellabel.html Xshare/doc/gtk12/gtkadjustment.html Xshare/doc/gtk12/gtkalignment.html Xshare/doc/gtk12/gtkarrow.html Xshare/doc/gtk12/gtkaspectframe.html Xshare/doc/gtk12/gtkbin.html Xshare/doc/gtk12/gtkbox.html Xshare/doc/gtk12/gtkbutton.html Xshare/doc/gtk12/gtkbuttonbox.html Xshare/doc/gtk12/gtkcalendar.html Xshare/doc/gtk12/gtkcheckbutton.html Xshare/doc/gtk12/gtkcheckmenuitem.html Xshare/doc/gtk12/gtkclist.html Xshare/doc/gtk12/gtkcolorselection.html Xshare/doc/gtk12/gtkcolorselectiondialog.html Xshare/doc/gtk12/gtkcombo.html Xshare/doc/gtk12/gtkcontainer.html Xshare/doc/gtk12/gtkctree.html Xshare/doc/gtk12/gtkcurve.html Xshare/doc/gtk12/gtkdata.html Xshare/doc/gtk12/gtkdialog.html Xshare/doc/gtk12/gtkdrawingarea.html Xshare/doc/gtk12/gtkeditable.html Xshare/doc/gtk12/gtkentry.html Xshare/doc/gtk12/gtkeventbox.html Xshare/doc/gtk12/gtkfileselection.html Xshare/doc/gtk12/gtkfixed.html Xshare/doc/gtk12/gtkfontselection.html Xshare/doc/gtk12/gtkfontselectiondialog.html Xshare/doc/gtk12/gtkframe.html Xshare/doc/gtk12/gtkgammacurve.html Xshare/doc/gtk12/gtkhandlebox.html Xshare/doc/gtk12/gtkhbox.html Xshare/doc/gtk12/gtkhbuttonbox.html Xshare/doc/gtk12/gtkhpaned.html Xshare/doc/gtk12/gtkhruler.html Xshare/doc/gtk12/gtkhscale.html Xshare/doc/gtk12/gtkhscrollbar.html Xshare/doc/gtk12/gtkhseparator.html Xshare/doc/gtk12/gtkimage.html Xshare/doc/gtk12/gtkinputdialog.html Xshare/doc/gtk12/gtkinvisible.html Xshare/doc/gtk12/gtkitem.html Xshare/doc/gtk12/gtkitemfactory.html Xshare/doc/gtk12/gtklabel.html Xshare/doc/gtk12/gtklayout.html Xshare/doc/gtk12/gtklist.html Xshare/doc/gtk12/gtklistitem.html Xshare/doc/gtk12/gtkmenu.html Xshare/doc/gtk12/gtkmenubar.html Xshare/doc/gtk12/gtkmenuitem.html Xshare/doc/gtk12/gtkmenushell.html Xshare/doc/gtk12/gtkmisc.html Xshare/doc/gtk12/gtknotebook.html Xshare/doc/gtk12/index.html Xshare/doc/gtk12/gtkobject.html Xshare/doc/gtk12/gtkobjects.html Xshare/doc/gtk12/gtkoptionmenu.html Xshare/doc/gtk12/gtkpacker.html Xshare/doc/gtk12/gtkpaned.html Xshare/doc/gtk12/gtkpixmap.html Xshare/doc/gtk12/gtkplug.html Xshare/doc/gtk12/gtkpreview.html Xshare/doc/gtk12/gtkprogress.html Xshare/doc/gtk12/gtkprogressbar.html Xshare/doc/gtk12/gtkradiobutton.html Xshare/doc/gtk12/gtkradiomenuitem.html Xshare/doc/gtk12/gtkrange.html Xshare/doc/gtk12/gtkruler.html Xshare/doc/gtk12/gtkscale.html Xshare/doc/gtk12/gtkscrollbar.html Xshare/doc/gtk12/gtkscrolledwindow.html Xshare/doc/gtk12/gtkseparator.html Xshare/doc/gtk12/gtksocket.html Xshare/doc/gtk12/gtkspinbutton.html Xshare/doc/gtk12/gtkstatusbar.html Xshare/doc/gtk12/gtktable.html Xshare/doc/gtk12/gtktearoffmenuitem.html Xshare/doc/gtk12/gtktext.html Xshare/doc/gtk12/gtktipsquery.html Xshare/doc/gtk12/gtktogglebutton.html Xshare/doc/gtk12/gtktoolbar.html Xshare/doc/gtk12/gtktooltips.html Xshare/doc/gtk12/gtktree.html Xshare/doc/gtk12/gtktreeitem.html Xshare/doc/gtk12/gtkvbox.html Xshare/doc/gtk12/gtkvbuttonbox.html Xshare/doc/gtk12/gtkviewport.html Xshare/doc/gtk12/gtkvpaned.html Xshare/doc/gtk12/gtkvruler.html Xshare/doc/gtk12/gtkvscale.html Xshare/doc/gtk12/gtkvscrollbar.html Xshare/doc/gtk12/gtkvseparator.html Xshare/doc/gtk12/gtkwidget.html Xshare/doc/gtk12/gtkwindow.html Xshare/doc/gtk12/index.sgml Xshare/doc/gdk12/gdk-bitmaps-and-pixmaps.html Xshare/doc/gdk12/gdk-color-contexts.html Xshare/doc/gdk12/gdk-colormaps-and-colors.html Xshare/doc/gdk12/gdk-cursors.html Xshare/doc/gdk12/gdk-drag-and-drop.html Xshare/doc/gdk12/gdk-drawing-primitives.html Xshare/doc/gdk12/gdk-event-structures.html Xshare/doc/gdk12/gdk-events.html Xshare/doc/gdk12/gdk-fonts.html Xshare/doc/gdk12/gdk-gdkrgb.html Xshare/doc/gdk12/gdk-general.html Xshare/doc/gdk12/gdk-graphics-contexts.html Xshare/doc/gdk12/gdk-images.html Xshare/doc/gdk12/gdk-input-contexts.html Xshare/doc/gdk12/gdk-input-devices.html Xshare/doc/gdk12/gdk.html Xshare/doc/gdk12/gdk-input-methods.html Xshare/doc/gdk12/gdk-input.html Xshare/doc/gdk12/gdk-key-values.html Xshare/doc/gdk12/gdk-points-rectangles-and-regions.html Xshare/doc/gdk12/gdk-properties-and-atoms.html Xshare/doc/gdk12/gdk-selections.html Xshare/doc/gdk12/gdk-threads.html Xshare/doc/gdk12/gdk-visuals.html Xshare/doc/gdk12/gdk-windows.html Xshare/doc/gdk12/index.html Xshare/doc/gdk12/index.sgml X@dirrm share/doc/gdk12 X@dirrm share/doc/gtk12 X@dirrm share/doc/glib12 END-of-x11-toolkits/gtk12-apireference/pkg-plist echo x - x11-toolkits/gtk12-apireference/pkg-comment sed 's/^X//' >x11-toolkits/gtk12-apireference/pkg-comment << 'END-of-x11-toolkits/gtk12-apireference/pkg-comment' XGimp Toolkit for X11 GUI - API Reference END-of-x11-toolkits/gtk12-apireference/pkg-comment echo x - x11-toolkits/gtk12-apireference/pkg-descr sed 's/^X//' >x11-toolkits/gtk12-apireference/pkg-descr << 'END-of-x11-toolkits/gtk12-apireference/pkg-descr' X GTK is a library for creating graphical user interfaces similar to Xthe Motif "look and feel". It is designed to be small and efficient, but Xstill flexible enough to allow the programmer freedom in the interfaces Xcreated. GTK allows the programmer to use a variety of standard user Xinterface widgets such as push, radio and check buttons, menus, lists Xand frames. It also provides several "container" widgets which can be Xused to control the layout of the user interface elements. X X This are the API reference for glib, gtk and gdk. They're Xinstalled in share/doc/gtk12, share/doc/gdk12 and share/doc/glib12 X X- Edwin Groothuis Xedwin@mavetju.org X XWWW: http://www.gtk.org/ END-of-x11-toolkits/gtk12-apireference/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 15 21:40:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D80E37B416 for ; Sat, 15 Dec 2001 21:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBG5e1A12108; Sat, 15 Dec 2001 21:40:01 -0800 (PST) (envelope-from gnats) Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 5CAD037B417 for ; Sat, 15 Dec 2001 21:33:57 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id fBG5WGj99375; Sun, 16 Dec 2001 00:32:16 -0500 (EST) (envelope-from alane) Message-Id: <200112160532.fBG5WGj99375@wwweasel.geeksrus.net> Date: Sun, 16 Dec 2001 00:32:16 -0500 (EST) From: Alan E Reply-To: Alan E To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32893: MAINTAINER UPDATE of freeamp to 2.1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32893 >Category: ports >Synopsis: MAINTAINER UPDATE of freeamp to 2.1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 15 21:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alan E >Release: FreeBSD 4.4-STABLE i386 >Organization: Geeksrus.NET >Environment: System: FreeBSD wwweasel.geeksrus.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:14:12 EST 2001 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 >Description: Update to 2.1.1. Patch submitted by "KATO Tsuguru" . Modified so ogg/vorbis is not mandatory. >How-To-Repeat: n/a >Fix: Index: audio/freeamp/Makefile =================================================================== RCS file: /home/alane/cvsroot/ports/audio/freeamp/Makefile,v retrieving revision 1.9 diff -u -3 -r1.9 Makefile --- audio/freeamp/Makefile 13 Dec 2001 05:30:22 -0000 1.9 +++ audio/freeamp/Makefile 15 Dec 2001 07:00:19 -0000 @@ -6,8 +6,7 @@ # PORTNAME= freeamp -PORTVERSION= 2.1.0 -PORTREVISION= 2 +PORTVERSION= 2.1.1 CATEGORIES= audio MASTER_SITES= http://www.freeamp.org/download/src/ @@ -36,7 +35,7 @@ CFLAGS+= "-D_M_ALPHA" .endif -.if defined(HAVE_ESOUND) +.if defined(HAVE_ESOUND) && ${HAVE_ESOUND} == yes USE_ESOUND= yes PLIST_SUB+= ESOUND="" .else @@ -44,12 +43,30 @@ PLIST_SUB+= ESOUND="@comment " .endif -.if defined(WITH_LIBARTS) +.if defined(WITH_LIBARTS) && ${WITH_LIBARTS} == yes LIB_DEPENDS= libartsc.0:${PORTSDIR}/x11/kdelibs2 PLIST_SUB+= LIBARTS="" .else CONFIGURE_ARGS+= --disable-arts PLIST_SUB+= LIBARTS="@comment " +.endif + +.if exists(${LOCALBASE}/include/ogg/ogg.h) \ + || exists(${LOCALBASE}/include/vorbis/vorbisfile.h) +WITH_OGGVORBIS= yes +.endif + +.if defined(WITH_OGGVORBIS) && ${WITH_OGGVORBIS} == yes +LIB_DEPENDS+= ogg.2:${PORTSDIR}/audio/libogg \ + vorbis.0:${PORTSDIR}/audio/libvorbis +PLIST_SUB+= OGGVORBIS="" +.else +PLIST_SUB+= OGGVORBIS="@comment " +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with ogg/vorbis support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_OGGVORBIS=yes\"" + @${ECHO_MSG} .endif post-install: Index: audio/freeamp/distinfo =================================================================== RCS file: /home/alane/cvsroot/ports/audio/freeamp/distinfo,v retrieving revision 1.4 diff -u -3 -r1.4 distinfo --- audio/freeamp/distinfo 2 Jul 2001 08:24:04 -0000 1.4 +++ audio/freeamp/distinfo 15 Dec 2001 06:50:53 -0000 @@ -1 +1 @@ -MD5 (freeamp-2.1.0.tar.bz2) = 58d4bfe12a58abc4ef33bbfc19e8b4a7 +MD5 (freeamp-2.1.1.tar.bz2) = 56720f823f84c3505aeab474c9a6a836 Index: audio/freeamp/pkg-plist =================================================================== RCS file: /home/alane/cvsroot/ports/audio/freeamp/pkg-plist,v retrieving revision 1.3 diff -u -3 -r1.3 pkg-plist --- audio/freeamp/pkg-plist 3 Jul 2001 12:46:56 -0000 1.3 +++ audio/freeamp/pkg-plist 15 Dec 2001 07:04:11 -0000 @@ -26,8 +26,9 @@ lib/freeamp/plugins/rmp.dlf lib/freeamp/plugins/signature.pmo lib/freeamp/plugins/soundcard.pmo -lib/freeamp/plugins/vorbis.lmc -lib/freeamp/plugins/vorbis.mdf +%%OGGVORBIS%%lib/freeamp/plugins/vorbis.lmc +%%OGGVORBIS%%lib/freeamp/plugins/vorbis.mdf +lib/freeamp/plugins/wav.lmc lib/freeamp/plugins/wavout.pmo lib/freeamp/plugins/winamp.ftf lib/freeamp/plugins/winamp_theme.xml @@ -205,4 +206,4 @@ @dirrm lib/freeamp/plugins @dirrm lib/freeamp @unexec rmdir %D/etc/sdr/plugins 2>/dev/null || true -@unexec rmdir %D/etc/sdr 2&>/dev/null || true +@unexec rmdir %D/etc/sdr 2>/dev/null || true Index: audio/freeamp/files/patch-aa =================================================================== RCS file: /home/alane/cvsroot/ports/audio/freeamp/files/patch-aa,v retrieving revision 1.2 diff -u -3 -r1.2 patch-aa --- audio/freeamp/files/patch-aa 3 Jul 2001 12:46:58 -0000 1.2 +++ audio/freeamp/files/patch-aa 15 Dec 2001 07:14:20 -0000 @@ -1,6 +1,6 @@ ---- configure.in.orig Sat Apr 14 02:44:47 2001 -+++ configure.in Mon Jul 2 21:43:50 2001 -@@ -174,8 +174,8 @@ +--- configure.in.orig Mon Dec 10 16:42:31 2001 ++++ configure.in Sat Dec 15 02:12:43 2001 +@@ -179,8 +179,8 @@ ;; freebsd*) host_os="freebsd" @@ -11,7 +11,7 @@ ;; netbsd*) host_os="freebsd" -@@ -326,9 +326,9 @@ +@@ -331,9 +331,9 @@ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` esd_micro_version=`$ESD_CONFIG $esd_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` @@ -23,7 +23,7 @@ LIBS="$LIBS $ESD_LIBS" rm -f conf.esdtest AC_MSG_CHECKING(for ESD - version >= $min_esd_version) -@@ -387,7 +387,7 @@ +@@ -392,7 +392,7 @@ } ],, have_esound=false, have_esound=false) @@ -32,7 +32,7 @@ LIBS="$ac_save_LIBS" AC_LANG_RESTORE rm -f conf.esdtest -@@ -460,9 +460,9 @@ +@@ -465,9 +465,9 @@ gtk_config_major=`$GTK_CONFIG --version | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` gtk_config_minor=`$GTK_CONFIG --version | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` gtk_config_micro=`$GTK_CONFIG --version | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` @@ -44,7 +44,7 @@ LIBS="$GTK_LIBS $LIBS" AC_TRY_RUN([ -@@ -489,7 +489,7 @@ +@@ -494,7 +494,7 @@ gtk_major_version, gtk_minor_version, gtk_micro_version); return 1; }], , have_gtk=false, have_gtk=false]) @@ -53,7 +53,7 @@ LIBS="$ac_save_LIBS" if test "$have_gtk" = "false"; then AC_MSG_RESULT(no) -@@ -510,7 +510,7 @@ +@@ -515,7 +515,7 @@ OSINC="$OSINC -I$srcdir/ui/download/unix/include" OSINC="$OSINC -I$srcdir/ui/musicbrowser/include" OSINC="$OSINC -I$srcdir/ftc/kjofol" @@ -62,7 +62,7 @@ AC_DEFINE(HAVE_GTK) elif test "$host_os" = "beos"; then OSDEPPLUGINS="$OSDEPPLUGINS plugins/musicbrowser.ui" -@@ -536,7 +536,7 @@ +@@ -541,7 +541,7 @@ AC_SUBST(GTK_LIBS) AC_SUBST(EXTRALIBS) @@ -71,7 +71,7 @@ dnl orbit crap save_CPPFLAGS="$CPPFLAGS" -@@ -656,7 +656,7 @@ +@@ -661,7 +661,7 @@ alsa_min_major_version=0 alsa_min_minor_version=5 alsa_min_micro_version=0 @@ -80,7 +80,7 @@ ac_save_LIBS="$LIBS" LIBS="$LIBS -lasound" -@@ -701,7 +701,7 @@ +@@ -706,7 +706,7 @@ ], , have_alsa=false, have_alsa=false ) AC_LANG_RESTORE @@ -89,35 +89,30 @@ LIBS="$ac_save_LIBS" if test "$have_alsa" = "false"; then AC_MSG_RESULT(no) -@@ -748,13 +748,21 @@ - have_arts="false") - fi +@@ -749,6 +749,14 @@ + dnl Partly taken from SDL's configure.in + dnl ------------------------------------------------------------- +AC_ARG_ENABLE(arts, [ --disable-arts Don't compile the libArts output plugin], enable_arts=no, enable_arts=yes) + +if test "x$enable_arts" = "xno"; then -+ have_arts="false"; ++ have_arts="false" +fi + - ARTS_LIBS="" --AC_CHECK_LIB(artsc, arts_init, -- OSDEPPLUGINS="$OSDEPPLUGINS plugins/arts.pmo"; -- OSINC="$OSINC -I$srcdir/io/arts/include" -- ARTS_LIBS="-lartsc -laudiofile" -- AC_MSG_RESULT([compiling arts pmo plugin]) --) ++ARTS_LIBS="" +if test "$have_arts" = "true"; then -+ AC_CHECK_LIB(artsc, arts_init, -+ OSDEPPLUGINS="$OSDEPPLUGINS plugins/arts.pmo"; -+ OSINC="$OSINC -I$srcdir/io/arts/include" -+ ARTS_LIBS="-lartsc -laudiofile" -+ AC_MSG_RESULT([compiling arts pmo plugin]) -+ ) + AC_PATH_PROG(ARTSCCONFIG, artsc-config) + if test x$ARTSCCONFIG = x -o x$ARTSCCONFIG = x'"$ARTSCCONFIG"'; then + : # arts isn't installed +@@ -765,6 +773,7 @@ + AC_MSG_RESULT([compiling arts pmo plugin]) + ]) + fi +fi AC_SUBST(ARTS_LIBS) AC_SUBST(EXTRALIBS) -@@ -808,9 +816,9 @@ +@@ -819,9 +828,9 @@ gdk_pixbuf_micro_version=`$GDK_PIXBUF_CONFIG $gdk_pixbuf_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test "x$enable_gdk_pixbuftest" = "xyes" ; then @@ -129,7 +124,7 @@ LIBS="$LIBS $GDK_PIXBUF_LIBS" dnl dnl Now check if the installed GDK_PIXBUF is sufficiently new. (Also sanity -@@ -872,7 +880,7 @@ +@@ -883,7 +892,7 @@ } ],, no_gdk_pixbuf=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) @@ -138,7 +133,7 @@ LIBS="$ac_save_LIBS" fi fi -@@ -891,7 +899,7 @@ +@@ -902,7 +911,7 @@ : else echo "*** Could not run GDK_PIXBUF test program, checking why..." @@ -147,7 +142,7 @@ LIBS="$LIBS $GDK_PIXBUF_LIBS" AC_TRY_LINK([ #include -@@ -910,7 +918,7 @@ +@@ -921,7 +930,7 @@ echo "*** exact error that occured. This usually means GDK_PIXBUF was incorrectly installed" echo "*** or that you have moved GDK_PIXBUF since it was installed. In the latter case, you" echo "*** may want to edit the gdk-pixbuf-config script: $GDK_PIXBUF_CONFIG" ]) @@ -156,7 +151,7 @@ LIBS="$ac_save_LIBS" fi fi -@@ -922,13 +930,13 @@ +@@ -933,8 +942,8 @@ AC_SUBST(GDK_PIXBUF_LIBS) rm -f conf.gdk_pixbuftest @@ -167,9 +162,12 @@ AC_LANG_SAVE AC_LANG_CPLUSPLUS - AC_CHECK_LIB(musicbrainz, mb_New, , -- AC_MSG_ERROR([FreeAmp requires that the MusicBrainz client library be installed.]),-ldl) -+ AC_MSG_ERROR([FreeAmp requires that the MusicBrainz client library be installed.])) +@@ -944,7 +953,7 @@ + echo "*** Download the library from " + echo "*** http://www.musicbrainz.org/download.html" + echo "***" +- AC_MSG_ERROR(Cannot continue.)],-ldl -lm -lstdc++) ++ AC_MSG_ERROR(Cannot continue.)],-lm -lstdc++) AC_LANG_RESTORE AC_CONFIG_HEADER(config/config.h) Index: audio/freeamp/files/patch-ad =================================================================== RCS file: audio/freeamp/files/patch-ad diff -N audio/freeamp/files/patch-ad --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ audio/freeamp/files/patch-ad 15 Dec 2001 06:50:53 -0000 @@ -0,0 +1,11 @@ +--- Makefile-plugins.in.orig Tue Oct 16 13:31:05 2001 ++++ Makefile-plugins.in Wed Dec 12 03:25:45 2001 +@@ -232,7 +232,7 @@ + UNIXFREEAMPUIOBJ += ui/freeamp/unix/src/GTKPreferenceWindow.o + UNIXFREEAMPUIOBJ += ui/freeamp/unix/src/GTKFileSelector.o + UNIXFREEAMPUIOBJ += ui/musicbrowser/unix/src/gtkmessagedialog.o +-UNIXFREEAMPUILIBS = $(TTF_LIBS) $(GDK_PIXBUF_LIBS) ++UNIXFREEAMPUILIBS = $(TTF_LIBS) $(GDK_PIXBUF_LIBS) $(GTK_LIBS) + + BEOSFREEAMPUIOBJ = ui/freeamp/beos/src/BeOSWindow.o + BEOSFREEAMPUIOBJ += ui/freeamp/beos/src/BeOSBitmap.o >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message