From owner-freebsd-ports Sun Nov 26 1:10: 4 2000 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 2F60B37B4D7 for ; Sun, 26 Nov 2000 01:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA67167; Sun, 26 Nov 2000 01:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 26 Nov 2000 01:10:02 -0800 (PST) Message-Id: <200011260910.BAA67167@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Trevor Johnson Subject: Re: ports/23100: Reply-To: Trevor Johnson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23100; it has been noted by GNATS. From: Trevor Johnson To: Sune Stjerneby Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/23100: Date: Sun, 26 Nov 2000 04:03:16 -0500 (EST) bash-2.04$ ls /usr/include/sys/mouse.h /usr/include/machine/mouse.h ls: /usr/include/sys/mouse.h: No such file or directory /usr/include/machine/mouse.h bash-2.04$ uname -a FreeBSD localhost.localdomain 4.2-BETA FreeBSD 4.2-BETA #0: Fri Nov 17 05:07:51 PST 2000 root@localhost.localdomain:/usr/src/sys/compile/4_2_RC2_A i386 -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 2:10: 8 2000 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 092C737B4D7 for ; Sun, 26 Nov 2000 02:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA75015; Sun, 26 Nov 2000 02:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from modemcable101.200-201-24.mtl.mc.videotron.ca (modemcable140.61-201-24.mtl.mc.videotron.ca [24.201.61.140]) by hub.freebsd.org (Postfix) with SMTP id 9C2DA37B4CF for ; Sun, 26 Nov 2000 02:03:04 -0800 (PST) Received: (qmail 62878 invoked from network); 26 Nov 2000 10:03:03 -0000 Received: from nitro.local.mindstep.com (HELO nitro) (postfix@192.168.10.2) by jacuzzi.local.mindstep.com with SMTP; 26 Nov 2000 10:03:03 -0000 Received: by nitro (Postfix, from userid 0) id 0AC83270109; Sun, 26 Nov 2000 05:03:01 -0500 (EST) Message-Id: <20001126100301.0AC83270109@nitro> Date: Sun, 26 Nov 2000 05:03:01 -0500 (EST) From: patrick@mindstep.com Reply-To: patrick@mindstep.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23107: lsof fails to compile on 4.2-STABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23107 >Category: ports >Synopsis: lsof fails to compile on 4.2-STABLE >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 Nov 26 02:10:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Bihan-Faou >Release: FreeBSD 4.2-STABLE i386 >Organization: MindStep Corporation >Environment: 4.2-Stable system updated on November 26. >Description: A recent MFC in 4.2-STABLE (sys/sys/filedesc.h) removed the definition for UF_MAPPED that is needed by lsof. This prevents lsof from compiling. >How-To-Repeat: cd /usr/ports/sysutils/lsof; make >Fix: The following patch adds the definition of UF_MAPPED in the file that needs it (dialect/freebsd/dstore.c). While this works well (lsof works properly with this patch), this might not be the proper fix and only a quick and dirty workaround. Adding this patch in the list of patches for lsof solves the immediate compile issue. --- dialects/freebsd/dstore.c.orig +++ dialects/freebsd/dstore.c @@ -109,6 +109,10 @@ * Pof_tab[] - table for print process open file flags */ +#if !defined(UF_MAPPED) +#define UF_MAPPED 0x02 +#endif + struct pff_tab Pof_tab[] = { { (long)UF_EXCLOSE, POF_CLOEXEC }, >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 Nov 26 2:28:19 2000 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 7D0D837B4D7; Sun, 26 Nov 2000 02:28:17 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA76920; Sun, 26 Nov 2000 02:28:17 -0800 (PST) (envelope-from roam@FreeBSD.org) Date: Sun, 26 Nov 2000 02:28:17 -0800 (PST) From: Message-Id: <200011261028.CAA76920@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/23107: lsof fails to compile on 4.2-STABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lsof fails to compile on 4.2-STABLE Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: roam Responsible-Changed-When: Sun Nov 26 02:26:14 PST 2000 Responsible-Changed-Why: Over to maintainer; yes, it was Matt Dillon's file descriptor race megapatch that broke lsof on -stable. As a sidepoint, does lsof build on -current? UF_MAPPED is ifdef'd out in sys/sys/filedesc.h rev 1.26, too. http://www.freebsd.org/cgi/query-pr.cgi?pr=23107 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 6:11:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from w3.brgkepler.asn-graz.ac.at (unknown [193.171.5.38]) by hub.freebsd.org (Postfix) with ESMTP id ACED737B479 for ; Sun, 26 Nov 2000 06:11:10 -0800 (PST) Received: from www.omega-project.net (sperber@L0823P30.dipool.highway.telekom.at [62.46.166.222]) by w3.brgkepler.asn-graz.ac.at (8.8.8/8.8.8) with SMTP id OAA12853 for ; Sun, 26 Nov 2000 14:00:36 +0100 From: Sperber To: ports@freebsd.org Subject: Win4Lin Date: Sun, 26 Nov 2000 15:08:57 +0000 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00112615110400.00735@www.omega-project.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi Will there, sometime, be a port for Win4Lin? I know vmware and i also use it but it is really slow - and so i looked for a faster emulator - perhaps it's Win4Lin... Thx in advance Sperber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 6:38: 4 2000 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 DF5D037B479; Sun, 26 Nov 2000 06:38:02 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA14727; Sun, 26 Nov 2000 06:38:02 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Sun, 26 Nov 2000 06:38:02 -0800 (PST) From: Message-Id: <200011261438.GAA14727@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23070: Update port: archivers/lzo Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: archivers/lzo State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Nov 26 06:37:50 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23070 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 6:41:52 2000 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 D464737B4C5; Sun, 26 Nov 2000 06:41:50 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA15388; Sun, 26 Nov 2000 06:41:50 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Sun, 26 Nov 2000 06:41:50 -0800 (PST) From: Message-Id: <200011261441.GAA15388@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23071: Update port: converters/base64 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: converters/base64 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Nov 26 06:41:35 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23071 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 7:12:22 2000 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 621F637B6FB; Sun, 26 Nov 2000 07:10:24 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA20273; Sun, 26 Nov 2000 07:10:24 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Sun, 26 Nov 2000 07:10:24 -0800 (PST) From: Message-Id: <200011261510.HAA20273@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23072: Update port: databases/cdb Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: databases/cdb State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Nov 26 07:10:11 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23072 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 7:15:27 2000 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 1596F37B4C5; Sun, 26 Nov 2000 07:15:26 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA20942; Sun, 26 Nov 2000 07:15:26 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Sun, 26 Nov 2000 07:15:26 -0800 (PST) From: Message-Id: <200011261515.HAA20942@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23073: Update port: ftp/moxftp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: ftp/moxftp State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Nov 26 07:15:07 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23073 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 7:22:11 2000 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 CA3CA37B479; Sun, 26 Nov 2000 07:22:09 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA21920; Sun, 26 Nov 2000 07:22:09 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Sun, 26 Nov 2000 07:22:09 -0800 (PST) From: Message-Id: <200011261522.HAA21920@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23074: Update port: games/froz to 2.40 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/froz to 2.40 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Nov 26 07:21:57 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23074 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 7:30:37 2000 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 F06DB37B479; Sun, 26 Nov 2000 07:30:35 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA22939; Sun, 26 Nov 2000 07:30:35 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Sun, 26 Nov 2000 07:30:35 -0800 (PST) From: Message-Id: <200011261530.HAA22939@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23076: Update port: graphics/pngcheck to 0.99.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/pngcheck to 0.99.3 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Nov 26 07:30:23 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23076 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 7:35:58 2000 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 6FDE437B479; Sun, 26 Nov 2000 07:35:56 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA23529; Sun, 26 Nov 2000 07:35:56 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Sun, 26 Nov 2000 07:35:56 -0800 (PST) From: Message-Id: <200011261535.HAA23529@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23077: Update port: graphics/tiff2png to 0.81c Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/tiff2png to 0.81c State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Nov 26 07:35:43 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23077 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 7:39:38 2000 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 1F7DC37B479; Sun, 26 Nov 2000 07:39:37 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA23863; Sun, 26 Nov 2000 07:39:37 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Sun, 26 Nov 2000 07:39:37 -0800 (PST) From: Message-Id: <200011261539.HAA23863@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23079: Update port: textproc/chpp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: textproc/chpp State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Nov 26 07:39:19 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23079 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 7:49:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nisser.com (c1870039.telekabel.chello.nl [212.187.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 7C49837B479 for ; Sun, 26 Nov 2000 07:49:33 -0800 (PST) Received: from eboa.com (roelof [10.0.0.2]) by nisser.com (8.9.3/8.9.2) with ESMTP id QAA49697 for ; Sun, 26 Nov 2000 16:49:32 +0100 (CET) (envelope-from roelof@eboa.com) Message-ID: <3A21310C.51F346A3@eboa.com> Date: Sun, 26 Nov 2000 16:49:32 +0100 From: Roelof Osinga Organization: eboa - engineering buro Office Automation X-Mailer: Mozilla 4.72 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: test Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I ought to be subscribed again, yet see no mails? Perhaps I will see this one? Roelof To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 7:58:50 2000 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 4894437B479; Sun, 26 Nov 2000 07:58:49 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA25809; Sun, 26 Nov 2000 07:58:49 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Sun, 26 Nov 2000 07:58:49 -0800 (PST) From: Message-Id: <200011261558.HAA25809@freefall.freebsd.org> To: rjoseph@mammalia.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23012: New port: textproc/htmldoc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: textproc/htmldoc State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Nov 26 07:57:00 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23012 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 8:36:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ganja.nubisci.net (ikhala.tcimet.net [198.109.166.215]) by hub.freebsd.org (Postfix) with ESMTP id A648937B479; Sun, 26 Nov 2000 08:36:09 -0800 (PST) Received: (from dervish@localhost) by ganja.nubisci.net (8.11.1/8.11.1) id eAQGa8K88464; Sun, 26 Nov 2000 11:36:08 -0500 (EST) (envelope-from dervish) Date: Sun, 26 Nov 2000 11:36:08 -0500 From: bush doctor To: Maxim Sobolev Cc: ports@FreeBSD.ORG Subject: Re: FW: TclPro was released into the open source community by Interwoven Message-ID: <20001126113608.B88345@nubisci.net> Mail-Followup-To: Maxim Sobolev , ports@FreeBSD.ORG References: <3A1FCC47.6790A309@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: <3A1FCC47.6790A309@FreeBSD.org>; from sobomax@FreeBSD.ORG on Sat, Nov 25, 2000 at 04:27:19PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT i386 WWW-Home-Page: http://www.nubisci.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Out of da blue Maxim Sobolev aka (sobomax@FreeBSD.ORG) said: > FYI: > --------------------------------------- > SUNNYVALE, Calif November 22, 2000 - Interwoven (Nasdaq: IWOV), the leading > provider of enterprise-class content management solutions announced today that > it has made TclPro, the premier development tool for the Tcl language, open > source. It will be available for download at > http://dev.scriptics.com/software/tclpro/. > --------------------------------------- > > Any takers to create port of it? I'd like this one. > > -Maxim > > #;^) -- So ya want ta hear da roots? bush doctor Of course I run FreeBSD!! http://www.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 Nov 26 10:10: 5 2000 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 8123737B4C5 for ; Sun, 26 Nov 2000 10:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA43958; Sun, 26 Nov 2000 10:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from rodan.water-programs.com (cc994333-a.rcrdva1.ca.home.com [24.176.177.42]) by hub.freebsd.org (Postfix) with ESMTP id 9A6F737B66E for ; Sun, 26 Nov 2000 10:09:48 -0800 (PST) Received: (from scottj@localhost) by rodan.water-programs.com (8.11.1/8.11.1) id eAQI96t05850; Sun, 26 Nov 2000 10:09:06 -0800 (PST) (envelope-from scottj) Message-Id: <200011261809.eAQI96t05850@rodan.water-programs.com> Date: Sun, 26 Nov 2000 10:09:06 -0800 (PST) From: joseph@randomnetworks.com Reply-To: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23115: UPDATE PORT graphics/zimg (4.2.2 -> 4.4.0) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23115 >Category: ports >Synopsis: UPDATE PORT graphics/zimg (4.2.2 -> 4.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: Sun Nov 26 10:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: FreeBSD 4.2-BETA i386 >Organization: randomnetworks.com >Environment: ports collection >Description: UPDATE PORT graphics/zimg (4.2.2 -> 4.4.0) >How-To-Repeat: >Fix: This diff was generated from /usr/ports by : diff -ruN graphics/zimg.orig graphics/zimg ------------------------------------------------- diff -ruN graphics/zimg.orig/Makefile graphics/zimg/Makefile --- graphics/zimg.orig/Makefile Sun Nov 26 10:04:10 2000 +++ graphics/zimg/Makefile Sun Nov 26 10:04:30 2000 @@ -6,7 +6,7 @@ # PORTNAME= zimg -PORTVERSION= 4.2.2 +PORTVERSION= 4.4.0 CATEGORIES= graphics MASTER_SITES= http://www.zellner.org/zimg/download/ diff -ruN graphics/zimg.orig/distinfo graphics/zimg/distinfo --- graphics/zimg.orig/distinfo Sun Nov 26 10:04:10 2000 +++ graphics/zimg/distinfo Sun Nov 26 10:05:11 2000 @@ -1 +1 @@ -MD5 (zimg-4.2.2.tar.gz) = ac566cbdeeccf48ae9fe6db920b00ede +MD5 (zimg-4.4.0.tar.gz) = 39e51064b91e8dcdf6ab9a582a054ebe >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 Nov 26 10:11:50 2000 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 D6A3E37B479; Sun, 26 Nov 2000 10:11:48 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA44302; Sun, 26 Nov 2000 10:11:48 -0800 (PST) (envelope-from dannyboy@FreeBSD.org) Date: Sun, 26 Nov 2000 10:11:48 -0800 (PST) From: Message-Id: <200011261811.KAA44302@freefall.freebsd.org> To: pfeifer@dbai.tuwien.ac.at, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22974: Minor Makefile update for the Wine port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Minor Makefile update for the Wine port State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Sun Nov 26 10:11:29 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22974 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 11: 0: 8 2000 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 3F4A437B4C5 for ; Sun, 26 Nov 2000 11:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA49985; Sun, 26 Nov 2000 11:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from rodan.water-programs.com (cc994333-a.rcrdva1.ca.home.com [24.176.177.42]) by hub.freebsd.org (Postfix) with ESMTP id D83AA37B479 for ; Sun, 26 Nov 2000 10:54:21 -0800 (PST) Received: (from scottj@localhost) by rodan.water-programs.com (8.11.1/8.11.1) id eAQIreN20018; Sun, 26 Nov 2000 10:53:40 -0800 (PST) (envelope-from scottj) Message-Id: <200011261853.eAQIreN20018@rodan.water-programs.com> Date: Sun, 26 Nov 2000 10:53:40 -0800 (PST) From: joseph@randomnetworks.com Reply-To: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23116: UPDATE PORT ftp/lftp (2.3.4 -> 2.3.5) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23116 >Category: ports >Synopsis: UPDATE PORT ftp/lftp (2.3.4 -> 2.3.5) >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 Nov 26 11:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: FreeBSD 4.2-BETA i386 >Organization: randomnnetworks.com >Environment: ports collection >Description: UPDATE PORT ftp/lftp (2.3.4 -> 2.3.5) From the Change Log for 2.3.5 : Several bugs fixed, some minor improvements added. - implemented [ipv6::address]:port as specified by rfc2732. - fixed local tilde globbing. - don't wait for file lock forever; print warning if locking fails. - save cwd_history only if needed. - `queue' command now sets last job number to itself. - optimize number of poll calls during ftp transfer. - fixed mput for directory case (continue loop instead of returning). - don't queue up too much MDTM/SIZE commands in sync mode. - fixed --with-modules compilation. >How-To-Repeat: >Fix: This diff was generated from /usr/port by : diff -ruN ftp/lftp.orig ftp/lftp -------------------------------------------------- diff -ruN ftp/lftp.orig/Makefile ftp/lftp/Makefile --- ftp/lftp.orig/Makefile Sun Nov 26 10:41:40 2000 +++ ftp/lftp/Makefile Sun Nov 26 10:42:13 2000 @@ -6,7 +6,7 @@ # PORTNAME= lftp -PORTVERSION= 2.3.4 +PORTVERSION= 2.3.5 CATEGORIES= ftp ipv6 MASTER_SITES= ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/ \ ${MASTER_SITE_SUNSITE} diff -ruN ftp/lftp.orig/distinfo ftp/lftp/distinfo --- ftp/lftp.orig/distinfo Sun Nov 26 10:41:40 2000 +++ ftp/lftp/distinfo Sun Nov 26 10:45:22 2000 @@ -1 +1 @@ -MD5 (lftp-2.3.4.tar.bz2) = b86442b6a61818cf526bb06707aa51e4 +MD5 (lftp-2.3.5.tar.bz2) = 9d93c0b0f59f5d8a92d0f309ae1c73d0 >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 Nov 26 11:30: 6 2000 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 E9F8537B4C5 for ; Sun, 26 Nov 2000 11:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA54803; Sun, 26 Nov 2000 11:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by hub.freebsd.org (Postfix) with ESMTP id 5A87437B479 for ; Sun, 26 Nov 2000 11:26:25 -0800 (PST) Received: (from root@localhost) by 214.norrgarden.se (8.11.1/8.11.1) id eAQJQSL67541; Sun, 26 Nov 2000 20:26:28 +0100 (CET) (envelope-from cj) Message-Id: <200011261926.eAQJQSL67541@214.norrgarden.se> Date: Sun, 26 Nov 2000 20:26:28 +0100 (CET) From: cj@vallcom.net Reply-To: cj@vallcom.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23117: Update port: ftp/lftp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23117 >Category: ports >Synopsis: Update port: ftp/lftp >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 Nov 26 11:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Carl Johan Madestrand >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: >Description: update lftp port >How-To-Repeat: >Fix: diff -urN /usr/ports/ftp/lftp/Makefile lftp/Makefile --- /usr/ports/ftp/lftp/Makefile Sun Oct 15 10:12:00 2000 +++ lftp/Makefile Sun Nov 26 18:55:50 2000 @@ -6,7 +6,7 @@ # PORTNAME= lftp -PORTVERSION= 2.3.4 +PORTVERSION= 2.3.5 CATEGORIES= ftp ipv6 MASTER_SITES= ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/ \ ${MASTER_SITE_SUNSITE} diff -urN /usr/ports/ftp/lftp/distinfo lftp/distinfo --- /usr/ports/ftp/lftp/distinfo Sun Oct 15 10:12:00 2000 +++ lftp/distinfo Sun Nov 26 18:58:13 2000 @@ -1 +1 @@ -MD5 (lftp-2.3.4.tar.bz2) = b86442b6a61818cf526bb06707aa51e4 +MD5 (lftp-2.3.5.tar.bz2) = 9d93c0b0f59f5d8a92d0f309ae1c73d0 >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 Nov 26 11:45:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.prod.itd.earthlink.net [207.217.121.85]) by hub.freebsd.org (Postfix) with ESMTP id 7A64737B479; Sun, 26 Nov 2000 11:45:21 -0800 (PST) Received: from veager.siteplus.net (1Cust216.tnt2.chattanooga.tn.da.uu.net [63.26.98.216]) by gull.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id LAA15189; Sun, 26 Nov 2000 11:45:18 -0800 (PST) Date: Sun, 26 Nov 2000 14:44:46 -0500 (EST) From: Jim Weeks To: freebsd-isp@freebsd.org Cc: freebsd-ports@freebsd.org Subject: apache-ssl-php4-fp solution Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I will preface this by saying I am no authority in this field, but I have seen a few posts on this subject and hope this may help someone else in a simular situation. To the matter at hand. I had several production servers running 3.X-stable. All of these were running apache-ssl-php3-frontpage with php3 and frontpage compiled into the binary and ssl as DSO. This presented a problem in upgrading to php4. You may have noticed that there are a lot of new DSO modules in /usr/ports/www. The problem is that some, such as mod_ssl, are only available from RELENG_4, and seem to be 4.X dependent. After building Apache a *lot* of different ways, including from source, I have come to this conclusion. This task can be done easily with the ports collection, even for the 3.X platform. First, you must download and install the FreeBSD version of frontpage extensions into /usr/local. They may be found at, http://msdn.microsoft.com/workshop/languages/fp/2000/unixfpse.asp Now, we can easily adapt /usr/ports/www/apache13-modssl. This can be done by copying two files already present on the machine and making one entry in the Makefile. Php4 "/usr/ports/www/mod_php4" can be added after apache has been compiled. The first file: Copy the apache frontpage patch "fp-patch-apache_1.3.12" from /usr/local/frontpage/version4.0/apache-fp/ to /usr/ports/www/apache13-modssl/files/ and rename it patch-aj The second file: $ cd /usr/ports/www/apache13-modssl $ cp ../apache13-fp/files/mod_frontpage.c \ > files/mod_frontpage.c Edit the Makefile: Place "--add-module=mod_frontpage.c" near the bottom of the CONFIGURE_ARGS section. Mine looks like this. CONFIGURE_ARGS= --prefix=${PREFIX} \ --server-gid=nogroup \ --with-perl=${PERL} \ --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \ --suexec-docroot=${PREFIX}/www/data \ --without-confadjust \ --enable-module=most \ --enable-module=auth_db \ --enable-module=mmap_static \ --disable-module=auth_dbm \ --enable-shared=max \ --enable-module=ssl \ --add-module=mod_frontpage.c \ --enable-module=define Finish up: $ make $ make certificate $ make install $ make clean $ cd ../mod_php4 $ make $ make install $ make clean Appropriate entries for enabling mod_php4 will automatically be added to httpd.conf when the module is built. You may need to add frontpage yourself. Just add "AddModule mod_frontpage.c" to the AddModule list. Good luck, -- Jim Weeks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 12:42: 6 2000 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 BD97F37B479; Sun, 26 Nov 2000 12:42:04 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64439; Sun, 26 Nov 2000 12:42:04 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 26 Nov 2000 12:42:04 -0800 (PST) From: Message-Id: <200011262042.MAA64439@freefall.freebsd.org> To: naddy@mips.inka.de, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21755: update editors/nano to 0.9.19 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update editors/nano to 0.9.19 State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 26 12:41:35 PST 2000 State-Changed-Why: Superseded by an upgrade to 0.9.21 http://www.freebsd.org/cgi/query-pr.cgi?pr=21755 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 13:31:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id B2C3537B4C5 for ; Sun, 26 Nov 2000 13:31:26 -0800 (PST) Received: (from kris@localhost) by citusc17.usc.edu (8.11.1/8.11.1) id eAQLWLV38471; Sun, 26 Nov 2000 13:32:21 -0800 (PST) (envelope-from kris) Date: Sun, 26 Nov 2000 13:32:21 -0800 From: Kris Kennaway To: joseph@randomnetworks.com Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/editors/nano Makefile distinfo Message-ID: <20001126133220.A38418@citusc17.usc.edu> References: <200011242245.OAA71743@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from joseph@randomnetworks.com on Sun, Nov 26, 2000 at 09:40:38AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Nov 26, 2000 at 09:40:38AM -0800, joseph@randomnetworks.com wrote: > # Upgrade to nano 0.9.21 after maintainer timeout >=20 > It looks like pr ports/21755 is well out of date then (it updated > nano from 0.9.16 to 0.9.19). That PR does other stuff which I didn't do..I'll leave it open for now since some of it seems to still apply. Kris --h31gzZEtNLTqOjlF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjohgWQACgkQWry0BWjoQKU4YgCg30InQ2p1HRJK5JNc+0F4izCa w7YAoLu/Qmde6SVf+TGb60kTn1yknf2f =FqZd -----END PGP SIGNATURE----- --h31gzZEtNLTqOjlF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 14:22:45 2000 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 E620737B479; Sun, 26 Nov 2000 14:22:43 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA78804; Sun, 26 Nov 2000 14:22:43 -0800 (PST) (envelope-from roam@FreeBSD.org) Date: Sun, 26 Nov 2000 14:22:43 -0800 (PST) From: Message-Id: <200011262222.OAA78804@freefall.freebsd.org> To: joseph@randomnetworks.com, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23116: UPDATE PORT ftp/lftp (2.3.4 -> 2.3.5) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: UPDATE PORT ftp/lftp (2.3.4 -> 2.3.5) State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Sun Nov 26 14:21:55 PST 2000 State-Changed-Why: ports/23117 contains the same fix, sent in by the port maintainer :) http://www.freebsd.org/cgi/query-pr.cgi?pr=23116 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 15: 7:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mikehan.com (giles.mikehan.com [63.201.69.194]) by hub.freebsd.org (Postfix) with ESMTP id 608FB37B479 for ; Sun, 26 Nov 2000 15:07:30 -0800 (PST) Received: (from mikehan@localhost) by mikehan.com (8.11.1/8.9.3) id eAQMb8W15523; Sun, 26 Nov 2000 14:37:08 -0800 (PST) (envelope-from mikehan) Date: Sun, 26 Nov 2000 14:37:08 -0800 From: Michael Han To: Terry Dwyer Cc: ports@freebsd.org Subject: Re: Internet Movie Database (ports/misc/moviedb dumps core during title display Message-ID: <20001126143708.E8913@giles.mikehan.com> References: <3A120602.9F2124BB@bigpond.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A120602.9F2124BB@bigpond.com>; from tdwyer@bigpond.com on Wed, Nov 15, 2000 at 11:41:54AM +0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In my quest to fix the problem I've been having, I discovered this email, which I've snipped many pieces of. On Wed, Nov 15, 2000 at 11:41:54AM +0800, Terry Dwyer wrote: > > I thought I'd post the problem here with what I know about it > in the hope that someone else can tell me that it must be a > problem with my system (and how to fix it) or confirm it is a > real bug. I think so since I've been having the same problem. > Since a search of the mailing lists produces nothing but > unassigned bug reports containg my problem report and a > record of the conversations between the submitter and the > committer, I gather that no one has actually installed > the port but me 8-(. I've never installed the port (I just discovered it existed), but I'm running 3.14 locally, with munged paths similar to the ports layout. > > Program received signal SIGSEGV, Segmentation fault. > 0x280d79bc in strcmp () from /usr/lib/libc.so.4 > (gdb) bt > #0 0x280d79bc in strcmp () from /usr/lib/libc.so.4 > #1 0x8052118 in titleResultSort (e1=0x805a6a4, e2=0x805a5f0) at > display.c:903 > #2 0x280d68c3 in qsort () from /usr/lib/libc.so.4 > #3 0x80521dc in displayFilmographyListData (trec=0x805a000) at > display.c:933 > #4 0x8052b06 in displayTitleSearchRec (trec=0x805a000, tidy=1) at > display.c:1219 > #5 0x8052be6 in displayTitleSearchResults (tchain=0x805a000, > tidy=1) at display.c:1250 > ----------------------------------------------------------------- > > Can anyone help with this as I have now reached the limit of > my debugging skills. Well, using truss revealed that title begins returning errors like: open("/usr/local/share/imdb/names.index",0,0666) = 4 (0x4) open("/usr/local/share/imdb/names.key",0,0666) = 5 (0x5) fstat(4,0xbfbfee50) = 0 (0x0) lseek(4,0x0,1) = 0 (0x0) lseek(4,0x6e6000,0) = 7233536 (0x6e6000) read(0x4,0x805a000,0x2000) = 0 (0x0) lseek(4,0x6e6250,0) = 7234128 (0x6e6250) read(0x4,0x805a000,0x2000) = 0 (0x0) fstat(5,0xbfbfee50) = 0 (0x0) lseek(5,0x0,1) = 0 (0x0) lseek(5,0xffffffffffffe000,0) = -8192 (0xffffe000) read(0x5,0x805c000,0x2000) ERR#27 'File too large' lseek(5,0xffffffffffffffff,0) = -1 (0xffffffff) I'm assuming this accounts for the trec.entries array of structs getting clogged up with crap, as seen below: ..., {nameKey = 2462344, attrKey = 44108, name = 0x0, attr = 0x808f440 "(production assistant)", cname = 0x0, position = 255, lineOrder = 255, groupOrder = 255, subgroupOrder = 255}, { nameKey = 4294967295, attrKey = 16777215, name = 0x0, attr = 0x0, cname = 0x0, position = 0, lineOrder = 0, groupOrder = 0, subgroupOrder = 0} }, ... ^!!!!!!!!!!!!!!!!!!^ This is a snippet from gdb, 'print *trec'. When the title(1) proceeds to attempt to sort the trec.entries for display, it finds itself dealing with garbage data and proceeds to segfault. The seek errors appear to surface during: char *mapNameKeyToText ( NameID nameKey, FILE *nameKeyFp, FILE *nameIndexFp ) { char line [ MXLINELEN ] ; long offset ; (void) fseek ( nameIndexFp, 4 * nameKey, SEEK_SET ) ; offset = getFullOffset ( nameIndexFp ) ; (void) fseek ( nameKeyFp, offset, SEEK_SET ) ; (void) fgets ( line, MXLINELEN, nameKeyFp ) ; return ( duplicateField ( line ) ) ; } which begins at line 1044 in src/dbutils.c in the 3.14 sources. The getFullOffset function is at line 400 of same and looks like: long getFullOffset (FILE *stream) { long offset ; offset = fgetc ( stream ) & 255 ; offset |= fgetc ( stream ) << 8 ; offset |= fgetc ( stream ) << 16 ; offset |= fgetc ( stream ) << 24 ; return ( offset ) ; } Anyone got a clue what's going on here? I don't really understand things well enough to figure out where the problem lies... The bitwise math in getFullOffset() looks suspicious to me though. -- mikehan@mikehan.com http://www.mikehan.com/ coffee achiever San Francisco, California "I am not a number; I am a free man!" - Number Six To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 15:54: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id 2E54F37B479; Sun, 26 Nov 2000 15:53:51 -0800 (PST) Received: (from kris@localhost) by citusc17.usc.edu (8.11.1/8.11.1) id eAQNslS41251; Sun, 26 Nov 2000 15:54:47 -0800 (PST) (envelope-from kris) Date: Sun, 26 Nov 2000 15:54:47 -0800 From: Kris Kennaway To: dougb@FreeBSD.ORG Cc: naddy@mips.inka.de, freebsd-ports@FreeBSD.ORG Subject: Re: ports/21755: update editors/nano to 0.9.19 Message-ID: <20001126155447.A41195@citusc17.usc.edu> References: <200011262042.MAA64439@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011262042.MAA64439@freefall.freebsd.org>; from dougb@FreeBSD.ORG on Sun, Nov 26, 2000 at 12:42:04PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Nov 26, 2000 at 12:42:04PM -0800, dougb@FreeBSD.ORG wrote: > Synopsis: update editors/nano to 0.9.19 >=20 > State-Changed-From-To: open->closed > State-Changed-By: dougb > State-Changed-When: Sun Nov 26 12:41:35 PST 2000 > State-Changed-Why:=20 >=20 > Superseded by an upgrade to 0.9.21 Actually this PR seems to contain other stuff which I didn't commit..it should be reopened for someone to take a look at. Kris --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjohoscACgkQWry0BWjoQKVDfgCgrMdgXfawQFY6cllu5lMwPRgV visAn0UkYy8EFJ3ENzsew6s7I2ZzyrD9 =0Pnb -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 16:51:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tk212017121218.teleweb.at (TK212017121218.teleweb.at [212.17.121.218]) by hub.freebsd.org (Postfix) with SMTP id 57E2F37B479 for ; Sun, 26 Nov 2000 16:51:19 -0800 (PST) Received: (qmail 73894 invoked from network); 27 Nov 2000 00:50:38 -0000 Received: from unknown (HELO freebsd2.rocks) (192.168.1.3) by 192.168.1.1 with SMTP; 27 Nov 2000 00:50:38 -0000 Received: (qmail 17724 invoked by uid 1001); 27 Nov 2000 00:51:14 -0000 Date: Mon, 27 Nov 2000 01:51:14 +0100 From: Herbert To: freebsd-ports@FreeBSD.ORG Subject: /usr/ports/x11-toolkits/qt22/ Message-ID: <20001127015114.A16914@freebsd2.rocks> 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.2-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hei! Today I recompiled XFree-4.0.1 with hardware acceleration for my matrox G400 and mesa with XFREE_VERSION=4. Afterwards I wasn't able to build the qt22-port, because it couldn't find GL1.4. I only have libGL.so.1 in /usr/X11R6/lib. This is defined in /usr/ports/Mk/bsd.port.mk: .if defined(USE_MESA) LIB_DEPENDS+= GL.14:$PORTSDIR/graphics/Mesa3 .endif I had to change that to "LIB_DEPENDS+= GL.1:$PORTSDIR/graphics/Mesa3". When I built mesa without XFREE_VERSION=4 a few days ago, I had no problems to build the qt22-port. Is there something wrong on my system? My ports collection? Regards, Herbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 17:26: 7 2000 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 57DCD37B479; Sun, 26 Nov 2000 17:26:05 -0800 (PST) Received: from palle.girgensohn.se (c193.150.250.87.cm-upc.chello.se [193.150.250.87]) by bastuba.partitur.se (8.9.3/8.9.3) with ESMTP id CAA36162; Mon, 27 Nov 2000 02:26:02 +0100 (CET) (envelope-from girgen@partitur.se) Received: from partitur.se (localhost [127.0.0.1]) by palle.girgensohn.se (8.11.1/8.11.1) with ESMTP id eAR1Q2f66216; Mon, 27 Nov 2000 02:26:02 +0100 (CET) (envelope-from girgen@partitur.se) Message-ID: <3A21B82A.DD5DFB70@partitur.se> Date: Mon, 27 Nov 2000 02:26:02 +0100 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: sv, en MIME-Version: 1.0 To: freebsd-gnats-submit@FreeBSD.org, girgen@partitur.se, freebsd-ports@FreeBSD.org Subject: Re: pending/23044: update: www/gnujsp to 1.0.1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This PR seems to be misfiled. Could someone please move it to category "ports"? http://www.freebsd.org/cgi/query-pr.cgi?pr=23044 Thanks, Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 17:30: 6 2000 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 14FCF37B479 for ; Sun, 26 Nov 2000 17:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA05848; Sun, 26 Nov 2000 17:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 26 Nov 2000 17:30:03 -0800 (PST) Message-Id: <200011270130.RAA05848@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Mario Sergio Fujikawa Ferreira" Subject: Re: ports/22950 Reply-To: "Mario Sergio Fujikawa Ferreira" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22950; it has been noted by GNATS. From: "Mario Sergio Fujikawa Ferreira" To: Jason R Mastaler Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/22950 Date: Sun, 26 Nov 2000 23:23:56 -0200 Since we haven't found a solution for the configure problem. I am considering the following patch, let me know what you think. diff -ruN mad/Makefile ../mad/Makefile --- mad/Makefile Sun Nov 26 23:15:42 2000 +++ ../mad/Makefile Sun Nov 26 23:09:52 2000 @@ -1,6 +1,6 @@ # New ports collection makefile for: mad # Date created: 18 November 2000 -# Whom: Jason R. Mastaler +# Whom: Jason R. Mastaler et al. # # $FreeBSD$ # @@ -15,6 +15,10 @@ MAINTAINER= jason-freebsd@mastaler.com GNU_CONFIGURE= yes +# This is port is not CFLAGS SAFE, something like CFLAGS="-pipe -pipe" +# breaks configure and configure likes to use -O2 instead of +# trusting the system. We'll have it use -O instead of -O* +CONFIGURE_ENV= CFLAGS="-O -pipe" USE_GMAKE= yes USE_LIBTOOL= yes diff -ruN mad/files/patch-aa ../mad/files/patch-aa --- mad/files/patch-aa Sun Nov 26 23:15:42 2000 +++ ../mad/files/patch-aa Sun Nov 26 23:14:50 2000 @@ -1,6 +1,30 @@ ---- configure.orig Fri Nov 17 11:09:43 2000 -+++ configure Fri Nov 17 11:10:07 2000 -@@ -5439,10 +5439,6 @@ +This port is not CFLAGS safe. I will not try to make it on this +particular version. However, I will make it use -O instead of -O2 +since I am told that -O2 brakes the alpha ARCH. Partially provided +by lioux@freebsd.org + +--- configure.orig Fri Nov 17 04:20:18 2000 ++++ configure Sun Nov 26 22:56:39 2000 +@@ -3800,7 +3800,8 @@ + then + case "$host" in + i386-*) ARCH="" ;; +- i?86-*) ARCH="-m486" ;; ++ i486-*) ARCH="-m486" ;; ++ i586-*) ARCH="-mpentium" ;; + arm-empeg-*) ARCH="-march=armv4 -mtune=strongarm1100" ;; + armv4*-*) ARCH="-march=armv4 -mtune=strongarm" ;; + mips*-*) ARCH="" ;; +@@ -3813,7 +3814,7 @@ + esac + + case "$CFLAGS" in +- *-O*) OPTIMIZER="-O2" ;; ++ *-O*) OPTIMIZER="-O" ;; + esac + + CFLAGS=`echo ".$CFLAGS" | \ +@@ -5439,10 +5440,6 @@ *) # Relative path. ac_sub_cache_file="$ac_dots$cache_file" ;; esac -- Mario S F Ferreira - UnB - Brazil - "I guess this is a signature." lioux at ( freebsd dot org | linf dot unb dot br ) flames to beloved devnull@someotherworldbeloworabove.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 18:30: 6 2000 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 0FC1D37B4C5 for ; Sun, 26 Nov 2000 18:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA15435; Sun, 26 Nov 2000 18:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from wizard.netlab.is.tsukuba.ac.jp (wizard.netlab.is.tsukuba.ac.jp [130.158.85.11]) by hub.freebsd.org (Postfix) with SMTP id 2AACA37B479 for ; Sun, 26 Nov 2000 18:27:29 -0800 (PST) Received: (qmail 26465 invoked by uid 2402); 27 Nov 2000 02:27:22 -0000 Message-Id: <20001127022722.26464.qmail@wizard.netlab.is.tsukuba.ac.jp> Date: 27 Nov 2000 11:27:22 +0900 From: one@netlab.is.tsukuba.ac.jp Reply-To: one@netlab.is.tsukuba.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23119: Update port: graphics/tgif-nls to 4.1.40 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23119 >Category: ports >Synopsis: Update port: graphics/tgif-nls to 4.1.40 >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 Nov 26 18:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: TANNO Hajime >Release: FreeBSD 4.2-RELEASE i386 >Organization: Computer Networks Laboratory, Institute of Information Sciences and Electronics, University of Tsukuba, JAPAN >Environment: FreeBSD 4.2-RELEASE i386 >Description: Update to vesrion 4.1.40 >How-To-Repeat: >Fix: diff -urN tgif-nls.orig/Makefile tgif-nls/Makefile --- tgif-nls.orig/Makefile Wed Nov 8 04:44:45 2000 +++ tgif-nls/Makefile Tue Nov 14 03:51:21 2000 @@ -6,7 +6,7 @@ # PORTNAME= tgif -PORTVERSION= 4.1.39 +PORTVERSION= 4.1.40 CATEGORIES= graphics MASTER_SITES= ftp://bourbon.cs.umd.edu/pub/tgif/ \ ftp://ftp.cs.ucla.edu/pub/tgif/ \ @@ -45,7 +45,7 @@ ${MV} tgif.Xdefaults tgif.Xdefaults.org; \ ${SED} -e "s#/usr/local#${PREFIX}#" \ -e "s#/usr/share/lib#${PREFIX}/share/locale#" \ - tgif.Xdefaults.org > tgif.Xdefaults ;\ + tgif.Xdefaults.org > tgif.Xdefaults \ ) post-install: @@ -53,7 +53,7 @@ ${MKDIR} ${TGIFDOC}; ${MKDIR} ${TGIFDEMO} (cd ${WRKSRC} ;\ ${INSTALL_DATA} ${DEMO_FILES} ${TGIFDEMO} ;\ - ${INSTALL_DATA} ${READMES} ${TGIFDOC} ;\ + ${INSTALL_DATA} ${READMES} ${TGIFDOC} \ ) ${MKDIR} ${TGIFDEMO}/spice (cd ${WRKSRC}/spice ;\ diff -urN tgif-nls.orig/distinfo tgif-nls/distinfo --- tgif-nls.orig/distinfo Wed Nov 8 04:44:45 2000 +++ tgif-nls/distinfo Tue Nov 14 03:37:00 2000 @@ -1 +1 @@ -MD5 (tgif-4.1.39.tar.gz) = 46dbdc5c189a8a644d34158b2c92e627 +MD5 (tgif-4.1.40.tar.gz) = 074259ef17f39c664eb974b6804da9a1 diff -urN tgif-nls.orig/files/patch-aa tgif-nls/files/patch-aa --- tgif-nls.orig/files/patch-aa Wed Nov 8 04:44:45 2000 +++ tgif-nls/files/patch-aa Tue Nov 14 03:36:17 2000 @@ -4,8 +4,8 @@ .\" .\" .\" --.TH tgif n "Version 4.1 Patchlevel 39 and Above" "Tgif" -+.TH tgif 1L "Version 4.1 Patchlevel 39 and Above" "Tgif" +-.TH tgif n "Version 4.1 Patchlevel 40 and Above" "Tgif" ++.TH tgif 1L "Version 4.1 Patchlevel 40 and Above" "Tgif" .\" .SH NAME .\" >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 Nov 26 20:10: 8 2000 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 BD02B37B4CF for ; Sun, 26 Nov 2000 20:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA32198; Sun, 26 Nov 2000 20:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mharnois.workgroup.net (c1030098-a.wtrlo1.ia.home.com [24.11.39.39]) by hub.freebsd.org (Postfix) with ESMTP id 52CC437B479 for ; Sun, 26 Nov 2000 20:06:35 -0800 (PST) Received: (from mdharnois@localhost) by mharnois.workgroup.net (8.11.1/8.11.1) id eAR46XX07225; Sun, 26 Nov 2000 22:06:34 -0600 (CST) (envelope-from mdharnois) Message-Id: <200011270406.eAR46XX07225@mharnois.workgroup.net> Date: Sun, 26 Nov 2000 22:06:34 -0600 (CST) From: mdharnois@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23122: programs requiring glib13 fail in configure Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23122 >Category: ports >Synopsis: programs requiring glib13 fail in configure >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 26 20:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Michael Harnois >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD mharnois.workgroup.net 5.0-CURRENT FreeBSD 5.0-CURRENT #19: Sun Nov 26 21:12:32 CST 2000 mdharnois@mharnois.workgroup.net:/usr/src/sys/compile/MYKERNEL i386 >Description: (This is from pango. gtk13 gives same result.) configure:2123: cc -o conftest -O -pipe -march=i686 -Wall -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/X11R6/include -L/usr/local/lib -L/usr/X11R6/lib conftest.c -L/usr/local/lib -Wl,-E -lgmodule-1.3 -lgobject-1.3 -lglib-1.3 -lgiconv 1>&5 In file included from /usr/local/include/glib-2.0/gtypes.h:30, from /usr/local/include/glib-2.0/galloca.h:30, from /usr/local/include/glib-2.0/glib.h:30, from configure:2049: /usr/local/lib/glib-2.0/include/glibconfig.h:43: syntax error before `typedef' /usr/local/lib/glib-2.0/include/glibconfig.h:44: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/galloca.h:30, from /usr/local/include/glib-2.0/glib.h:30, from configure:2049: /usr/local/include/glib-2.0/gtypes.h:41: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:31, from configure:2049: /usr/local/include/glib-2.0/garray.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/garray.h:34: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/gerror.h:24, from /usr/local/include/glib-2.0/gthread.h:30, from /usr/local/include/glib-2.0/gasyncqueue.h:30, from /usr/local/include/glib-2.0/glib.h:32, from configure:2049: /usr/local/include/glib-2.0/gquark.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gquark.h:34: syntax error before `typedef' /usr/local/include/glib-2.0/gquark.h:41: syntax error before `G_GNUC_CONST' In file included from /usr/local/include/glib-2.0/gthread.h:30, from /usr/local/include/glib-2.0/gasyncqueue.h:30, from /usr/local/include/glib-2.0/glib.h:32, from configure:2049: /usr/local/include/glib-2.0/gerror.h:28: syntax error before `typedef' /usr/local/include/glib-2.0/gerror.h:40: syntax error before `G_GNUC_PRINTF' /usr/local/include/glib-2.0/gerror.h:60: syntax error before `G_GNUC_PRINTF' In file included from /usr/local/include/glib-2.0/gthread.h:31, from /usr/local/include/glib-2.0/gasyncqueue.h:30, from /usr/local/include/glib-2.0/glib.h:32, from configure:2049: /usr/local/include/glib-2.0/gmain.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gmain.h:36: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/gasyncqueue.h:30, from /usr/local/include/glib-2.0/glib.h:32, from configure:2049: /usr/local/include/glib-2.0/gthread.h:33: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gthread.h:50: syntax error before `extern' In file included from /usr/local/include/glib-2.0/glib.h:32, from configure:2049: /usr/local/include/glib-2.0/gasyncqueue.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gasyncqueue.h:34: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:33, from configure:2049: /usr/local/include/glib-2.0/gbacktrace.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gbacktrace.h:43: syntax error before `void' In file included from /usr/local/include/glib-2.0/glist.h:30, from /usr/local/include/glib-2.0/gcache.h:30, from /usr/local/include/glib-2.0/glib.h:34, from configure:2049: /usr/local/include/glib-2.0/gmem.h:38: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gmem.h:40: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/gcache.h:30, from /usr/local/include/glib-2.0/glib.h:34, from configure:2049: /usr/local/include/glib-2.0/glist.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/glist.h:34: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:34, from configure:2049: /usr/local/include/glib-2.0/gcache.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gcache.h:34: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:35, from configure:2049: /usr/local/include/glib-2.0/gcompletion.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gcompletion.h:34: syntax error before `typedef' In file included from /usr/include/stddef.h:41, from /usr/local/include/glib-2.0/gconvert.h:30, from /usr/local/include/glib-2.0/glib.h:36, from configure:2049: /usr/include/machine/ansi.h:108: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:36, from configure:2049: /usr/local/include/glib-2.0/gconvert.h:35: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:37, from configure:2049: /usr/local/include/glib-2.0/gdataset.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gdataset.h:34: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:38, from configure:2049: /usr/local/include/glib-2.0/gdate.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gdate.h:43: syntax error before `typedef' /usr/local/include/glib-2.0/gdate.h:130: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:131: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:132: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:133: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:134: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:137: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:201: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:203: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:204: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:205: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/gdate.h:216: syntax error before `g_date_strftime' /usr/local/include/glib-2.0/gdate.h:217: syntax error before `gsize' /usr/local/include/glib-2.0/gdate.h:219: warning: type defaults to `int' in declaration of `g_date_strftime' /usr/local/include/glib-2.0/gdate.h:219: warning: data definition has no type or storage class In file included from /usr/local/include/glib-2.0/glib.h:40, from configure:2049: /usr/local/include/glib-2.0/gfileutils.h:26: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/gfileutils.h:30: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:41, from configure:2049: /usr/local/include/glib-2.0/ghash.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/ghash.h:34: syntax error before `typedef' /usr/local/include/glib-2.0/ghash.h:76: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/ghash.h:77: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/ghash.h:85: syntax error before `G_GNUC_CONST' /usr/local/include/glib-2.0/ghash.h:87: syntax error before `G_GNUC_CONST' In file included from /usr/local/include/glib-2.0/glib.h:42, from configure:2049: /usr/local/include/glib-2.0/ghook.h:34: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:43, from configure:2049: /usr/local/include/glib-2.0/giochannel.h:32: syntax error before `G_BEGIN_DECLS' /usr/local/include/glib-2.0/giochannel.h:37: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:47, from configure:2049: /usr/local/include/glib-2.0/gmarkup.h:31: syntax error before `typedef' In file included from /usr/local/include/glib-2.0/glib.h:60, from configure:2049: /usr/local/include/glib-2.0/gstrfuncs.h:57: syntax error before `g_strlcpy' /usr/local/include/glib-2.0/gstrfuncs.h:59: syntax error before `gsize' /usr/local/include/glib-2.0/gstrfuncs.h:59: warning: type defaults to `int' in declaration of `g_strlcpy' /usr/local/include/glib-2.0/gstrfuncs.h:59: warning: data definition has no type or storage class /usr/local/include/glib-2.0/gstrfuncs.h:60: syntax error before `g_strlcat' /usr/local/include/glib-2.0/gstrfuncs.h:62: syntax error before `gsize' /usr/local/include/glib-2.0/gstrfuncs.h:62: warning: type defaults to `int' in declaration of `g_strlcat' /usr/local/include/glib-2.0/gstrfuncs.h:62: warning: data definition has no type or storage class >How-To-Repeat: cd /usr/ports/x11-toolkits/pango make cd /usr/ports/x11-toolkits/gtk13 make >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 Nov 26 22:10:10 2000 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 05E3237B4C5 for ; Sun, 26 Nov 2000 22:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA84559; Sun, 26 Nov 2000 22:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.tucheng.generalresources.com (a1.tucheng.generalresources.com [211.21.4.234]) by hub.freebsd.org (Postfix) with ESMTP id B782F37B479 for ; Sun, 26 Nov 2000 22:09:48 -0800 (PST) Received: from w40.tucheng.generalresources.com (w40.tucheng.generalresources.com [192.168.1.40]) by mail.tucheng.generalresources.com (8.11.1/8.11.1) with ESMTP id eAR69xm36028 for ; Mon, 27 Nov 2000 14:09:59 +0800 (CST) (envelope-from hsw@generalresources.com) Received: (from hsw@localhost) by w40.tucheng.generalresources.com (8.11.1/8.11.1) id eAR3ono43867; Mon, 27 Nov 2000 11:50:49 +0800 (CST) (envelope-from hsw) Message-Id: <200011270350.eAR3ono43867@w40.tucheng.generalresources.com> Date: Mon, 27 Nov 2000 11:50:49 +0800 (CST) From: Christopher Hall Reply-To: Christopher Hall To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/23124: xemacs*packages have been updated Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23124 >Category: ports >Synopsis: xemacs*packages have been updated >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 Nov 26 22:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Christopher Hall >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: cvsup of ports tree on 2000-11-27 >Description: Install of xemacs*packages as dependancy from an xemacs21 master port; fetch fails to find many dist files. The xemacs.org ftp server has many newer files than the various port Makefiles. I downloaded package-index.LATEST.pgp dated 2000-11-01 for the package revisions. >How-To-Repeat: cd /usr/ports/japanese/xemacs21-sumo-canna; make install >Fix: Here is a quick patch that I tried. --- xemacs-basic-mule-packages/Makefile Tue Oct 24 20:09:09 2000 +++ xemacs-basic-mule-packages/Makefile.new Fri Nov 17 15:29:43 2000 @@ -11,10 +11,10 @@ MASTER_SITES= ${MASTER_SITE_XEMACS} MASTER_SITE_SUBDIR= packages DISTFILES= \ - egg-its-1.22-pkg.tar.gz \ - elib-1.06-pkg.tar.gz \ + egg-its-1.23-pkg.tar.gz \ + elib-1.07-pkg.tar.gz \ locale-1.16-pkg.tar.gz \ - mule-base-1.34-pkg.tar.gz \ + mule-base-1.35-pkg.tar.gz \ skk-1.16-pkg.tar.gz DIST_SUBDIR= xemacs --- xemacs-comm-packages/Makefile Tue Oct 24 20:09:09 2000 +++ xemacs-comm-packages/Makefile.new Fri Nov 17 13:33:08 2000 @@ -11,19 +11,19 @@ MASTER_SITES= ${MASTER_SITE_XEMACS} MASTER_SITE_SUBDIR= packages DISTFILES= \ - bbdb-1.09-pkg.tar.gz \ - eicq-1.01-pkg.tar.gz \ - eudc-1.31-pkg.tar.gz \ + bbdb-1.10-pkg.tar.gz \ + eicq-1.02-pkg.tar.gz \ + eudc-1.32-pkg.tar.gz \ footnote-1.12-pkg.tar.gz \ - gnats-1.10-pkg.tar.gz \ - gnus-1.50-pkg.tar.gz \ - mew-1.10-pkg.tar.gz \ + gnats-1.11-pkg.tar.gz \ + gnus-1.51-pkg.tar.gz \ + mew-1.11-pkg.tar.gz \ mh-e-1.12-pkg.tar.gz \ rmail-1.11-pkg.tar.gz \ - supercite-1.15-pkg.tar.gz \ - tm-1.23-pkg.tar.gz \ - vm-1.24-pkg.tar.gz \ - zenirc-1.07-pkg.tar.gz + supercite-1.16-pkg.tar.gz \ + tm-1.24-pkg.tar.gz \ + vm-1.25-pkg.tar.gz \ + zenirc-1.08-pkg.tar.gz DIST_SUBDIR= xemacs MAINTAINER= kiri@pis.toba-cmt.ac.jp --- xemacs-games-packages/Makefile Tue Oct 24 20:09:10 2000 +++ xemacs-games-packages/Makefile.new Fri Nov 17 13:55:38 2000 @@ -13,7 +13,7 @@ DISTFILES= \ cookie-1.12-pkg.tar.gz \ games-1.12-pkg.tar.gz \ - mine-1.12-pkg.tar.gz \ + mine-1.13-pkg.tar.gz \ misc-games-1.14-pkg.tar.gz DIST_SUBDIR= xemacs --- xemacs-libs-packages/Makefile Tue Oct 24 20:09:12 2000 +++ xemacs-libs-packages/Makefile.new Fri Nov 17 14:09:22 2000 @@ -12,10 +12,10 @@ MASTER_SITE_SUBDIR= packages DISTFILES= \ Sun-1.12-pkg.tar.gz \ - edebug-1.10-pkg.tar.gz \ + edebug-1.11-pkg.tar.gz \ sounds-au-1.09-pkg.tar.gz \ sounds-wav-1.09-pkg.tar.gz \ - tooltalk-1.11-pkg.tar.gz + tooltalk-1.12-pkg.tar.gz DIST_SUBDIR= xemacs MAINTAINER= kiri@pis.toba-cmt.ac.jp --- xemacs-mule-packages/Makefile Tue Oct 24 20:09:12 2000 +++ xemacs-mule-packages/Makefile.new Fri Nov 17 16:01:46 2000 @@ -11,9 +11,9 @@ MASTER_SITES= ${MASTER_SITE_XEMACS} MASTER_SITE_SUBDIR= packages DISTFILES= \ - edict-1.09-pkg.tar.gz \ + edict-1.10-pkg.tar.gz \ leim-1.15-pkg.tar.gz \ - lookup-1.04-pkg.tar.gz + lookup-1.05-pkg.tar.gz DIST_SUBDIR= xemacs MAINTAINER= kiri@pis.toba-cmt.ac.jp --- xemacs-oa-packages/Makefile Tue Oct 24 20:09:13 2000 +++ xemacs-oa-packages/Makefile.new Fri Nov 17 14:21:04 2000 @@ -11,14 +11,14 @@ MASTER_SITES= ${MASTER_SITE_XEMACS} MASTER_SITE_SUBDIR= packages DISTFILES= \ - calc-1.12-pkg.tar.gz \ - calendar-1.14-pkg.tar.gz \ + calc-1.13-pkg.tar.gz \ + calendar-1.15-pkg.tar.gz \ forms-1.12-pkg.tar.gz \ frame-icon-1.08-pkg.tar.gz \ - pc-1.17-pkg.tar.gz \ - slider-1.11-pkg.tar.gz \ - speedbar-1.16-pkg.tar.gz \ - strokes-1.06-pkg.tar.gz + pc-1.18-pkg.tar.gz \ + slider-1.12-pkg.tar.gz \ + speedbar-1.17-pkg.tar.gz \ + strokes-1.07-pkg.tar.gz DIST_SUBDIR= xemacs MAINTAINER= kiri@pis.toba-cmt.ac.jp --- xemacs-prog-packages/Makefile Tue Oct 31 16:55:22 2000 +++ xemacs-prog-packages/Makefile.new Fri Nov 17 14:29:44 2000 @@ -11,9 +11,9 @@ MASTER_SITES= ${MASTER_SITE_XEMACS} MASTER_SITE_SUBDIR= packages DISTFILES= \ - ada-1.08-pkg.tar.gz \ - ediff-1.26-pkg.tar.gz \ - emerge-1.07-pkg.tar.gz \ + ada-1.09-pkg.tar.gz \ + ediff-1.27-pkg.tar.gz \ + emerge-1.08-pkg.tar.gz \ idlwave-1.22-pkg.tar.gz \ jde-1.23-pkg.tar.gz \ scheme-1.10-pkg.tar.gz \ --- xemacs-wp-packages/Makefile Tue Oct 24 20:09:15 2000 +++ xemacs-wp-packages/Makefile.new Fri Nov 17 14:44:51 2000 @@ -12,10 +12,10 @@ MASTER_SITE_SUBDIR= packages DISTFILES= \ crisp-1.11-pkg.tar.gz \ - edt-1.09-pkg.tar.gz \ - reftex-1.20-pkg.tar.gz \ - textools-1.10-pkg.tar.gz \ - tpu-1.10-pkg.tar.gz + edt-1.10-pkg.tar.gz \ + reftex-1.21-pkg.tar.gz \ + textools-1.11-pkg.tar.gz \ + tpu-1.11-pkg.tar.gz DIST_SUBDIR= xemacs MAINTAINER= kiri@pis.toba-cmt.ac.jp --- xemacs-packages/Makefile Tue Oct 24 20:09:14 2000 +++ xemacs-packages/Makefile.new Fri Nov 17 15:43:37 2000 @@ -11,35 +11,35 @@ MASTER_SITES= ${MASTER_SITE_XEMACS} MASTER_SITE_SUBDIR= packages DISTFILES= \ - apel-1.18-pkg.tar.gz \ - auctex-1.21-pkg.tar.gz \ - c-support-1.14-pkg.tar.gz \ - cc-mode-1.20-pkg.tar.gz \ - debug-1.11-pkg.tar.gz \ - dired-1.07-pkg.tar.gz \ - edit-utils-1.52-pkg.tar.gz \ - efs-1.20-pkg.tar.gz \ + apel-1.19-pkg.tar.gz \ + auctex-1.22-pkg.tar.gz \ + c-support-1.15-pkg.tar.gz \ + cc-mode-1.21-pkg.tar.gz \ + debug-1.12-pkg.tar.gz \ + dired-1.08-pkg.tar.gz \ + edit-utils-1.53-pkg.tar.gz \ + efs-1.21-pkg.tar.gz \ fsf-compat-1.07-pkg.tar.gz \ - hm--html-menus-1.14-pkg.tar.gz \ - ispell-1.19-pkg.tar.gz \ - mail-lib-1.30-pkg.tar.gz \ - mailcrypt-2.04-pkg.tar.gz \ - net-utils-1.13-pkg.tar.gz \ - os-utils-1.23-pkg.tar.gz \ - pcl-cvs-1.49-pkg.tar.gz \ - prog-modes-1.29-pkg.tar.gz \ - ps-print-nomule-1.03-pkg.tar.gz \ - psgml-1.19-pkg.tar.gz \ - sgml-1.06-pkg.tar.gz \ + hm--html-menus-1.15-pkg.tar.gz \ + ispell-1.21-pkg.tar.gz \ + mail-lib-1.33-pkg.tar.gz \ + mailcrypt-2.06-pkg.tar.gz \ + net-utils-1.14-pkg.tar.gz \ + os-utils-1.24-pkg.tar.gz \ + pcl-cvs-1.50-pkg.tar.gz \ + prog-modes-1.30-pkg.tar.gz \ + ps-print-nomule-1.04-pkg.tar.gz \ + psgml-1.20-pkg.tar.gz \ + sgml-1.07-pkg.tar.gz \ sh-script-1.12-pkg.tar.gz \ texinfo-1.19-pkg.tar.gz \ - text-modes-1.25-pkg.tar.gz \ - time-1.09-pkg.tar.gz \ - vc-1.23-pkg.tar.gz \ - viper-1.21-pkg.tar.gz \ - w3-1.15-pkg.tar.gz \ - xemacs-base-1.43-pkg.tar.gz \ - xemacs-devel-1.28-pkg.tar.gz + text-modes-1.28-pkg.tar.gz \ + time-1.10-pkg.tar.gz \ + vc-1.24-pkg.tar.gz \ + viper-1.22-pkg.tar.gz \ + w3-1.16-pkg.tar.gz \ + xemacs-base-1.46-pkg.tar.gz \ + xemacs-devel-1.30-pkg.tar.gz DIST_SUBDIR= xemacs MAINTAINER= kiri@pis.toba-cmt.ac.jp >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 Nov 26 22:11:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 9522037B479; Sun, 26 Nov 2000 22:11:41 -0800 (PST) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer goliath.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by goliath.siemens.de (8.11.0/8.11.0) with ESMTP id eAR6Bcl08521; Mon, 27 Nov 2000 07:11:38 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail2.siemens.de (8.11.0/8.11.0) with ESMTP id eAR6BcU13688; Mon, 27 Nov 2000 07:11:38 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.1/8.11.1) id eAR6Bb207133; Date: Mon, 27 Nov 2000 07:11:37 +0100 From: Andre Albsmeier To: dougb@FreeBSD.org Cc: andre.albsmeier@mchp.siemens.de, freebsd-ports@FreeBSD.org, brian@Awfulhak.org Subject: Re: ports/23017: [PATCH] for arpwatch to log PID to syslog Message-ID: <20001127071137.A71003@curry.mchp.siemens.de> References: <200011250553.VAA26763@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: <200011250553.VAA26763@freefall.freebsd.org>; from dougb@FreeBSD.org on Fri, Nov 24, 2000 at 09:53:39PM -0800 X-Echelon: BND CIA NSA Mossad KGB MI6 IRA detonator nuclear assault strike Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 24-Nov-2000 at 21:53:39 -0800, dougb@FreeBSD.org wrote: > Synopsis: [PATCH] for arpwatch to log PID to syslog > > State-Changed-From-To: open->closed > State-Changed-By: dougb > State-Changed-When: Fri Nov 24 21:52:28 PST 2000 > State-Changed-Why: > > It's more appropriate to submit a patch like this to the > port's author. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23017 So could you please assing it to him? MAINTAINER= brian@Awfulhak.org Thanks, -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 22:31:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fester.unkempt.net (cm623478-a.ftwrth1.tx.home.com [24.4.14.251]) by hub.freebsd.org (Postfix) with ESMTP id 48E2137B4E5; Sun, 26 Nov 2000 22:31:44 -0800 (PST) Received: from rufus (rufus.unkempt.net [192.168.0.50]) by fester.unkempt.net (8.9.3/8.9.3) with SMTP id AAA05387; Mon, 27 Nov 2000 00:24:34 -0600 (CST) (envelope-from brandt@unkempt.net) Message-ID: <000301c0583c$789cd500$3200a8c0@unkempt.net> From: "Brandt" To: Cc: Subject: FreeBSD Port: openh323proxy-0.9a3.m08 Date: Mon, 27 Nov 2000 00:37:10 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello. I'm running Win98 with a private IP behind a FreeBSD box running natd. When using netmeeting or other vid conf software I'm unable to recieve video. I was wandering if you had any idea of who could help, or where I might locate more info. At this point I'm not sure if ipfw, natd, or H323 is the culprit. Any info would be much appreciated. Brandt Lofton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 26 22:50: 6 2000 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 25B3037B4CF for ; Sun, 26 Nov 2000 22:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA94549; Sun, 26 Nov 2000 22:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from diopter.storrs (ip-216-23-54-216.adsl.one.net [216.23.54.216]) by hub.freebsd.org (Postfix) with SMTP id 519A337B479 for ; Sun, 26 Nov 2000 22:46:53 -0800 (PST) Received: (qmail 64116 invoked by uid 1977); 27 Nov 2000 06:48:50 -0000 Message-Id: <20001127064849.64115.qmail@diopter.storrs> Date: 27 Nov 2000 06:48:49 -0000 From: judd@one.net Reply-To: judd@one.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23125: Successful emulation of StarOffice depends on filesystem layout Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23125 >Category: ports >Synopsis: Successful emulation of StarOffice depends on filesystem layout >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 Nov 26 22:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Judd Storrs >Release: FreeBSD 4.1-STABLE i386 >Organization: University of Cincinnati FreeOS Users Group >Environment: FreeBSD 4.1-STABLE i386 SMP with 2xPII 350 128MB RAM Adaptec SCSI-LVD using ahc >Description: The FreeBSD linux emulation has problems with StarOffice when StarOffice is not installed on /usr. More precisely I initially installed StarOffice without problems into /usr/local at a time when /usr/local was just a directory on my /usr. I was able to run StarOffice without problem. I then created a new partition and moved /usr/local into this new partiton and StarOffice would nolonger function properly and failed to startup, always dropping back into StarOffice install. So, I pkg_delete'd StarOffice and reinstalled only to have the same problems. Finally I just moved /usr/local/office52 to /usr/office52 and voila, StarOffice magically worked as before. I should also note that I have no problems running other Linux programs off of /usr/local (For example I have the linux versions of Netscape and Mathematica both installed on /usr/local and they both run beautifully) >How-To-Repeat: Install StarOffice NOT on the /usr partition. (I'm not sure if it has to just be a partition other than the partion containing /usr/compat/linux? I can check it out after Dec. 8 if you like) >Fix: mv /usr/local/office52 /usr/office52 >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 Nov 26 23:44:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.psknet.com (orion.psknet.com [63.171.251.4]) by hub.freebsd.org (Postfix) with SMTP id 4298C37B479 for ; Sun, 26 Nov 2000 23:44:02 -0800 (PST) Received: (qmail 47657 invoked from network); 27 Nov 2000 07:43:59 -0000 Received: from abyss.dashit.net (HELO ABYSS) (209.100.22.250) by orion.psknet.com with SMTP; 27 Nov 2000 07:43:59 -0000 From: "Troy Settle" To: "Jim Weeks" , Cc: Subject: RE: apache-ssl-php4-fp solution Date: Mon, 27 Nov 2000 02:43:59 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal X-AntiVirus: scanned for viruses by Pulaski Networks (http://www.psknet.com) using AMaViS (http://www.amavis.org) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jim, Excellent job on the homework. I'm going to be rebuilding a box this week, and greatly appreciate your pointers. I was going to see what the heck I needed to do to accomplish this. Perhaps you could contact the apache13-fp maintainer and help him/her turn it into apache13-fp-modssl, which would be a very nice thing to have, since those 2 mods require patches to the source. Honestly though, I don't understand why the FP patches haven't been integrated into the apache code-base. An option to configure could easily enable/disable the feature (or bug for some :). My $.02, -- Troy Settle Pulaski Networks 540.994.4254 It's always a long day, 86400 doesn't fit into a short. ** -----Original Message----- ** From: owner-freebsd-isp@FreeBSD.ORG ** [mailto:owner-freebsd-isp@FreeBSD.ORG]On Behalf Of Jim Weeks ** Sent: Sunday, November 26, 2000 2:45 PM ** To: freebsd-isp@freebsd.org ** Cc: freebsd-ports@freebsd.org ** Subject: apache-ssl-php4-fp solution ** ** ** I will preface this by saying I am no authority in this field, but I ** have seen a few posts on this subject and hope this may help someone ** else in a simular situation. ** ** To the matter at hand. I had several production servers running ** 3.X-stable. All of these were running apache-ssl-php3-frontpage with php3 ** and frontpage compiled into the binary and ssl as DSO. This presented a ** problem in upgrading to php4. You may have noticed that there are a lot ** of new DSO modules in /usr/ports/www. The problem is that some, such as ** mod_ssl, are only available from RELENG_4, and seem to be 4.X dependent. ** ** After building Apache a *lot* of different ways, including from ** source, I have come to this conclusion. This task can be done ** easily with ** the ports collection, even for the 3.X platform. ** ** First, you must download and install the FreeBSD version of frontpage ** extensions into /usr/local. They may be found at, ** http://msdn.microsoft.com/workshop/languages/fp/2000/unixfpse.asp ** ** Now, we can easily adapt /usr/ports/www/apache13-modssl. This ** can be done ** by copying two files already present on the machine and making one entry ** in the Makefile. Php4 "/usr/ports/www/mod_php4" can be added ** after apache ** has been compiled. ** ** The first file: ** ** Copy the apache frontpage patch "fp-patch-apache_1.3.12" from ** /usr/local/frontpage/version4.0/apache-fp/ to ** /usr/ports/www/apache13-modssl/files/ and rename it patch-aj ** ** The second file: ** ** $ cd /usr/ports/www/apache13-modssl ** $ cp ../apache13-fp/files/mod_frontpage.c \ ** > files/mod_frontpage.c ** ** Edit the Makefile: ** ** Place "--add-module=mod_frontpage.c" near the bottom of the ** CONFIGURE_ARGS ** section. ** ** Mine looks like this. ** ** CONFIGURE_ARGS= --prefix=${PREFIX} \ ** --server-gid=nogroup \ ** --with-perl=${PERL} \ ** --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \ ** --suexec-docroot=${PREFIX}/www/data \ ** --without-confadjust \ ** --enable-module=most \ ** --enable-module=auth_db \ ** --enable-module=mmap_static \ ** --disable-module=auth_dbm \ ** --enable-shared=max \ ** --enable-module=ssl \ ** --add-module=mod_frontpage.c \ ** --enable-module=define ** ** Finish up: ** ** $ make ** $ make certificate ** $ make install ** $ make clean ** ** $ cd ../mod_php4 ** $ make ** $ make install ** $ make clean ** ** Appropriate entries for enabling mod_php4 will automatically be added to ** httpd.conf when the module is built. You may need to add frontpage ** yourself. Just add "AddModule mod_frontpage.c" to the AddModule list. ** ** Good luck, ** ** -- ** Jim Weeks ** ** ** ** ** To Unsubscribe: send mail to majordomo@FreeBSD.org ** with "unsubscribe freebsd-isp" 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 Mon Nov 27 0:44: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.prod.itd.earthlink.net [207.217.121.50]) by hub.freebsd.org (Postfix) with ESMTP id 0F8A437B479; Mon, 27 Nov 2000 00:43:54 -0800 (PST) Received: from veager.siteplus.net (user-38lc8tq.dialup.mindspring.com [209.86.35.186]) by avocet.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id AAA27333; Mon, 27 Nov 2000 00:43:48 -0800 (PST) Date: Mon, 27 Nov 2000 03:43:46 -0500 (EST) From: Jim Weeks To: Troy Settle Cc: freebsd-isp@freebsd.org, freebsd-ports@freebsd.org Subject: RE: apache-ssl-php4-fp solution In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks Troy, One other note on this subject. Before trying to build apache13-modssl, be sure Openssl is up to date. -- Jim Weeks On Mon, 27 Nov 2000, Troy Settle wrote: > > Jim, > > Excellent job on the homework. I'm going to be rebuilding a box this week, > and greatly appreciate your pointers. I was going to see what the heck I > needed to do to accomplish this. > > Perhaps you could contact the apache13-fp maintainer and help him/her turn > it into apache13-fp-modssl, which would be a very nice thing to have, since > those 2 mods require patches to the source. > > Honestly though, I don't understand why the FP patches haven't been > integrated into the apache code-base. An option to configure could easily > enable/disable the feature (or bug for some :). > > My $.02, > > -- > Troy Settle > Pulaski Networks > 540.994.4254 > > It's always a long day, 86400 doesn't fit into a short. > > > ** -----Original Message----- > ** From: owner-freebsd-isp@FreeBSD.ORG > ** [mailto:owner-freebsd-isp@FreeBSD.ORG]On Behalf Of Jim Weeks > ** Sent: Sunday, November 26, 2000 2:45 PM > ** To: freebsd-isp@freebsd.org > ** Cc: freebsd-ports@freebsd.org > ** Subject: apache-ssl-php4-fp solution > ** > ** > ** I will preface this by saying I am no authority in this field, but I > ** have seen a few posts on this subject and hope this may help someone > ** else in a simular situation. > ** > ** To the matter at hand. I had several production servers running > ** 3.X-stable. All of these were running apache-ssl-php3-frontpage with php3 > ** and frontpage compiled into the binary and ssl as DSO. This presented a > ** problem in upgrading to php4. You may have noticed that there are a lot > ** of new DSO modules in /usr/ports/www. The problem is that some, such as > ** mod_ssl, are only available from RELENG_4, and seem to be 4.X dependent. > ** > ** After building Apache a *lot* of different ways, including from > ** source, I have come to this conclusion. This task can be done > ** easily with > ** the ports collection, even for the 3.X platform. > ** > ** First, you must download and install the FreeBSD version of frontpage > ** extensions into /usr/local. They may be found at, > ** http://msdn.microsoft.com/workshop/languages/fp/2000/unixfpse.asp > ** > ** Now, we can easily adapt /usr/ports/www/apache13-modssl. This > ** can be done > ** by copying two files already present on the machine and making one entry > ** in the Makefile. Php4 "/usr/ports/www/mod_php4" can be added > ** after apache > ** has been compiled. > ** > ** The first file: > ** > ** Copy the apache frontpage patch "fp-patch-apache_1.3.12" from > ** /usr/local/frontpage/version4.0/apache-fp/ to > ** /usr/ports/www/apache13-modssl/files/ and rename it patch-aj > ** > ** The second file: > ** > ** $ cd /usr/ports/www/apache13-modssl > ** $ cp ../apache13-fp/files/mod_frontpage.c \ > ** > files/mod_frontpage.c > ** > ** Edit the Makefile: > ** > ** Place "--add-module=mod_frontpage.c" near the bottom of the > ** CONFIGURE_ARGS > ** section. > ** > ** Mine looks like this. > ** > ** CONFIGURE_ARGS= --prefix=${PREFIX} \ > ** --server-gid=nogroup \ > ** --with-perl=${PERL} \ > ** --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \ > ** --suexec-docroot=${PREFIX}/www/data \ > ** --without-confadjust \ > ** --enable-module=most \ > ** --enable-module=auth_db \ > ** --enable-module=mmap_static \ > ** --disable-module=auth_dbm \ > ** --enable-shared=max \ > ** --enable-module=ssl \ > ** --add-module=mod_frontpage.c \ > ** --enable-module=define > ** > ** Finish up: > ** > ** $ make > ** $ make certificate > ** $ make install > ** $ make clean > ** > ** $ cd ../mod_php4 > ** $ make > ** $ make install > ** $ make clean > ** > ** Appropriate entries for enabling mod_php4 will automatically be added to > ** httpd.conf when the module is built. You may need to add frontpage > ** yourself. Just add "AddModule mod_frontpage.c" to the AddModule list. > ** > ** Good luck, > ** > ** -- > ** Jim Weeks > ** > ** > ** > ** > ** To Unsubscribe: send mail to majordomo@FreeBSD.org > ** with "unsubscribe freebsd-isp" 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 Mon Nov 27 2: 7:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from vulture.dmem.strath.ac.uk (vulture.dmem.strath.ac.uk [130.159.232.158]) by hub.freebsd.org (Postfix) with ESMTP id 0A9E937B479; Mon, 27 Nov 2000 02:07:16 -0800 (PST) Received: from cs.strath.ac.uk (posh [130.159.202.3]) by vulture.dmem.strath.ac.uk (8.9.3/8.9.3) with ESMTP id KAA16408; Mon, 27 Nov 2000 10:07:01 GMT (envelope-from roger@cs.strath.ac.uk) Message-ID: <3A22324E.18742D41@cs.strath.ac.uk> Date: Mon, 27 Nov 2000 10:07:10 +0000 From: Roger Hardiman Organization: University of Strathclyde X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Brandt Cc: roger@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: openh323proxy-0.9a3.m08 References: <000301c0583c$789cd500$3200a8c0@unkempt.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Brandt wrote: > > Hello. I'm running Win98 with a private IP behind a FreeBSD box > running natd. > > When using netmeeting or other vid conf software I'm unable > to recieve video. That is normal. H323 can only send video and audio between boxes with real IP addresses. Unless you use a H323 Proxy which runs on a machine which can see both the real internet and your internal private network. (ie your FreeBSD box with NAT) So you need to use the openh323proxy port which was added to the FreeBSD ports tree about 4 days ago. > I was wandering if you had any idea of who could help, or where > I might locate more info. http://openh323proxy.sourceforge.net > At this point I'm not sure if ipfw, natd, or H323 is > the culprit. NAT and H323 do not mix. Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 3: 1:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id E28B837B4CF for ; Mon, 27 Nov 2000 03:01:47 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eARB1am03759; Mon, 27 Nov 2000 13:01:37 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eARB1aJ41145; Mon, 27 Nov 2000 13:01:36 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A223F0D.F6D75E87@FreeBSD.org> Date: Mon, 27 Nov 2000 13:01:34 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Herbert Cc: freebsd-ports@FreeBSD.org Subject: Re: /usr/ports/x11-toolkits/qt22/ References: <20001127015114.A16914@freebsd2.rocks> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Herbert wrote: > Hei! > > Today I recompiled XFree-4.0.1 with hardware acceleration for my matrox > G400 and mesa with XFREE_VERSION=4. Afterwards I wasn't able to build > the qt22-port, because it couldn't find GL1.4. I only have libGL.so.1 in > /usr/X11R6/lib. > > This is defined in /usr/ports/Mk/bsd.port.mk: > > .if defined(USE_MESA) > LIB_DEPENDS+= GL.14:$PORTSDIR/graphics/Mesa3 > .endif > > I had to change that to "LIB_DEPENDS+= GL.1:$PORTSDIR/graphics/Mesa3". > > When I built mesa without XFREE_VERSION=4 a few days ago, I had no > problems to build the qt22-port. > > Is there something wrong on my system? My ports collection? Add XFREE_VERSION=4 into your /etc/make.conf and rebuild/reinstall Mesa/qt. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 3:40:10 2000 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 8D4F937B4FE for ; Mon, 27 Nov 2000 03:40:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA53420; Mon, 27 Nov 2000 03:40:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 57DB537B479 for ; Mon, 27 Nov 2000 03:32:44 -0800 (PST) Received: by ada.eu.org (Postfix, from userid 10) id 590161907E; Mon, 27 Nov 2000 12:32:33 +0100 (CET) Received: by trillian.enst.fr (Postfix, from userid 1000) id 886BE3BA; Mon, 27 Nov 2000 12:31:44 +0100 (CET) Message-Id: <20001127113144.886BE3BA@trillian.enst.fr> Date: Mon, 27 Nov 2000 12:31:44 +0100 (CET) From: sam@inf.enst.fr Reply-To: sam@inf.enst.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23127: Port update: devel/gpasm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23127 >Category: ports >Synopsis: Port update: devel/gpasm >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 Nov 27 03:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 4.2-BETA i386 >Organization: TELECOM Paris >Environment: >Description: >How-To-Repeat: >Fix: Apply the following patch, and remove files/patch-aa which is now useless. Sam --- Makefile.orig Sat Sep 16 06:30:34 2000 +++ Makefile Mon Nov 27 12:26:25 2000 @@ -6,17 +6,19 @@ # PORTNAME= gpasm -PORTVERSION= 0.8.9 +PORTVERSION= 0.8.10 CATEGORIES= devel -MASTER_SITES= http://download.sourceforge.net/gpasm/ +MASTER_SITES= http://gpasm.sourceforge.net/ MAINTAINER= sam@inf.enst.fr -WRKSRC= ${WRKDIR}/${PORTNAME}-0.0.8 GNU_CONFIGURE= yes MAKE_ARGS= DATADIR=${PREFIX}/share/gpasm +.if !defined(NOPORTDOCS) post-install: - strip ${PREFIX}/bin/gpasm + ${MKDIR} ${PREFIX}/share/doc/gpasm + ${INSTALL_DATA} ${WRKSRC}/doc/gpasm.ps ${PREFIX}/share/doc/gpasm +.endif .include --- distinfo.orig Sat Sep 16 06:30:34 2000 +++ distinfo Mon Nov 27 12:24:39 2000 @@ -1 +1 @@ -MD5 (gpasm-0.8.9.tar.gz) = 7558f7289237d8cf7b1cebc5490e7efa +MD5 (gpasm-0.8.10.tar.gz) = 740efd9cbedc0bf28a61d1c887a77146 --- pkg-plist.orig Sat Sep 16 06:30:35 2000 +++ pkg-plist Mon Nov 27 12:24:39 2000 @@ -1,3 +1,5 @@ bin/gpasm share/gpasm/special.inc +share/doc/gpasm/gpasm.ps @dirrm share/gpasm +@dirrm share/doc/gpasm >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 Nov 27 4:41:54 2000 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 822B037B4C5; Mon, 27 Nov 2000 04:41:53 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA83259; Mon, 27 Nov 2000 04:41:53 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Mon, 27 Nov 2000 04:41:53 -0800 (PST) From: Message-Id: <200011271241.EAA83259@freefall.freebsd.org> To: roman@xpert.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23102: MAINTAINER UPDATE: graphics/xine 0.23->0.31 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAINTAINER UPDATE: graphics/xine 0.23->0.31 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Nov 27 04:41:39 PST 2000 State-Changed-Why: Comitted, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23102 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 4:46:22 2000 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 1F99337B479; Mon, 27 Nov 2000 04:46:21 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA84284; Mon, 27 Nov 2000 04:46:21 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Mon, 27 Nov 2000 04:46:21 -0800 (PST) From: Message-Id: <200011271246.EAA84284@freefall.freebsd.org> To: joseph@randomnetworks.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23115: UPDATE PORT graphics/zimg (4.2.2 -> 4.4.0) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: UPDATE PORT graphics/zimg (4.2.2 -> 4.4.0) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Nov 27 04:46:08 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23115 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 4:48:16 2000 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 3058937B4C5; Mon, 27 Nov 2000 04:48:14 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA84757; Mon, 27 Nov 2000 04:48:14 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Mon, 27 Nov 2000 04:48:14 -0800 (PST) From: Message-Id: <200011271248.EAA84757@freefall.freebsd.org> To: cj@vallcom.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23117: Update port: ftp/lftp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: ftp/lftp State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Nov 27 04:48:01 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23117 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 4:57:22 2000 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 73B0737B479; Mon, 27 Nov 2000 04:57:20 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA90346; Mon, 27 Nov 2000 04:57:20 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Mon, 27 Nov 2000 04:57:20 -0800 (PST) From: Message-Id: <200011271257.EAA90346@freefall.freebsd.org> To: one@netlab.is.tsukuba.ac.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23119: Update port: graphics/tgif-nls to 4.1.40 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/tgif-nls to 4.1.40 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Nov 27 04:57:07 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23119 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 7: 8:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from vinbo.com (ntmail20.lightrealm.com [216.122.169.4]) by hub.freebsd.org (Postfix) with ESMTP id 26A6F37B4CF for ; Mon, 27 Nov 2000 07:08:48 -0800 (PST) Received: from 216.122.169.220 (onyx.mycgiserver.com [212.69.162.53]) by vinbo.com (8.8.7/8.8.5) with SMTP id HAA16931 for ; Mon, 27 Nov 2000 07:07:45 -0800 (PST) Date: Mon, 27 Nov 2000 07:07:45 -0800 (PST) From: ytuhjkbd@lycos.com Message-Id: <200011271507.HAA16931@vinbo.com> To: Subject: Software Development from Russia! ($15-$20 per hour) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear IT Manager: Please consider deploying our highly skilled off-shore programmers on your e-commerce and software development projects. They develop software for: ALL WINDOWS AND UNIX PLATFORMS databases, networks, and languages, plus Perl, Cold Fusion, WAP, XML, Java, ASP, MS Access, SQL, CGI, Shopping Carts, and the Internet. Typical rates are $15 to $20 per hour. They are fast, professional, inexpensive, cheap, and available immediately. Please call me, or you may send me e-mail at: ytuhjkbd@lycos.com Thanks! Paul Smirnov +39 3480612212 PS. You are already removed! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 8:20:16 2000 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 3BADA37B4C5 for ; Mon, 27 Nov 2000 08:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA11296; Mon, 27 Nov 2000 08:20:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id CD6DB37B479 for ; Mon, 27 Nov 2000 08:10:10 -0800 (PST) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 140Qr0-000Q0J-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 27 Nov 2000 18:10:06 +0200 Message-Id: Date: Mon, 27 Nov 2000 18:10:06 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23130: Port update: biology/emboss (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23130 >Category: ports >Synopsis: Port update: biology/emboss (MAINTAINER) >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 Nov 27 08:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 5.0-CURRENT i386 >Organization: Electric Genetics >Environment: >Description: - Update port biology/emboss from 1.7.0 to 1.8.0 - Removed the :U hack since this modifier has now been MFC'd to RELENG_3 and RELENG_4. - I'm aware of the fact that there's still a building problem with one of the EMBASSY applications (MSE) on pre-4 versions of FreeBSD. I'm still unable to solve this. Workaround: Choose not to install MSE. >How-To-Repeat: >Fix: diff -ruN emboss.bak/Makefile emboss/Makefile --- emboss.bak/Makefile Mon Nov 27 18:00:45 2000 +++ emboss/Makefile Mon Nov 27 18:01:34 2000 @@ -6,14 +6,13 @@ # PORTNAME= emboss -PORTVERSION= 1.7.0 -PORTREVISION= 1 +PORTVERSION= 1.8.0 CATEGORIES= biology MASTER_SITES= ftp://ftp.uk.embnet.org/pub/EMBOSS/ \ ftp://ftp.no.embnet.org/pub/EMBOSS/ -DISTFILES= ${PORTNAME_U}-${PORTVERSION}${EXTRACT_SUFX} +DISTFILES= ${PORTNAME:U}-${PORTVERSION}${EXTRACT_SUFX} DIST_SUBDIR= ${PORTNAME} -EXTRACT_ONLY= ${PORTNAME_U}-${PORTVERSION}${EXTRACT_SUFX} +EXTRACT_ONLY= ${PORTNAME:U}-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= johann@egenetics.com @@ -24,9 +23,7 @@ USE_LIBTOOL= yes USE_XLIB= yes PLIST= ${WRKDIR}/pkg-plist - -# Make doesn't know about :U -PORTNAME_U= EMBOSS +PKGMESSAGE= ${WRKDIR}/pkg-message .if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" @@ -39,7 +36,7 @@ MKDIR="${MKDIR}" \ RM="${RM}" -WRKSRC= ${WRKDIR}/${PORTNAME_U}-${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME:U}-${PORTVERSION} EMBASSY_WRKDIR= ${WRKSRC}/EMBASSY PHYLIP_VERSION= 3.573c MSE_VERSION= 0.0.4 @@ -109,6 +106,8 @@ @ ${INSTALL_DATA} ${WRKSRC}/emboss/acd/emboss.default \ ${PREFIX}/etc/emboss.default.sample .if !defined(BATCH) + @ ${PERL} -pe 's#%%PREFIX%%#${PREFIX}#' \ + pkg-message > ${PKGMESSAGE} @ ${CAT} ${PKGMESSAGE} .endif diff -ruN emboss.bak/distinfo emboss/distinfo --- emboss.bak/distinfo Mon Nov 27 18:00:45 2000 +++ emboss/distinfo Mon Nov 27 16:06:08 2000 @@ -1,4 +1,4 @@ -MD5 (emboss/EMBOSS-1.7.0.tar.gz) = 61758add8d2d6bdb9e043fe93c37f341 -MD5 (emboss/PHYLIP-3.573c.tar.gz) = e41b0552196e9b7b46ca0e9563e9384a -MD5 (emboss/MSE-0.0.4.tar.gz) = 6ba124ff85465be3541d2e250248cd3d -MD5 (emboss/TOPO-0.1.tar.gz) = 687c6ca8ba945520b11058ba28ee880d +MD5 (emboss/EMBOSS-1.8.0.tar.gz) = 4cbc80557dbbe41fbedb477e00e47aba +MD5 (emboss/MSE-0.0.4.tar.gz) = 800216297fa6c3de76f6d1d7ea194a22 +MD5 (emboss/PHYLIP-3.573c.tar.gz) = bd2ded015838da4236c3d4ac25ae8ede +MD5 (emboss/TOPO-0.1.tar.gz) = 42f4f6e57e4c99b4684b0a4810f2c0a0 diff -ruN emboss.bak/pkg-message emboss/pkg-message --- emboss.bak/pkg-message Mon Nov 27 18:00:45 2000 +++ emboss/pkg-message Mon Nov 27 17:53:30 2000 @@ -3,13 +3,12 @@ The EMBOSS suite has been successfully installed. In order to use the EMBOSS programs, you will need to set some environment -variables in your shell startup file. If EMBOSS was installed to the -default prefix, then: +variables in your shell startup file. -- set PLPLOT_LIB to: "/usr/local/share/EMBOSS" -- set EMBOSS_ACDROOT to: "/usr/local/share/EMBOSS/acd" +- set PLPLOT_LIB to: "%%PREFIX%%/share/EMBOSS" +- set EMBOSS_ACDROOT to: "%%PREFIX%%/share/EMBOSS/acd" -NB: A sample configuration file has been installed to /usr/local/etc as +NB: A sample configuration file has been installed to %%PREFIX%%/etc as emboss.default.sample. This must be renamed to emboss.default and edited to suit your site and its requirements. diff -ruN emboss.bak/pkg-plist emboss/pkg-plist --- emboss.bak/pkg-plist Mon Nov 27 18:00:45 2000 +++ emboss/pkg-plist Mon Nov 27 16:33:07 2000 @@ -8,6 +8,7 @@ bin/chips bin/cirdna bin/codcmp +bin/coderet bin/complex bin/compseq bin/cons @@ -151,10 +152,12 @@ share/EMBOSS/acd/cirdna.acd share/EMBOSS/acd/cluster.acd share/EMBOSS/acd/codcmp.acd +share/EMBOSS/acd/coderet.acd share/EMBOSS/acd/codes.english share/EMBOSS/acd/complex.acd share/EMBOSS/acd/compseq.acd share/EMBOSS/acd/cons.acd +share/EMBOSS/acd/corbatest.acd share/EMBOSS/acd/cpgplot.acd share/EMBOSS/acd/cpgreport.acd share/EMBOSS/acd/cusp.acd @@ -248,6 +251,7 @@ share/EMBOSS/acd/remap.acd share/EMBOSS/acd/restrict.acd share/EMBOSS/acd/revseq.acd +share/EMBOSS/acd/scope.acd share/EMBOSS/acd/seealso.acd share/EMBOSS/acd/seqinfo.acd share/EMBOSS/acd/seqmatchall.acd @@ -532,16 +536,20 @@ share/EMBOSS/data/Ebases.iub share/EMBOSS/data/Edayhoff.freq share/EMBOSS/data/Edna.melt +share/EMBOSS/data/Eembl.ior share/EMBOSS/data/Eenergy.dat share/EMBOSS/data/Efeatures.embl share/EMBOSS/data/Efeatures.gff share/EMBOSS/data/Efreqs.dat share/EMBOSS/data/Ehth.dat share/EMBOSS/data/Ehth87.dat +share/EMBOSS/data/Ememe.dat share/EMBOSS/data/Enakai.dat share/EMBOSS/data/Epepcoil.dat share/EMBOSS/data/Epk.dat share/EMBOSS/data/Epprofile +share/EMBOSS/data/Eprior1.plib +share/EMBOSS/data/Eprior30.plib share/EMBOSS/data/Erna.melt share/EMBOSS/data/Esig.euk share/EMBOSS/data/Esig.pro @@ -666,12 +674,17 @@ share/doc/EMBOSS/programs/html/checktrans.html share/doc/EMBOSS/programs/html/chips.html share/doc/EMBOSS/programs/html/cirdna.html +share/doc/EMBOSS/programs/html/clique.html share/doc/EMBOSS/programs/html/codcmp.html +share/doc/EMBOSS/programs/html/coderet.html share/doc/EMBOSS/programs/html/coding_regions_group.html share/doc/EMBOSS/programs/html/comparison_group.html share/doc/EMBOSS/programs/html/complex.html share/doc/EMBOSS/programs/html/compseq.html share/doc/EMBOSS/programs/html/cons.html +share/doc/EMBOSS/programs/html/consense.html +share/doc/EMBOSS/programs/html/contml.html +share/doc/EMBOSS/programs/html/contrast.html share/doc/EMBOSS/programs/html/cpg_islands_group.html share/doc/EMBOSS/programs/html/cpgplot.html share/doc/EMBOSS/programs/html/cpgplot0.gif @@ -693,31 +706,67 @@ share/doc/EMBOSS/programs/html/dna_sequence_composition_group.html share/doc/EMBOSS/programs/html/dna_sequence_features_group.html share/doc/EMBOSS/programs/html/dna_sequence_properties_group.html +share/doc/EMBOSS/programs/html/dnacomp.html +share/doc/EMBOSS/programs/html/dnadist.html +share/doc/EMBOSS/programs/html/dnainvar.html +share/doc/EMBOSS/programs/html/dnaml.html +share/doc/EMBOSS/programs/html/dnamlk.html +share/doc/EMBOSS/programs/html/dnapars.html +share/doc/EMBOSS/programs/html/dnapenny.html +share/doc/EMBOSS/programs/html/dollop.html +share/doc/EMBOSS/programs/html/dolpenny.html share/doc/EMBOSS/programs/html/dotmatcher.html share/doc/EMBOSS/programs/html/dotmatcher0.gif share/doc/EMBOSS/programs/html/dotpath.html share/doc/EMBOSS/programs/html/dottup.html share/doc/EMBOSS/programs/html/dottup0.gif share/doc/EMBOSS/programs/html/dreg.html +share/doc/EMBOSS/programs/html/eclique.html +share/doc/EMBOSS/programs/html/econsense.html +share/doc/EMBOSS/programs/html/econtml.html +share/doc/EMBOSS/programs/html/econtrast.html +share/doc/EMBOSS/programs/html/ednacomp.html +share/doc/EMBOSS/programs/html/ednadist.html +share/doc/EMBOSS/programs/html/ednainvar.html +share/doc/EMBOSS/programs/html/ednaml.html +share/doc/EMBOSS/programs/html/ednamlk.html +share/doc/EMBOSS/programs/html/ednapars.html +share/doc/EMBOSS/programs/html/ednapenny.html +share/doc/EMBOSS/programs/html/edollop.html +share/doc/EMBOSS/programs/html/edolpenny.html +share/doc/EMBOSS/programs/html/efactor.html +share/doc/EMBOSS/programs/html/efitch.html +share/doc/EMBOSS/programs/html/egendist.html share/doc/EMBOSS/programs/html/einverted.html +share/doc/EMBOSS/programs/html/ekitsch.html share/doc/EMBOSS/programs/html/emboss_icon.gif share/doc/EMBOSS/programs/html/embossdata.html +share/doc/EMBOSS/programs/html/emix.html share/doc/EMBOSS/programs/html/emma.html share/doc/EMBOSS/programs/html/emowse.html +share/doc/EMBOSS/programs/html/eneighbor.html share/doc/EMBOSS/programs/html/entret.html share/doc/EMBOSS/programs/html/enzyme_kinetics_group.html +share/doc/EMBOSS/programs/html/epenny.html +share/doc/EMBOSS/programs/html/eprotdist.html +share/doc/EMBOSS/programs/html/eprotpars.html share/doc/EMBOSS/programs/html/equicktandem.html +share/doc/EMBOSS/programs/html/erestml.html +share/doc/EMBOSS/programs/html/eseqboot.html share/doc/EMBOSS/programs/html/est2genome.html share/doc/EMBOSS/programs/html/etandem.html share/doc/EMBOSS/programs/html/extractseq.html +share/doc/EMBOSS/programs/html/factor.html share/doc/EMBOSS/programs/html/findkm.html share/doc/EMBOSS/programs/html/findkm0.gif +share/doc/EMBOSS/programs/html/fitch.html share/doc/EMBOSS/programs/html/freak.html share/doc/EMBOSS/programs/html/fuzznuc.html share/doc/EMBOSS/programs/html/fuzzpro.html share/doc/EMBOSS/programs/html/fuzztran.html share/doc/EMBOSS/programs/html/garnier.html share/doc/EMBOSS/programs/html/geecee.html +share/doc/EMBOSS/programs/html/gendist.html share/doc/EMBOSS/programs/html/gene_finding_group.html share/doc/EMBOSS/programs/html/getorf.html share/doc/EMBOSS/programs/html/groups.html @@ -728,16 +777,20 @@ share/doc/EMBOSS/programs/html/infoseq.html share/doc/EMBOSS/programs/html/isochore.html share/doc/EMBOSS/programs/html/isochore0.gif +share/doc/EMBOSS/programs/html/kitsch.html share/doc/EMBOSS/programs/html/lindna.html share/doc/EMBOSS/programs/html/maskfeat.html share/doc/EMBOSS/programs/html/maskseq.html share/doc/EMBOSS/programs/html/matcher.html share/doc/EMBOSS/programs/html/megamerger.html share/doc/EMBOSS/programs/html/merger.html +share/doc/EMBOSS/programs/html/mix.html share/doc/EMBOSS/programs/html/motifs_group.html share/doc/EMBOSS/programs/html/msbar.html +share/doc/EMBOSS/programs/html/mse.html share/doc/EMBOSS/programs/html/mutation_group.html share/doc/EMBOSS/programs/html/needle.html +share/doc/EMBOSS/programs/html/neighbor.html share/doc/EMBOSS/programs/html/new_group_group.html share/doc/EMBOSS/programs/html/newcpgreport.html share/doc/EMBOSS/programs/html/newcpgseek.html @@ -752,6 +805,7 @@ share/doc/EMBOSS/programs/html/patmatdb.html share/doc/EMBOSS/programs/html/patmatmotifs.html share/doc/EMBOSS/programs/html/pattern_matching_group.html +share/doc/EMBOSS/programs/html/penny.html share/doc/EMBOSS/programs/html/pepcoil.html share/doc/EMBOSS/programs/html/pepinfo.html share/doc/EMBOSS/programs/html/pepinfo1.gif @@ -784,6 +838,7 @@ share/doc/EMBOSS/programs/html/prophecy.html share/doc/EMBOSS/programs/html/prophet.html share/doc/EMBOSS/programs/html/prosextract.html +share/doc/EMBOSS/programs/html/protdist.html share/doc/EMBOSS/programs/html/protein_sequence_composition_group.html share/doc/EMBOSS/programs/html/protein_sequence_features_group.html share/doc/EMBOSS/programs/html/protein_sequence_properties_group.html @@ -793,11 +848,13 @@ share/doc/EMBOSS/programs/html/reformatting_group.html share/doc/EMBOSS/programs/html/remap.html share/doc/EMBOSS/programs/html/repeats_group.html +share/doc/EMBOSS/programs/html/restml.html share/doc/EMBOSS/programs/html/restrict.html share/doc/EMBOSS/programs/html/restriction_enzymes_group.html share/doc/EMBOSS/programs/html/revseq.html share/doc/EMBOSS/programs/html/secondary_structure_group.html share/doc/EMBOSS/programs/html/seealso.html +share/doc/EMBOSS/programs/html/seqboot.html share/doc/EMBOSS/programs/html/seqmatchall.html share/doc/EMBOSS/programs/html/seqret.html share/doc/EMBOSS/programs/html/seqretall.html @@ -830,6 +887,8 @@ share/doc/EMBOSS/programs/html/tfscan.html share/doc/EMBOSS/programs/html/tmap.html share/doc/EMBOSS/programs/html/tmap0.gif +share/doc/EMBOSS/programs/html/topo.gif +share/doc/EMBOSS/programs/html/topo.html share/doc/EMBOSS/programs/html/transcription_group.html share/doc/EMBOSS/programs/html/transeq.html share/doc/EMBOSS/programs/html/translation_group.html @@ -853,10 +912,15 @@ share/doc/EMBOSS/programs/text/checktrans.txt share/doc/EMBOSS/programs/text/chips.txt share/doc/EMBOSS/programs/text/cirdna.txt +share/doc/EMBOSS/programs/text/clique.txt share/doc/EMBOSS/programs/text/codcmp.txt +share/doc/EMBOSS/programs/text/coderet.txt share/doc/EMBOSS/programs/text/complex.txt share/doc/EMBOSS/programs/text/compseq.txt share/doc/EMBOSS/programs/text/cons.txt +share/doc/EMBOSS/programs/text/consense.txt +share/doc/EMBOSS/programs/text/contml.txt +share/doc/EMBOSS/programs/text/contrast.txt share/doc/EMBOSS/programs/text/cpgplot.txt share/doc/EMBOSS/programs/text/cpgreport.txt share/doc/EMBOSS/programs/text/cusp.txt @@ -869,39 +933,79 @@ share/doc/EMBOSS/programs/text/descseq.txt share/doc/EMBOSS/programs/text/diffseq.txt share/doc/EMBOSS/programs/text/digest.txt +share/doc/EMBOSS/programs/text/dnacomp.txt +share/doc/EMBOSS/programs/text/dnadist.txt +share/doc/EMBOSS/programs/text/dnainvar.txt +share/doc/EMBOSS/programs/text/dnaml.txt +share/doc/EMBOSS/programs/text/dnamlk.txt +share/doc/EMBOSS/programs/text/dnapars.txt +share/doc/EMBOSS/programs/text/dnapenny.txt +share/doc/EMBOSS/programs/text/dollop.txt +share/doc/EMBOSS/programs/text/dolpenny.txt share/doc/EMBOSS/programs/text/dotmatcher.txt share/doc/EMBOSS/programs/text/dotpath.txt share/doc/EMBOSS/programs/text/dottup.txt share/doc/EMBOSS/programs/text/dreg.txt +share/doc/EMBOSS/programs/text/eclique.txt +share/doc/EMBOSS/programs/text/econsense.txt +share/doc/EMBOSS/programs/text/econtml.txt +share/doc/EMBOSS/programs/text/econtrast.txt +share/doc/EMBOSS/programs/text/ednacomp.txt +share/doc/EMBOSS/programs/text/ednadist.txt +share/doc/EMBOSS/programs/text/ednainvar.txt +share/doc/EMBOSS/programs/text/ednaml.txt +share/doc/EMBOSS/programs/text/ednamlk.txt +share/doc/EMBOSS/programs/text/ednapars.txt +share/doc/EMBOSS/programs/text/ednapenny.txt +share/doc/EMBOSS/programs/text/edollop.txt +share/doc/EMBOSS/programs/text/edolpenny.txt +share/doc/EMBOSS/programs/text/efactor.txt +share/doc/EMBOSS/programs/text/efitch.txt +share/doc/EMBOSS/programs/text/egendist.txt share/doc/EMBOSS/programs/text/einverted.txt +share/doc/EMBOSS/programs/text/ekitsch.txt share/doc/EMBOSS/programs/text/embossdata.txt +share/doc/EMBOSS/programs/text/emix.txt share/doc/EMBOSS/programs/text/emma.txt share/doc/EMBOSS/programs/text/emowse.txt +share/doc/EMBOSS/programs/text/eneighbor.txt share/doc/EMBOSS/programs/text/entret.txt +share/doc/EMBOSS/programs/text/epenny.txt +share/doc/EMBOSS/programs/text/eprotdist.txt +share/doc/EMBOSS/programs/text/eprotpars.txt share/doc/EMBOSS/programs/text/equicktandem.txt +share/doc/EMBOSS/programs/text/erestml.txt +share/doc/EMBOSS/programs/text/eseqboot.txt share/doc/EMBOSS/programs/text/est2genome.txt share/doc/EMBOSS/programs/text/etandem.txt share/doc/EMBOSS/programs/text/extractseq.txt +share/doc/EMBOSS/programs/text/factor.txt share/doc/EMBOSS/programs/text/findkm.txt +share/doc/EMBOSS/programs/text/fitch.txt share/doc/EMBOSS/programs/text/freak.txt share/doc/EMBOSS/programs/text/fuzznuc.txt share/doc/EMBOSS/programs/text/fuzzpro.txt share/doc/EMBOSS/programs/text/fuzztran.txt share/doc/EMBOSS/programs/text/garnier.txt share/doc/EMBOSS/programs/text/geecee.txt +share/doc/EMBOSS/programs/text/gendist.txt share/doc/EMBOSS/programs/text/getorf.txt share/doc/EMBOSS/programs/text/helixturnhelix.txt share/doc/EMBOSS/programs/text/iep.txt share/doc/EMBOSS/programs/text/infoseq.txt share/doc/EMBOSS/programs/text/isochore.txt +share/doc/EMBOSS/programs/text/kitsch.txt share/doc/EMBOSS/programs/text/lindna.txt share/doc/EMBOSS/programs/text/maskfeat.txt share/doc/EMBOSS/programs/text/maskseq.txt share/doc/EMBOSS/programs/text/matcher.txt share/doc/EMBOSS/programs/text/megamerger.txt share/doc/EMBOSS/programs/text/merger.txt +share/doc/EMBOSS/programs/text/mix.txt share/doc/EMBOSS/programs/text/msbar.txt +share/doc/EMBOSS/programs/text/mse.txt share/doc/EMBOSS/programs/text/needle.txt +share/doc/EMBOSS/programs/text/neighbor.txt share/doc/EMBOSS/programs/text/newcpgreport.txt share/doc/EMBOSS/programs/text/newcpgseek.txt share/doc/EMBOSS/programs/text/newseq.txt @@ -913,6 +1017,7 @@ share/doc/EMBOSS/programs/text/pasteseq.txt share/doc/EMBOSS/programs/text/patmatdb.txt share/doc/EMBOSS/programs/text/patmatmotifs.txt +share/doc/EMBOSS/programs/text/penny.txt share/doc/EMBOSS/programs/text/pepcoil.txt share/doc/EMBOSS/programs/text/pepinfo.txt share/doc/EMBOSS/programs/text/pepnet.txt @@ -933,13 +1038,16 @@ share/doc/EMBOSS/programs/text/prophecy.txt share/doc/EMBOSS/programs/text/prophet.txt share/doc/EMBOSS/programs/text/prosextract.txt +share/doc/EMBOSS/programs/text/protdist.txt share/doc/EMBOSS/programs/text/pscan.txt share/doc/EMBOSS/programs/text/rebaseextract.txt share/doc/EMBOSS/programs/text/redata.txt share/doc/EMBOSS/programs/text/remap.txt +share/doc/EMBOSS/programs/text/restml.txt share/doc/EMBOSS/programs/text/restrict.txt share/doc/EMBOSS/programs/text/revseq.txt share/doc/EMBOSS/programs/text/seealso.txt +share/doc/EMBOSS/programs/text/seqboot.txt share/doc/EMBOSS/programs/text/seqmatchall.txt share/doc/EMBOSS/programs/text/seqret.txt share/doc/EMBOSS/programs/text/seqretall.txt @@ -962,6 +1070,7 @@ share/doc/EMBOSS/programs/text/tfm.txt share/doc/EMBOSS/programs/text/tfscan.txt share/doc/EMBOSS/programs/text/tmap.txt +share/doc/EMBOSS/programs/text/topo.txt share/doc/EMBOSS/programs/text/transeq.txt share/doc/EMBOSS/programs/text/trimseq.txt share/doc/EMBOSS/programs/text/vectorstrip.txt >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 Nov 27 9:10:15 2000 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 ABF5837B4CF for ; Mon, 27 Nov 2000 09:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA21619; Mon, 27 Nov 2000 09:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 16D0237B4C5; Mon, 27 Nov 2000 09:02:42 -0800 (PST) Message-Id: <20001127170242.16D0237B4C5@hub.freebsd.org> Date: Mon, 27 Nov 2000 09:02:42 -0800 (PST) From: hotaru-pro@tail.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23131: update japanese/hns 2.00.4 --> 2.10.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23131 >Category: ports >Synopsis: update japanese/hns 2.00.4 --> 2.10.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: Mon Nov 27 09:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: HOTARU-YA >Release: 4-STABLE >Organization: Takamagahara Applied Intercommunication Laboratory >Environment: FreeBSD st.tail.net 4.2-BETA FreeBSD 4.2-BETA #0: Thu Nov 2 00:52:37 JST 2000 hotaru-pro@st.tail.net:/usr/src/sys/compile/ST i386 >Description: update japanese/hns 2.00.4 --> 2.10.0; it includes many functionality improvements and some fixes. >How-To-Repeat: >Fix: diff -ruN hns.orig/Makefile hns/Makefile --- hns.orig/Makefile Mon Jul 17 05:00:11 2000 +++ hns/Makefile Tue Nov 21 15:51:03 2000 @@ -6,7 +6,7 @@ # PORTNAME= hns -PORTVERSION= 2.00.4 +PORTVERSION= 2.10.0 CATEGORIES= japanese www perl5 MASTER_SITES= http://www.h14m.org/dist/ DISTNAME= ${PORTNAME}-${PORTVERSION:R}-pl${PORTVERSION:E} @@ -16,7 +16,7 @@ USE_PERL5= yes NO_BUILD= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R}-pl${PORTVERSION:E} do-install: ${MKDIR} ${PREFIX}/share/hns diff -ruN hns.orig/distinfo hns/distinfo --- hns.orig/distinfo Mon Jul 17 05:00:18 2000 +++ hns/distinfo Tue Nov 21 15:47:19 2000 @@ -1 +1 @@ -MD5 (hns-2.00-pl4.tar.gz) = 0eeaae0fe513047c4583903c5e8a3be3 +MD5 (hns-2.10-pl0.tar.gz) = 3653be4449d7b7707d451db8e5d987bd diff -ruN hns.orig/pkg-plist hns/pkg-plist --- hns.orig/pkg-plist Mon Jul 17 05:00:18 2000 +++ hns/pkg-plist Tue Nov 21 16:20:31 2000 @@ -1,79 +1,117 @@ bin/hns-setup bin/todayhns +share/hns/ChangeLog share/hns/GPL-j.txt share/hns/GPL.txt share/hns/Makefile share/hns/Makefile.in share/hns/README +share/hns/README.ja +share/hns/THANKS +share/hns/TODO.ja share/hns/contrib/HEADER.html share/hns/contrib/hnf-mode/ChangeLog -share/hns/contrib/hnf-mode/Entries -share/hns/contrib/hnf-mode/Repository -share/hns/contrib/hnf-mode/Root +share/hns/contrib/hnf-mode/NEWS.ja share/hns/contrib/hnf-mode/hnf-mode-1.0.tar.gz share/hns/contrib/hnf-mode/hnf-mode-2.0.tar.gz +share/hns/contrib/hnf-mode/hnf-mode-2.1.tar.gz +share/hns/contrib/hnf-mode/hnf-mode-2.2.tar.gz +share/hns/contrib/hnf-mode/hnf-mode-2.3.tar.gz share/hns/contrib/hnf-mode/hnf-mode.el -share/hns/contrib/hnf-mode/hnf-mode.el-19.28.patch -share/hns/contrib/hnf-mode/hnf-mode.html share/hns/contrib/hnf-mode/hnf-yotei.el share/hns/contrib/hnf-mode/index.html share/hns/contrib/hnf-mode/mail2nikki.el -share/hns/contrib/hnf-mode/mail2nikki.html share/hns/contrib/hnf-mode/screenshot.gif share/hns/contrib/hnf-mode/yotei-mode.gif +share/hns/contrib/isystem +share/hns/contrib/isystem-0.9.9/config.ph +share/hns/contrib/isystem-0.9.9/config.ph.in +share/hns/contrib/isystem-0.9.9/doc/changelog.ja +share/hns/contrib/isystem-0.9.9/doc/customize.html +share/hns/contrib/isystem-0.9.9/doc/install.ja +share/hns/contrib/isystem-0.9.9/doc/readme.ja +share/hns/contrib/isystem-0.9.9/index.cgi +share/hns/contrib/isystem-0.9.9/index.cgi.in +share/hns/contrib/isystem-0.9.9/install.sh +share/hns/contrib/isystem-0.9.9/isystem01.png +share/hns/contrib/isystem-0.9.9/jcode.pl +share/hns/contrib/isystem-0.9.9/list.cgi +share/hns/contrib/isystem-0.9.9/onccnv.pl +share/hns/contrib/perl5003-patch/HEADER.html +share/hns/contrib/perl5003-patch/HEADER.html.bak +share/hns/contrib/perl5003-patch/hns-2.10-beta5-perl5.003.dif.gz +share/hns/contrib/perl5003-patch/hns-2.10-beta6-perl5.003.dif.gz share/hns/contrib/perl5003-patch/perl5003-patch-to-hns-200-pl0.txt share/hns/contrib/theme/hns-2.00/stripe.tar.gz +share/hns/contrib/theme/hns-2.10/yendot.tar.gz +share/hns/contrib/todayhns/readme.ja share/hns/contrib/todayhns/todayhns -share/hns/contrib/yar-3/time-cgi.txt -share/hns/diary/2000/d20000218.hnf -share/hns/diary/2000/y200002 +share/hns/diary/2000/d20001031.hnf +share/hns/diary/2000/y200010 share/hns/diary/conf/alias.txt share/hns/diary/conf/auth_ruri.txt +share/hns/diary/conf/browser_list.txt share/hns/diary/conf/browser_style.txt share/hns/diary/conf/foot.txt share/hns/diary/conf/head.txt +share/hns/diary/conf/i_browser.txt share/hns/diary/conf/rlink.txt share/hns/diary/conf/robotlist.txt share/hns/diary/conf/ruri_map.txt +share/hns/diary/repeat share/hns/diary/todo share/hns/docs/FAQ-j.html share/hns/docs/FAQ-tech-j.html share/hns/docs/RAQ-j.html +share/hns/docs/access_control-j.html share/hns/docs/admin-j.html +share/hns/docs/apache-conf-j.html share/hns/docs/cat-j.html share/hns/docs/caution-j.html -share/hns/docs/change_from_103-pl1-j.html +share/hns/docs/change_from_103-j.html +share/hns/docs/change_from_200-j.html share/hns/docs/config-j.html share/hns/docs/customize-j.html +share/hns/docs/di-j.html +share/hns/docs/diff-japanese-theme-ph.txt share/hns/docs/directory-j.html +share/hns/docs/grp-j.html share/hns/docs/highlight-j.html share/hns/docs/history-j.html +share/hns/docs/hnf-e.html share/hns/docs/hnf-j.html +share/hns/docs/hnf-tech-j.html share/hns/docs/hns-logo.png share/hns/docs/hns.css share/hns/docs/howto-j.html +share/hns/docs/index-e.html share/hns/docs/index-j.html share/hns/docs/index.html +share/hns/docs/install-e.html share/hns/docs/install-j.html share/hns/docs/isp-list-j.html +share/hns/docs/isystem-j.html share/hns/docs/known_bugs-j.html share/hns/docs/known_client_problems-j.html share/hns/docs/license-j.html share/hns/docs/link-j.html -share/hns/docs/log-ana-j.html +share/hns/docs/log_ana-j.html share/hns/docs/mail2nikki-j.html share/hns/docs/mark-j.html -share/hns/docs/new_features_2.00-j.html +share/hns/docs/new_features_210-j.html share/hns/docs/perf-j.html share/hns/docs/pospe2hnf-j.html +share/hns/docs/replace-j.html share/hns/docs/security_tips-j.html +share/hns/docs/static-j.html share/hns/docs/theme-j.html share/hns/docs/todo-j.html -share/hns/docs/unagi-j.html +share/hns/docs/unagi2-j.html share/hns/docs/upgrade-j.html share/hns/docs/user_var-j.html -share/hns/docs/web2nikki-j.html +share/hns/docs/webif-j.html share/hns/docs/yotei-j.html +share/hns/hns-lite.sh share/hns/hns-setup.en share/hns/hns-setup.ja share/hns/public_html/diary/ChangeLog.ja @@ -116,49 +154,50 @@ share/hns/public_html/diary/config.ph.in share/hns/public_html/diary/dot.htaccess share/hns/public_html/diary/english/theme.ph -share/hns/public_html/diary/icons/README -share/hns/public_html/diary/icons/README_1.02 -share/hns/public_html/diary/icons/README_1.03 -share/hns/public_html/diary/icons/ase_13.png -share/hns/public_html/diary/icons/baka_13.png -share/hns/public_html/diary/icons/be_13.png -share/hns/public_html/diary/icons/fu_13.png -share/hns/public_html/diary/icons/haji_13.png -share/hns/public_html/diary/icons/hatena_13.png -share/hns/public_html/diary/icons/hns-2.0-icon.png +share/hns/public_html/diary/icons/CHANGELOG_usa +share/hns/public_html/diary/icons/COPYRIGHT_usa +share/hns/public_html/diary/icons/README_HNS.ja +share/hns/public_html/diary/icons/README_usa +share/hns/public_html/diary/icons/README_usa.jis +share/hns/public_html/diary/icons/hns-2.1-icon.png share/hns/public_html/diary/icons/hns-logo.png -share/hns/public_html/diary/icons/hns_icon.html share/hns/public_html/diary/icons/mark00.png share/hns/public_html/diary/icons/mark01.png -share/hns/public_html/diary/icons/naku_13.png -share/hns/public_html/diary/icons/neko_13.png -share/hns/public_html/diary/icons/nomal_13.png -share/hns/public_html/diary/icons/ojigi_13.png -share/hns/public_html/diary/icons/okoru_13.png -share/hns/public_html/diary/icons/ruri-bg.png -share/hns/public_html/diary/icons/ruri.png -share/hns/public_html/diary/icons/ruriase.png -share/hns/public_html/diary/icons/ruribaka.png -share/hns/public_html/diary/icons/ruriodor.png -share/hns/public_html/diary/icons/ruriusiro.png -share/hns/public_html/diary/icons/ruriv.png -share/hns/public_html/diary/icons/ruriwarau.png -share/hns/public_html/diary/icons/usiro_13.png -share/hns/public_html/diary/icons/v_13.png -share/hns/public_html/diary/icons/warau_13.png -share/hns/public_html/diary/icons/yasum_13.png +share/hns/public_html/diary/icons/usa_index_j.html +share/hns/public_html/diary/icons/usaase.png +share/hns/public_html/diary/icons/usaback.png +share/hns/public_html/diary/icons/usabaka.png +share/hns/public_html/diary/icons/usabe.png +share/hns/public_html/diary/icons/usabe2.png +share/hns/public_html/diary/icons/usadoki.png +share/hns/public_html/diary/icons/usahatena.png +share/hns/public_html/diary/icons/usaheno.png +share/hns/public_html/diary/icons/usaheno2.png +share/hns/public_html/diary/icons/usamemo.png +share/hns/public_html/diary/icons/usamesen.png +share/hns/public_html/diary/icons/usanaze.png +share/hns/public_html/diary/icons/usaniko.png +share/hns/public_html/diary/icons/usapeko.png +share/hns/public_html/diary/icons/usasho.png +share/hns/public_html/diary/icons/usasmile.png +share/hns/public_html/diary/icons/usasmile2.png +share/hns/public_html/diary/icons/usauru.png +share/hns/public_html/diary/icons/usauru2.png +share/hns/public_html/diary/icons/usav.png share/hns/public_html/diary/index.cgi.in -share/hns/public_html/diary/japanese/theme-old.ph share/hns/public_html/diary/japanese/theme-static.ph share/hns/public_html/diary/japanese/theme.ph share/hns/public_html/diary/lib/CGI/Cookie.pm share/hns/public_html/diary/lib/CGI/QueryString.pm share/hns/public_html/diary/lib/CGI/Tools.pm +share/hns/public_html/diary/lib/CodeConv.pm share/hns/public_html/diary/lib/DateTime/Date.pm share/hns/public_html/diary/lib/DateTime/Format.pm share/hns/public_html/diary/lib/DateTime/Time.pm share/hns/public_html/diary/lib/HNS.pm +share/hns/public_html/diary/lib/HNS/AccessControl.pm share/hns/public_html/diary/lib/HNS/Admini.pm +share/hns/public_html/diary/lib/HNS/Cache.pm share/hns/public_html/diary/lib/HNS/Calendar/Direct.pm share/hns/public_html/diary/lib/HNS/Calendar/NoTable.pm share/hns/public_html/diary/lib/HNS/Calendar/Table.pm @@ -187,64 +226,77 @@ share/hns/public_html/diary/message.html share/hns/public_html/diary/ruribaka/ruri-bg.png share/hns/public_html/diary/ruribaka/theme.ph -share/hns/public_html/diary/update.html +share/hns/test.txt share/hns/tools/admini/ChangeLog.ja share/hns/tools/admini/admini.cgi.in +share/hns/tools/clear_cache/ChangeLog.ja +share/hns/tools/clear_cache/clear_cache.cgi.in +share/hns/tools/di/ChangeLog +share/hns/tools/di/di.cgi.in share/hns/tools/log/ChangeLog.ja share/hns/tools/log/log.cgi.in share/hns/tools/mail2nikki/ChangeLog.ja share/hns/tools/mail2nikki/mail2nikki.pl.in -share/hns/tools/make-rurimap/ChangeLog.ja +share/hns/tools/make-diary/ChangeLog +share/hns/tools/make-diary/make-diary.pl.in +share/hns/tools/make-rurimap/ChangeLog share/hns/tools/make-rurimap/make-rurimap.cgi.in share/hns/tools/pospe2hnf/ChangeLog.ja share/hns/tools/pospe2hnf/pospe2hnf.pl.in share/hns/tools/rotate_log/ChangeLog.ja share/hns/tools/rotate_log/rotate_log.cgi.in +share/hns/tools/static/logging.pl.in share/hns/tools/title/ChangeLog.ja share/hns/tools/title/title.cgi.in share/hns/tools/title_wrapper/ChangeLog.ja share/hns/tools/title_wrapper/title_wrapper.cgi.in share/hns/tools/view/ChangeLog.ja share/hns/tools/view/view.cgi.in -share/hns/tools/web2nikki/ChangeLog.ja -share/hns/tools/web2nikki/web2nikki.cgi.in -@dirrm share/hns/contrib/hnf-mode -@dirrm share/hns/contrib/perl5003-patch -@dirrm share/hns/contrib/theme/hns-2.00 -@dirrm share/hns/contrib/theme -@dirrm share/hns/contrib/todayhns -@dirrm share/hns/contrib/yar-3 -@dirrm share/hns/contrib -@dirrm share/hns/diary/2000 -@dirrm share/hns/diary/conf -@dirrm share/hns/diary -@dirrm share/hns/docs -@dirrm share/hns/public_html/diary/anti-windoze -@dirrm share/hns/public_html/diary/cat -@dirrm share/hns/public_html/diary/english -@dirrm share/hns/public_html/diary/icons -@dirrm share/hns/public_html/diary/japanese -@dirrm share/hns/public_html/diary/lib/CGI -@dirrm share/hns/public_html/diary/lib/DateTime -@dirrm share/hns/public_html/diary/lib/HNS/Calendar -@dirrm share/hns/public_html/diary/lib/HNS/Hnf +share/hns/tools/webif/ChangeLog.ja +share/hns/tools/webif/webif.cgi.in +@dirrm share/hns/tools/webif +@dirrm share/hns/tools/view +@dirrm share/hns/tools/title_wrapper +@dirrm share/hns/tools/title +@dirrm share/hns/tools/static +@dirrm share/hns/tools/rotate_log +@dirrm share/hns/tools/pospe2hnf +@dirrm share/hns/tools/make-rurimap +@dirrm share/hns/tools/make-diary +@dirrm share/hns/tools/mail2nikki +@dirrm share/hns/tools/log +@dirrm share/hns/tools/di +@dirrm share/hns/tools/clear_cache +@dirrm share/hns/tools/admini +@dirrm share/hns/tools +@dirrm share/hns/public_html/diary/ruribaka +@dirrm share/hns/public_html/diary/lib/SimpleDB +@dirrm share/hns/public_html/diary/lib/Image @dirrm share/hns/public_html/diary/lib/HNS/PIM +@dirrm share/hns/public_html/diary/lib/HNS/Hnf +@dirrm share/hns/public_html/diary/lib/HNS/Calendar @dirrm share/hns/public_html/diary/lib/HNS -@dirrm share/hns/public_html/diary/lib/Image -@dirrm share/hns/public_html/diary/lib/SimpleDB +@dirrm share/hns/public_html/diary/lib/DateTime +@dirrm share/hns/public_html/diary/lib/CGI @dirrm share/hns/public_html/diary/lib -@dirrm share/hns/public_html/diary/ruribaka +@dirrm share/hns/public_html/diary/japanese +@dirrm share/hns/public_html/diary/icons +@dirrm share/hns/public_html/diary/english +@dirrm share/hns/public_html/diary/cat +@dirrm share/hns/public_html/diary/anti-windoze @dirrm share/hns/public_html/diary @dirrm share/hns/public_html -@dirrm share/hns/tools/admini -@dirrm share/hns/tools/log -@dirrm share/hns/tools/mail2nikki -@dirrm share/hns/tools/make-rurimap -@dirrm share/hns/tools/pospe2hnf -@dirrm share/hns/tools/rotate_log -@dirrm share/hns/tools/title -@dirrm share/hns/tools/title_wrapper -@dirrm share/hns/tools/view -@dirrm share/hns/tools/web2nikki -@dirrm share/hns/tools +@dirrm share/hns/docs +@dirrm share/hns/diary/conf +@dirrm share/hns/diary/2000 +@dirrm share/hns/diary +@dirrm share/hns/contrib/todayhns +@dirrm share/hns/contrib/theme/hns-2.10 +@dirrm share/hns/contrib/theme/hns-2.00 +@dirrm share/hns/contrib/theme +@dirrm share/hns/contrib/perl5003-patch +@dirrm share/hns/contrib/isystem-0.9.9/doc +@dirrm share/hns/contrib/isystem-0.9.9 +@dirrm share/hns/contrib/hnf-mode +@dirrm share/hns/contrib @dirrm share/hns >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 Nov 27 9:29:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id B0B3337B479 for ; Mon, 27 Nov 2000 09:29:52 -0800 (PST) Received: from FreeBSD.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id JAA73824; Mon, 27 Nov 2000 09:29:37 -0800 (PST) (envelope-from DougB@FreeBSD.org) Message-ID: <3A229A01.451315C1@FreeBSD.org> Date: Mon, 27 Nov 2000 09:29:37 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Andre Albsmeier Cc: freebsd-ports@FreeBSD.org, brian@Awfulhak.org Subject: Re: ports/23017: [PATCH] for arpwatch to log PID to syslog References: <200011250553.VAA26763@freefall.freebsd.org> <20001127071137.A71003@curry.mchp.siemens.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andre Albsmeier wrote: > > On Fri, 24-Nov-2000 at 21:53:39 -0800, dougb@FreeBSD.org wrote: > > Synopsis: [PATCH] for arpwatch to log PID to syslog > > > > State-Changed-From-To: open->closed > > State-Changed-By: dougb > > State-Changed-When: Fri Nov 24 21:52:28 PST 2000 > > State-Changed-Why: > > > > It's more appropriate to submit a patch like this to the > > port's author. > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23017 > > So could you please assing it to him? > > MAINTAINER= brian@Awfulhak.org I was referring to the software author, not the port author. -- So what I want to know is, where does the RED brick road go? Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 9:34:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.wipol.uni-bonn.de (heidi.wipol.uni-bonn.de [131.220.48.160]) by hub.freebsd.org (Postfix) with ESMTP id E945037B479 for ; Mon, 27 Nov 2000 09:34:39 -0800 (PST) Received: by mail.wipol.uni-bonn.de (Postfix, from userid 506) id EC55522836; Mon, 27 Nov 2000 18:34:23 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.wipol.uni-bonn.de (Postfix) with SMTP id E06C12282B; Mon, 27 Nov 2000 18:34:23 +0100 (CET) Date: Mon, 27 Nov 2000 18:34:23 +0100 (CET) From: =?ISO-8859-1?Q?Noel_K=F6the?= X-Sender: noel@heidi.wipol.uni-bonn.de To: dglo@ssec.wisc.edu Cc: ports@freebsd.org Subject: freebsd port mm.mysql.jdbc-1.2c Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, there is an error in the Makefile: jar: all $(JAR) -cv0f mysql_uncomp.jar org/gjt/mm/mysql/*.class; jar \ -cvf mysql_comp.jar org/gjt/mm/mysql/*.class The jar should be $(JAR). --=20 Noch einen sch=F6nen Tag Noel K=F6the To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 9:38:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hyde.ssec.wisc.edu (hyde.ssec.wisc.edu [144.92.108.217]) by hub.freebsd.org (Postfix) with ESMTP id E8BC637B479 for ; Mon, 27 Nov 2000 09:38:20 -0800 (PST) Received: from hyde.ssec.wisc.edu (dglo@localhost [127.0.0.1]) by hyde.ssec.wisc.edu (8.9.3/8.9.3) with ESMTP id LAA21590; Mon, 27 Nov 2000 11:37:54 -0600 (CST) Message-Id: <200011271737.LAA21590@hyde.ssec.wisc.edu> X-Mailer: exmh version 2.1.1 10/15/1999 To: =?ISO-8859-1?Q?Noel_K=F6the?= Cc: ports@FreeBSD.ORG Subject: Re: freebsd port mm.mysql.jdbc-1.2c In-reply-to: Your message of "Mon, 27 Nov 2000 18:34:23 +0100." Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Date: Mon, 27 Nov 2000 11:37:54 -0600 From: Dave Glowacki Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org =3D?ISO-8859-1?Q?Noel_K=3DF6the?=3D wrote: > Hello, > = > there is an error in the Makefile: > = > jar: all > $(JAR) -cv0f mysql_uncomp.jar org/gjt/mm/mysql/*.class; jar \ > -cvf mysql_comp.jar org/gjt/mm/mysql/*.class > = > The jar should be $(JAR). Thanks, but you may want to look at PR #22706, which has a port for the newer mm.mysql.jdbc-2.0.2 driver (which works on both jdk1.1.8 *and* jdk1.2.2) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 10:10: 9 2000 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 A674037B4CF for ; Mon, 27 Nov 2000 10:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA35655; Mon, 27 Nov 2000 10:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9A12E37B4C5; Mon, 27 Nov 2000 10:05:42 -0800 (PST) Message-Id: <20001127180542.9A12E37B4C5@hub.freebsd.org> Date: Mon, 27 Nov 2000 10:05:42 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23134: Update port: graphics/zimg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23134 >Category: ports >Synopsis: Update port: graphics/zimg >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 Nov 27 10:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Support LOCALBASE properly >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/zimg/Makefile graphics/zimg/Makefile --- /usr/ports/graphics/zimg/Makefile Tue Nov 28 02:46:25 2000 +++ graphics/zimg/Makefile Tue Nov 28 02:47:20 2000 @@ -15,7 +15,9 @@ LIB_DEPENDS= gd.1:${PORTSDIR}/graphics/gd GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--disable-edf --with-gd-includes=${LOCALBASE}/include/gd +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --disable-edf --with-gd-includes=${LOCALBASE}/include/gd MAN1= zimg.1 .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 Mon Nov 27 10:10:21 2000 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 776CF37B4C5 for ; Mon, 27 Nov 2000 10:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA35638; Mon, 27 Nov 2000 10:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A0EFC37B479; Mon, 27 Nov 2000 10:05:00 -0800 (PST) Message-Id: <20001127180500.A0EFC37B479@hub.freebsd.org> Date: Mon, 27 Nov 2000 10:05:00 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23133: Update port: databases/unixODBC to 1.8.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23133 >Category: ports >Synopsis: Update port: databases/unixODBC to 1.8.13 >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 Nov 27 10:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.8.13 >How-To-Repeat: >Fix: diff -urN /usr/ports/databases/unixODBC/Makefile databases/unixODBC/Makefile --- /usr/ports/databases/unixODBC/Makefile Fri Nov 24 23:24:18 2000 +++ databases/unixODBC/Makefile Sat Nov 25 14:17:16 2000 @@ -6,7 +6,7 @@ # PORTNAME= unixODBC -PORTVERSION= 1.8.8 +PORTVERSION= 1.8.13 CATEGORIES= databases MASTER_SITES= http://www.unixodbc.org/ @@ -14,11 +14,19 @@ USE_LIBTOOL= yes INSTALLS_SHLIB= yes -.if defined(WITH_X) -USE_XLIB= yes -CONFIGURE_ARGS+=--enable-gui + +.if defined(WITH_GUI) +USE_QT2= yes +CONFIGURE_ENV= MOC="${X11BASE}/bin/moc2" +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 +PLIST_SUB= GUI:="" .else -CONFIGURE_ARGS+=--disable-gui +CONFIGURE_ARGS= --disable-gui +PLIST_SUB= GUI:="@comment " .endif .include diff -urN /usr/ports/databases/unixODBC/distinfo databases/unixODBC/distinfo --- /usr/ports/databases/unixODBC/distinfo Fri May 12 00:41:27 2000 +++ databases/unixODBC/distinfo Sat Nov 25 08:10:57 2000 @@ -1 +1 @@ -MD5 (unixODBC-1.8.8.tar.gz) = 1c3c91534757d0372b5ae97baa41fd2f +MD5 (unixODBC-1.8.13.tar.gz) = 732338e03ab52a7382968ef2a0f6dd51 diff -urN /usr/ports/databases/unixODBC/files/patch-aa databases/unixODBC/files/patch-aa --- /usr/ports/databases/unixODBC/files/patch-aa Fri May 12 12:11:34 2000 +++ databases/unixODBC/files/patch-aa Sat Nov 25 14:16:15 2000 @@ -1,56 +1,56 @@ ---- configure.orig Fri May 12 07:50:57 2000 -+++ configure Fri May 12 07:57:18 2000 -@@ -2565,6 +2565,53 @@ +--- configure.orig Tue Nov 14 20:11:45 2000 ++++ configure Sat Nov 25 14:16:03 2000 +@@ -2578,14 +2578,14 @@ + + + if test "x$thread" = "xtrue"; then +- echo $ac_n "checking for pthread_mutex_lock in -lpthread""... $ac_c" 1>&6 +-echo "configure:2583: checking for pthread_mutex_lock in -lpthread" >&5 ++ echo $ac_n "checking for pthread_mutex_lock in -pthread""... $ac_c" 1>&6 ++echo "configure:2583: checking for pthread_mutex_lock in -pthread" >&5 + ac_lib_var=`echo pthread'_'pthread_mutex_lock | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-lpthread $LIBS" ++LIBS="-pthread $LIBS" + cat > conftest.$ac_ext <&6 - fi +@@ -3323,7 +3323,7 @@ + + + +-LIBQT="-lqt" ++LIBQT="-lqt2" + if test $kde_qtver = 2; then + + +@@ -3531,7 +3531,7 @@ + + CXXFLAGS="$CXXFLAGS -I$qt_includes" + LDFLAGS="$X_LDFLAGS" +-LIBS="-lqt -lXext -lX11 $LIBSOCKET" ++LIBS="-lqt2 -lXext -lX11 $LIBSOCKET" + LD_LIBRARY_PATH= + export LD_LIBRARY_PATH + LIBRARY_PATH= +@@ -3695,7 +3695,7 @@ + + + +-LIB_QT='-lqt $(LIBPNG) -lXext $(LIB_X11)' ++LIB_QT='-lqt2 $(LIBPNG) -lXext $(LIB_X11)' + + -+ echo $ac_n "checking for pthread_mutex_lock in -lc_r""... $ac_c" 1>&6 -+echo "configure:2523: checking for pthread_mutex_lock in -lc_r" >&5 -+ac_lib_var=`echo c_r'_'pthread_mutex_lock | sed 'y%./+-%__p_%'` -+if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then -+ echo $ac_n "(cached) $ac_c" 1>&6 -+else -+ ac_save_LIBS="$LIBS" -+LIBS="$LIBS -lc_r" -+cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then -+ rm -rf conftest* -+ eval "ac_cv_lib_$ac_lib_var=yes" -+else -+ echo "configure: failed program was:" >&5 -+ cat conftest.$ac_ext >&5 -+ rm -rf conftest* -+ eval "ac_cv_lib_$ac_lib_var=no" -+fi -+rm -f conftest* -+LIBS="$ac_save_LIBS" -+ -+fi -+if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then -+ echo "$ac_t""yes" 1>&6 -+ ac_tr_lib=HAVE_LIB`echo pthread | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -+ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` -+ cat >> confdefs.h <&6 -+fi -+ - echo $ac_n "checking for mutex_lock in -lthread""... $ac_c" 1>&6 - echo "configure:2570: checking for mutex_lock in -lthread" >&5 - ac_lib_var=`echo thread'_'mutex_lock | sed 'y%./+-%__p_%'` diff -urN /usr/ports/databases/unixODBC/pkg-plist databases/unixODBC/pkg-plist --- /usr/ports/databases/unixODBC/pkg-plist Thu Jul 20 00:40:28 2000 +++ databases/unixODBC/pkg-plist Sat Nov 25 15:04:50 2000 @@ -1,58 +1,67 @@ -bin/odbcinst -bin/isql +%%GUI:%%bin/DataManager +%%GUI:%%bin/ODBCConfig +%%GUI:%%bin/odbctest bin/dltest -etc/odbcinst.ini +bin/isql +bin/odbcinst etc/odbc.ini +etc/odbcinst.ini include/odbcinst.h include/odbcinstext.h include/sql.h include/sqlext.h include/sqltypes.h -lib/libodbcextras.so.1 -lib/libodbcextras.so -lib/libodbcextras.a -lib/libodbcinst.so.1 -lib/libodbcinst.so -lib/libodbcinst.a -lib/libodbc.so.1 -lib/libodbc.so +lib/libesoobS.a +lib/libesoobS.so +lib/libesoobS.so.1 +lib/libnn.a +lib/libnn.so +lib/libnn.so.1 lib/libodbc.a -lib/libodbccr.so.1 -lib/libodbccr.so +lib/libodbc.so +lib/libodbc.so.1 lib/libodbccr.a -lib/libodbcdrvcfg1S.so.1 -lib/libodbcdrvcfg1S.so +lib/libodbccr.so +lib/libodbccr.so.1 lib/libodbcdrvcfg1S.a -lib/libodbcdrvcfg2S.so.1 -lib/libodbcdrvcfg2S.so +lib/libodbcdrvcfg1S.so +lib/libodbcdrvcfg1S.so.1 lib/libodbcdrvcfg2S.a -lib/libodbcpsqlS.so.1 -lib/libodbcpsqlS.so -lib/libodbcpsqlS.a -lib/libodbcminiS.so.1 -lib/libodbcminiS.so +lib/libodbcdrvcfg2S.so +lib/libodbcdrvcfg2S.so.1 +lib/libodbcextras.a +lib/libodbcextras.so +lib/libodbcextras.so.1 +lib/libodbcinst.a +lib/libodbcinst.so +lib/libodbcinst.so.1 lib/libodbcminiS.a -lib/libodbcmyS.so.1 -lib/libodbcmyS.so +lib/libodbcminiS.so +lib/libodbcminiS.so.1 lib/libodbcmyS.a -lib/libodbcnnS.so.1 -lib/libodbcnnS.so +lib/libodbcmyS.so +lib/libodbcmyS.so.1 lib/libodbcnnS.a -lib/libesoobS.so.1 -lib/libesoobS.so -lib/libesoobS.a -lib/liboplodbcS.so.1 -lib/liboplodbcS.so -lib/liboplodbcS.a -lib/libodbcpsql.so.1 -lib/libodbcpsql.so +lib/libodbcnnS.so +lib/libodbcnnS.so.1 lib/libodbcpsql.a -lib/libodbctxt.so.1 -lib/libodbctxt.so +lib/libodbcpsql.so +lib/libodbcpsql.so.1 +lib/libodbcpsqlS.a +lib/libodbcpsqlS.so +lib/libodbcpsqlS.so.1 lib/libodbctxt.a -lib/libtemplate.so.1 -lib/libtemplate.so +lib/libodbctxt.so +lib/libodbctxt.so.1 +lib/liboplodbcS.a +lib/liboplodbcS.so +lib/liboplodbcS.so.1 +lib/liboraodbcS.a +lib/liboraodbcS.so +lib/liboraodbcS.so.1 +lib/libtdsS.a +lib/libtdsS.so +lib/libtdsS.so.1 lib/libtemplate.a -lib/libnn.so.1 -lib/libnn.so -lib/libnn.a +lib/libtemplate.so +lib/libtemplate.so.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 Mon Nov 27 10:10:31 2000 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 993D237B4D7 for ; Mon, 27 Nov 2000 10:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA35664; Mon, 27 Nov 2000 10:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 70AFA37B479; Mon, 27 Nov 2000 10:06:26 -0800 (PST) Message-Id: <20001127180626.70AFA37B479@hub.freebsd.org> Date: Mon, 27 Nov 2000 10:06:26 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23135: Update port: math/freefem to 3.5.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23135 >Category: ports >Synopsis: Update port: math/freefem to 3.5.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: Mon Nov 27 10:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 3.5.1 New file: files/patch-ah Remove file: files/patch-aa files/patch-ab files/patch-ac files/patch-ad files/patch-ae files/patch-af files/patch-ag >How-To-Repeat: >Fix: diff -urN /usr/ports/math/freefem/Makefile math/freefem/Makefile --- /usr/ports/math/freefem/Makefile Fri Apr 14 18:53:04 2000 +++ math/freefem/Makefile Tue Nov 28 01:45:51 2000 @@ -6,25 +6,29 @@ # PORTNAME= freefem -PORTVERSION= 3.4 +PORTVERSION= 3.5.1 CATEGORIES= math cad -MASTER_SITES= ftp://ftp.inria.fr/INRIA/Projects/Gamma/freefem/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= kfem MAINTAINER= ports@FreeBSD.org USE_X_PREFIX= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-adapt --with-optimization +USE_LIBTOOL= yes +CONFIGURE_ARGS= --enable-adapt --with-optimization -post-install: +MAN1= freefem.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/freefem/freefem ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/debian/freefem.1 ${MANPREFIX}/man/man1 + @${MKDIR} ${PREFIX}/share/examples/freefem + ${INSTALL_DATA} ${WRKSRC}/examples/*.pde ${PREFIX}/share/examples/freefem .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/freefem - ${CP} ${WRKSRC}/doc/freefem.dvi ${PREFIX}/share/doc/freefem - ${CP} ${WRKSRC}/doc/freefem.ps ${PREFIX}/share/doc/freefem - ${CP} ${WRKSRC}/doc/freefem.txt ${PREFIX}/share/doc/freefem - ${GZIP_CMD} ${PREFIX}/share/doc/freefem/freefem.txt - ${RM} -rf ${PREFIX}/share/examples/freefem - ${MV} ${PREFIX}/share/freefem ${PREFIX}/share/examples + @${MKDIR} ${PREFIX}/share/doc/freefem +.for file in ChangeLog NEWS README + ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/freefem +.endfor .endif .include diff -urN /usr/ports/math/freefem/distinfo math/freefem/distinfo --- /usr/ports/math/freefem/distinfo Sun Feb 27 04:46:06 2000 +++ math/freefem/distinfo Mon Nov 27 23:49:22 2000 @@ -1 +1 @@ -MD5 (freefem-3.4.tar.gz) = c79c5bc3b0c107c742f9e157a2af9aac +MD5 (freefem-3.5.1.tar.gz) = 822fd42fb4b4e9c3152d15b7e0899c98 diff -urN /usr/ports/math/freefem/files/patch-aa math/freefem/files/patch-aa --- /usr/ports/math/freefem/files/patch-aa Tue Jul 8 17:29:21 1997 +++ math/freefem/files/patch-aa Thu Jan 1 09:00:00 1970 @@ -1,19 +0,0 @@ -*** contrib/Emacs/Makefile.in.orig Sat Jul 5 22:59:05 1997 ---- contrib/Emacs/Makefile.in Sat Jul 5 23:06:38 1997 -*************** -*** 119,125 **** - done - .el.elc: - @echo 'WARNING: Warnings can be ignored. :-)' -! EMACS=$(EMACS) $(SHELL) $(srcdir)/elisp-comp $< - tags: TAGS - TAGS: - ---- 119,125 ---- - done - .el.elc: - @echo 'WARNING: Warnings can be ignored. :-)' -! # EMACS=$(EMACS); $(SHELL) $(srcdir)/elisp-comp $< - tags: TAGS - TAGS: - diff -urN /usr/ports/math/freefem/files/patch-ab math/freefem/files/patch-ab --- /usr/ports/math/freefem/files/patch-ab Tue Jul 8 17:29:22 1997 +++ math/freefem/files/patch-ab Thu Jan 1 09:00:00 1970 @@ -1,23 +0,0 @@ -*** doc/Makefile.in.orig Sun Jul 6 00:48:30 1997 ---- doc/Makefile.in Sun Jul 6 00:50:23 1997 -*************** -*** 233,241 **** - - - install-data-hook: -! $(mkinstalldirs) $(prefix)/doc/$(PACKAGE) - for file in $(EXTRA_DIST); do \ -! $(INSTALL_DATA) $(srcdir)/doc/$$file $(prefix)/doc/$(PACKAGE);\ - done - - #.tex.dvi: freefem.tex ---- 233,241 ---- - - - install-data-hook: -! $(mkinstalldirs) $(datadir)/doc/$(PACKAGE) - for file in $(EXTRA_DIST); do \ -! $(INSTALL_DATA) $(srcdir)/doc/$$file $(datadir)/doc/$(PACKAGE);\ - done - - #.tex.dvi: freefem.tex diff -urN /usr/ports/math/freefem/files/patch-ac math/freefem/files/patch-ac --- /usr/ports/math/freefem/files/patch-ac Tue Jul 8 17:29:23 1997 +++ math/freefem/files/patch-ac Thu Jan 1 09:00:00 1970 @@ -1,19 +0,0 @@ -*** doc/freefem/Makefile.in.orig Wed Feb 26 12:38:22 1997 ---- doc/freefem/Makefile.in Sun Jul 6 00:58:28 1997 -*************** -*** 79,85 **** - - SUFFIXES = .html - -! htmldir = $(prefix)/doc/$(PACKAGE)/html - html_DATA = freefem.html index.html node1.html node10.html node11.html node12.html node13.html node14.html node15.html node16.html node17.html node18.html node19.html node2.html node20.html node21.html node22.html node23.html node24.html node25.html node26.html node27.html node28.html node29.html node3.html node30.html node31.html node32.html node33.html node34.html node35.html node36.html node37.html node38.html node39.html node4.html node40.html node41.html node42.html node43.html node44.html node45.html node46.html node47.html node48.html node49.html node5.html node50.html node51.html node52.html node53.html node54.html node55.html node56.html node57.html node58.html node59.html node6.html node60.html node61.html node62.html node63.html node64.html node65.html node66.html node67.html node68.html node69.html node7.html node70.html node71.html node8.html node9.html blueball.gif change_begin.gif change_delete.gif change_end.gif contents_motif.gif cross_ref_motif.gif foot_motif.gif greenball.gif image.gif img1.gif img10.gif img11.gif img12.gif img13.gif img14.gif img15.gif img16.gif img17.gif img18.gif img19.gif img2.gif img20.gif img21.gif img22.gif img3.gif img4.gif img5.gif img6.gif img7.gif img8.gif img9.gif index_motif.gif next_group_motif.gif next_group_motif_gr.gif next_motif.gif next_motif_gr.gif orangeball.gif pinkball.gif previous_group_motif.gif previous_group_motif_gr.gif previous_motif.gif previous_motif_gr.gif purpleball.gif redball.gif up_motif.gif up_motif_gr.gif whiteball.gif yellowball.gif - - EXTRA_DIST = $(html_DATA) ---- 79,85 ---- - - SUFFIXES = .html - -! htmldir = $(datadir)/doc/$(PACKAGE)/html - html_DATA = freefem.html index.html node1.html node10.html node11.html node12.html node13.html node14.html node15.html node16.html node17.html node18.html node19.html node2.html node20.html node21.html node22.html node23.html node24.html node25.html node26.html node27.html node28.html node29.html node3.html node30.html node31.html node32.html node33.html node34.html node35.html node36.html node37.html node38.html node39.html node4.html node40.html node41.html node42.html node43.html node44.html node45.html node46.html node47.html node48.html node49.html node5.html node50.html node51.html node52.html node53.html node54.html node55.html node56.html node57.html node58.html node59.html node6.html node60.html node61.html node62.html node63.html node64.html node65.html node66.html node67.html node68.html node69.html node7.html node70.html node71.html node8.html node9.html blueball.gif change_begin.gif change_delete.gif change_end.gif contents_motif.gif cross_ref_motif.gif foot_motif.gif greenball.gif image.gif img1.gif img10.gif img11.gif img12.gif img13.gif img14.gif img15.gif img16.gif img17.gif img18.gif img19.gif img2.gif img20.gif img21.gif img22.gif img3.gif img4.gif img5.gif img6.gif img7.gif img8.gif img9.gif index_motif.gif next_group_motif.gif next_group_motif_gr.gif next_motif.gif next_motif_gr.gif orangeball.gif pinkball.gif previous_group_motif.gif previous_group_motif_gr.gif previous_motif.gif previous_motif_gr.gif purpleball.gif redball.gif up_motif.gif up_motif_gr.gif whiteball.gif yellowball.gif - - EXTRA_DIST = $(html_DATA) diff -urN /usr/ports/math/freefem/files/patch-ad math/freefem/files/patch-ad --- /usr/ports/math/freefem/files/patch-ad Mon Feb 21 05:45:23 2000 +++ math/freefem/files/patch-ad Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- adapt/agibbs.cxx.orig Fri Feb 18 11:44:33 2000 -+++ adapt/agibbs.cxx Fri Feb 18 11:44:49 2000 -@@ -454,7 +454,7 @@ - integer i__1, i__2; - - /* Local variables */ -- static flag_; -+ static integer flag_; - static integer i, j, k, p, s, h0, i1, l0, i2; - /* extern Subroutine int adp_gibbs1_(); */ - static integer lg; diff -urN /usr/ports/math/freefem/files/patch-ae math/freefem/files/patch-ae --- /usr/ports/math/freefem/files/patch-ae Mon Feb 21 05:45:23 2000 +++ math/freefem/files/patch-ae Thu Jan 1 09:00:00 1970 @@ -1,13 +0,0 @@ ---- adapt/filter.cxx.orig Fri Feb 18 11:46:33 2000 -+++ adapt/filter.cxx Fri Feb 18 11:46:57 2000 -@@ -28,8 +28,8 @@ - extern int mshopt(Triangulo_T1*,const int&); - int mshsu(Triangulo_T1_dlist*, Arista_T1_dlist*, Triangulo_T1_dlist*, - Triangulo_T1_dlist*,Vertice_T1*, Metrica, int,Mallado_T0*,CAD*,int); --extern t_vecinos(Vertice_T1*,Triangulo_T1_dlist&); --extern t_local(Vertice_T1*,Triangulo_T1_dlist&); -+extern int t_vecinos(Vertice_T1*,Triangulo_T1_dlist&); -+extern int t_local(Vertice_T1*,Triangulo_T1_dlist&); - void mshreg0(Triangulo_T1_dlist*, Vertice_T1*,Scalar,Scalar,Mallado_T0*); - void mshreg1(Triangulo_T1_dlist*, Vertice_T1*,Scalar,Mallado_T0*,Scalar, - int,Scalar,Frontera_T1*); diff -urN /usr/ports/math/freefem/files/patch-af math/freefem/files/patch-af --- /usr/ports/math/freefem/files/patch-af Mon Feb 21 05:45:23 2000 +++ math/freefem/files/patch-af Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- adapt/s_inters.cxx.orig Fri Feb 18 11:50:38 2000 -+++ adapt/s_inters.cxx Fri Feb 18 11:50:50 2000 -@@ -20,7 +20,7 @@ - #include - #include - --extern t_vecinos(Vertice_T1*,Triangulo_T1_dlist&); -+extern int t_vecinos(Vertice_T1*,Triangulo_T1_dlist&); - - void busca_inters(Vertice_T1_dlist* Lsommet) { - diff -urN /usr/ports/math/freefem/files/patch-ag math/freefem/files/patch-ag --- /usr/ports/math/freefem/files/patch-ag Mon Feb 21 05:45:23 2000 +++ math/freefem/files/patch-ag Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- src/gibbs.cxx.orig Fri Feb 18 11:55:30 2000 -+++ src/gibbs.cxx Fri Feb 18 11:55:46 2000 -@@ -470,7 +470,7 @@ - integer i__1, i__2; - - /* Local variables */ -- static flag_; -+ static integer flag_; - static integer i, j, k, p, s, h0, i1, l0, i2; - - /* extern Subroutine int gibbs1_(); */ diff -urN /usr/ports/math/freefem/files/patch-ah math/freefem/files/patch-ah --- /usr/ports/math/freefem/files/patch-ah Thu Jan 1 09:00:00 1970 +++ math/freefem/files/patch-ah Mon Nov 27 23:57:31 2000 @@ -0,0 +1,11 @@ +--- configure.orig Mon Nov 27 23:54:52 2000 ++++ configure Mon Nov 27 23:57:18 2000 +@@ -4014,7 +4014,7 @@ + withval="$with_optimization" + + if test "$CXX" = "g++" || test "$CXX" = "c++" || test "$host_os" = "linux" ; then +- CXXFLAGS="-O3 -fforce-mem -fforce-addr -fomit-frame-pointer" ++ CXXFLAGS="$CXXFLAGS -fforce-mem -fforce-addr -fomit-frame-pointer" + fi + if test "$CXX" = "CC" && test "$host_os" = "hpux" ; then + CXXFLAGS="+O3 +a1" diff -urN /usr/ports/math/freefem/pkg-plist math/freefem/pkg-plist --- /usr/ports/math/freefem/pkg-plist Thu Jun 8 08:38:50 2000 +++ math/freefem/pkg-plist Tue Nov 28 01:46:12 2000 @@ -1,129 +1,7 @@ -bin/autogen bin/freefem -share/doc/freefem/freefem.txt.gz -share/doc/freefem/freefem.dvi -share/doc/freefem/freefem.ps -share/doc/freefem/html/freefem.html -share/doc/freefem/html/index.html -share/doc/freefem/html/node1.html -share/doc/freefem/html/node10.html -share/doc/freefem/html/node11.html -share/doc/freefem/html/node12.html -share/doc/freefem/html/node13.html -share/doc/freefem/html/node14.html -share/doc/freefem/html/node15.html -share/doc/freefem/html/node16.html -share/doc/freefem/html/node17.html -share/doc/freefem/html/node18.html -share/doc/freefem/html/node19.html -share/doc/freefem/html/node2.html -share/doc/freefem/html/node20.html -share/doc/freefem/html/node21.html -share/doc/freefem/html/node22.html -share/doc/freefem/html/node23.html -share/doc/freefem/html/node24.html -share/doc/freefem/html/node25.html -share/doc/freefem/html/node26.html -share/doc/freefem/html/node27.html -share/doc/freefem/html/node28.html -share/doc/freefem/html/node29.html -share/doc/freefem/html/node3.html -share/doc/freefem/html/node30.html -share/doc/freefem/html/node31.html -share/doc/freefem/html/node32.html -share/doc/freefem/html/node33.html -share/doc/freefem/html/node34.html -share/doc/freefem/html/node35.html -share/doc/freefem/html/node36.html -share/doc/freefem/html/node37.html -share/doc/freefem/html/node38.html -share/doc/freefem/html/node39.html -share/doc/freefem/html/node4.html -share/doc/freefem/html/node40.html -share/doc/freefem/html/node41.html -share/doc/freefem/html/node42.html -share/doc/freefem/html/node43.html -share/doc/freefem/html/node44.html -share/doc/freefem/html/node45.html -share/doc/freefem/html/node46.html -share/doc/freefem/html/node47.html -share/doc/freefem/html/node48.html -share/doc/freefem/html/node49.html -share/doc/freefem/html/node5.html -share/doc/freefem/html/node50.html -share/doc/freefem/html/node51.html -share/doc/freefem/html/node52.html -share/doc/freefem/html/node53.html -share/doc/freefem/html/node54.html -share/doc/freefem/html/node55.html -share/doc/freefem/html/node56.html -share/doc/freefem/html/node57.html -share/doc/freefem/html/node58.html -share/doc/freefem/html/node59.html -share/doc/freefem/html/node6.html -share/doc/freefem/html/node60.html -share/doc/freefem/html/node61.html -share/doc/freefem/html/node62.html -share/doc/freefem/html/node63.html -share/doc/freefem/html/node64.html -share/doc/freefem/html/node65.html -share/doc/freefem/html/node66.html -share/doc/freefem/html/node67.html -share/doc/freefem/html/node68.html -share/doc/freefem/html/node69.html -share/doc/freefem/html/node7.html -share/doc/freefem/html/node70.html -share/doc/freefem/html/node71.html -share/doc/freefem/html/node8.html -share/doc/freefem/html/node9.html -share/doc/freefem/html/blueball.gif -share/doc/freefem/html/change_begin.gif -share/doc/freefem/html/change_delete.gif -share/doc/freefem/html/change_end.gif -share/doc/freefem/html/contents_motif.gif -share/doc/freefem/html/cross_ref_motif.gif -share/doc/freefem/html/foot_motif.gif -share/doc/freefem/html/greenball.gif -share/doc/freefem/html/image.gif -share/doc/freefem/html/img1.gif -share/doc/freefem/html/img10.gif -share/doc/freefem/html/img11.gif -share/doc/freefem/html/img12.gif -share/doc/freefem/html/img13.gif -share/doc/freefem/html/img14.gif -share/doc/freefem/html/img15.gif -share/doc/freefem/html/img16.gif -share/doc/freefem/html/img17.gif -share/doc/freefem/html/img18.gif -share/doc/freefem/html/img19.gif -share/doc/freefem/html/img2.gif -share/doc/freefem/html/img20.gif -share/doc/freefem/html/img21.gif -share/doc/freefem/html/img22.gif -share/doc/freefem/html/img3.gif -share/doc/freefem/html/img4.gif -share/doc/freefem/html/img5.gif -share/doc/freefem/html/img6.gif -share/doc/freefem/html/img7.gif -share/doc/freefem/html/img8.gif -share/doc/freefem/html/img9.gif -share/doc/freefem/html/index_motif.gif -share/doc/freefem/html/next_group_motif.gif -share/doc/freefem/html/next_group_motif_gr.gif -share/doc/freefem/html/next_motif.gif -share/doc/freefem/html/next_motif_gr.gif -share/doc/freefem/html/orangeball.gif -share/doc/freefem/html/pinkball.gif -share/doc/freefem/html/previous_group_motif.gif -share/doc/freefem/html/previous_group_motif_gr.gif -share/doc/freefem/html/previous_motif.gif -share/doc/freefem/html/previous_motif_gr.gif -share/doc/freefem/html/purpleball.gif -share/doc/freefem/html/redball.gif -share/doc/freefem/html/up_motif.gif -share/doc/freefem/html/up_motif_gr.gif -share/doc/freefem/html/whiteball.gif -share/doc/freefem/html/yellowball.gif +share/doc/freefem/ChangeLog +share/doc/freefem/NEWS +share/doc/freefem/README share/examples/freefem/accous.pde share/examples/freefem/adj.pde share/examples/freefem/brachet.pde @@ -150,5 +28,4 @@ share/examples/freefem/validsys.pde share/examples/freefem/varvect.pde @dirrm share/examples/freefem -@dirrm share/doc/freefem/html @dirrm share/doc/freefem >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 Nov 27 10:10:35 2000 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 1451137B4E5 for ; Mon, 27 Nov 2000 10:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA35682; Mon, 27 Nov 2000 10:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A2CBF37B479; Mon, 27 Nov 2000 10:09:19 -0800 (PST) Message-Id: <20001127180919.A2CBF37B479@hub.freebsd.org> Date: Mon, 27 Nov 2000 10:09:19 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23137: Update port: sysutiles/wmbattery to 1.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23137 >Category: ports >Synopsis: Update port: sysutiles/wmbattery to 1.13 >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 Nov 27 10:10:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.13 >How-To-Repeat: >Fix: diff -urN /usr/ports/sysutils/wmbattery/Makefile sysutils/wmbattery/Makefile --- /usr/ports/sysutils/wmbattery/Makefile Mon Aug 14 18:31:44 2000 +++ sysutils/wmbattery/Makefile Mon Nov 27 23:03:13 2000 @@ -6,7 +6,7 @@ # PORTNAME= wmbattery -PORTVERSION= 1.12 +PORTVERSION= 1.13 CATEGORIES= sysutils windowmaker MASTER_SITES= http://kitenet.net/programs/code/wmbattery/ DISTNAME= ${PORTNAME}_${PORTVERSION} diff -urN /usr/ports/sysutils/wmbattery/distinfo sysutils/wmbattery/distinfo --- /usr/ports/sysutils/wmbattery/distinfo Fri May 19 20:53:14 2000 +++ sysutils/wmbattery/distinfo Mon Nov 27 23:03:47 2000 @@ -1 +1 @@ -MD5 (wmbattery_1.12.tar.gz) = f129625bda106ad4a004887cc147f589 +MD5 (wmbattery_1.13.tar.gz) = 1ef23fad426c72b0cbaf30db41144488 >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 Nov 27 10:10:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hercules.crossthread.com (hercules.crossthread.com [139.142.137.241]) by hub.freebsd.org (Postfix) with ESMTP id DBE9737B683 for ; Mon, 27 Nov 2000 10:10:24 -0800 (PST) Received: from cgytpushor (shl-host1.shl.ca [209.135.106.225]) (authenticated) by hercules.crossthread.com (8.11.1/8.11.1) with ESMTP id eARIB1N31942 for ; Mon, 27 Nov 2000 11:11:02 -0700 (MST) Message-ID: <0aed01c0589c$224d07f0$9828f99f@shl.com> From: "Tim Pushor" To: Subject: KDE 2.0 Problems Date: Mon, 27 Nov 2000 11:01:50 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi All, I am having some trouble with KDE 2.0 and FreeBSD 4.x. (currently 4.2). I have both compiled KDE from source, and installed the packages found in packages-current on freebsd.org. When I fire up KDE, kwrited dies: The application kwrited (kwrited) crashed and caused the signal 6 (SIGABRT) The buttons (icons) on the top of the windows (like for minimize & maximize etc) are garbled Trying to run a konsole gives the same result as kwrited. As well, I thought that binaries for kde 2.0 were to be included on CD1 of the new FreeBSD 4.2 release? As I am seeing no others with problems with KDE 2.0 and FreeBSD, surely I have something wrong with my environment.. KDE 1.2 runs fine.. Thanks for any insight.. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 10:10:52 2000 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 D3B0537B479 for ; Mon, 27 Nov 2000 10:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA35673; Mon, 27 Nov 2000 10:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C7E2B37B479; Mon, 27 Nov 2000 10:08:40 -0800 (PST) Message-Id: <20001127180840.C7E2B37B479@hub.freebsd.org> Date: Mon, 27 Nov 2000 10:08:40 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23136: Update port: net/rwhois to 1.5.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23136 >Category: ports >Synopsis: Update port: net/rwhois to 1.5.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: Mon Nov 27 10:10:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.5.7 New file: files/patch-ag Remove file: files/patch-ab files/patch-ad files/patch-af >How-To-Repeat: >Fix: diff -urN /usr/ports/net/rwhois/Makefile net/rwhois/Makefile --- /usr/ports/net/rwhois/Makefile Thu Oct 26 00:17:40 2000 +++ net/rwhois/Makefile Sat Nov 25 16:11:56 2000 @@ -6,10 +6,10 @@ # PORTNAME= rwhois -PORTVERSION= 1.0.b9.2 -CATEGORIES= net -MASTER_SITES= ftp://ftp.rwhois.net/pub/ -DISTNAME= rwhois-1.0B9.2 +PORTVERSION= 1.5.7 +CATEGORIES= net ipv6 +MASTER_SITES= http://www.rwhois.net/ftp/ +DISTNAME= ${PORTNAME}d-${PORTVERSION} MAINTAINER= ports@FreeBSD.org @@ -17,27 +17,27 @@ LIB_DEPENDS= wrap.7:${PORTSDIR}/security/tcp_wrapper .endif -HAS_CONFIGURE= YES +HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX}/lib/rwhois -INSTALL_TARGET= install install-sample-data install-chroot -MAN8= rmkdbindex.8 rwhoisd.8 +BINOWN= bin +BINGRP= bin -.include +MAN8= rwhois_indexer.8 rwhoisd.8 -.if ${OSVERSION} < 400011 -LIBCVERSION= 3.1 -.else -LIBCVERSION= 4 -.endif -PLIST_SUB= LIBCVERSION=${LIBCVERSION} +PORTDOCS= INSTALL.html TODO UPGRADE operations_guide.html \ + operations_guide.txt rfc2167.txt security.html security.txt post-install: - ${MKDIR} -p ${PREFIX}/share/doc/rwhois - ${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/rwhois - ${MV} ${PREFIX}/share/doc/rwhois/rmkdbindex.8 ${PREFIX}/man/man8 - ${MV} ${PREFIX}/share/doc/rwhois/rwhoisd.8 ${PREFIX}/man/man8 - @ ${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/rwhoisd.sh startup file..." + ${INSTALL_MAN} ${WRKSRC}/doc/rwhois_indexer.8 ${PREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/doc/rwhoisd.8 ${PREFIX}/man/man8 +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/rwhois +.for file in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${PREFIX}/share/doc/rwhois +.endfor +.endif + @${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/rwhoisd.sh startup file..." ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/rwhoisd.sh ${PREFIX}/etc/rc.d/rwhoisd.sh -.include +.include diff -urN /usr/ports/net/rwhois/distinfo net/rwhois/distinfo --- /usr/ports/net/rwhois/distinfo Sat May 31 05:13:23 1997 +++ net/rwhois/distinfo Sat Nov 25 15:15:40 2000 @@ -1 +1 @@ -MD5 (rwhois-1.0B9.2.tar.gz) = f444b79637ffd78b92961e63137cc83b +MD5 (rwhoisd-1.5.7.tar.gz) = 02e22ebec5c4c76a626fe74c945300a0 diff -urN /usr/ports/net/rwhois/files/patch-aa net/rwhois/files/patch-aa --- /usr/ports/net/rwhois/files/patch-aa Sat May 31 05:13:23 1997 +++ net/rwhois/files/patch-aa Sat Nov 25 15:44:08 2000 @@ -1,78 +1,11 @@ ---- Makefile.in.orig Thu Aug 8 20:37:37 1996 -+++ Makefile.in Fri May 23 03:06:12 1997 -@@ -2,7 +2,7 @@ - @SET_MAKE@ +--- Makefile.in.orig Tue Jun 3 23:20:53 1997 ++++ Makefile.in Sat Nov 25 15:44:00 2000 +@@ -25,7 +25,7 @@ + BIN_SUBDIRS = server tools + ALL_SUBDIRS = $(LIB_SUBDIRS) $(BIN_SUBDIRS) $(SAMPLE_DATA_DIR) - # set install program --INSTALL = @INSTALL@ -+INSTALL = /usr/bin/install -c -s -o bin -g bin +-all: libraries libwrap binaries ++all: libraries binaries - # set prefix values - prefix = @prefix@ -@@ -25,12 +25,12 @@ - PARSER_DIR = $(TOOLS_DIR)/rwhoisparse - LIBWRAP_DIR = tools/tcpd_wrapper - CLIENT_DIR = client --SAMPLE_DATA_DIR = @SAMPLE_DATA_DIR@ -+SAMPLE_DATA_DIR = ${RWHOIS_ROOT_DIR} - LIBRWHOIS = librwhois.a - LIBMKDB = libmkdb.a - LIBWRAP = libwrap.a - --all: librwhois libmkdb libwrap make-server indexer parser make-client -+all: librwhois libmkdb make-server indexer parser make-client - - librwhois: - @echo "Making $(LIBRWHOIS)" -@@ -77,7 +77,7 @@ - - install-chroot: - @echo "Setup chroot stuff" -- chroot.sh $(RWHOIS_ROOT_DIR) -+ ./chroot.sh $(RWHOIS_ROOT_DIR) - - install-client: - @echo "Installing RWhois Client" -@@ -86,21 +86,13 @@ - install-sample-data: sample-data-install - - sample-data-install: -- @echo "Setting up for quickie install with sample data" -- @echo "This is located in `pwd`/sample.data" -- @echo "Setting up RWhois default data directory (data will reside here)" -+ if [ -d ${.CURDIR}/sample.data/bin ]; then rm -r ${.CURDIR}/sample.data/bin; fi -+ if [ -d ${.CURDIR}/sample.data/etc ]; then rm -r ${.CURDIR}/sample.data/etc; fi -+ cp -r ${.CURDIR}/sample.data/ ${SAMPLE_DATA_DIR} - (sh tools/install/setup_rwhois_conf $(SAMPLE_DATA_DIR)) -- @echo "Setting up index scripts" - (sh tools/install/setup_index_scripts $(SAMPLE_DATA_DIR)) -- @echo "Copying the indexer into the sample data area" -- if [ $(SAMPLE_DATA_DIR) != $(RWHOIS_ROOT_DIR) ]; then \ -- if [ ! -d $(SAMPLE_DATA_DIR)/bin ]; then \ -- mkdir $(SAMPLE_DATA_DIR)/bin; \ -- fi; \ -- cp $(RWHOIS_ROOT_DIR)/bin/rmkdbindex $(SAMPLE_DATA_DIR)/bin; \ -- fi -- @echo "Running index scripts" - (sh tools/install/run_index_scripts $(SAMPLE_DATA_DIR)) -+ /usr/sbin/chown -R nobody ${SAMPLE_DATA_DIR}/data ${SAMPLE_DATA_DIR}/rwhois.log - - clean: - @echo "Cleaning Server" -@@ -109,8 +101,6 @@ - (cd $(COMMON_DIR); $(MAKE) clean) - @echo "Cleaning MKDB" - (cd $(MKDB_DIR); $(MAKE) clean) -- @echo "Cleaning TCPD stuff" -- (cd $(LIBWRAP_DIR); $(MAKE) clean) - @echo "Cleaning RWhois Indexer" - (cd $(INDEXER_DIR); $(MAKE) clean) - @echo "Cleaning RWhois Parser" -@@ -133,7 +123,6 @@ - (cd $(MKDB_DIR); $(MAKE) distclean) - (cd $(INDEXER_DIR); $(MAKE) distclean) - (cd $(PARSER_DIR); $(MAKE) distclean) -- (cd $(LIBWRAP_DIR); $(MAKE) clean) - (cd $(CLIENT_DIR); $(MAKE) distclean) - - dist: + libraries: + @for dir in $(LIB_SUBDIRS); do \ diff -urN /usr/ports/net/rwhois/files/patch-ab net/rwhois/files/patch-ab --- /usr/ports/net/rwhois/files/patch-ab Sat May 31 05:13:23 1997 +++ net/rwhois/files/patch-ab Thu Jan 1 09:00:00 1970 @@ -1,19 +0,0 @@ ---- client/Makefile.in.orig Wed Sep 25 18:10:48 1996 -+++ client/Makefile.in Fri May 23 02:34:00 1997 -@@ -6,7 +6,7 @@ - - CC = @CC@ - RANLIB = @RANLIB@ --INSTALL = @INSTALL@ -+INSTALL = /usr/bin/install -c -s -o bin -g bin - - - # -@@ -56,6 +56,7 @@ - install: - if [ ! -d $(bindir) ]; then mkdir $(bindir); fi - $(INSTALL) rwhois $(bindir) -+ /bin/ln -sf ${PREFIX}/lib/rwhois/bin/rwhois ${PREFIX}/bin/rwhois - - clean: - rm -f rwhois *.o *~ librwclient.a diff -urN /usr/ports/net/rwhois/files/patch-ac net/rwhois/files/patch-ac --- /usr/ports/net/rwhois/files/patch-ac Sat May 31 05:13:24 1997 +++ net/rwhois/files/patch-ac Sat Nov 25 15:27:55 2000 @@ -1,31 +1,33 @@ ---- server/Makefile.in.orig Wed Sep 25 13:03:56 1996 -+++ server/Makefile.in Fri May 9 22:48:56 1997 -@@ -7,14 +7,15 @@ +--- server/Makefile.in.orig Fri May 12 01:10:25 2000 ++++ server/Makefile.in Sat Nov 25 15:27:16 2000 +@@ -9,7 +9,7 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = $(exec_prefix)/bin +-etcdir = $(exec_prefix)/etc +sbindir = $(exec_prefix)/sbin - etcdir = $(exec_prefix)/etc - # local libs/includes - COMMON_INC = -I../common - COMMON_LIBS = -L../common -lrwhois + srcdir = @srcdir@ + VPATH = @srcdir@ +@@ -18,8 +18,8 @@ + COMMON_INC = -I$(srcdir)/../common + COMMON_LIBS = -L../common -lrwcommon --WRAP_INC = -I../tools/tcpd_wrapper --WRAP_LIBS = -L../tools/tcpd_wrapper -lwrap -+WRAP_INC = -I${PREFIX}/include -+WRAP_LIBS = -L${PREFIX}/lib -lwrap +-WRAP_INC = -I$(srcdir)../tools/tcpd_wrapper +-WRAP_LIBS = -L../tools/tcpd_wrapper -lwrap ++WRAP_INC = -I${LOCALBASE}/include ++WRAP_LIBS = -L${LOCALBASE}/lib -lwrap - MKDB_INC = -I../mkdb - MKDB_LIBS = -L../mkdb -lmkdb -@@ -77,8 +78,8 @@ - $(CC) -c $(CFLAGS) $(LOCAL_INC) $*.c + MKDB_INC = -I$(srcdir)/../mkdb + MKDB_LIBS = -L../mkdb -lmkdb +@@ -97,8 +97,8 @@ install: + if [ ! -d $(exec_prefix) ]; then mkdir $(exec_prefix); fi - if [ ! -d $(etcdir) ]; then mkdir $(etcdir); fi - $(INSTALL) rwhoisd $(etcdir) -+ if [ ! -d $(sbindir) ]; then mkdir -p $(sbindir); fi ++ if [ ! -d $(sbindir) ]; then mkdir $(sbindir); fi + $(INSTALL) rwhoisd $(sbindir) - clean: - rm -f *.[oa] + uninstall: + $(RM) $(etcdir)/rwhoisd diff -urN /usr/ports/net/rwhois/files/patch-ad net/rwhois/files/patch-ad --- /usr/ports/net/rwhois/files/patch-ad Thu Jun 5 22:54:01 1997 +++ net/rwhois/files/patch-ad Thu Jan 1 09:00:00 1970 @@ -1,54 +0,0 @@ ---- chroot.sh.orig Wed Jul 31 15:34:34 1996 -+++ chroot.sh Thu Jun 5 09:45:59 1997 -@@ -10,9 +10,15 @@ - #umask 022 - - RWHOIS_ROOT_DIR=$1 --COPY="cp" -+COPY="/bin/cp" - - # check if these directories exist -+if test ! -d ${RWHOIS_ROOT_DIR} -+then -+ echo "make directory ${RWHOIS_ROOT_DIR}." -+ mkdir ${RWHOIS_ROOT_DIR} -+fi -+ - if test ! -d ${RWHOIS_ROOT_DIR}/etc - then - echo "make directory ${RWHOIS_ROOT_DIR}/etc". -@@ -35,20 +41,30 @@ - then - echo "make directory ${RWHOIS_ROOT_DIR}/usr" - mkdir $RWHOIS_ROOT_DIR/usr -- mkdir $RWHOIS_ROOT_DIR/usr/lib --elif test ! -d $RWHOIS_ROOT_DIR/usr/lib -+fi -+ -+if test ! -d $RWHOIS_ROOT_DIR/usr/lib - then - echo "make directory ${RWHOIS_ROOT_DIR}/usr/lib" - mkdir $RWHOIS_ROOT_DIR/usr/lib - fi - -+if test ! -d $RWHOIS_ROOT_DIR/usr/libexec -+then -+ echo "make directory ${RWHOIS_ROOT_DIR}/usr/libexec" -+ mkdir $RWHOIS_ROOT_DIR/usr/libexec -+fi -+ - #copy /etc/resolv.conf to (rwhois_root)/etc - $COPY /etc/resolv.conf ${RWHOIS_ROOT_DIR}/etc - - #copy /usr/lib/files to (rwhois_root)/usr/lib -- $COPY /usr/lib/ld.so /usr/lib/libnsl.so.1 /usr/lib/libsocket.so.1 /usr/lib/libc.so.1 /usr/lib/libdl.so.1 /usr/lib/libintl.so.1 /usr/lib/libmp.so.1 /usr/lib/libw.so.1 /usr/lib/libmapmalloc.so.1 $RWHOIS_ROOT_DIR/usr/lib -+ $COPY /usr/lib/libc.so.* ${PREFIX}/lib/libwrap.so.* $RWHOIS_ROOT_DIR/usr/lib -+ -+#copy /usr/lib/files to (rwhois_root)/usr/lib -+ $COPY /usr/libexec/ld.so $RWHOIS_ROOT_DIR/usr/libexec - - #copy /usr/bin/execut. to (rwhois_root)/bin -- $COPY /usr/bin/sh /usr/bin/sort $RWHOIS_ROOT_DIR/bin -+ $COPY /bin/sh /usr/bin/sort /bin/date $RWHOIS_ROOT_DIR/bin - - echo "done" diff -urN /usr/ports/net/rwhois/files/patch-ae net/rwhois/files/patch-ae --- /usr/ports/net/rwhois/files/patch-ae Sat May 31 05:13:24 1997 +++ net/rwhois/files/patch-ae Sat Nov 25 16:05:42 2000 @@ -1,20 +1,11 @@ ---- sample.data/rwhois.conf.orig Fri May 23 01:59:32 1997 -+++ sample.data/rwhois.conf Fri May 23 02:00:37 1997 -@@ -10,7 +10,7 @@ - # to. If it is not set, it will default to the current working - # directory. - # NOTE: you want to change this. --root-dir: /home/devel2/davidb/src/rwhois-dev/sample.data -+root-dir: /usr/local/lib/rwhois - - # schema-file: The config file that contains the top-level schema - # information. This file must exist. The old 'object-file' refers to -@@ -85,7 +85,7 @@ - # chrooted: NO - - # userid: If run as root, rwhoisd will change to this user --userid: davidb +--- sample.data/rwhoisd.conf.orig Wed Nov 26 08:23:46 1997 ++++ sample.data/rwhoisd.conf Sat Nov 25 15:30:05 2000 +@@ -109,7 +109,7 @@ + # users group, as found in /etc/passwd. + # note that this really, really should be an unprivileged user + # this options doesn't have a default. +-userid: rwhoisd +userid: nobody - # verbosity: What level of reporting (to the console) do you wish. - # The default is '1'. '0' is quiet and numbers greater then '1' are + # pid-file: where to put the file containing the pid of the server. + # normal default is "rwhoisd.pid" diff -urN /usr/ports/net/rwhois/files/patch-af net/rwhois/files/patch-af --- /usr/ports/net/rwhois/files/patch-af Fri Oct 16 12:10:09 1998 +++ net/rwhois/files/patch-af Thu Jan 1 09:00:00 1970 @@ -1,10 +0,0 @@ ---- common/misc.c.orig Tue Oct 13 23:12:30 1998 -+++ common/misc.c Tue Oct 13 23:12:58 1998 -@@ -380,7 +380,6 @@ - char *program; - char *param; - { -- int errno = 0; - extern char **environ; - char *myenviron[MAX_SET]; - char *argv[MAX_SET]; diff -urN /usr/ports/net/rwhois/files/patch-ag net/rwhois/files/patch-ag --- /usr/ports/net/rwhois/files/patch-ag Thu Jan 1 09:00:00 1970 +++ net/rwhois/files/patch-ag Sat Nov 25 15:58:45 2000 @@ -0,0 +1,20 @@ +--- tools/Xpgp/Xpgp.c.orig Fri Jan 30 09:25:58 1998 ++++ tools/Xpgp/Xpgp.c Sat Nov 25 15:58:33 2000 +@@ -55,7 +55,7 @@ + + key = xcalloc(1, sizeof(char) * 1050); + +- gets(key); ++ fgets(key, sizeof(key), stdin); + fprintf(fp, "%s\n",key); + + if (strstr(key, "END")) +@@ -72,7 +72,7 @@ + free(key); + + newstr = xcalloc(1, sizeof(char)*100); +- gets(newstr); ++ fgets(newstr, sizeof(newstr), stdin); + + if (STRN_EQ(newstr, "-X-pgp off keyadd", 17)) + { diff -urN /usr/ports/net/rwhois/files/rwhoisd.sh net/rwhois/files/rwhoisd.sh --- /usr/ports/net/rwhois/files/rwhoisd.sh Wed Jul 5 21:36:43 2000 +++ net/rwhois/files/rwhoisd.sh Sat Nov 25 15:46:38 2000 @@ -10,7 +10,7 @@ # remove or comment the following line and uncomment the one below it once you have # configured your server's data echo "rwhoisd not started; sample data still in place. See ${PREFIX}/share/doc/rwhois for details." - #[ -x ${PREFIX}/lib/rwhois/sbin/rwhoisd ] && ${PREFIX}/lib/rwhois/sbin/rwhoisd -c ${PREFIX}/lib/rwhois/rwhois.conf & && echo -n ' rwhoisd' + #[ -x ${PREFIX}/lib/rwhois/sbin/rwhoisd ] && ${PREFIX}/lib/rwhois/sbin/rwhoisd -c ${PREFIX}/lib/rwhois/rwhoisd.conf & && echo -n ' rwhoisd' ;; stop) # killall rwhoisd && echo -n ' rwhoisd diff -urN /usr/ports/net/rwhois/pkg-descr net/rwhois/pkg-descr --- /usr/ports/net/rwhois/pkg-descr Sat May 31 05:13:24 1997 +++ net/rwhois/pkg-descr Sat Nov 25 16:22:10 2000 @@ -22,3 +22,4 @@ influenced by earlier established Internet protocols, such as the Simple Mail Transport Protocol (SMTP) [RFC 821] for response codes. +WWW: http://www.rwhois.net/ diff -urN /usr/ports/net/rwhois/pkg-plist net/rwhois/pkg-plist --- /usr/ports/net/rwhois/pkg-plist Thu Mar 2 03:37:14 2000 +++ net/rwhois/pkg-plist Sat Nov 25 16:09:58 2000 @@ -1,119 +1,63 @@ -bin/rwhois -etc/rc.d/rwhoisd.sh -lib/rwhois/attribute_defs/asn.tmpl -lib/rwhois/attribute_defs/domain.tmpl -lib/rwhois/attribute_defs/host.tmpl -lib/rwhois/attribute_defs/network.tmpl -lib/rwhois/attribute_defs/nic.tmpl -lib/rwhois/attribute_defs/org.tmpl -lib/rwhois/attribute_defs/referral.tmpl -lib/rwhois/attribute_defs/soa.tmpl -lib/rwhois/attribute_defs/user.tmpl -lib/rwhois/bin/date -lib/rwhois/bin/rmkdbindex -lib/rwhois/bin/rwhois -lib/rwhois/bin/rwhoisparse -lib/rwhois/bin/sh -lib/rwhois/bin/sort -lib/rwhois/data/asn/asn.txt -lib/rwhois/data/asn/local-0.ndx -lib/rwhois/data/asn/local.db -lib/rwhois/data/asn/null.ca -lib/rwhois/data/domain/local-0.ndx -lib/rwhois/data/domain/local.db -lib/rwhois/data/domain/null.ca -lib/rwhois/data/domain/shoe-me.com.txt -lib/rwhois/data/host/local-0.ndx -lib/rwhois/data/host/local.db -lib/rwhois/data/host/null.ca -lib/rwhois/data/host/shoe_me.txt -lib/rwhois/data/network/local-0.ndx -lib/rwhois/data/network/local.db -lib/rwhois/data/network/null.ca -lib/rwhois/data/network/shoe-me.net.txt -lib/rwhois/data/referral/local-0.ndx -lib/rwhois/data/referral/local.db -lib/rwhois/data/referral/shoe-me-more.txt -lib/rwhois/data/soa/internic.txt -lib/rwhois/data/soa/local-0.ndx -lib/rwhois/data/soa/local.db -lib/rwhois/data/soa/null.ca -lib/rwhois/data/soa/shoe-me.txt -lib/rwhois/data/user/local-0.ndx -lib/rwhois/data/user/local.db -lib/rwhois/data/user/null.ca -lib/rwhois/data/user/shoe-me.be.txt -lib/rwhois/data/user/shoe-me.multiple.txt -lib/rwhois/data/user/shoe.gif -lib/rwhois/etc/resolv.conf -lib/rwhois/index_scripts/index_all -lib/rwhois/index_scripts/index_asn -lib/rwhois/index_scripts/index_domain -lib/rwhois/index_scripts/index_host -lib/rwhois/index_scripts/index_network -lib/rwhois/index_scripts/index_nic -lib/rwhois/index_scripts/index_org -lib/rwhois/index_scripts/index_referral -lib/rwhois/index_scripts/index_soa -lib/rwhois/index_scripts/index_user -lib/rwhois/output_templates/asn.full.output -lib/rwhois/output_templates/domain.full.output -lib/rwhois/output_templates/domain.sum.output -lib/rwhois/output_templates/host.contact.output -lib/rwhois/output_templates/host.full.output -lib/rwhois/output_templates/host.sum.output -lib/rwhois/output_templates/network.full.output -lib/rwhois/output_templates/network.ripe.output -lib/rwhois/output_templates/network.sum.output -lib/rwhois/output_templates/network.swip.output -lib/rwhois/output_templates/nic.full.output -lib/rwhois/output_templates/org.full.output -lib/rwhois/output_templates/referral.full.output -lib/rwhois/output_templates/soa.full.output -lib/rwhois/output_templates/user.contact.output -lib/rwhois/output_templates/user.full.output -lib/rwhois/output_templates/user.ripe.output -lib/rwhois/output_templates/user.sum.output -lib/rwhois/output_templates/user.swip.output -lib/rwhois/rwhois.allow -lib/rwhois/rwhois.conf -lib/rwhois/rwhois.conf.orig -lib/rwhois/rwhois.define -lib/rwhois/rwhois.deny -lib/rwhois/rwhois.directive -lib/rwhois/rwhois.display -lib/rwhois/rwhois.help -lib/rwhois/rwhois.log -lib/rwhois/rwhois.objects -lib/rwhois/rwhois.root +lib/rwhois/a.com/attribute_defs/asn.tmpl +lib/rwhois/a.com/attribute_defs/contact.tmpl +lib/rwhois/a.com/attribute_defs/domain.tmpl +lib/rwhois/a.com/attribute_defs/guardian.tmpl +lib/rwhois/a.com/attribute_defs/host.tmpl +lib/rwhois/a.com/attribute_defs/org.tmpl +lib/rwhois/a.com/attribute_defs/referral.tmpl +lib/rwhois/a.com/data/asn/asn.txt +lib/rwhois/a.com/data/contact/contact.txt +lib/rwhois/a.com/data/domain/domain.txt +lib/rwhois/a.com/data/guardian/guardian.txt +lib/rwhois/a.com/data/host/host.txt +lib/rwhois/a.com/data/org/org.txt +lib/rwhois/a.com/data/referral/referral.txt +lib/rwhois/a.com/schema +lib/rwhois/a.com/soa +lib/rwhois/bin/Xpgp +lib/rwhois/bin/rwhois_deleter +lib/rwhois/bin/rwhois_indexer +lib/rwhois/net-10.0.0.0-8/attribute_defs/contact.tmpl +lib/rwhois/net-10.0.0.0-8/attribute_defs/guardian.tmpl +lib/rwhois/net-10.0.0.0-8/attribute_defs/host.tmpl +lib/rwhois/net-10.0.0.0-8/attribute_defs/network.tmpl +lib/rwhois/net-10.0.0.0-8/attribute_defs/referral.tmpl +lib/rwhois/net-10.0.0.0-8/data/network/network.txt +lib/rwhois/net-10.0.0.0-8/data/referral/referral.txt +lib/rwhois/net-10.0.0.0-8/schema +lib/rwhois/net-10.0.0.0-8/soa +lib/rwhois/rwhoisd.allow +lib/rwhois/rwhoisd.auth_area +lib/rwhois/rwhoisd.conf +lib/rwhois/rwhoisd.deny +lib/rwhois/rwhoisd.dir +lib/rwhois/rwhoisd.root +lib/rwhois/rwhoisd.x.dir lib/rwhois/sbin/rwhoisd -lib/rwhois/usr/lib/libc.so.%%LIBCVERSION%% -lib/rwhois/usr/libexec/ld.so -share/doc/rwhois/EXAMPLES -share/doc/rwhois/INSTALLATION -share/doc/rwhois/NEWS -share/doc/rwhois/PROBLEMS -share/doc/rwhois/README +share/doc/rwhois/INSTALL.html share/doc/rwhois/TODO +share/doc/rwhois/UPGRADE +share/doc/rwhois/operations_guide.html share/doc/rwhois/operations_guide.txt -share/doc/rwhois/sample.data.explained -@dirrm lib/rwhois/attribute_defs/ -@dirrm lib/rwhois/bin/ -@dirrm lib/rwhois/data/asn/ -@dirrm lib/rwhois/data/domain/ -@dirrm lib/rwhois/data/host/ -@dirrm lib/rwhois/data/network/ -@dirrm lib/rwhois/data/referral/ -@dirrm lib/rwhois/data/soa/ -@dirrm lib/rwhois/data/user/ -@dirrm lib/rwhois/data/ -@dirrm lib/rwhois/etc/ -@dirrm lib/rwhois/index_scripts/ -@dirrm lib/rwhois/output_templates/ -@dirrm lib/rwhois/sbin/ -@dirrm lib/rwhois/tmp/ -@dirrm lib/rwhois/usr/lib/ -@dirrm lib/rwhois/usr/libexec/ -@dirrm lib/rwhois/usr/ -@dirrm lib/rwhois/ +share/doc/rwhois/rfc2167.txt +share/doc/rwhois/security.html +share/doc/rwhois/security.txt @dirrm share/doc/rwhois +@dirrm lib/rwhois/sbin +@dirrm lib/rwhois/net-10.0.0.0-8/data/referral +@dirrm lib/rwhois/net-10.0.0.0-8/data/network +@dirrm lib/rwhois/net-10.0.0.0-8/data +@dirrm lib/rwhois/net-10.0.0.0-8/attribute_defs +@dirrm lib/rwhois/net-10.0.0.0-8 +@dirrm lib/rwhois/bin +@dirrm lib/rwhois/a.com/data/referral +@dirrm lib/rwhois/a.com/data/org +@dirrm lib/rwhois/a.com/data/host +@dirrm lib/rwhois/a.com/data/guardian +@dirrm lib/rwhois/a.com/data/domain +@dirrm lib/rwhois/a.com/data/contact +@dirrm lib/rwhois/a.com/data/asn +@dirrm lib/rwhois/a.com/data +@dirrm lib/rwhois/a.com/attribute_defs +@dirrm lib/rwhois/a.com +@dirrm lib/rwhois >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 Nov 27 11: 0:36 2000 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 18AC537B479 for ; Mon, 27 Nov 2000 11:00:19 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA42924 for freebsd-ports@freebsd.org; Mon, 27 Nov 2000 11:00:15 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 27 Nov 2000 11:00:15 -0800 (PST) Message-Id: <200011271900.LAA42924@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 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 Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/08/12] ports/20564 ports [PATCH] nethack-gtk md5 correction, typo o [2000/08/13] ports/20581 ports current cdrecord port fails to install o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 o [2000/08/17] ports/20680 ports ports that don't have man pages with NO_I o [2000/08/18] ports/20705 ports xwave port fails to build o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/09/08] ports/21116 ports vmware2 does not compile on -current f [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/16] ports/21306 ports New ports: GB2JIS, a tool to convert GB t o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/18] ports/21360 ports kaffe port's PLIST file is inaccurate o [2000/09/18] ports/21386 ports compile fails on -current o [2000/09/20] ports/21417 ports ports/news/trn/pkg/PLIST misses bin/inews o [2000/09/21] ports/21448 ports msql2d.sh doesn't start the daemon o [2000/09/25] ports/21548 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/29] ports/21656 ports PGP6 port based on pgp-6.5.8 o [2000/10/05] ports/21774 ports upgrading Boehm's Garbage Collector port o [2000/10/08] ports/21838 ports Updated port devel/sip o [2000/10/08] ports/21839 ports Updated port x11-toolkits/py-qt o [2000/10/13] ports/21951 ports ports/databases/db3: cannot configure o [2000/10/16] ports/22035 ports configure problem o [2000/10/16] ports/22036 ports StarOffice 5.2 CDROM install still fails o [2000/10/16] ports/22037 ports Missing shared xpm lib prevents windowmak o [2000/10/20] ports/22148 ports Can't make chipmunk port o [2000/10/20] ports/22172 ports freetds port does not work to access MS-S o [2000/10/21] ports/22194 ports Update Makefile for misc/heyu o [2000/10/22] ports/22227 ports boehm-gc don't work correctly in leak det o [2000/10/23] ports/22239 ports Image-Magic ports make error o [2000/10/26] ports/22311 ports upgrade of www/cadaver to the latest 1.15 o [2000/10/26] ports/22323 ports audio/lame can't fetch its source code o [2000/10/26] ports/22328 ports new port -- print/ttf2pt1 o [2000/10/27] ports/22368 ports new port x11-fonts/koi8u-monaco; new cate o [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/10/30] ports/22423 ports Update port: graphics/ImageMagick to 5.2. o [2000/10/30] ports/22425 ports new port: geminifonts -- fonts for koi8-u o [2000/11/02] ports/22517 ports New ports o [2000/11/07] ports/22663 ports vmware2-2.0.3.799 fails in patch o [2000/11/07] ports/22665 ports o [2000/11/07] ports/22671 ports new port: security/sst -- yet another SSL o [2000/11/08] ports/22695 ports MAKEDEV has no entry for cfs0, the device o [2000/11/08] ports/22697 ports WARNING: driver Coda should register devi o [2000/11/08] ports/22705 ports The port textproc/jade comes with wrong d o [2000/11/10] ports/22749 ports Update port: misc/ytree to 1.71 o [2000/11/10] ports/22751 ports Update port: x11-wm/evilwm o [2000/11/10] ports/22757 ports new port www/mod_auth_pgsql o [2000/11/11] ports/22769 ports New port: XML::XPath - a set of modules f o [2000/11/12] ports/22792 ports xpm-3.4k does not build/install libXpm.so o [2000/11/12] ports/22802 ports convert in ImageMagic does not work in co o [2000/11/12] ports/22803 ports Update port: XML::XPath - a set of module o [2000/11/12] ports/22804 ports New port: sablotron - Sablotron is an XSL o [2000/11/12] ports/22805 ports New port: XML::Sablotron - a Perl interfa o [2000/11/14] ports/22839 ports x11-servers/XFree86-4-Server port hangs o [2000/11/18] ports/22939 ports 44bsd-more port does not compile under re o [2000/11/20] ports/22977 ports kmp3 has a problem o [2000/11/20] ports/23001 ports StarOffice52 port cannot connect to non-l o [2000/11/23] ports/23041 ports XFree86 4.0.1 crashes when switching to a o [2000/11/24] ports/23080 ports fr keymap don't work correctly o [2000/11/24] ports/23085 ports upgrade for graphics/xanim o [2000/11/26] ports/23122 ports programs requiring glib13 fail in configu o [2000/11/26] ports/23125 ports Successful emulation of StarOffice depend 60 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1999/09/22] ports/13898 ports New port: misc/dictd o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl a [2000/05/17] ports/18633 ports New port pyncurses-0.3 o [2000/06/05] ports/19038 ports The qpopper port accepts empty X-UIDL: he o [2000/06/11] ports/19212 ports New port py-amk-crypto-0.13 o [2000/06/12] ports/19227 ports Installation problem: apache13-ssl port o [2000/06/13] misc/19246 ports Poor error message when fetching files wi o [2000/06/20] ports/19403 ports portsifying of the glide3 source for dri o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo o [2000/08/01] ports/20344 ports [PATCH] Port for QDraw-0.7.tar.gz o [2000/08/07] ports/20464 ports Port update of grace to 5.1.1 (included u o [2000/08/08] ports/20491 ports AbiWord-0.7.10 fails to compile on FreeBS o [2000/08/13] ports/20587 ports Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 ports New port: upsd100-2.0.1.6(sysutils/upsd10 o [2000/08/14] ports/20601 ports DESTDIR and /etc/shells o [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 o [2000/08/16] ports/20662 ports New port of viewkit f [2000/08/16] ports/20665 ports [PATCH] Update PORTVERSION for JadeTeX po o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create o [2000/08/30] ports/20941 ports Port Update: *-rtems-gdb o [2000/08/31] ports/20964 ports New port: databases/hypersonicsql o [2000/08/31] ports/20975 ports update math/grace f [2000/09/02] ports/20997 ports [PATCH] Man page, install enhancements fo f [2000/09/02] ports/21003 ports New Port, modification of tcopy a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] ports/21293 ports An emacs major mode for editing SGML and f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s o [2000/09/18] ports/21389 ports g2c libraries and compatibility for DJGPP o [2000/09/19] ports/21401 ports Update port sysutils/wmtop to 0.83 with f o [2000/09/20] ports/21422 ports msql install fails looking for startup sc o [2000/09/20] ports/21435 ports New port Jakarta Ant (A Java based build o [2000/09/20] ports/21441 ports FIX: devel/pcre to install a working pgre f [2000/09/21] ports/21455 ports update graphics/giram to 0.1.7 o [2000/09/22] ports/21477 ports New port: xmms-crossfade o [2000/09/23] ports/21504 ports New port: korean/tin o [2000/09/23] ports/21513 ports stunnel port should be compiled using non o [2000/09/24] ports/21515 ports pine4 complains about wrong permissions o o [2000/09/24] ports/21516 ports New FreeBSD port for Fuzz o [2000/09/24] ports/21517 ports start|stop script for upsd (/usr/local/et o [2000/09/24] ports/21520 ports Configure the synaptics touchpad. o [2000/09/24] ports/21532 ports No formal mechanism in place for discussi o [2000/09/24] ports/21533 ports A homebrewer's recipe calculator o [2000/09/25] ports/21541 ports Replacement for pr 21538 o [2000/09/25] ports/21545 ports emulators/vmware broken... o [2000/09/26] ports/21558 ports Skill fails to ID os and fails build o [2000/09/26] ports/21584 ports mpd whines if kernel has option NETGRAPH o [2000/09/27] ports/21594 ports New port: command line SMTP agent o [2000/09/27] ports/21598 ports port of wm x10 controller o [2000/09/27] ports/21602 ports misc/sls port lost distfile (by maintaine o [2000/09/27] ports/21604 ports new port: java/jad o [2000/09/30] ports/21664 ports port of gmail gnome email-client o [2000/10/01] ports/21681 ports the startup elisp file of PSGML port has o [2000/10/02] ports/21705 ports CSCOPE writes incorrect offset into index o [2000/10/02] ports/21720 ports Update port to use ADNS. o [2000/10/04] ports/21759 ports New port: py-BisonGen-0.5.0 o [2000/10/06] ports/21785 ports Update of audio/linux-realplayer o [2000/10/07] ports/21815 ports lftp port has missing dependency o [2000/10/07] ports/21825 ports slib-2c7 fails to compile in the ports co o [2000/10/07] ports/21828 ports New port: larswm, Tiling Window Manager f f [2000/10/09] ports/21875 ports Update german/webalizer (by maintainer) o [2000/10/09] ports/21878 ports Make fvwm2-beta GNOME-compliant o [2000/10/10] ports/21902 ports New port: textproc/dico - 1.1 o [2000/10/10] ports/21905 ports ports/net/bpft suggests 'pseudo-device bp o [2000/10/11] ports/21917 ports rblsmtpd needs a patch to work with relay o [2000/10/11] ports/21919 ports port update of grace to verion 5.1.2 o [2000/10/12] ports/21941 ports MPI programs compiled with NAG F95 die wi o [2000/10/12] ports/21942 ports Update nethack3 port to 3.3.1 o [2000/10/13] ports/21953 ports New port: astro/SETISupport o [2000/10/14] ports/21985 ports port update o [2000/10/16] ports/22019 ports Ports collection update to TiK o [2000/10/16] ports/22020 ports apache13-modssl dies on alloc.c o [2000/10/16] ports/22027 ports New port: ccdoc v0.7a o [2000/10/16] ports/22039 ports /usr/ports/devel/commoncpp only builds as o [2000/10/17] ports/22047 ports New port: lang/t3x-680 o [2000/10/17] ports/22048 ports New port: devel/TIDE o [2000/10/18] ports/22104 ports Port of software to pull data from the re o [2000/10/19] ports/22107 ports New port: japanese/emacs20-emcws o [2000/10/19] ports/22108 ports New port: feh-0.9.9 o [2000/10/19] ports/22109 ports New port: gtk+licq-0.39.1 o [2000/10/19] ports/22110 ports New port: e16keyedit-0.2 o [2000/10/19] ports/22113 ports New port: e16menuedit-0.1 o [2000/10/19] ports/22121 ports stunnel leaves zombie childes when launch o [2000/10/19] ports/22127 ports New port: A image viewer with thumbnail-b o [2000/10/20] ports/22164 ports Update port: mail/xmail o [2000/10/20] ports/22173 ports New Port: net/fidelio o [2000/10/21] ports/22203 ports new port: deskutils/loserjabber o [2000/10/21] ports/22205 ports /ports/misc/moviedb core dumps when Title f [2000/10/23] ports/22260 ports Update for tkgate port o [2000/10/25] ports/22288 ports mod_perl dependancy missing from p5-HTML- o [2000/10/25] ports/22295 ports lua 4.0 beta port o [2000/10/25] ports/22296 ports New port: cannadic - Dictionary of Canna o [2000/10/25] ports/22298 ports Move devel/p5-IniConf to devel/p5-Config- o [2000/10/25] ports/22303 ports New port: urlendec. Contains urlencode an o [2000/10/26] ports/22326 ports update of the mail/minimalist o [2000/10/26] ports/22330 ports New port: evas-0.0.1 o [2000/10/26] ports/22334 ports New port: geist-0.0.3 o [2000/10/26] ports/22336 ports New port: scrot-0.1 o [2000/10/27] ports/22346 ports Incorrect plist for ports/net/nocol o [2000/10/27] ports/22349 ports new port: rotate o [2000/10/28] ports/22370 ports emulators/bochs don't build f [2000/10/28] ports/22379 ports New port: libudbc f [2000/10/28] ports/22381 ports New port: misc/mango o [2000/10/29] ports/22393 ports New port: Ipe-5.0: Interactive Picture Ed o [2000/10/30] ports/22431 ports New Port: o [2000/11/01] ports/22477 ports patchset for "X manpage" errors with XFre o [2000/11/01] ports/22492 ports Fix: mail/imap-uw o [2000/11/01] ports/22493 ports Fails to build if GMAKE not set to full p o [2000/11/01] ports/22495 ports [UPDATE] ports/net/ppxp to use Tcl8.3 an o [2000/11/02] ports/22542 ports New port: devel/py-mxProxy o [2000/11/02] ports/22546 ports Update port: games/pentix o [2000/11/02] ports/22558 ports new port -- net/tcpreplay o [2000/11/02] ports/22560 ports New port: WebStone SSL o [2000/11/03] ports/22571 ports install fails o [2000/11/03] ports/22576 ports New port: audio/xmms-crossfade o [2000/11/03] ports/22584 ports Port fix: audio/id3lib o [2000/11/03] ports/22585 ports New port: qsubst-1.0 o [2000/11/03] ports/22591 ports Update port: audio/timidity++ o [2000/11/03] ports/22592 ports Update port: audio/timidity++-emacs o [2000/11/04] ports/22605 ports xmcd port depends on mailx port o [2000/11/04] ports/22608 ports The port needs g++ 2.95.2 o [2000/11/04] ports/22611 ports New port: audio/gdrdao o [2000/11/05] ports/22616 ports new port of GQmpeg (devel version) o [2000/11/05] ports/22619 ports Fix mail/sendmail (by maintainer) o [2000/11/05] ports/22632 ports New port: textproc/gsed - 3.02 o [2000/11/06] ports/22638 ports typo in ports/misc/seisedesktop/pkg-comme o [2000/11/06] ports/22641 ports Update for tkrat2 port to rc7 o [2000/11/06] ports/22646 ports SAINT doesn't install correctly o [2000/11/06] ports/22653 ports [PATCH] devel/amulet doesn't compile o [2000/11/06] ports/22655 ports [patch] update of the AbiWord port to ver o [2000/11/07] ports/22682 ports [PATCH] java/jdk-tutorial fix o [2000/11/07] ports/22683 ports New port net/dnip-update o [2000/11/08] ports/22686 ports [PATCH] net/citrix_ica update o [2000/11/08] ports/22688 ports genpw-port does not build o [2000/11/08] ports/22699 ports New port: gsi (general sound interface) o [2000/11/08] ports/22704 ports cyrus and cyrus-sasl both install pwcheck o [2000/11/08] ports/22706 ports Update driver o [2000/11/09] ports/22716 ports [PATCH] ports/net/ucd-snmp o [2000/11/09] ports/22729 ports net/ucd-snmp cannot be made on current o [2000/11/09] ports/22732 ports netscape47-communicator port uses old lay o [2000/11/10] ports/22735 ports KGhostView doesn't recognize spaces in fi o [2000/11/10] ports/22752 ports remove qclock port o [2000/11/11] ports/22773 ports Port of GNU Eiffel compiler SmallEiffel o [2000/11/11] ports/22776 ports New port: Tcl Tutorial o [2000/11/12] ports/22786 ports ports/devel/perforce has a checksum error o [2000/11/12] ports/22791 ports [PATCH] ports/mail/cyrus update o [2000/11/12] ports/22794 ports New port: ccdoc 0.7a (second try) o [2000/11/12] ports/22795 ports ports/lang/gnat-glade wrong path for MAST o [2000/11/12] ports/22797 ports New port: graphics/giblib o [2000/11/12] ports/22798 ports New port: gom-0.1 o [2000/11/13] ports/22807 ports Update port: lang/gnat-glade o [2000/11/13] ports/22808 ports Update port: audio/xmmix o [2000/11/13] ports/22819 ports ports/www/zope-ptk missing file "pkg-mess o [2000/11/13] ports/22827 ports NEW PORT: converters/p5-Convert-TNEF o [2000/11/13] ports/22829 ports NEW PORT: archivers/p5-Archive-Tar o [2000/11/13] ports/22830 ports Update port: audio/mpegaudio (fix ports/2 o [2000/11/14] ports/22841 ports update: graphics/p5-Image-Size o [2000/11/14] ports/22848 ports New port: devel/binutils-arm o [2000/11/14] ports/22849 ports New port: devel/gcc-arm o [2000/11/14] ports/22853 ports NEW PORT: graphics/blender o [2000/11/14] ports/22857 ports New port: ari-yahoo: console Yahoo! messe o [2000/11/15] ports/22864 ports Port update: devel/omniORB o [2000/11/15] ports/22865 ports New port: devel/omniORBpy o [2000/11/15] ports/22867 ports new port: mail/p5-Mail-IMAPClient o [2000/11/15] ports/22876 ports new port: security/pam_pgsql o [2000/11/15] ports/22878 ports piewm doesn't build o [2000/11/15] ports/22879 ports new port: textproc/TclExpat o [2000/11/15] ports/22880 ports mtools-3.9.6 - symlinks changed from abso o [2000/11/16] ports/22887 ports icqmail don'nt compile on 4.x systems o [2000/11/16] ports/22889 ports Update port: archivers/lha to 1.14i o [2000/11/16] ports/22893 ports Update port: net/mudix to 3.5 o [2000/11/16] ports/22895 ports ports/devel/perforce checksum error for p o [2000/11/16] ports/22903 ports New port: games/smm++ o [2000/11/17] ports/22910 ports port change-request - http-analyze o [2000/11/17] ports/22912 ports japanese postgresql7 update from 7.0.2 to o [2000/11/17] ports/22921 ports ports/french/staroffice52 wrong Makefile o [2000/11/17] ports/22934 ports Update port math/abs to the latest releas o [2000/11/18] ports/22935 ports new cad/magic and cad/irsim versions (pat o [2000/11/18] ports/22938 ports New port: litestream mp3 streaming system o [2000/11/18] ports/22950 ports NEW PORT: mad - High-quality MPEG audio d o [2000/11/18] ports/22952 ports NEW PORT : eggdrop o [2000/11/19] ports/22957 ports NEW PORT : 6tunnel o [2000/11/19] ports/22963 ports NEW PORT: net/pdnsd - cacheing only name o [2000/11/20] ports/22970 ports New Port : textproc/py2html o [2000/11/20] ports/22973 ports NEW PORT: net/linpopup - port of windows' o [2000/11/20] ports/22976 ports New port: mimelib, C++ class fro encoding o [2000/11/20] ports/22981 ports UPDATE - net/dlint (1.3.3 -> 1.4.0) o [2000/11/20] ports/22985 ports NEW PORT : 6tunnel (2) o [2000/11/20] ports/22986 ports Update port: patchkit for fixing broken c o [2000/11/20] ports/22997 ports New Port: misc/ftree o [2000/11/20] ports/23000 ports tnef updated to 0.15 o [2000/11/21] ports/23003 ports Add new-port phpMyAdmin o [2000/11/21] ports/23005 ports New port - netmask-2.3.3 - Tool for gener o [2000/11/21] ports/23015 ports NEW devel/p5-File-Tail o [2000/11/21] ports/23016 ports NEW PORT security/swatch3 o [2000/11/22] ports/23019 ports xbattbar leave garbage window when used w o [2000/11/22] ports/23021 ports [PATCH] Upgrade mysql-3.23 port o [2000/11/22] ports/23024 ports blender is moved from commerce to ports s o [2000/11/22] ports/23027 ports Postgresql Update and re-work o [2000/11/22] ports/23028 ports news/dnews broken o [2000/11/22] ports/23037 ports new ports : misc/p5-Data-Dumper o [2000/11/22] ports/23038 ports New Port: py-4Suite-0.9.2 o [2000/11/23] ports/23046 ports Irssi isn´t usuable on -CURRENT and -STAB o [2000/11/23] ports/23050 ports unofficial xmame port update (0.37b7.1) o [2000/11/23] ports/23053 ports New devel port, cppadvio; request for loc o [2000/11/23] ports/23062 ports Update mail/postfix-current - Patch for e o [2000/11/24] ports/23075 ports Update port: games/pp o [2000/11/24] ports/23078 ports Update port: shells/tcsh to 6.10.00 o [2000/11/25] ports/23095 ports Update Etherboot to 4.6.10, remove beta b o [2000/11/25] ports/23096 ports Make sdcc use Bison, our Yacc causes trou o [2000/11/25] ports/23100 ports o [2000/11/25] ports/23104 ports Maintainer upgrade to Apache 1.3.14 for a o [2000/11/26] ports/23124 ports xemacs*packages have been updated o [2000/11/27] ports/23127 ports Port update: devel/gpasm o [2000/11/27] ports/23130 ports Port update: biology/emboss (MAINTAINER) o [2000/11/27] ports/23131 ports update japanese/hns 2.00.4 --> 2.10.0 o [2000/11/27] ports/23133 ports Update port: databases/unixODBC to 1.8.13 o [2000/11/27] ports/23134 ports Update port: graphics/zimg o [2000/11/27] ports/23135 ports Update port: math/freefem to 3.5.1 o [2000/11/27] ports/23136 ports Update port: net/rwhois to 1.5.7 o [2000/11/27] ports/23137 ports Update port: sysutiles/wmbattery to 1.13 225 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 Nov 27 11:10:24 2000 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 DFFB237B4C5 for ; Mon, 27 Nov 2000 11:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA47064; Mon, 27 Nov 2000 11:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id E12D137B479 for ; Mon, 27 Nov 2000 11:05:55 -0800 (PST) Received: by ada.eu.org (Postfix, from userid 10) id 3B12C190B0; Mon, 27 Nov 2000 20:05:42 +0100 (CET) Received: by trillian.enst.fr (Postfix, from userid 1000) id D035844D; Mon, 27 Nov 2000 19:56:46 +0100 (CET) Message-Id: <20001127185646.D035844D@trillian.enst.fr> Date: Mon, 27 Nov 2000 19:56:46 +0100 (CET) From: sam@inf.enst.fr Reply-To: sam@inf.enst.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23138: New port: x11-toolkits/gtkada Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23138 >Category: ports >Synopsis: New port: x11-toolkits/gtkada >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 Nov 27 11:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 4.2-BETA i386 >Organization: TELECOM Paris >Environment: >Description: >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: # # gtkada # gtkada/Makefile # gtkada/distinfo # gtkada/pkg-plist # gtkada/pkg-comment # gtkada/pkg-descr # gtkada/files # gtkada/files/patch-aa # echo c - gtkada mkdir -p gtkada > /dev/null 2>&1 echo x - gtkada/Makefile sed 's/^X//' >gtkada/Makefile << 'END-of-gtkada/Makefile' X# New ports collection makefile for: gtkada X# Date Created: 27 Nov 2000 X# Whom: Samuel Tardieu X# X# $FreeBSD$ X# X XPORTNAME= gtkada XPORTVERSION= 1.2.10 XCATEGORIES= x11-toolkits XMASTER_SITES= http://gtkada.eu.org/ XDISTNAME= GtkAda-${PORTVERSION} X XMAINTAINER= sam@inf.enst.fr X XLIB_DEPENDS= GLU.14:${PORTSDIR}/graphics/Mesa3 XBUILD_DEPENDS= adagcc:${PORTSDIR}/lang/gnat \ X gdk-pixbuf-config:${PORTSDIR}/graphics/gdk-pixbuf X XUSE_AUTOCONF= yes XUSE_X_PREFIX= yes XUSE_GNOMELIBS= yes XUSE_GMAKE= yes XINSTALLS_SHLIB= yes XMAN_MAN1= dgate.1 gate.1 gtkada-config.1 X Xpost-install: X ${INSTALL_DATA} ${WRKSRC}/docs/*.1 ${PREFIX}/man/man1/ X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/gtkada X ${INSTALL_DATA} ${WRKSRC}/docs/gtkada_rm/*.info* ${PREFIX}/info/ X ${INSTALL_DATA} ${WRKSRC}/docs/gtkada_rm/*.html ${PREFIX}/share/doc/gtkada X ${INSTALL_DATA} ${WRKSRC}/docs/gtkada_rm/*.ps ${PREFIX}/share/doc/gtkada X ${INSTALL_DATA} ${WRKSRC}/docs/gtkada_ug/*.info* ${PREFIX}/info/ X ${INSTALL_DATA} ${WRKSRC}/docs/gtkada_ug/*.html ${PREFIX}/share/doc/gtkada X ${INSTALL_DATA} ${WRKSRC}/docs/gtkada_ug/*.ps ${PREFIX}/share/doc/gtkada X.endif X X.include END-of-gtkada/Makefile echo x - gtkada/distinfo sed 's/^X//' >gtkada/distinfo << 'END-of-gtkada/distinfo' XMD5 (GtkAda-1.2.10.tar.gz) = 525997c967d3429fd6c70c01ece8dade END-of-gtkada/distinfo echo x - gtkada/pkg-plist sed 's/^X//' >gtkada/pkg-plist << 'END-of-gtkada/pkg-plist' X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -R Xbin/gate-in.exe Xbin/dgate Xbin/gdialog Xbin/gtkada-config Xbin/gate Xlib/libgtkada.a Xlib/libgtkada-1.2.so.10 Xlib/libgtkada_gl.a Xlib/libgtkada_gl-1.2.so.10 Xlib/libgtkada_art.a Xlib/libgtkada_art-1.2.so.10 Xinclude/gtkada/glib-enums.ads Xinclude/gtkada/glib-xml.adb Xinclude/gtkada/glib-gslist.adb Xinclude/gtkada/glib-gnodes.adb Xinclude/gtkada/glib-glist.adb Xinclude/gtkada/glib-glade.adb Xinclude/gtkada/glib.ads Xinclude/gtkada/glib-xml.ads Xinclude/gtkada/glib-gslist.ads Xinclude/gtkada/glib-gnodes.ads Xinclude/gtkada/glib-glist.ads Xinclude/gtkada/glib-glade.ads Xinclude/gtkada/glib.adb Xinclude/gtkada/gdk-bitmap.ads Xinclude/gtkada/gdk-window.adb Xinclude/gtkada/gdk-visual.adb Xinclude/gtkada/gdk-rgb.adb Xinclude/gtkada/gdk-region.adb Xinclude/gtkada/gdk-rectangle.adb Xinclude/gtkada/gdk-property.adb Xinclude/gtkada/gdk-pixmap.adb Xinclude/gtkada/gdk-main.adb Xinclude/gtkada/gdk-keyval.adb Xinclude/gtkada/gdk-image.adb Xinclude/gtkada/gdk-gc.adb Xinclude/gtkada/gdk-font.adb Xinclude/gtkada/gdk-event.adb Xinclude/gtkada/gdk-drawable.adb Xinclude/gtkada/gdk-cursor.adb Xinclude/gtkada/gdk-color_context.adb Xinclude/gtkada/gdk-color.adb Xinclude/gtkada/gdk-bitmap.adb Xinclude/gtkada/gdk.ads Xinclude/gtkada/gdk-window_attr.ads Xinclude/gtkada/gdk-window.ads Xinclude/gtkada/gdk-visual.ads Xinclude/gtkada/gdk-types.ads Xinclude/gtkada/gdk-types-keysyms.ads Xinclude/gtkada/gdk-threads.ads Xinclude/gtkada/gdk-rgb.ads Xinclude/gtkada/gdk-region.ads Xinclude/gtkada/gdk-rectangle.ads Xinclude/gtkada/gdk-property.ads Xinclude/gtkada/gdk-pixmap.ads Xinclude/gtkada/gdk-main.ads Xinclude/gtkada/gdk-keyval.ads Xinclude/gtkada/gdk-input.ads Xinclude/gtkada/gdk-image.ads Xinclude/gtkada/gdk-gc.ads Xinclude/gtkada/gdk-font.ads Xinclude/gtkada/gdk-event.ads Xinclude/gtkada/gdk-drawable.ads Xinclude/gtkada/gdk-cursor.ads Xinclude/gtkada/gdk-color_context.ads Xinclude/gtkada/gdk-color.ads Xinclude/gtkada/gdk-window_attr.adb Xinclude/gtkada/gtk-accel_group.ads Xinclude/gtkada/gtkada-intl.adb Xinclude/gtkada/gtkada-file_selection.adb Xinclude/gtkada/gtkada-dialogs.adb Xinclude/gtkada/gtk.adb Xinclude/gtkada/gtkada-canvas.adb Xinclude/gtkada/gtk-window.adb Xinclude/gtkada/gtk-widget.adb Xinclude/gtkada/gtk-viewport.adb Xinclude/gtkada/gtk-vbutton_box.adb Xinclude/gtkada/gtk-util.adb Xinclude/gtkada/gtk-type_conversion_hooks.adb Xinclude/gtkada/gtk-type_conversion.adb Xinclude/gtkada/gtk-tree_item.adb Xinclude/gtkada/gtk-tree.adb Xinclude/gtkada/gtk-tooltips.adb Xinclude/gtkada/gtk-toolbar.adb Xinclude/gtkada/gtk-toggle_button.adb Xinclude/gtkada/gtk-tips_query.adb Xinclude/gtkada/gtk-text.adb Xinclude/gtkada/gtk-tearoff_menu_item.adb Xinclude/gtkada/gtk-table.adb Xinclude/gtkada/gtk-style.adb Xinclude/gtkada/gtk-status_bar.adb Xinclude/gtkada/gtk-spin_button.adb Xinclude/gtkada/gtk-socket.adb Xinclude/gtkada/gtk-signal.adb Xinclude/gtkada/gtk-separator.adb Xinclude/gtkada/gtk-selection.adb Xinclude/gtkada/gtk-scrolled_window.adb Xinclude/gtkada/gtk-scrollbar.adb Xinclude/gtkada/gtk-scale.adb Xinclude/gtkada/gtk-ruler.adb Xinclude/gtkada/gtk-rc.adb Xinclude/gtkada/gtk-radio_menu_item.adb Xinclude/gtkada/gtk-radio_button.adb Xinclude/gtkada/gtk-progress_bar.adb Xinclude/gtkada/gtk-progress.adb Xinclude/gtkada/gtk-preview.adb Xinclude/gtkada/gtk-plug.adb Xinclude/gtkada/gtk-pixmap.adb Xinclude/gtkada/gtk-paned.adb Xinclude/gtkada/gtk-packer.adb Xinclude/gtkada/gtk-option_menu.adb Xinclude/gtkada/gtk-object.adb Xinclude/gtkada/gtk-notebook.adb Xinclude/gtkada/gtk-misc.adb Xinclude/gtkada/gtk-menu_shell.adb Xinclude/gtkada/gtk-menu_item.adb Xinclude/gtkada/gtk-menu_bar.adb Xinclude/gtkada/gtk-menu.adb Xinclude/gtkada/gtk-marshallers.adb Xinclude/gtkada/gtk-main.adb Xinclude/gtkada/gtk-macro.adb Xinclude/gtkada/gtk-list_item.adb Xinclude/gtkada/gtk-list.adb Xinclude/gtkada/gtk-layout.adb Xinclude/gtkada/gtk-label.adb Xinclude/gtkada/gtk-item_factory.adb Xinclude/gtkada/gtk-item.adb Xinclude/gtkada/gtk-invisible.adb Xinclude/gtkada/gtk.ads Xinclude/gtkada/gtk-input_dialog.adb Xinclude/gtkada/gtk-image.adb Xinclude/gtkada/gtk-hbutton_box.adb Xinclude/gtkada/gtk-handlers.adb Xinclude/gtkada/gtk-handle_box.adb Xinclude/gtkada/gtk-grange.adb Xinclude/gtkada/gtk-glade.adb Xinclude/gtkada/gtk-gentry.adb Xinclude/gtkada/gtk-gamma_curve.adb Xinclude/gtkada/gtk-frame.adb Xinclude/gtkada/gtk-font_selection.adb Xinclude/gtkada/gtk-fixed.adb Xinclude/gtkada/gtk-file_selection.adb Xinclude/gtkada/gtk-extra-sheet.adb Xinclude/gtkada/gtk-extra-psfont.adb Xinclude/gtkada/gtk-extra-plot_ps.adb Xinclude/gtkada/gtk-extra-plot_canvas.adb Xinclude/gtkada/gtk-extra-plot.adb Xinclude/gtkada/gtk-extra-item_entry.adb Xinclude/gtkada/gtk-extra-font_combo.adb Xinclude/gtkada/gtk-extra-combo_box.adb Xinclude/gtkada/gtk-extra-color_combo.adb Xinclude/gtkada/gtk-extra-check_item.adb Xinclude/gtkada/gtk-extra-border_combo.adb Xinclude/gtkada/gtk-event_box.adb Xinclude/gtkada/gtk-enums.adb Xinclude/gtkada/gtk-editable.adb Xinclude/gtkada/gtk-drawing_area.adb Xinclude/gtkada/gtk-dnd.adb Xinclude/gtkada/gtk-dialog.adb Xinclude/gtkada/gtk-curve.adb Xinclude/gtkada/gtk-ctree.adb Xinclude/gtkada/gtk-container.adb Xinclude/gtkada/gtk-combo.adb Xinclude/gtkada/gtk-color_selection_dialog.adb Xinclude/gtkada/gtk-color_selection.adb Xinclude/gtkada/gtk-clist.adb Xinclude/gtkada/gtk-check_menu_item.adb Xinclude/gtkada/gtk-check_button.adb Xinclude/gtkada/gtk-calendar.adb Xinclude/gtkada/gtk-button_box.adb Xinclude/gtkada/gtk-button.adb Xinclude/gtkada/gtk-box.adb Xinclude/gtkada/gtk-bin.adb Xinclude/gtkada/gtk-aspect_frame.adb Xinclude/gtkada/gtk-arrow.adb Xinclude/gtkada/gtk-arguments.adb Xinclude/gtkada/gtk-alignment.adb Xinclude/gtkada/gtk-adjustment.adb Xinclude/gtkada/gtk-accel_label.adb Xinclude/gtkada/gtk-accel_group.adb Xinclude/gtkada/gtkada.ads Xinclude/gtkada/gtkada-types.ads Xinclude/gtkada/gtkada-pixmaps.ads Xinclude/gtkada/gtkada-intl.ads Xinclude/gtkada/gtkada-handlers.ads Xinclude/gtkada/gtkada-file_selection.ads Xinclude/gtkada/gtkada-dialogs.ads Xinclude/gtkada/gtkada-canvas.ads Xinclude/gtkada/gtk-window.ads Xinclude/gtkada/gtk-widget.ads Xinclude/gtkada/gtk-viewport.ads Xinclude/gtkada/gtk-vbutton_box.ads Xinclude/gtkada/gtk-util.ads Xinclude/gtkada/gtk-type_conversion_hooks.ads Xinclude/gtkada/gtk-type_conversion.ads Xinclude/gtkada/gtk-tree_item.ads Xinclude/gtkada/gtk-tree.ads Xinclude/gtkada/gtk-tooltips.ads Xinclude/gtkada/gtk-toolbar.ads Xinclude/gtkada/gtk-toggle_button.ads Xinclude/gtkada/gtk-tips_query.ads Xinclude/gtkada/gtk-text.ads Xinclude/gtkada/gtk-tearoff_menu_item.ads Xinclude/gtkada/gtk-table.ads Xinclude/gtkada/gtk-style.ads Xinclude/gtkada/gtk-status_bar.ads Xinclude/gtkada/gtk-spin_button.ads Xinclude/gtkada/gtk-socket.ads Xinclude/gtkada/gtk-signal.ads Xinclude/gtkada/gtk-separator.ads Xinclude/gtkada/gtk-selection.ads Xinclude/gtkada/gtk-scrolled_window.ads Xinclude/gtkada/gtk-scrollbar.ads Xinclude/gtkada/gtk-scale.ads Xinclude/gtkada/gtk-ruler.ads Xinclude/gtkada/gtk-rc.ads Xinclude/gtkada/gtk-radio_menu_item.ads Xinclude/gtkada/gtk-radio_button.ads Xinclude/gtkada/gtk-progress_bar.ads Xinclude/gtkada/gtk-dnd.ads Xinclude/gtkada/gtk-progress.ads Xinclude/gtkada/gtk-preview.ads Xinclude/gtkada/gtk-plug.ads Xinclude/gtkada/gtk-pixmap.ads Xinclude/gtkada/gtk-paned.ads Xinclude/gtkada/gtk-packer.ads Xinclude/gtkada/gtk-option_menu.ads Xinclude/gtkada/gtk-object.ads Xinclude/gtkada/gtk-notebook.ads Xinclude/gtkada/gtk-misc.ads Xinclude/gtkada/gtk-menu_shell.ads Xinclude/gtkada/gtk-menu_item.ads Xinclude/gtkada/gtk-menu_bar.ads Xinclude/gtkada/gtk-menu.ads Xinclude/gtkada/gtk-marshallers.ads Xinclude/gtkada/gtk-main.ads Xinclude/gtkada/gtk-macro.ads Xinclude/gtkada/gtk-list_item.ads Xinclude/gtkada/gtk-list.ads Xinclude/gtkada/gtk-layout.ads Xinclude/gtkada/gtk-label.ads Xinclude/gtkada/gtk-item_factory.ads Xinclude/gtkada/gtk-item.ads Xinclude/gtkada/gtk-invisible.ads Xinclude/gtkada/gtk-input_dialog.ads Xinclude/gtkada/gtk-image.ads Xinclude/gtkada/gtk-hbutton_box.ads Xinclude/gtkada/gtk-handlers.ads Xinclude/gtkada/gtk-handle_box.ads Xinclude/gtkada/gtk-grange.ads Xinclude/gtkada/gtk-glade.ads Xinclude/gtkada/gtk-gentry.ads Xinclude/gtkada/gtk-gamma_curve.ads Xinclude/gtkada/gtk-frame.ads Xinclude/gtkada/gtk-font_selection_dialog.ads Xinclude/gtkada/gtk-font_selection.ads Xinclude/gtkada/gtk-fixed.ads Xinclude/gtkada/gtk-file_selection.ads Xinclude/gtkada/gtk-extra.ads Xinclude/gtkada/gtk-extra-sheet.ads Xinclude/gtkada/gtk-extra-psfont.ads Xinclude/gtkada/gtk-extra-plot_ps.ads Xinclude/gtkada/gtk-extra-plot_canvas.ads Xinclude/gtkada/gtk-extra-plot.ads Xinclude/gtkada/gtk-extra-item_entry.ads Xinclude/gtkada/gtk-extra-font_combo.ads Xinclude/gtkada/gtk-extra-combo_box.ads Xinclude/gtkada/gtk-extra-color_combo.ads Xinclude/gtkada/gtk-extra-check_item.ads Xinclude/gtkada/gtk-extra-border_combo.ads Xinclude/gtkada/gtk-event_box.ads Xinclude/gtkada/gtk-enums.ads Xinclude/gtkada/gtk-editable.ads Xinclude/gtkada/gtk-drawing_area.ads Xinclude/gtkada/gtk-dialog.ads Xinclude/gtkada/gtk-data.ads Xinclude/gtkada/gtk-curve.ads Xinclude/gtkada/gtk-ctree.ads Xinclude/gtkada/gtk-container.ads Xinclude/gtkada/gtk-combo.ads Xinclude/gtkada/gtk-color_selection_dialog.ads Xinclude/gtkada/gtk-color_selection.ads Xinclude/gtkada/gtk-clist.ads Xinclude/gtkada/gtk-check_menu_item.ads Xinclude/gtkada/gtk-check_button.ads Xinclude/gtkada/gtk-calendar.ads Xinclude/gtkada/gtk-button_box.ads Xinclude/gtkada/gtk-button.ads Xinclude/gtkada/gtk-box.ads Xinclude/gtkada/gtk-bin.ads Xinclude/gtkada/gtk-aspect_frame.ads Xinclude/gtkada/gtk-arrow.ads Xinclude/gtkada/gtk-arguments.ads Xinclude/gtkada/gtk-alignment.ads Xinclude/gtkada/gtk-adjustment.ads Xinclude/gtkada/gtk-accel_label.ads Xinclude/gtkada/gtkada-types.adb Xinclude/gtkada/glib-enums.ali Xinclude/gtkada/gtkada-types.ali Xinclude/gtkada/gtkada-pixmaps.ali Xinclude/gtkada/gtkada-intl.ali Xinclude/gtkada/gtkada-handlers.ali Xinclude/gtkada/gtkada-file_selection.ali Xinclude/gtkada/gtkada-dialogs.ali Xinclude/gtkada/gtkada-canvas.ali Xinclude/gtkada/gtk.ali Xinclude/gtkada/gtk-window.ali Xinclude/gtkada/gtk-widget.ali Xinclude/gtkada/gtk-viewport.ali Xinclude/gtkada/gtk-vbutton_box.ali Xinclude/gtkada/gtk-util.ali Xinclude/gtkada/gtk-type_conversion.ali Xinclude/gtkada/gtk-type_conversion_hooks.ali Xinclude/gtkada/gtk-tree_item.ali Xinclude/gtkada/gtk-tree.ali Xinclude/gtkada/gtk-tooltips.ali Xinclude/gtkada/gtk-toolbar.ali Xinclude/gtkada/gtk-toggle_button.ali Xinclude/gtkada/gtk-tips_query.ali Xinclude/gtkada/gtk-text.ali Xinclude/gtkada/gtk-tearoff_menu_item.ali Xinclude/gtkada/gtk-table.ali Xinclude/gtkada/gtk-style.ali Xinclude/gtkada/gtk-status_bar.ali Xinclude/gtkada/gtk-spin_button.ali Xinclude/gtkada/gtk-socket.ali Xinclude/gtkada/gtk-signal.ali Xinclude/gtkada/gtk-separator.ali Xinclude/gtkada/gtk-selection.ali Xinclude/gtkada/gtk-scrolled_window.ali Xinclude/gtkada/gtk-scrollbar.ali Xinclude/gtkada/gtk-scale.ali Xinclude/gtkada/gtk-ruler.ali Xinclude/gtkada/gtk-rc.ali Xinclude/gtkada/gtk-radio_menu_item.ali Xinclude/gtkada/gtk-radio_button.ali Xinclude/gtkada/gtk-progress_bar.ali Xinclude/gtkada/gtk-progress.ali Xinclude/gtkada/gtk-preview.ali Xinclude/gtkada/gtk-plug.ali Xinclude/gtkada/gtk-pixmap.ali Xinclude/gtkada/gtk-paned.ali Xinclude/gtkada/gtk-packer.ali Xinclude/gtkada/gtk-option_menu.ali Xinclude/gtkada/gtk-object.ali Xinclude/gtkada/gtk-notebook.ali Xinclude/gtkada/gtk-misc.ali Xinclude/gtkada/gtk-menu_shell.ali Xinclude/gtkada/gtk-menu_item.ali Xinclude/gtkada/gtk-menu_bar.ali Xinclude/gtkada/gtk-menu.ali Xinclude/gtkada/gtk-marshallers.ali Xinclude/gtkada/gtk-main.ali Xinclude/gtkada/gtk-list_item.ali Xinclude/gtkada/gtk-list.ali Xinclude/gtkada/gtk-layout.ali Xinclude/gtkada/gtk-label.ali Xinclude/gtkada/gtk-item_factory.ali Xinclude/gtkada/gtk-item.ali Xinclude/gtkada/gtk-invisible.ali Xinclude/gtkada/gtk-input_dialog.ali Xinclude/gtkada/gtk-image.ali Xinclude/gtkada/gtk-hbutton_box.ali Xinclude/gtkada/gtk-handlers.ali Xinclude/gtkada/gtk-handle_box.ali Xinclude/gtkada/gtk-grange.ali Xinclude/gtkada/gtk-glade.ali Xinclude/gtkada/gtk-gentry.ali Xinclude/gtkada/gtk-gamma_curve.ali Xinclude/gtkada/gtk-frame.ali Xinclude/gtkada/gtk-font_selection_dialog.ali Xinclude/gtkada/gtk-font_selection.ali Xinclude/gtkada/gtk-fixed.ali Xinclude/gtkada/gtk-file_selection.ali Xinclude/gtkada/gtk-extra.ali Xinclude/gtkada/gtk-extra-sheet.ali Xinclude/gtkada/gtk-extra-psfont.ali Xinclude/gtkada/gtk-extra-plot_ps.ali Xinclude/gtkada/gtk-extra-plot_canvas.ali Xinclude/gtkada/gtk-extra-plot.ali Xinclude/gtkada/gtk-extra-item_entry.ali Xinclude/gtkada/gtk-extra-font_combo.ali Xinclude/gtkada/gtk-extra-combo_box.ali Xinclude/gtkada/gtk-extra-color_combo.ali Xinclude/gtkada/gtk-extra-check_item.ali Xinclude/gtkada/gtk-extra-border_combo.ali Xinclude/gtkada/gtk-event_box.ali Xinclude/gtkada/gtk-enums.ali Xinclude/gtkada/gtk-editable.ali Xinclude/gtkada/gtk-drawing_area.ali Xinclude/gtkada/gtk-dnd.ali Xinclude/gtkada/gtk-dialog.ali Xinclude/gtkada/gtk-data.ali Xinclude/gtkada/gtk-curve.ali Xinclude/gtkada/gtk-ctree.ali Xinclude/gtkada/gtk-container.ali Xinclude/gtkada/gtk-combo.ali Xinclude/gtkada/gtk-color_selection_dialog.ali Xinclude/gtkada/gtk-color_selection.ali Xinclude/gtkada/gtk-clist.ali Xinclude/gtkada/gtk-check_menu_item.ali Xinclude/gtkada/gtk-check_button.ali Xinclude/gtkada/gtk-calendar.ali Xinclude/gtkada/gtk-button_box.ali Xinclude/gtkada/gtk-button.ali Xinclude/gtkada/gtk-box.ali Xinclude/gtkada/gtk-bin.ali Xinclude/gtkada/gtk-aspect_frame.ali Xinclude/gtkada/gtk-arrow.ali Xinclude/gtkada/gtk-arguments.ali Xinclude/gtkada/gtk-alignment.ali Xinclude/gtkada/gtk-adjustment.ali Xinclude/gtkada/gtk-accel_label.ali Xinclude/gtkada/gtk-accel_group.ali Xinclude/gtkada/gdk.ali Xinclude/gtkada/gdk-window_attr.ali Xinclude/gtkada/gdk-window.ali Xinclude/gtkada/gdk-visual.ali Xinclude/gtkada/gdk-types.ali Xinclude/gtkada/gdk-types-keysyms.ali Xinclude/gtkada/gdk-threads.ali Xinclude/gtkada/gdk-rgb.ali Xinclude/gtkada/gdk-region.ali Xinclude/gtkada/gdk-rectangle.ali Xinclude/gtkada/gdk-property.ali Xinclude/gtkada/gdk-pixmap.ali Xinclude/gtkada/gdk-main.ali Xinclude/gtkada/gdk-keyval.ali Xinclude/gtkada/gdk-input.ali Xinclude/gtkada/gdk-image.ali Xinclude/gtkada/gdk-gc.ali Xinclude/gtkada/gdk-font.ali Xinclude/gtkada/gdk-event.ali Xinclude/gtkada/gdk-drawable.ali Xinclude/gtkada/gdk-cursor.ali Xinclude/gtkada/gdk-color_context.ali Xinclude/gtkada/gdk-color.ali Xinclude/gtkada/gdk-bitmap.ali Xinclude/gtkada/glib.ali Xinclude/gtkada/glib-xml.ali Xinclude/gtkada/glib-gslist.ali Xinclude/gtkada/glib-gnodes.ali Xinclude/gtkada/gtkada.ali Xinclude/gtkada/glib-glist.ali Xinclude/gtkada/glib-glade.ali Xinclude/gtkada/glu_h.ads Xinclude/gtkada/gl_h.ads Xinclude/gtkada/gdk-gl.adb Xinclude/gtkada/gdk-gl.ads Xinclude/gtkada/gtk-glarea.adb Xinclude/gtkada/gtk-glarea.ads Xinclude/gtkada/gtk-glarea.ali Xinclude/gtkada/gdk-gl.ali Xinclude/gtkada/gdk-pixbuf.adb Xinclude/gtkada/gdk-pixbuf.ads Xinclude/gtkada/gdk-art.ads Xinclude/gtkada/gdk-art-pixbuf.ads Xinclude/gtkada/gdk-pixbuf.ali Xinclude/gtkada/gdk-art.ali Xinclude/gtkada/gdk-art-pixbuf.ali Xinfo/gtkada_rm.info Xinfo/gtkada_rm.info-1 Xinfo/gtkada_rm.info-10 Xinfo/gtkada_rm.info-11 Xinfo/gtkada_rm.info-12 Xinfo/gtkada_rm.info-13 Xinfo/gtkada_rm.info-14 Xinfo/gtkada_rm.info-15 Xinfo/gtkada_rm.info-16 Xinfo/gtkada_rm.info-2 Xinfo/gtkada_rm.info-3 Xinfo/gtkada_rm.info-4 Xinfo/gtkada_rm.info-5 Xinfo/gtkada_rm.info-6 Xinfo/gtkada_rm.info-7 Xinfo/gtkada_rm.info-8 Xinfo/gtkada_rm.info-9 Xshare/doc/gtkada/gtkada_rm.ps Xshare/doc/gtkada/gtkada_rm_1.html Xshare/doc/gtkada/gtkada_rm_10.html Xshare/doc/gtkada/gtkada_rm_100.html Xshare/doc/gtkada/gtkada_rm_101.html Xshare/doc/gtkada/gtkada_rm_102.html Xshare/doc/gtkada/gtkada_rm_103.html Xshare/doc/gtkada/gtkada_rm_104.html Xshare/doc/gtkada/gtkada_rm_105.html Xshare/doc/gtkada/gtkada_rm_106.html Xshare/doc/gtkada/gtkada_rm_107.html Xshare/doc/gtkada/gtkada_rm_108.html Xshare/doc/gtkada/gtkada_rm_109.html Xshare/doc/gtkada/gtkada_rm_11.html Xshare/doc/gtkada/gtkada_rm_110.html Xshare/doc/gtkada/gtkada_rm_111.html Xshare/doc/gtkada/gtkada_rm_112.html Xshare/doc/gtkada/gtkada_rm_113.html Xshare/doc/gtkada/gtkada_rm_114.html Xshare/doc/gtkada/gtkada_rm_12.html Xshare/doc/gtkada/gtkada_rm_13.html Xshare/doc/gtkada/gtkada_rm_14.html Xshare/doc/gtkada/gtkada_rm_15.html Xshare/doc/gtkada/gtkada_rm_16.html Xshare/doc/gtkada/gtkada_rm_17.html Xshare/doc/gtkada/gtkada_rm_18.html Xshare/doc/gtkada/gtkada_rm_19.html Xshare/doc/gtkada/gtkada_rm_2.html Xshare/doc/gtkada/gtkada_rm_20.html Xshare/doc/gtkada/gtkada_rm_21.html Xshare/doc/gtkada/gtkada_rm_22.html Xshare/doc/gtkada/gtkada_rm_23.html Xshare/doc/gtkada/gtkada_rm_24.html Xshare/doc/gtkada/gtkada_rm_25.html Xshare/doc/gtkada/gtkada_rm_26.html Xshare/doc/gtkada/gtkada_rm_27.html Xshare/doc/gtkada/gtkada_rm_28.html Xshare/doc/gtkada/gtkada_rm_29.html Xshare/doc/gtkada/gtkada_rm_3.html Xshare/doc/gtkada/gtkada_rm_30.html Xshare/doc/gtkada/gtkada_rm_31.html Xshare/doc/gtkada/gtkada_rm_32.html Xshare/doc/gtkada/gtkada_rm_33.html Xshare/doc/gtkada/gtkada_rm_34.html Xshare/doc/gtkada/gtkada_rm_35.html Xshare/doc/gtkada/gtkada_rm_36.html Xshare/doc/gtkada/gtkada_rm_37.html Xshare/doc/gtkada/gtkada_rm_38.html Xshare/doc/gtkada/gtkada_rm_39.html Xshare/doc/gtkada/gtkada_rm_4.html Xshare/doc/gtkada/gtkada_rm_40.html Xshare/doc/gtkada/gtkada_rm_41.html Xshare/doc/gtkada/gtkada_rm_42.html Xshare/doc/gtkada/gtkada_rm_43.html Xshare/doc/gtkada/gtkada_rm_44.html Xshare/doc/gtkada/gtkada_rm_45.html Xshare/doc/gtkada/gtkada_rm_46.html Xshare/doc/gtkada/gtkada_rm_47.html Xshare/doc/gtkada/gtkada_rm_48.html Xshare/doc/gtkada/gtkada_rm_49.html Xshare/doc/gtkada/gtkada_rm_5.html Xshare/doc/gtkada/gtkada_rm_50.html Xshare/doc/gtkada/gtkada_rm_51.html Xshare/doc/gtkada/gtkada_rm_52.html Xshare/doc/gtkada/gtkada_rm_53.html Xshare/doc/gtkada/gtkada_rm_54.html Xshare/doc/gtkada/gtkada_rm_55.html Xshare/doc/gtkada/gtkada_rm_56.html Xshare/doc/gtkada/gtkada_rm_57.html Xshare/doc/gtkada/gtkada_rm_58.html Xshare/doc/gtkada/gtkada_rm_59.html Xshare/doc/gtkada/gtkada_rm_6.html Xshare/doc/gtkada/gtkada_rm_60.html Xshare/doc/gtkada/gtkada_rm_61.html Xshare/doc/gtkada/gtkada_rm_62.html Xshare/doc/gtkada/gtkada_rm_63.html Xshare/doc/gtkada/gtkada_rm_64.html Xshare/doc/gtkada/gtkada_rm_65.html Xshare/doc/gtkada/gtkada_rm_66.html Xshare/doc/gtkada/gtkada_rm_67.html Xshare/doc/gtkada/gtkada_rm_68.html Xshare/doc/gtkada/gtkada_rm_69.html Xshare/doc/gtkada/gtkada_rm_7.html Xshare/doc/gtkada/gtkada_rm_70.html Xshare/doc/gtkada/gtkada_rm_71.html Xshare/doc/gtkada/gtkada_rm_72.html Xshare/doc/gtkada/gtkada_rm_73.html Xshare/doc/gtkada/gtkada_rm_74.html Xshare/doc/gtkada/gtkada_rm_75.html Xshare/doc/gtkada/gtkada_rm_76.html Xshare/doc/gtkada/gtkada_rm_77.html Xshare/doc/gtkada/gtkada_rm_78.html Xshare/doc/gtkada/gtkada_rm_79.html Xshare/doc/gtkada/gtkada_rm_8.html Xshare/doc/gtkada/gtkada_rm_80.html Xshare/doc/gtkada/gtkada_rm_81.html Xshare/doc/gtkada/gtkada_rm_82.html Xshare/doc/gtkada/gtkada_rm_83.html Xshare/doc/gtkada/gtkada_rm_84.html Xshare/doc/gtkada/gtkada_rm_85.html Xshare/doc/gtkada/gtkada_rm_86.html Xshare/doc/gtkada/gtkada_rm_87.html Xshare/doc/gtkada/gtkada_rm_88.html Xshare/doc/gtkada/gtkada_rm_89.html Xshare/doc/gtkada/gtkada_rm_9.html Xshare/doc/gtkada/gtkada_rm_90.html Xshare/doc/gtkada/gtkada_rm_91.html Xshare/doc/gtkada/gtkada_rm_92.html Xshare/doc/gtkada/gtkada_rm_93.html Xshare/doc/gtkada/gtkada_rm_94.html Xshare/doc/gtkada/gtkada_rm_95.html Xshare/doc/gtkada/gtkada_rm_96.html Xshare/doc/gtkada/gtkada_rm_97.html Xshare/doc/gtkada/gtkada_rm_98.html Xshare/doc/gtkada/gtkada_rm_99.html Xshare/doc/gtkada/gtkada_rm_stoc.html Xshare/doc/gtkada/gtkada_rm_toc.html Xshare/doc/gtkada/gtkada_ug.ps Xshare/doc/gtkada/gtkada_ug.html Xinfo/gtkada_ug.info Xinfo/gtkada_ug.info-1 Xinfo/gtkada_ug.info-2 X@dirrm include/gtkada X@dirrm share/doc/gtkada END-of-gtkada/pkg-plist echo x - gtkada/pkg-comment sed 's/^X//' >gtkada/pkg-comment << 'END-of-gtkada/pkg-comment' XGtk binding for Ada END-of-gtkada/pkg-comment echo x - gtkada/pkg-descr sed 's/^X//' >gtkada/pkg-descr << 'END-of-gtkada/pkg-descr' XGtkAda provides Ada programmes with a full Gtk binding. X XWWW: http://adabroker.eu.org/ END-of-gtkada/pkg-descr echo c - gtkada/files mkdir -p gtkada/files > /dev/null 2>&1 echo x - gtkada/files/patch-aa sed 's/^X//' >gtkada/files/patch-aa << 'END-of-gtkada/files/patch-aa' X--- src/Makefile.in.orig Mon Nov 27 19:21:00 2000 X+++ src/Makefile.in Mon Nov 27 19:22:38 2000 X@@ -14,6 +14,7 @@ X INSTALL = @INSTALL@ X INSTALL_PROGRAM = @INSTALL_PROGRAM@ X INSTALL_DATA = @INSTALL_DATA@ X+INSTALL_SCRIPT = @INSTALL_SCRIPT@ X X CFLAGS = @CFLAGS@ -Wall @GTK_CFLAGS@ -I.. $(FPIC) X X@@ -148,8 +149,8 @@ X $(CP) gtk*.ads gtk*.adb $(incdir); \ X $(CP) $(LIB_DIR)/glib*.ali $(LIB_DIR)/gdk*.ali $(LIB_DIR)/gtk*.ali $(alidir); \ X $(CHMOD) -w $(alidir)/*.ali; \ X- $(INSTALL_PROGRAM) $(GTKADA_CONFIG) $(bindir); \ X- $(INSTALL_PROGRAM) $(GATE) $(bindir); \ X+ $(INSTALL_SCRIPT) $(GTKADA_CONFIG) $(bindir); \ X+ $(INSTALL_SCRIPT) $(GATE) $(bindir); \ X $(INSTALL_PROGRAM) $(GATE_EX) $(bindir); \ X $(INSTALL_PROGRAM) $(DGATE) $(bindir); \ X $(INSTALL_PROGRAM) $(GDIALOG) $(bindir); \ END-of-gtkada/files/patch-aa 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 Nov 27 11:23:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mrout1.yahoo.com (mrout1.yahoo.com [208.48.125.95]) by hub.freebsd.org (Postfix) with ESMTP id A1A3437B4C5 for ; Mon, 27 Nov 2000 11:23:28 -0800 (PST) Received: from yahoo-inc.com (quintara.corp.yahoo.com [208.48.106.173]) by mrout1.yahoo.com (8.11.1/8.11.1/y.out) with ESMTP id eARJMvO04954; Mon, 27 Nov 2000 11:22:57 -0800 (PST) Message-ID: <3A22B491.5BF00317@yahoo-inc.com> Date: Mon, 27 Nov 2000 11:22:57 -0800 From: Dave Viner X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-YAHOO-20000724 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-ports@FreeBSD.org Subject: Xerces-C Parser Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anyone successfully ported the Xerces-C XML Parser ( http://xml.apache.org/dist/xerces-c/stable/ ) from the apache group to FreeBSD? I am attempting to use it, but running into some problems. Is anyone interested in helping to port it? I have a patch that allows it to compile, but i can't get it to work properly. Thanks Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 12:10: 6 2000 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 BE21637B4CF for ; Mon, 27 Nov 2000 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA58194; Mon, 27 Nov 2000 12:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from wooster.jumpdata.com (flimsy.lean.to [166.90.128.243]) by hub.freebsd.org (Postfix) with ESMTP id 437FE37B479 for ; Mon, 27 Nov 2000 12:04:52 -0800 (PST) Received: (from anand@localhost) by wooster.jumpdata.com (8.11.1/8.11.1) id eARK58H44833; Mon, 27 Nov 2000 12:05:08 -0800 (PST) (envelope-from anand) Message-Id: <200011272005.eARK58H44833@wooster.jumpdata.com> Date: Mon, 27 Nov 2000 12:05:08 -0800 (PST) From: Anand Ranganathan Reply-To: anand@desktop.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23139: Additional patch for gnomecontrolcenter port. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23139 >Category: ports >Synopsis: Additional patch for gnomecontrolcenter port. >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 Nov 27 12:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Anand Ranganathan >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: FreeBSD 4.2-RELEASE, i386, gnomecontrolcenter port in /usr/ports/sysutils/gnomecontrolcenter. Also the package gnomecontrolcenter-1.2.2. >Description: The gtk theme switcher applet dies with SEGV when the user attempts to change the gtk theme. >How-To-Repeat: Start up the theme selector app with the command: theme-selector-capplet. This can also be started by starting the gnomecc app, and then selecting "Theme Selector" in the left hand menu under the "Desktop" menu item. In the "Available Themes" list, choose a different theme than the one currently in use. The applet should dump core immediately. This is also referenced in a gnome bug filed by some one else: http://bugs.gnome.org/db/26/26809.html >Fix: Add this patch to the list of patches currently used when building the port. I considered sending the port to gnome, but it looks like the next release of this software will use a radically different codebase, so this will be unnecessary when that happens. --- capplets/theme-switcher/lister.c.orig Mon Nov 27 11:39:55 2000 +++ capplets/theme-switcher/lister.c Mon Nov 27 11:18:25 2000 @@ -160,6 +160,8 @@ while (!feof (fin)) { getline (&lineptr, &linecount, fin); + if (feof(fin)) + break; if (ferror(fin)) { errstring = g_strdup_printf ("Error reading from RC file %s: %s", >Release-Note: >Audit-Trail: >Unformatted: Anand Ranganathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 12:20: 6 2000 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 80F2937B4C5 for ; Mon, 27 Nov 2000 12:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA60386; Mon, 27 Nov 2000 12:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E6E8D37B4C5; Mon, 27 Nov 2000 12:10:42 -0800 (PST) Message-Id: <20001127201042.E6E8D37B4C5@hub.freebsd.org> Date: Mon, 27 Nov 2000 12:10:42 -0800 (PST) From: bwithrow@nortelnetworks.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23140: GNU id-utils port is out-of-date Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23140 >Category: ports >Synopsis: GNU id-utils port is out-of-date >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 27 12:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Robert Withrow >Release: 4.0REL >Organization: Nortel Networks >Environment: FreeBSD kyzyl.engeast.baynetworks.com 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Tue Aug 1 11:27:10 EDT 2000 toor@kyzyl.engeast.baynetworks.com:/usr/src/sys/compile/DELL410 i386 >Description: The GNU id-utils port uses an ancient version of the code. This version doesn't understand C++! There is a much newer version on the GNU "alpha" site and it *does* understand C++. >How-To-Repeat: Install the port, attempt to mkid on C++ code. >Fix: diff -cr id-utils.old/Makefile id-utils/Makefile *** id-utils.old/Makefile Tue Apr 11 18:12:13 2000 --- id-utils/Makefile Mon Nov 27 15:03:22 2000 *************** *** 6,15 **** # PORTNAME= id-utils ! PORTVERSION= 3.2 CATEGORIES= devel ! MASTER_SITES= ${MASTER_SITE_GNU} ! MASTER_SITE_SUBDIR= id-utils MAINTAINER= pst@FreeBSD.org --- 6,14 ---- # PORTNAME= id-utils ! PORTVERSION= 3.2d CATEGORIES= devel ! MASTER_SITES= ftp://alpha.gnu.org/pub/gnu/ MAINTAINER= pst@FreeBSD.org diff -cr id-utils.old/distinfo id-utils/distinfo *** id-utils.old/distinfo Thu Aug 22 19:57:55 1996 --- id-utils/distinfo Mon Nov 27 14:56:22 2000 *************** *** 1 **** ! MD5 (id-utils-3.2.tar.gz) = 758213344bfd1b70723b10cdb2beaef3 --- 1 ---- ! MD5 (id-utils-3.2d.tar.gz) = 1152902c1fff4fadb8a7827ad91a80b0 diff -cr id-utils.old/pkg-descr id-utils/pkg-descr *** id-utils.old/pkg-descr Thu Aug 22 19:57:56 1996 --- id-utils/pkg-descr Mon Nov 27 15:00:11 2000 *************** *** 13,16 **** has resumed maintenance and is releasing an improved version 3 under GPL. Version 3 is an interim release. Version 4 will follow in the coming ! months and include a cscope clone plus other improvements. --- 13,18 ---- has resumed maintenance and is releasing an improved version 3 under GPL. Version 3 is an interim release. Version 4 will follow in the coming ! months and include a cscope clone plus other improvements. This ! version is an improved version of version 3 (which hasn't been updated ! since 1996!). It understands C++. >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 Nov 27 12:40: 8 2000 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 C3D5537B4C5 for ; Mon, 27 Nov 2000 12:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64221; Mon, 27 Nov 2000 12:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id AF3C737B4D7 for ; Mon, 27 Nov 2000 12:31:42 -0800 (PST) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 140Uw8-0002tB-00; Mon, 27 Nov 2000 21:31:40 +0100 Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id eARK0mJ98832; Mon, 27 Nov 2000 21:00:48 +0100 (CET) (envelope-from naddy) Message-Id: <200011272000.eARK0mJ98832@kemoauc.mips.inka.de> Date: Mon, 27 Nov 2000 21:00:48 +0100 (CET) From: Christian Weisgerber Reply-To: naddy@mips.inka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23142: New: astro/jday Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23142 >Category: ports >Synopsis: New: astro/jday >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 Nov 27 12:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT alpha >Organization: >Environment: >Description: The jday binary can be used to convert calendar dates to astronomical julian dates. This number is useful for a variety of purposes. Especially related to calculating elapsed time between instances over large or short periods of time. The associated j2d binary can convert julian dates to calendar dates. WWW: http://jday.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: # # jday # jday/Makefile # jday/pkg-comment # jday/distinfo # jday/pkg-descr # jday/pkg-plist # echo c - jday mkdir -p jday > /dev/null 2>&1 echo x - jday/Makefile sed 's/^X//' >jday/Makefile << 'END-of-jday/Makefile' X# New ports collection makefile for: jday X# Date created: 2000-11-27 X# Whom: Christian Weisgerber X# X# $FreeBSD$ X XPORTNAME= jday XPORTVERSION= 1.2 XCATEGORIES= astro XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= jday X XMAINTAINER= naddy@mips.inka.de X XGNU_CONFIGURE= yes X Xpost-install: X ${MKDIR} ${PREFIX}/share/doc/jday X ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/jday X X.include END-of-jday/Makefile echo x - jday/pkg-comment sed 's/^X//' >jday/pkg-comment << 'END-of-jday/pkg-comment' XConvert calendar dates to and from astronomical julian dates END-of-jday/pkg-comment echo x - jday/distinfo sed 's/^X//' >jday/distinfo << 'END-of-jday/distinfo' XMD5 (jday-1.2.tar.gz) = 33f63d8e7880dc7f5181db280a243c4d END-of-jday/distinfo echo x - jday/pkg-descr sed 's/^X//' >jday/pkg-descr << 'END-of-jday/pkg-descr' XThe jday binary can be used to convert calendar dates to astronomical Xjulian dates. This number is useful for a variety of purposes. XEspecially related to calculating elapsed time between instances Xover large or short periods of time. X XThe associated j2d binary can convert julian dates to calendar Xdates. X XWWW: http://jday.sourceforge.net/ END-of-jday/pkg-descr echo x - jday/pkg-plist sed 's/^X//' >jday/pkg-plist << 'END-of-jday/pkg-plist' Xbin/jday Xbin/j2d Xshare/doc/jday/README X@dirrm share/doc/jday END-of-jday/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 Nov 27 12:40:14 2000 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 E4D8237B4D7 for ; Mon, 27 Nov 2000 12:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64230; Mon, 27 Nov 2000 12:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 2917337B4C5 for ; Mon, 27 Nov 2000 12:39:44 -0800 (PST) Received: from gosset.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 27 Nov 2000 20:39:43 +0000 (GMT) Message-Id: <200011272039.aa96397@gosset.maths.tcd.ie> Date: Mon, 27 Nov 2000 20:39:42 +0000 (GMT) From: eoin@maths.tcd.ie Reply-To: eoin@maths.tcd.ie To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23143: ports/net/nam update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23143 >Category: ports >Synopsis: ports/net/nam upgrade >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 Nov 27 12:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Eoin Lawless >Release: FreeBSD 4.1-STABLE i386 >Organization: Trinity College >Environment: 4.1-Stable from 4th August >Description: Upgrade ports/net/nam to version 1.0a9 >How-To-Repeat: >Fix: Patch below: Common subdirectories: nam.orig/CVS and nam/CVS diff nam.orig/Makefile nam/Makefile 9c9 < PORTVERSION= 1.0a8 --- > PORTVERSION= 1.0a9 11c11 < MASTER_SITES= http://www-mash.cs.berkeley.edu/dist/vint/ --- > MASTER_SITES= http://www.isi.edu/nsnam/dist/ diff nam.orig/distinfo nam/distinfo 1c1 < MD5 (nam-src-1.0a8.tar.gz) = e58df7a134bd7174a122cfa183d95b90 --- > MD5 (nam-src-1.0a9.tar.gz) = 8c8f7c35896be7a272cb43d75e651ef0 Common subdirectories: nam.orig/files and nam/files diff nam.orig/pkg-plist nam/pkg-plist 1a2,3 > share/examples/nam/9nodetree.nam > share/examples/nam/DSR.nam 4a7,10 > share/examples/nam/algo-out-50sub.nam > share/examples/nam/att.README > share/examples/nam/att.nam.gz > share/examples/nam/dynamic-nam.conf 6a13,14 > share/examples/nam/flat-out-50sub.nam > share/examples/nam/hier-out-50sub.nam 10a19,21 > share/examples/nam/mbone96.layout.nam > share/examples/nam/mbone96.nam > share/examples/nam/mcache.nam 11a23 > share/examples/nam/pktdemo.nam.gz 22a35 > share/examples/nam/ts100.layout.nam.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 Mon Nov 27 12:40:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 0CF2337B4C5; Mon, 27 Nov 2000 12:40:53 -0800 (PST) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer david.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by david.siemens.de (8.11.0/8.11.0) with ESMTP id eARKepu05840; Mon, 27 Nov 2000 21:40:52 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail2.siemens.de (8.11.0/8.11.0) with ESMTP id eARKepu20493; Mon, 27 Nov 2000 21:40:51 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.1/8.11.1) id eARKep215028; Date: Mon, 27 Nov 2000 21:40:50 +0100 From: Andre Albsmeier To: Doug Barton Cc: Andre Albsmeier , freebsd-ports@FreeBSD.org, brian@Awfulhak.org Subject: Re: ports/23017: [PATCH] for arpwatch to log PID to syslog Message-ID: <20001127214050.C5259@curry.mchp.siemens.de> References: <200011250553.VAA26763@freefall.freebsd.org> <20001127071137.A71003@curry.mchp.siemens.de> <3A229A01.451315C1@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: <3A229A01.451315C1@FreeBSD.org>; from DougB@FreeBSD.org on Mon, Nov 27, 2000 at 09:29:37AM -0800 X-Echelon: BND CIA NSA Mossad KGB MI6 IRA detonator nuclear assault strike Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 27-Nov-2000 at 09:29:37 -0800, Doug Barton wrote: > Andre Albsmeier wrote: > > > > On Fri, 24-Nov-2000 at 21:53:39 -0800, dougb@FreeBSD.org wrote: > > > Synopsis: [PATCH] for arpwatch to log PID to syslog > > > > > > State-Changed-From-To: open->closed > > > State-Changed-By: dougb > > > State-Changed-When: Fri Nov 24 21:52:28 PST 2000 > > > State-Changed-Why: > > > > > > It's more appropriate to submit a patch like this to the > > > port's author. > > > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23017 > > > > So could you please assing it to him? > > > > MAINTAINER= brian@Awfulhak.org > > I was referring to the software author, not the port author. Well, you wrote "port's author". So I didn't know if you ment the author of the arpwatch package or the port maintainer... However, I already sent an email to the address mentioned in the package (arpwatch@ee.lbl.gov) but didn't get any reply. Since the patch is useful, it might be interesting to include it in FreeBSD. -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 12:50: 9 2000 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 15ACC37B4C5 for ; Mon, 27 Nov 2000 12:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA66395; Mon, 27 Nov 2000 12:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 75E4537B4C5 for ; Mon, 27 Nov 2000 12:43:22 -0800 (PST) Received: from gosset.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 27 Nov 2000 20:43:18 +0000 (GMT) Message-Id: <200011272043.aa96713@gosset.maths.tcd.ie> Date: Mon, 27 Nov 2000 20:43:18 +0000 (GMT) From: eoin@maths.tcd.ie Reply-To: eoin@maths.tcd.ie To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23144: ports/net/ns upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23144 >Category: ports >Synopsis: ports/net/ns upgrade >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 Nov 27 12:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Eoin Lawless >Release: FreeBSD 4.1-STABLE i386 >Organization: Trinity College >Environment: 4.1-STABLE i386 from 4th August >Description: Upgrade ports/net/ns from version 2.1.b5 to 2.1.b7 >How-To-Repeat: >Fix: Patch below. The file ns/files/patch-aa is deleted Common subdirectories: ns.orig/CVS and ns/CVS diff ns.orig/Makefile ns/Makefile 9c9 < PORTVERSION= 2.1.b5 --- > PORTVERSION= 2.1.b7 11,12c11,12 < MASTER_SITES= http://www-mash.cs.berkeley.edu/dist/vint/ < DISTNAME= ns-src-2.1b5 --- > MASTER_SITES= http://www.isi.edu/nsnam/dist/ > DISTNAME= ns-src-2.1b7 22c22 < WRKSRC= ${WRKDIR}/ns-2.1b5 --- > WRKSRC= ${WRKDIR}/ns-2.1b7 diff ns.orig/distinfo ns/distinfo 1c1 < MD5 (ns-src-2.1b5.tar.gz) = 6aae46016418c0f5dc54b9b7398c4fc0 --- > MD5 (ns-src-2.1b7.tar.gz) = 6416e3e3f329997c407113e8cb2773b98 Common subdirectories: ns.orig/files and ns/files diff ns.orig/pkg-plist ns/pkg-plist 4a5,8 > share/examples/ns2/diffusion-prob-run.tcl > share/examples/ns2/diffusion-rate-run.tcl > share/examples/ns2/dumbbell.tcl > share/examples/ns2/flooding-run.tcl 6a11,12 > share/examples/ns2/grid2.tcl > share/examples/ns2/gridkeeper.tcl 10a17,18 > share/examples/ns2/large-scale-web-traffic-old.tcl > share/examples/ns2/large-scale-web-traffic.tcl 14a23,24 > share/examples/ns2/miptest.tcl > share/examples/ns2/nam-example-em.tcl 15a26 > share/examples/ns2/nam-large-flowid.tcl 17a29 > share/examples/ns2/omni-run.tcl 20a33,42 > share/examples/ns2/route-gen.tcl > share/examples/ns2/sat-aloha.tcl > share/examples/ns2/sat-iridium-links.tcl > share/examples/ns2/sat-iridium-nodes.tcl > share/examples/ns2/sat-iridium.tcl > share/examples/ns2/sat-mixed.tcl > share/examples/ns2/sat-repeater.tcl > share/examples/ns2/sat-teledesic-links.tcl > share/examples/ns2/sat-teledesic-nodes.tcl > share/examples/ns2/sat-teledesic.tcl 25a48 > share/examples/ns2/simple-fsm-tcp.tcl 26a50 > share/examples/ns2/simple-plm.tcl 31a56 > share/examples/ns2/simple-wireless.tcl 33d57 < share/examples/ns2/srm-adapt-rep-session.tcl 34a59 > share/examples/ns2/srm-adapt-rep-session.tcl 59a85,86 > share/examples/ns2/trace-driven.tcl > share/examples/ns2/varybell.tcl 63a91,102 > share/examples/ns2/web-traffic-embobj.tcl > share/examples/ns2/web-traffic.tcl > share/examples/ns2/wired-cum-wireless-sim.tcl > share/examples/ns2/wireless-demo-csci694.tcl > share/examples/ns2/wireless-dsdv-newnode.tcl > share/examples/ns2/wireless-landmark.tcl > share/examples/ns2/wireless-mip-test.tcl > share/examples/ns2/wireless-mitf.tcl > share/examples/ns2/wireless-newnode-energy.tcl > share/examples/ns2/wireless-pkt-demo.tcl > share/examples/ns2/wireless-shadowing-test.tcl > share/examples/ns2/wireless-test.tcl >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 Nov 27 12:52: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 46B3837B479 for ; Mon, 27 Nov 2000 12:51:57 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id PAA96852; Mon, 27 Nov 2000 15:51:56 -0500 (EST) (envelope-from wollman) Date: Mon, 27 Nov 2000 15:51:56 -0500 (EST) From: Garrett Wollman Message-Id: <200011272051.PAA96852@khavrinen.lcs.mit.edu> To: ports@freebsd.org Subject: Upgrade hack idea Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just did an upgrade from libpng.so.3 to libpng.so.4 on one of my machines. I did not want to recompile the client applications, and I did want to keep some record of the installation of this library and its dependencies so I remember to delete it when I do recompile those clients. I went through the following steps, which seem to be fairly automatable, and would make a nice script hack (on the level of `save_shared_libraries png-1.0.5 png-compat-1.0.5'). # cp -p /usr/local/lib/libpng.so.3 /usr/local/lib/compat # ldconfig -m /usr/local/lib/compat # : edit /etc/rc.conf to add this ldconfig path to the standard ones # cd /var/db/pkg # cp -rp png-1.0.5 png-compat-1.0.5 # pkg_delete -f png-1.0.5 # : edit png-compat-1.0.5/+CONTENTS to delete almost everything # : edit dependencies' +CONTENTS file to change name of depended package # cd /usr/ports/graphics/png # make install -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 13:10: 5 2000 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 F3D6937B4CF for ; Mon, 27 Nov 2000 13:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA72053; Mon, 27 Nov 2000 13:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from guardian.sftw.com (guardian.sftw.com [209.157.37.25]) by hub.freebsd.org (Postfix) with ESMTP id 98E4A37B479 for ; Mon, 27 Nov 2000 13:05:42 -0800 (PST) Received: from yoda.sftw.com (yoda.sftw.com [209.157.37.211]) by guardian.sftw.com (8.11.0/8.11.0) with ESMTP id eARL5gq57539 for ; Mon, 27 Nov 2000 13:05:42 -0800 (PST) (envelope-from nsayer@yoda.sftw.com) Received: (from nsayer@localhost) by yoda.sftw.com (8.11.1/8.11.1) id eARL5gX05090; Mon, 27 Nov 2000 13:05:42 -0800 (PST) (envelope-from nsayer) Message-Id: <200011272105.eARL5gX05090@yoda.sftw.com> Date: Mon, 27 Nov 2000 13:05:42 -0800 (PST) From: Nick Sayer Reply-To: nsayer@sftw.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23146: KDE konsole doesn't chown PTYs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23146 >Category: ports >Synopsis: KDE konsole doesn't chown PTYs >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 27 13:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Nick Sayer >Release: FreeBSD 4.2-RELEASE i386 >Organization: Just Me >Environment: KDE2 ports >Description: konsole_grantpty doesn't work, and even if it did, konsole doesn't call it properly. With the patches I submitted to KDE, everything works properly -- konsoles chown their PTY slave devices, and even utmp/wtmp is handled correctly. >How-To-Repeat: >Fix: See patches in KDE bug # 11134 >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 Nov 27 13:10:43 2000 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 8F24B37B4C5; Mon, 27 Nov 2000 13:10:41 -0800 (PST) Received: (from nsayer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA72267; Mon, 27 Nov 2000 13:10:41 -0800 (PST) (envelope-from nsayer@FreeBSD.org) Date: Mon, 27 Nov 2000 13:10:41 -0800 (PST) From: Message-Id: <200011272110.NAA72267@freefall.freebsd.org> To: nsayer@FreeBSD.org, freebsd-ports@FreeBSD.org, kevlo@FreeBSD.org Subject: Re: ports/23146: KDE konsole doesn't chown PTYs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: KDE konsole doesn't chown PTYs Responsible-Changed-From-To: freebsd-ports->kevlo Responsible-Changed-By: nsayer Responsible-Changed-When: Mon Nov 27 13:10:23 PST 2000 Responsible-Changed-Why: Over to the maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=23146 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 13:16:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id 7F18037B479 for ; Mon, 27 Nov 2000 13:16:53 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id B2647C9A4 for ; Mon, 27 Nov 2000 16:16:47 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 7C95D2E451 for ; Mon, 27 Nov 2000 16:16:22 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eARLGMM37840; Mon, 27 Nov 2000 16:16:22 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14882.53030.21031.747666@onceler.kciLink.com> Date: Mon, 27 Nov 2000 16:16:22 -0500 To: ports@FreeBSD.org Subject: update to postgesql7 port X-Mailer: VM 6.83 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Trivial patch to update port to 7.0.3 version of Postgresql: --- Makefile.dist Mon Nov 27 15:33:16 2000 +++ Makefile Mon Nov 27 15:33:30 2000 @@ -6,7 +6,7 @@ # PORTNAME= postgresql -PORTVERSION= 7.0.2 +PORTVERSION= 7.0.3 CATEGORIES= databases MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ ftp://ftp.de.postgresql.org/%SUBDIR%/ \ and the distinfo file associated with it: MD5 (postgresql/postgresql-7.0.3.base.tar.gz) = 3944ee7610368dc51264db117be82cc3 MD5 (postgresql/postgresql-7.0.3.docs.tar.gz) = 120d8b7598b37075b00a347665a241eb MD5 (postgresql/postgresql-7.0.3.support.tar.gz) = 9887f90fd10ae7bab27e5438a43bfdbb MD5 (postgresql/postgresql-7.0.3.test.tar.gz) = f3b7251d05f5d7c8e13f7a437bee052b I only did a build with "make -DWITHOUT_MULTIBYTE" but it seems to work, as it was just a minor bug-fix update. Also, it seems that the "7.0.3.test" archive is not really used. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 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 Nov 27 13:49:59 2000 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 E33AB37B479; Mon, 27 Nov 2000 13:49:51 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA82646; Mon, 27 Nov 2000 13:49:51 -0800 (PST) (envelope-from ade@FreeBSD.org) Date: Mon, 27 Nov 2000 13:49:51 -0800 (PST) From: Message-Id: <200011272149.NAA82646@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/23139: Additional patch for gnomecontrolcenter port. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Additional patch for gnomecontrolcenter port. Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Nov 27 13:48:57 PST 2000 Responsible-Changed-Why: I'll take a peek at this presently, with a whole bunch of other updates I need to make. http://www.freebsd.org/cgi/query-pr.cgi?pr=23139 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 16:32:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id C615237B4C5; Mon, 27 Nov 2000 16:32:06 -0800 (PST) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.11.1/8.11.1) with ESMTP id eAS0PfP09408; Tue, 28 Nov 2000 00:25:41 GMT (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.1/8.11.1) with ESMTP id eARHEqY00523; Mon, 27 Nov 2000 17:14:52 GMT (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200011271714.eARHEqY00523@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Andre Albsmeier Cc: dougb@FreeBSD.org, freebsd-ports@FreeBSD.org, brian@Awfulhak.org, brian@Awfulhak.org Subject: Re: ports/23017: [PATCH] for arpwatch to log PID to syslog In-Reply-To: Message from Andre Albsmeier of "Mon, 27 Nov 2000 07:11:37 +0100." <20001127071137.A71003@curry.mchp.siemens.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 27 Nov 2000 17:14:52 +0000 From: Brian Somers Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > On Fri, 24-Nov-2000 at 21:53:39 -0800, dougb@FreeBSD.org wrote: > > Synopsis: [PATCH] for arpwatch to log PID to syslog > > > > State-Changed-From-To: open->closed > > State-Changed-By: dougb > > State-Changed-When: Fri Nov 24 21:52:28 PST 2000 > > State-Changed-Why: > > > > It's more appropriate to submit a patch like this to the > > port's author. > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23017 > > So could you please assing it to him? > > MAINTAINER= brian@Awfulhak.org I think Doug is suggesting that you talk to the author rather than to the maintainer. This is usually a better idea as the feature doesn't tend to disappear after the next upgrade :-) I believe the arpwatch people are quite responsive. > Thanks, > -Andre -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 17:41:16 2000 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 DED7A37B4CF; Mon, 27 Nov 2000 17:41:14 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA24970; Mon, 27 Nov 2000 17:41:14 -0800 (PST) (envelope-from jeh@FreeBSD.org) Date: Mon, 27 Nov 2000 17:41:14 -0800 (PST) From: Message-Id: <200011280141.RAA24970@freefall.freebsd.org> To: hetzels@westbend.net, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23104: Maintainer upgrade to Apache 1.3.14 for apache13-fp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Maintainer upgrade to Apache 1.3.14 for apache13-fp State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Mon Nov 27 17:41:00 PST 2000 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23104 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 17:44: 2 2000 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 C962537B4CF; Mon, 27 Nov 2000 17:44:00 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA25360; Mon, 27 Nov 2000 17:44:00 -0800 (PST) (envelope-from jeh@FreeBSD.org) Date: Mon, 27 Nov 2000 17:44:00 -0800 (PST) From: Message-Id: <200011280144.RAA25360@freefall.freebsd.org> To: johann@egenetics.com, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23130: Port update: biology/emboss (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: biology/emboss (MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Mon Nov 27 17:43:46 PST 2000 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23130 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 18: 5:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 5FD5E37B4C5 for ; Mon, 27 Nov 2000 18:05:11 -0800 (PST) Received: from slave (Studded@slave [10.0.0.1]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id SAA76653; Mon, 27 Nov 2000 18:05:02 -0800 (PST) (envelope-from DougB@gorean.org) Date: Mon, 27 Nov 2000 18:05:01 -0800 (PST) From: Doug Barton X-Sender: doug@dt051n37.san.rr.com To: Andre Albsmeier Cc: freebsd-ports@FreeBSD.org, brian@Awfulhak.org Subject: Re: ports/23017: [PATCH] for arpwatch to log PID to syslog In-Reply-To: <20001127214050.C5259@curry.mchp.siemens.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 27 Nov 2000, Andre Albsmeier wrote: > On Mon, 27-Nov-2000 at 09:29:37 -0800, Doug Barton wrote: > > Andre Albsmeier wrote: > > > > > > On Fri, 24-Nov-2000 at 21:53:39 -0800, dougb@FreeBSD.org wrote: > > > > Synopsis: [PATCH] for arpwatch to log PID to syslog > > > > > > > > State-Changed-From-To: open->closed > > > > State-Changed-By: dougb > > > > State-Changed-When: Fri Nov 24 21:52:28 PST 2000 > > > > State-Changed-Why: > > > > > > > > It's more appropriate to submit a patch like this to the > > > > port's author. > > > > > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23017 > > > > > > So could you please assing it to him? > > > > > > MAINTAINER= brian@Awfulhak.org > > > > I was referring to the software author, not the port author. > > Well, you wrote "port's author". So I didn't know if you ment the > author of the arpwatch package or the port maintainer... My apologies for the confusion. -- So what I want to know is, where does the RED brick road go? Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 20:47:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from kronos.usol.com (kronos.usol.com [208.232.58.25]) by hub.freebsd.org (Postfix) with ESMTP id 1BC2F37B479 for ; Mon, 27 Nov 2000 20:47:23 -0800 (PST) Received: from quagea.org (pm1-41.usol.com [63.64.148.105]) by kronos.usol.com (8.11.1/8.11.0) with SMTP id eAS4lKQ30639 for ; Mon, 27 Nov 2000 23:47:20 -0500 From: Nectioch Date: Mon, 27 Nov 2000 23:52:34 -0500 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: freebsd-ports@FreeBSD.ORG Subject: xmms port make problem MIME-Version: 1.0 Message-Id: <00112723523400.01576@quagea.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Make for the xmms port fails with a bad checksum error for file xmms-1.2.3.tar.gz. I've tried removing the file from /usr/ports/distfiles and redownloading it several times using both the Makefile script and regular FTP access. Still get a bad checksum error. I tried deleting /usr/ports/audio/xmms directory and re-CVS it and still get a bad checksum error. I tried opening the archive manually in all occations and got an unexpected end of file. It's is apparent that the file is bad. I verified it was tranferred correctly from the site. Anyone else have this problem? Is it that the file is bad or is it just something I have yet overlooked? Thank You, Nectioch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 21:10: 6 2000 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 2FA3137B4E5 for ; Mon, 27 Nov 2000 21:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA22279; Mon, 27 Nov 2000 21:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 6523F37B479 for ; Mon, 27 Nov 2000 21:06:54 -0800 (PST) Received: (from admin@localhost) by mail.westbend.net (8.11.1/8.11.1) id eAS56rt33864; Mon, 27 Nov 2000 23:06:53 -0600 (CST) (envelope-from admin) Message-Id: <200011280506.eAS56rt33864@mail.westbend.net> Date: Mon, 27 Nov 2000 23:06:53 -0600 (CST) From: "Scot W. Hetzel" Reply-To: "Scot W. Hetzel" To: FreeBSD-gnats-submit@freebsd.org, hetzels@westbend.net X-Send-Pr-Version: 3.2 Subject: ports/23149: security/cyrus-sasl update Sendmail.README (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23149 >Category: ports >Synopsis: Update Sendmail.README in security/cyrus-sasl (MAINTAINER) >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 Nov 27 21:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: System Administrator >Release: FreeBSD 4.2-BETA i386 >Organization: West Bend Internet >Environment: >Description: The port installs sasldb with permissins of 640 and owned by cyrus and group mail. When sendmail is compiled with SASL it complains with: error: safesasl(/usr/local/etc/sasldb.db) failed: Group readable file when trying to access the sasldb database. >How-To-Repeat: >Fix: The attached patch to the Sendmail.README instructions explains how to enable the GroupReadableSASLFile option for DONT_BLAME_SENDMAIL. diff -ruN cyrus-sasl.orig/files/Sendmail.README cyrus-sasl/files/Sendmail.README --- cyrus-sasl.orig/files/Sendmail.README Tue Sep 19 20:34:45 2000 +++ cyrus-sasl/files/Sendmail.README Mon Nov 27 22:14:43 2000 @@ -2,10 +2,10 @@ 1) Add the following to /etc/make.conf: -# Add SMTP AUTH support to Sendmail -SENDMAIL_CFLAGS+= -DSASL -I/usr/local/include/sasl -SENDMAIL_LDFLAGS+= -L/usr/local/lib -SENDMAIL_LDADD+= -lsasl + # Add SMTP AUTH support to Sendmail + SENDMAIL_CFLAGS+= -I/usr/local/include/sasl -DSASL -D_FFR_UNSAFE_SASL + SENDMAIL_LDFLAGS+= -L/usr/local/lib + SENDMAIL_LDADD+= -lsasl 2) Rebuild FreeBSD (make buildworld, ...) @@ -13,3 +13,28 @@ pwcheck_method: pwcheck +4) Add the following to your sendmail.mc file: + + TRUST_AUTH_MECH(`DIGEST-MD5 CRAM-MD5')dnl + define(`confAUTH_MECHANISMS',`DIGEST-MD5 CRAM-MD5')dnl + define(`confDONT_BLAME_SENDMAIL',`GroupReadableSASLFile')dnl + + ---- + + Additional AUTH Mechanisms are LOGIN, PLAIN, GSSAPI, and KERBEROS_V4. + These can be added to TRUST_AUTH_MECH and confAUTH_MECHANISMS as a space + seperated list. You may want to restrict LOGIN, and PLAIN authentication + methods for use with STARTTLS, as the password is not encrypted when + passed to sendmail. + + LOGIN is required for Outlook Express users. "My server requires + authentication" needs to be checked in the accounts properties to + use SASL Authentication. + + PLAIN is required for Netscape Communicator users. By default Netscape + Communicator will use SASL Authentication when sendmail is compiled with + SASL. + + The DONT_BLAME_SENDMAIL option GroupReadableSASLFile is needed when you + are using cyrus-imapd and sendmail on the same server that requires access + to the sasldb database. >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 Nov 27 21:55:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.rdc2.tx.home.com (ha2.rdc2.tx.home.com [24.14.77.21]) by hub.freebsd.org (Postfix) with ESMTP id 339C937B4D7 for ; Mon, 27 Nov 2000 21:55:49 -0800 (PST) Received: from burks ([24.10.18.85]) by mail.rdc2.tx.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001128055548.ZMAH25162.mail.rdc2.tx.home.com@burks> for ; Mon, 27 Nov 2000 21:55:48 -0800 Reply-To: From: "alan4x4b" To: Subject: pop3 Date: Tue, 28 Nov 2000 00:11:42 -0600 Message-ID: <000501c05902$14b35e80$0b00a8c0@burks> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I cannot get my server to delivery the mail to the workstation. I get an error that says inetd[----]: cannot execute /usr/local/libexec/popper : no such file or directory I am getting e-mail to the server and I can read it from there but would like to down load it to my workstation. Can you help me resolve this. Please send an answer to burks@burkspage.net or alan4x4b@home.com Thank You To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 22:36:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rly-ip02.mx.aol.com (rly-ip02.mx.aol.com [152.163.225.160]) by hub.freebsd.org (Postfix) with ESMTP id 482CA37B400 for ; Mon, 27 Nov 2000 22:36:15 -0800 (PST) Received: from tot-wn.proxy.aol.com (tot-wn.proxy.aol.com [205.188.197.131]) by rly-ip02.mx.aol.com (8.8.8/8.8.8/AOL-5.0.0) with ESMTP id BAA16095 for ; Tue, 28 Nov 2000 01:35:37 -0500 (EST) Received: from hppav (AC90727D.ipt.aol.com [172.144.114.125]) by tot-wn.proxy.aol.com (8.10.0/8.10.0) with SMTP id eAS6Zai13733 for ; Tue, 28 Nov 2000 01:35:36 -0500 (EST) Message-ID: <003d01c05906$0b27afc0$0200a8c0@hppav> From: "Lalit Batra" To: Date: Tue, 28 Nov 2000 01:40:04 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_003A_01C058DC.21883D40" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Apparently-From: LalitBatra@aol.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_003A_01C058DC.21883D40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hi folks, I have a sudo package on the cd. But I dont have = /cdrom/ports/distfiles.Can u tell me any other way to install sudo adn = inwhich directory.Yeh what confuses me the most is that i have = "skeleton" for the sudo in /usr/ports/security/sudo.my machine is not = connected to internet, and right now i cant do it. I have tried to do something after reading the handbook, but > i have following errors.What i did is Like this:- > 1) mount /cdrom ( freebsd cdrom is in cddrive) > I get the following message: date time /kernel : cd9660 :=20 > joliet extension. > then I do this:- > 2) cd /usr/ports/security/sudo > 3) make > I get the following error. >=20 > >> sudo-1.6.3p4.tar.gz doesn't seem to exist on this system. > >> Attempting to fetch from = ftp://ftp.cs.colorado.edu/pub/sysadmin/sudo/. > >> Attempting to fetch from = ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > >> Couldn't fetch it - please try to retrieve this > >> port manually into /usr/ports/distfiles/ and try again. > *** Error code 1 >=20 > Stop in /usr/ports/security/sudo. > *** Error code 1 >=20 > Stop in /usr/ports/security/sudo. > *** Error code 1 ------=_NextPart_000_003A_01C058DC.21883D40 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
 hi folks,
I have a sudo package on the cd. But I = dont have=20 /cdrom/ports/distfiles.Can u tell me any other way to install sudo adn = inwhich=20 directory.Yeh what confuses me the most is that i have "skeleton" for = the sudo=20 in /usr/ports/security/sudo.my machine is not connected to internet, and = right=20 now i cant do it.
 
 
 
I have tried to do something after = reading the=20 handbook, but
> i have following errors.What i did  is Like=20 this:-
> 1) mount /cdrom ( freebsd cdrom is in = cddrive)
>  I=20 get the following message: date time /kernel : cd9660 :
> joliet=20 extension.
> then I do this:-
> 2) cd=20 /usr/ports/security/sudo
> 3) make
> I get the following=20 error.
>
> >> sudo-1.6.3p4.tar.gz doesn't seem to = exist on=20 this system.
> >> Attempting to fetch from ftp://ftp.cs.colora= do.edu/pub/sysadmin/sudo/.
>=20 >> Attempting to fetch from ftp://ftp.Fre= eBSD.org/pub/FreeBSD/ports/distfiles/.
>=20 >> Couldn't fetch it - please try to retrieve this
> = >> port=20 manually into /usr/ports/distfiles/ and try again.
> *** Error = code=20 1
>
> Stop in /usr/ports/security/sudo.
> *** Error = code=20 1
>
> Stop in /usr/ports/security/sudo.
> *** Error = code=20 1
------=_NextPart_000_003A_01C058DC.21883D40-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 22:36:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 988AC37B401; Mon, 27 Nov 2000 22:36:43 -0800 (PST) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer goliath.siemens.de) Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by goliath.siemens.de (8.11.0/8.11.0) with ESMTP id eAS6ael18774; Tue, 28 Nov 2000 07:36:40 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail3.siemens.de (8.11.1/8.11.1) with ESMTP id eAS6ade4772017; Tue, 28 Nov 2000 07:36:39 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.1/8.11.1) id eAS6ad217571; Date: Tue, 28 Nov 2000 07:36:39 +0100 From: Andre Albsmeier To: Brian Somers Cc: Andre Albsmeier , dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23017: [PATCH] for arpwatch to log PID to syslog Message-ID: <20001128073639.B19749@curry.mchp.siemens.de> References: <200011271714.eARHEqY00523@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011271714.eARHEqY00523@hak.lan.Awfulhak.org>; from brian@Awfulhak.org on Mon, Nov 27, 2000 at 05:14:52PM +0000 X-Echelon: BND CIA NSA Mossad KGB MI6 IRA detonator nuclear assault strike Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 27-Nov-2000 at 17:14:52 +0000, Brian Somers wrote: > > On Fri, 24-Nov-2000 at 21:53:39 -0800, dougb@FreeBSD.org wrote: > > > Synopsis: [PATCH] for arpwatch to log PID to syslog > > > > > > State-Changed-From-To: open->closed > > > State-Changed-By: dougb > > > State-Changed-When: Fri Nov 24 21:52:28 PST 2000 > > > State-Changed-Why: > > > > > > It's more appropriate to submit a patch like this to the > > > port's author. > > > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23017 > > > > So could you please assing it to him? > > > > MAINTAINER= brian@Awfulhak.org > > I think Doug is suggesting that you talk to the author rather than to > the maintainer. This is usually a better idea as the feature doesn't > tend to disappear after the next upgrade :-) > > I believe the arpwatch people are quite responsive. I'll try again. I'll let you you know the result (if any :-)). -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 27 22:44:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from envy.geekhouse.net (envy.geekhouse.net [64.81.6.50]) by hub.freebsd.org (Postfix) with ESMTP id 5DBA837B402 for ; Mon, 27 Nov 2000 22:44:35 -0800 (PST) Received: (from jim@localhost) by envy.geekhouse.net (8.11.1/8.11.1) id eAS6iX763310; Mon, 27 Nov 2000 22:44:33 -0800 (PST) (envelope-from jim) Date: Mon, 27 Nov 2000 22:44:32 -0800 From: Jim Mock To: alan4x4b Cc: ports@FreeBSD.ORG Subject: Re: pop3 Message-ID: <20001127224432.A63270@envy.geekhouse.net> Reply-To: jim@lust.geekhouse.net References: <000501c05902$14b35e80$0b00a8c0@burks> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.12i In-Reply-To: <000501c05902$14b35e80$0b00a8c0@burks>; from alan4x4b@home.com on Tue, Nov 28, 2000 at 12:11:42AM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 28 Nov 2000 at 00:11:42 -0600, alan4x4b wrote: > I cannot get my server to delivery the mail to the workstation. I get an > error that says inetd[----]: cannot execute /usr/local/libexec/popper : no > such file or directory > > I am getting e-mail to the server and I can read it from there but would > like to down load it to my workstation. Can you help me resolve this. > Please send an answer to burks@burkspage.net or alan4x4b@home.com Try installing a POP server. - jim -- jim mock work: jim@osd.bsdi.com | jim@FreeBSD.org http://soupnazi.org/ BSDi Open Source Div | http://bsdi.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 0:30: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C82C37B400 for ; Tue, 28 Nov 2000 00:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAS8U4Q25421; Tue, 28 Nov 2000 00:30:04 -0800 (PST) (envelope-from gnats) Received: by hub.freebsd.org (Postfix, from userid 32767) id A590B37B400; Tue, 28 Nov 2000 00:24:11 -0800 (PST) Message-Id: <20001128082411.A590B37B400@hub.freebsd.org> Date: Tue, 28 Nov 2000 00:24:11 -0800 (PST) From: perky@python.or.kr To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/23151: NEW PORT : sysutils/wake-on-lan Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23151 >Category: ports >Synopsis: NEW PORT : sysutils/wake-on-lan >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 Nov 28 00:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Chang, Hye-Shik >Release: FreeBSD 4.2 >Organization: Yonsei University >Environment: FreeBSD sbtm.yonsei.ac.kr 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Tue Nov 21 01:12:44 KST 2000 root@sbtm.yonsei.ac.kr:/usr/src/sys/compile/ARA i386 >Description: wake-on-lan crafts and sends a Wake-on-LAN packet to the specified MAC address over the given interface. >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: # # wake-on-lan # wake-on-lan/Makefile # wake-on-lan/pkg-comment # wake-on-lan/pkg-descr # wake-on-lan/pkg-plist # wake-on-lan/distinfo # echo c - wake-on-lan mkdir -p wake-on-lan > /dev/null 2>&1 echo x - wake-on-lan/Makefile sed 's/^X//' >wake-on-lan/Makefile << 'END-of-wake-on-lan/Makefile' X# New ports collection makefile for: wake-on-lan X# Date created: 28 Nov 2000 X# Whom: Chang, Hye-Shik X# X# $FreeBSD$ X# X XPORTNAME= wake-on-lan XPORTVERSION= 1.1 XCATEGORIES= sysutils net XMASTER_SITES= http://freebsd.nttmcl.com:8000/~ab/ \ X http://freebsd-kr.org/pub/FreeBSD/ports/distfiles/ \ X ftp://python.or.kr/pub/FreeBSD/ports/distfiles/ X XMAINTAINER= perky@python.or.kr X X.include END-of-wake-on-lan/Makefile echo x - wake-on-lan/pkg-comment sed 's/^X//' >wake-on-lan/pkg-comment << 'END-of-wake-on-lan/pkg-comment' XSends a Wake-on-LAN packet to the specified MAC address END-of-wake-on-lan/pkg-comment echo x - wake-on-lan/pkg-descr sed 's/^X//' >wake-on-lan/pkg-descr << 'END-of-wake-on-lan/pkg-descr' XWake-on-lan crafts and sends a Wake-on-LAN packet to the specified MAC Xaddress over the given interface. END-of-wake-on-lan/pkg-descr echo x - wake-on-lan/pkg-plist sed 's/^X//' >wake-on-lan/pkg-plist << 'END-of-wake-on-lan/pkg-plist' Xsbin/wake-on-lan END-of-wake-on-lan/pkg-plist echo x - wake-on-lan/distinfo sed 's/^X//' >wake-on-lan/distinfo << 'END-of-wake-on-lan/distinfo' XMD5 (wake-on-lan-1.1.tar.gz) = 3a0bcacbbe014205ac0d2b5f921a8c81 END-of-wake-on-lan/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 Tue Nov 28 2:40: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 347DB37B402 for ; Tue, 28 Nov 2000 02:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASAe2c55161; Tue, 28 Nov 2000 02:40:02 -0800 (PST) (envelope-from gnats) Received: by hub.freebsd.org (Postfix, from userid 32767) id BAA3C37B400; Tue, 28 Nov 2000 02:31:56 -0800 (PST) Message-Id: <20001128103156.BAA3C37B400@hub.freebsd.org> Date: Tue, 28 Nov 2000 02:31:56 -0800 (PST) From: olgeni@uli.it To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/23152: ftp/lftp: 2 missing files in pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23152 >Category: ports >Synopsis: ftp/lftp: 2 missing files in pkg-plist >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: Tue Nov 28 02:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: 4.2-STABLE >Organization: Colby >Environment: FreeBSD dev1.localdomain.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Mon Nov 27 16:38:35 CET 2000 olgeni@dev1.localdomain.net:/usr/obj/usr/src/sys/BSDBOX i386 >Description: Two files are missing from the current pkg-plist of ftp/lftp (2.3.5): share/locale/fr/LC_MESSAGES/lftp.mo and share/locale/ja/LC_MESSAGES/lftp.mo >How-To-Repeat: >Fix: Patch pkg-plist: *** pkg-plist.orig Tue Nov 28 00:06:07 2000 --- pkg-plist Tue Nov 28 00:06:07 2000 *************** *** 11,17 **** --- 11,19 ---- share/lftp/import-netscape share/locale/de/LC_MESSAGES/lftp.mo share/locale/es/LC_MESSAGES/lftp.mo + share/locale/fr/LC_MESSAGES/lftp.mo share/locale/it/LC_MESSAGES/lftp.mo + share/locale/ja/LC_MESSAGES/lftp.mo share/locale/ko/LC_MESSAGES/lftp.mo share/locale/pl/LC_MESSAGES/lftp.mo share/locale/pt_BR/LC_MESSAGES/lftp.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 Tue Nov 28 3:13:11 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3385B37B400; Tue, 28 Nov 2000 03:13:09 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASBD9Y63614; Tue, 28 Nov 2000 03:13:09 -0800 (PST) (envelope-from roam) Date: Tue, 28 Nov 2000 03:13:09 -0800 (PST) From: Message-Id: <200011281113.eASBD9Y63614@freefall.freebsd.org> To: roam@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: pending/23044: update: www/gnujsp to 1.0.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update: www/gnujsp to 1.0.1 Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: roam Responsible-Changed-When: Tue Nov 28 03:12:23 PST 2000 Responsible-Changed-Why: Misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=23044 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 3:23:46 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FD0F37B402; Tue, 28 Nov 2000 03:23:44 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASBNiT65600; Tue, 28 Nov 2000 03:23:44 -0800 (PST) (envelope-from roam) Date: Tue, 28 Nov 2000 03:23:44 -0800 (PST) From: Message-Id: <200011281123.eASBNiT65600@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, pst@FreeBSD.org Subject: Re: ports/23140: GNU id-utils port is out-of-date Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: GNU id-utils port is out-of-date Responsible-Changed-From-To: freebsd-ports->pst Responsible-Changed-By: roam Responsible-Changed-When: Tue Nov 28 03:23:12 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=23140 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 3:30: 6 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C977137B402 for ; Tue, 28 Nov 2000 03:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASBU3h66830; Tue, 28 Nov 2000 03:30:03 -0800 (PST) (envelope-from gnats) Date: Tue, 28 Nov 2000 03:30:03 -0800 (PST) Message-Id: <200011281130.eASBU3h66830@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/23143: ports/net/nam update Reply-To: Peter Pentchev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23143; it has been noted by GNATS. From: Peter Pentchev To: eoin@maths.tcd.ie Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/23143: ports/net/nam update Date: Tue, 28 Nov 2000 13:27:06 +0200 On Mon, Nov 27, 2000 at 08:39:42PM +0000, eoin@maths.tcd.ie wrote: > > >Number: 23143 > >Category: ports > >Synopsis: ports/net/nam upgrade > >Originator: Eoin Lawless Have you coordinated this with the port maintainer (obonilla@fisicc-ufm.edu)? G'luck, Peter -- This would easier understand fewer had omitted. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 3:30:10 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B71BD37B402 for ; Tue, 28 Nov 2000 03:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASBU7R66840; Tue, 28 Nov 2000 03:30:07 -0800 (PST) (envelope-from gnats) Date: Tue, 28 Nov 2000 03:30:07 -0800 (PST) Message-Id: <200011281130.eASBU7R66840@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/23144: ports/net/ns upgrade Reply-To: Peter Pentchev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23144; it has been noted by GNATS. From: Peter Pentchev To: eoin@maths.tcd.ie Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/23144: ports/net/ns upgrade Date: Tue, 28 Nov 2000 13:27:33 +0200 On Mon, Nov 27, 2000 at 08:43:18PM +0000, eoin@maths.tcd.ie wrote: > >Number: 23144 > >Category: ports > >Synopsis: ports/net/ns upgrade > >Originator: Eoin Lawless Have you coordinated this with the port maintainer (obonilla@fisicc-ufm.edu)? G'luck, Peter -- You have, of course, just begun reading the sentence that you have just finished reading. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 4: 7:15 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D51237B400; Tue, 28 Nov 2000 04:07:14 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASC76N78171; Tue, 28 Nov 2000 04:07:06 -0800 (PST) (envelope-from jeh) Date: Tue, 28 Nov 2000 04:07:06 -0800 (PST) From: Message-Id: <200011281207.eASC76N78171@freefall.freebsd.org> To: johann@egenetics.com, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22864: Port update: devel/omniORB Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: devel/omniORB State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Nov 28 04:06:47 PST 2000 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22864 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 4:20:17 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 86B2037B402 for ; Tue, 28 Nov 2000 04:20:11 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASCKBr80734; Tue, 28 Nov 2000 04:20:11 -0800 (PST) (envelope-from gnats) Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 8CE0C37B402 for ; Tue, 28 Nov 2000 04:10:26 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eASCAPR75801; Tue, 28 Nov 2000 14:10:25 +0200 (EET) (envelope-from never) Message-Id: <200011281210.eASCAPR75801@nevermind.kiev.ua> Date: Tue, 28 Nov 2000 14:10:25 +0200 (EET) From: never@nevermind.kiev.ua Reply-To: never@nevermind.kiev.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23154: mail/icqmail: fix [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23154 >Category: ports >Synopsis: mail/icqmail: 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: Tue Nov 28 04:20:10 PST 2000 >Closed-Date: >Last-Modified: >Originator: Nevermind >Release: FreeBSD 4.2-STABLE i386 >Organization: Interactive Media Technologies Ltd. UA >Environment: FreeBSD nevermind.kiev.ua 4.2-STABLE FreeBSD 4.2-STABLE #0: Wed Nov 22 18:39:47 EET 2000 never@nevermind.kiev.ua:/usr/src/sys/i386/conf/nevermind i386 >Description: Fix for broken icqmail port. (!) Requires oldicqmail port. >How-To-Repeat: >Fix: diff -ruN /usr/ports/mail/icqmail/Makefile ./Makefile --- /usr/ports/mail/icqmail/Makefile Mon Nov 27 11:12:17 2000 +++ ./Makefile Tue Nov 28 13:37:38 2000 @@ -13,13 +13,19 @@ MAINTAINER= never@nevermind.kiev.ua -LIB_DEPENDS= icq.1:${PORTSDIR}/net/icqlib \ - mimelib.3:${PORTSDIR}/converters/kdesupport2 \ - guile.9:${PORTSDIR}/lang/guile +LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile + +BUILD_DEPENDS= ${LOCALBASE}/lib/oldicqlib/libicq.la:${PORTSDIR}/devel/oldicqlib \ + ${LOCALBASE}/lib/oldicqlib/libicq.a:${PORTSDIR}/devel/oldicqlib \ + ${LOCALBASE}/include/oldicqlib/icq.h:${PORTSDIR}/devel/oldicqlib + +RUN_DEPENDS= ${LOCALBASE}/lib/oldicqlib/libicq.la:${PORTSDIR}/devel/oldicqlib \ + ${LOCALBASE}/lib/oldicqlib/libicq.a:${PORTSDIR}/devel/oldicqlib + USE_NEWGCC= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ +CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include/oldicqlib -L${LOCALBASE}/lib/oldicqlib -I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib -lguile -lqthreads" MAN1= icqmail.1 diff -ruN /usr/ports/mail/icqmail/pkg-descr ./pkg-descr --- /usr/ports/mail/icqmail/pkg-descr Tue Sep 5 04:43:18 2000 +++ ./pkg-descr Tue Nov 28 13:39:52 2000 @@ -1,8 +1,9 @@ ICQMail is a simple ICQ client which forwards all messages to given email address. -WWW: http://sourceforge.net/projects/icqmail/ +WWW: http://sourceforge.net/projects/icqmail/ +Author: Vadim Zaliva -- -Michael Vasilenko -acid@cn.ua +Alexandr Kovalenko +never@nevermind.kiev.ua >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 Nov 28 4:20:18 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E67FB37B401 for ; Tue, 28 Nov 2000 04:20:10 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASCKAD80724; Tue, 28 Nov 2000 04:20:10 -0800 (PST) (envelope-from gnats) Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 337E037B401 for ; Tue, 28 Nov 2000 04:10:16 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eASCA7p75752; Tue, 28 Nov 2000 14:10:07 +0200 (EET) (envelope-from never) Message-Id: <200011281210.eASCA7p75752@nevermind.kiev.ua> Date: Tue, 28 Nov 2000 14:10:07 +0200 (EET) From: never@nevermind.kiev.ua Reply-To: never@nevermind.kiev.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23153: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23153 >Category: ports >Synopsis: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! >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 Nov 28 04:20:05 PST 2000 >Closed-Date: >Last-Modified: >Originator: Nevermind >Release: FreeBSD 4.2-STABLE i386 >Organization: Interactive Media Technologies Ltd. UA >Environment: FreeBSD nevermind.kiev.ua 4.2-STABLE FreeBSD 4.2-STABLE #0: Wed Nov 22 18:39:47 EET 2000 never@nevermind.kiev.ua:/usr/src/sys/i386/conf/nevermind i386 >Description: Old version of icqlib (not libicq) for icqmail-1.2 support. >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: # # devel/oldicqlib # devel/oldicqlib/pkg-plist # devel/oldicqlib/pkg-descr # devel/oldicqlib/pkg-comment # devel/oldicqlib/distinfo # devel/oldicqlib/Makefile # echo c - devel/oldicqlib mkdir -p devel/oldicqlib > /dev/null 2>&1 echo x - devel/oldicqlib/pkg-plist sed 's/^X//' >devel/oldicqlib/pkg-plist << 'END-of-devel/oldicqlib/pkg-plist' Xinclude/oldicqlib/icq.h Xlib/oldicqlib/libicq.la Xlib/oldicqlib/libicq.a X@dirrm include/oldicqlib X@dirrm lib/oldicqlib END-of-devel/oldicqlib/pkg-plist echo x - devel/oldicqlib/pkg-descr sed 's/^X//' >devel/oldicqlib/pkg-descr << 'END-of-devel/oldicqlib/pkg-descr' XOld version of icqlib (not libicq) for icqmail-1.2 support. X XWWW: http://kicq.sourceforge.net/icqlib.shtml XAuthors: X Denis V. Dmitrienko X Nikita I. Makeev X X-- XAlexandr P. Kovalenko END-of-devel/oldicqlib/pkg-descr echo x - devel/oldicqlib/pkg-comment sed 's/^X//' >devel/oldicqlib/pkg-comment << 'END-of-devel/oldicqlib/pkg-comment' XOld version of icqlib (not libicq) for support icqmail-1.2 END-of-devel/oldicqlib/pkg-comment echo x - devel/oldicqlib/distinfo sed 's/^X//' >devel/oldicqlib/distinfo << 'END-of-devel/oldicqlib/distinfo' XMD5 (icqlib-0.1.3.tar.gz) = 6feeee66ed0a8c1e0910acb5cad439d7 END-of-devel/oldicqlib/distinfo echo x - devel/oldicqlib/Makefile sed 's/^X//' >devel/oldicqlib/Makefile << 'END-of-devel/oldicqlib/Makefile' X# New ports collection makefile for: oldicqlib X# Date created: 28 November 2000 X# Whom: never@nevermind.kiev.ua X# X# $FreeBSD$ X# X XPORTNAME= oldicqlib XPORTVERSION= 0.1.3 XCATEGORIES= devel XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XDISTNAME= icqlib-0.1.3 XMASTER_SITE_SUBDIR= icqlib X XMAINTAINER= never@nevermind.kiev.ua X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --prefix=${PREFIX} --libdir=${PREFIX}/lib/oldicqlib \ X --includedir=${PREFIX}/include/oldicqlib X X.include END-of-devel/oldicqlib/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 Tue Nov 28 4:30: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E20D737B401 for ; Tue, 28 Nov 2000 04:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASCU4x82584; Tue, 28 Nov 2000 04:30:04 -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 2131C37B400 for ; Tue, 28 Nov 2000 04:25:09 -0800 (PST) Received: by freebsd.org.ru (Postfix, from userid 1000) id 9E00072; Tue, 28 Nov 2000 15:25:02 +0300 (MSK) Message-Id: <20001128122502.9E00072@freebsd.org.ru> Date: Tue, 28 Nov 2000 15:25:02 +0300 (MSK) From: osa@FreeBSD.org.ru Reply-To: osa@FreeBSD.org.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23155: upgrade databases/gigabase from 2.19 to 2.20 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23155 >Category: ports >Synopsis: upgrade databases/gigabase from 2.19 to 2.20 (by maintainer) >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: Tue Nov 28 04:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 4.2-BETA i386 >Organization: Russian FreeBSD Team >Environment: upgrade databases/gigabase from 2.19 to 2.20 (by maintainer) >Description: upgrade databases/gigabase from 2.19 to 2.20 (by maintainer) >How-To-Repeat: >Fix: diff -ruN gigabase.old/Makefile gigabase/Makefile --- gigabase.old/Makefile Tue Nov 28 15:19:37 2000 +++ gigabase/Makefile Mon Nov 27 15:34:31 2000 @@ -6,7 +6,7 @@ # PORTNAME= gigabase -PORTVERSION= 2.19 +PORTVERSION= 2.20 CATEGORIES= databases MASTER_SITES= http://www.ispras.ru/~knizhnik/ diff -ruN gigabase.old/distinfo gigabase/distinfo --- gigabase.old/distinfo Tue Nov 28 15:19:37 2000 +++ gigabase/distinfo Mon Nov 27 15:35:54 2000 @@ -1 +1 @@ -MD5 (gigabase-2.19.tar.gz) = 4dd73c4b3e8d9e624642eb3af658efec +MD5 (gigabase-2.20.tar.gz) = edff69eba3598118671cfac85fc861a5 >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 Nov 28 4:40: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC69E37B400 for ; Tue, 28 Nov 2000 04:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASCe4984705; Tue, 28 Nov 2000 04:40:04 -0800 (PST) (envelope-from gnats) Date: Tue, 28 Nov 2000 04:40:04 -0800 (PST) Message-Id: <200011281240.eASCe4984705@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/23153: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! Reply-To: Peter Pentchev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23153; it has been noted by GNATS. From: Peter Pentchev To: never@nevermind.kiev.ua Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/23153: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! Date: Tue, 28 Nov 2000 14:27:18 +0200 On Tue, Nov 28, 2000 at 02:10:07PM +0200, never@nevermind.kiev.ua wrote: > > >Number: 23153 > >Category: ports > >Synopsis: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! > >Originator: Nevermind > >Release: FreeBSD 4.2-STABLE i386 > >Organization: > Interactive Media Technologies Ltd. UA > >Environment: > > FreeBSD nevermind.kiev.ua 4.2-STABLE FreeBSD 4.2-STABLE #0: Wed Nov 22 18:39:47 EET 2000 never@nevermind.kiev.ua:/usr/src/sys/i386/conf/nevermind i386 > > >Description: > > Old version of icqlib (not libicq) for icqmail-1.2 support. Wouldn't it be more appropriate to name this port icqlib-0.1 or something? Not that I seriously expect there to be a new release on the 0.1.x branch, but maybe someday 1.0.x shall be obsoleted too; what do you call it then - 'newer old icqlib'? ;) G'luck, Peter -- I am not the subject of this sentence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 4:50: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9862437B402 for ; Tue, 28 Nov 2000 04:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASCo5886734; Tue, 28 Nov 2000 04:50:05 -0800 (PST) (envelope-from gnats) Date: Tue, 28 Nov 2000 04:50:05 -0800 (PST) Message-Id: <200011281250.eASCo5886734@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Nevermind Subject: Re: ports/23153: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! Reply-To: Nevermind Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23153; it has been noted by GNATS. From: Nevermind To: Peter Pentchev Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/23153: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! Date: Tue, 28 Nov 2000 14:43:07 +0200 Hello, Peter Pentchev! On Tue, Nov 28, 2000 at 02:27:18PM +0200, you wrote: > On Tue, Nov 28, 2000 at 02:10:07PM +0200, never@nevermind.kiev.ua wrote: > > > > >Number: 23153 > > >Category: ports > > >Synopsis: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! > > >Originator: Nevermind > > >Release: FreeBSD 4.2-STABLE i386 > > >Organization: > > Interactive Media Technologies Ltd. UA > > >Environment: > > > > FreeBSD nevermind.kiev.ua 4.2-STABLE FreeBSD 4.2-STABLE #0: Wed Nov 22 18:39:47 EET 2000 never@nevermind.kiev.ua:/usr/src/sys/i386/conf/nevermind i386 > > > > >Description: > > > > Old version of icqlib (not libicq) for icqmail-1.2 support. > > Wouldn't it be more appropriate to name this port icqlib-0.1 or something? > Not that I seriously expect there to be a new release on the 0.1.x branch, > but maybe someday 1.0.x shall be obsoleted too; what do you call it then - > 'newer old icqlib'? ;) Yeah, sure, you are right, I'll resubmit this. Thanx for your notice. -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 5: 0:13 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6B6B37B402 for ; Tue, 28 Nov 2000 05:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASD01V88946; Tue, 28 Nov 2000 05:00:01 -0800 (PST) (envelope-from gnats) Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 4673137B402 for ; Tue, 28 Nov 2000 04:54:04 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eASCs1f76468; Tue, 28 Nov 2000 14:54:01 +0200 (EET) (envelope-from never) Message-Id: <200011281254.eASCs1f76468@nevermind.kiev.ua> Date: Tue, 28 Nov 2000 14:54:01 +0200 (EET) From: never@nevermind.kiev.ua Reply-To: never@nevermind.kiev.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23156: New port: icqlib-0.1 (formely oldicqlib) needed for icqmail-1.2 support Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23156 >Category: ports >Synopsis: New port: icqlib-0.1 (formely oldicqlib) needed for icqmail-1.2 support >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 Nov 28 05:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Nevermind >Release: FreeBSD 4.2-STABLE i386 >Organization: Interactive Media Technologies Ltd. UA >Environment: FreeBSD nevermind.kiev.ua 4.2-STABLE FreeBSD 4.2-STABLE #0: Wed Nov 22 18:39:47 EET 2000 never@nevermind.kiev.ua:/usr/src/sys/i386/conf/nevermind i386 >Description: Older version of icqlib, required for icqmail-1.2 support. >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: # # devel/icqlib-0.1 # devel/icqlib-0.1/pkg-plist # devel/icqlib-0.1/pkg-descr # devel/icqlib-0.1/pkg-comment # devel/icqlib-0.1/distinfo # devel/icqlib-0.1/Makefile # echo c - devel/icqlib-0.1 mkdir -p devel/icqlib-0.1 > /dev/null 2>&1 echo x - devel/icqlib-0.1/pkg-plist sed 's/^X//' >devel/icqlib-0.1/pkg-plist << 'END-of-devel/icqlib-0.1/pkg-plist' Xinclude/icqlib-0.1/icq.h Xlib/icqlib-0.1/libicq.la Xlib/icqlib-0.1/libicq.a X@dirrm include/icqlib-0.1 X@dirrm lib/icqlib-0.1 END-of-devel/icqlib-0.1/pkg-plist echo x - devel/icqlib-0.1/pkg-descr sed 's/^X//' >devel/icqlib-0.1/pkg-descr << 'END-of-devel/icqlib-0.1/pkg-descr' XOld version of icqlib (not libicq) for icqmail-1.2 support. X XWWW: http://kicq.sourceforge.net/icqlib.shtml XAuthors: X Denis V. Dmitrienko X Nikita I. Makeev X X-- XAlexandr P. Kovalenko END-of-devel/icqlib-0.1/pkg-descr echo x - devel/icqlib-0.1/pkg-comment sed 's/^X//' >devel/icqlib-0.1/pkg-comment << 'END-of-devel/icqlib-0.1/pkg-comment' XOld version of icqlib (not libicq) for support icqmail-1.2 END-of-devel/icqlib-0.1/pkg-comment echo x - devel/icqlib-0.1/distinfo sed 's/^X//' >devel/icqlib-0.1/distinfo << 'END-of-devel/icqlib-0.1/distinfo' XMD5 (icqlib-0.1.3.tar.gz) = 6feeee66ed0a8c1e0910acb5cad439d7 END-of-devel/icqlib-0.1/distinfo echo x - devel/icqlib-0.1/Makefile sed 's/^X//' >devel/icqlib-0.1/Makefile << 'END-of-devel/icqlib-0.1/Makefile' X# New ports collection makefile for: oldicqlib X# Date created: 28 November 2000 X# Whom: never@nevermind.kiev.ua X# X# $FreeBSD$ X# X XPORTNAME= icqlib XPORTVERSION= 0.1.3 XCATEGORIES= devel XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XDISTNAME= icqlib-0.1.3 XMASTER_SITE_SUBDIR= icqlib X XMAINTAINER= never@nevermind.kiev.ua X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --prefix=${PREFIX} --libdir=${PREFIX}/lib/icqlib-0.1 \ X --includedir=${PREFIX}/include/icqlib-0.1 X X.include END-of-devel/icqlib-0.1/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 Tue Nov 28 5:15:45 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA3B037B400; Tue, 28 Nov 2000 05:15:43 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASDFh993745; Tue, 28 Nov 2000 05:15:43 -0800 (PST) (envelope-from roam) Date: Tue, 28 Nov 2000 05:15:43 -0800 (PST) From: Message-Id: <200011281315.eASDFh993745@freefall.freebsd.org> To: never@nevermind.kiev.ua, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23153: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: oldicqlib -- icqlib-0.1.3 -- required for mail/icqmail port to work! State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Tue Nov 28 05:13:57 PST 2000 State-Changed-Why: Superseded by ports/23156. http://www.freebsd.org/cgi/query-pr.cgi?pr=23153 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 5:20: 6 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C0B937B401 for ; Tue, 28 Nov 2000 05:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASDK1J94682; Tue, 28 Nov 2000 05:20:01 -0800 (PST) (envelope-from gnats) Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 1461A37B401 for ; Tue, 28 Nov 2000 05:18:42 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eASDIc576837; Tue, 28 Nov 2000 15:18:38 +0200 (EET) (envelope-from never) Message-Id: <200011281318.eASDIc576837@nevermind.kiev.ua> Date: Tue, 28 Nov 2000 15:18:38 +0200 (EET) From: never@nevermind.kiev.ua Reply-To: never@nevermind.kiev.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23157: Fix of icqmail port (assuming oldicqlib now is named icqlib-0.1) [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23157 >Category: ports >Synopsis: Fix of icqmail port [MAINTAINER] >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 Nov 28 05:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Nevermind >Release: FreeBSD 4.2-STABLE i386 >Organization: Interactive Media Technologies Ltd. UA >Environment: FreeBSD nevermind.kiev.ua 4.2-STABLE FreeBSD 4.2-STABLE #0: Wed Nov 22 18:39:47 EET 2000 never@nevermind.kiev.ua:/usr/src/sys/i386/conf/nevermind i386 >Description: Fix for icqmail port, requires icqlib-0.1 port. >How-To-Repeat: >Fix: diff -ruN /usr/ports/mail/icqmail/Makefile ./Makefile --- /usr/ports/mail/icqmail/Makefile Mon Nov 27 11:12:17 2000 +++ ./Makefile Tue Nov 28 14:46:51 2000 @@ -13,13 +13,19 @@ MAINTAINER= never@nevermind.kiev.ua -LIB_DEPENDS= icq.1:${PORTSDIR}/net/icqlib \ - mimelib.3:${PORTSDIR}/converters/kdesupport2 \ - guile.9:${PORTSDIR}/lang/guile +LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile + +BUILD_DEPENDS= ${LOCALBASE}/lib/icqlib-0.1/libicq.la:${PORTSDIR}/devel/icqlib-0.1 \ + ${LOCALBASE}/lib/icqlib-0.1/libicq.a:${PORTSDIR}/devel/icqlib-0.1 \ + ${LOCALBASE}/include/icqlib-0.1/icq.h:${PORTSDIR}/devel/icqlib-0.1 + +RUN_DEPENDS= ${LOCALBASE}/lib/icqlib-0.1/libicq.la:${PORTSDIR}/devel/icqlib-0.1 \ + ${LOCALBASE}/lib/icqlib-0.1/libicq.a:${PORTSDIR}/devel/icqlib-0.1 + USE_NEWGCC= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ +CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include/icqlib-0.1 -L${LOCALBASE}/lib/icqlib-0.1 -I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib -lguile -lqthreads" MAN1= icqmail.1 diff -ruN /usr/ports/mail/icqmail/pkg-descr ./pkg-descr --- /usr/ports/mail/icqmail/pkg-descr Tue Sep 5 04:43:18 2000 +++ ./pkg-descr Tue Nov 28 13:39:52 2000 @@ -1,8 +1,9 @@ ICQMail is a simple ICQ client which forwards all messages to given email address. -WWW: http://sourceforge.net/projects/icqmail/ +WWW: http://sourceforge.net/projects/icqmail/ +Author: Vadim Zaliva -- -Michael Vasilenko -acid@cn.ua +Alexandr Kovalenko +never@nevermind.kiev.ua >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 Nov 28 5:46:59 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E239337B402; Tue, 28 Nov 2000 05:46:56 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASDkss01149; Tue, 28 Nov 2000 05:46:54 -0800 (PST) (envelope-from roam) Date: Tue, 28 Nov 2000 05:46:54 -0800 (PST) From: Message-Id: <200011281346.eASDkss01149@freefall.freebsd.org> To: never@nevermind.kiev.ua, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23154: mail/icqmail: fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mail/icqmail: fix State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Tue Nov 28 05:45:26 PST 2000 State-Changed-Why: Superseded by ports/23157. http://www.freebsd.org/cgi/query-pr.cgi?pr=23154 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 6:47: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id CC9FF37B400; Tue, 28 Nov 2000 06:46:45 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eASEkWZ10300; Tue, 28 Nov 2000 16:46:40 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eASEkTJ06311; Tue, 28 Nov 2000 16:46:29 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A23C53C.67C84A71@FreeBSD.org> Date: Tue, 28 Nov 2000 16:46:20 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: ports@FreeBSD.org, asami@FreeBSD.org Subject: GNU Texinfo pages handling patch, revised Content-Type: multipart/mixed; boundary="------------239CF5AD19B6422BF091997A" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------239CF5AD19B6422BF091997A Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Hi -ports & PW, Some time ago I submitted a patch for bsd.port.mk to automate handling of info pages and was told that it should be extended to allow specify number of pieces page being split onto (i.e. bar.info, bar.info-1, bar.info-2 etc.). I extended my patch to handle this and attaching it with this message. Also I'm attaching diffs for two ports, which should have you an idea how it's supposed to work. -Maxim --------------239CF5AD19B6422BF091997A Content-Type: text/plain; charset=koi8-r; name="sawfish.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sawfish.diff" diff -druN /usr/ports/x11-wm/sawfish/Makefile sawfish/Makefile --- /usr/ports/x11-wm/sawfish/Makefile Wed Nov 15 10:50:10 2000 +++ sawfish/Makefile Tue Nov 28 16:20:07 2000 @@ -31,6 +31,8 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LIBS="-L${LOCALBASE}/lib" +INFOPAGES= sawfish%6%"X11 window manager"%"* sawfish: (sawfish). sawfish programming manual" + .include .if defined(HAVE_GNOME) @@ -56,10 +58,5 @@ @find ${WRKSRC} \( -name "*.jl" -or -name "*.jl.in" \) | \ xargs ${GREP} -l "../locale" | \ xargs ${PERL} -pi -e "s|\.\./locale|../../../locale|g" - -post-install: - install-info --section="X11 window manager" \ - --entry="* sawfish: (sawfish). sawfish programming manual" \ - ${PREFIX}/info/sawfish.info ${PREFIX}/info/dir .include diff -druN /usr/ports/x11-wm/sawfish/pkg-plist sawfish/pkg-plist --- /usr/ports/x11-wm/sawfish/pkg-plist Thu Nov 9 17:54:17 2000 +++ sawfish/pkg-plist Tue Nov 28 16:20:21 2000 @@ -3,14 +3,6 @@ bin/sawfish-client %%GNOME:%%bin/sawfish-themer bin/sawfish-ui -@unexec install-info --delete %D/info/sawfish.info %D/info/dir -info/sawfish.info -info/sawfish.info-1 -info/sawfish.info-2 -info/sawfish.info-3 -info/sawfish.info-4 -info/sawfish.info-5 -@exec install-info --section="X11 window manager" --entry="* sawfish: (sawfish). sawfish programming manual" %D/info/sawfish.info %D/info/dir libexec/rep/%%GNUHOST%%/sawfish/client.so libexec/rep/%%GNUHOST%%/sawfish/client.la libexec/sawfish/%%VERSION%%/%%GNUHOST%%/DOC --------------239CF5AD19B6422BF091997A Content-Type: text/plain; charset=koi8-r; name="wget.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="wget.diff" diff -druN /usr/ports/ftp/wget/Makefile wget/Makefile --- /usr/ports/ftp/wget/Makefile Mon Jul 3 09:44:24 2000 +++ wget/Makefile Tue Nov 28 16:14:53 2000 @@ -24,10 +24,9 @@ CONFIGURE_ENV+= CPPFLAGS=-I${PREFIX}/include \ LDFLAGS=-L${PREFIX}/lib +INFOPAGES= wget + pre-build: ${RM} -rf ${WRKSRC}/doc/wget.info* - -post-install: - install-info ${PREFIX}/info/wget.info ${PREFIX}/info/dir .include diff -druN /usr/ports/ftp/wget/pkg-plist wget/pkg-plist --- /usr/ports/ftp/wget/pkg-plist Wed Nov 22 11:22:11 2000 +++ wget/pkg-plist Tue Nov 28 16:14:37 2000 @@ -1,9 +1,6 @@ @comment $FreeBSD: ports/ftp/wget/pkg-plist,v 1.8 2000/11/22 02:22:48 obrien Exp $ bin/wget etc/wgetrc -@unexec install-info --delete %D/info/wget.info %D/info/dir -info/wget.info -@exec install-info %D/info/wget.info %D/info/dir share/locale/cs/LC_MESSAGES/wget.mo share/locale/de/LC_MESSAGES/wget.mo share/locale/hr/LC_MESSAGES/wget.mo --------------239CF5AD19B6422BF091997A Content-Type: text/plain; charset=koi8-r; name="bsd.port.mk-infopages.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsd.port.mk-infopages.diff" --- bsd.port.mk 2000/11/28 14:12:44 1.1 +++ bsd.port.mk 2000/11/28 14:27:40 @@ -286,6 +286,21 @@ # NOMANCOMPRESS. The default is "yes" if USE_IMAKE # is set and NO_INSTALL_MANPAGES is not set, and # "no" otherwise. +# INFOPAGES - A list of GNU Texinfo pages installed by the port. +# The format for entries is the following: +# name[%[numpages][%[section][%entry]]]. For example if +# your port has "info/foo.info" and "info/bar.info", set +# "INFOPAGES=foo bar". Optional numpages, section and +# entry fields provided for the cases when info page is +# split across several files and/or doesn't contain +# information required for install-info(1) to correctly +# register the page into catalog of info pages. In this +# case use something like the following: +# ``INFOPAGES=foo%3%"Bar utils"%"* Foo: (foo). Foo app"'' +# which means that foo page is split into 3 files: +# foo.info, foo.info-1 and foo.info-2, and should be +# registered as "* Foo: (foo). Foo app" in the +# "Bar utils" section of GNU Texinfo catalog. # # Default targets and their behaviors: # @@ -925,6 +940,7 @@ AUTOCONF?= autoconf LIBTOOL?= libtool XMKMF?= xmkmf -a +INSTALL-INFO?= /usr/bin/install-info .if exists(/sbin/md5) MD5?= /sbin/md5 .elif exists(/bin/md5) @@ -1345,6 +1361,11 @@ .endif .endif +INFOPREFIX?= ${PREFIX} +INFOSUBDIR?= info +INFOCATALOG?= ${PREFIX}/${INFOSUBDIR}/dir +INFO_SUFX?= .info + # Put this for down as possible so it will catch all PLIST_SUB definitions. .if defined(INSTALLS_SHLIB) @@ -1988,6 +2009,27 @@ .if make(real-install) && (defined(_MANPAGES) || defined(_MLINKS)) @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} compress-man .endif +.if make(real-install) && defined(INFOPAGES) + @${ECHO_MSG} "===> Registering infopages" + @for i in ${INFOPAGES}; do \ + INFOPAGE=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$1 }'`; \ + INFOSECTION=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$3 }'`; \ + INFOENTRY=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$4 }'`;\ + _INFOPAGE=""; \ + _INFOSECTION="--quiet"; \ + _INFOENTRY="--quiet"; \ + if [ x"$${INFOPAGE}" != x"" ]; then \ + _INFOPAGE=${INFOPREFIX}/${INFOSUBDIR}/$${INFOPAGE}${INFO_SUFX}; \ + if [ x"$${INFOSECTION}" != x"" ]; then \ + _INFOSECTION="--section=$${INFOSECTION}"; \ + fi; \ + if [ x"$${INFOENTRY}" != x"" ]; then \ + _INFOENTRY="--entry=$${INFOENTRY}"; \ + fi; \ + ${INSTALL-INFO} "$${_INFOSECTION}" "$${_INFOENTRY}" $${_INFOPAGE} ${INFOCATALOG}; \ + fi; \ + done +.endif .if make(real-install) && defined(INSTALLS_SHLIB) @${ECHO_MSG} "===> Running ldconfig" ${LDCONFIG} -m ${LDCONFIG_RUNLIST} @@ -2841,6 +2883,37 @@ @for man in ${__MANPAGES}; do \ ${ECHO} $${man} >> ${TMPPLIST}; \ done +.if defined(INFOPAGES) + @for i in ${INFOPAGES}; do \ + INFOPAGE=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$1 }'`; \ + INFONUMBER=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$2 }'`; \ + INFOSECTION=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$3 }'`; \ + INFOENTRY=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$4 }'`;\ + _INFOPAGE=""; \ + _INFOSECTION=""; \ + _INFOENTRY=""; \ + if [ x"$${INFOPAGE}" != x"" ]; then \ + _INFOPAGE=${INFOSUBDIR}/$${INFOPAGE}${INFO_SUFX}; \ + _INFONUMBER=$${INFONUMBER:-1}; \ + if [ x"$${INFOSECTION}" != x"" ]; then \ + _INFOSECTION="--section=\"$${INFOSECTION}\""; \ + fi; \ + if [ x"$${INFOENTRY}" != x"" ]; then \ + _INFOENTRY="--entry=\"$${INFOENTRY}\""; \ + fi; \ + (if [ $${_INFONUMBER} -gt 0 ]; then \ + j=0; \ + while [ $${j} -lt $${_INFONUMBER} ]; do \ + _SUFFX="-$${j}"; \ + ${ECHO} "$${_INFOPAGE}$${_SUFFX%-0}"; \ + j=$$(($${j} + 1)); \ + done; \ + fi; \ + ${ECHO} "@exec ${INSTALL-INFO} $${_INFOSECTION} $${_INFOENTRY} %D/$${_INFOPAGE} ${INFOCATALOG}"; \ + ${ECHO} "@unexec ${INSTALL-INFO} --delete %D/$${_INFOPAGE} ${INFOCATALOG}") >> ${TMPPLIST}; \ + fi; \ + done +.endif .for _PREFIX in ${PREFIX} .if ${_TMLINKS:M${_PREFIX}*}x != x @for i in ${_TMLINKS:M${_PREFIX}*:S,^${_PREFIX}/,,}; do \ --------------239CF5AD19B6422BF091997A-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 6:53:42 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99A4E37B400; Tue, 28 Nov 2000 06:53:41 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASErfA19254; Tue, 28 Nov 2000 06:53:41 -0800 (PST) (envelope-from kevlo) Date: Tue, 28 Nov 2000 06:53:41 -0800 (PST) From: Message-Id: <200011281453.eASErfA19254@freefall.freebsd.org> To: olgeni@uli.it, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23152: ftp/lftp: 2 missing files in pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ftp/lftp: 2 missing files in pkg-plist State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 28 06:53:26 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23152 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7: 3:41 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB39737B400; Tue, 28 Nov 2000 07:03:39 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASF3du21712; Tue, 28 Nov 2000 07:03:39 -0800 (PST) (envelope-from lioux) Date: Tue, 28 Nov 2000 07:03:39 -0800 (PST) From: Message-Id: <200011281503.eASF3du21712@freefall.freebsd.org> To: lioux@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/23156: New port: icqlib-0.1 (formely oldicqlib) needed for icqmail-1.2 support Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: icqlib-0.1 (formely oldicqlib) needed for icqmail-1.2 support Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: lioux Responsible-Changed-When: Tue Nov 28 07:02:27 PST 2000 Responsible-Changed-Why: I handle this since I already maintain icqlib http://www.freebsd.org/cgi/query-pr.cgi?pr=23156 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7: 4:41 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA06437B401; Tue, 28 Nov 2000 07:04:39 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASF4d422016; Tue, 28 Nov 2000 07:04:39 -0800 (PST) (envelope-from kevlo) Date: Tue, 28 Nov 2000 07:04:39 -0800 (PST) From: Message-Id: <200011281504.eASF4d422016@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23134: Update port: graphics/zimg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/zimg State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 28 07:04:10 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23134 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7: 4:43 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3113737B6AE; Tue, 28 Nov 2000 07:04:42 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASF4gj22039; Tue, 28 Nov 2000 07:04:42 -0800 (PST) (envelope-from lioux) Date: Tue, 28 Nov 2000 07:04:42 -0800 (PST) From: Message-Id: <200011281504.eASF4gj22039@freefall.freebsd.org> To: lioux@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/23157: Fix of icqmail port [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix of icqmail port [MAINTAINER] Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: lioux Responsible-Changed-When: Tue Nov 28 07:03:57 PST 2000 Responsible-Changed-Why: This one depends on PR ports/23156. I'll handle both simultaneously. http://www.freebsd.org/cgi/query-pr.cgi?pr=23157 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7: 6:54 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7015337B400; Tue, 28 Nov 2000 07:06:52 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASF6m924191; Tue, 28 Nov 2000 07:06:48 -0800 (PST) (envelope-from lioux) Date: Tue, 28 Nov 2000 07:06:48 -0800 (PST) From: Message-Id: <200011281506.eASF6m924191@freefall.freebsd.org> To: jason-freebsd@mastaler.com, lioux@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22950: NEW PORT: mad - High-quality MPEG audio decoder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT: mad - High-quality MPEG audio decoder State-Changed-From-To: open->feedback State-Changed-By: lioux State-Changed-When: Tue Nov 28 07:05:51 PST 2000 State-Changed-Why: Only waiting for user input on followup to proceed with commit. http://www.freebsd.org/cgi/query-pr.cgi?pr=22950 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7: 7:56 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 345B337B400; Tue, 28 Nov 2000 07:07:55 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASF7tO24596; Tue, 28 Nov 2000 07:07:55 -0800 (PST) (envelope-from kevlo) Date: Tue, 28 Nov 2000 07:07:55 -0800 (PST) From: Message-Id: <200011281507.eASF7tO24596@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23133: Update port: databases/unixODBC to 1.8.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: databases/unixODBC to 1.8.13 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 28 07:07:33 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23133 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7:19: 0 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61C2637B401; Tue, 28 Nov 2000 07:18:59 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASFIwk27113; Tue, 28 Nov 2000 07:18:58 -0800 (PST) (envelope-from kevlo) Date: Tue, 28 Nov 2000 07:18:58 -0800 (PST) From: Message-Id: <200011281518.eASFIwk27113@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23135: Update port: math/freefem to 3.5.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: math/freefem to 3.5.1 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 28 07:18:44 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23135 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7:31:39 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DDAF837B400; Tue, 28 Nov 2000 07:31:37 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASFVbE39549; Tue, 28 Nov 2000 07:31:37 -0800 (PST) (envelope-from kevlo) Date: Tue, 28 Nov 2000 07:31:37 -0800 (PST) From: Message-Id: <200011281531.eASFVbE39549@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23136: Update port: net/rwhois to 1.5.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/rwhois to 1.5.7 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 28 07:31:21 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23136 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7:34:46 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D360537B400; Tue, 28 Nov 2000 07:34:44 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASFYi950778; Tue, 28 Nov 2000 07:34:44 -0800 (PST) (envelope-from kevlo) Date: Tue, 28 Nov 2000 07:34:44 -0800 (PST) From: Message-Id: <200011281534.eASFYi950778@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23137: Update port: sysutiles/wmbattery to 1.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutiles/wmbattery to 1.13 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 28 07:34:25 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7:38:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id A946137B402 for ; Tue, 28 Nov 2000 07:38:26 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eASFbJZ11598; Tue, 28 Nov 2000 17:37:34 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eASFbHJ06457; Tue, 28 Nov 2000 17:37:17 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A23D123.AFB3FCD3@FreeBSD.org> Date: Tue, 28 Nov 2000 17:37:07 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Nectioch Cc: freebsd-ports@FreeBSD.org Subject: Re: xmms port make problem References: <00112723523400.01576@quagea.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nectioch wrote: > Make for the xmms port fails with a bad checksum error for file > xmms-1.2.3.tar.gz. > > I've tried removing the file from /usr/ports/distfiles and redownloading it > several times using both the Makefile script and regular FTP access. Still > get a bad checksum error. > > I tried deleting /usr/ports/audio/xmms directory and re-CVS it and still get > a bad checksum error. > > I tried opening the archive manually in all occations and got an unexpected > end of file. It's is apparent that the file is bad. I verified it was > tranferred correctly from the site. > > Anyone else have this problem? Is it that the file is bad or is it just > something I have yet overlooked? sobomax@freefall$ date Tue Nov 28 07:36:23 PST 2000 sobomax@freefall$ fetch ftp://ftp.xmms.org/xmms/1.2.x/xmms-1.2.3.tar.gz Receiving xmms-1.2.3.tar.gz (1785203 bytes): 100% 1785203 bytes transferred in 8.4 seconds (207.44 kBps) sobomax@freefall$ md5 xmms-1.2.3.tar.gz MD5 (xmms-1.2.3.tar.gz) = 5880503c9f51cd4cc14566eb1d8f54ff sobomax@freefall$ cat /usr/ports/audio/xmms/distinfo MD5 (xmms-1.2.3.tar.gz) = 5880503c9f51cd4cc14566eb1d8f54ff MD5 (xmms-1.2.3-3dnow.patch.gz) = 6dfabc4c460adb5062af86ca44303cd4 I do not see any problems. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7:40:12 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E9F6C37B404 for ; Tue, 28 Nov 2000 07:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASFe1R71988; Tue, 28 Nov 2000 07:40:01 -0800 (PST) (envelope-from gnats) Received: from rucus.ru.ac.za (rucus.ru.ac.za [146.231.29.2]) by hub.freebsd.org (Postfix) with SMTP id 523F537B401 for ; Tue, 28 Nov 2000 07:38:25 -0800 (PST) Received: (qmail 64285 invoked by uid 479); 27 Nov 2000 21:52:53 -0000 Message-Id: <20001127215253.64284.qmail@rucus.ru.ac.za> Date: 27 Nov 2000 21:52:53 -0000 From: Guy Antony Halse Reply-To: guy@rucus.ru.ac.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23159: Update port: mail/ezmlm version 2.0 -> 2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23159 >Category: ports >Synopsis: Update port: mail/ezmlm-web version 2.0 -> 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: Tue Nov 28 07:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Guy Antony Halse >Release: FreeBSD 4.2-STABLE i386 >Organization: Rhodes University Computer Users Society >Environment: >Description: Port update for mail/ezmlm-web to change from version 2.0 -> 2.1 >How-To-Repeat: >Fix: diff -ruN ezmlm-web.orig/Makefile ezmlm-web/Makefile --- ezmlm-web.orig/Makefile Mon Nov 27 22:36:27 2000 +++ ezmlm-web/Makefile Mon Nov 27 23:22:11 2000 @@ -6,38 +6,42 @@ # PORTNAME= ezmlm-web -PORTVERSION= 2.0 +PORTVERSION= 2.1 CATEGORIES= mail www MASTER_SITES= ftp://rucus.ru.ac.za/pub/mail/ezmlm/ MAINTAINER= guy-ezmlm@rucus.ru.ac.za -BUILD_DEPENDS= ${EZMLM_DIR}/bin/ezmlm-idx:${PORTSDIR}/mail/ezmlm-idx \ +BUILD_DEPENDS= ${LOCALBASE}/${EZMLM_DIR}/bin/ezmlm-idx:${PORTSDIR}/mail/ezmlm-idx \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Mail/Ezmlm.pm:${PORTSDIR}/mail/p5-Mail-Ezmlm -RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13 \ +RUN_DEPENDS= ${LOCALBASE}/sbin/apachectl:${PORTSDIR}/www/apache13 \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Mail/Address.pm:${PORTSDIR}/mail/p5-Mail-Tools -CGI_BIN?= /share/apache/cgi-bin/ -EZMLM_DIR?= / +# Change these to suit your setup. You can do this via the environment +# CGI_BIN is the location relative to ${PREFIX} of your webservers' cgi-bin +# EZMLM_DIR is the base relative to ${PREFIX} in which ezmlm was installed +# +CGI_BIN?= www/cgi-bin.default +EZMLM_DIR?= USE_PERL5= YES -PLIST_SUB= CGI_BIN=${CGI_BIN:S/\///} EZMLM_DIR=${EZMLM_DIR:S/\///} +PLIST_SUB= CGI_BIN=${CGI_BIN:S/$/\//:S/^\///} EZMLM_DIR=${EZMLM_DIR:S/$/\//:S/^\///} do-build: @cd ${WRKSRC}; ${MAKE} index; ${MV} index ezmlm-web do-install: - ${MKDIR} ${LOCALBASE}${CGI_BIN} ${LOCALBASE}${EZMLM_DIR} - ${INSTALL_SCRIPT} ${WRKSRC}/ezmlm-web.cgi ${LOCALBASE}${EZMLM_DIR}/bin - ${INSTALL_DATA} ${WRKSRC}/ezmlmwebrc ${LOCALBASE}${EZMLM_DIR}/etc/ezmlm - ${INSTALL_PROGRAM} -o alias -g qmail -m 4755 ${WRKSRC}/ezmlm-web ${LOCALBASE}${CGI_BIN} + ${MKDIR} ${PREFIX}/${CGI_BIN} ${PREFIX}/${EZMLM_DIR} + ${INSTALL_SCRIPT} ${WRKSRC}/ezmlm-web.cgi ${PREFIX}/${EZMLM_DIR}/bin + ${INSTALL_DATA} ${WRKSRC}/ezmlmwebrc ${PREFIX}/${EZMLM_DIR}/etc/ezmlm/ezmlmwebrc.sample + ${INSTALL_PROGRAM} -o alias -g qmail -m 4755 ${WRKSRC}/ezmlm-web ${PREFIX}/${CGI_BIN} ${MKDIR} ${PREFIX}/share/ezmlm-web .for file in CHANGES README index.c htaccess.sample webusers.sample ${INSTALL_MAN} ${WRKSRC}/${file} ${PREFIX}/share/ezmlm-web .endfor post-install: - @${SED} s!%%PREFIX%%!${PREFIX}!g ${PKGMESSAGE} + @${SED} 's!%%PREFIX%%!${PREFIX}!g; s!%%EZMLM_DIR%%!${PREFIX}${EZMLM_DIR:S/^\///}!g' ${PKGMESSAGE} @${ECHO} .include diff -ruN ezmlm-web.orig/distinfo ezmlm-web/distinfo --- ezmlm-web.orig/distinfo Mon Nov 27 22:36:27 2000 +++ ezmlm-web/distinfo Mon Nov 27 21:42:49 2000 @@ -1 +1 @@ -MD5 (ezmlm-web-2.0.tar.gz) = 749a164c260f80857574f4dc1c0bb226 +MD5 (ezmlm-web-2.1.tar.gz) = 41d701bc509c1a7fbec42f954e3e4171 diff -ruN ezmlm-web.orig/files/patch-aa ezmlm-web/files/patch-aa --- ezmlm-web.orig/files/patch-aa Mon Nov 27 23:36:27 2000 +++ ezmlm-web/files/patch-aa Thu Jan 1 02:00:00 1970 @@ -1,35 +0,0 @@ ---- ezmlm-web.cgi.orig Sat Jan 29 13:36:02 2000 -+++ ezmlm-web.cgi Thu May 18 13:43:27 2000 -@@ -1,4 +1,10 @@ - #!/usr/bin/perl -wT -+ -+# -+# MODIFIED FOR FREEBSD PORTS -+# Guy Antony Halse -+# -+ - #=========================================================================== - # ezmlm-web.cgi - version 2.0 - 29/01/2000 - # $Id: ezmlm-web.cgi,v 1.1 2000/01/29 11:35:40 guy Exp $ -@@ -76,8 +82,8 @@ - require "$opt_C"; # Command Line - } elsif(-e "$HOME_DIR/.ezmlmwebrc") { - require "$HOME_DIR/.ezmlmwebrc"; # User --} elsif(-e "/etc/ezmlm/ezmlmwebrc") { -- require "/etc/ezmlm/ezmlmwebrc"; # System -+} elsif(-e "/usr/local/etc/ezmlm/ezmlmwebrc") { -+ require "/usr/local/etc/ezmlm/ezmlmwebrc"; # System - } elsif(-e "./ezmlmwebrc") { - require "./ezmlmwebrc"; # Install - } else { -@@ -604,8 +610,8 @@ - my ($qmail, $listname, $options, $i); - - # Some taint checking ... -- $qmail = $1 if $q->param('inlocal') =~ /-?([\w.+:]+)$/; -- $listname = $q->param('list'); $listname =~ s/ /_/; # In case some git tries to put a space in the file name -+ $qmail = $1 if $q->param('inlocal') =~ /(?:$USER-)?([^\<\>\\\/\s]+)$/; -+ $listname = $q->param('list'); $listname =~ s/ /_/g; # In case some git tries to put a space in the file name - - # Sanity Checks ... - return 1 if ($listname eq '' || $qmail eq ''); diff -ruN ezmlm-web.orig/pkg-message ezmlm-web/pkg-message --- ezmlm-web.orig/pkg-message Mon Nov 27 22:36:27 2000 +++ ezmlm-web/pkg-message Mon Nov 27 22:28:41 2000 @@ -11,3 +11,9 @@ Have a look at the README file in %%PREFIX%%/share/ezmlm-web for more information. There are also some sample files there. + +In order to make ezmlm-web work properly, you will have to create +a configuration file for it in %%EZMLM_DIR%%/etc/ezmlm. +A sample ezmlmwebrc (ezmlmwebrc.sample) file is provided in that +directory. This sample will work `as is', but allows you to customise +ezmlm-web to your liking. At a minimum just cp ezmlmwebrc.sample ezmlmwebrc diff -ruN ezmlm-web.orig/pkg-plist ezmlm-web/pkg-plist --- ezmlm-web.orig/pkg-plist Mon Nov 27 22:36:27 2000 +++ ezmlm-web/pkg-plist Mon Nov 27 23:13:25 2000 @@ -4,6 +4,6 @@ share/ezmlm-web/htaccess.sample share/ezmlm-web/webusers.sample @dirrm share/ezmlm-web -%%EZMLM_DIR%%/bin/ezmlm-web.cgi -%%EZMLM_DIR%%/etc/ezmlm/ezmlmwebrc -%%CGI_BIN%%/ezmlm-web +%%EZMLM_DIR%%bin/ezmlm-web.cgi +%%EZMLM_DIR%%etc/ezmlm/ezmlmwebrc.sample +%%CGI_BIN%%ezmlm-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 Tue Nov 28 7:44:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id 1B94C37B400 for ; Tue, 28 Nov 2000 07:44:10 -0800 (PST) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Tue, 28 Nov 2000 16:43:47 +0100 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.11.0/8.11.1) id eASFhj017338; Tue, 28 Nov 2000 16:43:45 +0100 (CET) (envelope-from esk) From: Espen Skoglund MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14883.53867.6692.376329@i30nb2.ira.uka.de> Date: Tue, 28 Nov 2000 16:42:35 +0100 (CET) To: Nectioch Cc: freebsd-ports@FreeBSD.ORG Subject: Re: xmms port make problem In-Reply-To: <00112723523400.01576@quagea.org> References: <00112723523400.01576@quagea.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Nectioch ] > Make for the xmms port fails with a bad checksum error for file > xmms-1.2.3.tar.gz. > I've tried removing the file from /usr/ports/distfiles and > redownloading it several times using both the Makefile script and > regular FTP access. Still get a bad checksum error. > I tried deleting /usr/ports/audio/xmms directory and re-CVS it and > still get a bad checksum error. > I tried opening the archive manually in all occations and got an > unexpected end of file. It's is apparent that the file is bad. I > verified it was tranferred correctly from the site. > Anyone else have this problem? Is it that the file is bad or is it > just something I have yet overlooked? Doesn't seem to be anything wrong with the distribution file (just checked on a ftp.freebsd.org and ftp2.de.freebsd.org). If there is any problems, there must wither be something wrong with your file transfer, or you have used a messed up mirror site. Anyway, I'm currently verifying the port build process for 1.2.4, so you might want to try that one instead (as soon as I get it submitted). eSk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7:44:52 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3F1837B400; Tue, 28 Nov 2000 07:44:50 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASFioh96137; Tue, 28 Nov 2000 07:44:50 -0800 (PST) (envelope-from kevlo) Date: Tue, 28 Nov 2000 07:44:50 -0800 (PST) From: Message-Id: <200011281544.eASFioh96137@freefall.freebsd.org> To: osa@FreeBSD.org.ru, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23155: upgrade databases/gigabase from 2.19 to 2.20 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: upgrade databases/gigabase from 2.19 to 2.20 (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 28 07:44:35 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23155 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 7:55: 2 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BFFB37B401; Tue, 28 Nov 2000 07:54:59 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASFswm04177; Tue, 28 Nov 2000 07:54:58 -0800 (PST) (envelope-from kevlo) Date: Tue, 28 Nov 2000 07:54:58 -0800 (PST) From: Message-Id: <200011281554.eASFswm04177@freefall.freebsd.org> To: guy@rucus.ru.ac.za, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23159: Update port: mail/ezmlm-web version 2.0 -> 2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: mail/ezmlm-web version 2.0 -> 2.1 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 28 07:54:37 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23159 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 8:19:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cae88-102-101.sc.rr.com (cae88-102-101.sc.rr.com [24.88.102.101]) by hub.freebsd.org (Postfix) with ESMTP id 5402137B401 for ; Tue, 28 Nov 2000 08:19:23 -0800 (PST) Received: (from myself@localhost) by cae88-102-101.sc.rr.com (8.11.1/8.9.3) id eASGJcL01294 for ports@freebsd.org; Tue, 28 Nov 2000 11:19:38 -0500 (EST) (envelope-from myself) Date: Tue, 28 Nov 2000 11:19:38 -0500 From: "Donald J . Maddox" To: ports@freebsd.org Subject: Checksum mismatch problems with fetchmail-5.6.0 Message-ID: <20001128111938.A1269@cae88-102-101.sc.rr.com> Reply-To: dmaddox@sc.rr.com Mail-Followup-To: "Donald J . Maddox" , ports@freebsd.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 X-Loop: FreeBSD.org The fetchmail port was recently updated to 5.6.0; however, the checksum doesn't match the distfile at http://www.tuxedo.org/~esr/fetchmail/. I tried to get the distfile manually from ftp.freebsd.og, but there is no distfile for this port to be found there... >ROOT-fetchmail> make >> fetchmail-5.6.0.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from http://www.tuxedo.org/~esr/fetchmail/. Receiving fetchmail-5.6.0.tar.gz (768620 bytes): 100% 768620 bytes transferred in 34.0 seconds (22.05 kBps) ===> Extracting for fetchmail-5.6.0 >> Checksum mismatch for fetchmail-5.6.0.tar.gz. Make sure the Makefile and distinfo file (/usr/ports/mail/fetchmail/distinfo) are up to date. If you are absolutely sure you want to override this check, type "make NO_CHECKSUM=yes [other args]". *** Error code 1 Stop in /usr/ports/mail/fetchmail. *** Error code 1 Stop in /usr/ports/mail/fetchmail. *** Error code 1 Stop in /usr/ports/mail/fetchmail. *** Error code 1 Stop in /usr/ports/mail/fetchmail. *** Error code 1 Stop in /usr/ports/mail/fetchmail. *** Error code 1 Stop in /usr/ports/mail/fetchmail. >ROOT-fetchmail> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 8:23:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (pool52-tch-1.Sofia.0rbitel.net [212.95.170.52]) by hub.freebsd.org (Postfix) with SMTP id 7843C37B402 for ; Tue, 28 Nov 2000 08:23:11 -0800 (PST) Received: (qmail 44628 invoked by uid 1000); 28 Nov 2000 16:22:39 -0000 Date: Tue, 28 Nov 2000 18:22:39 +0200 From: Peter Pentchev To: "Donald J . Maddox" Cc: ports@freebsd.org Subject: Re: Checksum mismatch problems with fetchmail-5.6.0 Message-ID: <20001128182238.D11982@ringworld.oblivion.bg> Mail-Followup-To: "Donald J . Maddox" , ports@freebsd.org References: <20001128111938.A1269@cae88-102-101.sc.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001128111938.A1269@cae88-102-101.sc.rr.com>; from dmaddox@sc.rr.com on Tue, Nov 28, 2000 at 11:19:38AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 28, 2000 at 11:19:38AM -0500, Donald J . Maddox wrote: > The fetchmail port was recently updated to 5.6.0; however, the checksum > doesn't match the distfile at http://www.tuxedo.org/~esr/fetchmail/. I > tried to get the distfile manually from ftp.freebsd.og, but there is no > distfile for this port to be found there... I updated the port; I'll check this right away. Thanks for the alert! G'luck, Peter -- This sentence every third, but it still comprehensible. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 8:37:38 2000 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 A4ED737B400 for ; Tue, 28 Nov 2000 08:37:31 -0800 (PST) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id A4FCC1340A; Tue, 28 Nov 2000 17:34:52 +0100 (CET) Date: Tue, 28 Nov 2000 17:34:52 +0100 From: Stijn Hoop To: Garrett Wollman Cc: ports@freebsd.org Subject: Re: Upgrade hack idea Message-ID: <20001128173452.A94211@pcwin002.win.tue.nl> References: <200011272051.PAA96852@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011272051.PAA96852@khavrinen.lcs.mit.edu>; from wollman@khavrinen.lcs.mit.edu on Mon, Nov 27, 2000 at 03:51:56PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, On Mon, Nov 27, 2000 at 03:51:56PM -0500, Garrett Wollman wrote: > I just did an upgrade from libpng.so.3 to libpng.so.4 on one of my > machines. I did not want to recompile the client applications, and I > did want to keep some record of the installation of this library and > its dependencies so I remember to delete it when I do recompile those > clients. > > I went through the following steps, which seem to be fairly > automatable, and would make a nice script hack (on the level of > `save_shared_libraries png-1.0.5 png-compat-1.0.5'). [snip procedure] I took your idea and automated it. Attached is my updateport script that takes these exact steps. Before running it, you need to create ${PREFIX}/lib/compat (for the port, this usually means /usr/X11R6 and /usr/local) and add it to /etc/rc.conf in the ${ldconfig_path} variable. The one thing this script doesn't do: it doesn't handle updating dependencies at the same time. So if port #1 depends on an update of port #2, and you run portupdate port #1, you'll *install* the new version of port #2, not update it. You'd have to run updateport port #2 first. I suppose this idea really needs to be in bsd.port.mk, but the script is older than your idea, I just updated it and thought that this could be handy for others. It could also be updated to use Maxim's new information in /var/db/pkg as to the origin of a package, but I don't have the right bsd.port.mk now so I couldn't test that. For now it guesses the old version of a port from the information in /var/db/pkg. Note that I only tested it with your shared library idea *ONCE* on print/gnomeprint, upgraded from under gnumeric. This worked like a charm but YMMV of course. Warning, alpha quality code, here be dragons, etc. Regards, --Stijn --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=updateport #!/bin/sh # ---------------------------------------------------------------------------- # "THE BEER-WARE LICENSE" (Revision 42): # wrote this file. As long as you retain this notice you # can do whatever you want with this stuff. If we meet some day, and you think # this stuff is worth it, you can buy me a beer in return. Stijn Hoop # ---------------------------------------------------------------------------- # Global settings PORTSDIR=/usr/ports PKGDBDIR=/var/db/pkg COMPATLIBDIR=lib/compat # Check arguments if [ -z "$1" ]; then echo "Usage: $0 " echo echo "For example:" echo " $0 misc/screen" exit 1 fi if [ ! -d "${PORTSDIR}/$1" ]; then echo "===> Error: ${PORTSDIR}/$1 not found. Stop." exit 1 fi # Figure out the upgrade path echo "===> Determining installed port version for $1" cd $PORTSDIR/$1 || exit 1 PORTNAME=`make -V PKGNAMEPREFIX``make -V PORTNAME``make -V PKGNAMESUFFIX` OLDVERSION=`ls -d ${PKGDBDIR}/${PORTNAME}-[0-9]* 2>/dev/null | \ sed "s/^.*-\(.*\)$/\1/"` if [ -z $OLDVERSION ]; then echo "===> No old version of $PORTNAME installed." exit 1 fi OLDNAME=${PORTNAME}-${OLDVERSION} NEWVERSION=`make -V PORTVERSION``make -V _SUF1``make -V _SUF2` NEWNAME=`make -V PKGNAME` if [ $NEWNAME = $OLDNAME ]; then echo "===> ${PORTNAME} is up to date (at version $OLDVERSION)." exit 2 fi # For shared library compatability PREFIX=`make -V PREFIX` COMPATNAME=${PORTNAME}-compat-${OLDVERSION} # Figure out if the port installs shared libraries if [ ! -z `make -V INSTALLS_SHLIB` ]; then SHLIB_SAVE= # Determine upgraded libraries NEWLIBS=`grep '\.so\.' pkg-plist | sort` for i in $NEWLIBS; do NEWLIBNAME=`echo $i | sed "s/\.[0-9][0-9]*$//"` NEWLIBVERSION=`echo $i | sed "s/^.*\.\([0-9][0-9]*\)$/\1/"` OLDLIBNAME=`grep "$NEWLIBNAME\." \ ${PKGDBDIR}/${OLDNAME}/+CONTENTS` OLDLIBVERSION=`echo ${OLDLIBNAME} | \ sed "s/^.*\.\([0-9][0-9]*\)$/\1/"` if [ ! -z $OLDLIBVERSION ]; then if [ $OLDLIBVERSION != $NEWLIBVERSION ]; then # An incompatible shared library version SHLIB_SAVE="${SHLIB_SAVE} ${OLDLIBNAME}" fi fi done # Now determine libraries that aren't in the new port anymore, and # save them too OLDLIBS=`grep '\.so\.' ${PKGDBDIR}/${OLDNAME}/+CONTENTS | sort` for i in $OLDLIBS; do OLDLIBNAME=`echo $i | sed "s/\.[0-9][0-9]*$//"` if ! grep $OLDLIBNAME pkg-plist >/dev/null; then SHLIB_SAVE="${SHLIB_SAVE} $i" fi done else SHLIB_SAVE= fi # Ask for confirmation for now, this script is still not well tested. echo "===> Upgrading ${OLDNAME} to ${NEWNAME}" if [ ! -z "$SHLIB_SAVE" ]; then echo " WARNING: this will upgrade shared libraries, which other" echo " programs may depend on! Doing this automatically is not" echo " always guaranteed to yield usable results." fi read -p "===> Are you sure you want to do this? [y/n] " ANS if [ "x$ANS" != "xyes" -a "x$ANS" != "xy" ]; then echo "===> Upgrade cancelled." exit 1; fi # Save the old package metadata for later use cp -rp ${PKGDBDIR}/${OLDNAME} ${PKGDBDIR}/${COMPATNAME} if [ ! -z "$SHLIB_SAVE" ]; then # Build a new +CONTENTS for the compat package, containing # just the shared libraries. CONTENTS=`mktemp -t updateport` if [ $? -ne 0 ]; then echo "$0: Can't create temporary file." exit 1 fi echo "@name ${COMPATNAME}" >> $CONTENTS echo "@cwd ${PREFIX}" >> $CONTENTS for i in $SHLIB_SAVE; do cp -p ${PREFIX}/$i ${PREFIX}/${COMPATLIBDIR} echo $i | sed "s#lib/#${COMPATLIBDIR}/#" >> $CONTENTS echo "@comment MD5:"`md5 -q ${PREFIX}/$i` >> $CONTENTS done echo "@unexec ldconfig -R" >> $CONTENTS mv -f $CONTENTS ${PKGDBDIR}/${COMPATNAME}/+CONTENTS chmod a+r ${PKGDBDIR}/${COMPATNAME}/+CONTENTS ldconfig -m ${PREFIX}/${COMPATLIBDIR} fi # Upgrade the port (building it if necessary) make || exit 1 pkg_delete -f ${OLDNAME} || exit 1 make install || exit 1 # Update dependencies echo "===> Updating dependencies from ${OLDNAME} to ${NEWNAME}" if [ -e ${PKGDBDIR}/${COMPATNAME}/+REQUIRED_BY ]; then if [ -z "$SHLIB_SAVE" ]; then # Let's just hope we are binary compatible... REPLACE=${NEWNAME} else # Change the dependencies to use compat package REPLACE=${COMPATNAME} fi for i in `cat ${PKGDBDIR}/${COMPATNAME}/+REQUIRED_BY`; do if [ -e ${PKGDBDIR}/$i/+CONTENTS ]; then perl -pi -e "s/${OLDNAME}/${REPLACE}/g" \ ${PKGDBDIR}/$i/+CONTENTS fi done if [ -z "$SHLIB_SAVE" ]; then cp ${PKGDBDIR}/${COMPATNAME}/+REQUIRED_BY \ ${PKGDBDIR}/${REPLACE}/+REQUIRED_BY fi fi # Remove the compat 'package' if we're not installing a new shared library if [ -z "$SHLIB_SAVE" ]; then rm -rf ${PKGDBDIR}/${COMPATNAME} else echo "===> The old shared libraries (if any) were saved in a" echo " compatability 'package' named ${COMPATNAME} for" echo " your convenience." fi --oyUTqETQ0mS9luUI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 8:44:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (pool52-tch-1.Sofia.0rbitel.net [212.95.170.52]) by hub.freebsd.org (Postfix) with SMTP id D70EC37B400 for ; Tue, 28 Nov 2000 08:44:15 -0800 (PST) Received: (qmail 48536 invoked by uid 1000); 28 Nov 2000 16:43:43 -0000 Date: Tue, 28 Nov 2000 18:43:43 +0200 From: Peter Pentchev To: "Donald J . Maddox" Cc: ports@freebsd.org Subject: Re: Checksum mismatch problems with fetchmail-5.6.0 Message-ID: <20001128184343.F11982@ringworld.oblivion.bg> Mail-Followup-To: "Donald J . Maddox" , ports@freebsd.org References: <20001128111938.A1269@cae88-102-101.sc.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001128111938.A1269@cae88-102-101.sc.rr.com>; from dmaddox@sc.rr.com on Tue, Nov 28, 2000 at 11:19:38AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alright, I figured it out - ESR included a flash fix for 'smtpname' handling without releasing a new version, just rolling out a new tarball in place of the old one. Both the tuxedo.org and ccil.org distsites have the new version now. The port distinfo file was updated. Thanks again for the alert! G'luck, Peter -- If you think this sentence is confusing, then change one pig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 8:50:16 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20E4537B404 for ; Tue, 28 Nov 2000 08:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASGo2J13875; Tue, 28 Nov 2000 08:50:02 -0800 (PST) (envelope-from gnats) Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id 5F4EB37B404 for ; Tue, 28 Nov 2000 08:45:39 -0800 (PST) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Tue, 28 Nov 2000 17:45:31 +0100 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.11.0/8.11.1) id eASGjUv74460; Tue, 28 Nov 2000 17:45:30 +0100 (CET) (envelope-from esk) Message-Id: <200011281645.eASGjUv74460@i30nb2.ira.uka.de> Date: Tue, 28 Nov 2000 17:45:30 +0100 (CET) From: esk@ira.uka.de Reply-To: esk@ira.uka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23160: Port update [maintainer]: port/audio/xmms to 1.2.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23160 >Category: ports >Synopsis: Port update [maintainer]: port/audio/xmms to 1.2.4 >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 Nov 28 08:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Espen Skoglund >Release: FreeBSD 4.2-BETA i386 >Organization: Karlsruhe University >Environment: >Description: Update of XMMS to 1.2.4. Most notably, the new version fixes some serious bugs with ShoutCast/IceCast streaming. The new port also includes a Vorbis plugin (if not WITHOUT_VORBIS is defined). I have merged the 3DNow! patch into the main XMMS repository. Having a separate 3DNow! patch file is therefore not necessary. Also, the pkg-descr is updated so that it more reflects the current state of the port. >How-To-Repeat: >Fix: diff -ruN xmms.org/Makefile xmms/Makefile --- xmms.org/Makefile Thu Nov 2 15:21:55 2000 +++ xmms/Makefile Tue Nov 28 17:37:47 2000 @@ -6,8 +6,7 @@ # PORTNAME= xmms -PORTVERSION= 1.2.3 -PORTREVISION= 1 +PORTVERSION= 1.2.4 CATEGORIES= audio MASTER_SITES= ftp://ftp.xmms.org/xmms/1.2.x/ \ ftp://ftp.uk.xmms.org/xmms/1.2.x/ \ @@ -17,9 +16,6 @@ ftp://ftp.nl.xmms.org/xmms/1.2.x/ \ ftp://ftp.de.xmms.org/xmms/1.2.x/ -PATCH_SITES= ${MASTER_SITE_LOCAL} -PATCH_SITE_SUBDIR= sobomax - MAINTAINER= esk@ira.uka.de LIB_DEPENDS= xml.5:${PORTSDIR}/textproc/libxml @@ -33,7 +29,8 @@ INSTALLS_SHLIB= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" \ - HAVE_MIKMOD=${HAVE_MIKMOD} + HAVE_MIKMOD="${HAVE_MIKMOD}" \ + HAVE_VORBIS="${HAVE_VORBIS}" .include @@ -45,6 +42,15 @@ PLIST_SUB+= MIKMODPLUGIN:="@comment " .endif +.if !defined(WITHOUT_VORBIS) +LIB_DEPENDS+= ogg.0:${PORTSDIR}/audio/libogg \ + vorbis.0:${PORTSDIR}/audio/libvorbis +HAVE_VORBIS= yes +PLIST_SUB+= VORBISPLUGIN:="" +.else +PLIST_SUB+= VORBISPLUGIN:="@comment " +.endif + .if defined(HAVE_GNOME) USE_GNOME= yes .else @@ -59,7 +65,6 @@ .endif .if !defined(WITHOUT_3DNOW) && ${OSVERSION} >= 400021 -PATCHFILES= xmms-${PORTVERSION}-3dnow.patch.gz CONFIGURE_ARGS+= --enable-3dnow .endif @@ -73,13 +78,16 @@ .endif pre-extract: -.if !defined(WITHOUT_MIKMOD) || ( !defined(WITHOUT_3DNOW) && ${OSVERSION} >= 400021 ) +.if !defined(WITHOUT_MIKMOD) || !defined(WITHOUT_VORBIS) || ( !defined(WITHOUT_3DNOW) && ${OSVERSION} >= 400021 ) @${ECHO_MSG} .if !defined(WITHOUT_MIKMOD) @${ECHO_MSG} "You can disable support for mikmod by defining WITHOUT_MIKMOD." .endif +.if !defined(WITHOUT_VORBIS) + @${ECHO_MSG} "You can disable support for vorbis by defining WITHOUT_VORBIS." +.endif .if !defined(WITHOUT_3DNOW) && ${OSVERSION} >= 400021 - @${ECHO_MSG} "You can disable 3DNOW optimized decoding routines by defining WITHOUT_3DNOW." + @${ECHO_MSG} "You can disable 3DNow! optimized decoding routines by defining WITHOUT_3DNOW." .endif @${ECHO_MSG} .endif diff -ruN xmms.org/distinfo xmms/distinfo --- xmms.org/distinfo Fri Sep 22 08:21:49 2000 +++ xmms/distinfo Tue Nov 28 15:20:43 2000 @@ -1,2 +1 @@ -MD5 (xmms-1.2.3.tar.gz) = 5880503c9f51cd4cc14566eb1d8f54ff -MD5 (xmms-1.2.3-3dnow.patch.gz) = 6dfabc4c460adb5062af86ca44303cd4 +MD5 (xmms-1.2.4.tar.gz) = df1081cc01628cd8b97cb5f3ca80e063 diff -ruN xmms.org/files/patch-ad xmms/files/patch-ad --- xmms.org/files/patch-ad Thu Oct 5 09:22:29 2000 +++ xmms/files/patch-ad Tue Nov 28 16:13:24 2000 @@ -1,28 +1,38 @@ ---- configure.orig Wed Sep 20 00:30:29 2000 -+++ configure Wed Sep 27 12:22:43 2000 -@@ -4022,7 +4022,9 @@ - echo "$ac_t""no" 1>&6 +--- configure.orig Tue Nov 28 16:12:16 2000 ++++ configure Tue Nov 28 16:12:52 2000 +@@ -4033,6 +4033,9 @@ fi -- + +if [ x"${HAVE_ESOUND}" != x"yes" ]; then + have_esd=no +fi if test "x$have_esd" = xyes; then HAVE_ESD_TRUE= -@@ -4303,7 +4305,9 @@ - +@@ -4314,6 +4317,9 @@ rm -f conf.mikmodtest -- + +if [ x"${HAVE_MIKMOD}" != x"yes" ]; then + have_mikmod=no +fi if test "x$have_mikmod" = xyes; then HAVE_MIKMOD_TRUE= -@@ -7171,14 +7175,14 @@ +@@ -4574,6 +4580,11 @@ + + rm -f conf.vorbistest + ++if [ x"${HAVE_VORBIS}" != x"yes" ]; then ++ have_ogg=no ++ have_vorbis=no ++fi ++ + have_oggvorbis=no + if test "x$have_ogg" = xyes + then +@@ -7551,14 +7562,14 @@ if test -n "$GCC" then @@ -39,7 +49,7 @@ ARCH_DEFINES="-DI386_ASSEM" arch_type=ix86 ;; -@@ -7885,10 +7889,6 @@ +@@ -8315,10 +8326,6 @@ *) # Relative path. ac_sub_cache_file="$ac_dots$cache_file" ;; esac diff -ruN xmms.org/files/patch-ae xmms/files/patch-ae --- xmms.org/files/patch-ae Thu Oct 5 09:22:29 2000 +++ xmms/files/patch-ae Tue Nov 28 14:57:44 2000 @@ -1,6 +1,6 @@ ---- Makefile.in.orig Mon Jul 31 10:27:32 2000 -+++ Makefile.in Mon Jul 31 10:27:49 2000 -@@ -147,7 +147,10 @@ +--- Makefile.in.orig Tue Nov 28 14:55:51 2000 ++++ Makefile.in Tue Nov 28 14:57:22 2000 +@@ -152,7 +152,10 @@ sidplay_library = @sidplay_library@ xmmsdir = @xmmsdir@ @@ -8,11 +8,11 @@ +SUBDIRS = intl libxmms xmms Output Input Effect General Visualization wmxmms po +.ifdef HAVE_GNOME +SUBDIRS += gnomexmms -+.endif ++.endif bin_SCRIPTS = xmms-config -@@ -205,9 +205,9 @@ +@@ -211,9 +214,9 @@ rm -f $(srcdir)/stamp-h.in; \ $(MAKE) $(srcdir)/stamp-h.in; \ else :; fi diff -ruN xmms.org/files/patch-af xmms/files/patch-af --- xmms.org/files/patch-af Thu Oct 5 09:22:29 2000 +++ xmms/files/patch-af Tue Nov 28 16:34:46 2000 @@ -1,6 +1,6 @@ ---- Output/Makefile.in.orig Mon Jan 31 10:44:32 2000 -+++ Output/Makefile.in Sun Feb 27 01:37:39 2000 -@@ -125,7 +125,10 @@ +--- Output/Makefile.in.orig Tue Nov 28 14:58:15 2000 ++++ Output/Makefile.in Tue Nov 28 14:58:46 2000 +@@ -152,7 +152,10 @@ sidplay_library = @sidplay_library@ xmmsdir = @xmmsdir@ @@ -8,7 +8,7 @@ +SUBDIRS = OSS disk_writer +.if defined(HAVE_ESOUND) || defined(HAVE_GNOME) +SUBDIRS += esd -+.endif ++.endif mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../config.h CONFIG_CLEAN_FILES = diff -ruN xmms.org/pkg-descr xmms/pkg-descr --- xmms.org/pkg-descr Thu Feb 10 02:38:21 2000 +++ xmms/pkg-descr Tue Nov 28 17:25:32 2000 @@ -1,7 +1,11 @@ XMMS --- X Multimedia System. XMMS is a multimedia player based on -the look of Winamp. Currently it plays mpeg layer 1/2/3, wav, au, and -CD audio. Other formats are supported by different xmms plugins (e.g. -xmms-mikmod). +the look of Winamp. Currently it plays mpeg layer 1/2/3, wav, au, +CD audio, etc. + +The Vorbis plugin included here (if you specify WITH_VORBIS) is the +one that is included in the XMMS distribution. If you have the +vorbis-xmms port installed, the plugin from that port will be +overwritten by this one. WWW: http://www.xmms.org/ diff -ruN xmms.org/pkg-plist xmms/pkg-plist --- xmms.org/pkg-plist Thu Oct 5 09:22:30 2000 +++ xmms/pkg-plist Tue Nov 28 16:29:28 2000 @@ -23,9 +23,10 @@ lib/xmms/Input/libcdaudio.so lib/xmms/Input/libidcin.so lib/xmms/Input/libmpg123.so +lib/xmms/Input/libtonegen.so lib/xmms/Input/libwav.so %%MIKMODPLUGIN:%%lib/xmms/Input/libmikmod.so -lib/xmms/Input/libtonegen.so +%%VORBISPLUGIN:%%lib/xmms/Input/libvorbis.so lib/xmms/Output/libOSS.so lib/xmms/Output/libdisk_writer.so %%ESDPLUGIN:%%lib/xmms/Output/libesdout.so @@ -34,6 +35,7 @@ share/aclocal/xmms.m4 %%DATADIR%%/xmms/wmxmms.xpm share/locale/af/LC_MESSAGES/xmms.mo +share/locale/az/LC_MESSAGES/xmms.mo share/locale/bg/LC_MESSAGES/xmms.mo share/locale/ca/LC_MESSAGES/xmms.mo share/locale/cs/LC_MESSAGES/xmms.mo @@ -46,6 +48,7 @@ share/locale/ga/LC_MESSAGES/xmms.mo share/locale/hr/LC_MESSAGES/xmms.mo share/locale/hu/LC_MESSAGES/xmms.mo +share/locale/it/LC_MESSAGES/xmms.mo share/locale/ja/LC_MESSAGES/xmms.mo share/locale/ko/LC_MESSAGES/xmms.mo share/locale/lt/LC_MESSAGES/xmms.mo @@ -58,6 +61,7 @@ share/locale/ru/LC_MESSAGES/xmms.mo share/locale/sk/LC_MESSAGES/xmms.mo share/locale/sv/LC_MESSAGES/xmms.mo +share/locale/tr/LC_MESSAGES/xmms.mo share/locale/uk/LC_MESSAGES/xmms.mo share/locale/wa/LC_MESSAGES/xmms.mo share/locale/zh_CN.GB2312/LC_MESSAGES/xmms.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 Tue Nov 28 10:29:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from acl.lanl.gov (acl.lanl.gov [128.165.147.1]) by hub.freebsd.org (Postfix) with ESMTP id 404FA37B401 for ; Tue, 28 Nov 2000 10:29:30 -0800 (PST) Received: from nightshade (jasonrm@nightshade.acl.lanl.gov [128.165.147.175]) by acl.lanl.gov (8.8.8/8.8.5) with SMTP id LAA2197028; Tue, 28 Nov 2000 11:29:29 -0700 (MST) From: "Jason R. Mastaler" Date: Tue, 28 Nov 2000 11:29:29 -0700 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: freebsd-ports@FreeBSD.ORG Subject: NetBSD package system features MIME-Version: 1.0 Message-Id: <00112811292900.19785@nightshade> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've been looking at the NetBSD package system lately to see how it compares to FreeBSD's. It seems to have quite a few additional features. For one thing, it has more "make" targets. Has anyone looked into incorporating these? Here are some noteworthy examples. For more info, see * update: This target causes the current package to be updated to the latest version. The package and all depending packages first get deinstalled, then current versions of the corresponding packages get compiled and installed. This is similar to manually noting which packages are currently installed, then performing a series of "make deinstall" and and "make install" (or whatever DEPENDS_TARGET is set to) for these packages. * show-downlevel: This target shows nothing if the package is not installed. If a version of this package is installed, but is not the version provided in this version of pkgsrc, then a warning message is displayed. This target can be used to show which of your installed packages are downlevel, and so the old versions can be deleted, and the current ones added. * show-pkgsrc-dir: This target shows the directory in the pkgsrc hierarchy from which the package can be built and installed. This may not be the same directory as the one from which the package was installed. This target is intended to be used by people who may wish to upgrade many packages on a single host, and can be invoked from the top-level pkgsrc Makefile by using the target "show-host-specific-pkgs" * bulk-package: Used to do bulk builds. If an appropriate binary package already exists, no action is taken. If not, this target will compile, install and package it (and it's depends, if PKG_DEPENDS is set properly, see section 3.2.1). After creating the binary package, the sources, the just-installed package and it's required packages are removed, preserving free disk space. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 11:10: 9 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4676037B401 for ; Tue, 28 Nov 2000 11:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASJA3t40710; Tue, 28 Nov 2000 11:10:03 -0800 (PST) (envelope-from gnats) Date: Tue, 28 Nov 2000 11:10:03 -0800 (PST) Message-Id: <200011281910.eASJA3t40710@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Palle Girgensohn Subject: Re: ports/23125: Successful emulation of StarOffice depends on filesystem layout Reply-To: Palle Girgensohn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23125; it has been noted by GNATS. From: Palle Girgensohn To: freebsd-gnats-submit@FreeBSD.org, judd@one.net Cc: Subject: Re: ports/23125: Successful emulation of StarOffice depends on filesystem layout Date: Tue, 28 Nov 2000 20:09:12 +0100 I have installed onto /usr/local, which is a separate partition. This works fine. I even used amd to nfs mount /usr/local, so it was mounted on /.a/server/usr/local, and this was OK too. I do have linux installed in /usr/local too, with a /compat -> /usr/local/compat symlink. This might have something to with it, but it all sounds strange. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 11:10: 9 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 281DF37B69B for ; Tue, 28 Nov 2000 11:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASJA2O40705; Tue, 28 Nov 2000 11:10:02 -0800 (PST) (envelope-from gnats) Date: Tue, 28 Nov 2000 11:10:02 -0800 (PST) Message-Id: <200011281910.eASJA2O40705@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Palle Girgensohn Subject: Re: ports/23001: StarOffice52 port cannot connect to non-local ip address Reply-To: Palle Girgensohn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23001; it has been noted by GNATS. From: Palle Girgensohn To: freebsd-gnats-submit@FreeBSD.org, pscott@the-frontier.org Cc: Subject: Re: ports/23001: StarOffice52 port cannot connect to non-local ip address Date: Tue, 28 Nov 2000 20:05:41 +0100 I can verify this. Same here on FreeBSD-4.2-RELEASE. Any luck? /Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 11:38:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 058F637B400; Tue, 28 Nov 2000 11:38:13 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id OAA08244; Tue, 28 Nov 2000 14:38:05 -0500 (EST) (envelope-from wollman) Date: Tue, 28 Nov 2000 14:38:05 -0500 (EST) From: Garrett Wollman Message-Id: <200011281938.OAA08244@khavrinen.lcs.mit.edu> To: jpasski@kpmg.com Cc: ports@freebsd.org, stable@freebsd.org Subject: Re: pkg_version X-Newsgroups: mit.lcs.mail.freebsd-stable In-Reply-To: Organization: MIT Laboratory for Computer Science Cc: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article you write: >When trying to upgrade complex applications like XFree86 w/ Enlightenment & >Gnome, is there a sequence that should be followed on what applications are >updated first to last? Here is a short shell script (can even be entered interactively if you are using a Real Shell[tm]) which will tell you in which order the stuff you currently needs to be built. Reverse the list to find the order in which they should be removed. ------------------------------------ #!/bin/sh cd /var/db/pkg for a in *; do if [ -r ${a}/+REQUIRED_BY ]; then while read pkg; do echo ${a} ${pkg} done <${a}/+REQUIRED_BY fi done | tsort ------------------------------------ If you see the error `tsort: cycle in data', then something is seriously broken. (It is conceivable that such cycles could be formed.) Note that the topological sort is not a full sort, so not all of the ordering is meaningful, and this doesn't take build-dependencies into account -- only run dependencies. This information could be extracted from the INDEX file by pkg_version. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 11:56: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from trinity.magpage.com (trinity.magpage.com [216.155.0.8]) by hub.freebsd.org (Postfix) with ESMTP id 9ECAD37B400 for ; Tue, 28 Nov 2000 11:56:03 -0800 (PST) Received: from magpage.com (poomba.magpage.com [216.155.24.136]) by trinity.magpage.com (8.11.1/8.11.1) with ESMTP id eASJtvW10639 for ; Tue, 28 Nov 2000 14:55:57 -0500 Message-ID: <3A240DCD.5A72C918@magpage.com> Date: Tue, 28 Nov 2000 14:55:57 -0500 From: Daniel Frazier Organization: Magpage Internet Services X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: Re: Evolution port difficulties...new info References: <3A0B1C51.DE2CA38F@magpage.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org While attempting to build the ethereal port I discovered that my system was (for lack of a better term)confused about my gtk and/or glib installation. I kept getting errors during the configure about the gtk version reported by gtk-config didn't match the version in the library headers (or something like that). Basically what I found was that the gtk-1.2.8 port installs with a prefix of /usr/X11R6, but there were gtk-1.2.7 files left over in /usr/local. This stopped the ethereal port from even getting thru the configure, but didn't break the install of the evolution port. In order to get ethereal to build I took the following steps(I may miss some and they might not all be required, but you'll get the idea): ln -s /usr/X11R6/bin/gtk12-config /usr/X11R6/bin/gtk-config mv /usr/local/bin/gtk-config /usr/local/bin/gtk-config.old mv /usr/local/include/gtk /usr/local/include/gtk.old mv /usr/local/bin/glib-config /usr/local/bin/glib-config.old ln -s /usr/local/bin/glib12-config /usr/local/bin/glib-config After I did these things and got ethereal running I recalled the trouble I was having with evolution so I rebuilt the port(again, unnecessary?) and EUREKA!, evolution started up and didn't hang at the splash screen like before. I was getting a lot of errors and even though evolution started it's obviously not working correctly, but this is probably because I had built so many of its' dependencies without having corrected the wierdness I discussed above. Over the next few days I'll rebuild everything and see if that helps. Can anyone explain how/why this gtk mess happened? (Was it something I did or what?) ---------------------------------------------------------------------- Daniel Frazier Tel: 302-239-5900 Ext. 231 System Administrator Fax: 302-239-3909 MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 12:21:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 956E837B401; Tue, 28 Nov 2000 12:21:54 -0800 (PST) Received: from dragon.nuxi.com (root@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id MAA73148; Tue, 28 Nov 2000 12:21:53 -0800 (PST) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.1/8.11.1) id eASKLq741219; Tue, 28 Nov 2000 12:21:52 -0800 (PST) (envelope-from obrien) Date: Tue, 28 Nov 2000 12:21:52 -0800 From: "David O'Brien" To: Jean-Marc Zucconi Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/x11/XFree86-4 pkg-message Makefile pkg-install ports/x11/XFree86-4/files patch-config_cf_Server_tmpl Message-ID: <20001128122152.D37359@dragon.nuxi.com> Reply-To: ports@FreeBSD.org References: <200010282311.QAA13532@freefall.freebsd.org> <20001028164136.A82537@citusc17.usc.edu> <200010290006.RAA33002@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: <200010290006.RAA33002@freefall.freebsd.org>; from jmz@FreeBSD.org on Sat, Oct 28, 2000 at 05:06:14PM -0700 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 X-Loop: FreeBSD.org [redirected to -ports] On Sat, Oct 28, 2000 at 05:06:14PM -0700, Jean-Marc Zucconi wrote: > > Don't forget to do the XFree86-4-Server ports too (weren't we planning > > to make XFree86-4 into a metaport around these other ones so these > > changes only need to be applied once?) > > I am not the maintainer of the XFree86-4-Server ports :-) > [Cc'ed: to Taguchi Takeshi] But you could email Taguchi Takeshi asking to be co-maintainer of the XFree86-4-* ports and turn XFree86-4 into the meta port. It is really confusing to have duplicated XFree86 v4 ports. -- -- David (obrien@FreeBSD.org) GNU is Not Unix / Linux Is Not UniX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 13:18:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id AC02337B400 for ; Tue, 28 Nov 2000 13:18:42 -0800 (PST) Received: (qmail 1036 invoked by uid 1000); 28 Nov 2000 21:18:07 -0000 Date: Tue, 28 Nov 2000 23:18:06 +0200 From: Peter Pentchev To: "Jason R. Mastaler" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features Message-ID: <20001128231806.A318@ringworld.oblivion.bg> Mail-Followup-To: "Jason R. Mastaler" , freebsd-ports@FreeBSD.ORG References: <00112811292900.19785@nightshade> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00112811292900.19785@nightshade>; from jason@mastaler.com on Tue, Nov 28, 2000 at 11:29:29AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 28, 2000 at 11:29:29AM -0700, Jason R. Mastaler wrote: > I've been looking at the NetBSD package system lately to see how it > compares to FreeBSD's. It seems to have quite a few additional > features. > > For one thing, it has more "make" targets. Has anyone looked into > incorporating these? Here are some noteworthy examples. For more > info, see > Some of these already exist in the Ports collection in one way or another. > * update: > This target causes the current package to be updated to the latest > version. The package and all depending packages first get > deinstalled, then current versions of the corresponding packages > get compiled and installed. This is similar to manually noting > which packages are currently installed, then performing a series of > "make deinstall" and and "make install" (or whatever DEPENDS_TARGET > is set to) for these packages. This is being done at the moment - the -o (origin) option to pkg_add, and some changes to bsd.port.mk, which I believe are already implemented in -current and are awaiting MFC real-soon-now. > * show-downlevel: > This target shows nothing if the package is not installed. If a > version of this package is installed, but is not the version > provided in this version of pkgsrc, then a warning message is > displayed. This target can be used to show which of your installed > packages are downlevel, and so the old versions can be deleted, and > the current ones added. pkg_version, which will get even better once port origins work. > * show-pkgsrc-dir: > This target shows the directory in the pkgsrc hierarchy from which > the package can be built and installed. This may not be the same > directory as the one from which the package was installed. This > target is intended to be used by people who may wish to upgrade > many packages on a single host, and can be invoked from the > top-level pkgsrc Makefile by using the target > "show-host-specific-pkgs" Hmm.. > * bulk-package: > Used to do bulk builds. If an appropriate binary package already > exists, no action is taken. If not, this target will compile, > install and package it (and it's depends, if PKG_DEPENDS is set > properly, see section 3.2.1). After creating the binary package, > the sources, the just-installed package and it's required packages > are removed, preserving free disk space. make all install package clean? G'luck, Peter -- This sentence claims to be an Epimenides paradox, but it is lying. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 13:26:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 6B8A837B401 for ; Tue, 28 Nov 2000 13:26:43 -0800 (PST) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 140sGu-0008Na-00; Tue, 28 Nov 2000 15:26:40 -0600 Date: Tue, 28 Nov 2000 15:26:40 -0600 From: Ade Lovett To: Daniel Frazier Cc: ports@FreeBSD.ORG Subject: Re: Evolution port difficulties...new info Message-ID: <20001128152639.X25483@FreeBSD.org> References: <3A0B1C51.DE2CA38F@magpage.com> <3A240DCD.5A72C918@magpage.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A240DCD.5A72C918@magpage.com>; from dfrazier@magpage.com on Tue, Nov 28, 2000 at 02:55:57PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 28, 2000 at 02:55:57PM -0500, Daniel Frazier wrote: > ln -s /usr/X11R6/bin/gtk12-config /usr/X11R6/bin/gtk-config > ln -s /usr/local/bin/glib12-config /usr/local/bin/glib-config Those two ln's are bad. Remove them. You *will* get burned by having them there. > Can anyone explain how/why this gtk mess happened? (Was it something I > did or what?) Sounds very much like a localized problem. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 14: 0:19 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC40E37B402 for ; Tue, 28 Nov 2000 14:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASM01322221; Tue, 28 Nov 2000 14:00:01 -0800 (PST) (envelope-from gnats) Received: from alpha.dante.org.uk (alpha.dante.org.uk [193.63.211.19]) by hub.freebsd.org (Postfix) with ESMTP id 1462437B400 for ; Tue, 28 Nov 2000 13:54:18 -0800 (PST) Received: from joy by alpha.dante.org.uk with local (Exim 3.12 #4) id 140shc-0003k7-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 28 Nov 2000 21:54:16 +0000 Message-Id: Date: Tue, 28 Nov 2000 21:54:16 +0000 From: Konstantin.Chuguev@dante.org.uk Reply-To: Konstantin.Chuguev@dante.org.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23163: Update port: converters/iconv Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23163 >Category: ports >Synopsis: Update port: converters/iconv >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 Nov 28 14:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Konstantin Chuguev >Release: FreeBSD 5.0-CURRENT i386 >Organization: DANTE >Environment: >Description: The new version of the iconv library. - CCS tables are converted from shared modules to binary table files. - CES shared modules are simplified. - Alias file is used instead of symbolic links. - CCS tables and alias files are accessed via memory-mapping. - Any CCS tables, CES modules and parts of alias file can be built in into the library. All CES modules are built in into the static version of the library (libiconv.a). WARNING: the shared library version number is raised to 2. This requires modifying all ports dependent on converters/iconv: - changing the dependency LIB_DEPENDS= from iconv.1 to iconv.2; - raising their PORTREVISION. This requires recompiling the ports as well. Currently affected are the following ports: converters/ruby-iconv, devel/dryad, devel/gconf, devel/gnomevfs, devel/gtranslator, editors/dedit, editors/koffice, graphics/eog, japanese/gal, japanese/gnome, japanese/gnumeric, japanese/mutt-devel, japanese/xchat, mail/evolution, math/gnumeric, net/fidelio, net/gnomeicu, sysutils/medusa, textproc/libxml2, www/encompass, www/gtkhtml, x11/gnome, x11/kde2, x11-fm/nautilus, x11-toolkits/gal New versions of iconv-extra and iconv-rfc1345 ports are being submitted in few minutes. >How-To-Repeat: >Fix: diff -ruN iconv.orig/Makefile iconv/Makefile --- iconv.orig/Makefile Tue Nov 28 21:24:53 2000 +++ iconv/Makefile Tue Nov 28 18:25:38 2000 @@ -2,11 +2,11 @@ # Date created: 21 September 1999 # Whom: Konstantin Chuguev # -# $FreeBSD: ports/converters/iconv/Makefile,v 1.6 2000/09/24 21:48:01 knu Exp $ +# $FreeBSD$ # PORTNAME= iconv -PORTVERSION= 1.1 +PORTVERSION= 2.0 CATEGORIES= converters MASTER_SITES= http://www.dante.net/staff/konstantin/FreeBSD/iconv/ diff -ruN iconv.orig/distinfo iconv/distinfo --- iconv.orig/distinfo Tue Nov 28 21:24:53 2000 +++ iconv/distinfo Mon Nov 27 23:43:55 2000 @@ -1 +1 @@ -MD5 (iconv-1.1.tar.gz) = 0d942f816cccc881cb6f34e093f6a02c +MD5 (iconv-2.0.tar.gz) = 9466242dcdc54a71a0e0232b1e686e29 diff -ruN iconv.orig/pkg-comment iconv/pkg-comment --- iconv.orig/pkg-comment Tue Nov 28 21:24:53 2000 +++ iconv/pkg-comment Mon Nov 27 23:44:18 2000 @@ -1 +1 @@ -Charset conversion library and utility +Charset conversion library and utilities diff -ruN iconv.orig/pkg-descr iconv/pkg-descr --- iconv.orig/pkg-descr Tue Nov 28 21:24:53 2000 +++ iconv/pkg-descr Mon Nov 27 23:45:52 2000 @@ -1,9 +1,10 @@ ICONV is 1) the library (libiconv.a and .so) for conversion between -various charsets and 2) the command line utility (iconv). +various charsets, 2) the command line utility (iconv) and 3) a set +of charsets (tables and shared modules). 33 charsets are supported in this port: most Unicode encodings, all charsets for which locale exist in FreeBSD, few IBM-DOS ones. Other charsets are provided as standalone ports. Konstantin Chuguev - September 2000. + November 2000. diff -ruN iconv.orig/pkg-plist iconv/pkg-plist --- iconv.orig/pkg-plist Tue Nov 28 21:24:53 2000 +++ iconv/pkg-plist Tue Nov 28 19:19:31 2000 @@ -1,115 +1,39 @@ bin/iconv +bin/iconv_mktbl include/iconv.h -lib/iconv/850.so -lib/iconv/852.so -lib/iconv/855.so -lib/iconv/866.so -lib/iconv/_tbl_simple.so -lib/iconv/ansi_x3.4-1968.so -lib/iconv/ansi_x3.4-1986.so -lib/iconv/ascii.so -lib/iconv/big5.so -lib/iconv/chinese.so -lib/iconv/cns11643-plane1.so -lib/iconv/cns11643-plane14.so -lib/iconv/cns11643-plane2.so -lib/iconv/cp367.so -lib/iconv/cp775.so -lib/iconv/cp819.so -lib/iconv/cp850.so -lib/iconv/cp852.so -lib/iconv/cp855.so -lib/iconv/cp866.so -lib/iconv/csascii.so -lib/iconv/csbig5.so -lib/iconv/cseuckr.so -lib/iconv/cseucpkdfmtjapanese.so -lib/iconv/csgb2312.so -lib/iconv/cshalfwidthkatakana.so -lib/iconv/csibm855.so -lib/iconv/csibm866.so -lib/iconv/csisolatin1.so -lib/iconv/csisolatin2.so -lib/iconv/csisolatin4.so -lib/iconv/csisolatincyrillic.so -lib/iconv/cskoi8r.so -lib/iconv/cspc775baltic.so -lib/iconv/cspc850multilingual.so -lib/iconv/cspcp852.so -lib/iconv/csshiftjis.so -lib/iconv/csunicode.so -lib/iconv/cyrillic.so -lib/iconv/euc-cn.so -lib/iconv/euc-jp.so -lib/iconv/euc-kr.so -lib/iconv/euc-tw.so -lib/iconv/extended_unix_code_packed_format_for_japanese.so -lib/iconv/gb2312.so -lib/iconv/gb_2312-80.so -lib/iconv/ibm367.so -lib/iconv/ibm775.so -lib/iconv/ibm819.so -lib/iconv/ibm850.so -lib/iconv/ibm852.so -lib/iconv/ibm855.so -lib/iconv/ibm866.so -lib/iconv/iso-10646-ucs-2.so -lib/iconv/iso-10646-ucs-4.so -lib/iconv/iso-10646-utf-16.so -lib/iconv/iso-10646-utf-8.so -lib/iconv/iso-8859-1.so -lib/iconv/iso-8859-15.so -lib/iconv/iso-8859-2.so -lib/iconv/iso-8859-4.so -lib/iconv/iso-8859-5.so -lib/iconv/iso-ir-100.so -lib/iconv/iso-ir-101.so -lib/iconv/iso-ir-110.so -lib/iconv/iso-ir-144.so -lib/iconv/iso-ir-58.so -lib/iconv/iso-ir-87.so -lib/iconv/iso646-us.so -lib/iconv/iso_646.irv:1991.so -lib/iconv/iso_8859-1.so -lib/iconv/iso_8859-15.so -lib/iconv/iso_8859-15:1998.so -lib/iconv/iso_8859-1:1987.so -lib/iconv/iso_8859-2.so -lib/iconv/iso_8859-2:1987.so -lib/iconv/iso_8859-4.so -lib/iconv/iso_8859-4:1988.so -lib/iconv/iso_8859-5.so -lib/iconv/iso_8859-5:1988.so -lib/iconv/jis_c6226-1983.so -lib/iconv/jis_x0201.so -lib/iconv/jis_x0208-1983.so -lib/iconv/jis_x0212-1990.so -lib/iconv/koi8-r.so -lib/iconv/koi8-u.so -lib/iconv/ks_x_1001.so -lib/iconv/ksx1001.so -lib/iconv/l1.so -lib/iconv/l2.so -lib/iconv/l4.so -lib/iconv/latin1.so -lib/iconv/latin2.so -lib/iconv/latin4.so -lib/iconv/ms_kanji.so -lib/iconv/shift_jis.so -lib/iconv/ucs-2.so -lib/iconv/ucs-4.so -lib/iconv/ucs2-internal.so -lib/iconv/ucs4-internal.so -lib/iconv/ucs4.so -lib/iconv/us-ascii.so -lib/iconv/us.so -lib/iconv/utf-16.so -lib/iconv/utf-8.so -lib/iconv/utf16.so -lib/iconv/utf8.so -lib/iconv/x0201.so -lib/iconv/x0208.so lib/libiconv.a lib/libiconv.so -lib/libiconv.so.1 -@dirrm lib/iconv +lib/libiconv.so.2 +libexec/iconv/euc-jp.so +libexec/iconv/euc-kr.so +libexec/iconv/euc-tw.so +libexec/iconv/gb2312.so +libexec/iconv/iso-10646-ucs-2.so +libexec/iconv/iso-10646-ucs-4.so +libexec/iconv/ucs-2-internal.so +libexec/iconv/utf-16.so +share/iconv/big5.cct +share/iconv/charset.aliases +share/iconv/cns11643-plane1.cct +share/iconv/cns11643-plane14.cct +share/iconv/cns11643-plane2.cct +share/iconv/cp775.cct +share/iconv/cp850.cct +share/iconv/cp852.cct +share/iconv/cp855.cct +share/iconv/cp866.cct +share/iconv/gb_2312-80.cct +share/iconv/iso-8859-1.cct +share/iconv/iso-8859-15.cct +share/iconv/iso-8859-2.cct +share/iconv/iso-8859-4.cct +share/iconv/iso-8859-5.cct +share/iconv/jis_x0201.cct +share/iconv/jis_x0208-1983.cct +share/iconv/jis_x0212-1990.cct +share/iconv/koi8-r.cct +share/iconv/koi8-u.cct +share/iconv/ksx1001.cct +share/iconv/shift_jis.cct +@dirrm libexec/iconv +@dirrm share/iconv >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 Nov 28 14: 0:24 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 748D637B404 for ; Tue, 28 Nov 2000 14:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASM02P22233; Tue, 28 Nov 2000 14:00:02 -0800 (PST) (envelope-from gnats) Received: from alpha.dante.org.uk (alpha.dante.org.uk [193.63.211.19]) by hub.freebsd.org (Postfix) with ESMTP id 38DFD37B402 for ; Tue, 28 Nov 2000 13:54:23 -0800 (PST) Received: from joy by alpha.dante.org.uk with local (Exim 3.12 #4) id 140shi-0003k9-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 28 Nov 2000 21:54:22 +0000 Message-Id: Date: Tue, 28 Nov 2000 21:54:22 +0000 From: Konstantin.Chuguev@dante.org.uk Reply-To: Konstantin.Chuguev@dante.org.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23164: Update port: converters/iconv-extra Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23164 >Category: ports >Synopsis: Update port: converters/iconv-extra >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 Nov 28 14:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Konstantin Chuguev >Release: FreeBSD 5.0-CURRENT i386 >Organization: DANTE >Environment: >Description: New version of iconv-extra for iconv-2.0 >How-To-Repeat: >Fix: diff -ruN iconv-extra.orig/Makefile iconv-extra/Makefile --- iconv-extra.orig/Makefile Tue Nov 28 21:25:01 2000 +++ iconv-extra/Makefile Tue Nov 28 18:33:32 2000 @@ -2,17 +2,17 @@ # Date created: 10 September 2000 # Whom: Konstantin Chuguev # -# $FreeBSD: ports/converters/iconv-extra/Makefile,v 1.2 2000/09/24 21:48:02 knu Exp $ +# $FreeBSD$ # PORTNAME= iconv-extra -PORTVERSION= 1.1 +PORTVERSION= 2.0 CATEGORIES= converters MASTER_SITES= http://www.dante.net/staff/konstantin/FreeBSD/iconv/ MAINTAINER= Konstantin.Chuguev@dante.org.uk -LIB_DEPENDS= iconv.1:${PORTSDIR}/converters/iconv +LIB_DEPENDS= iconv.2:${PORTSDIR}/converters/iconv USE_PERL5= yes diff -ruN iconv-extra.orig/distinfo iconv-extra/distinfo --- iconv-extra.orig/distinfo Tue Nov 28 21:25:01 2000 +++ iconv-extra/distinfo Tue Nov 28 18:43:17 2000 @@ -1 +1 @@ -MD5 (iconv-extra-1.1.tar.gz) = 279085a5619b43a4d62e7097d193d240 +MD5 (iconv-extra-2.0.tar.gz) = a3c2492966852e5949ef217913cc0a34 diff -ruN iconv-extra.orig/pkg-comment iconv-extra/pkg-comment --- iconv-extra.orig/pkg-comment Tue Nov 28 21:25:01 2000 +++ iconv-extra/pkg-comment Tue Nov 28 18:34:15 2000 @@ -1 +1 @@ -Additional charset modules for the iconv library (from Unicode site) +Additional charsets for the iconv library (those from the Unicode site) diff -ruN iconv-extra.orig/pkg-plist iconv-extra/pkg-plist --- iconv-extra.orig/pkg-plist Tue Nov 28 21:25:01 2000 +++ iconv-extra/pkg-plist Tue Nov 28 19:15:47 2000 @@ -1,188 +1,69 @@ -lib/iconv/424.so -lib/iconv/437.so -lib/iconv/857.so -lib/iconv/860.so -lib/iconv/861.so -lib/iconv/862.so -lib/iconv/863.so -lib/iconv/865.so -lib/iconv/869.so -lib/iconv/adobe-stdenc.so -lib/iconv/adobe-symbol.so -lib/iconv/adobe-zdingbats.so -lib/iconv/arabic.so -lib/iconv/asmo-708.so -lib/iconv/cp-gr.so -lib/iconv/cp-is.so -lib/iconv/cp037.so -lib/iconv/cp037_ibmuscanada.so -lib/iconv/cp10000.so -lib/iconv/cp10000_macroman.so -lib/iconv/cp10006.so -lib/iconv/cp10006_macgreek.so -lib/iconv/cp10007.so -lib/iconv/cp10007_maccyrillic.so -lib/iconv/cp10029.so -lib/iconv/cp10029_maclatin2.so -lib/iconv/cp1006.so -lib/iconv/cp10079.so -lib/iconv/cp10079_macicelandic.so -lib/iconv/cp10081.so -lib/iconv/cp10081_macturkish.so -lib/iconv/cp1026.so -lib/iconv/cp1250.so -lib/iconv/cp1251.so -lib/iconv/cp1252.so -lib/iconv/cp1253.so -lib/iconv/cp1254.so -lib/iconv/cp1255.so -lib/iconv/cp1256.so -lib/iconv/cp1257.so -lib/iconv/cp1258.so -lib/iconv/cp424.so -lib/iconv/cp437.so -lib/iconv/cp500.so -lib/iconv/cp737.so -lib/iconv/cp737latingreek.so -lib/iconv/cp856.so -lib/iconv/cp856_hebrew_pc.so -lib/iconv/cp857.so -lib/iconv/cp860.so -lib/iconv/cp861.so -lib/iconv/cp862.so -lib/iconv/cp863.so -lib/iconv/cp864.so -lib/iconv/cp865.so -lib/iconv/cp869.so -lib/iconv/cp874.so -lib/iconv/cp875.so -lib/iconv/cp875_ibmgreek.so -lib/iconv/cp932.so -lib/iconv/cp936.so -lib/iconv/cp949.so -lib/iconv/cp950.so -lib/iconv/csibm1026.so -lib/iconv/csibm424.so -lib/iconv/csibm500.so -lib/iconv/csibm857.so -lib/iconv/csibm860.so -lib/iconv/csibm861.so -lib/iconv/csibm863.so -lib/iconv/csibm864.so -lib/iconv/csibm865.so -lib/iconv/csibm869.so -lib/iconv/csiso2022jp.so -lib/iconv/csiso2022jp2.so -lib/iconv/csisolatin3.so -lib/iconv/csisolatin5.so -lib/iconv/csisolatin6.so -lib/iconv/csisolatinarabic.so -lib/iconv/csisolatingreek.so -lib/iconv/csisolatinhebrew.so -lib/iconv/cspc862latinhebrew.so -lib/iconv/cspc8codepage437.so -lib/iconv/ebcdic-cp-be.so -lib/iconv/ebcdic-cp-ca.so -lib/iconv/ebcdic-cp-ch.so -lib/iconv/ebcdic-cp-he.so -lib/iconv/ebcdic-cp-nl.so -lib/iconv/ebcdic-cp-us.so -lib/iconv/ebcdic-cp-wt.so -lib/iconv/ecma-114.so -lib/iconv/ecma-118.so -lib/iconv/elot_928.so -lib/iconv/gb12345.so -lib/iconv/greek.so -lib/iconv/greek8.so -lib/iconv/hebrew.so -lib/iconv/ibm037.so -lib/iconv/ibm1026.so -lib/iconv/ibm424.so -lib/iconv/ibm437.so -lib/iconv/ibm500.so -lib/iconv/ibm737.so -lib/iconv/ibm857.so -lib/iconv/ibm860.so -lib/iconv/ibm861.so -lib/iconv/ibm862.so -lib/iconv/ibm863.so -lib/iconv/ibm864.so -lib/iconv/ibm865.so -lib/iconv/ibm869.so -lib/iconv/ibm874.so -lib/iconv/iso-2022-cn.so -lib/iconv/iso-2022-jp-2.so -lib/iconv/iso-2022-jp.so -lib/iconv/iso-2022-kr.so -lib/iconv/iso-8859-10.so -lib/iconv/iso-8859-13.so -lib/iconv/iso-8859-14.so -lib/iconv/iso-8859-3.so -lib/iconv/iso-8859-6.so -lib/iconv/iso-8859-7.so -lib/iconv/iso-8859-8.so -lib/iconv/iso-8859-9.so -lib/iconv/iso-ir-109.so -lib/iconv/iso-ir-126.so -lib/iconv/iso-ir-127.so -lib/iconv/iso-ir-138.so -lib/iconv/iso-ir-148.so -lib/iconv/iso-ir-157.so -lib/iconv/iso_8859-10.so -lib/iconv/iso_8859-10:1992.so -lib/iconv/iso_8859-13.so -lib/iconv/iso_8859-13:1998.so -lib/iconv/iso_8859-14.so -lib/iconv/iso_8859-14:1998.so -lib/iconv/iso_8859-3.so -lib/iconv/iso_8859-3:1988.so -lib/iconv/iso_8859-6.so -lib/iconv/iso_8859-6:1987.so -lib/iconv/iso_8859-7.so -lib/iconv/iso_8859-7:1987.so -lib/iconv/iso_8859-8.so -lib/iconv/iso_8859-8:1988.so -lib/iconv/iso_8859-9.so -lib/iconv/iso_8859-9:1989.so -lib/iconv/johab.so -lib/iconv/koi8-ru.so -lib/iconv/l3.so -lib/iconv/l5.so -lib/iconv/l6.so -lib/iconv/latin3.so -lib/iconv/latin5.so -lib/iconv/latin6.so -lib/iconv/mac-ce.so -lib/iconv/mac-croatian.so -lib/iconv/mac-cyrillic.so -lib/iconv/mac-dingbats.so -lib/iconv/mac-greek.so -lib/iconv/mac-iceland.so -lib/iconv/mac-japan.so -lib/iconv/mac-roman.so -lib/iconv/mac-romania.so -lib/iconv/mac-thai.so -lib/iconv/mac-turkish.so -lib/iconv/mac-ukraine.so -lib/iconv/maccenteuro.so -lib/iconv/maccroatian.so -lib/iconv/maccyrillic.so -lib/iconv/macdingbats.so -lib/iconv/macgreek.so -lib/iconv/maciceland.so -lib/iconv/macroman.so -lib/iconv/macromania.so -lib/iconv/macthai.so -lib/iconv/macturkish.so -lib/iconv/macukraine.so -lib/iconv/unicode-1-1-utf-7.so -lib/iconv/utf-7.so -lib/iconv/windows-1250.so -lib/iconv/windows-1251.so -lib/iconv/windows-1252.so -lib/iconv/windows-1253.so -lib/iconv/windows-1254.so -lib/iconv/windows-1255.so -lib/iconv/windows-1256.so -lib/iconv/windows-1257.so -lib/iconv/windows-1258.so +libexec/iconv/iso-2022-cn.so +libexec/iconv/iso-2022-jp-2.so +libexec/iconv/iso-2022-jp.so +libexec/iconv/iso-2022-kr.so +libexec/iconv/unicode-1-1-utf-7.so +share/iconv/adobe-stdenc.cct +share/iconv/adobe-symbol.cct +share/iconv/adobe-zdingbats.cct +share/iconv/cp037.cct +share/iconv/cp10000.cct +share/iconv/cp10006.cct +share/iconv/cp10007.cct +share/iconv/cp10029.cct +share/iconv/cp1006.cct +share/iconv/cp10079.cct +share/iconv/cp10081.cct +share/iconv/cp1026.cct +share/iconv/cp424.cct +share/iconv/cp437.cct +share/iconv/cp500.cct +share/iconv/cp737.cct +share/iconv/cp856.cct +share/iconv/cp857.cct +share/iconv/cp860.cct +share/iconv/cp861.cct +share/iconv/cp862.cct +share/iconv/cp863.cct +share/iconv/cp864.cct +share/iconv/cp865.cct +share/iconv/cp869.cct +share/iconv/cp874.cct +share/iconv/cp875.cct +share/iconv/cp932.cct +share/iconv/cp936.cct +share/iconv/cp949.cct +share/iconv/cp950.cct +share/iconv/gb12345.cct +share/iconv/iso-8859-10.cct +share/iconv/iso-8859-13.cct +share/iconv/iso-8859-14.cct +share/iconv/iso-8859-3.cct +share/iconv/iso-8859-6.cct +share/iconv/iso-8859-7.cct +share/iconv/iso-8859-8.cct +share/iconv/iso-8859-9.cct +share/iconv/johab.cct +share/iconv/koi8-ru.cct +share/iconv/mac-ce.cct +share/iconv/mac-croatian.cct +share/iconv/mac-cyrillic.cct +share/iconv/mac-dingbats.cct +share/iconv/mac-greek.cct +share/iconv/mac-iceland.cct +share/iconv/mac-japan.cct +share/iconv/mac-roman.cct +share/iconv/mac-romania.cct +share/iconv/mac-thai.cct +share/iconv/mac-turkish.cct +share/iconv/mac-ukraine.cct +share/iconv/windows-1250.cct +share/iconv/windows-1251.cct +share/iconv/windows-1252.cct +share/iconv/windows-1253.cct +share/iconv/windows-1254.cct +share/iconv/windows-1255.cct +share/iconv/windows-1256.cct +share/iconv/windows-1257.cct +share/iconv/windows-1258.cct +@unexec sed '/^# BEGIN iconv-extra$/,/^# END iconv-extra$/d' %B/charset.aliases > %B/charset.aliases.new && mv -f %B/charset.aliases.new %B/charset.aliases >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 Nov 28 14: 0:36 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4F2F37B698 for ; Tue, 28 Nov 2000 14:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eASM02E22244; Tue, 28 Nov 2000 14:00:02 -0800 (PST) (envelope-from gnats) Received: from alpha.dante.org.uk (alpha.dante.org.uk [193.63.211.19]) by hub.freebsd.org (Postfix) with ESMTP id 8FA2F37B402 for ; Tue, 28 Nov 2000 13:54:27 -0800 (PST) Received: from joy by alpha.dante.org.uk with local (Exim 3.12 #4) id 140shm-0003kC-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 28 Nov 2000 21:54:26 +0000 Message-Id: Date: Tue, 28 Nov 2000 21:54:26 +0000 From: Konstantin.Chuguev@dante.org.uk Reply-To: Konstantin.Chuguev@dante.org.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23165: Update port: converters/iconv-rfc1345 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23165 >Category: ports >Synopsis: Update port: converters/iconv-rfc1345 >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 Nov 28 14:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Konstantin Chuguev >Release: FreeBSD 5.0-CURRENT i386 >Organization: DANTE >Environment: >Description: New version of iconv-rfc1345 for iconv-2.0 >How-To-Repeat: >Fix: diff -ruN iconv-rfc1345.orig/Makefile iconv-rfc1345/Makefile --- iconv-rfc1345.orig/Makefile Tue Nov 28 21:25:08 2000 +++ iconv-rfc1345/Makefile Tue Nov 28 19:01:34 2000 @@ -2,17 +2,17 @@ # Date created: 10 September 2000 # Whom: Konstantin Chuguev # -# $FreeBSD: ports/converters/iconv-rfc1345/Makefile,v 1.2 2000/09/24 21:48:03 knu Exp $ +# $FreeBSD$ # PORTNAME= iconv-rfc1345 -PORTVERSION= 1.1 +PORTVERSION= 2.0 CATEGORIES= converters MASTER_SITES= http://www.dante.net/staff/konstantin/FreeBSD/iconv/ MAINTAINER= Konstantin.Chuguev@dante.org.uk -LIB_DEPENDS= iconv.1:${PORTSDIR}/converters/iconv +LIB_DEPENDS= iconv.2:${PORTSDIR}/converters/iconv USE_PERL5= yes diff -ruN iconv-rfc1345.orig/distinfo iconv-rfc1345/distinfo --- iconv-rfc1345.orig/distinfo Tue Nov 28 21:25:08 2000 +++ iconv-rfc1345/distinfo Tue Nov 28 19:01:47 2000 @@ -1 +1 @@ -MD5 (iconv-rfc1345-1.1.tar.gz) = 8d41659f895895dd6a0ea05ca7b63872 +MD5 (iconv-rfc1345-2.0.tar.gz) = 6b3c03b5bbc2d065c589517366e33c47 diff -ruN iconv-rfc1345.orig/pkg-descr iconv-rfc1345/pkg-descr --- iconv-rfc1345.orig/pkg-descr Tue Nov 28 21:25:08 2000 +++ iconv-rfc1345/pkg-descr Tue Nov 28 19:02:20 2000 @@ -1,6 +1,6 @@ ICONV is the library for conversion between various charsets. -There are 108 charset modules in this port: those for most charsets +There are 108 charset tables in this port: those for most charsets presented in RFC1345 but not included into the iconv and iconv-extra packages. diff -ruN iconv-rfc1345.orig/pkg-plist iconv-rfc1345/pkg-plist --- iconv-rfc1345.orig/pkg-plist Tue Nov 28 21:25:08 2000 +++ iconv-rfc1345/pkg-plist Tue Nov 28 19:15:29 2000 @@ -1,286 +1,109 @@ -lib/iconv/851.so -lib/iconv/904.so -lib/iconv/ansi_x3.110-1983.so -lib/iconv/arabic7.so -lib/iconv/asmo_449.so -lib/iconv/bs_4730.so -lib/iconv/bs_viewdata.so -lib/iconv/ca.so -lib/iconv/cp-ar.so -lib/iconv/cp038.so -lib/iconv/cp273.so -lib/iconv/cp274.so -lib/iconv/cp275.so -lib/iconv/cp277.so -lib/iconv/cp278.so -lib/iconv/cp280.so -lib/iconv/cp281.so -lib/iconv/cp284.so -lib/iconv/cp285.so -lib/iconv/cp290.so -lib/iconv/cp297.so -lib/iconv/cp420.so -lib/iconv/cp423.so -lib/iconv/cp851.so -lib/iconv/cp868.so -lib/iconv/cp870.so -lib/iconv/cp871.so -lib/iconv/cp880.so -lib/iconv/cp891.so -lib/iconv/cp903.so -lib/iconv/cp904.so -lib/iconv/cp905.so -lib/iconv/cp918.so -lib/iconv/csa7-1.so -lib/iconv/csa7-2.so -lib/iconv/csa_t500-1983.so -lib/iconv/csa_z243.4-1985-1.so -lib/iconv/csa_z243.4-1985-2.so -lib/iconv/csa_z243.4-1985-gr.so -lib/iconv/csn_369103.so -lib/iconv/cuba.so -lib/iconv/de.so -lib/iconv/dec-mcs.so -lib/iconv/dec.so -lib/iconv/din_66003.so -lib/iconv/dk.so -lib/iconv/ds2089.so -lib/iconv/ds_2089.so -lib/iconv/e13b.so -lib/iconv/ebcdic-at-de-a.so -lib/iconv/ebcdic-at-de.so -lib/iconv/ebcdic-be.so -lib/iconv/ebcdic-br.so -lib/iconv/ebcdic-ca-fr.so -lib/iconv/ebcdic-cp-ar1.so -lib/iconv/ebcdic-cp-ar2.so -lib/iconv/ebcdic-cp-dk.so -lib/iconv/ebcdic-cp-es.so -lib/iconv/ebcdic-cp-fi.so -lib/iconv/ebcdic-cp-fr.so -lib/iconv/ebcdic-cp-gb.so -lib/iconv/ebcdic-cp-gr.so -lib/iconv/ebcdic-cp-is.so -lib/iconv/ebcdic-cp-it.so -lib/iconv/ebcdic-cp-no.so -lib/iconv/ebcdic-cp-roece.so -lib/iconv/ebcdic-cp-se.so -lib/iconv/ebcdic-cp-tr.so -lib/iconv/ebcdic-cp-yu.so -lib/iconv/ebcdic-cyrillic.so -lib/iconv/ebcdic-dk-no-a.so -lib/iconv/ebcdic-dk-no.so -lib/iconv/ebcdic-es-a.so -lib/iconv/ebcdic-es-s.so -lib/iconv/ebcdic-es.so -lib/iconv/ebcdic-fi-se-a.so -lib/iconv/ebcdic-fi-se.so -lib/iconv/ebcdic-fr.so -lib/iconv/ebcdic-int.so -lib/iconv/ebcdic-it.so -lib/iconv/ebcdic-jp-e.so -lib/iconv/ebcdic-jp-kana.so -lib/iconv/ebcdic-pt.so -lib/iconv/ebcdic-uk.so -lib/iconv/ebcdic-us.so -lib/iconv/ecma-cyrillic.so -lib/iconv/es.so -lib/iconv/es2.so -lib/iconv/fi.so -lib/iconv/fr.so -lib/iconv/gb.so -lib/iconv/gb_1988-80.so -lib/iconv/gost_19768-74.so -lib/iconv/greek-ccitt.so -lib/iconv/greek7-old.so -lib/iconv/greek7.so -lib/iconv/hp-roman8.so -lib/iconv/hu.so -lib/iconv/ibm038.so -lib/iconv/ibm273.so -lib/iconv/ibm274.so -lib/iconv/ibm275.so -lib/iconv/ibm277.so -lib/iconv/ibm278.so -lib/iconv/ibm280.so -lib/iconv/ibm281.so -lib/iconv/ibm284.so -lib/iconv/ibm285.so -lib/iconv/ibm290.so -lib/iconv/ibm297.so -lib/iconv/ibm420.so -lib/iconv/ibm423.so -lib/iconv/ibm851.so -lib/iconv/ibm868.so -lib/iconv/ibm870.so -lib/iconv/ibm871.so -lib/iconv/ibm880.so -lib/iconv/ibm891.so -lib/iconv/ibm903.so -lib/iconv/ibm904.so -lib/iconv/ibm905.so -lib/iconv/ibm918.so -lib/iconv/iec_p27-1.so -lib/iconv/inis-8.so -lib/iconv/inis-cyrillic.so -lib/iconv/inis.so -lib/iconv/irv.so -lib/iconv/iso-ir-10.so -lib/iconv/iso-ir-102.so -lib/iconv/iso-ir-103.so -lib/iconv/iso-ir-11.so -lib/iconv/iso-ir-111.so -lib/iconv/iso-ir-121.so -lib/iconv/iso-ir-122.so -lib/iconv/iso-ir-123.so -lib/iconv/iso-ir-128.so -lib/iconv/iso-ir-13.so -lib/iconv/iso-ir-139.so -lib/iconv/iso-ir-14.so -lib/iconv/iso-ir-141.so -lib/iconv/iso-ir-142.so -lib/iconv/iso-ir-143.so -lib/iconv/iso-ir-146.so -lib/iconv/iso-ir-147.so -lib/iconv/iso-ir-15.so -lib/iconv/iso-ir-150.so -lib/iconv/iso-ir-151.so -lib/iconv/iso-ir-152.so -lib/iconv/iso-ir-153.so -lib/iconv/iso-ir-154.so -lib/iconv/iso-ir-155.so -lib/iconv/iso-ir-158.so -lib/iconv/iso-ir-16.so -lib/iconv/iso-ir-17.so -lib/iconv/iso-ir-18.so -lib/iconv/iso-ir-19.so -lib/iconv/iso-ir-2.so -lib/iconv/iso-ir-21.so -lib/iconv/iso-ir-25.so -lib/iconv/iso-ir-27.so -lib/iconv/iso-ir-37.so -lib/iconv/iso-ir-4.so -lib/iconv/iso-ir-47.so -lib/iconv/iso-ir-49.so -lib/iconv/iso-ir-50.so -lib/iconv/iso-ir-51.so -lib/iconv/iso-ir-54.so -lib/iconv/iso-ir-55.so -lib/iconv/iso-ir-57.so -lib/iconv/iso-ir-60.so -lib/iconv/iso-ir-61.so -lib/iconv/iso-ir-69.so -lib/iconv/iso-ir-70.so -lib/iconv/iso-ir-8-1.so -lib/iconv/iso-ir-8-2.so -lib/iconv/iso-ir-84.so -lib/iconv/iso-ir-85.so -lib/iconv/iso-ir-86.so -lib/iconv/iso-ir-88.so -lib/iconv/iso-ir-89.so -lib/iconv/iso-ir-9-1.so -lib/iconv/iso-ir-9-2.so -lib/iconv/iso-ir-90.so -lib/iconv/iso-ir-91.so -lib/iconv/iso-ir-92.so -lib/iconv/iso-ir-93.so -lib/iconv/iso-ir-94.so -lib/iconv/iso-ir-95.so -lib/iconv/iso-ir-96.so -lib/iconv/iso-ir-98.so -lib/iconv/iso-ir-99.so -lib/iconv/iso646-ca.so -lib/iconv/iso646-ca2.so -lib/iconv/iso646-cu.so -lib/iconv/iso646-de.so -lib/iconv/iso646-dk.so -lib/iconv/iso646-es.so -lib/iconv/iso646-es2.so -lib/iconv/iso646-fi.so -lib/iconv/iso646-fr.so -lib/iconv/iso646-fr1.so -lib/iconv/iso646-gb.so -lib/iconv/iso646-hu.so -lib/iconv/iso646-it.so -lib/iconv/iso646-jp-ocr-a.so -lib/iconv/iso646-jp-ocr-b.so -lib/iconv/iso646-jp.so -lib/iconv/iso646-kr.so -lib/iconv/iso646-no.so -lib/iconv/iso646-no2.so -lib/iconv/iso646-pt.so -lib/iconv/iso646-pt2.so -lib/iconv/iso646-se.so -lib/iconv/iso646-se2.so -lib/iconv/iso646-yu.so -lib/iconv/iso_10367-box.so -lib/iconv/iso_2033-1983.so -lib/iconv/iso_5427.so -lib/iconv/iso_5427:1981.so -lib/iconv/iso_5428:1980.so -lib/iconv/iso_646.irv:1983.so -lib/iconv/iso_6937-2-25.so -lib/iconv/iso_6937-2-add.so -lib/iconv/iso_8859-supp.so -lib/iconv/iso_9036.so -lib/iconv/it.so -lib/iconv/jis_c6220-1969-jp.so -lib/iconv/jis_c6220-1969-ro.so -lib/iconv/jis_c6220-1969.so -lib/iconv/jis_c6229-1984-a.so -lib/iconv/jis_c6229-1984-b-add.so -lib/iconv/jis_c6229-1984-b.so -lib/iconv/jis_c6229-1984-hand-add.so -lib/iconv/jis_c6229-1984-hand.so -lib/iconv/jis_c6229-1984-kana.so -lib/iconv/jp-ocr-a.so -lib/iconv/jp-ocr-b-add.so -lib/iconv/jp-ocr-b.so -lib/iconv/jp-ocr-hand-add.so -lib/iconv/jp-ocr-hand.so -lib/iconv/jp.so -lib/iconv/js.so -lib/iconv/jus_i.b1.002.so -lib/iconv/jus_i.b1.003-mac.so -lib/iconv/jus_i.b1.003-serb.so -lib/iconv/katakana.so -lib/iconv/ksc5636.so -lib/iconv/lap.so -lib/iconv/latin-greek-1.so -lib/iconv/latin-greek.so -lib/iconv/latin-lap.so -lib/iconv/latin1-2-5.so -lib/iconv/mac.so -lib/iconv/macedonian.so -lib/iconv/macintosh.so -lib/iconv/msz_7795.3.so -lib/iconv/naplps.so -lib/iconv/nats-dano-add.so -lib/iconv/nats-dano.so -lib/iconv/nats-sefi-add.so -lib/iconv/nats-sefi.so -lib/iconv/nc_nc00-10:81.so -lib/iconv/nf_z_62-010.so -lib/iconv/nf_z_62-010_(1973).so -lib/iconv/no.so -lib/iconv/no2.so -lib/iconv/ns_4551-1.so -lib/iconv/ns_4551-2.so -lib/iconv/pt.so -lib/iconv/pt2.so -lib/iconv/r8.so -lib/iconv/roman8.so -lib/iconv/se.so -lib/iconv/se2.so -lib/iconv/sen_850200_b.so -lib/iconv/sen_850200_c.so -lib/iconv/serbian.so -lib/iconv/st_sev_358-88.so -lib/iconv/t.101-g2.so -lib/iconv/t.61-7bit.so -lib/iconv/t.61-8bit.so -lib/iconv/t.61.so -lib/iconv/uk.so -lib/iconv/videotex-suppl.so -lib/iconv/x0201-7.so -lib/iconv/yu.so +share/iconv/cp038.cct +share/iconv/cp273.cct +share/iconv/cp274.cct +share/iconv/cp275.cct +share/iconv/cp277.cct +share/iconv/cp278.cct +share/iconv/cp280.cct +share/iconv/cp281.cct +share/iconv/cp284.cct +share/iconv/cp285.cct +share/iconv/cp290.cct +share/iconv/cp297.cct +share/iconv/cp420.cct +share/iconv/cp423.cct +share/iconv/cp851.cct +share/iconv/cp868.cct +share/iconv/cp870.cct +share/iconv/cp871.cct +share/iconv/cp880.cct +share/iconv/cp891.cct +share/iconv/cp903.cct +share/iconv/cp904.cct +share/iconv/cp905.cct +share/iconv/cp918.cct +share/iconv/dec-mcs.cct +share/iconv/ebcdic-at-de-a.cct +share/iconv/ebcdic-at-de.cct +share/iconv/ebcdic-ca-fr.cct +share/iconv/ebcdic-dk-no-a.cct +share/iconv/ebcdic-dk-no.cct +share/iconv/ebcdic-es-a.cct +share/iconv/ebcdic-es-s.cct +share/iconv/ebcdic-es.cct +share/iconv/ebcdic-fi-se-a.cct +share/iconv/ebcdic-fi-se.cct +share/iconv/ebcdic-fr.cct +share/iconv/ebcdic-it.cct +share/iconv/ebcdic-pt.cct +share/iconv/ebcdic-uk.cct +share/iconv/ebcdic-us.cct +share/iconv/hp-roman8.cct +share/iconv/iso-ir-10.cct +share/iconv/iso-ir-102.cct +share/iconv/iso-ir-103.cct +share/iconv/iso-ir-11.cct +share/iconv/iso-ir-111.cct +share/iconv/iso-ir-121.cct +share/iconv/iso-ir-122.cct +share/iconv/iso-ir-123.cct +share/iconv/iso-ir-128.cct +share/iconv/iso-ir-13.cct +share/iconv/iso-ir-139.cct +share/iconv/iso-ir-14.cct +share/iconv/iso-ir-141.cct +share/iconv/iso-ir-142.cct +share/iconv/iso-ir-143.cct +share/iconv/iso-ir-146.cct +share/iconv/iso-ir-147.cct +share/iconv/iso-ir-15.cct +share/iconv/iso-ir-150.cct +share/iconv/iso-ir-151.cct +share/iconv/iso-ir-152.cct +share/iconv/iso-ir-153.cct +share/iconv/iso-ir-154.cct +share/iconv/iso-ir-155.cct +share/iconv/iso-ir-158.cct +share/iconv/iso-ir-16.cct +share/iconv/iso-ir-17.cct +share/iconv/iso-ir-18.cct +share/iconv/iso-ir-19.cct +share/iconv/iso-ir-2.cct +share/iconv/iso-ir-21.cct +share/iconv/iso-ir-25.cct +share/iconv/iso-ir-27.cct +share/iconv/iso-ir-37.cct +share/iconv/iso-ir-4.cct +share/iconv/iso-ir-47.cct +share/iconv/iso-ir-49.cct +share/iconv/iso-ir-50.cct +share/iconv/iso-ir-51.cct +share/iconv/iso-ir-54.cct +share/iconv/iso-ir-55.cct +share/iconv/iso-ir-57.cct +share/iconv/iso-ir-60.cct +share/iconv/iso-ir-61.cct +share/iconv/iso-ir-69.cct +share/iconv/iso-ir-70.cct +share/iconv/iso-ir-8-1.cct +share/iconv/iso-ir-8-2.cct +share/iconv/iso-ir-84.cct +share/iconv/iso-ir-85.cct +share/iconv/iso-ir-86.cct +share/iconv/iso-ir-88.cct +share/iconv/iso-ir-89.cct +share/iconv/iso-ir-9-1.cct +share/iconv/iso-ir-9-2.cct +share/iconv/iso-ir-90.cct +share/iconv/iso-ir-91.cct +share/iconv/iso-ir-92.cct +share/iconv/iso-ir-93.cct +share/iconv/iso-ir-94.cct +share/iconv/iso-ir-95.cct +share/iconv/iso-ir-96.cct +share/iconv/iso-ir-98.cct +share/iconv/iso-ir-99.cct +share/iconv/iso646-dk.cct +share/iconv/iso646-kr.cct +share/iconv/macintosh.cct +@unexec sed '/^# BEGIN iconv-rfc1345$/,/^# END iconv-rfc1345$/d' %B/charset.aliases > %B/charset.aliases.new && mv -f %B/charset.aliases.new %B/charset.aliases >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 Nov 28 14: 8:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-4.cisco.com (sj-msg-core-4.cisco.com [171.71.163.10]) by hub.freebsd.org (Postfix) with ESMTP id 1E46937B400 for ; Tue, 28 Nov 2000 14:08:53 -0800 (PST) Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by sj-msg-core-4.cisco.com (8.9.3/8.9.1) with ESMTP id OAA11747; Tue, 28 Nov 2000 14:08:47 -0800 (PST) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.1/8.11.1) id eASM8lO60591; Tue, 28 Nov 2000 14:08:47 -0800 (PST) (envelope-from bmah) Message-Id: <200011282208.eASM8lO60591@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Peter Pentchev Cc: "Jason R. Mastaler" , freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features In-Reply-To: <20001128231806.A318@ringworld.oblivion.bg> References: <00112811292900.19785@nightshade> <20001128231806.A318@ringworld.oblivion.bg> Comments: In-reply-to Peter Pentchev message dated "Tue, 28 Nov 2000 23:18:06 +0200." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_1899654642P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Tue, 28 Nov 2000 14:08:47 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_1899654642P Content-Type: text/plain; charset=us-ascii If memory serves me right, Peter Pentchev wrote: > On Tue, Nov 28, 2000 at 11:29:29AM -0700, Jason R. Mastaler wrote: > > I've been looking at the NetBSD package system lately to see how it > > compares to FreeBSD's. It seems to have quite a few additional > > features. > > > > For one thing, it has more "make" targets. Has anyone looked into > > incorporating these? Here are some noteworthy examples. For more > > info, see More != better. :-) But in seriousness, I thought there was some talk about adopting some parts of NetBSD's pkgsrc system for FreeBSD, discussed on this list at one point in the past. > Some of these already exist in the Ports collection in one way or another. > > > * update: > > This target causes the current package to be updated to the latest > > version. The package and all depending packages first get > > deinstalled, then current versions of the corresponding packages > > get compiled and installed. This is similar to manually noting > > which packages are currently installed, then performing a series of > > "make deinstall" and and "make install" (or whatever DEPENDS_TARGET > > is set to) for these packages. > > This is being done at the moment - the -o (origin) option to pkg_add, > and some changes to bsd.port.mk, which I believe are already implemented > in -current and are awaiting MFC real-soon-now. Well...almost but not quite. I think the work with pkg_add and bsd.port.mk is a prerequesite to doing an update target. The pkg_add modification is in 5-CURRENT and 4-STABLE; the bsd.port.mk is awaiting a commit. This won't give us the automagic package updating capabilities, but it'll help. > > * show-downlevel: > > This target shows nothing if the package is not installed. If a > > version of this package is installed, but is not the version > > provided in this version of pkgsrc, then a warning message is > > displayed. This target can be used to show which of your installed > > packages are downlevel, and so the old versions can be deleted, and > > the current ones added. > > pkg_version, which will get even better once port origins work. Yep. Actually, if you go and apply the upcoming bsd.port.mk patch (see above), pkg_version will use the origin information in any ports installed after that. I've been running my workstations that way for a couple months. > > * show-pkgsrc-dir: > > This target shows the directory in the pkgsrc hierarchy from which > > the package can be built and installed. This may not be the same > > directory as the one from which the package was installed. This > > target is intended to be used by people who may wish to upgrade > > many packages on a single host, and can be invoked from the > > top-level pkgsrc Makefile by using the target > > "show-host-specific-pkgs" > > Hmm.. That sounds a little like pkg_info with the origin option. > > * bulk-package: > > Used to do bulk builds. If an appropriate binary package already > > exists, no action is taken. If not, this target will compile, > > install and package it (and it's depends, if PKG_DEPENDS is set > > properly, see section 3.2.1). After creating the binary package, > > the sources, the just-installed package and it's required packages > > are removed, preserving free disk space. > > make all install package clean? Agreed. Bruce. --==_Exmh_1899654642P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6JCzv2MoxcVugUsMRAmOQAKCQpRp9X1fuIaust6CVZZw6JzgljQCcCjqT wJAg4/rBWiqeD8+y+BAyOnI= =hm2B -----END PGP SIGNATURE----- --==_Exmh_1899654642P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 14:22:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id DDC9337B400 for ; Tue, 28 Nov 2000 14:22:12 -0800 (PST) Received: (qmail 3978 invoked by uid 1000); 28 Nov 2000 22:21:42 -0000 Date: Wed, 29 Nov 2000 00:21:42 +0200 From: Peter Pentchev To: freebsd-ports@FreeBSD.org Cc: "Jason R. Mastaler" Subject: Re: NetBSD package system features Message-ID: <20001129002142.B318@ringworld.oblivion.bg> Mail-Followup-To: freebsd-ports@FreeBSD.org, "Jason R. Mastaler" References: <00112811292900.19785@nightshade> <20001128231806.A318@ringworld.oblivion.bg> <200011282208.eASM8lO60591@bmah-freebsd-0.cisco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011282208.eASM8lO60591@bmah-freebsd-0.cisco.com>; from bmah@FreeBSD.ORG on Tue, Nov 28, 2000 at 02:08:47PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 28, 2000 at 02:08:47PM -0800, Bruce A. Mah wrote: > If memory serves me right, Peter Pentchev wrote: > > On Tue, Nov 28, 2000 at 11:29:29AM -0700, Jason R. Mastaler wrote: > > > I've been looking at the NetBSD package system lately to see how it > > > compares to FreeBSD's. It seems to have quite a few additional > > > features. > > > > > > For one thing, it has more "make" targets. Has anyone looked into > > > incorporating these? Here are some noteworthy examples. For more > > > info, see > > More != better. :-) > > But in seriousness, I thought there was some talk about adopting some > parts of NetBSD's pkgsrc system for FreeBSD, discussed on this list at > one point in the past. > > > Some of these already exist in the Ports collection in one way or another. > > > > > * update: > > > This target causes the current package to be updated to the latest > > > version. The package and all depending packages first get > > > deinstalled, then current versions of the corresponding packages > > > get compiled and installed. This is similar to manually noting > > > which packages are currently installed, then performing a series of > > > "make deinstall" and and "make install" (or whatever DEPENDS_TARGET > > > is set to) for these packages. > > > > This is being done at the moment - the -o (origin) option to pkg_add, > > and some changes to bsd.port.mk, which I believe are already implemented > > in -current and are awaiting MFC real-soon-now. > > Well...almost but not quite. I think the work with pkg_add and > bsd.port.mk is a prerequesite to doing an update target. The pkg_add > modification is in 5-CURRENT and 4-STABLE; the bsd.port.mk is awaiting > a commit. > > This won't give us the automagic package updating capabilities, but > it'll help. Well, yeah, I knew that; I just forgot to mention it :) But the truth is, having the origin in packages will help updating *very* much. I might even go so far in my enthusiasm as to actually draft some kind of update utility (I do not feel all that warm and fuzzy about mucking up /usr/ports/Mk makefiles :) > > > * show-downlevel: > > > This target shows nothing if the package is not installed. If a > > > version of this package is installed, but is not the version > > > provided in this version of pkgsrc, then a warning message is > > > displayed. This target can be used to show which of your installed > > > packages are downlevel, and so the old versions can be deleted, and > > > the current ones added. > > > > pkg_version, which will get even better once port origins work. > > Yep. Actually, if you go and apply the upcoming bsd.port.mk patch (see > above), pkg_version will use the origin information in any ports > installed after that. I've been running my workstations that way for a > couple months. > > > > * show-pkgsrc-dir: > > > This target shows the directory in the pkgsrc hierarchy from which > > > the package can be built and installed. This may not be the same > > > directory as the one from which the package was installed. This > > > target is intended to be used by people who may wish to upgrade > > > many packages on a single host, and can be invoked from the > > > top-level pkgsrc Makefile by using the target > > > "show-host-specific-pkgs" > > > > Hmm.. > > That sounds a little like pkg_info with the origin option. > > > > * bulk-package: > > > Used to do bulk builds. If an appropriate binary package already > > > exists, no action is taken. If not, this target will compile, > > > install and package it (and it's depends, if PKG_DEPENDS is set > > > properly, see section 3.2.1). After creating the binary package, > > > the sources, the just-installed package and it's required packages > > > are removed, preserving free disk space. > > > > make all install package clean? > > Agreed. Again, almost but not quite ;) A bit closer to the mark: make all install package deinstall clean G'luck, Peter -- This sentence claims to be an Epimenides paradox, but it is lying. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 17:46:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by hub.freebsd.org (Postfix) with ESMTP id 4D9BC37B400 for ; Tue, 28 Nov 2000 17:46:50 -0800 (PST) Received: from waterblue.imgsrc.co.jp (localhost [127.0.0.1]) by waterblue.imgsrc.co.jp (8.11.0/8.11.0) with ESMTP id eAT1kfY42517; Wed, 29 Nov 2000 10:46:42 +0900 (JST) Date: Wed, 29 Nov 2000 10:46:41 +0900 Message-ID: <7md7ff4kji.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: Dave Viner Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Xerces-C Parser In-Reply-To: <3A22B491.5BF00317@yahoo-inc.com> References: <3A22B491.5BF00317@yahoo-inc.com> User-Agent: Wanderlust/2.3.92 (Roam) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 27 Nov 2000 19:23:40 GMT, Dave Viner wrote: > Is anyone interested in helping to port it? I have a patch that allows > it to compile, but i can't get it to work properly. Please post patches to this list. I'll try to review it if I get time for it... -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 18: 6:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from kronos.usol.com (kronos.usol.com [208.232.58.25]) by hub.freebsd.org (Postfix) with ESMTP id 46AE437B401 for ; Tue, 28 Nov 2000 18:06:58 -0800 (PST) Received: from quagea.org (pm14-38.usol.com [63.64.150.246]) by kronos.usol.com (8.11.1/8.11.0) with SMTP id eAT26iQ28860 for ; Tue, 28 Nov 2000 21:06:46 -0500 From: Nectioch Date: Tue, 28 Nov 2000 21:10:45 -0500 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: freebsd-ports@FreeBSD.ORG Subject: Re: xmms port make problem MIME-Version: 1.0 Message-Id: <00112821104500.00288@quagea.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks eSk. I'll be waiting for 1.2.4 and try that. It's funny that it's just that file that messes up. (1.2.3) Everything else I download works just fine even other files from ftp.xmms.org. I've had stranger events occur. Nectioch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 18:29:44 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 033DF37B400; Tue, 28 Nov 2000 18:29:43 -0800 (PST) Received: (from msmith@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAT2Tg470298; Tue, 28 Nov 2000 18:29:42 -0800 (PST) (envelope-from msmith) Date: Tue, 28 Nov 2000 18:29:42 -0800 (PST) From: Message-Id: <200011290229.eAT2Tg470298@freefall.freebsd.org> To: cnh@hal9000.ivmg.net, msmith@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22558: new port -- net/tcpreplay Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port -- net/tcpreplay State-Changed-From-To: open->closed State-Changed-By: msmith State-Changed-When: Tue Nov 28 18:29:26 PST 2000 State-Changed-Why: Port committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22558 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 19:30: 9 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B0C437B699 for ; Tue, 28 Nov 2000 19:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAT3U1l79179; Tue, 28 Nov 2000 19:30:01 -0800 (PST) (envelope-from gnats) Received: from venus.bsdguru.com (unknown [207.113.133.11]) by hub.freebsd.org (Postfix) with ESMTP id 080D137B400 for ; Tue, 28 Nov 2000 19:23:02 -0800 (PST) Received: by venus.bsdguru.com (Postfix, from userid 1001) id A4B0D5A0; Tue, 28 Nov 2000 19:22:54 -0800 (PST) Message-Id: <20001129032254.A4B0D5A0@venus.bsdguru.com> Date: Tue, 28 Nov 2000 19:22:54 -0800 (PST) From: blovett@oneinsane.net Reply-To: blovett@oneinsane.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23167: Change request for nemesis port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23167 >Category: ports >Synopsis: change request >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 Nov 28 19:30:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Ben Lovett >Release: FreeBSD 4.1.1-STABLE i386 >Organization: San Diego BSD Users Group [http://sdbug.bsdguru.com] >Environment: FreeBSD venus.bsdguru.com 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Wed Oct 25 18:10:15 PDT 2000 root@luna.bsdguru.com:/usr/obj/usr/src/sys/VENUS i386 >Description: obecian has released an ICMP checksum patch for nemesis version 1.1. The FreeBSD port does not include this patch, and I took it upon myself to add it. >How-To-Repeat: No problem exists ... >Fix: --- Makefile.orig Tue Nov 28 16:57:26 2000 +++ Makefile Tue Nov 28 16:59:35 2000 @@ -13,6 +13,11 @@ http://www.packetfactory.net/Projects/nemesis/ \ http://www.nol.net/~halogen/ +PATCH_SITES= http://packetninja.net/nemesis/ +PATCH_FILES= patch-nemesis-icmp_c + +PATCH_DIST_STRIP= -p0 + MAINTAINER= obrien@FreeBSD.org BUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet --- distinfo.orig Tue Nov 28 17:00:23 2000 +++ distinfo Tue Nov 28 17:00:33 2000 @@ -1 +1,2 @@ MD5 (nemesis-1.1.tar.gz) = 5c777f73900663f17df8da296aefc4c5 +MD5 (patch-nemesis-icmp_c) = f42d27d1c05b733d42401ec05885f78f >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 Nov 28 20:27:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.43.230.149]) by hub.freebsd.org (Postfix) with ESMTP id 478AC37B400 for ; Tue, 28 Nov 2000 20:27:21 -0800 (PST) Received: from hermes (hermes.gsicomp.on.ca [192.168.0.18]) by xena.gsicomp.on.ca (8.9.3/8.9.3) with SMTP id XAA43018 for ; Tue, 28 Nov 2000 23:27:20 -0500 (EST) (envelope-from matt@gsicomp.on.ca) Message-ID: <005b01c059bc$d8bc32b0$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: References: <00112811292900.19785@nightshade> Subject: Re: NetBSD package system features Date: Tue, 28 Nov 2000 23:28:38 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > For one thing, it has more "make" targets. Has anyone looked into > incorporating these? Here are some noteworthy examples. For more > info, see > > * update: > This target causes the current package to be updated to the latest > version. The package and all depending packages first get > deinstalled, then current versions of the corresponding packages > get compiled and installed. This is similar to manually noting > which packages are currently installed, then performing a series of > "make deinstall" and and "make install" (or whatever DEPENDS_TARGET > is set to) for these packages. This target scares me. Why? It is not uncommon to find an improperly-designed port in which the deinstall target *removes* configuration files. On a production system, this can be disastrous. (Case in point - I once did a 'make deinstall install' of my installed Apache+SSL+FP port a long while ago. Unfortunately it axed the config file (40 individually-configured vhosts and a whole whack of custom rewrite rules). Luckily I had a few hours to spare and recreated the config from memory. (Yes, there was a backup - but on an offline tape in another city.) For an inexperienced sysadmin, going into the root of the ports tree and saying "make update" would be a real neat thing to do, but it could end up trashing configurations and install versions of programs which among other things expect different configuration files and/or do things quite differently. (For example, cyrus-1.5.x vs cyrus-1.6.x. Or different releases of cyrus-sasl 1.5.x.) Perhaps I'm overreacting, but the ability for an 'update' target to work properly requires the semantics of the currently-intalled packages to not differ from the to-be-installed packages. In many cases, this is simply not the case. -- Matt Emmerton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 20:48:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from camus.cybercable.fr (camus.cybercable.fr [212.198.0.200]) by hub.freebsd.org (Postfix) with SMTP id 3CD2C37B400 for ; Tue, 28 Nov 2000 20:48:16 -0800 (PST) Received: (qmail 10640567 invoked from network); 29 Nov 2000 04:48:14 -0000 Received: from s011.dhcp212-229.cybercable.fr (HELO gits.dyndns.org) ([212.198.229.11]) (envelope-sender ) by camus.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 29 Nov 2000 04:48:14 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id eAT4mCU10156; Wed, 29 Nov 2000 05:48:12 +0100 (CET) (envelope-from clefevre@citeweb.net) To: "Tim Pushor" Cc: Subject: Re: KDE 2.0 Problems References: <0aed01c0589c$224d07f0$9828f99f@shl.com> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: "Tim Pushor"'s message of "Mon, 27 Nov 2000 11:01:50 -0700" From: Cyrille Lefevre Reply-To: clefevre@cybercable.fr Mail-Copies-To: never Date: 29 Nov 2000 05:48:11 +0100 Message-ID: Lines: 29 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Tim Pushor" writes: > I am having some trouble with KDE 2.0 and FreeBSD 4.x. (currently 4.2). I > have both compiled KDE from source, and installed the packages found in > packages-current on freebsd.org. me too. > When I fire up KDE, kwrited dies: The application kwrited (kwrited) crashed > and caused the signal 6 (SIGABRT) > The buttons (icons) on the top of the windows (like for minimize & maximize > etc) are garbled > Trying to run a konsole gives the same result as kwrited. me too. > As I am seeing no others with problems with KDE 2.0 and FreeBSD, surely I no, you're no alone :) > have something wrong with my environment.. KDE 1.2 runs fine.. me too. about my configuration. all is fresh upgrade, 4.2-STABLE and packages-4-current. Cyrille. -- home: mailto:clefevre@citeweb.net work: mailto:Cyrille.Lefevre@edf.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 20:57:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hercules.crossthread.com (hercules.crossthread.com [139.142.137.241]) by hub.freebsd.org (Postfix) with ESMTP id 932BA37B400 for ; Tue, 28 Nov 2000 20:57:07 -0800 (PST) Received: from dedalus (IRCUser@shaw.sux.com [24.67.124.178]) (authenticated) by hercules.crossthread.com (8.11.1/8.11.1) with ESMTP id eAT4voN34605; Tue, 28 Nov 2000 21:57:51 -0700 (MST) From: "Tim Pushor" To: Cc: Subject: RE: KDE 2.0 Problems Date: Tue, 28 Nov 2000 22:14:35 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 In-Reply-To: Importance: Normal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Then I guess it must be a problem with the port. At least its not just me having it :) Thanks.. Tim -----Original Message----- From: root@gits.dyndns.org [mailto:root@gits.dyndns.org]On Behalf Of Cyrille Lefevre Sent: Tuesday, November 28, 2000 9:48 PM To: Tim Pushor Cc: ports@FreeBSD.ORG Subject: Re: KDE 2.0 Problems "Tim Pushor" writes: > I am having some trouble with KDE 2.0 and FreeBSD 4.x. (currently 4.2). I > have both compiled KDE from source, and installed the packages found in > packages-current on freebsd.org. me too. > When I fire up KDE, kwrited dies: The application kwrited (kwrited) crashed > and caused the signal 6 (SIGABRT) > The buttons (icons) on the top of the windows (like for minimize & maximize > etc) are garbled > Trying to run a konsole gives the same result as kwrited. me too. > As I am seeing no others with problems with KDE 2.0 and FreeBSD, surely I no, you're no alone :) > have something wrong with my environment.. KDE 1.2 runs fine.. me too. about my configuration. all is fresh upgrade, 4.2-STABLE and packages-4-current. Cyrille. -- home: mailto:clefevre@citeweb.net work: mailto:Cyrille.Lefevre@edf.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 22:10: 9 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 79C5937B402 for ; Tue, 28 Nov 2000 22:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAT6A1s06912; Tue, 28 Nov 2000 22:10:01 -0800 (PST) (envelope-from gnats) Received: from mailhost.sclp.com (unknown [209.196.61.66]) by hub.freebsd.org (Postfix) with ESMTP id C3C7F37B400 for ; Tue, 28 Nov 2000 22:04:14 -0800 (PST) Received: from aguirre.la.mastaler.com (localhost [127.0.0.1]) by mailhost.sclp.com (Postfix) with SMTP id 0FEBCD049C for ; Wed, 29 Nov 2000 01:04:12 -0500 (EST) Received: (qmail 1172 invoked by uid 100); 29 Nov 2000 06:04:09 -0000 Message-Id: <20001129060409.1171.qmail@aguirre.la.mastaler.com> Date: 29 Nov 2000 06:04:09 -0000 From: "Jason R Mastaler" To: FreeBSD-gnats-submit@freebsd.org, nakai@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23169: gogo: invalid source download location Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23169 >Category: ports >Synopsis: invalid download location for gogo source >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 Nov 28 22:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jason R Mastaler >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: >Description: >How-To-Repeat: cd /usr/ports/audio/gogo && make fetch >Fix: Update the source download location. >Release-Note: >Audit-Trail: >Unformatted: >> gogo236.tgz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from http://homepage1.nifty.com/herumi/soft/gogo2/src/. fetch: gogo236.tgz: Not Found >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: gogo236.tgz: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/audio/gogo. *** Error code 1 Stop in /usr/ports/audio/gogo. *** Error code 1 Stop in /usr/ports/audio/gogo. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 22:20: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9756937B404 for ; Tue, 28 Nov 2000 22:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAT6K1v11884; Tue, 28 Nov 2000 22:20:01 -0800 (PST) (envelope-from gnats) Received: from mailhost.sclp.com (unknown [209.196.61.66]) by hub.freebsd.org (Postfix) with ESMTP id D3FF837B400 for ; Tue, 28 Nov 2000 22:16:38 -0800 (PST) Received: from aguirre.la.mastaler.com (localhost [127.0.0.1]) by mailhost.sclp.com (Postfix) with SMTP id 60199D049C for ; Wed, 29 Nov 2000 01:16:37 -0500 (EST) Received: (qmail 27769 invoked by uid 100); 29 Nov 2000 06:16:33 -0000 Message-Id: <20001129061633.27768.qmail@aguirre.la.mastaler.com> Date: 29 Nov 2000 06:16:33 -0000 From: "Jason R Mastaler" To: FreeBSD-gnats-submit@freebsd.org, kiri@pis.toba-cmt.ac.jp X-Send-Pr-Version: 3.2 Subject: ports/23171: xemacs-packages out of date Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23171 >Category: ports >Synopsis: port refers to old versions of many xemacs packages >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 28 22:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jason R Mastaler >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: >Description: Many of the xemacs packages in this port are out of date. For example, >How-To-Repeat: cd /usr/ports/editors/xemacs-packages && make fetch >Fix: Instead of hardcoding specific xemacs package versions, can you do a >= so that the port will work properly when new versions are released? >Release-Note: >Audit-Trail: >Unformatted: >> Attempting to fetch from ftp://ftp.xemacs.org/pub/xemacs/packages/. fetch: xemacs-devel-1.28-pkg.tar.gz: File unavailable (e.g., file not found, no access) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 22:53:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 14B7037B400; Tue, 28 Nov 2000 22:53:11 -0800 (PST) Received: by puck.firepipe.net (Postfix, from userid 1000) id 948DA18DB; Wed, 29 Nov 2000 01:53:10 -0500 (EST) Date: Wed, 29 Nov 2000 01:53:10 -0500 From: Will Andrews To: "David E. O'Brien" Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/ElectricFence pkg-plist ports/lang/TenDRA pkg-plist ports/print/a2ps43-letter pkg-plist ports/textproc/agrep pkg-plist ports/news/aub pkg-plist ports/shells/bash1 pkg-plist ports/print/bibcard pkg-plist ports/net/bounce pkg-plist ... Message-ID: <20001129015310.T566@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , "David E. O'Brien" , ports@FreeBSD.org References: <200011220017.QAA98090@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: <200011220017.QAA98090@freefall.freebsd.org>; from obrien@FreeBSD.org on Tue, Nov 21, 2000 at 04:17:18PM -0800 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 21, 2000 at 04:17:18PM -0800, David E. O'Brien wrote: > Modified files: > devel/ElectricFence pkg-plist [..] > Log: > Add $FreeBSD$'s which help me in problem reports. I've always wondered - should this be policy? It's policy in NetBSD (and maybe OpenBSD) to $Id$-ify all port/pkgsrc files. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 28 23:20:13 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF54137B402 for ; Tue, 28 Nov 2000 23:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAT7K1C21687; Tue, 28 Nov 2000 23:20:01 -0800 (PST) (envelope-from gnats) Received: from ex1.ncsa.uiuc.edu (ex1.ncsa.uiuc.edu [141.142.2.9]) by hub.freebsd.org (Postfix) with ESMTP id CF8A837B400; Tue, 28 Nov 2000 23:19:12 -0800 (PST) Received: from mx1.ncsa.uiuc.edu (mx1.ncsa.uiuc.edu [141.142.2.8]) by ex1.ncsa.uiuc.edu (8.11.0/8.11.0) with ESMTP id eAT7JAS05784; Wed, 29 Nov 2000 01:19:10 -0600 (CST) Received: from anduril.ncsa.uiuc.edu (anduril.ncsa.uiuc.edu [141.142.102.3]) by mx1.ncsa.uiuc.edu (8.11.0/8.11.0) with ESMTP id eAT7J9B06026; Wed, 29 Nov 2000 01:19:10 -0600 (CST) Received: from jdugan by anduril.ncsa.uiuc.edu with local (Exim 3.16 #1) id 1411WH-0000c9-00; Wed, 29 Nov 2000 01:19:09 -0600 Message-Id: Date: Wed, 29 Nov 2000 01:19:09 -0600 From: jdugan@ncsa.uiuc.edu Reply-To: jdugan@ncsa.uiuc.edu To: FreeBSD-gnats-submit@freebsd.org Cc: Kris Kennaway X-Send-Pr-Version: 3.2 Subject: ports/23172: update to the cfengine port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23172 >Category: ports >Synopsis: update cfengine 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: Tue Nov 28 23:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jon Dugan >Release: FreeBSD 4.2-STABLE i386 >Organization: NCSA >Environment: FreeBSD anduril.ncsa.uiuc.edu 4.2-STABLE FreeBSD 4.2-STABLE #0: Tue Nov 28 19:07:49 CST 2000 jdugan@anduril.ncsa.uiuc.edu:/usr/obj/usr/src/sys/ANDURIL i386 >Description: update to cfengine port >How-To-Repeat: n/a >Fix: Here's a shar of my port of the latest cfengine. I am not entirely sure what the compromise in the old one was, so I haven't tested this one to be sure it's fixed. I've Cc'd Kris Kennaway because he specifically asked for an update to this port on the ports list. This also fixes ports/21038 since the cfengine build does the right thing. # 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: # # cfengine # cfengine/Makefile # cfengine/distinfo # cfengine/files # cfengine/files/patch-ab # cfengine/files/patch-aa # cfengine/pkg-comment # cfengine/pkg-descr # cfengine/pkg-plist # echo c - cfengine mkdir -p cfengine > /dev/null 2>&1 echo x - cfengine/Makefile sed 's/^X//' >cfengine/Makefile << 'END-of-cfengine/Makefile' X# New ports collection makefile for: cfengine X# Date created: March 16, 1998 X# Whom: jseger@FreeBSD.org X# X# $FreeBSD: ports/sysutils/cfengine/Makefile,v 1.13 2000/10/11 06:49:39 kris Exp $ X# X XPORTNAME= cfengine XPORTVERSION= 1.6.0.b3 XCATEGORIES= sysutils XMASTER_SITES= ftp://ftp.iu.hioslo.no/pub/cfengine/ \ X ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= cfengine X XMAINTAINER= jseger@FreeBSD.org X X.if defined(PACKAGE_BUILDING) && !exists(/usr/include/tcpd.h) XLIB_DEPENDS= wrap.7:${PORTSDIR}/security/tcp_wrapper X.endif X XCFLAGS+= -pthread XUSE_AUTOCONF=yes XUSE_GMAKE=yes XMAKE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" X XMAN8= cfengine.8 X X.include END-of-cfengine/Makefile echo x - cfengine/distinfo sed 's/^X//' >cfengine/distinfo << 'END-of-cfengine/distinfo' XMD5 (cfengine-1.6.0.b3.tar.gz) = b698b7572d5f3b8eb05ace7b34cb3b90 END-of-cfengine/distinfo echo c - cfengine/files mkdir -p cfengine/files > /dev/null 2>&1 echo x - cfengine/files/patch-ab sed 's/^X//' >cfengine/files/patch-ab << 'END-of-cfengine/files/patch-ab' X--- src/classes.c.orig Wed Oct 20 03:41:30 1999 X+++ src/classes.c Tue Apr 25 16:37:00 2000 X@@ -97,7 +97,7 @@ X "irix4","ip*","4*", /* irix4 */ X "irix", "ip*","*", /* irix */ X "irix64","ip*","*", /* irix64 */ X- "freebsd","i?86","*", /* freebsd */ X+ "freebsd","*","*", /* freebsd */ X "sunos","i86pc","5*", /* solarisx86 */ X "bsd","*","*", /* bsd 4.3 */ X "newsos","*","*", /* newsos4 */ END-of-cfengine/files/patch-ab echo x - cfengine/files/patch-aa sed 's/^X//' >cfengine/files/patch-aa << 'END-of-cfengine/files/patch-aa' X--- src/Makefile.in.orig Wed Nov 29 00:04:45 2000 X+++ src/Makefile.in Wed Nov 29 00:13:19 2000 X@@ -80,19 +80,19 @@ X CFLAGS = @CFLAGS@ # -Wreturn-type -Wstrict-prototypes -Wmissing-prototypes # -Wuninitialized X YFLAGS = -d X LEXLIB = @LEXLIB@ X-LDADD = -L../pub -lpub X+LDADD = -L../pub -lpub -ldes X X sbin_PROGRAMS = cfengine cfd cfrun cfkey X X cfengine_SOURCES = cfengine.c do.c wrapper.c report.c client.c process.c ifconf.c image.c item.c item-ext.c item-file.c 2Dlist.c globals.c classes.c misc.c parse.c edittools.c patches.c install.c link.c tidy.c filedir.c eval.c modes.c chflags.c locks.c mount.c macro.c filenames.c varstring.c wildcard.c cfparse.y comparray.c read.c checksums.c proto.c filters.c copy.c repository.c rotate.c errors.c cflex.l net.c df.c log.c ! encrypt.c popen.c sensible.c acl.c dce_acl.c X X X-cfengine_LDADD = -L../pub -lpub $(LEXLIB) X+cfengine_LDADD = -L../pub -lpub $(LEXLIB) -ldes X X cfd_SOURCES = cfd.c parse.c install.c cfparse.c chflags.c cflex.l item.c item-ext.c varstring.c popen.c globals.c filenames.c macro.c eval.c read.c classes.c misc.c 2Dlist.c modes.c locks.c wildcard.c copy.c rotate.c net.c acl.c dce_acl.c log.c errors.c encrypt.c filters.c patches.c X X X-cfd_LDADD = -L../pub -lpub $(LEXLIB) X+cfd_LDADD = -L../pub -lpub $(LEXLIB) -ldes X X cfrun_SOURCES = cfrun.c item.c filenames.c proto.c popen.c net.c read.c log.c patches.c globals.c X END-of-cfengine/files/patch-aa echo x - cfengine/pkg-comment sed 's/^X//' >cfengine/pkg-comment << 'END-of-cfengine/pkg-comment' XGNU cfengine - a systems administration tool for networks END-of-cfengine/pkg-comment echo x - cfengine/pkg-descr sed 's/^X//' >cfengine/pkg-descr << 'END-of-cfengine/pkg-descr' Xcfengine lets you manage your network (including editing files automatically), Xin an object-oriented manner. END-of-cfengine/pkg-descr echo x - cfengine/pkg-plist sed 's/^X//' >cfengine/pkg-plist << 'END-of-cfengine/pkg-plist' Xinfo/cfengine-Reference.info Xinfo/cfengine-Reference.info-1 Xinfo/cfengine-Reference.info-2 Xinfo/cfengine-Reference.info-3 Xinfo/cfengine-Reference.info-4 Xinfo/cfengine-Reference.info-5 Xinfo/cfengine-Reference.info-6 Xinfo/cfengine-Reference.info-7 Xinfo/cfengine-Tutorial.info Xinfo/cfengine-Tutorial.info-1 Xinfo/cfengine-Tutorial.info-2 Xinfo/cfengine-Tutorial.info-3 Xinfo/cfengine-Tutorial.info-4 Xinfo/cfengine-Tutorial.info-5 Xsbin/cfengine Xsbin/cfd Xsbin/cfrun Xsbin/cfkey Xsbin/cfwrap Xsbin/cfmail Xsbin/cfmailfilter Xsbin/cfcron Xsbin/vicf Xsbin/cfdoc Xshare/cfengine/cfdaily Xshare/cfengine/start-cfd Xshare/cfengine/cfengine.el Xshare/cfengine/cf.chflags.example Xshare/cfengine/cf.freebsd.example Xshare/cfengine/cf.ftp.example Xshare/cfengine/cf.groups.example Xshare/cfengine/cf.linux.example Xshare/cfengine/cf.main.example Xshare/cfengine/cf.motd.example Xshare/cfengine/cf.preconf.example Xshare/cfengine/cf.services.example Xshare/cfengine/cf.site.example Xshare/cfengine/cf.solaris.example Xshare/cfengine/cf.sun4.example Xshare/cfengine/cf.users.example Xshare/cfengine/cfd.conf.example Xshare/cfengine/cfengine.conf.example Xshare/cfengine/cfrc.example Xshare/cfengine/cfrun.hosts.example Xshare/cfengine/html/cfengine-Reference.html Xshare/cfengine/html/cfengine-Tutorial.html Xshare/cfengine/html/cf-security.html Xshare/cfengine/doc/locks.ps Xshare/cfengine/doc/paper1.ps Xshare/cfengine/doc/paper2.ps X@dirrm share/cfengine/doc X@dirrm share/cfengine/html X@dirrm share/cfengine END-of-cfengine/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 Nov 29 0: 1:11 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17CAE37B400; Wed, 29 Nov 2000 00:01:10 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAT81AW27397; Wed, 29 Nov 2000 00:01:10 -0800 (PST) (envelope-from roam) Date: Wed, 29 Nov 2000 00:01:10 -0800 (PST) From: Message-Id: <200011290801.eAT81AW27397@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/23167: change request Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: change request Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: roam Responsible-Changed-When: Wed Nov 29 00:00:55 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=23167 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 0: 2:49 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA92937B400; Wed, 29 Nov 2000 00:02:47 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAT82lv27724; Wed, 29 Nov 2000 00:02:47 -0800 (PST) (envelope-from roam) Date: Wed, 29 Nov 2000 00:02:47 -0800 (PST) From: Message-Id: <200011290802.eAT82lv27724@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, nakai@FreeBSD.org Subject: Re: ports/23169: invalid download location for gogo source Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: invalid download location for gogo source Responsible-Changed-From-To: freebsd-ports->nakai Responsible-Changed-By: roam Responsible-Changed-When: Wed Nov 29 00:02:27 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=23169 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 0:22:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from slarti.muc.de (slarti.muc.de [193.149.48.10]) by hub.freebsd.org (Postfix) with SMTP id A8C1F37B402 for ; Wed, 29 Nov 2000 00:22:20 -0800 (PST) Received: (qmail 13984 invoked by uid 66); 29 Nov 2000 08:27:07 -0000 Received: from en by slarti with UUCP; Wed Nov 29 08:27:07 2000 -0000 Received: by en1.engelschall.com (Sendmail 8.11.0+) for freebsd-ports@freebsd.org id eAT8Hum51283; Wed, 29 Nov 2000 09:17:56 +0100 (CET) Date: Wed, 29 Nov 2000 09:17:56 +0100 From: "Ralf S. Engelschall" To: freebsd-ports@freebsd.org Subject: Re: KDE 2.0 Problems Message-ID: <20001129091756.A51005@engelschall.com> Reply-To: rse@engelschall.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Organization: Engelschall, Germany. X-Web-Homepage: http://www.engelschall.com/ X-PGP-Public-Key: https://www.engelschall.com/ho/rse/pgprse.asc X-PGP-Fingerprint: 00 C9 21 8E D1 AB 70 37 DD 67 A2 3A 0A 6F 8D A5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article you wrote: > Then I guess it must be a problem with the port. No, I don't think the port is broken, because I tried compiling QT 2.2.2 and KDE 2.0.0 under 4.2-STABLE from scratch manually -- the same results. The stuff crashes most of the time inside QT and/or inside function which deal with pseudo ttys (look at the backtrace which KDE shows it its segfault window). Ralf S. Engelschall rse@engelschall.com www.engelschall.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 1: 5:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 1EEA537B400; Wed, 29 Nov 2000 01:05:53 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eAT95mW89866; Wed, 29 Nov 2000 11:05:48 +0200 (EET) (envelope-from never) Date: Wed, 29 Nov 2000 11:05:48 +0200 From: Nevermind To: Ade Lovett Cc: Daniel Frazier , ports@FreeBSD.ORG Subject: Re: Evolution port difficulties...new info Message-ID: <20001129110548.K17181@nevermind.kiev.ua> References: <3A0B1C51.DE2CA38F@magpage.com> <3A240DCD.5A72C918@magpage.com> <20001128152639.X25483@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: <20001128152639.X25483@FreeBSD.org>; from ade@FreeBSD.ORG on Tue, Nov 28, 2000 at 03:26:40PM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, Ade Lovett! On Tue, Nov 28, 2000 at 03:26:40PM -0600, you wrote: > On Tue, Nov 28, 2000 at 02:55:57PM -0500, Daniel Frazier wrote: > > ln -s /usr/X11R6/bin/gtk12-config /usr/X11R6/bin/gtk-config > > ln -s /usr/local/bin/glib12-config /usr/local/bin/glib-config > Those two ln's are bad. Remove them. You *will* get burned > by having them there. I've done the same thing to build some ports which incorrectly reffered to gtk-config and gtk12-config was not found. > > Can anyone explain how/why this gtk mess happened? (Was it something I > > did or what?) > Sounds very much like a localized problem. -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 1:11:42 2000 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 C624937B402; Wed, 29 Nov 2000 01:11:33 -0800 (PST) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id 86BE113419; Wed, 29 Nov 2000 10:08:57 +0100 (CET) Date: Wed, 29 Nov 2000 10:08:57 +0100 From: Stijn Hoop To: Nevermind Cc: Ade Lovett , Daniel Frazier , ports@freebsd.org Subject: Re: Evolution port difficulties...new info Message-ID: <20001129100857.A21263@pcwin002.win.tue.nl> References: <3A0B1C51.DE2CA38F@magpage.com> <3A240DCD.5A72C918@magpage.com> <20001128152639.X25483@FreeBSD.org> <20001129110548.K17181@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001129110548.K17181@nevermind.kiev.ua>; from never@nevermind.kiev.ua on Wed, Nov 29, 2000 at 11:05:48AM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Wed, Nov 29, 2000 at 11:05:48AM +0200, Nevermind wrote: > Hello, Ade Lovett! > > On Tue, Nov 28, 2000 at 03:26:40PM -0600, you wrote: > > > On Tue, Nov 28, 2000 at 02:55:57PM -0500, Daniel Frazier wrote: > > > ln -s /usr/X11R6/bin/gtk12-config /usr/X11R6/bin/gtk-config > > > ln -s /usr/local/bin/glib12-config /usr/local/bin/glib-config > > Those two ln's are bad. Remove them. You *will* get burned > > by having them there. > I've done the same thing to build some ports which incorrectly reffered to > gtk-config and gtk12-config was not found. Somebody may correct me when I'm wrong, but most ports respect the environment variables GTK_CONFIG and GLIB_CONFIG. Just set them to the *FULL* path of the resp. config files, and the configure scripts will pick it up. HTH, --Stijn > > > Can anyone explain how/why this gtk mess happened? (Was it something I > > > did or what?) > > Sounds very much like a localized problem. > > -- > Alexandr P. Kovalenko http://nevermind.kiev.ua/ > NEVE-RIPE > > > 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 Wed Nov 29 1:14:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id 55C9537B404 for ; Wed, 29 Nov 2000 01:14:35 -0800 (PST) Received: (qmail 1678 invoked by uid 1000); 29 Nov 2000 09:14:01 -0000 Date: Wed, 29 Nov 2000 11:14:01 +0200 From: Peter Pentchev To: Nevermind Cc: Ade Lovett , Daniel Frazier , ports@FreeBSD.ORG Subject: Re: Evolution port difficulties...new info Message-ID: <20001129111401.B314@ringworld.oblivion.bg> Mail-Followup-To: Nevermind , Ade Lovett , Daniel Frazier , ports@FreeBSD.ORG References: <3A0B1C51.DE2CA38F@magpage.com> <3A240DCD.5A72C918@magpage.com> <20001128152639.X25483@FreeBSD.org> <20001129110548.K17181@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001129110548.K17181@nevermind.kiev.ua>; from never@nevermind.kiev.ua on Wed, Nov 29, 2000 at 11:05:48AM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Nov 29, 2000 at 11:05:48AM +0200, Nevermind wrote: > Hello, Ade Lovett! > > On Tue, Nov 28, 2000 at 03:26:40PM -0600, you wrote: > > > On Tue, Nov 28, 2000 at 02:55:57PM -0500, Daniel Frazier wrote: > > > ln -s /usr/X11R6/bin/gtk12-config /usr/X11R6/bin/gtk-config > > > ln -s /usr/local/bin/glib12-config /usr/local/bin/glib-config > > Those two ln's are bad. Remove them. You *will* get burned > > by having them there. > I've done the same thing to build some ports which incorrectly reffered to > gtk-config and gtk12-config was not found. A better solution would be adding the following to the ports Makefile: BUILD_DEPENDS= ${X11BASE}/bin/gtk12-config:${PORTSDIR}/x11-toolkits/gtk12/ CONFIGURE_ENV= GTK_CONFIG=${X11BASE}/bin/gtk12-config gtk12-config does live in ${X11BASE}, so depend on it; then, let the port configure script know where to look for it. Nearly all GTK-dependent programs honor GTK_CONFIG in their configure scripts. G'luck, Peter -- I am the meaning of this sentence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 1:14:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id D677737B401 for ; Wed, 29 Nov 2000 01:14:46 -0800 (PST) Received: (from kris@localhost) by citusc17.usc.edu (8.11.1/8.11.1) id eAT9FU698791; Wed, 29 Nov 2000 01:15:30 -0800 (PST) (envelope-from kris) Date: Wed, 29 Nov 2000 01:15:30 -0800 From: Kris Kennaway To: Matthew Emmerton Cc: freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features Message-ID: <20001129011530.A98724@citusc17.usc.edu> References: <00112811292900.19785@nightshade> <005b01c059bc$d8bc32b0$1200a8c0@gsicomp.on.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <005b01c059bc$d8bc32b0$1200a8c0@gsicomp.on.ca>; from matt@gsicomp.on.ca on Tue, Nov 28, 2000 at 11:28:38PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Nov 28, 2000 at 11:28:38PM -0500, Matthew Emmerton wrote: > (Case in point - I once did a 'make deinstall install' of my installed > Apache+SSL+FP port a long while ago. Unfortunately it axed the config file > (40 individually-configured vhosts and a whole whack of custom rewrite > rules). Luckily I had a few hours to spare and recreated the config from > memory. (Yes, there was a backup - but on an offline tape in another city.) Where's your PR of the ports with these problems? :) Kris --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjokyTIACgkQWry0BWjoQKXozQCgwwiSbgIZLgxflOwYBWXdC/ML qHYAoM1m9VO/1f0tCHaHzl1nQRWxYHfe =xILH -----END PGP SIGNATURE----- --lrZ03NoBR/3+SXJZ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 1:18:40 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F04D837B401; Wed, 29 Nov 2000 01:18:38 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAT9IcI42744; Wed, 29 Nov 2000 01:18:38 -0800 (PST) (envelope-from sobomax) Date: Wed, 29 Nov 2000 01:18:38 -0800 (PST) From: Message-Id: <200011290918.eAT9IcI42744@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/23160: Port update [maintainer]: port/audio/xmms to 1.2.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update [maintainer]: port/audio/xmms to 1.2.4 Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: sobomax Responsible-Changed-When: Wed Nov 29 01:18:10 PST 2000 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=23160 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 3:38: 4 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 419B137B402; Wed, 29 Nov 2000 03:38:03 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eATBc3Q66118; Wed, 29 Nov 2000 03:38:03 -0800 (PST) (envelope-from asami) Date: Wed, 29 Nov 2000 03:38:03 -0800 (PST) From: Message-Id: <200011291138.eATBc3Q66118@freefall.freebsd.org> To: asami@FreeBSD.org, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22750: Update port: x11-fm/mfm to mtoolsfm 1.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11-fm/mfm to mtoolsfm 1.6 Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Wed Nov 29 03:36:42 PST 2000 Responsible-Changed-Why: Repository copy done! http://www.freebsd.org/cgi/query-pr.cgi?pr=22750 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 3:49:25 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C740437B400; Wed, 29 Nov 2000 03:49:24 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eATBnOu67713; Wed, 29 Nov 2000 03:49:24 -0800 (PST) (envelope-from sobomax) Date: Wed, 29 Nov 2000 03:49:24 -0800 (PST) From: Message-Id: <200011291149.eATBnOu67713@freefall.freebsd.org> To: Konstantin.Chuguev@dante.org.uk, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23163: Update port: converters/iconv Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: converters/iconv State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 29 03:49:03 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23163 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 3:49:40 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E9C837B402; Wed, 29 Nov 2000 03:49:39 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eATBndI67821; Wed, 29 Nov 2000 03:49:39 -0800 (PST) (envelope-from sobomax) Date: Wed, 29 Nov 2000 03:49:39 -0800 (PST) From: Message-Id: <200011291149.eATBndI67821@freefall.freebsd.org> To: Konstantin.Chuguev@dante.org.uk, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23164: Update port: converters/iconv-extra Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: converters/iconv-extra State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 29 03:49:03 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23163 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 29 03:49:03 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23164 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 3:49:57 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6E4137B401; Wed, 29 Nov 2000 03:49:55 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eATBntG67921; Wed, 29 Nov 2000 03:49:55 -0800 (PST) (envelope-from sobomax) Date: Wed, 29 Nov 2000 03:49:55 -0800 (PST) From: Message-Id: <200011291149.eATBntG67921@freefall.freebsd.org> To: Konstantin.Chuguev@dante.org.uk, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23165: Update port: converters/iconv-rfc1345 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: converters/iconv-rfc1345 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 29 03:49:03 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23163 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 29 03:49:03 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23164 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 29 03:49:03 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23165 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 6:15:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rocc.ru (unknown [194.84.181.131]) by hub.freebsd.org (Postfix) with ESMTP id 4067237B400 for ; Wed, 29 Nov 2000 06:15:35 -0800 (PST) Received: from Algr ([10.0.0.136]) by rocc.ru (8.9.3/8.9.3) with SMTP id RAA43125 for ; Wed, 29 Nov 2000 17:14:58 GMT (envelope-from algr@rocc.ru) Message-ID: <000101c05a0e$af8d7820$8800000a@Algr> From: "=?koi8-r?B?4czFy9PBzsTSIOfSxcLFzs7Jy8/X?=" To: Subject: hello ! Date: Wed, 29 Nov 2000 17:14:25 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello ! your port unixODBC-1.8.8 won't work with my FreeBSD 4.1-RELEASE and PHP_4.0.3.pl1 and apache_1.3.12rusPL29.7 It compiles fine but when i starting apache - it writes 'core dumped' Without unixODBC php+apache works fine !! But i want ODBC drivers !! Because i need to communicate with Microsoft SQL server from my FreeBSD. I compiled apache with ./configure ;make;make install I compiled unixODBC with cd /usr/ports/databases/unixodbc; make;make install I compiled php with ./configure --with-apxs=/usr/local/apache/bin/apxs --with-unixODBC;make;make install Help me please ? Where is my mistake ? Thanks in advance. ---- Alexander Grebennikov, Rostov-on-Don, Russia, BeeLine Multiservice Provider mobile: (8632) 412719 algr@rocc.ru http://come.to/algr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 6:37:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.wgate.com (mail.wgate.com [38.219.83.4]) by hub.freebsd.org (Postfix) with ESMTP id E85A737B404; Wed, 29 Nov 2000 06:37:42 -0800 (PST) Received: from way95.eng.tvol.net ([10.32.1.145]) by mail.wgate.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id WVAK2Y3M; Wed, 29 Nov 2000 09:37:42 -0500 Received: from kway by way95.eng.tvol.net with local (Exim 3.16 #1 (Debian)) id 1419Pj-000584-00; Wed, 29 Nov 2000 10:44:55 -0500 Date: Wed, 29 Nov 2000 10:44:55 -0500 From: Kevin Way To: Garrett Wollman Cc: stable@freebsd.org, ports@freebsd.org Subject: Re: pkg_version Message-ID: <20001129104455.A17710@way95.eng.tvol.net> References: <200011281938.OAA08244@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i In-Reply-To: <200011281938.OAA08244@khavrinen.lcs.mit.edu>; from wollman@khavrinen.lcs.mit.edu on Tue, Nov 28, 2000 at 02:38:05PM -0500 Organization: WorldGate Communications [www.wgate.com] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Here is a short shell script (can even be entered interactively if you > are using a Real Shell[tm]) which will tell you in which order the > stuff you currently needs to be built. Reverse the list to find the > order in which they should be removed. Unfortunately I don't believe the situation is quite this simple. While=20 it will take into account straight dependencies, it will miss the special dependencies created by the USE_(BZIP2|GMAKE|GNOMELIBS|etc...) variables. --Kevin --=20 kevin way worldgate communications software engineer +1 215 354 5287 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 8: 0:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from p0016c23.us.kpmg.com (p0016c23.us.kpmg.com [199.207.255.23]) by hub.freebsd.org (Postfix) with ESMTP id 7E06437B400; Wed, 29 Nov 2000 08:00:05 -0800 (PST) Received: from p0016c56 by p0016c23.us.kpmg.com(Pro-8.9.3/Pro-8.9.3) with SMTP id LAA04973; Wed, 29 Nov 2000 11:00:04 -0500 (EST) Received: from p0016c22.kweb.us.kpmg.com by p0016c56 via smtpd (for [199.207.255.23]) with SMTP; 29 Nov 2000 16:00:04 UT Received: from usnssexc11.kweb.us.kpmg.com by kpmg.com(Pro-8.9.2/Pro-8.9.2) with ESMTP id LAA16693; Wed, 29 Nov 2000 11:00:03 -0500 (EST) Received: from usnssexc11.kweb.us.kpmg.com (unverified) by usnssexc11.kweb.us.kpmg.com (Content Technologies SMTPRS 2.0.15) with ESMTP id ; Wed, 29 Nov 2000 10:59:39 -0500 Received: by usnssexc11.kweb.us.kpmg.com with Internet Mail Service (5.5.2650.21) id ; Wed, 29 Nov 2000 10:59:39 -0500 Message-Id: <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> From: "Passki, Jonathan P" To: "'freebsd-stable@freebsd.org'" , "'freebsd-ports@freebsd.org'" Subject: RE: pkg_version Date: Wed, 29 Nov 2000 10:59:35 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks for all with the feedback on this. After doing an unsuccessful port upgrade (thanks for the info, but I managed to FUBAR my installed ports anyways :), I'm faced with a similar problem. Of all the understanding and interaction I do with FreeBSD, this one issue, the issue of a seamless (or semi-seamless) upgrade of installed ports seems to be the one I have never seen a consistent solution with. Given my lack of port understanding, I have no right to criticize something that I wouldn't know how to fix, but doesn't it seem odd that upgrading applications like this are difficult or esoteric to many people (search archives, the question keeps on coming up). Also, when people approach me about the port upgrade procedures, and ask if it's better than Debian's, I tend to say it isn't. I love the ports, and I appreciate all the effort people have put into porting applications and package install procedures, but... Maybe it's just the nature of installed ports that make them so difficult to upgrade, but it's still for me, a pain when there are so many dependencies (usually XFree86 + window manager + apps related to window manager), and not knowing what ones to do in what order, and one utility that can do all this. There's a pkg_add(1), pkg_create(1), pkg_delete(1), pkg_info(1), and a pkg_version(1), but not a single utility that should be called pkg_upgrade, which does it with the most reduced effort possible Feel free to flame, I put on the fire retardant suit when I wrote this :) I'm blaming most of this on myself for perhaps a lack of understanding, but there have been many before with the same question. Also, wouldn't this be good advocacy to house a more robust port system? Thanks for your ear, Jon > -----Original Message----- > From: John Reynolds~ [mailto:jreynold@sedona.ch.intel.com] > Sent: Wednesday, November 29, 2000 09:39 > To: 'freebsd-stable@freebsd.org' > Subject: Re: pkg_version > > > > [ On Tuesday, November 28, Szilveszter Adam wrote: ] > > > > When I am sure that all of them have actually changed, I > usually work my > > way up on the dependency list from the bottom, eg I do X > first. If this is > > just a patch, the order might not matter. > > > > I have never wondered much about this, because X is also a > real pain to > > wait for on this system until it completes building so I > schedule it first > > Is there some sort of "recursive 'make deinstall'" that will > delete a package > and everything it depends on to run or build? > > i.e. if I wanted to nuke all of GNOME, if I do: > > cd /usr/ports/x11/gnome && make deinstall > > all that will do is delete the "port" for GNOME (which simply > pulls in all the > other ports accordingly) but doesn't deinstall the > components. How could one > remove all components of GNOME even down to the libraries (I know some > libraries would be needed by other ports)? > > I've done this before "manually" but it was certainly tedious. > > -Jr > > ***************************************************************************** The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful. When addressed to our clients any opinions or advice contained in this email are subject to the terms and conditions expressed in the governing KPMG client engagement letter. ***************************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 8:10:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.icehouse.net (mail.icehouse.net [204.203.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 737FE37B699 for ; Wed, 29 Nov 2000 08:10:30 -0800 (PST) Received: from deimos.walker.dom (ppp-236.icehouse.net [204.203.52.236]) by mail.icehouse.net (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id IAA27679; Wed, 29 Nov 2000 08:10:21 -0800 X-Authentication-Warning: mail.icehouse.net: Host ppp-236.icehouse.net [204.203.52.236] claimed to be deimos.walker.dom Received: from mars.walker.dom (mars.walker.dom. [192.168.0.1]) by deimos.walker.dom (8.11.1/8.11.1) with SMTP id eATGAHi18885; Wed, 29 Nov 2000 08:10:18 -0800 (PST) (envelope-from kew@icehouse.net) From: Keith Walker Date: Wed, 29 Nov 2000 08:10:16 -0800 X-Mailer: KMail [version 1.1.99] Content-Type: Multipart/Mixed; charset="us-ascii"; boundary="------------Boundary-00=_4LNS43A89ZYHIEMY35RP" Cc: To: Cyrille Lefevre References: <0aed01c0589c$224d07f0$9828f99f@shl.com> In-Reply-To: Subject: Re: KDE 2.0 Problems MIME-Version: 1.0 Message-Id: <00112908101600.02164@mars.walker.dom> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --------------Boundary-00=_4LNS43A89ZYHIEMY35RP Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8bit On Tuesday 28 November 2000 20:48, Cyrille Lefevre wrote: > "Tim Pushor" writes: > > I am having some trouble with KDE 2.0 and FreeBSD 4.x. (currently 4.2). I > > have both compiled KDE from source, and installed the packages found in > > packages-current on freebsd.org. > > me too. Ok, here's some *very* unofficial patches that seem to make everything better. Problem is, I'm new at this whole "ports" game as well as not all that good at C/C++ programming. The problems appear to be in the way that FreeBSD handles pty's, a call to ttyname (which always fails with ptys) and the way that the konsole_grantpty program is called. The fix for the calling of konsole_grantpty is probably big-time overkill, but it works. In order to have these patches work, you'll have to start fresh (make clean in the kdebase-2.0 port), then copy the two attached patch files into .../kdebase-2.0/files, then do a make. As the one patch file overwrites the original patch, make sure that you make a backup of that file (.../files/patch-TEPty.C) so that you can restore everything in case this doesn't work for you. Don't make the backup in the "files" directory or the patch step of the make will fail. Everything *should* work; it works for me but ymmv of course. -- Keith Walker kew@icehouse.net --------------Boundary-00=_4LNS43A89ZYHIEMY35RP Content-Type: text/english; name="patch-TEPty.C" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="patch-TEPty.C" --- konsole/src/TEPty.C.orig Tue Oct 3 12:57:30 2000 +++ konsole/src/TEPty.C Wed Nov 29 07:24:50 2000 @@ -180,27 +180,71 @@ // param grant: 1 to grant, 0 to revoke // returns 1 on success 0 on fail { - pid_t pid = fork(); - if (pid < 0) - { - return 0; - } - if (pid == 0) - { - /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ - if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); - QString path = locate("exe", BASE_CHOWN); + // ----------------------------------------------------------------------- + // Ok, I lifted this from the FreeBSD source for the system(3) call + // which ought to solve the problem of the call not working correctly. + // The problem with the old way of doing it? I quote... + // + // From Advanced Programming in the Unix Environment: + // "The problem [...] is that we have no guarantee after the fork whether + // the parent or child runs first." + // + // We were trying to wait on a non-existant child, causing a ECHILD + // error, which would make the code fail. We take the steps necessary + // to handle signals correctly which ensures a proper call to the + // external program. (kew) + // ----------------------------------------------------------------------- + pid_t pid; + int pstat; + struct sigaction ign; + struct sigaction intact; // interupt action + struct sigaction quitact; // quit action + sigset_t newsigblock, oldsigblock; + QString path; + + ign.sa_handler = SIG_IGN; + sigemptyset(&ign.sa_mask); + ign.sa_flags = 0; + sigaction(SIGINT, &ign, &intact); + sigaction(SIGQUIT, &ign, &quitact); + sigemptyset(&newsigblock); + sigaddset(&newsigblock, SIGCHLD); + sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); + + switch (pid = fork()) { + case -1: + return(0); + break; + case 0: // child + if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) + exit(1); + path = locate("exe", BASE_CHOWN); + + sigaction(SIGINT, &intact, NULL); + sigaction(SIGQUIT, &quitact, NULL); + sigprocmask(SIG_SETMASK, &oldsigblock, NULL); execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, NULL); - exit(1); // should not be reached - } - if (pid > 0) - { int w; - retry: - int rc = waitpid (pid, &w, 0); - if ((rc == -1) && (errno == EINTR)) - goto retry; - return (rc != -1 && WIFEXITED(w) && WEXITSTATUS(w) == 0); + exit(1); + break; + default: + do { + pid = waitpid(pid, &pstat, 0); + } while (pid == -1 && errno == EINTR); + break; } + sigaction(SIGINT, &intact, NULL); + sigaction(SIGQUIT, &quitact, NULL); + sigprocmask(SIG_SETMASK, &oldsigblock, NULL); + + if (pid == -1) { + return 0; + } + else if (WIFEXITED(pstat) && (WEXITSTATUS(pstat) == 0)) { + return 1; + } + else { + return 0; + } return 0; //dummy. } @@ -225,7 +269,7 @@ #ifdef HAVE_UTEMPTER removeLineFromUtmp(ttynam, fd); #elif defined(USE_LOGIN) - char *tty_name=ttyname(0); + char *tty_name=ttyname(fd); if (tty_name) logout(tty_name); #endif --------------Boundary-00=_4LNS43A89ZYHIEMY35RP Content-Type: text/x-c; name="patch-konsole_grantpty.c" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="patch-konsole_grantpty.c" --- konsole/src/konsole_grantpty.c.orig Wed Nov 29 07:31:10 2000 +++ konsole/src/konsole_grantpty.c Wed Nov 29 07:24:57 2000 @@ -31,13 +31,15 @@ #include #include #include +#include +#include #define PTY_FILENO 3 /* keep in sync with grantpty */ #define TTY_GROUP "tty" int main (int argc, char *argv[]) { - char* pty; + char* pty = NULL; struct stat st; struct group* p; gid_t gid; @@ -81,6 +83,7 @@ /* get slave pty name from master pty file handle in PTY_FILENO *********/ +#if 0 /* Check that PTY_FILENO is a valid master pseudo terminal. */ pty = ttyname(PTY_FILENO); /* posix */ if (pty == NULL) @@ -89,6 +92,42 @@ return 1; /* FAIL */ } close(PTY_FILENO); +#else + /* The trouble with the ifdef'd-out portion above is that ttyname() + ** does not work correctly when not passed a valid tty, but a pseudotty + ** instead. All we're doing here is finding out what the name of + ** the associated pty is without having to pass it in on the command line. + ** Nothing complex. + */ + { + struct stat sb; + struct stat dsb; + struct dirent *dirp; + static char buf[sizeof(_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; + DIR *dp; + + pty = NULL; + + if (fstat(PTY_FILENO, &sb)) + return 1; /* FAIL */ + if ((dp = opendir(_PATH_DEV)) == NULL) + return 1; /* FAIL */ + + while ((dirp = readdir(dp))) { + if (dirp->d_fileno != sb.st_ino) + continue; + bcopy(dirp->d_name, buf + sizeof(_PATH_DEV) - 1, dirp->d_namlen+1); + /*fprintf(stderr, "looking at %s\n", buf);*/ + if (stat(buf, &dsb) || sb.st_dev != dsb.st_dev || sb.st_ino != dsb.st_ino) + continue; + pty = buf; + } + closedir(dp); + if (pty == NULL) + return 1; /* FAIL */ + } + /*fprintf(stderr, "successful at finding %s\n", pty);*/ +#endif /* matches /dev/pty?? */ if (strlen(pty) < 8 || strncmp(pty,"/dev/pty",8)) @@ -120,6 +159,8 @@ fprintf(stderr,"%s: cannot chmod %s.\n",argv[0],tty); perror("Reason"); return 1; /* FAIL */ } + + /*fprintf(stderr, "made it here\n");*/ return 0; /* OK */ } --------------Boundary-00=_4LNS43A89ZYHIEMY35RP-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 8:37:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id 1A5D437B699; Wed, 29 Nov 2000 08:37:36 -0800 (PST) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Wed, 29 Nov 2000 17:37:31 +0100 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.11.0/8.11.1) id eATGbN283907; Wed, 29 Nov 2000 17:37:23 +0100 (CET) (envelope-from esk) From: Espen Skoglund MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14885.12483.338680.900539@i30nb2.ira.uka.de> Date: Wed, 29 Nov 2000 17:37:23 +0100 (CET) To: "Passki, Jonathan P" Cc: "'freebsd-stable@freebsd.org'" , "'freebsd-ports@freebsd.org'" Subject: RE: pkg_version In-Reply-To: <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> References: <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Passki, Jonathan P] [...] > Feel free to flame, I put on the fire retardant suit when I wrote > this :) I'm blaming most of this on myself for perhaps a lack of > understanding, but there have been many before with the same > question. Also, wouldn't this be good advocacy to house a more > robust port system? Yes. Package upgrading should really be a bit cleaner. What I usually end up doing is to move the +REQUIRED_BY file away from the /var/db/pkg directory, delete the port, reinstall it, and move the +REQUIRED_BY file into /var/db/pkg directory again. Also, for deinstalling all packages that depends on one particular package, one might do something like: pkg_info -qR | xargs pkg_delete -f What I really miss though, is for the pkg_ utilities to be able to recognize bare package names (i.e., without the version suffix). Is there any reason for not having this feature? eSk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 8:53:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id B3ED637B698; Wed, 29 Nov 2000 08:53:34 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 2153AC9A4; Wed, 29 Nov 2000 11:53:34 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 8DC4A2E443; Wed, 29 Nov 2000 11:53:33 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eATGrXV50668; Wed, 29 Nov 2000 11:53:33 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14885.13453.374790.421275@onceler.kciLink.com> Date: Wed, 29 Nov 2000 11:53:33 -0500 To: "'freebsd-stable@freebsd.org'" , "'freebsd-ports@freebsd.org'" Subject: RE: pkg_version In-Reply-To: <14885.12483.338680.900539@i30nb2.ira.uka.de> References: <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> <14885.12483.338680.900539@i30nb2.ira.uka.de> X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "ES" == Espen Skoglund writes: ES> Yes. Package upgrading should really be a bit cleaner. What I ES> usually end up doing is to move the +REQUIRED_BY file away from the ES> /var/db/pkg directory, delete the port, reinstall it, and move the ES> +REQUIRED_BY file into /var/db/pkg directory again. You also need to go back to all packages listed in +REQUIRED_BY and update the dependency in +CONTENTS if the upgraded package version number changes. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 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 Wed Nov 29 9: 4:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id 4F31537B401 for ; Wed, 29 Nov 2000 09:04:12 -0800 (PST) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Wed, 29 Nov 2000 18:03:57 +0100 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.11.0/8.11.1) id eATH3s284047; Wed, 29 Nov 2000 18:03:54 +0100 (CET) (envelope-from esk) From: Espen Skoglund MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14885.13995.677725.27115@i30nb2.ira.uka.de> Date: Wed, 29 Nov 2000 18:02:35 +0100 (CET) To: Vivek Khera Cc: "'freebsd-ports@freebsd.org'" Subject: RE: pkg_version In-Reply-To: <14885.13453.374790.421275@onceler.kciLink.com> References: <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> <14885.12483.338680.900539@i30nb2.ira.uka.de> <14885.13453.374790.421275@onceler.kciLink.com> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "VK" == Vivek Khera writes: >>>>> "ES" == Espen Skoglund writes: ES> Yes. Package upgrading should really be a bit cleaner. What I ES> usually end up doing is to move the +REQUIRED_BY file away from ES> the /var/db/pkg directory, delete the port, reinstall it, and ES> move the +REQUIRED_BY file into /var/db/pkg directory again. VK> You also need to go back to all packages listed in +REQUIRED_BY VK> and update the dependency in +CONTENTS if the upgraded package VK> version number changes. True. But this is only needed if you want to create a package-file from the installed package, isn't it? eSk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 9:58:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mukappa.home.com (c576194-a.saltlk1.ut.home.com [24.20.97.5]) by hub.freebsd.org (Postfix) with ESMTP id 9FAF437B401; Wed, 29 Nov 2000 09:58:39 -0800 (PST) Received: from mukappa.home.com (localhost [127.0.0.1]) by mukappa.home.com (8.11.1/8.11.1) with SMTP id eATHwRi11819; Wed, 29 Nov 2000 10:58:28 -0700 (MST) (envelope-from mupi@mknet.org) From: Mike Porter Reply-To: mupi@mknet.org To: "Passki, Jonathan P" , "'freebsd-stable@freebsd.org'" , "'freebsd-ports@freebsd.org'" Subject: Re: pkg_version Date: Wed, 29 Nov 2000 10:58:27 -0700 X-Mailer: KMail [version 1.1.94] Content-Type: text/plain References: <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> In-Reply-To: <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> MIME-Version: 1.0 Message-Id: <00112910582702.11309@mukappa.home.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Wed, 29 Nov 2000, Passki, Jonathan P wrote: > > > I have to agree with the rant, but I think we are straying off topic for - -stable, and need to either move it completely to -ports or go private. And I know I'm not one with time or expertise to be able to do much beyond contribute ideas, although I have been known to catch a few errors in c code from time to time.... Having said that...I am curious, since my previous *nix experience is Linux (mostly RedHat, but I have played with several different versions), if there is in the works any sort of "unified" interface. I know that RedHat (and debian too, IIRC), has an X interface to their package management system. While I don't necessarily think that X is the answer to everything (yeah, it's pretty, and graphical (doesn't that make it pretty graphic?? <(}; ) ) it does tend to be a bit slower than I like for running things under. I find myself using X so I can run Netscape and do thngs like read the handbook, etc, but switching over to a VC to do any "real" system work....it seems that an ncurses based package handler shouldn't be too difficult to handle, and could make installing ports a lot less painful. Consider it a "suggestion" rather than a rant, put it on the "wish list" or whatever. If I can help, I will, but I wish I had more time to play with this stuff, so I doubt I would be able to make much impact. It occurs to me that a perl script might be able to handle everyhting that has been discussed here, though TCL has the added advantage of being able to interface with Tk if run under X, (I guess perl::Tk does that, too) which could give you the flexibility of a single command, that could then run in graphical or curses-based depending on the environment it sees....given a year or so I might be able to write something like that. If someone else writes/has written a framework for this, I would be happy to interface with them and help polish the UI and test. mike -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.3 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjolQ8MACgkQZ7GovTQbIm4RVQCfVvl0NLuajHOBIHQXZdUqPotM WRwAoIJGjWuRT1KmHjC3o6HqU4chS0Ng =OBWX -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 10:30:11 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B42F437B404 for ; Wed, 29 Nov 2000 10:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eATIU1U17512; Wed, 29 Nov 2000 10:30:01 -0800 (PST) (envelope-from gnats) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id B77CB37B400 for ; Wed, 29 Nov 2000 10:26:30 -0800 (PST) Received: from home.dinoex.sub.org (home.dinoex.sub.de [62.157.91.196]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id eATIQ9528192 for ; Wed, 29 Nov 2000 19:26:09 +0100 (CET) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id eATIPXh78647; Wed, 29 Nov 2000 19:25:33 +0100 (CET) (envelope-from dm) Message-Id: <200011291825.eATIPXh78647@home.dinoex.sub.org> Date: Wed, 29 Nov 2000 19:25:33 +0100 (CET) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23177: update news/fidogate (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23177 >Category: ports >Synopsis: update news/fidogate (by maintainer) >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 Nov 29 10:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: ifmail, fidogate >Description: New version released added comment in pkg-plist >How-To-Repeat: >Fix: apply this patches diff fidogate/Makefile fidogate-4.4.2/Makefile --- fidogate/Makefile Sat Oct 14 08:00:14 2000 +++ fidogate-4.4.2/Makefile Wed Nov 29 15:59:28 2000 @@ -6,7 +6,7 @@ # PORTNAME= fidogate -PORTVERSION= 4.4.1 +PORTVERSION= 4.4.2 CATEGORIES= news mail MASTER_SITES= ftp://ftp.fidogate.org/pub/fidogate/ \ ftp://ftp.fu-berlin.de/unix/news/fidogate/ \ diff fidogate/distinfo fidogate-4.4.2/distinfo --- fidogate/distinfo Tue Apr 18 01:47:44 2000 +++ fidogate-4.4.2/distinfo Wed Nov 29 16:02:22 2000 @@ -1 +1 @@ -MD5 (fidogate-4.4.1.tar.gz) = cbaaae370a7c48c7922988c66b70e743 +MD5 (fidogate-4.4.2.tar.gz) = 055ff66f68455ff746d4974d7d072036 diff fidogate/pkg-plist fidogate-4.4.2/pkg-plist --- fidogate/pkg-plist Sun Feb 20 16:58:52 2000 +++ fidogate-4.4.2/pkg-plist Wed Nov 29 19:23:19 2000 @@ -1,3 +1,4 @@ +@comment $FreeBSD: $ libexec/fidogate/areafix.help libexec/fidogate/areasbbssync libexec/fidogate/charset.bin @@ -32,6 +33,7 @@ libexec/fidogate/ftntick libexec/fidogate/ftntickpost libexec/fidogate/ftntoss +libexec/fidogate/hosts2dns libexec/fidogate/latest libexec/fidogate/logcheck libexec/fidogate/logdaily @@ -42,6 +44,7 @@ libexec/fidogate/nl-check libexec/fidogate/nl-del libexec/fidogate/nl-diff +libexec/fidogate/out-ls libexec/fidogate/out-manip libexec/fidogate/out-rm0 libexec/fidogate/out-rmbsy @@ -56,6 +59,9 @@ libexec/fidogate/runmail libexec/fidogate/runnews libexec/fidogate/runout +libexec/fidogate/runpoll +libexec/fidogate/runpoll-binkd +libexec/fidogate/runpoll-orodruin libexec/fidogate/runtoss libexec/fidogate/rununpack libexec/fidogate/send-ffx >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 Nov 29 11: 0:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id 44BCF37B404 for ; Wed, 29 Nov 2000 11:00:26 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 5D3A3C9A4; Wed, 29 Nov 2000 14:00:24 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id B9AE92E443; Wed, 29 Nov 2000 14:00:23 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eATJ0ND52584; Wed, 29 Nov 2000 14:00:23 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14885.21063.596772.849883@onceler.kciLink.com> Date: Wed, 29 Nov 2000 14:00:23 -0500 To: Espen Skoglund Cc: "'freebsd-ports@freebsd.org'" Subject: RE: pkg_version In-Reply-To: <14885.13995.677725.27115@i30nb2.ira.uka.de> References: <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> <14885.12483.338680.900539@i30nb2.ira.uka.de> <14885.13453.374790.421275@onceler.kciLink.com> <14885.13995.677725.27115@i30nb2.ira.uka.de> X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "ES" == Espen Skoglund writes: >>>>> "VK" == Vivek Khera writes: VK> You also need to go back to all packages listed in +REQUIRED_BY VK> and update the dependency in +CONTENTS if the upgraded package VK> version number changes. ES> True. But this is only needed if you want to create a package-file ES> from the installed package, isn't it? If you later delete one of the REQUIRED_BY packages, it won't be able to deregister its dependency on the updated package. Example: I upgraded QT from 2.2.1 to 2.2.1_1. Now, if I delete qhacc package, it will try to unregister its dependency on qt-2.2.1 whereas that does not exist anymore. It should unregister itself from 2.2.1_1. The package-file building dependencies are taken from the ports tree itself, not the installed packages' registered dependencies. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 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 Wed Nov 29 11:19: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from srv57.server4me.com (srv57.server4me.com [216.55.177.57]) by hub.freebsd.org (Postfix) with ESMTP id 25DCE37B402; Wed, 29 Nov 2000 11:19:00 -0800 (PST) Received: from GENES (cx264427-b.dt1.sdca.home.com [24.9.241.93]) by srv57.server4me.com (8.9.3/8.9.3) with SMTP id LAA06750; Wed, 29 Nov 2000 11:18:52 -0800 (PST) (envelope-from gknight@thumbsupsoft.com) Reply-To: From: "Gene Knight" To: Cc: Subject: FreeBSD Port: freetype-1.3.1 Date: Wed, 29 Nov 2000 11:18:58 -0800 Message-ID: <000401c05a39$38ffd560$0200a8c0@dt1.sdca.home.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings! It seems to me that freetype needs another Requires: ===> freetype-1.3.1 depends on shared library: X11.6 - not found Thumbs Up! Gene Knight To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 11:28:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 48F2137B400; Wed, 29 Nov 2000 11:28:07 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.1/8.11.1) with ESMTP id eATJS2M71523; Wed, 29 Nov 2000 11:28:02 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: "Passki, Jonathan P" Cc: "'freebsd-stable@freebsd.org'" , "'freebsd-ports@freebsd.org'" Subject: Re: pkg_version In-Reply-To: Message from "Passki, Jonathan P" of "Wed, 29 Nov 2000 10:59:35 EST." <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> Date: Wed, 29 Nov 2000 11:28:02 -0800 Message-ID: <71519.975526082@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Maybe it's just the nature of installed ports that make them so difficult to > upgrade, but it's still for me, a pain when there are so many dependencies > (usually XFree86 + window manager + apps related to window manager), and not It's an easy problem to identify but a much harder one to solve. We'd all welcome your pkg_upgrade(1) command which solves these problems. Please let us know when we can review your code. :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 11:35: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from alpo.whistle.com (s206m1.whistle.com [207.76.206.1]) by hub.freebsd.org (Postfix) with ESMTP id 676CD37B400; Wed, 29 Nov 2000 11:35:02 -0800 (PST) Received: from whistle.com (ibm-gw.whistle.com [207.76.207.1]) by alpo.whistle.com (8.9.1a/8.9.1) with ESMTP id LAA26580; Wed, 29 Nov 2000 11:32:06 -0800 (PST) Message-ID: <3A255998.246F22B6@whistle.com> Date: Wed, 29 Nov 2000 11:31:36 -0800 From: Biao Ai Organization: Whistle Communications, Inc. X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: knu@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: ruby-snmp-0.2.1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The ucd-snmp 4.2 pre-release has some feature that I need. Is there any plan to import this to ports yet? Biao Ai biaoa@whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 11:59: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from topperwein.dyndns.org (acs-24-154-28-99.zoominternet.net [24.154.28.99]) by hub.freebsd.org (Postfix) with ESMTP id 264A237B401; Wed, 29 Nov 2000 11:58:59 -0800 (PST) Received: from browning.pennasoft.com (browning [192.168.168.11]) by topperwein.dyndns.org (8.11.1/8.11.1) with ESMTP id eATJxo578174; Wed, 29 Nov 2000 14:59:50 -0500 (EST) (envelope-from behanna@zbzoom.net) Date: Wed, 29 Nov 2000 15:04:04 -0500 (EST) From: Chris BeHanna Reply-To: behanna@zbzoom.net To: FreeBSD-Stable Cc: "'freebsd-ports@freebsd.org'" Subject: RE: pkg_version In-Reply-To: <7799D023E51ED311BFB50008C75DD7B402881AEC@uschiexc05.kweb.us.kpmg.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 29 Nov 2000, Passki, Jonathan P wrote: > > Of all the understanding and interaction I do with FreeBSD, this one issue, > the issue of a seamless (or semi-seamless) upgrade of installed ports seems > to be the one I have never seen a consistent solution with. Given my lack > of port understanding, I have no right to criticize something that I > wouldn't know how to fix, but doesn't it seem odd that upgrading > applications like this are difficult or esoteric to many people (search > archives, the question keeps on coming up). Also, when people approach me > about the port upgrade procedures, and ask if it's better than Debian's, I > tend to say it isn't. I love the ports, and I appreciate all the effort > people have put into porting applications and package install procedures, > but... > > Maybe it's just the nature of installed ports that make them so difficult to > upgrade, but it's still for me, a pain when there are so many dependencies > (usually XFree86 + window manager + apps related to window manager), and not > knowing what ones to do in what order, and one utility that can do all this. > There's a pkg_add(1), pkg_create(1), pkg_delete(1), pkg_info(1), and a > pkg_version(1), but not a single utility that should be called pkg_upgrade, > which does it with the most reduced effort possible > > > Feel free to flame, I put on the fire retardant suit when I wrote this :) > I'm blaming most of this on myself for perhaps a lack of understanding, but > there have been many before with the same question. Also, wouldn't this be > good advocacy to house a more robust port system? I posted this the other day, then went ahead and installed it to see what it looked like. /usr/ports/sysutils/pib is a GUI for maintaining ports. You can browse the ports in one listbox, select one, and see its build and runtime dependencies. Clicking on one of the dependencies changes the view to that package and *its* build and runtime dependencies. It's not completely ideal, but it will let you more or less easily navigate the dependency tree and manually traverse it for an upgrade. Unfortunately, pib doesn't tell you if a package is installed or, if so, if it's up to date. Between pib and pkg_version -v > /tmp/packages, one should be pretty well set. It isn't "fire and forget", but given all of the dependencies involved, as well as special flags that you might want to pass to a build (e.g., WITH_GNOME and WITH_KDE), I'm not sure you'd want that anyway. -- Chris BeHanna Software Engineer behanna@bogus.zbzoom.net Remove "bogus" before responding. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 12:10:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from alpo.whistle.com (s206m1.whistle.com [207.76.206.1]) by hub.freebsd.org (Postfix) with ESMTP id CEF5D37B400; Wed, 29 Nov 2000 12:10:38 -0800 (PST) Received: from whistle.com (ibm-gw.whistle.com [207.76.207.1]) by alpo.whistle.com (8.9.1a/8.9.1) with ESMTP id MAA28042; Wed, 29 Nov 2000 12:07:39 -0800 (PST) Message-ID: <3A2561ED.60CA0778@whistle.com> Date: Wed, 29 Nov 2000 12:07:09 -0800 From: Biao Ai Organization: Whistle Communications, Inc. X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: billf@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: ucd-snmp-4.2pre2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The ucd-snmp has 4.2pre2 pre-release now. Is there any plan to update on ports/ucd-snmp? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 12:30:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from elvis.mu.org (elvis.mu.org [207.154.226.10]) by hub.freebsd.org (Postfix) with ESMTP id 2D7EC37B400 for ; Wed, 29 Nov 2000 12:30:50 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1098) id 99E2D2B270; Wed, 29 Nov 2000 14:30:44 -0600 (CST) Date: Wed, 29 Nov 2000 14:30:44 -0600 From: Bill Fumerola To: Biao Ai Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: ucd-snmp-4.2pre2 Message-ID: <20001129143044.C35924@elvis.mu.org> References: <3A2561ED.60CA0778@whistle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A2561ED.60CA0778@whistle.com>; from biaoa@whistle.com on Wed, Nov 29, 2000 at 12:07:09PM -0800 X-Operating-System: FreeBSD 4.2-FEARSOME-20001103 i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Nov 29, 2000 at 12:07:09PM -0800, Biao Ai wrote: > The ucd-snmp has 4.2pre2 pre-release now. Is there any plan to update on > ports/ucd-snmp? I'm moving this week, so I doubt it will happen until mid december. -- Bill Fumerola - security yahoo / Yahoo! inc. - fumerola@yahoo-inc.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 13:52:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lsd.franken.de (lsd.franken.de [194.94.248.201]) by hub.freebsd.org (Postfix) with ESMTP id 4067A37B401 for ; Wed, 29 Nov 2000 13:52:24 -0800 (PST) Received: from lsd.franken.de (hrmitter@localhost.franken.de [127.0.0.1]) by lsd.franken.de (8.11.0/8.11.0) with ESMTP id eATLr2o64785 for ; Wed, 29 Nov 2000 22:53:05 +0100 (CET) (envelope-from hrmitter@lsd.franken.de) Message-ID: <3A257ABE.4CB5DE3D@lsd.franken.de> Date: Wed, 29 Nov 2000 22:53:02 +0100 From: Holger Mitterwald X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 4.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.org Subject: FreeBSD Port: postgresql7-7.0.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I just discovered that postgresql has released version 7.0.3 with several bugfixes. Is it possible to update the ports? Thank you in advance! Best regards, Holger Mitterwald -- Holger Mitterwald Kneipenfuehrer Deutschland pub guide for germany http://www.kneipenfuehrer.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 14: 4:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from beta.nova.org (beta.nova.org [209.31.144.41]) by hub.freebsd.org (Postfix) with ESMTP id A7EB037B400 for ; Wed, 29 Nov 2000 14:04:38 -0800 (PST) Received: from fcac.org (members.fcac.org [209.31.144.35]) by beta.nova.org (8.10.1/8.10.1) with ESMTP id eATM4Ms20967; Wed, 29 Nov 2000 17:04:23 -0500 (EST) Received: from localhost by fcac.org (8.8.8+Sun/SMI-SVR4) id RAA09586; Wed, 29 Nov 2000 17:04:19 -0500 (EST) Date: Wed, 29 Nov 2000 17:04:18 -0500 (EST) From: Brian Sletten To: ports@freebsd.org, mastake@msel.t.u-tokyo.ac.jp Subject: Linux Mesa Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just installed the Linux Mesa3 port hoping to use it with the Blackdown Java3D implementation. When running the Java3D demos, it barfs due to an illegal instruction. I did a /compat/linux/sbin/ldconfig -p and it seems to be picking up the FreeBSD-compiled Mesa libraries in /usr/X11R6/lib, rather than /compat/linux/usr/X11R6/lib. Is the Linux Mesa port pointing to the wrong place? I guess I'm just confused as to why it is looking in /usr/X11R6/lib at all. Is there some kind of a config file that I can change? Thanks for any suggestions. Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 14:30: 9 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 01EB937B404 for ; Wed, 29 Nov 2000 14:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eATMU0G71313; Wed, 29 Nov 2000 14:30:00 -0800 (PST) (envelope-from gnats) Received: from rodan.water-programs.com (unknown [130.86.77.19]) by hub.freebsd.org (Postfix) with ESMTP id C8C9437B400 for ; Wed, 29 Nov 2000 14:26:44 -0800 (PST) Received: (from scottj@localhost) by rodan.water-programs.com (8.11.1/8.11.1) id eATMPvx02535; Wed, 29 Nov 2000 14:25:57 -0800 (PST) (envelope-from scottj) Message-Id: <200011292225.eATMPvx02535@rodan.water-programs.com> Date: Wed, 29 Nov 2000 14:25:57 -0800 (PST) From: joseph@randomnetworks.com Reply-To: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23181: [NEW PORT] net/sendip Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23181 >Category: ports >Synopsis: [NEW PORT] net/sendip >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 Nov 29 14:30:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: FreeBSD 4.2-STABLE i386 >Organization: randomnetworks.com >Environment: ports collection. >Description: Add a new port, net/sendip. From the pkg-descr : SendIP has a large number of command line options to specify the content of every header of a RIP, TCP, UDP, ICMP or raw IPv4 and IPv6 packet. It also allows any data to be added to the packet. Checksums can be calculated automatically, but if you wish to send out wrong checksums, that is supported too. >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: # # sendip # sendip/pkg-comment # sendip/Makefile # sendip/distinfo # sendip/pkg-descr # sendip/pkg-plist # echo c - sendip mkdir -p sendip > /dev/null 2>&1 echo x - sendip/pkg-comment sed 's/^X//' >sendip/pkg-comment << 'END-of-sendip/pkg-comment' XSendIP is a commandline tool to allow sending arbitrary IP packets. END-of-sendip/pkg-comment echo x - sendip/Makefile sed 's/^X//' >sendip/Makefile << 'END-of-sendip/Makefile' X# New ports collection makefile for: sendip X# Date created: Wed 29 Nov 2000 X# Whom: joseph@randomnetworks.com X# X# $FreeBSD$ X# X XPORTNAME= sendip XPORTVERSION= 1.3 XCATEGORIES= net XMASTER_SITES= http://www.earth.li/projectpurple/files/ X XMAINTAINER= joseph@randomnetworks.com X XWRKSRC= ${WRKDIR}/sendip X XMAN1= sendip.1 X X.include END-of-sendip/Makefile echo x - sendip/distinfo sed 's/^X//' >sendip/distinfo << 'END-of-sendip/distinfo' XMD5 (sendip-1.3.tar.gz) = b2d00d4b29225a6d0f8f391672ece64e END-of-sendip/distinfo echo x - sendip/pkg-descr sed 's/^X//' >sendip/pkg-descr << 'END-of-sendip/pkg-descr' XSendIP has a large number of command line options to specify the content of Xevery header of a RIP, TCP, UDP, ICMP or raw IPv4 and IPv6 packet. It also Xallows any data to be added to the packet. Checksums can be calculated Xautomatically, but if you wish to send out wrong checksums, that is Xsupported too. X XWWW: http://www.earth.li/projectpurple/progs/sendip.html END-of-sendip/pkg-descr echo x - sendip/pkg-plist sed 's/^X//' >sendip/pkg-plist << 'END-of-sendip/pkg-plist' Xbin/sendip END-of-sendip/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 Nov 29 14:40:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cae88-102-101.sc.rr.com (cae88-102-101.sc.rr.com [24.88.102.101]) by hub.freebsd.org (Postfix) with ESMTP id 35B2C37B404 for ; Wed, 29 Nov 2000 14:40:23 -0800 (PST) Received: (from myself@localhost) by cae88-102-101.sc.rr.com (8.11.1/8.9.3) id eATMec148268 for ports@FreeBSD.ORG; Wed, 29 Nov 2000 17:40:38 -0500 (EST) (envelope-from myself) Date: Wed, 29 Nov 2000 17:40:38 -0500 From: "Donald J . Maddox" To: ports@FreeBSD.ORG Subject: Where is the distfile for py-kde? Message-ID: <20001129174038.A48253@cae88-102-101.sc.rr.com> Reply-To: dmaddox@sc.rr.com Mail-Followup-To: ports@FreeBSD.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 X-Loop: FreeBSD.org Anyone know where the distfile for py-kde can be obtained? >ROOT-py-kde> make install && make clean >> PyKDE-0.12.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from http://www.river-bank.demon.co.uk/software/. fetch: PyKDE-0.12.tar.gz: Not Found >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: PyKDE-0.12.tar.gz: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde. >ROOT-py-kde> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 14:50:17 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC33937B401 for ; Wed, 29 Nov 2000 14:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eATMo1C75378; Wed, 29 Nov 2000 14:50:01 -0800 (PST) (envelope-from gnats) Received: from vega.uli.it (vega.uli.it [62.212.0.2]) by hub.freebsd.org (Postfix) with ESMTP id 095A537B401 for ; Wed, 29 Nov 2000 14:47:19 -0800 (PST) Received: from olgeni.localdomain.net (olgeni.uli.it [62.212.0.22]) by vega.uli.it (Postfix) with ESMTP id 97A953B005 for ; Wed, 29 Nov 2000 23:47:16 +0100 (CET) Received: (from olgeni@localhost) by olgeni.localdomain.net (8.11.1/8.11.1) id eATMlng07074; Wed, 29 Nov 2000 23:47:49 +0100 (CET) (envelope-from olgeni) Message-Id: <200011292247.eATMlng07074@olgeni.localdomain.net> Date: Wed, 29 Nov 2000 23:47:49 +0100 (CET) From: olgeni@uli.it Reply-To: olgeni@uli.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23182: x11/eterm missing dependency, fix pkg-plist for NOPORTDOCS Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23182 >Category: ports >Synopsis: x11/eterm missing dependency, fix pkg-plist for NOPORTDOCS >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 Nov 29 14:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 4.2-STABLE i386 >Organization: Colby >Environment: FreeBSD olgeni.localdomain.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Tue Nov 28 03:14:12 CET 2000 root@olgeni.localdomain.net:/usr/obj/usr/src/sys/BSDBOX i386 >Description: The current x11/eterm port is missing a dependency on textproc/man2html: it looks for it while building Eterm.1.html, which should go in ${PREFIX}/share/doc/Eterm. This has already been fixed in japanese/eterm (ports/20568). Maintainer notified on 23 Nov 2000 about man2html. But this is better since it handles NOPORTDOCS :-) Makefile: * Bump PORTREVISION * Add BUILD_DEPENDS: textproc/man2html * Add NOPORTDOCS hint in PLIST_SUB post-install: * Install Eterm.1.html too pkg-plist: * Add share/doc/Eterm/Eterm.1.html * Support %%NOPORTDOCS%% >How-To-Repeat: >Fix: diff -ruN eterm.orig/Makefile eterm/Makefile --- eterm.orig/Makefile Sun Oct 8 08:53:30 2000 +++ eterm/Makefile Wed Nov 29 23:39:52 2000 @@ -7,6 +7,7 @@ PORTNAME= eterm PORTVERSION= 0.8.10 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= ftp://eterm.sourceforge.net/pub/eterm/ \ ftp://ftp.enlightenment.org/pub/enlightenment/Eterm/ \ @@ -18,6 +19,8 @@ MAINTAINER= murray@FreeBSD.org +BUILD_DEPENDS= man2html:${PORTSDIR}/textproc/man2html + USE_GMAKE= yes USE_X_PREFIX= yes USE_IMLIB= yes @@ -31,6 +34,12 @@ EXTRA_PATCHES= ${PATCHDIR}/extra-patch-kanji .endif +.if defined(NOPORTDOCS) +NODOCS= "@comment " +.endif + +PLIST_SUB= NOPORTDOCS=${NODOCS} + # this is needed to remove leftover files from applied patches. pre-install: .for i in Eterm emacs irc mutt tn3270 trans @@ -44,6 +53,7 @@ @${INSTALL_DATA} ${WRKSRC}/ReleaseNotes ${PREFIX}/share/doc/Eterm @${INSTALL_DATA} ${WRKSRC}/doc/Eterm.tcap ${PREFIX}/share/doc/Eterm @${INSTALL_DATA} ${WRKSRC}/doc/Eterm.ti ${PREFIX}/share/doc/Eterm + @${INSTALL_DATA} ${WRKSRC}/doc/Eterm.1.html ${PREFIX}/share/doc/Eterm .endif .include diff -ruN eterm.orig/pkg-plist eterm/pkg-plist --- eterm.orig/pkg-plist Sun Sep 17 14:34:31 2000 +++ eterm/pkg-plist Wed Nov 29 23:37:50 2000 @@ -41,17 +41,18 @@ share/Eterm/themes/trans/MAIN share/Eterm/themes/trans/pixmaps.list share/Eterm/themes/trans/trans.menu -share/doc/Eterm/Eterm.tcap -share/doc/Eterm/Eterm.ti -share/doc/Eterm/ReleaseNotes -@dirrm share/doc/Eterm -@dirrm share/Eterm/themes/Eterm -@dirrm share/Eterm/themes/chooser -@dirrm share/Eterm/themes/emacs -@dirrm share/Eterm/themes/irc -@dirrm share/Eterm/themes/mutt -@dirrm share/Eterm/themes/tn3270 +%%NOPORTDOCS%%share/doc/Eterm/Eterm.1.html +%%NOPORTDOCS%%share/doc/Eterm/Eterm.tcap +%%NOPORTDOCS%%share/doc/Eterm/Eterm.ti +%%NOPORTDOCS%%share/doc/Eterm/ReleaseNotes @dirrm share/Eterm/themes/trans -@dirrm share/Eterm/themes +@dirrm share/Eterm/themes/tn3270 +@dirrm share/Eterm/themes/mutt +@dirrm share/Eterm/themes/irc +@dirrm share/Eterm/themes/emacs +@dirrm share/Eterm/themes/chooser +@dirrm share/Eterm/themes/Eterm @dirrm share/Eterm/pix +@dirrm share/Eterm/themes +%%NOPORTDOCS%%@dirrm share/doc/Eterm @dirrm share/Eterm >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 Nov 29 15:20: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C09237B401 for ; Wed, 29 Nov 2000 15:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eATNK1C80427; Wed, 29 Nov 2000 15:20:01 -0800 (PST) (envelope-from gnats) Received: from nisse.nisser.com (c1870039.telekabel.chello.nl [212.187.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 7341837B400 for ; Wed, 29 Nov 2000 15:14:29 -0800 (PST) Received: (from root@localhost) by nisse.nisser.com (8.11.1/8.11.1) id eATNEV119102; Thu, 30 Nov 2000 00:14:31 +0100 (CET) (envelope-from roelof) Message-Id: <200011292314.eATNEV119102@nisse.nisser.com> Date: Thu, 30 Nov 2000 00:14:31 +0100 (CET) From: Roelof Osinga Reply-To: roelof@eboa.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23183: mod_php4 conflicts with mod_ssl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23183 >Category: ports >Synopsis: mod_php4 conflicts with mod_ssl >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 Nov 29 15:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Roelof Osinga >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: Freshly installed 4.2 >Description: Installed system, installed mod_ssl, checked https connection and it worked. Then installed mod_php4 with gd, freetype, mysql, etc. tested it with "" which worked, the with a https connection which didn't work. >How-To-Repeat: repeat above. this is a part from engine_log at the failpoint: [29/Nov/2000 23:52:08 18962] [error] SSL handshake failed (server new.host.name: 443, client 10.0.0.2) (OpenSSL library error follows) [29/Nov/2000 23:52:08 18962] [error] OpenSSL: error:0407106B:rsa routines:RSA_pa dding_check_PKCS1_type_2:block type is not 02 [29/Nov/2000 23:52:08 18962] [error] OpenSSL: error:04065072:rsa routines:RSA_EA Y_PRIVATE_DECRYPT:padding check failed [29/Nov/2000 23:52:08 18962] [error] OpenSSL: error:1408B076:SSL routines:SSL3_G ET_CLIENT_KEY_EXCHANGE:bad rsa decrypt >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 Wed Nov 29 16:56:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from king.naoe.t.u-tokyo.ac.jp (king.naoe.t.u-tokyo.ac.jp [133.11.65.63]) by hub.freebsd.org (Postfix) with ESMTP id D90FB37B402 for ; Wed, 29 Nov 2000 16:56:12 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by king.naoe.t.u-tokyo.ac.jp (8.9.3/3.7W/hiroko-rubens-2.2) with ESMTP id JAA18321; Thu, 30 Nov 2000 09:56:03 +0900 (JST) To: bsletten@nova.org Cc: ports@freebsd.org Subject: Re: Linux Mesa From: TAKEMURA Masahiro In-Reply-To: Your message of "Wed, 29 Nov 2000 17:04:18 -0500 (EST)" References: X-Mailer: Mew version 1.93 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20001130095603Y.takemura@naoe.t.u-tokyo.ac.jp> Date: Thu, 30 Nov 2000 09:56:03 +0900 X-Dispatcher: imput version 990401(IM113) Lines: 23 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: Brian Sletten Subject: Linux Mesa Date: Wed, 29 Nov 2000 17:04:18 -0500 (EST) > Is the Linux Mesa port pointing to the wrong place? I guess I'm just > confused as to why it is looking in /usr/X11R6/lib at all. Is there some > kind of a config file that I can change? I just make install in /usr/ports/graphics/linux_mesa3 directory then I can use MesaLib. But according to the application, I must create Symbolic-link /compat/linux/usr/X11R6/lib/libX11.so.6.1 to /compat/linux/usr/X11R6/lib/libX11.so and so on. And if you use Package, you must run /compat/linux/sbin/ldconfig "without" any options. I'm sorry but I know only this level. Thank you. -- M. TAKEMURA : mastake@msel.t.u-tokyo.ac.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 17: 0:11 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7598B37B698 for ; Wed, 29 Nov 2000 17:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAU106s94475; Wed, 29 Nov 2000 17:00:06 -0800 (PST) (envelope-from gnats) Received: from cae88-102-101.sc.rr.com (unknown [24.88.102.101]) by hub.freebsd.org (Postfix) with ESMTP id 39FC537B402 for ; Wed, 29 Nov 2000 16:53:16 -0800 (PST) Received: (from myself@localhost) by cae88-102-101.sc.rr.com (8.11.1/8.9.3) id eAU0rWp70958; Wed, 29 Nov 2000 19:53:32 -0500 (EST) (envelope-from myself) Message-Id: <200011300053.eAU0rWp70958@cae88-102-101.sc.rr.com> Date: Wed, 29 Nov 2000 19:53:32 -0500 (EST) From: "Donald J. Maddox" Reply-To: dmaddox@sc.rr.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23184: Fetchmail port has a broken dependency when WITH_X11 is defined Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23184 >Category: ports >Synopsis: Fetchmail port has a broken dependency when WITH_X11 defined >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 Nov 29 17:00:05 PST 2000 >Closed-Date: >Last-Modified: >Originator: Donald J. Maddox >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cae88-102-101.sc.rr.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Nov 21 10:21:43 EST 2000 root@cae88-102-101.sc.rr.com:/usr/src/sys/compile/RHIANNON i386 >Description: The fetchmail port has a RUN_DEPENDS on py-tkinter when WITH_X11 is defined. It checks for a py-tkinter installation by looking for ${LOCALBASE}/lib/python1.5/site-packages/_tkinter.so. Unfortunately, the py-tkinter port actually uses python-2.0, not python-1.5, so this dependency test can never succeed. >How-To-Repeat: $ cd /usr/ports/mail/fetchmail $ make -DWITH_X11 install >Fix: --- Makefile.orig Sun Nov 26 20:00:19 2000 +++ Makefile Wed Nov 29 19:37:16 2000 @@ -19,7 +19,7 @@ LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext .if defined(WITH_X11) -RUN_DEPENDS= ${LOCALBASE}/lib/python1.5/site-packages/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter +RUN_DEPENDS= ${LOCALBASE}/lib/python2.0/site-packages/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter .endif GNU_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 Nov 29 17:20: 6 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A645437B401 for ; Wed, 29 Nov 2000 17:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAU1K1F98615; Wed, 29 Nov 2000 17:20:01 -0800 (PST) (envelope-from gnats) Received: from cae88-102-101.sc.rr.com (cae88-102-101.sc.rr.com [24.88.102.101]) by hub.freebsd.org (Postfix) with ESMTP id 9D37537B400 for ; Wed, 29 Nov 2000 17:14:09 -0800 (PST) Received: (from myself@localhost) by cae88-102-101.sc.rr.com (8.11.1/8.9.3) id eAU1EPK73257; Wed, 29 Nov 2000 20:14:25 -0500 (EST) (envelope-from myself) Message-Id: <200011300114.eAU1EPK73257@cae88-102-101.sc.rr.com> Date: Wed, 29 Nov 2000 20:14:25 -0500 (EST) From: dmaddox@sc.rr.com Reply-To: dmaddox@sc.rr.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23185: No distfile for py-kde port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23185 >Category: ports >Synopsis: Missing distfile for py-kde >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 Nov 29 17:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Donald J. Maddox >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cae88-102-101.sc.rr.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Nov 21 10:21:43 EST 2000 root@cae88-102-101.sc.rr.com:/usr/src/sys/compile/RHIANNON i386 >Description: Apparently, no distfile exists on the master sites for this port. >How-To-Repeat: $ cd /usr/ports/x11-toolkits/py-kde $ make >Fix: Find the correct distfile and put it on at least one of the mastersites ;-) >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 Nov 29 17:30:19 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E454E37B402 for ; Wed, 29 Nov 2000 17:30:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAU1U9199825; Wed, 29 Nov 2000 17:30:09 -0800 (PST) (envelope-from gnats) Received: from cae88-102-101.sc.rr.com (cae88-102-101.sc.rr.com [24.88.102.101]) by hub.freebsd.org (Postfix) with ESMTP id 948A037B400 for ; Wed, 29 Nov 2000 17:20:48 -0800 (PST) Received: (from myself@localhost) by cae88-102-101.sc.rr.com (8.11.1/8.9.3) id eAU1L5173965; Wed, 29 Nov 2000 20:21:05 -0500 (EST) (envelope-from myself) Message-Id: <200011300121.eAU1L5173965@cae88-102-101.sc.rr.com> Date: Wed, 29 Nov 2000 20:21:05 -0500 (EST) From: dmaddox@sc.rr.com Reply-To: dmaddox@sc.rr.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23186: The py-qt port fails to compile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23186 >Category: ports >Synopsis: The py-qt port fails to compile >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 Nov 29 17:30:09 PST 2000 >Closed-Date: >Last-Modified: >Originator: Donald J. Maddox >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cae88-102-101.sc.rr.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Nov 21 10:21:43 EST 2000 root@cae88-102-101.sc.rr.com:/usr/src/sys/compile/RHIANNON i386 >Description: This port fails to compile (see below). >How-To-Repeat: >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: >ROOT-py-qt> make ===> Extracting for py-qt-2.2 >> Checksum OK for PyQt-2.2.tar.gz. ===> py-qt-2.2 depends on file: /usr/local/bin/python2.0 - found ===> py-qt-2.2 depends on executable: gmake - found ===> py-qt-2.2 depends on executable: libtool - found ===> py-qt-2.2 depends on shared library: sip.4 - found ===> py-qt-2.2 depends on shared library: qt2.4 - found ===> Patching for py-qt-2.2 ===> Applying FreeBSD patches for py-qt-2.2 ===> Configuring for py-qt-2.2 creating cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes . . . creating config.h ===> Building for py-qt-2.2 gmake all-recursive gmake[1]: Entering directory `/usr/ports/x11-toolkits/py-qt/work/PyQt-2.2' Making all in qt gmake[2]: Entering directory `/usr/ports/x11-toolkits/py-qt/work/PyQt-2.2/qt' c++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/python2.0 -I/usr/local/include/sip -I/usr/X11R6/include/qt2 -I/usr/X11R6/include -fno-exceptions -Os -mpentiumpro -march=pentiumpro -pipe -c sip_helper.cpp /bin/sh ../libtool --mode=link c++ -fno-exceptions -Os -mpentiumpro -march=pentiumpro -pipe -lgcc -o sip_helper sip_helper.o mkdir .libs c++ -fno-exceptions -Os -mpentiumpro -march=pentiumpro -pipe -lgcc -o sip_helper sip_helper.o sip_helper.o: In function `QArray type_info function': sip_helper.o(.gnu.linkonce.t.__tft6QArray1Zc+0x16): undefined reference to `QGArray type_info function' sip_helper.o(.gnu.linkonce.t.__tft6QArray1Zc+0x1e): undefined reference to `QGArray type_info node' gmake[2]: *** [sip_helper] Error 1 gmake[2]: Leaving directory `/usr/ports/x11-toolkits/py-qt/work/PyQt-2.2/qt' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-toolkits/py-qt/work/PyQt-2.2' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/x11-toolkits/py-qt. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-qt. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-qt. >ROOT-py-qt> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 17:42:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id B9EC737B400 for ; Wed, 29 Nov 2000 17:42:33 -0800 (PST) Received: from jean ([24.49.20.172]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with SMTP id G4TE0400.NHR for ; Wed, 29 Nov 2000 20:40:52 -0500 From: "Jean Robichaud" To: Subject: OpenClient Date: Wed, 29 Nov 2000 20:44:05 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Are Sybase OpenClient libraries available for FreeBSD? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 17:44: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from toptk.com (tp085010.seeder.net [202.43.85.10]) by hub.freebsd.org (Postfix) with ESMTP id E2F7837B401 for ; Wed, 29 Nov 2000 17:44:04 -0800 (PST) Received: from toptk.com (tc070195.seeder.net [202.43.70.195] (may be forged)) by toptk.com (8.9.3/8.9.3) with ESMTP id JAA24779; Thu, 30 Nov 2000 09:38:31 +0800 Message-ID: <3A25B008.8436848C@toptk.com> Date: Thu, 30 Nov 2000 09:40:25 +0800 From: Kevin Lo X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-20001115-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: dmaddox@sc.rr.com Cc: ports@FreeBSD.ORG Subject: Re: Where is the distfile for py-kde? References: <20001129174038.A48253@cae88-102-101.sc.rr.com> Content-Type: text/plain; charset=big5 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Donald J . Maddox" wrote: > Anyone know where the distfile for py-kde can be obtained? This port should be update. The lastest version is 2.2. http://www.thekompany.com/projects/pykde/ - Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 18: 7:52 2000 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 2E09837B400 for ; Wed, 29 Nov 2000 18:07:49 -0800 (PST) Received: from palle.girgensohn.se (c193.150.250.87.cm-upc.chello.se [193.150.250.87]) by bastuba.partitur.se (8.9.3/8.9.3) with ESMTP id DAA06141; Thu, 30 Nov 2000 03:07:47 +0100 (CET) (envelope-from girgen@partitur.se) Received: from partitur.se (localhost [127.0.0.1]) by palle.girgensohn.se (8.11.1/8.11.1) with ESMTP id eAU27ef19098; Thu, 30 Nov 2000 03:07:40 +0100 (CET) (envelope-from girgen@partitur.se) Message-ID: <3A25B66C.906D674A@partitur.se> Date: Thu, 30 Nov 2000 03:07:40 +0100 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: sv, en MIME-Version: 1.0 To: Holger Mitterwald Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: postgresql7-7.0.2 References: <3A257ABE.4CB5DE3D@lsd.franken.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If I find the time to do the last test, I'll send-pr an update on thursday, GMT. /Palle Holger Mitterwald wrote: > > Hello, > I just discovered that postgresql has released version 7.0.3 with > several > bugfixes. Is it possible to update the ports? > Thank you in advance! > > Best regards, > Holger Mitterwald > > -- > Holger Mitterwald > Kneipenfuehrer Deutschland pub guide > for germany > http://www.kneipenfuehrer.de > > 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 Wed Nov 29 21:19:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailhost.sclp.com (unknown [209.196.61.66]) by hub.freebsd.org (Postfix) with ESMTP id 651E037B404 for ; Wed, 29 Nov 2000 21:19:50 -0800 (PST) Received: from aguirre.la.mastaler.com (localhost [127.0.0.1]) by mailhost.sclp.com (Postfix) with SMTP id B2667D049D for ; Thu, 30 Nov 2000 00:19:48 -0500 (EST) Received: (qmail 69225 invoked by uid 100); 30 Nov 2000 05:19:46 -0000 To: freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features References: <00112811292900.19785@nightshade> <20001128231806.A318@ringworld.oblivion.bg> <200011282208.eASM8lO60591@bmah-freebsd-0.cisco.com> X-Face: #PFJ%E?"C]hg]n/b(X~UrRpjsGT[!dwR>L]h\8|Da#kz,&TBB`@{JN'iLB+X5K6F#+cio5k 9MWHi#f=+FO5(1l0EGJcylJm40p,/7p6fpK#2l3egDrl^v]:Es&xg!g|G:)6W\2}|@UgN=k*sCt_KH +DKCDZ5R|4%P&jN|WnreN`8"KC;y,&drj Date: 29 Nov 2000 22:19:46 -0700 In-Reply-To: "Bruce A. Mah"'s message of "Tue, 28 Nov 2000 14:08:47 -0800" Message-ID: Lines: 8 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Bruce A. Mah" writes: > Well...almost but not quite. I think the work with pkg_add and > bsd.port.mk is a prerequesite to doing an update target. The > pkg_add modification is in 5-CURRENT and 4-STABLE; the bsd.port.mk > is awaiting a commit. What is holding up this commit? Can't you do it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 21:23: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailhost.sclp.com (unknown [209.196.61.66]) by hub.freebsd.org (Postfix) with ESMTP id ED59137B400 for ; Wed, 29 Nov 2000 21:23:06 -0800 (PST) Received: from aguirre.la.mastaler.com (localhost [127.0.0.1]) by mailhost.sclp.com (Postfix) with SMTP id CB72DD049D for ; Thu, 30 Nov 2000 00:23:05 -0500 (EST) Received: (qmail 69240 invoked by uid 100); 30 Nov 2000 05:23:03 -0000 To: freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features References: <00112811292900.19785@nightshade> <20001128231806.A318@ringworld.oblivion.bg> <200011282208.eASM8lO60591@bmah-freebsd-0.cisco.com> X-Face: #PFJ%E?"C]hg]n/b(X~UrRpjsGT[!dwR>L]h\8|Da#kz,&TBB`@{JN'iLB+X5K6F#+cio5k 9MWHi#f=+FO5(1l0EGJcylJm40p,/7p6fpK#2l3egDrl^v]:Es&xg!g|G:)6W\2}|@UgN=k*sCt_KH +DKCDZ5R|4%P&jN|WnreN`8"KC;y,&drj Date: 29 Nov 2000 22:23:03 -0700 In-Reply-To: "Bruce A. Mah"'s message of "Tue, 28 Nov 2000 14:08:47 -0800" Message-ID: Lines: 9 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Bruce A. Mah" writes: > But in seriousness, I thought there was some talk about adopting > some parts of NetBSD's pkgsrc system for FreeBSD, discussed on this > list at one point in the past. It would be nice if there was some kind of "TODO" list for the FreeBSD ports system, so that interested parties who want to do some of this work could browse thru it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 21:28:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailhost.sclp.com (unknown [209.196.61.66]) by hub.freebsd.org (Postfix) with ESMTP id 2D34437B400 for ; Wed, 29 Nov 2000 21:28:11 -0800 (PST) Received: from aguirre.la.mastaler.com (localhost [127.0.0.1]) by mailhost.sclp.com (Postfix) with SMTP id D8FBFD049D for ; Thu, 30 Nov 2000 00:28:09 -0500 (EST) Received: (qmail 69253 invoked by uid 100); 30 Nov 2000 05:28:07 -0000 To: freebsd-ports@FreeBSD.org Subject: Re: NetBSD package system features References: <00112811292900.19785@nightshade> <20001128231806.A318@ringworld.oblivion.bg> <200011282208.eASM8lO60591@bmah-freebsd-0.cisco.com> <20001129002142.B318@ringworld.oblivion.bg> X-Face: #PFJ%E?"C]hg]n/b(X~UrRpjsGT[!dwR>L]h\8|Da#kz,&TBB`@{JN'iLB+X5K6F#+cio5k 9MWHi#f=+FO5(1l0EGJcylJm40p,/7p6fpK#2l3egDrl^v]:Es&xg!g|G:)6W\2}|@UgN=k*sCt_KH +DKCDZ5R|4%P&jN|WnreN`8"KC;y,&drj Date: 29 Nov 2000 22:28:07 -0700 In-Reply-To: Peter Pentchev's message of "Wed, 29 Nov 2000 00:21:42 +0200" Message-ID: Lines: 11 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Peter Pentchev writes: > I might even go so far in my enthusiasm as to actually draft some > kind of update utility (I do not feel all that warm and fuzzy about > mucking up /usr/ports/Mk makefiles :) I don't understand this. It seems more useful to create an "update" make target instead of detaching the functionality into yet another (un)maintained utility. What does Bruce and others think about this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 29 22:24:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-1.cisco.com (sj-msg-core-1.cisco.com [171.71.163.11]) by hub.freebsd.org (Postfix) with ESMTP id 2F93A37B400 for ; Wed, 29 Nov 2000 22:24:44 -0800 (PST) Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by sj-msg-core-1.cisco.com (8.9.3/8.9.1) with ESMTP id WAA19689; Wed, 29 Nov 2000 22:24:49 -0800 (PST) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.1/8.11.1) id eAU6Oh176277; Wed, 29 Nov 2000 22:24:43 -0800 (PST) (envelope-from bmah) Message-Id: <200011300624.eAU6Oh176277@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Jason R Mastaler Cc: freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features In-Reply-To: References: <00112811292900.19785@nightshade> <20001128231806.A318@ringworld.oblivion.bg> <200011282208.eASM8lO60591@bmah-freebsd-0.cisco.com> Comments: In-reply-to Jason R Mastaler message dated "29 Nov 2000 22:19:46 -0700." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_401721368P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Wed, 29 Nov 2000 22:24:43 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_401721368P Content-Type: text/plain; charset=us-ascii I'm going to reply to three of your messages at one time if that's OK... If memory serves me right, Jason R Mastaler wrote: > "Bruce A. Mah" writes: > > > Well...almost but not quite. I think the work with pkg_add and > > bsd.port.mk is a prerequesite to doing an update target. The > > pkg_add modification is in 5-CURRENT and 4-STABLE; the bsd.port.mk > > is awaiting a commit. > > What is holding up this commit? Satoshi Asami's lack of free time. > Can't you do it? No. Only Asami-san touches bsd.port.mk. > > But in seriousness, I thought there was some talk about adopting > > some parts of NetBSD's pkgsrc system for FreeBSD, discussed on this > > list at one point in the past. > > It would be nice if there was some kind of "TODO" list for the FreeBSD > ports system, so that interested parties who want to do some of this > work could browse thru it. Usually, the problem our project has is that there's more work than people to do the work. I'd say if you find some problem that you think needs fixing, go ahead and start working on it. Well, maybe after a note to the appropriate list to make sure you're not reinventing the wheel. For the case of the Magic Package Updating Utility, there's a lot of past discussion on -ports. Also, I think there is some relevance with the OpenPackages project, in that whatever they come up with will probably have some bearing on issues like updating. > It seems more useful to create an "update" make target instead of > detaching the functionality into yet another (un)maintained utility. I fail to see what part of pkg_* is unmaintained. Anyways, I think the hard part, for whomever decides to take this on, will be to get the functionality right. Whether it manifests itself as a make target or an executable is, IMHO, a secondary consideration. Cheers, Bruce. --==_Exmh_401721368P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6JfKr2MoxcVugUsMRAn4JAJ0So4E5WfU8G1QQHKnAxJzWrlrhigCcD2wQ EzoFyCNZ1LIMLkf3PCcJqZM= =seCj -----END PGP SIGNATURE----- --==_Exmh_401721368P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 0: 9:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from corona.thenetof.lostinlove.dk (unknown [213.237.43.136]) by hub.freebsd.org (Postfix) with ESMTP id C586B37B400 for ; Thu, 30 Nov 2000 00:09:41 -0800 (PST) Received: from localhost (mic@localhost) by corona.thenetof.lostinlove.dk (8.9.3/8.9.3) with ESMTP id JAA24711 for ; Thu, 30 Nov 2000 09:05:35 +0100 (CET) (envelope-from mic@technorave.dk) X-Authentication-Warning: corona.thenetof.lostinlove.dk: mic owned process doing -bs Date: Thu, 30 Nov 2000 09:05:35 +0100 (CET) From: Michael Helsvig X-Sender: mic@corona.thenetof.lostinlove.dk To: ports@freebsd.org Subject: Your upgrade kit for FreeBSD 4.0 is missing? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Trying to fetch the kit from the homepage, or any FTP, failes because it does not exist. Why is that? -- Mail - michael@technorave.dk Homepage - http://www.technorave.dk/ ICQ - 9345045 Ripe NIC Handle - MH2506-DK Sometimes I just want a lover. Sometimes I just need a friend, to hold me till the end. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 0:52:38 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A17637B400; Thu, 30 Nov 2000 00:52:37 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAU8qbQ72864; Thu, 30 Nov 2000 00:52:37 -0800 (PST) (envelope-from roam) Date: Thu, 30 Nov 2000 00:52:37 -0800 (PST) From: Message-Id: <200011300852.eAU8qbQ72864@freefall.freebsd.org> To: dmaddox@sc.rr.com, roam@FreeBSD.org, freebsd-ports@FreeBSD.org, roam@FreeBSD.org Subject: Re: ports/23184: Fetchmail port has a broken dependency when WITH_X11 defined Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fetchmail port has a broken dependency when WITH_X11 defined State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Thu Nov 30 00:51:52 PST 2000 State-Changed-Why: Committed, thanks for the alert! Responsible-Changed-From-To: freebsd-ports->roam Responsible-Changed-By: roam Responsible-Changed-When: Thu Nov 30 00:51:52 PST 2000 Responsible-Changed-Why: Me like fetchmail PR's much much well :) http://www.freebsd.org/cgi/query-pr.cgi?pr=23184 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 2:44:18 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CFFC37B698; Thu, 30 Nov 2000 02:44:17 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUAiHK89902; Thu, 30 Nov 2000 02:44:17 -0800 (PST) (envelope-from des) Date: Thu, 30 Nov 2000 02:44:17 -0800 (PST) From: Message-Id: <200011301044.eAUAiHK89902@freefall.freebsd.org> To: des@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/23021: [PATCH] Upgrade mysql-3.23 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Upgrade mysql-3.23 port Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: des Responsible-Changed-When: Thu Nov 30 02:44:00 PST 2000 Responsible-Changed-Why: Dirk maintains the MySQL ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=23021 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 3:53:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from octopus.phy.bg.ac.yu (octopus.phy.bg.ac.yu [147.91.80.4]) by hub.freebsd.org (Postfix) with ESMTP id 13DFC37B400; Thu, 30 Nov 2000 03:53:41 -0800 (PST) Received: from Athlon (octopus.phy.bg.ac.yu [147.91.80.4]) by octopus.phy.bg.ac.yu (Postfix) with SMTP id D74B619FED; Thu, 30 Nov 2000 12:53:25 +0100 (CET) From: Rasa Karapandza Date: Thu, 30 Nov 2000 01:56:56 +0100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" Cc: ports@FreeBSD.org Subject: FreeBSD Port: galeon-0.8 To: sobomax@FreeBSD.org MIME-Version: 1.0 Message-Id: <00113001565600.00532@Athlon> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Galeon 0.8 want to start only when there is not history.xml file present in .galeon dirctory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 4: 6:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by hub.freebsd.org (Postfix) with ESMTP id BA2B137B404; Thu, 30 Nov 2000 04:06:50 -0800 (PST) Received: from silvia.hip.berkeley.edu ([64.161.28.2]) by mta6.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0G4U00JJW6WI7G@mta6.snfc21.pbi.net>; Thu, 30 Nov 2000 04:05:07 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eAUC6ko84206; Thu, 30 Nov 2000 04:06:46 -0800 (PST envelope-from asami@cs.berkeley.edu) Date: Thu, 30 Nov 2000 04:06:46 -0800 (PST) From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] In-reply-to: <39F83E4D.AB979DF0@FreeBSD.org> (message from Maxim Sobolev on Thu, 26 Oct 2000 17:23:09 +0300) To: sobomax@FreeBSD.org Cc: bmah@FreeBSD.org, nbm@mithrandr.moria.org, knu@idaemons.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Message-id: <200011301206.eAUC6ko84206@silvia.hip.berkeley.edu> MIME-version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-type: text/plain; charset=US-ASCII User-Agent: SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 (=?ISO-2022-JP?B?GyRCMlYxYxsoQg==?=) References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> <39E84F54.257664E5@FreeBSD.org> <39ED7741.BE909115@FreeBSD.org> <39EFEACA.F6215581@FreeBSD.org> <39F3E490.33CCCC61@FreeBSD.org> <200010251737.e9PHb0389114@bmah-freebsd-0.cisco.com> <39F71CD6.C7B5C8A9@FreeBSD.org> <200010251856.e9PIugC91054@bmah-freebsd-0.cisco.com> <39F83E4D.AB979DF0@FreeBSD.org> X-Authentication-warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Maxim and gang, * From: Maxim Sobolev Sorry for taking so long. Here is my proposed patch. I'll first quote the last one I got from Maxim so you can compare. * With this message I attaching what is supposed to be a "latest version" of my patch. * * -Maxim * --------------7E7AC84E84CDA334197F7933 * Content-Type: text/plain; charset=koi8-r; * name="bsd.port.mk-origin.patch" * Content-Transfer-Encoding: 7bit * Content-Disposition: inline; * filename="bsd.port.mk-origin.patch" * * --- bsd.port.mk.orig Thu Oct 26 17:14:32 2000 * +++ bsd.port.mk Thu Oct 26 17:19:36 2000 * @@ -1026,6 +1026,17 @@ * PKGREQ?= ${PKGDIR}/pkg-req * PKGMESSAGE?= ${PKGDIR}/pkg-message * * +BASENAME?= /usr/bin/basename * + * +.if ${OSVERSION} > 500012 * +.for _CATEGORY in ${CATEGORIES} * +PKGCATEGORY?= ${_CATEGORY} * +.endfor * +_PORTDIRNAME!= ${BASENAME} ${.CURDIR} * +PORTDIRNAME?= ${_PORTDIRNAME} * +PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME} * +.endif * + * TMPPLIST?= ${WRKDIR}/.PLIST.mktmp * * PKG_CMD?= /usr/sbin/pkg_create * @@ -1048,6 +1059,9 @@ * .if !defined(NO_MTREE) * PKG_ARGS+= -m ${MTREE_FILE} * .endif * +.if defined(PKGORIGIN) && ${OSVERSION} > 500012 * +PKG_ARGS+= -o ${PKGORIGIN} * +.endif * .endif * .if defined(PKG_NOCOMPRESS) * PKG_SUFX?= .tar * @@ -1067,7 +1081,6 @@ * .endif * * AWK?= /usr/bin/awk * -BASENAME?= /usr/bin/basename * CAT?= /bin/cat * CHMOD?= /bin/chmod * CHOWN?= /usr/sbin/chown * * --------------7E7AC84E84CDA334197F7933-- === Index: bsd.port.mk =================================================================== RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v retrieving revision 1.360 diff -u -r1.360 bsd.port.mk --- bsd.port.mk 2000/11/16 13:06:25 1.360 +++ bsd.port.mk 2000/11/30 12:00:00 @@ -1046,6 +1046,15 @@ TMPPLIST?= ${WRKDIR}/.PLIST.mktmp +.if ${OSVERSION} >= 400000 +.for _CATEGORY in ${CATEGORIES} +PKGCATEGORY?= ${_CATEGORY} +.endfor +_PORTDIRNAME!= ${BASENAME} ${.CURDIR} +PORTDIRNAME?= ${_PORTDIRNAME} +PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME} +.endif + PKG_CMD?= /usr/sbin/pkg_create PKG_DELETE?= /usr/sbin/pkg_delete PKG_INFO?= /usr/sbin/pkg_info @@ -1066,6 +1075,9 @@ .if !defined(NO_MTREE) PKG_ARGS+= -m ${MTREE_FILE} .endif +.if defined(PKGORIGIN) +PKG_ARGS+= -o ${PKGORIGIN} +.endif .endif .if defined(PKG_NOCOMPRESS) PKG_SUFX?= .tar @@ -1382,7 +1394,7 @@ .if ${OSVERSION} >= 300000 # You need an upgrade kit or make world newer than this -BSDPORTMKVERSION= 20000201 +BSDPORTMKVERSION= 20001103 .if exists(/var/db/port.mkversion) VERSIONFILE= /var/db/port.mkversion .else === I noticed you didn't merge the changes back to 3-stable (actually, you should) so I put in a check for 4.0 and higher. I took out the test from the PKG_ARGS part since PKGORIGIN won't be set if the earlier test fails. The merge to 4-stable was on October 31 so a port.mkversion of November 3rd should pretty much cover the worst possible mirror delay. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 4: 8:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from racine.cybercable.fr (racine.cybercable.fr [212.198.0.201]) by hub.freebsd.org (Postfix) with SMTP id 7250937B400 for ; Thu, 30 Nov 2000 04:08:25 -0800 (PST) Received: (qmail 2235180 invoked from network); 30 Nov 2000 12:08:23 -0000 Received: from s011.dhcp212-229.cybercable.fr (HELO gits.dyndns.org) ([212.198.229.11]) (envelope-sender ) by racine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 30 Nov 2000 12:08:23 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id eAUC8MA24131; Thu, 30 Nov 2000 13:08:22 +0100 (CET) (envelope-from clefevre@citeweb.net) To: Jason R Mastaler Cc: freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features References: <00112811292900.19785@nightshade> <20001128231806.A318@ringworld.oblivion.bg> <200011282208.eASM8lO60591@bmah-freebsd-0.cisco.com> <20001129002142.B318@ringworld.oblivion.bg> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: Jason R Mastaler's message of "29 Nov 2000 22:28:07 -0700" From: Cyrille Lefevre Reply-To: clefevre@cybercable.fr Mail-Copies-To: never Date: 30 Nov 2000 13:08:21 +0100 Message-ID: <4s0py85m.fsf@gits.dyndns.org> Lines: 20 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jason R Mastaler writes: > Peter Pentchev writes: > > > I might even go so far in my enthusiasm as to actually draft some > > kind of update utility (I do not feel all that warm and fuzzy about > > mucking up /usr/ports/Mk makefiles :) > > I don't understand this. It seems more useful to create an "update" > make target instead of detaching the functionality into yet another > (un)maintained utility. > > What does Bruce and others think about this? consider someone who doesn't have the ports tree and which only install binary ports from CDs or whatever. so, something like pkg_add -u is required. Cyrille. -- home: mailto:clefevre@citeweb.net work: mailto:Cyrille.Lefevre@edf.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 4:22:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 3450437B402; Thu, 30 Nov 2000 04:22:25 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eAUCLwQ05411; Thu, 30 Nov 2000 14:22:00 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eAUCM1v08791; Thu, 30 Nov 2000 14:22:01 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A2645DF.64B66C7A@FreeBSD.org> Date: Thu, 30 Nov 2000 14:19:43 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami Cc: bmah@FreeBSD.org, nbm@mithrandr.moria.org, knu@idaemons.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installedpackages came from [Was: Enhancement of pkg_version's version comparisonroutine] References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> <39E84F54.257664E5@FreeBSD.org> <39ED7741.BE909115@FreeBSD.org> <39EFEACA.F6215581@FreeBSD.org> <39F3E490.33CCCC61@FreeBSD.org> <200010251737.e9PHb0389114@bmah-freebsd-0.cisco.com> <39F71CD6.C7B5C8A9@FreeBSD.org> <200010251856.e9PIugC91054@bmah-freebsd-0.cisco.com> <39F83E4D.AB979DF0@FreeBSD.org> <200011301206.eAUC6ko84206@silvia.hip.berkeley.edu> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi - Ports Wraith - Asami wrote: > Hi Maxim and gang, > > * From: Maxim Sobolev > > Sorry for taking so long. Here is my proposed patch. I'll first > quote the last one I got from Maxim so you can compare. > > * --- bsd.port.mk.orig Thu Oct 26 17:14:32 2000 > * +++ bsd.port.mk Thu Oct 26 17:19:36 2000 > === > Index: bsd.port.mk > =================================================================== > RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v > retrieving revision 1.360 > diff -u -r1.360 bsd.port.mk > --- bsd.port.mk 2000/11/16 13:06:25 1.360 > +++ bsd.port.mk 2000/11/30 12:00:00 > Looks fine. > I noticed you didn't merge the changes back to 3-stable (actually, you > should) Ok, I'll do it. I was unsure if I'm allowed to backport functionality-extending changes into 3-STABLE. > so I put in a check for 4.0 and higher. I took out the test > from the PKG_ARGS part since PKGORIGIN won't be set if the earlier > test fails. Ok. > The merge to 4-stable was on October 31 so a port.mkversion of > November 3rd should pretty much cover the worst possible mirror delay. Sounds reasonably. Go ahead with it! ;) -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 5:37:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id C1A3737B400 for ; Thu, 30 Nov 2000 05:37:33 -0800 (PST) Received: by puck.firepipe.net (Postfix, from userid 1000) id 5F59A1B13; Thu, 30 Nov 2000 08:37:33 -0500 (EST) Date: Thu, 30 Nov 2000 08:37:33 -0500 From: Will Andrews To: "Jason R. Mastaler" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features Message-ID: <20001130083733.N559@puck.firepipe.net> Reply-To: Will Andrews References: <00112811292900.19785@nightshade> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00112811292900.19785@nightshade>; from jason@mastaler.com on Tue, Nov 28, 2000 at 11:29:29AM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 28, 2000 at 11:29:29AM -0700, Jason R. Mastaler wrote: > I've been looking at the NetBSD package system lately to see how it > compares to FreeBSD's. It seems to have quite a few additional > features. At this point, I'd rather focus on openpackages, which has a lot more potential to solve problems and introduce new features done the right way. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 5:39:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 7283837B400 for ; Thu, 30 Nov 2000 05:39:10 -0800 (PST) Received: by puck.firepipe.net (Postfix, from userid 1000) id 34AEB1B13; Thu, 30 Nov 2000 08:39:10 -0500 (EST) Date: Thu, 30 Nov 2000 08:39:10 -0500 From: Will Andrews To: Matthew Emmerton Cc: freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features Message-ID: <20001130083910.O559@puck.firepipe.net> Reply-To: Will Andrews References: <00112811292900.19785@nightshade> <005b01c059bc$d8bc32b0$1200a8c0@gsicomp.on.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <005b01c059bc$d8bc32b0$1200a8c0@gsicomp.on.ca>; from matt@gsicomp.on.ca on Tue, Nov 28, 2000 at 11:28:38PM -0500 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 28, 2000 at 11:28:38PM -0500, Matthew Emmerton wrote: > This target scares me. Why? It is not uncommon to find an > improperly-designed port in which the deinstall target *removes* > configuration files. On a production system, this can be disastrous. I sure hope there aren't any more ports like that these days. I believe most (if not all) have been fixed. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 5:41:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.mk.bsdclub.org (t57.htmnet.ne.jp [202.248.65.57]) by hub.freebsd.org (Postfix) with ESMTP id 31FCE37B401; Thu, 30 Nov 2000 05:41:32 -0800 (PST) Received: from sakura.mk.bsdclub.org (sakura.mk.bsdclub.org [3ffe:505:2022:0:2a0:c9ff:fe20:9aff]) by mail.mk.bsdclub.org (8.11.0+3.3W/3.7W/smtpfeed 1.07) with ESMTP/inet6 id eAUDetY93424; Thu, 30 Nov 2000 22:40:55 +0900 (JST) Received: from sakura.mk.bsdclub.org (localhost.mk.bsdclub.org [127.0.0.1]) by sakura.mk.bsdclub.org (8.11.1/3.7W) with ESMTP/inet id eAUDetc82232; Thu, 30 Nov 2000 22:40:55 +0900 (JST) Message-Id: <200011301340.eAUDetc82232@sakura.mk.bsdclub.org> To: Peter Pentchev Cc: Motoyuki Konno , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/imake-4/scripts configure From: Motoyuki Konno X-Mailer: mh-e on Mule 2.3 / Emacs 19.34.1 References: <200011291208.eATC8K274350@freefall.freebsd.org> <20001130150829.A9269@ringworld.oblivion.bg> Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Date: Thu, 30 Nov 2000 22:40:55 +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Add Cc: ports Peter Pentchev wrote: > On Wed, Nov 29, 2000 at 04:08:20AM -0800, Motoyuki Konno wrote: > > motoyuki 2000/11/29 04:08:20 PST > > > > Modified files: > > devel/imake-4/scripts configure > > Log: > > Add "#define BuildAoutLibraries ${BuildAoutLibraries}". > > > > This variable is declared in port Makefile. > > > > Submitted by: motoyuki > > Reviewed by: maintainer > > Reference: [ports-jp 10459],[ports-jp 10464] > > > > Revision Changes Path > > 1.4 +3 -0 ports/devel/imake-4/scripts/configure > > Does this warrant a PORTREVISION bump? Hmm. The default value of ${BuildAoutLibraries} is "NO" (see imake config file which will be installed into /usr/X11R6/lib/X11/config). and port Makefil). So, my commit does NOT change the behaviour of imake-4 package. # If you build this port with "make BuildAoutLibraries=YES package", # the package will differ. So, I think PORTREVISION bump is not needed. Is my idea wrong? -- ------------------------------------------------------------------------ Motoyuki Konno motoyuki@bsdclub.org (Home) motoyuki@FreeBSD.ORG (FreeBSD Project) http://www.freebsd.org/~motoyuki/ (WWW) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 5:49: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (pool73-tch-1.Sofia.0rbitel.net [212.95.170.73]) by hub.freebsd.org (Postfix) with SMTP id DE06537B401 for ; Thu, 30 Nov 2000 05:48:57 -0800 (PST) Received: (qmail 15475 invoked by uid 1000); 30 Nov 2000 13:48:21 -0000 Date: Thu, 30 Nov 2000 15:48:21 +0200 From: Peter Pentchev To: Motoyuki Konno Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/imake-4/scripts configure Message-ID: <20001130154821.C9269@ringworld.oblivion.bg> Mail-Followup-To: Motoyuki Konno , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org References: <200011291208.eATC8K274350@freefall.freebsd.org> <20001130150829.A9269@ringworld.oblivion.bg> <200011301340.eAUDetc82232@sakura.mk.bsdclub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011301340.eAUDetc82232@sakura.mk.bsdclub.org>; from motoyuki@bsdclub.org on Thu, Nov 30, 2000 at 10:40:55PM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Whups. Didn't know the default was 'NO'. My apologies :) G'luck, Peter -- The rest of this sentence is written in Thailand, on On Thu, Nov 30, 2000 at 10:40:55PM +0900, Motoyuki Konno wrote: > Add Cc: ports > > Peter Pentchev wrote: > > On Wed, Nov 29, 2000 at 04:08:20AM -0800, Motoyuki Konno wrote: > > > motoyuki 2000/11/29 04:08:20 PST > > > > > > Modified files: > > > devel/imake-4/scripts configure > > > Log: > > > Add "#define BuildAoutLibraries ${BuildAoutLibraries}". > > > > > > This variable is declared in port Makefile. > > > > > > Submitted by: motoyuki > > > Reviewed by: maintainer > > > Reference: [ports-jp 10459],[ports-jp 10464] > > > > > > Revision Changes Path > > > 1.4 +3 -0 ports/devel/imake-4/scripts/configure > > > > Does this warrant a PORTREVISION bump? > > Hmm. The default value of ${BuildAoutLibraries} is "NO" (see imake > config file which will be installed into /usr/X11R6/lib/X11/config). > and port Makefil). So, my commit does NOT change the behaviour of > imake-4 package. > > # If you build this port with "make BuildAoutLibraries=YES package", > # the package will differ. > > > So, I think PORTREVISION bump is not needed. Is my idea wrong? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 6:19:57 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A0E637B401; Thu, 30 Nov 2000 06:19:56 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUEJuh24911; Thu, 30 Nov 2000 06:19:56 -0800 (PST) (envelope-from kevlo) Date: Thu, 30 Nov 2000 06:19:56 -0800 (PST) From: Message-Id: <200011301419.eAUEJuh24911@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23177: update news/fidogate (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update news/fidogate (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Nov 30 06:19:42 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23177 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 6:50:10 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF28A37B698 for ; Thu, 30 Nov 2000 06:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUEo2x29777; Thu, 30 Nov 2000 06:50:02 -0800 (PST) (envelope-from gnats) Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 5E82137B400 for ; Thu, 30 Nov 2000 06:47:34 -0800 (PST) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 141Uzb-0009x8-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 30 Nov 2000 16:47:23 +0200 Message-Id: Date: Thu, 30 Nov 2000 16:47:23 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23193: Port fix: biology/emboss (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23193 >Category: ports >Synopsis: Port fix: biology/emboss (MAINTAINER) >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 Nov 30 06:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 5.0-CURRENT i386 >Organization: Electric Genetics >Environment: >Description: - Update distinfo. Seems like they re-rolled all the distribution tarballs without upping version numbers mere hours after the last port update when through. :-( - Spotted on: bento >How-To-Repeat: >Fix: diff -ruN emboss.bak/distinfo emboss/distinfo --- emboss.bak/distinfo Thu Nov 30 16:43:25 2000 +++ emboss/distinfo Thu Nov 30 16:44:00 2000 @@ -1,4 +1,4 @@ -MD5 (emboss/EMBOSS-1.8.0.tar.gz) = 4cbc80557dbbe41fbedb477e00e47aba -MD5 (emboss/MSE-0.0.4.tar.gz) = 800216297fa6c3de76f6d1d7ea194a22 -MD5 (emboss/PHYLIP-3.573c.tar.gz) = bd2ded015838da4236c3d4ac25ae8ede -MD5 (emboss/TOPO-0.1.tar.gz) = 42f4f6e57e4c99b4684b0a4810f2c0a0 +MD5 (emboss/EMBOSS-1.8.0.tar.gz) = 4f4b54f5e2c3e053baaffb19f258ad2a +MD5 (emboss/MSE-0.0.4.tar.gz) = 981832ce14fc4bdccef12b8ae0d0ad1d +MD5 (emboss/PHYLIP-3.573c.tar.gz) = b999b725bd0fc6d9ebdb31f6b57e30ee +MD5 (emboss/TOPO-0.1.tar.gz) = 59025d1bf906217ccbb4ca4ed6214458 >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 Nov 30 7:10: 9 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EAE9C37B402 for ; Thu, 30 Nov 2000 07:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUFA2H36208; Thu, 30 Nov 2000 07:10:02 -0800 (PST) (envelope-from gnats) Date: Thu, 30 Nov 2000 07:10:02 -0800 (PST) Message-Id: <200011301510.eAUFA2H36208@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/23193: Port fix: biology/emboss (MAINTAINER) Reply-To: Peter Pentchev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23193; it has been noted by GNATS. From: Peter Pentchev To: johann@egenetics.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/23193: Port fix: biology/emboss (MAINTAINER) Date: Thu, 30 Nov 2000 17:00:41 +0200 On Thu, Nov 30, 2000 at 04:47:23PM +0200, johann@egenetics.com wrote: > > >Number: 23193 > >Category: ports > >Synopsis: Port fix: biology/emboss (MAINTAINER) > >Originator: Johann Visagie > >Environment: > >Description: > - Update distinfo. Seems like they re-rolled all the distribution tarballs > without upping version numbers mere hours after the last port update when > through. :-( Do you by any chance keep the old distfiles, so you can check what has changed? Not that it's all that uncommon to reroll dist tarballs without notice (I've had that happen to fetchmail on me just the other day), but sometimes this could be an indication of backdoored distributions on compromised distsites.. It never hurts to be sure - that's just why the distfiles MD5 sums were introduced in the first place, I should think :) G'luck, Peter -- This sentence would be seven words long if it were six words shorter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 8:26:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mrout1.yahoo.com (mrout1.yahoo.com [208.48.125.95]) by hub.freebsd.org (Postfix) with ESMTP id D452C37B400 for ; Thu, 30 Nov 2000 08:25:57 -0800 (PST) Received: from yahoo-inc.com (quintara.corp.yahoo.com [208.48.106.173]) by mrout1.yahoo.com (8.11.1/8.11.1/y.out) with ESMTP id eAUGPps79666; Thu, 30 Nov 2000 08:25:51 -0800 (PST) Message-ID: <3A267F8F.C5E97DFE@yahoo-inc.com> Date: Thu, 30 Nov 2000 08:25:51 -0800 From: Dave Viner X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-YAHOO-20000724 i386) X-Accept-Language: en MIME-Version: 1.0 To: xerces-c-dev@xml.apache.org, freebsd-ports@FreeBSD.ORG Subject: Porting Xerces-c to FreeBSD (round 1) References: Content-Type: multipart/mixed; boundary="------------738FF325BE1652B734ACC55F" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------738FF325BE1652B734ACC55F Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit I have updated the original Xerces-FreeBSD patch file from 1.1 to 1.3. This port completely works under FreeBSD 4.1, however, the functionality of Xerces is slightly limited (no unicode) Here are the steps to use it: tar xvzf patch -p < Xerces-FreeBSD-v1.patch ( you should prob. check for reject files with find . -name "*rej"... if any .rej files exist, there was a problem with the patch) cd xerces-c-src1_3_0 setenv XERCESCROOT `pwd` OR export XERCESCROOT=`pwd` cd src chmod 775 runConfigure ./runConfigure -p freebsd -c gcc -x g++ ( -c is the c compiler to use, and -x is the c++ compiler) gmake >& gmake.out cd ../samples chmod 775 runConfigure chmod 775 configure ./runConfigure -p freebsd -c gcc -x g++ gmake >& gmake.out (I have also attached a short shell script which does *most* of this work.. it needs a little brushing up tho) Notes on the build process... -- the 1st gmake builds the libxerces-c1_3.so in $XERCESCROOT/lib. the 2nd gmake build the sample programs in $XERCESCROOT/bin. They should all work, except for the StdInParse... i couldn't make that one work... not sure why. -- in order to run the sample programs, you must have the lib subdirectory in your LD_LIBRARY_PATH variable. otherwise, the programs won't find the .so Notes on the port... -- I have not fully tested the resultant library built by this patch, but all the samples run, and some basic other tests i created work -- I've only built this library using the "Iconv" Transcoder. I haven't used the ICU stuff from IBM. -- This port removes the unicode capabilities of Xerces. I could not successfully get the unicode stuff to work on bsd. So I replaced the unicode stuff with standard C calls (strlen, strcpy, etc). The main problem is that BSD uses runes to handle multibyte chars, which is unlike any other os that is supported by xerces. the main file that i found was causing problems with unicode was src/util/Transcoders/Iconv/IconvTransService.cpp. This file instantiates a IconvLCPTranscoder object which is responsible for handling the ugliness in string work (more precisely, it handles the "transcode()" function from the main body of the Xerces parser). There are a few problem with this file. It relies on the wcstombs and mbstowcs functions, and that if the first argument is a null pointer, the function will return the length to move from one type of string to the other (mbs = multibyte string, wcs = wide character string). However, the current manifestation of these functions in BSD do not support this function. However, there is a patch available that handles it. See http://www.FreeBSD.org/cgi/query-pr.cgi?pr=17694 for details on the problem and the patch. It requires recompiling libc. This patch fixes the ansi.c file to handle this case. However, I couldn't get the function to return my multibyte or wide character string at all. Essentially the returned pointer contained either only 1 character or was null every time. (simple program to test: #include int main(int argc, char **argv) { int len; wchar_t foo [10]; len = mbstowcs(NULL, "SE", 0); printf("len = %d (should be 2)\n", len); len = mbstowcs(foo,"SE",len); printf("len = %d (should be 2) string = %s (should be SE)\n",len,foo); } The output is: >./mbtest len = 2 (should be 2) len = 2 (should be 2) string = S (should be SE) I could not get around this issue. Perhaps someone on the BSD porters list can help with this issue? In the IconvTransService.cpp file, I added several lines of debugging that can be enabled by using a -DFREEBSD_DEBUG during compile... although i don't guarentee that it will still work properly. An alternative to patching the libc was proposed by Mikko Työläjärvi and is in the file as the mbstowcs_wrapper and wcstombs_wrapper functions. Conclusion: The patch isn't perfect, but it's a big start. If you don't need Unicode support, you can run the patch, and compile, and code on top of Xerces. I hope that others out there will be able to assist in overcoming the final hurdles and get the unicode stuff all working on FreeBSD. --------------738FF325BE1652B734ACC55F Content-Type: text/plain; charset=iso-8859-1; name="Xerces-FreeBSD-v1.patch" Content-Transfer-Encoding: 8bit Content-Disposition: inline; filename="Xerces-FreeBSD-v1.patch" diff -ruN xerces-c-src1_3_0/samples/Makefile.incl xerces-c-src1_3_0/samples/Makefile.incl --- xerces-c-src1_3_0/samples/Makefile.incl Sat Sep 30 10:37:24 2000 +++ xerces-c-src1_3_0/samples/Makefile.incl Wed Nov 22 13:58:06 2000 @@ -166,6 +166,16 @@ SHLIBSUFFIX=.so endif +#=============== FREEBSD SPECIFIC OPTIONS ========================= +ifeq (${PLATFORM}, FREEBSD) +CMP= -c ${CXXFLAGS} +CC= gcc -c -D${PLATFORM} -D_REENTRANT -fpic -instances=static +LINK = $(CXX) -g -D${PLATFORM} -fpic +PLATFORM_LIB_LINK_OPTIONS=-L/usr/lib -L/usr/local/lib +EXTRA_LINK_OPTIONS=-lc -lc_r -lstdc++ -pthread -lcompat -ldes -ldescrypt -ldes_p -ldescrypt_p +SHLIBSUFFIX=.so +endif + #================= HP SPECIFIC OPTIONS =========================== ifeq (${PLATFORM}, HPUX) ifeq (${COMPILER}, aCC) diff -ruN xerces-c-src1_3_0/samples/aclocal.m4 xerces-c-src1_3_0/samples/aclocal.m4 --- xerces-c-src1_3_0/samples/aclocal.m4 Thu Jan 1 01:00:00 1970 +++ xerces-c-src1_3_0/samples/aclocal.m4 Sat Dec 25 08:41:27 1999 @@ -0,0 +1,25 @@ +dnl aclocal.m4 for xerces +dnl Jonathan McDowell + +dnl FreeBSD -pthread check - Jonathan McDowell +AC_DEFUN(AC_PTHREAD_FREEBSD, +[AC_MSG_CHECKING([if we need -pthread for threads]) +AC_CACHE_VAL(ac_ldflag_pthread, +[ac_save_LDFLAGS="$LDFLAGS" +LDFLAGS="-pthread $LDFLAGS" +AC_TRY_LINK( +[ +char pthread_create(); +], +pthread_create();, +eval "ac_ldflag_pthread=yes", +eval "ac_ldflag_pthread=no"), +LIBS="$ac_save_LDFLAGS" +]) +if eval "test \"`echo $ac_ldflag_pthread`\" = yes"; then + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no) +fi +]) + diff -ruN xerces-c-src1_3_0/samples/configure.in freebsd/xerces-c-src1_3_0/samples/configure.in --- xerces-c-src1_3_0/samples/configure.in Wed Dec 1 18:58:20 1999 +++ xerces-c-src1_3_0/samples/configure.in Sat Dec 25 08:41:27 1999 @@ -11,10 +11,14 @@ AC_CHECK_LIB(m, floor) dnl special pthread handling (AIX uses pthreads instead of pthread) +dnl and FreeBSD uses -pthread instead of -lpthread AC_CHECK_LIB(pthread, pthread_create) if test $ac_cv_lib_pthread_pthread_create = no; then AC_CHECK_LIB(pthreads, pthread_create) fi +if test $ac_cv_lib_pthread_pthread_create = no; then +AC_PTHREAD_FREEBSD +fi dnl Checks for header files AC_CHECK_HEADERS(inttypes.h) @@ -39,6 +39,7 @@ *-*-UnixWare*) platform=UNIXWARE ;; *-*-unixware*) platform=UNIXWARE ;; *-*-linux*) platform=LINUX ;; + *-*-freebsd*) platform=FREEBSD ;; *-*-irix*) platform=IRIX ;; *-*-aix*) platform=AIX ;; *-*-hp*) platform=HPUX ; diff -uN xerces-c-src1_3_0/samples/runConfigure xerces-c-src1_3_0/samples/runConfigure --- xerces-c-src1_3_0/samples/runConfigure Sat Sep 30 10:37:24 2000 +++ xerces-c-src1_3_0/samples/runConfigure Tue Nov 21 15:23:10 2000 @@ -71,7 +71,7 @@ echo "Usage: runConfigure \"options\"" echo " where options may be any of the following:" echo " -p (accepts 'aix', 'linux', 'solaris', -'hp-10', 'hp-11', 'os400', 'irix', 'ptx', 'tru64')" +'hp-10', 'hp-11', 'os400', 'irix', 'ptx', 'tru64', 'freebsd')" echo " -c (e.g. gcc, xlc or icc)" echo " -x (e.g. g++, xlC, or icc)" echo " -d (specifies that you want to build debug version)" @@ -164,7 +164,7 @@ # Now check if the options are correct or not, bail out if incorrect case $platform in - aix | linux | solaris | hp-10 | hp-11 | os400 | irix | ptx | tru64) + aix | linux | solaris | hp-10 | hp-11 | os400 | irix | ptx | tru64 | freebsd) # platform has been recognized ;; *) @@ -181,8 +181,8 @@ LDFLAGS="-lC"; export LDFLAGS LIBS="-L/usr/lpp/xlC/lib"; export LIBS ;; - g++ | c++) - LDFLAGS="-lc"; export LDFLAGS + g++ | c++ | /usr/local/egcs-1.1.2/bin/g++ ) + LDFLAGS="-lc -lcompat"; export LDFLAGS if test $platform = "ptx"; then if test -z $XMLINSTALL; then XMLINSTALL=$ICUROOT @@ -227,7 +227,8 @@ elif test $platform = "ptx"; then ./configure --prefix=$XMLINSTALL else -./configure +autoconf +./configure $configureoptions fi echo diff -ruN xerces-c-src1_3_0/src/Makefile.incl freebsd/xerces-c-src1_3_0/src/Makefile.incl --- xerces-c-src1_3_0/src/Makefile.incl Thu Dec 23 05:57:10 1999 +++ xerces-c-src1_3_0/src/Makefile.incl Sat Dec 25 08:36:51 1999 @@ -227,6 +227,19 @@ SHLIBSUFFIX=.so endif +#=============== FREEBSD SPECIFIC OPTIONS ========================= +ifeq (${PLATFORM}, FREEBSD) +PLATFORM_COMPILE_OPTIONS = -fpic -instances=static -D${PLATFORM} -D_REENTRANT +MAKE_SHARED = ${CXX} -D${PLATFORM} -shared -fpic +MAKE_SHARED_C = ${CC} -D${PLATFORM} -shared -fpic +ifeq (${TRANSCODER}, ICU) + ALLLIBS = ${LIBS} -L/usr/lib -L/usr/local/lib -L/usr/ccs/lib -licu-uc -lc +else + ALLLIBS = ${LIBS} -L/usr/lib -L/usr/local/lib -L/usr/ccs/lib -lc +endif +SHLIBSUFFIX=.so +endif + #=============== IRIX SPECIFIC OPTIONS ============================ ifeq (${PLATFORM}, IRIX) PLATFORM_COMPILE_OPTIONS = -mips4 -LANG:pch -LANG:std -O2 \ diff -ruN xerces-c-src1_3_0/src/aclocal.m4 freebsd/xerces-c-src1_3_0/src/aclocal.m4 --- xerces-c-src1_3_0/src/aclocal.m4 Thu Jan 1 01:00:00 1970 +++ xerces-c-src1_3_0/src/aclocal.m4 Sat Dec 25 08:41:28 1999 @@ -0,0 +1,25 @@ +dnl aclocal.m4 for xerces +dnl Jonathan McDowell + +dnl FreeBSD -pthread check - Jonathan McDowell +AC_DEFUN(AC_PTHREAD_FREEBSD, +[AC_MSG_CHECKING([if we need -pthread for threads]) +AC_CACHE_VAL(ac_ldflag_pthread, +[ac_save_LDFLAGS="$LDFLAGS" +LDFLAGS="-pthread $LDFLAGS" +AC_TRY_LINK( +[ +char pthread_create(); +], +pthread_create();, +eval "ac_ldflag_pthread=yes", +eval "ac_ldflag_pthread=no"), +LIBS="$ac_save_LDFLAGS" +]) +if eval "test \"`echo $ac_ldflag_pthread`\" = yes"; then + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no) +fi +]) + diff -ruN xerces-c-src1_3_0/src/configure.in freebsd/xerces-c-src1_3_0/src/configure.in --- xerces-c-src1_3_0/src/configure.in Thu Dec 23 05:57:10 1999 +++ xerces-c-src1_3_0/src/configure.in Sat Dec 25 08:39:04 1999 @@ -11,6 +11,9 @@ dnl Checks for libraries AC_CHECK_LIB(m, floor) +dnl Do we need libcompat for ftime (FreeBSD does) +AC_CHECK_LIB(compat, ftime) + dnl dnl Do not know how to use this macro, so comment it out. dnl @@ -21,6 +24,12 @@ dnl fi dnl +ldflags=${LDCFLAGS} +AC_SUBST(ldflags) + +dnl Check if for FreeBSD threads +AC_PTHREAD_FREEBSD + dnl Checks for typedefs AC_CHECK_TYPE(XMLByte,unsigned char) @@ -34,6 +43,7 @@ *-*-UnixWare*) platform=UNIXWARE ;; *-*-unixware*) platform=UNIXWARE ;; *-*-linux*) platform=LINUX ;; + *-*-freebsd*) platform=FREEBSD ;; *-*-irix*) platform=IRIX ;; *-*-aix*) platform=AIX ;; *-*-hp*) platform=HPUX ; @@ -64,9 +74,6 @@ cflags=${CFLAGS} AC_SUBST(cflags) - -ldflags=${LDCFLAGS} -AC_SUBST(ldflags) libs=${LIBS} AC_SUBST(libs) @@ -98,6 +105,7 @@ util/Platforms/Solaris/Makefile \ util/Platforms/AIX/Makefile \ util/Platforms/Linux/Makefile \ +util/Platforms/FreeBSD/Makefile \ util/Platforms/HPUX/Makefile \ util/Platforms/OS390/Makefile \ util/Platforms/OS400/Makefile \ diff -ruN xerces-c-src1_3_0/src/runConfigure freebsd/xerces-c-src1_3_0/src/runConfigure --- xerces-c-src1_3_0/src/runConfigure Thu Dec 23 05:57:10 1999 +++ xerces-c-src1_3_0/src/runConfigure Sat Dec 25 08:41:28 1999 @@ -79,7 +79,7 @@ echo "Usage: runConfigure \"options\"" echo " where options may be any of the following:" echo " -p (accepts 'aix', 'linux', 'solaris', - 'hp-10', 'hp-11', 'unixware', 'os400', 'irix', 'ptx', 'tru64' )" + 'hp-10', 'hp-11', 'unixware', 'os400', 'irix', 'ptx', 'tru64', 'freebsd' )" echo " -c (e.g. gcc, cc, xlc_r, icc)" echo " -x (e.g. g++, CC, xlC_r, icc, c++)" echo " -d (specifies that you want to build debug version)" @@ -201,7 +201,7 @@ # case $platform in - aix | linux | solaris | hp-10 | hp-11 | irix | unixware | os400 | ptx | tru64) + aix | linux | solaris | hp-10 | hp-11 | irix | unixware | os400 | ptx | tru64 | freebsd) # platform has been recognized ;; *) @@ -275,6 +275,8 @@ elif test $platform = "hp-10"; then threadingLibs="-lcma" threadingDefines="-DXML_USE_DCE" +elif test $platform = "freebsd"; then + threadingLibs="" fi @@ -436,6 +438,7 @@ elif test $platform = "ptx"; then ./configure --prefix=$XMLINSTALL else +autoconf ./configure $configureoptions fi echo @@ -450,6 +453,7 @@ echo export CFLAGS=\"$CFLAGS\" echo export LIBS=\"$LIBS\" echo export NETACCESSOR=\"$NETACCESSOR\" +echo autoconf echo configure $configureoptions echo diff -ruN xerces-c-src1_3_0/src/util/AutoSense.hpp freebsd/xerces-c-src1_3_0/src/util/AutoSense.hpp --- xerces-c-src1_3_0/src/util/AutoSense.hpp Thu Dec 23 05:57:26 1999 +++ xerces-c-src1_3_0/src/util/AutoSense.hpp Sat Dec 25 08:40:59 1999 @@ -100,6 +100,9 @@ #elif defined(__linux__) #define XML_LINUX #define XML_UNIX +#elif defined(__FreeBSD__) + #define XML_FREEBSD + #define XML_UNIX #elif defined(IRIX) #define XML_IRIX #define XML_UNIX @@ -207,7 +207,7 @@ #elif defined(__GNUG__) #define XML_GCC #endif -#elif defined (__GNUG__) || defined(__linux__) +#elif defined (__GNUG__) || defined(__linux__) || defined(__FreeBSD__) #define XML_GCC #elif defined(XML_HPUX) #if defined(EXM_HPUX) diff -uN xerces-c-src1_3_0/src/util/Platforms/FreeBSD/Makefile.in freebsd/xerces-c-src1_3_0/src/util/Platforms/FreeBSD/Makefile.in --- xerces-c-src1_3_0/src/util/Platforms/FreeBSD/Makefile.in Tue Nov 21 10:13:42 2000 +++ xerces-c-src1_3_0/src/util/Platforms/FreeBSD/Makefile.in Tue Nov 21 10:11:11 2000 @@ -0,0 +1,85 @@ +# +# The Apache Software License, Version 1.1 +# +# Copyright (c) 1999-2000 The Apache Software Foundation. All rights +# reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in +# the documentation and/or other materials provided with the +# distribution. +# +# 3. The end-user documentation included with the redistribution, +# if any, must include the following acknowledgment: +# "This product includes software developed by the +# Apache Software Foundation (http://www.apache.org/)." +# Alternately, this acknowledgment may appear in the software itself, +# if and wherever such third-party acknowledgments normally appear. +# +# 4. The names "Xerces" and "Apache Software Foundation" must +# not be used to endorse or promote products derived from this +# software without prior written permission. For written +# permission, please contact apache\@apache.org. +# +# 5. Products derived from this software may not be called "Apache", +# nor may "Apache" appear in their name, without prior written +# permission of the Apache Software Foundation. +# +# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR +# ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +# ==================================================================== +# +# This software consists of voluntary contributions made by many +# individuals on behalf of the Apache Software Foundation, and was +# originally based on software copyright (c) 1999, International +# Business Machines, Inc., http://www.ibm.com . For more information +# on the Apache Software Foundation, please see +# . +# +# $Log: Makefile.in,v $ +# Revision 1.1 2000/03/01 22:33:38 abagchi +# Initial checkin to create object files directly under obj +#: +# + +PLATFORM = @platform@ +CC = @cc@ +CXX = @cxx@ +CXXFLAGS = @cxxflags@ +CFLAGS = @cflags@ +PREFIX = @prefix@ +LDFLAGS = @ldflags@ +LIBS = @libs@ +OSVER = @osver@ +USELIBWWW = @uselibwww@ +MESSAGELOADER = @messageloader@ +TRANSCODER = @transcoder@ + +MODULE = util + +include ../../../Makefile.incl + +SUBMODULE = Platforms/FreeBSD +CXXFLAGS += -D_GNU_SOURCE -D__USE_GNU +CPP_PUBHEADERS = FreeBSDDefs.hpp +CPP_OBJECTS = FreeBSDPlatformUtils.$(TO) + +include ../../Makefile.util.submodule + diff -ruN xerces-c-src1_3_0/src/util/Platforms/FreeBSD/FreeBSDDefs.hpp freebsd/xerces-c-src1_3_0/src/util/Platforms/FreeBSD/FreeBSDDefs.hpp --- xerces-c-src1_3_0/src/util/Platforms/FreeBSD/FreeBSDDefs.hpp Thu Jan 1 01:00:00 1970 +++ xerces-c-src1_3_0/src/util/Platforms/FreeBSD/FreeBSDDefs.hpp Sat Dec 25 08:41:28 1999 @@ -0,0 +1,65 @@ +/* + * The Apache Software License, Version 1.1 + * + * Copyright (c) 1999 The Apache Software Foundation. All rights + * reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. The end-user documentation included with the redistribution, + * if any, must include the following acknowledgment: + * "This product includes software developed by the + * Apache Software Foundation (http://www.apache.org/)." + * Alternately, this acknowledgment may appear in the software itself, + * if and wherever such third-party acknowledgments normally appear. + * + * 4. The names "Xerces" and "Apache Software Foundation" must + * not be used to endorse or promote products derived from this + * software without prior written permission. For written + * permission, please contact apache\@apache.org. + * + * 5. Products derived from this software may not be called "Apache", + * nor may "Apache" appear in their name, without prior written + * permission of the Apache Software Foundation. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF + * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT + * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * ==================================================================== + * + * This software consists of voluntary contributions made by many + * individuals on behalf of the Apache Software Foundation, and was + * originally based on software copyright (c) 1999, International + * Business Machines, Inc., http://www.ibm.com . For more information + * on the Apache Software Foundation, please see + * . + */ + +// --------------------------------------------------------------------------- +// FreeBSD Runs in little endian mode +// --------------------------------------------------------------------------- +#define ENDIANMODE_LITTLE +typedef void* FileHandle; + +#ifndef FREEBSD +#define FREEBSD +#endif diff -uN xerces-c-src1_3_0/src/util/Platforms/FreeBSD/FreeBSDPlatformUtils.cpp xerces-c-src1_3_0/src/util/Platforms/FreeBSD/FreeBSDPlatformUtils.cpp --- xerces-c-src1_3_0/src/util/Platforms/FreeBSD/FreeBSDPlatformUtils.cpp Mon Nov 27 13:43:58 2000 +++ xerces-c-src1_3_0/src/util/Platforms/FreeBSD/FreeBSDPlatformUtils.cpp Mon Nov 27 13:43:58 2000 @@ -0,0 +1,730 @@ +/* + * The Apache Software License, Version 1.1 + * + * Copyright (c) 1999-2000 The Apache Software Foundation. All rights + * reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. The end-user documentation included with the redistribution, + * if any, must include the following acknowledgment: + * "This product includes software developed by the + * Apache Software Foundation (http://www.apache.org/)." + * Alternately, this acknowledgment may appear in the software itself, + * if and wherever such third-party acknowledgments normally appear. + * + * 4. The names "Xerces" and "Apache Software Foundation" must + * not be used to endorse or promote products derived from this + * software without prior written permission. For written + * permission, please contact apache\@apache.org. + * + * 5. Products derived from this software may not be called "Apache", + * nor may "Apache" appear in their name, without prior written + * permission of the Apache Software Foundation. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF + * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT + * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * ==================================================================== + * + * This software consists of voluntary contributions made by many + * individuals on behalf of the Apache Software Foundation, and was + * originally based on software copyright (c) 1999, International + * Business Machines, Inc., http://www.ibm.com . For more information + * on the Apache Software Foundation, please see + * . + */ + +/* + * $Log: LinuxPlatformUtils.cpp,v $ + * Revision 1.17 2000/07/25 22:29:55 aruna1 + * Char definitions in XMLUni moved to XMLUniDefs + * + * Revision 1.16 2000/03/24 00:13:03 aruna1 + * Platform initialization taken care for both threaded and non-threaded environment + * + * Revision 1.15 2000/03/20 23:48:52 rahulj + * Added Socket based NetAccessor. This will enable one to + * use HTTP URL's for system id's. Default build options do + * not use this NetAccessor. Specify the '-n socket' option + * to 'runConfigure' to configure Xerces-C to use this new + * feature. The code works under Solaris 2.6, Linux, AIX + * and HPUX 11 with aCC. + * Todo's: enable proper error handling. + * + * Revision 1.14 2000/03/18 00:00:00 roddey + * Initial updates for two way transcoding support + * + * Revision 1.13 2000/03/02 21:10:36 abagchi + * Added empty function platformTerm() + * + * Revision 1.12 2000/03/02 20:42:41 abagchi + * Fixed typo in XMLExcepts + * + * Revision 1.11 2000/03/02 19:55:24 roddey + * This checkin includes many changes done while waiting for the + * 1.1.0 code to be finished. I can't list them all here, but a list is + * available elsewhere. + * + * Revision 1.10 2000/02/22 00:58:15 aruna1 + * openFile API updated + * + * Revision 1.9 2000/02/06 07:48:28 rahulj + * Year 2K copyright swat. + * + * Revision 1.8 2000/01/25 22:32:56 aruna1 + * Updated panic information + * + * Revision 1.7 2000/01/19 23:21:37 abagchi + * Made this file compatible with ICU 1.4 + * + * Revision 1.6 2000/01/19 17:37:48 abagchi + * Removed the streaming classes + * + * Revision 1.5 2000/01/14 02:04:43 abagchi + * Introduced getFullPath() and weavePath() + * + * Revision 1.4 1999/12/14 23:53:33 rahulj + * Removed the offending Ctrl-M's from the commit message + * logs which was giving packaging problems. + * + * PR: + * Obtained from: + * Submitted by: + * Reviewed by: + * + * Revision 1.3 1999/11/23 02:00:48 rahulj + * Code now works under HPUX 11. Tested inmemory message loader. + * Revamped makefiles. Builds with both DCE threads as well as pthread libraries. + * + * Revision 1.2 1999/11/17 22:35:33 rahulj + * Replaced default attr mutexes with recursive mutexes. Also code works with ICU transcoding service + * + * Revision 1.1.1.1 1999/11/09 01:07:01 twl + * Initial checkin + * + * Revision 1.6 1999/11/08 20:45:30 rahul + * Swat for adding in Product name and CVS comment log variable. + * + */ + + +// --------------------------------------------------------------------------- +// Includes +// --------------------------------------------------------------------------- + +#if !defined(APP_NO_THREADS) +#include +#endif + + +#include +#include +#include +#include + // #include +#include +// #include +#include // for gettimeofday +#include +#include +#include +#include +#include +#include +#include +#include + +#if defined(XML_USE_ICU_TRANSCODER) + #include +#else + // Use native transcoder. Same as -DXML_USE_NATIVE_TRANSCODER + #include +#endif + + +#if defined(XML_USE_ICU_MESSAGELOADER) + #include +#else + // Same as -DXML_USE_INMEM_MESSAGELOADER + #include +#endif + + +#if defined (XML_USE_NETACCESSOR_SOCKET) + #include +#endif + + + +// --------------------------------------------------------------------------- +// Local Methods +// --------------------------------------------------------------------------- + +static void WriteCharStr( FILE* stream, const char* const toWrite) +{ + if (fputs(toWrite, stream) == EOF) + { + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::Strm_StdErrWriteFailure); + } +} + +static void WriteUStrStdErr( const XMLCh* const toWrite) +{ + char* tmpVal = XMLString::transcode(toWrite); + ArrayJanitor janText(tmpVal); + if (fputs(tmpVal, stderr) == EOF) + { + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::Strm_StdErrWriteFailure); + } +} + +static void WriteUStrStdOut( const XMLCh* const toWrite) + { + char* tmpVal = XMLString::transcode(toWrite); + ArrayJanitor janText(tmpVal); + if (fputs(tmpVal, stdout) == EOF) + { + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::Strm_StdOutWriteFailure); + } +} + +XMLNetAccessor* XMLPlatformUtils::makeNetAccessor() +{ +#if defined (XML_USE_NETACCESSOR_SOCKET) + return new SocketNetAccessor(); +#else + return 0; +#endif +} + + + +XMLCh* XMLPlatformUtils::weavePaths(const XMLCh* const basePath + , const XMLCh* const relativePath) + +{ + // Create a buffer as large as both parts and empty it + XMLCh* tmpBuf = new XMLCh[XMLString::stringLen(basePath) + + XMLString::stringLen(relativePath) + + 2]; + *tmpBuf = 0; + + // + // If we have no base path, then just take the relative path as + // is. + // + if (!basePath) + { + XMLString::copyString(tmpBuf, relativePath); + return tmpBuf; + } + + if (!*basePath) + { + XMLString::copyString(tmpBuf, relativePath); + return tmpBuf; + } + + const XMLCh* basePtr = basePath + (XMLString::stringLen(basePath) - 1); + if ((*basePtr != chForwardSlash) + && (*basePtr != chBackSlash)) + { + while ((basePtr >= basePath) + && ((*basePtr != chForwardSlash) && (*basePtr != chBackSlash))) + { + basePtr--; + } + } + + // There is no relevant base path, so just take the relative part + if (basePtr < basePath) + { + XMLString::copyString(tmpBuf, relativePath); + return tmpBuf; + } + + // After this, make sure the buffer gets handled if we exit early + ArrayJanitor janBuf(tmpBuf); + + // + // We have some path part, so we need to check to see if we ahve to + // weave any of the parts together. + // + const XMLCh* pathPtr = relativePath; + while (true) + { + // If it does not start with some period, then we are done + if (*pathPtr != chPeriod) + break; + + unsigned int periodCount = 1; + pathPtr++; + if (*pathPtr == chPeriod) + { + pathPtr++; + periodCount++; + } + + // Has to be followed by a \ or / or the null to mean anything + if ((*pathPtr != chForwardSlash) && (*pathPtr != chBackSlash) + && *pathPtr) + { + break; + } + if (*pathPtr) + pathPtr++; + + // If its one period, just eat it, else move backwards in the base + if (periodCount == 2) + { + basePtr--; + while ((basePtr >= basePath) + && ((*basePtr != chForwardSlash) && (*basePtr != chBackSlash))) + { + basePtr--; + } + + // The base cannot provide enough levels, so its in error/ + if (basePtr < basePath) + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::File_BasePathUnderflow); + } + } + + // Copy the base part up to the base pointer + XMLCh* bufPtr = tmpBuf; + const XMLCh* tmpPtr = basePath; + while (tmpPtr <= basePtr) + *bufPtr++ = *tmpPtr++; + + // And then copy on the rest of our path + XMLString::copyString(bufPtr, pathPtr); + + // Orphan the buffer and return it + janBuf.orphan(); + return tmpBuf; +} + + +// --------------------------------------------------------------------------- +// XMLPlatformUtils: Private Static Methods +// --------------------------------------------------------------------------- + +// +// This method is called by the platform independent part of this class +// when client code asks to have one of the supported message sets loaded. +// + +XMLMsgLoader* XMLPlatformUtils::loadAMsgSet(const XMLCh* const msgDomain) +{ + XMLMsgLoader* retVal; + try + { +#if defined (XML_USE_ICU_MESSAGELOADER) + retVal = new ICUMsgLoader(msgDomain); +#else + // same as -DXML_USE_INMEM_MESSAGELOADER + retVal = new InMemMsgLoader(msgDomain); +#endif + } + + catch(...) + { + panic(XMLPlatformUtils::Panic_CantLoadMsgDomain); + } + return retVal; +} + + +// +// This method is called very early in the bootstrapping process. This guy +// must create a transcoding service and return it. It cannot use any string +// methods, any transcoding services, throw any exceptions, etc... It just +// makes a transcoding service and returns it, or returns zero on failure. +// + +XMLTransService* XMLPlatformUtils::makeTransService() +{ +#if defined (XML_USE_ICU_TRANSCODER) + // Use ICU transcoding services. + // same as -DXML_USE_ICU_MESSAGELOADER + return new ICUTransService; +#else + // Use native transcoding services. + // same as -DXML_USE_INMEM_MESSAGELOADER + return new IconvTransService; + +#endif +} + +// --------------------------------------------------------------------------- +// XMLPlatformUtils: The panic method +// --------------------------------------------------------------------------- +void XMLPlatformUtils::panic(const PanicReasons reason) +{ + const char* reasonStr = "Unknown reason"; + if (reason == Panic_NoTransService) + reasonStr = "Could not load a transcoding service"; + else if (reason == Panic_NoDefTranscoder) + reasonStr = "Could not load a local code page transcoder"; + else if (reason == Panic_CantFindLib) + reasonStr = "Could not find the xerces-c DLL"; + else if (reason == Panic_UnknownMsgDomain) + reasonStr = "Unknown message domain"; + else if (reason == Panic_CantLoadMsgDomain) + reasonStr = "Cannot load message domain"; + else if (reason == Panic_SynchronizationErr) + reasonStr = "Cannot synchronize system or mutex"; + else if (reason == Panic_SystemInit) + reasonStr = "Cannot initialize the system or mutex"; + + fprintf(stderr, "%s\n", reasonStr); + + exit(-1); +} + + +// --------------------------------------------------------------------------- +// XMLPlatformUtils: File Methods +// --------------------------------------------------------------------------- + +unsigned int XMLPlatformUtils::curFilePos(FileHandle theFile) +{ + int curPos = ftell( (FILE*)theFile); + if (curPos == -1) + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::File_CouldNotGetSize); + + return (unsigned int)curPos; +} + +void XMLPlatformUtils::closeFile(FileHandle theFile) +{ + if (fclose((FILE*)theFile)) + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::File_CouldNotCloseFile); +} + +unsigned int XMLPlatformUtils::fileSize(FileHandle theFile) +{ + // Get the current position + long int curPos = ftell((FILE*) theFile); + if (curPos == -1) + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::File_CouldNotGetCurPos); + + // Seek to the end and save that value for return + if (fseek((FILE*) theFile, 0, SEEK_END)) + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::File_CouldNotSeekToEnd); + + long int retVal = ftell((FILE*)theFile); + if (retVal == -1) + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::File_CouldNotSeekToEnd); + + // And put the pointer back + + if (fseek( (FILE*)theFile, curPos, SEEK_SET) ) + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::File_CouldNotSeekToPos); + + return (unsigned int)retVal; +} + +FileHandle XMLPlatformUtils::openFile(const XMLCh* const fileName) +{ + const char* tmpFileName = XMLString::transcode(fileName); + ArrayJanitor janText((char*)tmpFileName); + FileHandle retVal = (FILE*)fopen( tmpFileName , "rb" ); + + if (retVal == NULL) + return 0; + return retVal; +} + +FileHandle XMLPlatformUtils::openFile(const char* const fileName) +{ + FileHandle retVal = (FILE*)fopen( fileName , "rb" ); + + if (retVal == NULL) + return 0; + return retVal; +} + + +FileHandle XMLPlatformUtils::openStdInHandle() +{ + return (FileHandle)fdopen(dup(0), "rb"); +} + + + +unsigned int +XMLPlatformUtils::readFileBuffer( FileHandle theFile + , const unsigned int toRead + , XMLByte* const toFill) +{ + size_t noOfItemsRead = fread((void*) toFill, 1, toRead, (FILE*)theFile); + + if(ferror((FILE*)theFile)) + { + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::File_CouldNotReadFromFile); + } + + return (unsigned int)noOfItemsRead; +} + + +void XMLPlatformUtils::resetFile(FileHandle theFile) +{ + // Seek to the start of the file + if (fseek((FILE*)theFile, 0, SEEK_SET)) + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::File_CouldNotResetFile); +} + + +// --------------------------------------------------------------------------- +// XMLPlatformUtils: Timing Methods +// --------------------------------------------------------------------------- + +unsigned long XMLPlatformUtils::getCurrentMillis() +{ + // timeb aTime; + // ftime(&aTime); + struct timeval aTime; + gettimeofday(&aTime,NULL); + // return (unsigned long)(aTime.time*1000 + aTime.millitm); + return (unsigned long)(aTime.tv_sec*1000 + aTime.tv_usec); + +} + +XMLCh* XMLPlatformUtils::getFullPath(const XMLCh* const srcPath) +{ + + // + // NOTE: THe path provided has always already been opened successfully, + // so we know that its not some pathological freaky path. It comes in + // in native format, and goes out as Unicode always + // + char* newSrc = XMLString::transcode(srcPath); + ArrayJanitor janText(newSrc); + + // Use a local buffer that is big enough for the largest legal path + char *absPath = new char[1024]; + // get the absolute path + char* retPath = realpath(newSrc, absPath); + ArrayJanitor janText2(retPath); + + if (!retPath) + { + ThrowXML(XMLPlatformUtilsException, XMLExcepts::File_CouldNotGetBasePathName); + } + return XMLString::transcode(absPath); +} + +bool XMLPlatformUtils::isRelative(const XMLCh* const toCheck) +{ + // Check for pathological case of empty path + if (!toCheck[0]) + return false; + + // + // If it starts with a slash, then it cannot be relative. This covers + // both something like "\Test\File.xml" and an NT Lan type remote path + // that starts with a node like "\\MyNode\Test\File.xml". + // + if (toCheck[0] == XMLCh('/')) + return false; + + // Else assume its a relative path + return true; +} + + +// ----------------------------------------------------------------------- +// Mutex methods +// ----------------------------------------------------------------------- + +#if !defined(APP_NO_THREADS) + +// --------------------------------------------------------------------------- +// XMLPlatformUtils: Platform init method +// --------------------------------------------------------------------------- + +static XMLMutex atomicOpsMutex; + +void XMLPlatformUtils::platformInit() +{ + // + // The atomicOps mutex needs to be created early. + // Normally, mutexes are created on first use, but there is a + // circular dependency between compareAndExchange() and + // mutex creation that must be broken. + + atomicOpsMutex.fHandle = XMLPlatformUtils::makeMutex(); +} + +void* XMLPlatformUtils::makeMutex() +{ + pthread_mutex_t* mutex = new pthread_mutex_t; + pthread_mutexattr_t* attr = new pthread_mutexattr_t; + pthread_mutexattr_init(attr); + pthread_mutexattr_settype(attr, PTHREAD_MUTEX_RECURSIVE); + if (pthread_mutex_init(mutex, attr)) + { + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::Mutex_CouldNotCreate); + } + pthread_mutexattr_destroy(attr); + delete attr; + return (void*)(mutex); + +} + +void XMLPlatformUtils::closeMutex(void* const mtxHandle) +{ + if (mtxHandle != NULL) + { + if (pthread_mutex_destroy((pthread_mutex_t*) mtxHandle)) + { + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::Mutex_CouldNotDestroy); + } + delete mtxHandle; + } +} + + +void XMLPlatformUtils::lockMutex(void* const mtxHandle) +{ + if (mtxHandle != NULL) + { + if (pthread_mutex_lock((pthread_mutex_t*) mtxHandle)) + { + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::Mutex_CouldNotLock); + } + } +} + + +void XMLPlatformUtils::unlockMutex(void* const mtxHandle) +{ + if (mtxHandle != NULL) + { + if (pthread_mutex_unlock((pthread_mutex_t*) mtxHandle)) + { + ThrowXML(XMLPlatformUtilsException, + XMLExcepts::Mutex_CouldNotUnlock); + } + } +} + + +// ----------------------------------------------------------------------- +// Miscellaneous synchronization methods +// ----------------------------------------------------------------------- + +void* XMLPlatformUtils::compareAndSwap(void** toFill + , const void* const newValue + , const void* const toCompare) +{ + XMLMutexLock lockMutex(&atomicOpsMutex); + + void *retVal = *toFill; + if (*toFill == toCompare) + *toFill = (void *)newValue; + + return retVal; +} + +int XMLPlatformUtils::atomicIncrement(int &location) +{ + XMLMutexLock localLock(&atomicOpsMutex); + + return ++location; +} + +int XMLPlatformUtils::atomicDecrement(int &location) +{ + XMLMutexLock localLock(&atomicOpsMutex); + + return --location; +} + +#else // #if !defined (APP_NO_THREADS) + +void XMLPlatformUtils::platformInit() +{ +} + +void* XMLPlatformUtils::makeMutex() +{ + return 0; +} + +void XMLPlatformUtils::closeMutex(void* const mtxHandle) +{ +} + +void XMLPlatformUtils::lockMutex(void* const mtxHandle) +{ +} + +void XMLPlatformUtils::unlockMutex(void* const mtxHandle) +{ +} + +void* XMLPlatformUtils::compareAndSwap (void** toFill, + const void* const newValue, + const void* const toCompare) +{ + void *retVal = *toFill; + if (*toFill == toCompare) + *toFill = (void *)newValue; + return retVal; +} + +int XMLPlatformUtils::atomicIncrement(int &location) +{ + return ++location; +} + +int XMLPlatformUtils::atomicDecrement(int &location) +{ + return --location; +} + +#endif // APP_NO_THREADS + +void XMLPlatformUtils::platformTerm() +{ + // We don't have any termination requirements at this time +} + diff -ruN xerces-c-src1_3_0/src/util/Platforms/Makefile.in freebsd/xerces-c-src1_3_0/src/util/Platforms/Makefile.in --- xerces-c-src1_3_0/src/util/Platforms/Makefile.in Thu Dec 23 05:57:52 1999 +++ xerces-c-src1_3_0/src/util/Platforms/Makefile.in Sat Dec 25 08:41:28 1999 @@ -127,6 +127,9 @@ ifeq (${PLATFORM}, LINUX) SUBMODULE = Linux endif +ifeq (${PLATFORM}, FREEBSD) + SUBMODULE = FreeBSD +endif ifeq (${PLATFORM}, HPUX) SUBMODULE = HPUX endif diff -ruN xerces-c-src1_3_0/src/util/XercesDefs.hpp freebsd/xerces-c-src1_3_0/src/util/XercesDefs.hpp --- xerces-c-src1_3_0/src/util/XercesDefs.hpp Thu Dec 23 05:57:28 1999 +++ xerces-c-src1_3_0/src/util/XercesDefs.hpp Sat Dec 25 08:41:28 1999 @@ -190,6 +190,10 @@ #include #endif +#if defined(XML_FREEBSD) +#include +#endif + #if defined(XML_OS390) #include #endif diff -uN xerces-c-src1_3_0/src/util/Transcoders/Iconv/IconvTransService.cpp xerces-c-src1_3_0/src/util/Transcoders/Iconv/IconvTransService.cpp --- xerces-c-src1_3_0/src/util/Transcoders/Iconv/IconvTransService.cpp Sat Sep 30 10:37:34 2000 +++ xerces-c-src1_3_0/src/util/Transcoders/Iconv/IconvTransService.cpp Tue Nov 28 08:35:48 2000 @@ -65,14 +65,26 @@ #include #include #include "IconvTransService.hpp" +#if defined (FREEBSD) +#include +#include +#include // for the isspace function +#include // for the setlocale function +typedef unsigned int wint_t; +#else #include #if defined (XML_GCC) || defined (XML_PTX) || defined (XML_IBMVAOS2) #include #endif +#endif #include #include #include +#if defined(FREEBSD_DEBUG) +#include // gets cerr +#endif + // --------------------------------------------------------------------------- // Local, const data @@ -124,15 +136,15 @@ while ( (*cptr1 != 0) && (*cptr2 != 0) ) { - wint_t wch1 = towupper(*cptr1); - wint_t wch2 = towupper(*cptr2); + wint_t wch1 = toupper(*cptr1); + wint_t wch2 = toupper(*cptr2); if (wch1 != wch2) break; cptr1++; cptr2++; } - return (int) ( towupper(*cptr1) - towupper(*cptr2) ); + return (int) ( toupper(*cptr1) - toupper(*cptr2) ); } @@ -146,8 +158,8 @@ while ( (*cptr1 != 0) && (*cptr2 != 0) && (n < maxChars) ) { - wint_t wch1 = towupper(*cptr1); - wint_t wch2 = towupper(*cptr2); + wint_t wch1 = toupper(*cptr1); + wint_t wch2 = toupper(*cptr2); if (wch1 != wch2) break; @@ -155,7 +167,7 @@ cptr2++; n++; } - return (int) ( towupper(*cptr1) - towupper(*cptr2) ); + return (int) ( toupper(*cptr1) - toupper(*cptr2) ); } @@ -167,7 +179,7 @@ bool IconvTransService::isSpace(const XMLCh toCheck) const { - return (iswspace(toCheck) != 0); + return (isspace(toCheck) != 0); } @@ -208,7 +220,7 @@ XMLCh* outPtr = toUpperCase; while (*outPtr) { - *outPtr = towupper(*outPtr); + *outPtr = toupper(*outPtr); outPtr++; } } @@ -218,15 +230,73 @@ // --------------------------------------------------------------------------- // IconvLCPTranscoder: The virtual transcoder API // --------------------------------------------------------------------------- + +/* + wrappers from Mikko_Työläjärvi +*/ +#if defined(FREEBSD) +size_t +mbstowcs_wrapper(wchar_t *wcs, const char *s, size_t n) +{ +#if defined(FREEBSD_DEBUG) + cerr<<"(IconvTransServer.cpp) wrapper called with "< #include - +#if defined(FREEBSD_DEBUG) +#include // for cerr +#endif // --------------------------------------------------------------------------- // Local static data @@ -243,8 +245,25 @@ void XMLScanner::scanDocument( const char* const systemId , const bool reuseValidator) { - // We just delegate this to the XMLCh version after transcoding - XMLCh* tmpBuf = XMLString::transcode(systemId); +#if defined(FREEBSD_DEBUG) + //debug + cerr << "(XMLScanner.cpp:249) The systemId that is to be transcoded is " + << systemId + << " thank you" << endl; + //end debug +#endif + + // We just delegate this to the XMLCh version after transcoding + XMLCh* tmpBuf = XMLString::transcode(systemId); + +#if defined(FREEBSD_DEBUG) + //debug + cerr << "(XMLScanner.cpp) The systemId that has been transcoded is " + << tmpBuf + << " thank you" << endl; + //end debug +#endif + ArrayJanitor janBuf(tmpBuf); scanDocument(tmpBuf, reuseValidator); } diff -uN xerces-c-src1_3_0/src/util/Compilers/Makefile.in ../try3_patch/public/xerces-c-src1_3_0/src/util/Compilers/Makefile.in --- xerces-c-src1_3_0/src/util/Compilers/Makefile.in Sat Sep 30 10:37:28 2000 +++ ../try3_patch/public/xerces-c-src1_3_0/src/util/Compilers/Makefile.in Tue Nov 28 19:30:53 2000 @@ -114,6 +114,9 @@ ifeq (${CXX},g++) CPP_OBJECTS = GCCDefs.$(TO) endif +ifeq (${CXX},/usr/local/egcs-1.1.2/bin/g++) + CPP_OBJECTS = GCCDefs.$(TO) +endif ifeq (${CXX},aCC) CPP_OBJECTS = HPCCDefs.$(TO) endif diff -uN xerces-c-src1_3_0/src/util/Compilers/GCCDefs.hpp xerces-c-src1_3_0/src/util/Compilers/GCCDefs.hpp --- xerces-c-src1_3_0/src/util/Compilers/GCCDefs.hpp Sat Sep 30 10:37:28 2000 +++ xerces-c-src1_3_0/src/util/Compilers/GCCDefs.hpp Mon Nov 27 10:59:04 2000 @@ -115,8 +115,8 @@ // Define our version of the XML character // --------------------------------------------------------------------------- // typedef unsigned short XMLCh; // is another option, now considered old -typedef wchar_t XMLCh; - +//typedef wchar_t XMLCh; +typedef unsigned short XMLCh; // test for freebsd // --------------------------------------------------------------------------- // Define unsigned 16 and 32 bits integers // --------------------------------------------------------------------------- diff -uN xerces-c-src1_3_0/src/util/XMLURL.cpp xerces-c-src1_3_0/src/util/XMLURL.cpp --- xerces-c-src1_3_0/src/util/XMLURL.cpp Sat Sep 30 10:37:34 2000 +++ xerces-c-src1_3_0/src/util/XMLURL.cpp Wed Nov 22 16:14:44 2000 @@ -807,7 +807,7 @@ void XMLURL::parse(const XMLCh* const urlText) { // Simplify things by checking for the psycho scenarios first - if (!*urlText) + if ((!urlText) || (!*urlText)) ThrowXML(MalformedURLException, XMLExcepts::URL_NoProtocolPresent); // --------------738FF325BE1652B734ACC55F Content-Type: application/x-sh; name="compile_xerces.sh" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="compile_xerces.sh" #!/bin/sh ## assumes that you have Xerces-FreeBSD-dv2.patch in current dir ## assumes that you have xerces-c-src1_3_0.tar.gz in one dir up ## assumes you want to run configure as ##./runConfigure -p freebsd -c gcc -x /usr/local/egcs-1.1.2/bin/g++ LOG="/tmp/Xerces.install.log" touch ${LOG} echo "*********************************************" echo " UNTARRING XERCES" echo "*********************************************" tar xvzf ../xerces-c-src1_3_0.tar.gz echo "*********************************************" echo " PATCHING XERCES" echo "*********************************************" patch -pf < Xerces-FreeBSD-dv2.patch bad=`find . -name "*rej" -print` if [ "x${bad}" != "x" ] ; then echo "problem patching: ${bad}" exit 1 else echo "patch succeeded" fi echo "*********************************************" echo " MISC SETUP" echo "*********************************************" cd xerces-c-src1_3_0 export XERCESCROOT=`pwd` cd src chmod 775 runConfigure echo "*********************************************" echo " CONFIGURING SETUP" echo "*********************************************" ./runConfigure -p freebsd -c gcc -x /usr/local/egcs-1.1.2/bin/g++ echo "*********************************************" echo " BUILDING XERCES" echo "*********************************************" gmake >& /tmp/gmake.final.out echo "*********************************************" echo " CONFIGURING SAMPLES" echo "*********************************************" cd ../samples chmod 775 runConfigure chmod 775 configure ## set ld_library_path ./runConfigure -p freebsd -c gcc -x /usr/local/egcs-1.1.2/bin/g++ gmake --------------738FF325BE1652B734ACC55F-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 8:32:15 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A25337B404; Thu, 30 Nov 2000 08:32:13 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUGWDx58017; Thu, 30 Nov 2000 08:32:13 -0800 (PST) (envelope-from jedgar) Date: Thu, 30 Nov 2000 08:32:13 -0800 (PST) From: Message-Id: <200011301632.eAUGWDx58017@freefall.freebsd.org> To: jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23158: new port: e3 text editor Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: e3 text editor Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Thu Nov 30 08:31:57 PST 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=23158 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 8:33:34 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F91537B402; Thu, 30 Nov 2000 08:33:32 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUGXWY58372; Thu, 30 Nov 2000 08:33:32 -0800 (PST) (envelope-from jedgar) Date: Thu, 30 Nov 2000 08:33:32 -0800 (PST) From: Message-Id: <200011301633.eAUGXWY58372@freefall.freebsd.org> To: jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23025: NEW PORT: converters/p5-Convert-UUlib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT: converters/p5-Convert-UUlib Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Thu Nov 30 08:33:19 PST 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=23025 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 8:33:51 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E74137B404; Thu, 30 Nov 2000 08:33:49 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUGXnx58533; Thu, 30 Nov 2000 08:33:49 -0800 (PST) (envelope-from jedgar) Date: Thu, 30 Nov 2000 08:33:49 -0800 (PST) From: Message-Id: <200011301633.eAUGXnx58533@freefall.freebsd.org> To: jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23026: NEW PORT: sysutils/p5-Unix-Syslog Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT: sysutils/p5-Unix-Syslog Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Thu Nov 30 08:33:36 PST 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=23026 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 8:34:23 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A3CE37B401; Thu, 30 Nov 2000 08:34:21 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUGYLW58655; Thu, 30 Nov 2000 08:34:21 -0800 (PST) (envelope-from jedgar) Date: Thu, 30 Nov 2000 08:34:21 -0800 (PST) From: Message-Id: <200011301634.eAUGYLW58655@freefall.freebsd.org> To: jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22899: kaffe needs to use libtool from ports rather than its own copy Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kaffe needs to use libtool from ports rather than its own copy Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Thu Nov 30 08:34:07 PST 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=22899 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 8:47:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailhost.sclp.com (unknown [209.196.61.66]) by hub.freebsd.org (Postfix) with ESMTP id 0114637B402 for ; Thu, 30 Nov 2000 08:47:21 -0800 (PST) Received: by mailhost.sclp.com (Postfix, from userid 110) id 3D817D049A; Thu, 30 Nov 2000 11:47:20 -0500 (EST) Date: Thu, 30 Nov 2000 09:47:20 -0700 From: Jason R Mastaler To: freebsd-ports@FreeBSD.ORG Subject: Re: NetBSD package system features Message-ID: <20001130094720.A5077@mastaler.com> Mail-Followup-To: freebsd-ports@FreeBSD.ORG References: <00112811292900.19785@nightshade> <20001130083733.N559@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20001130083733.N559@puck.firepipe.net>; from will@physics.purdue.edu on Thu, Nov 30, 2000 at 08:37:33AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews writes: > At this point, I'd rather focus on openpackages, which has a lot > more potential to solve problems and introduce new features done the > right way. I totally agree, I just wasn't aware of OpenPackages until now. Actually, it occurs to me that the "Benefits" section of http://openpackages.org/ is good argument as to why the BSDs should consolidate not just their package systems, but their entirety. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 9:30: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EC2B37B401 for ; Thu, 30 Nov 2000 09:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUHU4P40270; Thu, 30 Nov 2000 09:30:04 -0800 (PST) (envelope-from gnats) Date: Thu, 30 Nov 2000 09:30:04 -0800 (PST) Message-Id: <200011301730.eAUHU4P40270@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: SADA Kenji Subject: Re: ports/22477: patchset for "X manpage" errors with XFree86-4 on bento Reply-To: SADA Kenji Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22477; it has been noted by GNATS. From: SADA Kenji To: freebsd-gnats-submit@FreeBSD.org, k5@cheerful.com Cc: Subject: Re: ports/22477: patchset for "X manpage" errors with XFree86-4 on bento Date: Fri, 1 Dec 2000 02:24:17 +0900 (JST) I'll take the patch in my x11/kb2mb2. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 9:47:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id A326F37B401; Thu, 30 Nov 2000 09:47:41 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 0662DC9BF; Thu, 30 Nov 2000 12:47:40 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id B1C8D2E443; Thu, 30 Nov 2000 12:47:40 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eAUHlek62704; Thu, 30 Nov 2000 12:47:40 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14886.37564.536550.640715@onceler.kciLink.com> Date: Thu, 30 Nov 2000 12:47:40 -0500 To: dirk@FreeBSD.org Cc: ports@freebsd.org Subject: mysql323-server update to 3.23.38-gamma X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following patch updates the mysql323-server port to 3.23.28-gamma. I also added tcp wrappers support and changed the socket location, which you may not wish to use in the official port. New distinfo file: MD5 (mysql-3.23.28-gamma.tar.gz) = c7846c514600711f3f5ae65deb320c63 And the files/patch-af file needs to be updated to the following: --cut here-- --- scripts/safe_mysqld.sh.orig Wed Nov 22 06:58:59 2000 +++ scripts/safe_mysqld.sh Thu Nov 30 12:09:56 2000 @@ -61,26 +61,9 @@ done } -MY_PWD=`pwd` -# Check if we are starting this relative (for the binary release) -if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \ - -x ./bin/mysqld -then - MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are - ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is - DATADIR=$MY_BASEDIR_VERSION/data -# Check if this is a 'moved install directory' -elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \ - -x ./libexec/mysqld -then - MY_BASEDIR_VERSION=$MY_PWD # Where libexec, share and var are - ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is - DATADIR=$MY_BASEDIR_VERSION/var -else - MY_BASEDIR_VERSION=@prefix@ - DATADIR=@localstatedir@ - ledir=@libexecdir@ -fi +MY_BASEDIR_VERSION=@prefix@ +DATADIR=@localstatedir@ +ledir=@libexecdir@ MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@} MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@} @@ -206,34 +189,6 @@ if test ! -f $pid_file # This is removed if normal shutdown then break - fi - - if @IS_LINUX@ - then - # Test if one process was hanging. - # This is only a fix for Linux (running as base 3 mysqld processes) - # but should work for the rest of the servers. - # The only thing is ps x => redhat 5 gives warnings when using ps -x. - # kill -9 is used or the process won't react on the kill. - numofproces=`ps xa | grep -v "grep" | grep -c $ledir/mysqld` - echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log - I=1 - while test "$I" -le "$numofproces" - do - PROC=`ps xa | grep $ledir/mysqld | grep -v "grep" | tail -1` - for T in $PROC - do - break - done - # echo "TEST $I - $T **" - if kill -9 $T - then - echo "mysqld process hanging, pid $T - killed" | tee -a $err_log - else - break - fi - I=`expr $I + 1` - done fi echo "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log --cut here-- --- Makefile.dist Thu Nov 16 11:23:12 2000 +++ Makefile Thu Nov 30 12:28:33 2000 @@ -6,13 +6,13 @@ # PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.26 +PORTVERSION= 3.23.28 CATEGORIES= databases MASTER_SITES= http://www.wipol.uni-bonn.de/MySQL/Downloads/MySQL-3.23/ \ http://www.mysql.net/Downloads/MySQL-3.23/ \ http://mysql.he.net/Downloads/MySQL-3.23/ \ ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ -DISTNAME= mysql-${PORTVERSION}-beta +DISTNAME= mysql-${PORTVERSION}-gamma MAINTAINER= dirk@FreeBSD.org @@ -29,7 +29,9 @@ --without-debug \ --without-readline \ --without-bench \ - --with-mit-threads=no + --with-mit-threads=no \ + --with-libwrap \ + --with-unix-socket-path=${DB_DIR}/mysql.sock .if ${MACHINE_ARCH} == "i386" CONFIGURE_ARGS+=--enable-assembler .endif -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 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 Thu Nov 30 10: 3:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-1.cisco.com (sj-msg-core-1.cisco.com [171.71.163.11]) by hub.freebsd.org (Postfix) with ESMTP id 15D2B37B404; Thu, 30 Nov 2000 10:03:05 -0800 (PST) Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by sj-msg-core-1.cisco.com (8.9.3/8.9.1) with ESMTP id KAA15702; Thu, 30 Nov 2000 10:03:09 -0800 (PST) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.1/8.11.1) id eAUI33a22248; Thu, 30 Nov 2000 10:03:03 -0800 (PST) (envelope-from bmah) Message-Id: <200011301803.eAUI33a22248@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Maxim Sobolev Cc: Satoshi - Ports Wraith - Asami , bmah@FreeBSD.org, nbm@mithrandr.moria.org, knu@idaemons.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installedpackages came from [Was: Enhancement of pkg_version's version comparisonroutine] In-Reply-To: <3A2645DF.64B66C7A@FreeBSD.org> References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> <39E84F54.257664E5@FreeBSD.org> <39ED7741.BE909115@FreeBSD.org> <39EFEACA.F6215581@FreeBSD.org> <39F3E490.33CCCC61@FreeBSD.org> <200010251737.e9PHb0389114@bmah-freebsd-0.cisco.com> <39F71CD6.C7B5C8A9@FreeBSD.org> <200010251856.e9PIugC91054@bmah-freebsd-0.cisco.com> <39F83E4D.AB979DF0@FreeBSD.org> <200011301206.eAUC6ko84206@silvia.hip.berkeley.edu> <3A2645DF.64B66C7A@FreeBSD.org> Comments: In-reply-to Maxim Sobolev message dated "Thu, 30 Nov 2000 14:19:43 +0200." From: bmah@FreeBSD.org (Bruce A. Mah) Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_1503042946P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Thu, 30 Nov 2000 10:03:03 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_1503042946P Content-Type: text/plain; charset=us-ascii If memory serves me right, Maxim Sobolev wrote: > Satoshi - Ports Wraith - Asami wrote: > > > Hi Maxim and gang, > > > > * From: Maxim Sobolev > > > > Sorry for taking so long. Here is my proposed patch. I'll first > > quote the last one I got from Maxim so you can compare. > > > > * --- bsd.port.mk.orig Thu Oct 26 17:14:32 2000 > > * +++ bsd.port.mk Thu Oct 26 17:19:36 2000 > > === > > Index: bsd.port.mk > > =================================================================== > > RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v > > retrieving revision 1.360 > > diff -u -r1.360 bsd.port.mk > > --- bsd.port.mk 2000/11/16 13:06:25 1.360 > > +++ bsd.port.mk 2000/11/30 12:00:00 > > > > Looks fine. Me too. > > I noticed you didn't merge the changes back to 3-stable (actually, you > > should) > > Ok, I'll do it. I was unsure if I'm allowed to backport functionality-extendi > ng changes > into 3-STABLE. I guess that means I should update pkg_version in 3-STABLE as well. I'll wait until after you (sobomax) are done, since my changes depend on yours. > > The merge to 4-stable was on October 31 so a port.mkversion of > > November 3rd should pretty much cover the worst possible mirror delay. > > Sounds reasonably. Go ahead with it! ;) Looks good to me (although I admit I have only tested the prior version, not PW's version). Thanks, Bruce. --==_Exmh_1503042946P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6JpZX2MoxcVugUsMRAsoeAKD8QQQTz7Cfpak8JnQS642L4fGv7QCghI4G 3swVWYtWBicnTlSKj3deaBc= =DyHJ -----END PGP SIGNATURE----- --==_Exmh_1503042946P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 10:40:33 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8545F37B698 for ; Thu, 30 Nov 2000 10:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUIe2s54109; Thu, 30 Nov 2000 10:40:02 -0800 (PST) (envelope-from gnats) Received: from cartier.cirx.org (cartier.cirx.org [211.72.15.243]) by hub.freebsd.org (Postfix) with ESMTP id 55C7437B6BC for ; Thu, 30 Nov 2000 10:31:37 -0800 (PST) Received: (from clive@localhost) by cartier.cirx.org (8.11.1/8.11.1) id eAUIVUP21440; Fri, 1 Dec 2000 02:31:30 +0800 (CST) (envelope-from clive) Message-Id: <200011301831.eAUIVUP21440@cartier.cirx.org> Date: Fri, 1 Dec 2000 02:31:30 +0800 (CST) From: Clive Lin Reply-To: Clive Lin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23195: Update chinese/xmms to 1.2.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23195 >Category: ports >Synopsis: Update chinese/xmms to 1.2.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 Nov 30 10:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Clive Lin >Release: FreeBSD 5.0-CURRENT i386 >Organization: This site doesnt' exist >Environment: System: FreeBSD cartier.cirx.org 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Nov 28 02:07:36 CST 2000 root@cartier.cirx.org:/home/nexus/obj/home/nexus/src/sys/GENE i386 >Description: Follows audio/xmms update. There should be a corresponding chinese/xmms patchset for 1.2.4 >How-To-Repeat: Apply the diff attached under chinese/xmms >Fix: Index: files/extra-patch-xmms-1.2.x-xfont =================================================================== RCS file: /home/ncvs/ports/chinese/xmms/files/extra-patch-xmms-1.2.x-xfont,v retrieving revision 1.3 diff -u -r1.3 extra-patch-xmms-1.2.x-xfont --- files/extra-patch-xmms-1.2.x-xfont 2000/11/16 18:01:04 1.3 +++ files/extra-patch-xmms-1.2.x-xfont 2000/11/30 18:24:13 @@ -1,520 +1,75 @@ -diff -ru po/zh_TW.Big5.po po/zh_TW.Big5.po ---- po/zh_TW.Big5.po Tue Sep 19 14:32:28 2000 -+++ po/zh_TW.Big5.po Thu Sep 21 11:39:59 2000 -@@ -3231,17 +3231,17 @@ - msgid "Credits" - msgstr "·PÁÂ" +diff -ru xmms/playlist_list.c xmms/playlist_list.c +--- xmms/playlist_list.c Thu Nov 9 03:12:08 2000 ++++ xmms/playlist_list.c.orig Mon Nov 27 22:00:03 2000 +@@ -269,25 +269,24 @@ + *(wtmp++) = *(wtmp2++); + *wtmp = L'\0'; + } +- len = wcslen(wtext); --#~ msgid "Select playinfo font:" --#~ msgstr "¿ï¾Ü¼½©ñ¸ê°T¦r§Î:" -+msgid "Select playinfo font:" -+msgstr "¿ï¾Ü¼½©ñ¸ê°T¦r§Î:" - --#~ msgid "Main Window" --#~ msgstr "¥D­nµøµ¡" -+msgid "Main Window" -+msgstr "¥D­nµøµ¡" - --#~ msgid "Enable X font display on main window" --#~ msgstr "¦b¥D­nµøµ¡¨Ï¥Î X ¦r§Î" -+msgid "Enable X font display on main window" -+msgstr "¦b¥D­nµøµ¡¨Ï¥Î X ¦r§Î" - --#~ msgid "Playinfo font" --#~ msgstr "¼½©ñ¸ê°T¦r§Î" -+msgid "Playinfo font" -+msgstr "¼½©ñ¸ê°T¦r§Î" - --#~ msgid "Chun-Chung Chen (xfont patch)" --#~ msgstr "³¯«T¥ò (xfont ¸É¤B)" -+msgid "Chun-Chung Chen (xfont patch)" -+msgstr "³¯«T¥ò (xfont ¸É¤B)" -diff -ru xmms/about.c xmms/about.c ---- xmms/about.c Tue Sep 5 06:30:24 2000 -+++ xmms/about.c Thu Sep 21 11:39:59 2000 -@@ -36,6 +36,7 @@ - N_("Sean Atkinson"), - N_("James M. Cape"), - N_("Anders Carlsson (effect plugins)"), -+ N_("Chun-Chung Chen (xfont patch)"), - N_("Tim Ferguson (joystick plugin)"), - N_("Ben Gertzfield"), - N_("Vesa Halttunen"), -diff -ru xmms/main.c xmms/main.c ---- xmms/main.c Fri Sep 15 06:36:10 2000 -+++ xmms/main.c Thu Sep 21 11:39:59 2000 -@@ -319,8 +319,8 @@ - cfg.always_on_top = FALSE; + /* + * Convert the wide string to a GdkWChar string that someone, + * for some unknown reason has desided to make uncompatible + * with wchar_t strings. + */ +- if (sizeof(wchar_t) != sizeof(GdkWChar)) +- { +- int i; ++ len = wcstombs(NULL, wtext, 0); ++ text = g_malloc(len + 3); ++ len = wcstombs(text, wtext, len); ++ text[len] = '\0'; ++ ++ len = wcslen(wtext); ++ gwtext = g_malloc((len + 3) * sizeof(GdkWChar)); ++ gdk_mbstowcs(gwtext, text, len + 2); ++ ++ g_free(text); ++ g_free(wtext); + +- gwtext = g_malloc((len + 3) * sizeof(GdkWChar)); +- for (i = 0; i <= len; i++) +- gwtext[i] = wtext[i]; +- g_free(wtext); +- } +- else +- gwtext = (GdkWChar*) wtext; +- + newlen = len + 2; + + while (gdk_text_width_wc(font, gwtext, len) > width && len > 4) +--- xmms/main.c.orig Fri Dec 1 02:22:22 2000 ++++ xmms/main.c Fri Dec 1 02:23:45 2000 +@@ -320,8 +320,8 @@ cfg.sticky = FALSE; cfg.always_show_cb = TRUE; -- cfg.convert_underscore = TRUE; + cfg.convert_underscore = TRUE; - cfg.convert_twenty = TRUE; -+ cfg.convert_underscore = FALSE; +- cfg.show_numbers_in_pl = TRUE; + cfg.convert_twenty = FALSE; - cfg.show_numbers_in_pl = TRUE; ++ cfg.show_numbers_in_pl = FALSE; cfg.snap_windows = TRUE; cfg.save_window_position = TRUE; -@@ -333,6 +333,8 @@ + cfg.dim_titlebar = TRUE; +@@ -333,7 +333,8 @@ cfg.no_playlist_advance = FALSE; cfg.smooth_title_scroll = TRUE; cfg.random_skin_on_play = FALSE; -+ cfg.xfont_for_playinfo = TRUE; +- cfg.mainwin_use_xfont = FALSE; ++ cfg.mainwin_use_xfont = TRUE; + cfg.use_fontsets = TRUE; cfg.playlist_x = 295; cfg.playlist_y = 20; -@@ -410,6 +412,8 @@ - xmms_cfg_read_boolean(cfgfile, "xmms", "playlist_visible", &cfg.playlist_visible); - xmms_cfg_read_string(cfgfile, "xmms", "playlist_font", &cfg.playlist_font); - xmms_cfg_read_boolean(cfgfile, "xmms", "use_fontsets", &cfg.use_fontsets); -+ xmms_cfg_read_boolean(cfgfile, "xmms", "xfont_for_playinfo", &cfg.xfont_for_playinfo); -+ xmms_cfg_read_string(cfgfile, "xmms", "playinfo_font", &cfg.playinfo_font); - xmms_cfg_read_int(cfgfile, "xmms", "playlist_position", &cfg.playlist_position); - xmms_cfg_read_int(cfgfile, "xmms", "equalizer_x", &cfg.equalizer_x); - xmms_cfg_read_int(cfgfile, "xmms", "equalizer_y", &cfg.equalizer_y); -@@ -458,9 +462,10 @@ - - xmms_cfg_free(cfgfile); +@@ -463,9 +464,9 @@ } -- + if (cfg.playlist_font == NULL) - cfg.playlist_font = g_strdup("-adobe-helvetica-bold-r-*-*-10-*"); -+ cfg.playlist_font = g_strdup("-adobe-helvetica-bold-r-*-*-10-*,*-*-medium-r-*-*-10-*"); -+ if (cfg.playinfo_font == NULL) -+ cfg.playinfo_font = g_strdup("-adobe-helvetica-medium-r-*-*-8-*,*-*-medium-r-*-*-8-*"); ++ cfg.playlist_font = g_strdup("-adobe-helvetica-bold-r-*-*-10-*,-*-big5-0"); + if (cfg.mainwin_font == NULL) +- cfg.mainwin_font = g_strdup("-adobe-helvetica-medium-r-*-*-8-*"); ++ cfg.mainwin_font = g_strdup("-adobe-helvetica-medium-r-*-*-8-*,-*-big5-0"); if (cfg.outputplugin == NULL) { #if defined(HAVE_SYS_SOUNDCARD_H) || defined(HAVE_MACHINE_SOUNDCARD_H) -@@ -558,6 +563,8 @@ - xmms_cfg_write_boolean(cfgfile, "xmms", "playlist_visible", cfg.playlist_visible); - xmms_cfg_write_string(cfgfile, "xmms", "playlist_font", cfg.playlist_font); - xmms_cfg_write_boolean(cfgfile, "xmms", "use_fontsets", cfg.use_fontsets); -+ xmms_cfg_write_boolean(cfgfile, "xmms", "xfont_for_playinfo", cfg.xfont_for_playinfo); -+ xmms_cfg_write_string(cfgfile, "xmms", "playinfo_font", cfg.playinfo_font); - xmms_cfg_write_int(cfgfile, "xmms", "playlist_position", get_playlist_position()); - dock_get_widget_pos(equalizerwin, &cfg.equalizer_x, &cfg.equalizer_y); - xmms_cfg_write_int(cfgfile, "xmms", "equalizer_x", cfg.equalizer_x); -@@ -2645,6 +2652,7 @@ - tbutton_set_toggled(mainwin_pl, cfg.playlist_visible); - - mainwin_info = create_textbox(&mainwin_wlist, mainwin_bg, mainwin_gc, 112, 27, 153, 1, SKIN_TEXT); -+ config_textbox(mainwin_info, 27); - textbox_set_scroll(mainwin_info, cfg.autoscroll); - mainwin_rate_text = create_textbox(&mainwin_wlist, mainwin_bg, mainwin_gc, 111, 43, 15, 0, SKIN_TEXT); - mainwin_freq_text = create_textbox(&mainwin_wlist, mainwin_bg, mainwin_gc, 156, 43, 10, 0, SKIN_TEXT); ---- xmms/main.h Tue Aug 29 11:18:19 2000 -+++ xmms/main.h Thu Sep 21 11:39:59 2000 -@@ -45,8 +45,9 @@ - gboolean no_playlist_advance, smooth_title_scroll; - gboolean use_backslash_as_dir_delimiter, enable_dga; - gboolean random_skin_on_play, use_fontsets; -+ gboolean xfont_for_playinfo; - gfloat equalizer_preamp, equalizer_bands[10]; -- gchar *skin, *outputplugin, *filesel_path, *playlist_path, *playlist_font; -+ gchar *skin, *outputplugin, *filesel_path, *playlist_path, *playlist_font, *playinfo_font; - gchar *effectplugin; - gchar *disabled_iplugins, *enabled_gplugins, *enabled_vplugins; - gchar *eqpreset_default_file, *eqpreset_extension; -diff -ru xmms/prefswin.c xmms/prefswin.c ---- xmms/prefswin.c Tue Sep 12 06:26:38 2000 -+++ xmms/prefswin.c Thu Sep 21 11:39:59 2000 -@@ -61,6 +61,11 @@ - GtkWidget *prefswin_options_font_vbox; - GtkWidget *prefswin_options_font_entry, *prefswin_options_font_browse; - GtkWidget *prefswin_options_fontsel, *prefswin_options_fontset; -+GtkWidget *prefswin_mainwin_frame, *prefswin_mainwin_vbox, *prefswin_mainwin_table; -+GtkWidget *prefswin_mainwin_xfont; -+GtkWidget *prefswin_mainwin_font_frame, *prefswin_mainwin_font_hbox; -+GtkWidget *prefswin_mainwin_font_entry, *prefswin_mainwin_font_browse; -+GtkWidget *prefswin_mainwin_fontsel; - GtkWidget *prefswin_vbox, *prefswin_hbox, *prefswin_ok, *prefswin_cancel, - *prefswin_apply; - GtkWidget *prefswin_options_mouse_box, *prefswin_options_mouse_label, -@@ -298,6 +303,7 @@ - void prefswin_apply_changes(void) - { - g_free(cfg.playlist_font); -+ g_free(cfg.playinfo_font); - cfg.allow_multiple_instances = GTK_TOGGLE_BUTTON(prefswin_options_ami)->active; - cfg.always_show_cb = GTK_TOGGLE_BUTTON(prefswin_options_asc)->active; - cfg.convert_underscore = GTK_TOGGLE_BUTTON(prefswin_options_cus)->active; -@@ -308,6 +314,7 @@ - cfg.save_window_position = GTK_TOGGLE_BUTTON(prefswin_options_swp)->active; - cfg.dim_titlebar = GTK_TOGGLE_BUTTON(prefswin_options_dim)->active; - cfg.playlist_font = g_strdup(gtk_entry_get_text(GTK_ENTRY(prefswin_options_font_entry))); -+ cfg.playinfo_font = g_strdup(gtk_entry_get_text(GTK_ENTRY(prefswin_mainwin_font_entry))); - cfg.save_playlist_position = GTK_TOGGLE_BUTTON(prefswin_options_pl_pos)->active; - cfg.open_rev_order = GTK_TOGGLE_BUTTON(prefswin_options_oro)->active; - cfg.get_info_on_load = GTK_TOGGLE_BUTTON(prefswin_options_giol)->active; -@@ -321,7 +328,7 @@ - cfg.pause_between_songs_time = atoi(gtk_entry_get_text(GTK_ENTRY(prefswin_options_pbs_entry))); - cfg.use_backslash_as_dir_delimiter = GTK_TOGGLE_BUTTON(prefswin_options_ubsd)->active; - cfg.enable_dga = GTK_TOGGLE_BUTTON(prefswin_options_edga)->active; -- -+ cfg.xfont_for_playinfo = GTK_TOGGLE_BUTTON(prefswin_mainwin_xfont)->active; - cfg.use_eplugins = GTK_TOGGLE_BUTTON(prefswin_egplugins_euse_cbox)->active; - cfg.mouse_change = (gint) GTK_ADJUSTMENT(prefswin_options_mouse_entry)->value; - -@@ -359,6 +366,10 @@ - textbox_set_scroll(mainwin_info, TRUE); - } - -+ config_textbox(mainwin_info, 27); -+ g_free(mainwin_info->tb_old_skin_path); -+ mainwin_info->tb_old_skin_path = NULL; -+ - draw_main_window(TRUE); - draw_playlist_window(TRUE); - draw_equalizer_window(TRUE); -@@ -402,6 +413,30 @@ - } - } - -+void prefswin_mainwin_font_browse_ok(GtkWidget * w, gpointer data) -+{ -+ gtk_entry_set_text(GTK_ENTRY(prefswin_mainwin_font_entry), gtk_font_selection_dialog_get_font_name(GTK_FONT_SELECTION_DIALOG(prefswin_mainwin_fontsel))); -+ gtk_widget_destroy(prefswin_mainwin_fontsel); -+} -+ -+void prefswin_mainwin_font_browse_cb(GtkWidget * w, gpointer data) -+{ -+ if (!prefswin_mainwin_fontsel) -+ { -+ prefswin_mainwin_fontsel = gtk_font_selection_dialog_new(_("Select playinfo font:")); -+ gtk_font_selection_dialog_set_font_name(GTK_FONT_SELECTION_DIALOG(prefswin_mainwin_fontsel), cfg.playinfo_font); -+ gtk_signal_connect(GTK_OBJECT(GTK_FONT_SELECTION_DIALOG(prefswin_mainwin_fontsel)->ok_button), "clicked", GTK_SIGNAL_FUNC(prefswin_mainwin_font_browse_ok), NULL); -+ gtk_signal_connect_object(GTK_OBJECT(GTK_FONT_SELECTION_DIALOG(prefswin_mainwin_fontsel)->cancel_button), "clicked", GTK_SIGNAL_FUNC(gtk_widget_destroy), GTK_OBJECT(prefswin_mainwin_fontsel)); -+ gtk_signal_connect(GTK_OBJECT(prefswin_mainwin_fontsel), "destroy", GTK_SIGNAL_FUNC(gtk_widget_destroyed), &prefswin_mainwin_fontsel); -+ gtk_widget_show(prefswin_mainwin_fontsel); -+ } -+} -+ -+void prefswin_egplugins_euse_cb(GtkWidget * w, gpointer data) -+{ -+ cfg.use_eplugins = GTK_TOGGLE_BUTTON(w)->active; -+} -+ - void prefswin_egplugins_guse_cb(GtkWidget * w, gpointer data) - { - gint sel; -@@ -714,6 +749,37 @@ - gtk_box_pack_start(GTK_BOX(prefswin_vplugins_hbox), prefswin_vplugins_use_cbox, TRUE, TRUE, 0); - - gtk_notebook_append_page(GTK_NOTEBOOK(prefswin_notebook), prefswin_vplugins_box, gtk_label_new(_("Visualization Plugins"))); -+ -+ /* -+ * Mainwin page -+ */ -+ -+ prefswin_mainwin_vbox = gtk_vbox_new(FALSE, 0); -+ prefswin_mainwin_frame = gtk_frame_new(_("Main Window")); -+ gtk_box_pack_start(GTK_BOX(prefswin_mainwin_vbox), prefswin_mainwin_frame, FALSE, FALSE, 0); -+ gtk_container_border_width(GTK_CONTAINER(prefswin_mainwin_frame), 5); -+ prefswin_mainwin_table = gtk_table_new(2, 10, FALSE); -+ gtk_container_add(GTK_CONTAINER(prefswin_mainwin_frame), prefswin_mainwin_table); -+ gtk_container_border_width(GTK_CONTAINER(prefswin_mainwin_table), 5); -+ -+ prefswin_mainwin_xfont = gtk_check_button_new_with_label(_("Enable X font display on main window")); -+ gtk_table_attach_defaults(GTK_TABLE(prefswin_mainwin_table), prefswin_mainwin_xfont, 0, 1, 0, 1); -+ -+ prefswin_mainwin_font_frame = gtk_frame_new(_("Playinfo font")); -+ gtk_container_set_border_width(GTK_CONTAINER(prefswin_mainwin_font_frame), 5); -+ gtk_box_pack_start(GTK_BOX(prefswin_mainwin_vbox), prefswin_mainwin_font_frame, FALSE, FALSE, 0); -+ prefswin_mainwin_font_hbox = gtk_hbox_new(FALSE, 5); -+ gtk_container_border_width(GTK_CONTAINER(prefswin_mainwin_font_hbox), 5); -+ gtk_container_add(GTK_CONTAINER(prefswin_mainwin_font_frame), prefswin_mainwin_font_hbox); -+ prefswin_mainwin_font_entry = gtk_entry_new(); -+ gtk_box_pack_start(GTK_BOX(prefswin_mainwin_font_hbox), prefswin_mainwin_font_entry, TRUE, TRUE, 0); -+ prefswin_mainwin_font_browse = gtk_button_new_with_label(_("Browse")); -+ gtk_signal_connect(GTK_OBJECT(prefswin_mainwin_font_browse), "clicked", GTK_SIGNAL_FUNC(prefswin_mainwin_font_browse_cb), NULL); -+ gtk_widget_set_usize(prefswin_mainwin_font_browse, 85, 17); -+ gtk_box_pack_start(GTK_BOX(prefswin_mainwin_font_hbox), prefswin_mainwin_font_browse, FALSE, TRUE, 0); -+ -+ gtk_notebook_append_page(GTK_NOTEBOOK(prefswin_notebook), prefswin_mainwin_vbox, gtk_label_new(_("Main Window"))); -+ - - /* - * Options page -@@ -1106,6 +1172,7 @@ - is_opening = TRUE; - - gtk_entry_set_text(GTK_ENTRY(prefswin_options_font_entry), cfg.playlist_font); -+ gtk_entry_set_text(GTK_ENTRY(prefswin_mainwin_font_entry), cfg.playinfo_font); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_ami), cfg.allow_multiple_instances); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_asc), cfg.always_show_cb); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_cus), cfg.convert_underscore); -@@ -1128,6 +1195,7 @@ - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_ubsd), cfg.use_backslash_as_dir_delimiter); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_edga), cfg.enable_dga); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_fontset), cfg.use_fontsets); -+ gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_mainwin_xfont), cfg.xfont_for_playinfo); - sprintf(temp, "%u", cfg.pause_between_songs_time); - gtk_entry_set_text(GTK_ENTRY(prefswin_options_pbs_entry), temp); - -diff -ru xmms/skin.c xmms/skin.c ---- xmms/skin.c Fri Sep 15 06:36:10 2000 -+++ xmms/skin.c Thu Sep 21 11:41:23 2000 -@@ -94,6 +94,56 @@ - gdk_window_get_size(skinpixmap->def_pixmap, &skinpixmap->width, &skinpixmap->height); - } - -+static void _find_textbg_textfg(GdkPixmap *text, GdkColor *bgc, GdkColor *fgc) -+{ -+ GdkImage *gi; -+ GdkColormap *cm; -+ int i; -+ int j; -+ -+ if (text == NULL) return; -+ gi = gdk_image_get(text, 0, 0, 155, 6); -+ cm = gdk_colormap_get_system(); -+ for (i = 0; i < 6; i ++) { -+ GdkColor c; -+ gint maxd = -1; -+ gint x; -+ gint y; -+ gint k = 0; -+ bgc[i].pixel = gdk_image_get_pixel(gi, 151, i); -+ if (cm->colors) { -+ for (j = 0; j < cm->size; j ++) if (bgc[i].pixel == cm->colors[j].pixel) { -+ bgc[i].red = cm->colors[j].red; -+ bgc[i].green = cm->colors[j].green; -+ bgc[i].blue = cm->colors[j].blue; -+ break; -+ } -+ } -+ while (maxd < 4 && (i + k) >= 0 && (i + k) < 6) { -+ gint d; -+ for (x = 1; x < 150; x ++) { -+ c.pixel = gdk_image_get_pixel(gi, x, i); -+ if (cm->colors) { -+ for (j = 0; j < cm->size; j ++) if (c.pixel == cm->colors[j].pixel) { -+ c.red = cm->colors[j].red; -+ c.green = cm->colors[j].green; -+ c.blue = cm->colors[j].blue; -+ break; -+ } -+ d = abs(c.red - bgc[i].red) + abs(c.green - bgc[i].green) + abs(c.blue - bgc[i].blue); -+ } else d = abs((c.pixel & 0xff) - (bgc[i].pixel & 0xff)) + abs(((c.pixel >> 8) & 0xff) - ((bgc[i].pixel >> 8) & 0xff)) + abs(((c.pixel >> 16) & 0xff) - ((bgc[i].pixel >> 16) & 0xff)); -+ if (d > maxd) { -+ if (cm->colors) fgc[i] = cm->colors[j]; -+ else fgc[i] = c; -+ maxd = d; -+ } -+ } -+ if (i < 3) k ++; -+ else k --; -+ } -+ } -+} -+ - void init_skins(void) - { - gint i; -@@ -104,6 +154,7 @@ - load_def_pixmap(&skin->titlebar, skin_titlebar); - load_def_pixmap(&skin->shufrep, skin_shufrep); - load_def_pixmap(&skin->text, skin_text); -+ _find_textbg_textfg(skin->text.def_pixmap, skin->def_textbg, skin->def_textfg); - load_def_pixmap(&skin->volume, skin_volume); - load_def_pixmap(&skin->balance, skin_volume); - load_def_pixmap(&skin->monostereo, skin_monoster); -@@ -513,6 +564,7 @@ - load_skin_pixmap(&skin->titlebar, path, "titlebar.bmp"); - load_skin_pixmap(&skin->shufrep, path, "shufrep.bmp"); - load_skin_pixmap(&skin->text, path, "text.bmp"); -+ _find_textbg_textfg(skin->text.pixmap, skin->textbg, skin->textfg); - load_skin_pixmap(&skin->volume, path, "volume.bmp"); - load_skin_pixmap(&skin->balance, path, "balance.bmp"); - if (skin->balance.pixmap == NULL) -@@ -713,6 +765,18 @@ - ret = skin->pledit_selectedbg; - if (!ret) - ret = &skin->def_pledit_selectedbg; -+ break; -+ case SKIN_TEXTBG: -+ if (skin->text.pixmap) -+ ret = skin->textbg; -+ else -+ ret = skin->def_textbg; -+ break; -+ case SKIN_TEXTFG: -+ if (skin->text.pixmap) -+ ret = skin->textfg; -+ else -+ ret = skin->def_textfg; - break; - } - return ret; -diff -ru xmms/skin.h xmms/skin.h ---- xmms/skin.h Sat Aug 5 07:10:37 2000 -+++ xmms/skin.h Thu Sep 21 11:39:59 2000 -@@ -33,7 +33,7 @@ - typedef enum - { - SKIN_PLEDIT_NORMAL, SKIN_PLEDIT_CURRENT, SKIN_PLEDIT_NORMALBG, -- SKIN_PLEDIT_SELECTEDBG -+ SKIN_PLEDIT_SELECTEDBG, SKIN_TEXTBG, SKIN_TEXTFG - } SkinColorIndex; - - typedef struct -@@ -64,6 +64,8 @@ - SkinPixmap pledit; - SkinPixmap eqmain; - SkinPixmap eq_ex; -+ GdkColor textbg[6], def_textbg[6]; -+ GdkColor textfg[6], def_textfg[6]; - GdkColor *pledit_normal, def_pledit_normal; - GdkColor *pledit_current, def_pledit_current; - GdkColor *pledit_normalbg, def_pledit_normalbg; -diff -ru xmms/textbox.c xmms/textbox.c ---- xmms/textbox.c Sat Aug 5 07:10:38 2000 -+++ xmms/textbox.c Thu Sep 21 11:39:59 2000 -@@ -55,9 +55,9 @@ - cw = tb->tb_pixmap_width - tb->tb_offset; - if (cw > tb->tb_widget.width) - cw = tb->tb_widget.width; -- gdk_draw_pixmap(obj, tb->tb_widget.gc, src, tb->tb_offset, 0, tb->tb_widget.x, tb->tb_widget.y, cw, 6); -+ gdk_draw_pixmap(obj, tb->tb_widget.gc, src, tb->tb_offset, 0, tb->tb_widget.x, tb->tb_widget.y, cw, tb->tb_widget.height); - if (cw < tb->tb_widget.width) -- gdk_draw_pixmap(obj, tb->tb_widget.gc, src, 0, 0, tb->tb_widget.x + cw, tb->tb_widget.y, tb->tb_widget.width - cw, 6); -+ gdk_draw_pixmap(obj, tb->tb_widget.gc, src, 0, 0, tb->tb_widget.x + cw, tb->tb_widget.y, tb->tb_widget.width - cw, tb->tb_widget.height); - } - } - -@@ -157,6 +157,27 @@ - if (wl * 5 != tb->tb_widget.width) - wl++; - -+ tb->tb_is_scrollable = FALSE; -+ if (tb->tb_font) { -+ if (gdk_text_width(tb->tb_font, tb->tb_text, length) <= tb->tb_widget.width) { -+ tb->tb_is_scrollable = FALSE; -+ if (tb->tb_timeout_tag) { -+ gtk_timeout_remove(tb->tb_timeout_tag); -+ tb->tb_timeout_tag = 0; -+ } -+ } else if (tb->tb_scroll_allowed) { -+ tb->tb_is_scrollable = TRUE; -+ length += 7; -+ tb->tb_text = (gchar *) g_realloc(tb->tb_text, length + 1); -+ strcat(tb->tb_text, " *** "); -+ if (tb->tb_scroll_enabled && !tb->tb_timeout_tag) { -+ if (cfg.smooth_title_scroll) -+ tb->tb_timeout_tag = gtk_timeout_add(TEXTBOX_SCROLL_SMOOTH_TIMEOUT, textbox_scroll, tb); -+ else -+ tb->tb_timeout_tag = gtk_timeout_add(TEXTBOX_SCROLL_TIMEOUT, textbox_scroll, tb); -+ } -+ } -+ } else - if (length <= wl) - { - tb->tb_is_scrollable = FALSE; -@@ -178,6 +199,48 @@ - draw_widget(tb); - } - -+void generate_xfont_pixmap(TextBox * tb) -+{ -+ gint length, i, x, y; -+ GdkGC *gc; -+ GdkColor *c; -+ GdkBitmap *b; -+ -+ length = strlen(tb->tb_text); -+ -+ tb->tb_pixmap_width = gdk_text_width(tb->tb_font, tb->tb_text, length); -+ if (tb->tb_pixmap_width < tb->tb_widget.width) tb->tb_pixmap_width = tb->tb_widget.width; -+ tb->tb_pixmap = gdk_pixmap_new(mainwin->window, tb->tb_pixmap_width, tb->tb_widget.height, gdk_rgb_get_visual()->depth); -+ gc = tb->tb_widget.gc; -+ c = get_skin_color(SKIN_TEXTBG); -+ for (i = 0; i < tb->tb_widget.height; i++) { -+ gdk_gc_set_foreground(gc, &c[6 * i / tb->tb_widget.height]); -+ gdk_draw_line(tb->tb_pixmap, gc, 0, i, tb->tb_pixmap_width, i); -+ } -+ -+ b = gdk_pixmap_new(mainwin->window, tb->tb_pixmap_width, tb->tb_widget.height, 1); -+ c = calloc(sizeof(GdkColor),1); -+ gc = gdk_gc_new(b); -+ c->pixel = 0; -+ gdk_gc_set_foreground(gc, c); -+ gdk_draw_rectangle(b, gc, TRUE, 0, 0, tb->tb_pixmap_width, tb->tb_widget.height); -+ c->pixel = 1; -+ gdk_gc_set_foreground(gc, c); -+ gdk_draw_text(b, tb->tb_font, gc, 0, tb->tb_font->ascent, tb->tb_text, length); -+ gdk_gc_unref(gc); -+ free(c); -+ -+ gc = tb->tb_widget.gc; -+ gdk_gc_set_clip_mask(gc, b); -+ c = get_skin_color(SKIN_TEXTFG); -+ for (i = 0; i < tb->tb_widget.height; i++) { -+ gdk_gc_set_foreground(gc, &c[6 * i / tb->tb_widget.height]); -+ gdk_draw_line(tb->tb_pixmap, gc, 0, i, tb->tb_pixmap_width, i); -+ } -+ gdk_pixmap_unref(b); -+ gdk_gc_set_clip_mask(gc, NULL); -+} -+ - void textbox_generate_pixmap(TextBox * tb) - { - gint length, i, x, y; -@@ -189,6 +252,11 @@ - g_free(tb->tb_pixmap_text); - tb->tb_pixmap_text = g_strdup(tb->tb_text); - -+ if (tb->tb_font) { -+ generate_xfont_pixmap(tb); -+ return; -+ } -+ - length = strlen(tb->tb_text); - - if(tb->tb_is_scrollable && tb->tb_scroll_allowed) -@@ -378,6 +446,19 @@ - - } - -+void config_textbox(TextBox *tb, gint y) { -+ if (tb->tb_font) gdk_font_unref(tb->tb_font); -+ tb->tb_font = NULL; -+ tb->tb_widget.y = y; -+ tb->tb_widget.height = 6; -+ if (!(cfg.xfont_for_playinfo && strlen(cfg.playinfo_font) > 0)) return; -+ tb->tb_font = gdk_fontset_load(cfg.playinfo_font); -+ if (tb->tb_font == NULL) return; -+ tb->tb_widget.height = tb->tb_font->ascent + tb->tb_font->descent; -+ if (tb->tb_widget.height > 6) tb->tb_widget.y -= (tb->tb_widget.height - 6) / 2; -+ else tb->tb_widget.height = 6; -+} -+ - TextBox *create_textbox(GList ** wlist, GdkPixmap * parent, GdkGC * gc, gint x, gint y, gint w, gboolean allow_scroll, SkinIndex si) - { - TextBox *tb; -@@ -405,6 +486,8 @@ - { - if (tb->tb_pixmap) - gdk_pixmap_unref(tb->tb_pixmap); -+ if (tb->tb_font) -+ gdk_font_unref(tb->tb_font); - g_free(tb->tb_text); - g_free(tb); - } -diff -ru xmms/textbox.h xmms/textbox.h ---- xmms/textbox.h Wed Feb 16 13:05:59 2000 -+++ xmms/textbox.h Thu Sep 21 11:39:59 2000 -@@ -33,12 +33,14 @@ - tb_is_dragging; - gint tb_timeout_tag, tb_drag_x, tb_drag_off; - SkinIndex tb_skin_index; -+ GdkFont *tb_font; - } - TextBox; - - void textbox_set_text(TextBox * tb, gchar * text); - void textbox_set_scroll(TextBox * tb, gboolean s); - TextBox *create_textbox(GList ** wlist, GdkPixmap * parent, GdkGC * gc, gint x, gint y, gint w, gboolean allow_scroll, SkinIndex si); -+void config_textbox(TextBox * tb, gint y); - void free_textbox(TextBox * tb); - - #endif >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 Nov 30 10:48:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from apollo.ocsny.com (apollo.ocsny.com [204.107.76.2]) by hub.freebsd.org (Postfix) with ESMTP id CE1C037B400 for ; Thu, 30 Nov 2000 10:48:57 -0800 (PST) Received: from ocsinternet.com (fw237.ocsny.com [204.107.76.237]) by apollo.ocsny.com (8.9.2/8.9.3) with ESMTP id NAA84363 for ; Thu, 30 Nov 2000 13:49:12 -0500 (EST) Message-ID: <3A26A08E.6215BBD3@ocsinternet.com> Date: Thu, 30 Nov 2000 13:46:38 -0500 From: mikel X-Mailer: Mozilla 4.73 [en] (Windows NT 5.0; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: multiple apache versions. Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anyone set up different versions of appache running on the same server? Like say Apache+Jserv bound to x.x.x.x and Apache+mod_php bound to y.y.y.y and maybe even Apache+FastCGI bound to z.z.z.z? Cheers, Mikel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 11:25:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id 2F04837B401; Thu, 30 Nov 2000 11:25:32 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id C7708C9B9; Thu, 30 Nov 2000 14:25:31 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 307382E451; Thu, 30 Nov 2000 14:25:31 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eAUJPVH79488; Thu, 30 Nov 2000 14:25:31 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14886.43434.947507.39784@onceler.kciLink.com> Date: Thu, 30 Nov 2000 14:25:30 -0500 To: dirk@FreeBSD.org Cc: ports@freebsd.org Subject: mysql323-server update update ;-) X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The patch I just sent over for updating to mysql 3.23.28 missed two minor things: --- #Makefile~ Thu Nov 30 13:38:05 2000 +++ Makefile Thu Nov 30 13:38:05 2000 @@ -44,7 +44,7 @@ .if !defined(CLIENT_ONLY) RUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql323-client -PLIST_SUB= MYSQL_VERSION=${PORTVERSION}-beta +PLIST_SUB= MYSQL_VERSION=${PORTVERSION}-gamma post-patch: ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S --- #pkg-plist~ Thu Nov 30 13:38:46 2000 +++ pkg-plist Thu Nov 30 13:38:46 2000 @@ -99,6 +99,7 @@ share/mysql/charsets/koi8_ukr.conf share/mysql/charsets/latin1.conf share/mysql/charsets/latin2.conf +share/mysql/charsets/latin5.conf share/mysql/charsets/swe7.conf share/mysql/charsets/usa7.conf share/mysql/charsets/win1250.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 11:40: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E2D1F37B401 for ; Thu, 30 Nov 2000 11:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUJe1P64314; Thu, 30 Nov 2000 11:40:01 -0800 (PST) (envelope-from gnats) Received: from cartier.cirx.org (cartier.cirx.org [211.72.15.243]) by hub.freebsd.org (Postfix) with ESMTP id 62D0C37B402 for ; Thu, 30 Nov 2000 11:33:39 -0800 (PST) Received: (from clive@localhost) by cartier.cirx.org (8.11.1/8.11.1) id eAUJXbe24760; Fri, 1 Dec 2000 03:33:37 +0800 (CST) (envelope-from clive) Message-Id: <200011301933.eAUJXbe24760@cartier.cirx.org> Date: Fri, 1 Dec 2000 03:33:37 +0800 (CST) From: Clive Lin Reply-To: Clive Lin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23197: Makes bento happy after machine/console.h split Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23197 >Category: ports >Synopsis: Makes bento happy after machine/console.h split >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: Thu Nov 30 11:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Clive Lin >Release: FreeBSD 5.0-CURRENT i386 >Organization: This site doesnt' exist >Environment: System: FreeBSD cartier.cirx.org 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Nov 28 02:07:36 CST 2000 root@cartier.cirx.org:/home/nexus/obj/home/nexus/src/sys/GENE i386 >Description: After the machine/console.h split, this port won't build. Some tunning to makes build possible on both CURRENT and RELENG_4. >How-To-Repeat: Apply the patch >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/chinese/big5con/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 2000/07/19 15:35:27 1.14 +++ Makefile 2000/11/30 19:29:11 @@ -28,6 +28,12 @@ # Fix some bugs # ftp://bsd.sinica.edu.tw/pub/FreeBSD/taiwan/users/woju/source/b5c-d2e.patch +.include +post-patch: +.if ${OSVERSION} > 500013 + @perl -pi -e 's,machine/console.h>,sys/consio.h>\n#include\t\n,' ${WRKSRC}/include/* + @perl -pi -e 's,machine/console.h>,sys/consio.h>\n#include\t\n,' ${WRKSRC}/src/* +.endif pre-install: @if [ ! -f ${PREFIX}/lib/fonts/kc16.smf ]; then \ tar xvfzp ${DISTDIR}/b5cbin-pa.tgz -C ${PREFIX}; \ @@ -36,4 +42,4 @@ post-install: @${CAT} ${PKGMESSAGE} -.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 Thu Nov 30 12:10: 6 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9486837B400 for ; Thu, 30 Nov 2000 12:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUKA3970146; Thu, 30 Nov 2000 12:10:03 -0800 (PST) (envelope-from gnats) Date: Thu, 30 Nov 2000 12:10:03 -0800 (PST) Message-Id: <200011302010.eAUKA3970146@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Johann Visagie Subject: Re: ports/23193: Port fix: biology/emboss (MAINTAINER) Reply-To: Johann Visagie Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23193; it has been noted by GNATS. From: Johann Visagie To: Peter Pentchev Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/23193: Port fix: biology/emboss (MAINTAINER) Date: Thu, 30 Nov 2000 22:01:37 +0200 > Do you by any chance keep the old distfiles, so you can check what has > changed? Not that it's all that uncommon to reroll dist tarballs without > notice (I've had that happen to fetchmail on me just the other day), but > sometimes this could be an indication of backdoored distributions on > compromised distsites.. It never hurts to be sure - that's just why > the distfiles MD5 sums were introduced in the first place, I should think :) Hmm, valid point! And yes, I was silly enough to delete the old distfiles after ensuring that the new ones build and appear to work. However, I was just in touch with the EMBOSS project leader, and apparently those distributions were indeed recreated due to a minor bug. So it all appears to be above board. *phew* Thanks for pointing this out; I won't make that mistake again. :-) -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 12:13:52 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B99FB37B402; Thu, 30 Nov 2000 12:13:50 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUKDom70911; Thu, 30 Nov 2000 12:13:50 -0800 (PST) (envelope-from roam) Date: Thu, 30 Nov 2000 12:13:50 -0800 (PST) From: Message-Id: <200011302013.eAUKDom70911@freefall.freebsd.org> To: johann@egenetics.com, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23193: Port fix: biology/emboss (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port fix: biology/emboss (MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Thu Nov 30 12:13:36 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23193 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 12:21: 1 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7560A37B402 for ; Thu, 30 Nov 2000 12:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUKK2M71911; Thu, 30 Nov 2000 12:20:02 -0800 (PST) (envelope-from gnats) Received: from cartier.cirx.org (cartier.cirx.org [211.72.15.243]) by hub.freebsd.org (Postfix) with ESMTP id 18D4237B401 for ; Thu, 30 Nov 2000 12:18:08 -0800 (PST) Received: (from clive@localhost) by cartier.cirx.org (8.11.1/8.11.1) id eAUKI6v25833; Fri, 1 Dec 2000 04:18:06 +0800 (CST) (envelope-from clive) Message-Id: <200011302018.eAUKI6v25833@cartier.cirx.org> Date: Fri, 1 Dec 2000 04:18:06 +0800 (CST) From: Clive Lin Reply-To: Clive Lin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23198: New port: chinese/emacs20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23198 >Category: ports >Synopsis: New port: chinese/emacs20 >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 Nov 30 12:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Clive Lin >Release: FreeBSD 5.0-CURRENT i386 >Organization: This site doesnt' exist >Environment: System: FreeBSD cartier.cirx.org 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Nov 28 02:07:36 CST 2000 root@cartier.cirx.org:/home/nexus/obj/home/nexus/src/sys/GENE i386 >Description: New port: chinese/emacs20. Slave port of editors/emacs20. This makes Chinese characters input via XIM or simply terminal possible, mean while editors/emacs20 can't. >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: # # emacs20/ # emacs20/files # emacs20/files/dot.emacs # emacs20/files/Emacs # emacs20/files/emacs20-xim-20000713.diff # emacs20/Makefile # emacs20/pkg-message # emacs20/shar # echo c - emacs20/ mkdir -p emacs20/ > /dev/null 2>&1 echo c - emacs20/files mkdir -p emacs20/files > /dev/null 2>&1 echo x - emacs20/files/dot.emacs sed 's/^X//' >emacs20/files/dot.emacs << 'END-of-emacs20/files/dot.emacs' X;; Set environment to Chinese-Big5 X(set-language-environment 'chinese-big5) X(set-keyboard-coding-system 'chinese-big5) X(set-terminal-coding-system 'chinese-big5) X(set-buffer-file-coding-system 'chinese-big5) X(set-selection-coding-system 'chinese-big5) X(modify-coding-system-alist 'process "*" 'chinese-big5) X;; Do not conflicts with xcin hook X(global-set-key (kbd "M-SPC") 'set-mark-command) END-of-emacs20/files/dot.emacs echo x - emacs20/files/Emacs sed 's/^X//' >emacs20/files/Emacs << 'END-of-emacs20/files/Emacs' XEmacs.Font: fontset-16 XEmacs.Fontset-0: -*-*-medium-r-normal-*-16-*-*-*-*-*-fontset-16 END-of-emacs20/files/Emacs echo x - emacs20/files/emacs20-xim-20000713.diff sed 's/^X//' >emacs20/files/emacs20-xim-20000713.diff << 'END-of-emacs20/files/emacs20-xim-20000713.diff' Xdiff -Naurw emacs-20.7.orig/src/xfns.c emacs-20.7/src/xfns.c X--- emacs-20.7.orig/src/xfns.c Thu Jul 1 09:09:39 1999 X+++ emacs-20.7/src/xfns.c Sat Jun 17 00:18:36 2000 X@@ -2719,6 +2719,259 @@ X } X #endif X X+/* Support routines for XIC (X Input Context). */ X+#ifdef HAVE_X_I18N X+ X+/* Create X fontset. */ X+static XFontSet X+xic_create_xfontset (f, base_fontname) X+ struct frame *f; X+ char *base_fontname; X+{ X+ XFontSet xfs; X+ char **missing_list; X+ int missing_count; X+ char *def_string; X+ X+ xfs = XCreateFontSet (FRAME_X_DISPLAY (f), X+ base_fontname, &missing_list, X+ &missing_count, &def_string); X+ if (missing_list) X+ XFreeStringList (missing_list); X+ /* Don't need to free def_string. */ X+ X+ return xfs; X+} X+ X+/* Supported XIM styles, ordered in preferences. */ X+static XIMStyle supported_styles[] = X+{ X+ XIMPreeditPosition | XIMStatusArea, X+ XIMPreeditPosition | XIMStatusNothing, X+ XIMPreeditPosition | XIMStatusNone, X+ XIMPreeditNothing | XIMStatusArea, X+ XIMPreeditNothing | XIMStatusNothing, X+ XIMPreeditNothing | XIMStatusNone, X+ XIMPreeditNone | XIMStatusArea, X+ XIMPreeditNone | XIMStatusNothing, X+ XIMPreeditNone | XIMStatusNone, X+ 0, X+}; X+ X+/* Choose the best style, given: X+ * - user preferences (already checked to be supported by Emacs) X+ * - styles supported by the input method */ X+#define DEFAULTStyle (XIMPreeditNothing | XIMStatusNothing) X+static XIMStyle X+best_style (user, xim) X+ XIMStyles *user; X+ XIMStyles *xim; X+{ X+ int i, j; X+ X+ for (i = 0; i < user->count_styles; i++) X+ { X+ for (j = 0; j < xim->count_styles; j++) X+ { X+ if (user->supported_styles[i] == xim->supported_styles[j]) X+ return user->supported_styles[i]; X+ } X+ } X+ return DEFAULTStyle; /* Default Style */ X+} X+ X+/* Create XIC for a frame. */ X+void X+xic_create_frame (f) X+ struct frame *f; X+{ X+#ifndef X_I18N_INHIBITED X+ XIM xim; X+ XIC xic = NULL; X+ XFontSet xfs = NULL; X+ static XIMStyle xic_style; X+ X+ if (FRAME_XIC (f)) X+ return; X+ xim = FRAME_X_XIM (f); X+ X+ if (xim) X+ { X+ XRectangle s_area = {0, 0, 1, 1}; X+ XPoint spot = {0, 1}; X+ XVaNestedList preedit_attr; X+ XVaNestedList status_attr; X+ static const char DEFAULT_FONT[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*"; X+ char *base_fontname; X+ int fontset; X+ X+ /* Create X fontset. */ X+ fontset = FRAME_FONTSET (f); X+ if (fontset < 0) X+ base_fontname = DEFAULT_FONT; X+ else X+ { X+ struct fontset_info *fontsetp; X+ int len = 0; X+ int i; X+ X+ fontsetp = FRAME_FONTSET_DATA (f)->fontset_table[fontset]; X+ for (i = 0; i <= MAX_CHARSET; i++) X+ if (fontsetp->fontname[i]) X+ len += strlen (fontsetp->fontname[i]) + 1; X+ base_fontname = alloca (len); X+ strcpy (base_fontname, fontsetp->fontname[CHARSET_ASCII]); X+ for (i = MIN_CHARSET_OFFICIAL_DIMENSION1; i <= MAX_CHARSET; i++) X+ if (fontsetp->fontname[i]) X+ { X+ strcat (base_fontname, ","); X+ strcat (base_fontname, fontsetp->fontname[i]); X+ } X+ } X+ xfs = xic_create_xfontset (f, base_fontname); X+ X+ /* Determine XIC style. */ X+ if (xic_style == 0) X+ { X+ XIMStyles supported_list; X+ supported_list.count_styles = sizeof (supported_styles) / sizeof (supported_styles[0]); X+ supported_list.supported_styles = supported_styles; X+ xic_style = best_style (&supported_list, FRAME_X_XIM_STYLES (f)); X+ } X+ X+ preedit_attr = XVaCreateNestedList (0, X+ XNFontSet, xfs, X+ XNForeground, FRAME_FOREGROUND_PIXEL (f), X+ XNBackground, FRAME_BACKGROUND_PIXEL (f), X+ xic_style & XIMPreeditPosition ? XNSpotLocation : NULL, &spot, X+ NULL); X+ status_attr = XVaCreateNestedList (0, X+ XNArea, &s_area, X+ XNFontSet, xfs, X+ XNForeground, FRAME_FOREGROUND_PIXEL (f), X+ XNBackground, FRAME_BACKGROUND_PIXEL (f), X+ NULL); X+ X+ xic = XCreateIC (xim, X+ XNInputStyle, xic_style, X+ XNClientWindow, FRAME_X_WINDOW(f), X+ XNFocusWindow, FRAME_X_WINDOW(f), X+ XNStatusAttributes, status_attr, X+ XNPreeditAttributes, preedit_attr, X+ NULL); X+ XFree (preedit_attr); X+ XFree (status_attr); X+ } X+ X+ FRAME_XIC (f) = xic; X+ FRAME_XIC_STYLE (f) = xic_style; X+ FRAME_XIC_FONTSET (f) = xfs; X+#else /* X_I18N_INHIBITED */ X+ FRAME_XIC (f) = NULL; X+ FRAME_XIC_STYLE (f) = 0; X+ FRAME_XIC_FONTSET (f) = NULL; X+#endif /* X_I18N_INHIBITED */ X+} X+ X+/* Destroy XIC for a frame. */ X+void X+xic_destroy_frame (f) X+ struct frame *f; X+{ X+ if (FRAME_XIC (f) == NULL) X+ return; X+ X+ XDestroyIC (FRAME_XIC (f)); X+ if (FRAME_XIC_FONTSET (f)) X+ XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f)); X+ X+ FRAME_XIC (f) = NULL; X+ FRAME_XIC_FONTSET (f) = NULL; X+} X+ X+/* Place preedit area for XIC in cursor position. */ X+void X+xic_set_preeditarea (f, x, y) X+ struct frame *f; X+ int x, y; X+{ X+ XVaNestedList attr; X+ XPoint spot; X+ X+ spot.x = CHAR_TO_PIXEL_COL (f, x); X+ spot.y = CHAR_TO_PIXEL_ROW (f, y) + FONT_BASE (FRAME_FONT (f)); X+ attr = XVaCreateNestedList (0, X+ XNSpotLocation, &spot, X+ NULL); X+ XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL); X+ XFree (attr); X+} X+ X+/* Place status area for XIC in bottom right corner. */ X+void X+xic_set_statusarea (f) X+ struct frame *f; X+{ X+ XIC xic = FRAME_XIC (f); X+ XVaNestedList attr; X+ XRectangle area; X+ XRectangle *needed; X+ X+ /* Basically, I follow the way of XEmacs20.4. */ X+ /* Negotiate geometry of status area. */ X+ /* If input method has existing status area, use its current size */ X+ area.x = area.y = area.width = area.height = 0; X+ attr = XVaCreateNestedList (0, XNAreaNeeded, &area, NULL); X+ XSetICValues (xic, XNStatusAttributes, attr, NULL); X+ XFree (attr); X+ X+ attr = XVaCreateNestedList (0, XNAreaNeeded, &needed, NULL); X+ XGetICValues (xic, XNStatusAttributes, attr, NULL); X+ XFree (attr); X+ X+ if (needed->width == 0) /* Use XNArea instead of XNAreaNeeded */ X+ { X+ attr = XVaCreateNestedList (0, XNArea, &needed, NULL); X+ XGetICValues (xic, XNStatusAttributes, attr, NULL); X+ XFree (attr); X+ } X+ X+ area.width = needed->width; X+ area.height = needed->height; X+ area.x = PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f); X+ area.y = PIXEL_HEIGHT (f) - area.height - FRAME_MENUBAR_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f); X+ XFree(needed); X+ X+ attr = XVaCreateNestedList (0, XNArea, &area, NULL); X+ XSetICValues(xic, XNStatusAttributes, attr, NULL); X+ XFree(attr); X+} X+ X+/* Set X fontset for XIC, called when a new Emacs fontset is chosen. */ X+void X+xic_set_xfontset (f, base_fontname) X+ struct frame *f; X+ char *base_fontname; X+{ X+ XVaNestedList attr; X+ XFontSet xfs; X+ X+ xfs = xic_create_xfontset (f, base_fontname); X+ X+ attr = XVaCreateNestedList (0, XNFontSet, xfs, NULL); X+ if (FRAME_XIC_STYLE (f) & XIMPreeditPosition) X+ XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL); X+ if (FRAME_XIC_STYLE (f) & XIMStatusArea) X+ XSetICValues (FRAME_XIC (f), XNStatusAttributes, attr, NULL); X+ XFree (attr); X+ X+ if (FRAME_XIC_FONTSET (f)) X+ XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f)); X+ FRAME_XIC_FONTSET (f) = xfs; X+} X+#endif /* HAVE_X_I18N */ X+ X+ X #ifdef USE_X_TOOLKIT X X /* Create and set up the X widget for frame F. */ X@@ -2876,34 +3129,8 @@ X XSetClassHint (FRAME_X_DISPLAY (f), XtWindow (shell_widget), &class_hints); X X #ifdef HAVE_X_I18N X-#ifndef X_I18N_INHIBITED X- { X- XIM xim; X- XIC xic = NULL; X- X- xim = XOpenIM (FRAME_X_DISPLAY (f), NULL, NULL, NULL); X- X- if (xim) X- { X- xic = XCreateIC (xim, X- XNInputStyle, XIMPreeditNothing | XIMStatusNothing, X- XNClientWindow, FRAME_X_WINDOW(f), X- XNFocusWindow, FRAME_X_WINDOW(f), X- NULL); X- X- if (xic == 0) X- { X- XCloseIM (xim); X- xim = NULL; X- } X- } X- FRAME_XIM (f) = xim; X- FRAME_XIC (f) = xic; X- } X-#else /* X_I18N_INHIBITED */ X- FRAME_XIM (f) = 0; X- FRAME_XIC (f) = 0; X-#endif /* X_I18N_INHIBITED */ X+ FRAME_XIC (f) = NULL; X+ xic_create_frame (f); X #endif /* HAVE_X_I18N */ X X f->output_data.x->wm_hints.input = True; X@@ -2928,6 +3155,16 @@ X X /* Make all the standard events reach the Emacs frame. */ X attributes.event_mask = STANDARD_EVENT_SET; X+#ifdef HAVE_X_I18N X+ if (FRAME_XIC (f)) X+ { X+ /* XIM server might require some X events. */ X+ unsigned long fevent = NoEventMask; X+ X+ XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL); X+ attributes.event_mask |= fevent; X+ } X+#endif /* HAVE_X_I18N */ X attribute_mask = CWEventMask; X XChangeWindowAttributes (XtDisplay (shell_widget), XtWindow (shell_widget), X attribute_mask, &attributes); X@@ -2998,38 +3235,21 @@ X InputOutput, /* class */ X FRAME_X_DISPLAY_INFO (f)->visual, X attribute_mask, &attributes); X-#ifdef HAVE_X_I18N X-#ifndef X_I18N_INHIBITED X- { X- XIM xim; X- XIC xic = NULL; X X- xim = XOpenIM (FRAME_X_DISPLAY(f), NULL, NULL, NULL); X- X- if (xim) X- { X- xic = XCreateIC (xim, X- XNInputStyle, XIMPreeditNothing | XIMStatusNothing, X- XNClientWindow, FRAME_X_WINDOW(f), X- XNFocusWindow, FRAME_X_WINDOW(f), X- NULL); X- X- if (!xic) X+#ifdef HAVE_X_I18N X+ xic_create_frame (f); X+ if (FRAME_XIC (f)) X { X- XCloseIM (xim); X- xim = NULL; X- } X- } X+ /* XIM server might require some X events. */ X+ unsigned long fevent = NoEventMask; X X- FRAME_XIM (f) = xim; X- FRAME_XIC (f) = xic; X+ XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL); X+ attributes.event_mask |= fevent; X+ attribute_mask = CWEventMask; X+ XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), X+ attribute_mask, &attributes); X } X-#else /* X_I18N_INHIBITED */ X- FRAME_XIM (f) = 0; X- FRAME_XIC (f) = 0; X-#endif /* X_I18N_INHIBITED */ X #endif /* HAVE_X_I18N */ X- X validate_x_resource_name (); X X class_hints.res_name = (char *) XSTRING (Vx_resource_name)->data; Xdiff -Naurw emacs-20.7.orig/src/xterm.c emacs-20.7/src/xterm.c X--- emacs-20.7.orig/src/xterm.c Mon Aug 2 09:16:43 1999 X+++ emacs-20.7/src/xterm.c Wed Jul 12 23:28:40 2000 X@@ -3791,9 +3791,6 @@ X int prefix; X Lisp_Object part; X struct x_display_info *dpyinfo; X-#ifdef HAVE_X_I18N X- Status status_return; X-#endif X X if (interrupt_input_blocked) X { X@@ -3862,7 +3859,7 @@ X event.xclient.window); X /* The necessity of the following line took me X a full work-day to decipher from the docs!! */ X- if (f1 != 0 && FRAME_XIC (f1) && XFilterEvent (&event, None)) X+ if (XFilterEvent (&event, f1 ? FRAME_X_WINDOW(f1) : None)) X break; X } X #endif X@@ -4235,18 +4232,30 @@ X #ifdef HAVE_X_I18N X if (FRAME_XIC (f)) X { X- /* The necessity of the following line took me X- a full work-day to decipher from the docs!! */ X- if (XFilterEvent (&event, None)) X- break; X+ unsigned char *copy_bufptr = copy_buffer; X+ int copy_bufsiz = sizeof (copy_buffer); X+ Status status_return; X+ X+ nbytes = XmbLookupString (FRAME_XIC (f), X+ &event.xkey, copy_bufptr, X+ copy_bufsiz, &keysym, X+ &status_return); X+ if (status_return == XBufferOverflow) X+ { X+ copy_bufsiz = nbytes + 1; X+ copy_bufptr = (char *) alloca (copy_bufsiz); X nbytes = XmbLookupString (FRAME_XIC (f), X- &event.xkey, copy_buffer, X- 80, &keysym, X+ &event.xkey, copy_bufptr, X+ copy_bufsiz, &keysym, X &status_return); X+ } X if (status_return == XLookupNone) X break; X else if (status_return == XLookupChars) X+ { X keysym = NoSymbol; X+ modifiers = 0; X+ } X else if (status_return != XLookupKeySym X && status_return != XLookupBoth) X abort (); X@@ -4378,7 +4387,10 @@ X else X abort (); X } X- goto OTHER; X+ break; X+ X+ case KeyRelease: X+ break; X X /* Here's a possible interpretation of the whole X FocusIn-EnterNotify FocusOut-LeaveNotify mess. If you get a X@@ -4515,6 +4527,13 @@ X x_real_positions (f, &f->output_data.x->left_pos, X &f->output_data.x->top_pos); X X+#ifdef HAVE_X_I18N X+ if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea)) X+ { X+ xic_set_statusarea (f); X+ } X+#endif X+ X if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window) X { X /* Since the WM decorations come below top_pos now, X@@ -4992,6 +5011,13 @@ X /* Those are the only two we have implemented! */ X abort (); X X+#ifdef HAVE_X_I18N X+ if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition)) X+ { X+ xic_set_preeditarea (f, x, y); X+ } X+#endif X+ X UNBLOCK_INPUT; X } X X@@ -5463,9 +5489,176 @@ X FS_LOAD_FONT (f, FRAME_X_FONT_TABLE (f), X CHARSET_ASCII, fontsetp->fontname[CHARSET_ASCII], fontset); X X+#ifdef HAVE_X_I18N X+ if (FRAME_XIC (f) X+ && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea))) X+ { X+ xic_set_xfontset (f, fontsetp->fontname[CHARSET_ASCII]); X+ } X+#endif /* HAVE_X_I18N */ X return build_string (fontsetname); X } X X+ X+/* Support routines for XIM (X Input Method). */ X+#ifdef HAVE_X_I18N X+ X+#ifdef HAVE_X11R6 X+/* XIM destroy callback function, X+ which is called whenever the connected XIM server dies. X+ Clear XIM information. */ X+static void X+xim_destroy_callback (xim, client_data, call_data) X+ XIM xim; X+ XPointer client_data; X+ XPointer call_data; X+{ X+ struct x_display_info *dpyinfo = (struct x_display_info *)client_data; X+ Lisp_Object frame, tail; X+ X+ BLOCK_INPUT; X+ /* Don't need to call XDestroyIC. */ X+ FOR_EACH_FRAME (tail, frame) X+ if (FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo) X+ { X+ FRAME_XIC (XFRAME (frame)) = NULL; X+ if (FRAME_XIC_FONTSET (XFRAME (frame))) X+ { X+ XFreeFontSet (FRAME_X_DISPLAY (XFRAME (frame)), FRAME_XIC_FONTSET (XFRAME (frame))); X+ FRAME_XIC_FONTSET (XFRAME (frame)) = NULL; X+ } X+ } X+ X+ /* Don't need to call XCloseIM. */ X+ dpyinfo->xim = NULL; X+ XFree (dpyinfo->xim_styles); X+ UNBLOCK_INPUT; X+} X+#endif /* HAVE_X11R6 */ X+ X+/* Open the connection with XIM server. */ X+static void X+xim_open_dpy (dpyinfo, resource_name) X+ struct x_display_info *dpyinfo; X+ char *resource_name; X+{ X+ XIM xim; X+ X+ xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name, EMACS_CLASS); X+ dpyinfo->xim = xim; X+ X+ if (xim) X+ { X+ XIMValuesList *xim_values_list; X+#ifdef HAVE_X11R6 X+ XIMCallback destroy; X+#endif X+ X+ /* Get supported styles and XIM values */ X+ XGetIMValues (xim, X+ XNQueryInputStyle, &dpyinfo->xim_styles, X+ NULL); X+#ifdef HAVE_X11R6 X+ destroy.callback = xim_destroy_callback; X+ destroy.client_data = (XPointer)dpyinfo; X+ XSetIMValues (xim, XNDestroyCallback, &destroy, NULL); X+#endif X+ } X+} X+ X+#ifdef HAVE_X11R6 X+struct xim_inst_t X+{ X+ struct x_display_info *dpyinfo; X+ char *resource_name; X+}; X+ X+/* XIM instantiate callback function, X+ which is called whenever an XIM server is available. */ X+static void X+xim_instantiate_callback(display, client_data, call_data) X+ Display *display; X+ XPointer client_data; X+ XPointer call_data; X+{ X+ struct xim_inst_t *xim_inst = (struct xim_inst_t *)client_data; X+ struct x_display_info *dpyinfo = xim_inst->dpyinfo; X+ X+ /* We don't support multiple XIM connections. */ X+ if (dpyinfo->xim) X+ return; X+ X+ xim_open_dpy (dpyinfo, xim_inst->resource_name); X+ X+ /* Create XIC for the existing frames on the same display, X+ as long as they have no XIC. */ X+ if (dpyinfo->xim && dpyinfo->reference_count > 0) X+ { X+ Lisp_Object tail, frame; X+ X+ BLOCK_INPUT; X+ FOR_EACH_FRAME (tail, frame) X+ if (FRAME_X_DISPLAY_INFO (XFRAME (frame)) == xim_inst->dpyinfo) X+ if (FRAME_XIC (XFRAME (frame)) == NULL) X+ { X+ xic_create_frame (XFRAME (frame)); X+ if (FRAME_XIC_STYLE (XFRAME (frame)) & XIMStatusArea) X+ xic_set_statusarea (XFRAME (frame)); X+ if (FRAME_XIC_STYLE (XFRAME (frame)) & XIMPreeditPosition) X+ xic_set_preeditarea (XFRAME (frame), X+ FRAME_CURSOR_X (XFRAME (frame)), X+ FRAME_CURSOR_Y (XFRAME (frame))); X+ } X+ UNBLOCK_INPUT; X+ } X+} X+#endif /* HAVE_X11R6 */ X+ X+/* It's dependent on X11R5 or X11R6 to open the connection with XIM server. X+ On X11R5, open the connection only at the first time. X+ On X11R6, open the connection in XIM instantiate callback function. */ X+static void X+xim_initialize (dpyinfo, resource_name) X+ struct x_display_info *dpyinfo; X+ char *resource_name; X+{ X+#ifdef HAVE_X11R6 X+ struct xim_inst_t *xim_inst; X+ int len; X+ X+ dpyinfo->xim = NULL; X+ xim_inst = (struct xim_inst_t *) xmalloc (sizeof (struct xim_inst_t)); X+ xim_inst->dpyinfo = dpyinfo; X+ len = strlen (resource_name); X+ xim_inst->resource_name = (char *) xmalloc (len + 1); X+ bcopy (resource_name, xim_inst->resource_name, len + 1); X+ XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb, X+ resource_name, EMACS_CLASS, X+ xim_instantiate_callback, (XPointer)xim_inst); X+#else /* not HAVE_X11R6 */ X+ dpyinfo->xim = NULL; X+ xim_open_dpy (dpyinfo, resource_name); X+#endif /* not HAVE_X11R6 */ X+} X+ X+/* Close the connection with XIM server. */ X+static void X+xim_close_dpy (dpyinfo) X+ struct x_display_info *dpyinfo; X+{ X+#ifdef HAVE_X11R6 X+ XUnregisterIMInstantiateCallback(dpyinfo->display, dpyinfo->xrdb, X+ NULL, EMACS_CLASS, X+ xim_instantiate_callback, NULL); X+#endif /* HAVE_X11R6 */ X+ XCloseIM (dpyinfo->xim); X+ dpyinfo->xim = NULL; X+ X+ XFree (dpyinfo->xim_styles); X+} X+#endif /* HAVE_X_I18N */ X+ X+ X /* Calculate the absolute position in frame F X from its current recorded position values and gravity. */ X X@@ -6175,15 +6368,9 @@ X if (f->output_data.x->icon_desc != 0) X XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc); X #ifdef HAVE_X_I18N X- if (FRAME_XIM (f)) X+ if (FRAME_XIC (f)) X { X- XDestroyIC (FRAME_XIC (f)); X-#if ! defined (SOLARIS2) || defined (HAVE_X11R6) X- /* This line causes crashes on Solaris with Openwin, X- due to an apparent bug in XCloseIM. X- X11R6 seems not to have the bug. */ X- XCloseIM (FRAME_XIM (f)); X-#endif X+ xic_destroy_frame (f); X } X #endif X XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->window_desc); X@@ -7335,6 +7522,10 @@ X 1); X } X X+#ifdef HAVE_X_I18N X+ xim_initialize (dpyinfo, resource_name); X+#endif X+ X #ifdef subprocesses X /* This is only needed for distinguishing keyboard and process input. */ X if (connection != 0) X@@ -7440,6 +7631,11 @@ X if (--dpyinfo->kboard->reference_count == 0) X delete_kboard (dpyinfo->kboard); X #endif X+#ifdef HAVE_X_I18N X+ if (dpyinfo->xim) X+ xim_close_dpy (dpyinfo); X+#endif X+ X xfree (dpyinfo->font_table); X xfree (dpyinfo->x_id_name); X xfree (dpyinfo); Xdiff -Naurw emacs-20.7.orig/src/xterm.h emacs-20.7/src/xterm.h X--- emacs-20.7.orig/src/xterm.h Sun Aug 16 07:58:10 1998 X+++ emacs-20.7/src/xterm.h Sat Jun 17 00:18:37 2000 X@@ -297,6 +297,12 @@ X /* The null pixel used for filling a character background with X background color of a gc. */ X Pixmap null_pixel; X+ X+#ifdef HAVE_X_I18N X+ /* XIM(X Input method) */ X+ XIM xim; X+ XIMStyles *xim_styles; X+#endif X }; X X /* This is a chain of structures for all the X displays currently in use. */ X@@ -492,10 +498,11 @@ X char has_been_visible; X X #ifdef HAVE_X_I18N X- /* Input method. */ X- XIM xim; X+ /* XIM(X Input method) */ X /* Input context (currently, this means Compose key handler setup). */ X XIC xic; X+ XIMStyle xic_style; X+ XFontSet xic_xfs; X #endif X }; X X@@ -526,6 +533,7 @@ X #define FRAME_FONT(f) ((f)->output_data.x->font) X #define FRAME_FONTSET(f) ((f)->output_data.x->fontset) X #define FRAME_INTERNAL_BORDER_WIDTH(f) ((f)->output_data.x->internal_border_width) X+#define FRAME_MENUBAR_HEIGHT(f) ((f)->output_data.x->menubar_height) X #define FRAME_LINE_HEIGHT(f) ((f)->output_data.x->line_height) X X /* This gives the x_display_info structure for the display F is on. */ X@@ -546,8 +554,11 @@ X X #define FRAME_DESIRED_CURSOR(f) ((f)->output_data.x->desired_cursor) X X-#define FRAME_XIM(f) ((f)->output_data.x->xim) X+#define FRAME_X_XIM(f) (FRAME_X_DISPLAY_INFO (f)->xim) X+#define FRAME_X_XIM_STYLES(f) (FRAME_X_DISPLAY_INFO (f)->xim_styles) X #define FRAME_XIC(f) ((f)->output_data.x->xic) X+#define FRAME_XIC_STYLE(f) ((f)->output_data.x->xic_style) X+#define FRAME_XIC_FONTSET(f) ((f)->output_data.x->xic_xfs) X X /* X-specific scroll bar stuff. */ X X@@ -877,6 +888,11 @@ X extern void x_set_border_pixel P_ ((struct frame *, int)); X extern void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); X extern void x_implicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object)); X+extern void xic_create_frame P_ ((struct frame *)); X+extern void xic_destroy_frame P_ ((struct frame *)); X+extern void xic_set_preeditarea P_ ((struct frame *, int, int)); X+extern void xic_set_statusarea P_ ((struct frame *)); X+extern void xic_set_xfontset P_ ((struct frame *, char *)); X extern int x_pixel_width P_ ((struct frame *)); X extern int x_pixel_height P_ ((struct frame *)); X extern int x_char_width P_ ((struct frame *)); END-of-emacs20/files/emacs20-xim-20000713.diff echo x - emacs20/Makefile sed 's/^X//' >emacs20/Makefile << 'END-of-emacs20/Makefile' X# ex:ts=8 X# Ports collection makefile for: emacs20 with XIM and a little zh-l10n X# Date created: Sat Nov 11, 2000 X# Whom: Clive Lin X# X# $FreeBSD: outta-port/emacs20/Makefile,v 1.2 2000/11/30 19:57:39 clive Exp $ X# X XMASTERDIR= ${.CURDIR}/../../editors/emacs20 X XMAINTAINER= clive@CirX.ORG X XWITH_XPG4= yes X X.if !defined(WITHOUT_X11) XRUN_DEPENDS= ${X11BASE}/lib/X11/fonts/local/kc15f.pcf.gz:${PORTSDIR}/chinese/kcfonts \ X xcin2.5:${PORTSDIR}/chinese/xcin25 X.endif X XPKGMESSAGE= ${.CURDIR}/pkg-message X XPLIST= ${WRKDIR}/pkg-plist X Xpre-patch: X @( cd ${WRKSRC}; \ X ${PATCH} -sp1 < ${.CURDIR}/files/emacs20-xim-20000713.diff ; ) X Xpost-patch: X @${ECHO} "share/emacs/%%EMACS_VER%%/etc/Emacs" >> ${WRKDIR}/pkg-plist X @${ECHO} "share/emacs/%%EMACS_VER%%/etc/dot.emacs" >> ${WRKDIR}/pkg-plist X @${CAT} ${MASTERDIR}/pkg-plist >> ${WRKDIR}/pkg-plist X Xpost-install: X ${INSTALL} -c ${.CURDIR}/files/Emacs ${PREFIX}/share/emacs/${PORTVERSION}/etc X ${INSTALL} -c ${.CURDIR}/files/dot.emacs ${PREFIX}/share/emacs/${PORTVERSION}/etc X @${CAT} ${PKGMESSAGE} X X.include "${MASTERDIR}/Makefile" END-of-emacs20/Makefile echo x - emacs20/pkg-message sed 's/^X//' >emacs20/pkg-message << 'END-of-emacs20/pkg-message' X X!!!! Notice !!!! X X1) You have to copy Emacs and dot.emacs within X ${PREFIX}/share/emacs/${EMACS_VER}/etc/ X into your home directory, and rename dot.emacs to .emacs, X in order to make it work. X2) Remember to set environment varible XMODIFIERS ! X csh/tcsh: setenv XMODIFIERS @im=xcin X sh/bash: export XMODIFIERS='@im=xcin' X END-of-emacs20/pkg-message echo x - emacs20/shar sed 's/^X//' >emacs20/shar << 'END-of-emacs20/shar' X# This is a shell archive. Save it in a file, remove anything before X# this line, and then unpack it by entering "sh file". Note, it may X# create directories; files and directories will be owned by you and X# have default permissions. X# X# This archive contains: X# X# Makefile X# pkg-message X# files/Emacs X# files/emacs20-xim-20000713.diff X# files/dot.emacs X# Xecho x - Makefile Xsed 's/^X//' >Makefile << 'END-of-Makefile' XX# ex:ts=8 XX# Ports collection makefile for: emacs20 with XIM and a little zh-l10n XX# Date created: Sat Nov 11, 2000 XX# Whom: Clive Lin XX# XX# $FreeBSD: outta-port/emacs20/Makefile,v 1.2 2000/11/30 19:57:39 clive Exp $ XX# XX XXMASTERDIR= ${.CURDIR}/../../editors/emacs20 XX XXMAINTAINER= clive@CirX.ORG XX XXWITH_XPG4= yes XX XX.if !defined(WITHOUT_X11) XXRUN_DEPENDS= ${X11BASE}/lib/X11/fonts/local/kc15f.pcf.gz:${PORTSDIR}/chinese/kcfonts \ XX xcin2.5:${PORTSDIR}/chinese/xcin25 XX.endif XX XXPKGMESSAGE= ${.CURDIR}/pkg-message XX XXPLIST= ${WRKDIR}/pkg-plist XX XXpre-patch: XX @( cd ${WRKSRC}; \ XX ${PATCH} -sp1 < ${.CURDIR}/files/emacs20-xim-20000713.diff ; ) XX XXpost-patch: XX @${ECHO} "share/emacs/%%EMACS_VER%%/etc/Emacs" >> ${WRKDIR}/pkg-plist XX @${ECHO} "share/emacs/%%EMACS_VER%%/etc/dot.emacs" >> ${WRKDIR}/pkg-plist XX @${CAT} ${MASTERDIR}/pkg-plist >> ${WRKDIR}/pkg-plist XX XXpost-install: XX ${INSTALL} -c ${.CURDIR}/files/Emacs ${PREFIX}/share/emacs/${PORTVERSION}/etc XX ${INSTALL} -c ${.CURDIR}/files/dot.emacs ${PREFIX}/share/emacs/${PORTVERSION}/etc XX @${CAT} ${PKGMESSAGE} XX XX.include "${MASTERDIR}/Makefile" XEND-of-Makefile Xecho x - pkg-message Xsed 's/^X//' >pkg-message << 'END-of-pkg-message' XX XX!!!! Notice !!!! XX XX1) You have to copy Emacs and dot.emacs within XX ${PREFIX}/share/emacs/${EMACS_VER}/etc/ XX into your home directory, and rename dot.emacs to .emacs, XX in order to make it work. XX2) Remember to set environment varible XMODIFIERS ! XX csh/tcsh: setenv XMODIFIERS @im=xcin XX sh/bash: export XMODIFIERS='@im=xcin' XX XEND-of-pkg-message Xecho x - files/Emacs Xsed 's/^X//' >files/Emacs << 'END-of-files/Emacs' XXEmacs.Font: fontset-16 XXEmacs.Fontset-0: -*-*-medium-r-normal-*-16-*-*-*-*-*-fontset-16 XEND-of-files/Emacs Xecho x - files/emacs20-xim-20000713.diff Xsed 's/^X//' >files/emacs20-xim-20000713.diff << 'END-of-files/emacs20-xim-20000713.diff' XXdiff -Naurw emacs-20.7.orig/src/xfns.c emacs-20.7/src/xfns.c XX--- emacs-20.7.orig/src/xfns.c Thu Jul 1 09:09:39 1999 XX+++ emacs-20.7/src/xfns.c Sat Jun 17 00:18:36 2000 XX@@ -2719,6 +2719,259 @@ XX } XX #endif XX XX+/* Support routines for XIC (X Input Context). */ XX+#ifdef HAVE_X_I18N XX+ XX+/* Create X fontset. */ XX+static XFontSet XX+xic_create_xfontset (f, base_fontname) XX+ struct frame *f; XX+ char *base_fontname; XX+{ XX+ XFontSet xfs; XX+ char **missing_list; XX+ int missing_count; XX+ char *def_string; XX+ XX+ xfs = XCreateFontSet (FRAME_X_DISPLAY (f), XX+ base_fontname, &missing_list, XX+ &missing_count, &def_string); XX+ if (missing_list) XX+ XFreeStringList (missing_list); XX+ /* Don't need to free def_string. */ XX+ XX+ return xfs; XX+} XX+ XX+/* Supported XIM styles, ordered in preferences. */ XX+static XIMStyle supported_styles[] = XX+{ XX+ XIMPreeditPosition | XIMStatusArea, XX+ XIMPreeditPosition | XIMStatusNothing, XX+ XIMPreeditPosition | XIMStatusNone, XX+ XIMPreeditNothing | XIMStatusArea, XX+ XIMPreeditNothing | XIMStatusNothing, XX+ XIMPreeditNothing | XIMStatusNone, XX+ XIMPreeditNone | XIMStatusArea, XX+ XIMPreeditNone | XIMStatusNothing, XX+ XIMPreeditNone | XIMStatusNone, XX+ 0, XX+}; XX+ XX+/* Choose the best style, given: XX+ * - user preferences (already checked to be supported by Emacs) XX+ * - styles supported by the input method */ XX+#define DEFAULTStyle (XIMPreeditNothing | XIMStatusNothing) XX+static XIMStyle XX+best_style (user, xim) XX+ XIMStyles *user; XX+ XIMStyles *xim; XX+{ XX+ int i, j; XX+ XX+ for (i = 0; i < user->count_styles; i++) XX+ { XX+ for (j = 0; j < xim->count_styles; j++) XX+ { XX+ if (user->supported_styles[i] == xim->supported_styles[j]) XX+ return user->supported_styles[i]; XX+ } XX+ } XX+ return DEFAULTStyle; /* Default Style */ XX+} XX+ XX+/* Create XIC for a frame. */ XX+void XX+xic_create_frame (f) XX+ struct frame *f; XX+{ XX+#ifndef X_I18N_INHIBITED XX+ XIM xim; XX+ XIC xic = NULL; XX+ XFontSet xfs = NULL; XX+ static XIMStyle xic_style; XX+ XX+ if (FRAME_XIC (f)) XX+ return; XX+ xim = FRAME_X_XIM (f); XX+ XX+ if (xim) XX+ { XX+ XRectangle s_area = {0, 0, 1, 1}; XX+ XPoint spot = {0, 1}; XX+ XVaNestedList preedit_attr; XX+ XVaNestedList status_attr; XX+ static const char DEFAULT_FONT[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*"; XX+ char *base_fontname; XX+ int fontset; XX+ XX+ /* Create X fontset. */ XX+ fontset = FRAME_FONTSET (f); XX+ if (fontset < 0) XX+ base_fontname = DEFAULT_FONT; XX+ else XX+ { XX+ struct fontset_info *fontsetp; XX+ int len = 0; XX+ int i; XX+ XX+ fontsetp = FRAME_FONTSET_DATA (f)->fontset_table[fontset]; XX+ for (i = 0; i <= MAX_CHARSET; i++) XX+ if (fontsetp->fontname[i]) XX+ len += strlen (fontsetp->fontname[i]) + 1; XX+ base_fontname = alloca (len); XX+ strcpy (base_fontname, fontsetp->fontname[CHARSET_ASCII]); XX+ for (i = MIN_CHARSET_OFFICIAL_DIMENSION1; i <= MAX_CHARSET; i++) XX+ if (fontsetp->fontname[i]) XX+ { XX+ strcat (base_fontname, ","); XX+ strcat (base_fontname, fontsetp->fontname[i]); XX+ } XX+ } XX+ xfs = xic_create_xfontset (f, base_fontname); XX+ XX+ /* Determine XIC style. */ XX+ if (xic_style == 0) XX+ { XX+ XIMStyles supported_list; XX+ supported_list.count_styles = sizeof (supported_styles) / sizeof (supported_styles[0]); XX+ supported_list.supported_styles = supported_styles; XX+ xic_style = best_style (&supported_list, FRAME_X_XIM_STYLES (f)); XX+ } XX+ XX+ preedit_attr = XVaCreateNestedList (0, XX+ XNFontSet, xfs, XX+ XNForeground, FRAME_FOREGROUND_PIXEL (f), XX+ XNBackground, FRAME_BACKGROUND_PIXEL (f), XX+ xic_style & XIMPreeditPosition ? XNSpotLocation : NULL, &spot, XX+ NULL); XX+ status_attr = XVaCreateNestedList (0, XX+ XNArea, &s_area, XX+ XNFontSet, xfs, XX+ XNForeground, FRAME_FOREGROUND_PIXEL (f), XX+ XNBackground, FRAME_BACKGROUND_PIXEL (f), XX+ NULL); XX+ XX+ xic = XCreateIC (xim, XX+ XNInputStyle, xic_style, XX+ XNClientWindow, FRAME_X_WINDOW(f), XX+ XNFocusWindow, FRAME_X_WINDOW(f), XX+ XNStatusAttributes, status_attr, XX+ XNPreeditAttributes, preedit_attr, XX+ NULL); XX+ XFree (preedit_attr); XX+ XFree (status_attr); XX+ } XX+ XX+ FRAME_XIC (f) = xic; XX+ FRAME_XIC_STYLE (f) = xic_style; XX+ FRAME_XIC_FONTSET (f) = xfs; XX+#else /* X_I18N_INHIBITED */ XX+ FRAME_XIC (f) = NULL; XX+ FRAME_XIC_STYLE (f) = 0; XX+ FRAME_XIC_FONTSET (f) = NULL; XX+#endif /* X_I18N_INHIBITED */ XX+} XX+ XX+/* Destroy XIC for a frame. */ XX+void XX+xic_destroy_frame (f) XX+ struct frame *f; XX+{ XX+ if (FRAME_XIC (f) == NULL) XX+ return; XX+ XX+ XDestroyIC (FRAME_XIC (f)); XX+ if (FRAME_XIC_FONTSET (f)) XX+ XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f)); XX+ XX+ FRAME_XIC (f) = NULL; XX+ FRAME_XIC_FONTSET (f) = NULL; XX+} XX+ XX+/* Place preedit area for XIC in cursor position. */ XX+void XX+xic_set_preeditarea (f, x, y) XX+ struct frame *f; XX+ int x, y; XX+{ XX+ XVaNestedList attr; XX+ XPoint spot; XX+ XX+ spot.x = CHAR_TO_PIXEL_COL (f, x); XX+ spot.y = CHAR_TO_PIXEL_ROW (f, y) + FONT_BASE (FRAME_FONT (f)); XX+ attr = XVaCreateNestedList (0, XX+ XNSpotLocation, &spot, XX+ NULL); XX+ XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL); XX+ XFree (attr); XX+} XX+ XX+/* Place status area for XIC in bottom right corner. */ XX+void XX+xic_set_statusarea (f) XX+ struct frame *f; XX+{ XX+ XIC xic = FRAME_XIC (f); XX+ XVaNestedList attr; XX+ XRectangle area; XX+ XRectangle *needed; XX+ XX+ /* Basically, I follow the way of XEmacs20.4. */ XX+ /* Negotiate geometry of status area. */ XX+ /* If input method has existing status area, use its current size */ XX+ area.x = area.y = area.width = area.height = 0; XX+ attr = XVaCreateNestedList (0, XNAreaNeeded, &area, NULL); XX+ XSetICValues (xic, XNStatusAttributes, attr, NULL); XX+ XFree (attr); XX+ XX+ attr = XVaCreateNestedList (0, XNAreaNeeded, &needed, NULL); XX+ XGetICValues (xic, XNStatusAttributes, attr, NULL); XX+ XFree (attr); XX+ XX+ if (needed->width == 0) /* Use XNArea instead of XNAreaNeeded */ XX+ { XX+ attr = XVaCreateNestedList (0, XNArea, &needed, NULL); XX+ XGetICValues (xic, XNStatusAttributes, attr, NULL); XX+ XFree (attr); XX+ } XX+ XX+ area.width = needed->width; XX+ area.height = needed->height; XX+ area.x = PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f); XX+ area.y = PIXEL_HEIGHT (f) - area.height - FRAME_MENUBAR_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f); XX+ XFree(needed); XX+ XX+ attr = XVaCreateNestedList (0, XNArea, &area, NULL); XX+ XSetICValues(xic, XNStatusAttributes, attr, NULL); XX+ XFree(attr); XX+} XX+ XX+/* Set X fontset for XIC, called when a new Emacs fontset is chosen. */ XX+void XX+xic_set_xfontset (f, base_fontname) XX+ struct frame *f; XX+ char *base_fontname; XX+{ XX+ XVaNestedList attr; XX+ XFontSet xfs; XX+ XX+ xfs = xic_create_xfontset (f, base_fontname); XX+ XX+ attr = XVaCreateNestedList (0, XNFontSet, xfs, NULL); XX+ if (FRAME_XIC_STYLE (f) & XIMPreeditPosition) XX+ XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL); XX+ if (FRAME_XIC_STYLE (f) & XIMStatusArea) XX+ XSetICValues (FRAME_XIC (f), XNStatusAttributes, attr, NULL); XX+ XFree (attr); XX+ XX+ if (FRAME_XIC_FONTSET (f)) XX+ XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f)); XX+ FRAME_XIC_FONTSET (f) = xfs; XX+} XX+#endif /* HAVE_X_I18N */ XX+ XX+ XX #ifdef USE_X_TOOLKIT XX XX /* Create and set up the X widget for frame F. */ XX@@ -2876,34 +3129,8 @@ XX XSetClassHint (FRAME_X_DISPLAY (f), XtWindow (shell_widget), &class_hints); XX XX #ifdef HAVE_X_I18N XX-#ifndef X_I18N_INHIBITED XX- { XX- XIM xim; XX- XIC xic = NULL; XX- XX- xim = XOpenIM (FRAME_X_DISPLAY (f), NULL, NULL, NULL); XX- XX- if (xim) XX- { XX- xic = XCreateIC (xim, XX- XNInputStyle, XIMPreeditNothing | XIMStatusNothing, XX- XNClientWindow, FRAME_X_WINDOW(f), XX- XNFocusWindow, FRAME_X_WINDOW(f), XX- NULL); XX- XX- if (xic == 0) XX- { XX- XCloseIM (xim); XX- xim = NULL; XX- } XX- } XX- FRAME_XIM (f) = xim; XX- FRAME_XIC (f) = xic; XX- } XX-#else /* X_I18N_INHIBITED */ XX- FRAME_XIM (f) = 0; XX- FRAME_XIC (f) = 0; XX-#endif /* X_I18N_INHIBITED */ XX+ FRAME_XIC (f) = NULL; XX+ xic_create_frame (f); XX #endif /* HAVE_X_I18N */ XX XX f->output_data.x->wm_hints.input = True; XX@@ -2928,6 +3155,16 @@ XX XX /* Make all the standard events reach the Emacs frame. */ XX attributes.event_mask = STANDARD_EVENT_SET; XX+#ifdef HAVE_X_I18N XX+ if (FRAME_XIC (f)) XX+ { XX+ /* XIM server might require some X events. */ XX+ unsigned long fevent = NoEventMask; XX+ XX+ XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL); XX+ attributes.event_mask |= fevent; XX+ } XX+#endif /* HAVE_X_I18N */ XX attribute_mask = CWEventMask; XX XChangeWindowAttributes (XtDisplay (shell_widget), XtWindow (shell_widget), XX attribute_mask, &attributes); XX@@ -2998,38 +3235,21 @@ XX InputOutput, /* class */ XX FRAME_X_DISPLAY_INFO (f)->visual, XX attribute_mask, &attributes); XX-#ifdef HAVE_X_I18N XX-#ifndef X_I18N_INHIBITED XX- { XX- XIM xim; XX- XIC xic = NULL; XX XX- xim = XOpenIM (FRAME_X_DISPLAY(f), NULL, NULL, NULL); XX- XX- if (xim) XX- { XX- xic = XCreateIC (xim, XX- XNInputStyle, XIMPreeditNothing | XIMStatusNothing, XX- XNClientWindow, FRAME_X_WINDOW(f), XX- XNFocusWindow, FRAME_X_WINDOW(f), XX- NULL); XX- XX- if (!xic) XX+#ifdef HAVE_X_I18N XX+ xic_create_frame (f); XX+ if (FRAME_XIC (f)) XX { XX- XCloseIM (xim); XX- xim = NULL; XX- } XX- } XX+ /* XIM server might require some X events. */ XX+ unsigned long fevent = NoEventMask; XX XX- FRAME_XIM (f) = xim; XX- FRAME_XIC (f) = xic; XX+ XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL); XX+ attributes.event_mask |= fevent; XX+ attribute_mask = CWEventMask; XX+ XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), XX+ attribute_mask, &attributes); XX } XX-#else /* X_I18N_INHIBITED */ XX- FRAME_XIM (f) = 0; XX- FRAME_XIC (f) = 0; XX-#endif /* X_I18N_INHIBITED */ XX #endif /* HAVE_X_I18N */ XX- XX validate_x_resource_name (); XX XX class_hints.res_name = (char *) XSTRING (Vx_resource_name)->data; XXdiff -Naurw emacs-20.7.orig/src/xterm.c emacs-20.7/src/xterm.c XX--- emacs-20.7.orig/src/xterm.c Mon Aug 2 09:16:43 1999 XX+++ emacs-20.7/src/xterm.c Wed Jul 12 23:28:40 2000 XX@@ -3791,9 +3791,6 @@ XX int prefix; XX Lisp_Object part; XX struct x_display_info *dpyinfo; XX-#ifdef HAVE_X_I18N XX- Status status_return; XX-#endif XX XX if (interrupt_input_blocked) XX { XX@@ -3862,7 +3859,7 @@ XX event.xclient.window); XX /* The necessity of the following line took me XX a full work-day to decipher from the docs!! */ XX- if (f1 != 0 && FRAME_XIC (f1) && XFilterEvent (&event, None)) XX+ if (XFilterEvent (&event, f1 ? FRAME_X_WINDOW(f1) : None)) XX break; XX } XX #endif XX@@ -4235,18 +4232,30 @@ XX #ifdef HAVE_X_I18N XX if (FRAME_XIC (f)) XX { XX- /* The necessity of the following line took me XX- a full work-day to decipher from the docs!! */ XX- if (XFilterEvent (&event, None)) XX- break; XX+ unsigned char *copy_bufptr = copy_buffer; XX+ int copy_bufsiz = sizeof (copy_buffer); XX+ Status status_return; XX+ XX+ nbytes = XmbLookupString (FRAME_XIC (f), XX+ &event.xkey, copy_bufptr, XX+ copy_bufsiz, &keysym, XX+ &status_return); XX+ if (status_return == XBufferOverflow) XX+ { XX+ copy_bufsiz = nbytes + 1; XX+ copy_bufptr = (char *) alloca (copy_bufsiz); XX nbytes = XmbLookupString (FRAME_XIC (f), XX- &event.xkey, copy_buffer, XX- 80, &keysym, XX+ &event.xkey, copy_bufptr, XX+ copy_bufsiz, &keysym, XX &status_return); XX+ } XX if (status_return == XLookupNone) XX break; XX else if (status_return == XLookupChars) XX+ { XX keysym = NoSymbol; XX+ modifiers = 0; XX+ } XX else if (status_return != XLookupKeySym XX && status_return != XLookupBoth) XX abort (); XX@@ -4378,7 +4387,10 @@ XX else XX abort (); XX } XX- goto OTHER; XX+ break; XX+ XX+ case KeyRelease: XX+ break; XX XX /* Here's a possible interpretation of the whole XX FocusIn-EnterNotify FocusOut-LeaveNotify mess. If you get a XX@@ -4515,6 +4527,13 @@ XX x_real_positions (f, &f->output_data.x->left_pos, XX &f->output_data.x->top_pos); XX XX+#ifdef HAVE_X_I18N XX+ if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea)) XX+ { XX+ xic_set_statusarea (f); XX+ } XX+#endif XX+ XX if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window) XX { XX /* Since the WM decorations come below top_pos now, XX@@ -4992,6 +5011,13 @@ XX /* Those are the only two we have implemented! */ XX abort (); XX XX+#ifdef HAVE_X_I18N XX+ if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition)) XX+ { XX+ xic_set_preeditarea (f, x, y); XX+ } XX+#endif XX+ XX UNBLOCK_INPUT; XX } XX XX@@ -5463,9 +5489,176 @@ XX FS_LOAD_FONT (f, FRAME_X_FONT_TABLE (f), XX CHARSET_ASCII, fontsetp->fontname[CHARSET_ASCII], fontset); XX XX+#ifdef HAVE_X_I18N XX+ if (FRAME_XIC (f) XX+ && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea))) XX+ { XX+ xic_set_xfontset (f, fontsetp->fontname[CHARSET_ASCII]); XX+ } XX+#endif /* HAVE_X_I18N */ XX return build_string (fontsetname); XX } XX XX+ XX+/* Support routines for XIM (X Input Method). */ XX+#ifdef HAVE_X_I18N XX+ XX+#ifdef HAVE_X11R6 XX+/* XIM destroy callback function, XX+ which is called whenever the connected XIM server dies. XX+ Clear XIM information. */ XX+static void XX+xim_destroy_callback (xim, client_data, call_data) XX+ XIM xim; XX+ XPointer client_data; XX+ XPointer call_data; XX+{ XX+ struct x_display_info *dpyinfo = (struct x_display_info *)client_data; XX+ Lisp_Object frame, tail; XX+ XX+ BLOCK_INPUT; XX+ /* Don't need to call XDestroyIC. */ XX+ FOR_EACH_FRAME (tail, frame) XX+ if (FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo) XX+ { XX+ FRAME_XIC (XFRAME (frame)) = NULL; XX+ if (FRAME_XIC_FONTSET (XFRAME (frame))) XX+ { XX+ XFreeFontSet (FRAME_X_DISPLAY (XFRAME (frame)), FRAME_XIC_FONTSET (XFRAME (frame))); XX+ FRAME_XIC_FONTSET (XFRAME (frame)) = NULL; XX+ } XX+ } XX+ XX+ /* Don't need to call XCloseIM. */ XX+ dpyinfo->xim = NULL; XX+ XFree (dpyinfo->xim_styles); XX+ UNBLOCK_INPUT; XX+} XX+#endif /* HAVE_X11R6 */ XX+ XX+/* Open the connection with XIM server. */ XX+static void XX+xim_open_dpy (dpyinfo, resource_name) XX+ struct x_display_info *dpyinfo; XX+ char *resource_name; XX+{ XX+ XIM xim; XX+ XX+ xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name, EMACS_CLASS); XX+ dpyinfo->xim = xim; XX+ XX+ if (xim) XX+ { XX+ XIMValuesList *xim_values_list; XX+#ifdef HAVE_X11R6 XX+ XIMCallback destroy; XX+#endif XX+ XX+ /* Get supported styles and XIM values */ XX+ XGetIMValues (xim, XX+ XNQueryInputStyle, &dpyinfo->xim_styles, XX+ NULL); XX+#ifdef HAVE_X11R6 XX+ destroy.callback = xim_destroy_callback; XX+ destroy.client_data = (XPointer)dpyinfo; XX+ XSetIMValues (xim, XNDestroyCallback, &destroy, NULL); XX+#endif XX+ } XX+} XX+ XX+#ifdef HAVE_X11R6 XX+struct xim_inst_t XX+{ XX+ struct x_display_info *dpyinfo; XX+ char *resource_name; XX+}; XX+ XX+/* XIM instantiate callback function, XX+ which is called whenever an XIM server is available. */ XX+static void XX+xim_instantiate_callback(display, client_data, call_data) XX+ Display *display; XX+ XPointer client_data; XX+ XPointer call_data; XX+{ XX+ struct xim_inst_t *xim_inst = (struct xim_inst_t *)client_data; XX+ struct x_display_info *dpyinfo = xim_inst->dpyinfo; XX+ XX+ /* We don't support multiple XIM connections. */ XX+ if (dpyinfo->xim) XX+ return; XX+ XX+ xim_open_dpy (dpyinfo, xim_inst->resource_name); XX+ XX+ /* Create XIC for the existing frames on the same display, XX+ as long as they have no XIC. */ XX+ if (dpyinfo->xim && dpyinfo->reference_count > 0) XX+ { XX+ Lisp_Object tail, frame; XX+ XX+ BLOCK_INPUT; XX+ FOR_EACH_FRAME (tail, frame) XX+ if (FRAME_X_DISPLAY_INFO (XFRAME (frame)) == xim_inst->dpyinfo) XX+ if (FRAME_XIC (XFRAME (frame)) == NULL) XX+ { XX+ xic_create_frame (XFRAME (frame)); XX+ if (FRAME_XIC_STYLE (XFRAME (frame)) & XIMStatusArea) XX+ xic_set_statusarea (XFRAME (frame)); XX+ if (FRAME_XIC_STYLE (XFRAME (frame)) & XIMPreeditPosition) XX+ xic_set_preeditarea (XFRAME (frame), XX+ FRAME_CURSOR_X (XFRAME (frame)), XX+ FRAME_CURSOR_Y (XFRAME (frame))); XX+ } XX+ UNBLOCK_INPUT; XX+ } XX+} XX+#endif /* HAVE_X11R6 */ XX+ XX+/* It's dependent on X11R5 or X11R6 to open the connection with XIM server. XX+ On X11R5, open the connection only at the first time. XX+ On X11R6, open the connection in XIM instantiate callback function. */ XX+static void XX+xim_initialize (dpyinfo, resource_name) XX+ struct x_display_info *dpyinfo; XX+ char *resource_name; XX+{ XX+#ifdef HAVE_X11R6 XX+ struct xim_inst_t *xim_inst; XX+ int len; XX+ XX+ dpyinfo->xim = NULL; XX+ xim_inst = (struct xim_inst_t *) xmalloc (sizeof (struct xim_inst_t)); XX+ xim_inst->dpyinfo = dpyinfo; XX+ len = strlen (resource_name); XX+ xim_inst->resource_name = (char *) xmalloc (len + 1); XX+ bcopy (resource_name, xim_inst->resource_name, len + 1); XX+ XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb, XX+ resource_name, EMACS_CLASS, XX+ xim_instantiate_callback, (XPointer)xim_inst); XX+#else /* not HAVE_X11R6 */ XX+ dpyinfo->xim = NULL; XX+ xim_open_dpy (dpyinfo, resource_name); XX+#endif /* not HAVE_X11R6 */ XX+} XX+ XX+/* Close the connection with XIM server. */ XX+static void XX+xim_close_dpy (dpyinfo) XX+ struct x_display_info *dpyinfo; XX+{ XX+#ifdef HAVE_X11R6 XX+ XUnregisterIMInstantiateCallback(dpyinfo->display, dpyinfo->xrdb, XX+ NULL, EMACS_CLASS, XX+ xim_instantiate_callback, NULL); XX+#endif /* HAVE_X11R6 */ XX+ XCloseIM (dpyinfo->xim); XX+ dpyinfo->xim = NULL; XX+ XX+ XFree (dpyinfo->xim_styles); XX+} XX+#endif /* HAVE_X_I18N */ XX+ XX+ XX /* Calculate the absolute position in frame F XX from its current recorded position values and gravity. */ XX XX@@ -6175,15 +6368,9 @@ XX if (f->output_data.x->icon_desc != 0) XX XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc); XX #ifdef HAVE_X_I18N XX- if (FRAME_XIM (f)) XX+ if (FRAME_XIC (f)) XX { XX- XDestroyIC (FRAME_XIC (f)); XX-#if ! defined (SOLARIS2) || defined (HAVE_X11R6) XX- /* This line causes crashes on Solaris with Openwin, XX- due to an apparent bug in XCloseIM. XX- X11R6 seems not to have the bug. */ XX- XCloseIM (FRAME_XIM (f)); XX-#endif XX+ xic_destroy_frame (f); XX } XX #endif XX XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->window_desc); XX@@ -7335,6 +7522,10 @@ XX 1); XX } XX XX+#ifdef HAVE_X_I18N XX+ xim_initialize (dpyinfo, resource_name); XX+#endif XX+ XX #ifdef subprocesses XX /* This is only needed for distinguishing keyboard and process input. */ XX if (connection != 0) XX@@ -7440,6 +7631,11 @@ XX if (--dpyinfo->kboard->reference_count == 0) XX delete_kboard (dpyinfo->kboard); XX #endif XX+#ifdef HAVE_X_I18N XX+ if (dpyinfo->xim) XX+ xim_close_dpy (dpyinfo); XX+#endif XX+ XX xfree (dpyinfo->font_table); XX xfree (dpyinfo->x_id_name); XX xfree (dpyinfo); XXdiff -Naurw emacs-20.7.orig/src/xterm.h emacs-20.7/src/xterm.h XX--- emacs-20.7.orig/src/xterm.h Sun Aug 16 07:58:10 1998 XX+++ emacs-20.7/src/xterm.h Sat Jun 17 00:18:37 2000 XX@@ -297,6 +297,12 @@ XX /* The null pixel used for filling a character background with XX background color of a gc. */ XX Pixmap null_pixel; XX+ XX+#ifdef HAVE_X_I18N XX+ /* XIM(X Input method) */ XX+ XIM xim; XX+ XIMStyles *xim_styles; XX+#endif XX }; XX XX /* This is a chain of structures for all the X displays currently in use. */ XX@@ -492,10 +498,11 @@ XX char has_been_visible; XX XX #ifdef HAVE_X_I18N XX- /* Input method. */ XX- XIM xim; XX+ /* XIM(X Input method) */ XX /* Input context (currently, this means Compose key handler setup). */ XX XIC xic; XX+ XIMStyle xic_style; XX+ XFontSet xic_xfs; XX #endif XX }; XX XX@@ -526,6 +533,7 @@ XX #define FRAME_FONT(f) ((f)->output_data.x->font) XX #define FRAME_FONTSET(f) ((f)->output_data.x->fontset) XX #define FRAME_INTERNAL_BORDER_WIDTH(f) ((f)->output_data.x->internal_border_width) XX+#define FRAME_MENUBAR_HEIGHT(f) ((f)->output_data.x->menubar_height) XX #define FRAME_LINE_HEIGHT(f) ((f)->output_data.x->line_height) XX XX /* This gives the x_display_info structure for the display F is on. */ XX@@ -546,8 +554,11 @@ XX XX #define FRAME_DESIRED_CURSOR(f) ((f)->output_data.x->desired_cursor) XX XX-#define FRAME_XIM(f) ((f)->output_data.x->xim) XX+#define FRAME_X_XIM(f) (FRAME_X_DISPLAY_INFO (f)->xim) XX+#define FRAME_X_XIM_STYLES(f) (FRAME_X_DISPLAY_INFO (f)->xim_styles) XX #define FRAME_XIC(f) ((f)->output_data.x->xic) XX+#define FRAME_XIC_STYLE(f) ((f)->output_data.x->xic_style) XX+#define FRAME_XIC_FONTSET(f) ((f)->output_data.x->xic_xfs) XX XX /* X-specific scroll bar stuff. */ XX XX@@ -877,6 +888,11 @@ XX extern void x_set_border_pixel P_ ((struct frame *, int)); XX extern void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); XX extern void x_implicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object)); XX+extern void xic_create_frame P_ ((struct frame *)); XX+extern void xic_destroy_frame P_ ((struct frame *)); XX+extern void xic_set_preeditarea P_ ((struct frame *, int, int)); XX+extern void xic_set_statusarea P_ ((struct frame *)); XX+extern void xic_set_xfontset P_ ((struct frame *, char *)); XX extern int x_pixel_width P_ ((struct frame *)); XX extern int x_pixel_height P_ ((struct frame *)); XX extern int x_char_width P_ ((struct frame *)); XEND-of-files/emacs20-xim-20000713.diff Xecho x - files/dot.emacs Xsed 's/^X//' >files/dot.emacs << 'END-of-files/dot.emacs' XX;; Set environment to Chinese-Big5 XX(set-language-environment 'chinese-big5) XX(set-keyboard-coding-system 'chinese-big5) XX(set-terminal-coding-system 'chinese-big5) XX(set-buffer-file-coding-system 'chinese-big5) XX(set-selection-coding-system 'chinese-big5) XX(modify-coding-system-alist 'process "*" 'chinese-big5) XX;; Do not conflicts with xcin hook XX(global-set-key (kbd "M-SPC") 'set-mark-command) XEND-of-files/dot.emacs Xexit X END-of-emacs20/shar 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 Nov 30 12:58:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id A5D8E37B401; Thu, 30 Nov 2000 12:58:44 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 26876C9B9; Thu, 30 Nov 2000 15:58:44 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 9B4652E443; Thu, 30 Nov 2000 15:58:43 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eAUKwhb74508; Thu, 30 Nov 2000 15:58:43 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14886.49027.287879.699821@onceler.kciLink.com> Date: Thu, 30 Nov 2000 15:58:43 -0500 To: kevlo@FreeBSD.org Cc: ports@freebsd.org Subject: kdeeject patch X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The kde2 program kdeeject is called with a full device name from the eject menu for a CDROM device type. This doesn't work with freebsd's eject program. The following patch hacks up the device to the form that seems acceptable to eject. Alternatively, the eject program could be updated. --- kdeeject.dist Thu Nov 30 15:54:48 2000 +++ kdeeject Thu Nov 30 15:57:45 2000 @@ -8,7 +8,8 @@ # kmessage, to show a message box in case of error. # if [ $# = 1 -a "$1" != "--help" ]; then - if eject $1; then + dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'` + if eject $dev; then # Success -> update icon dcop kdesktop default refreshIcons exit 0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 13:56:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 60DF837B402; Thu, 30 Nov 2000 13:56:19 -0800 (PST) Received: by puck.firepipe.net (Postfix, from userid 1000) id F2F7D1AC4; Thu, 30 Nov 2000 16:56:18 -0500 (EST) Date: Thu, 30 Nov 2000 16:56:18 -0500 From: Will Andrews To: Satoshi - Ports Wraith - Asami Cc: Greg Lehey , ports@FreeBSD.ORG Subject: Re: Missing dependency in comms/hylafax Message-ID: <20001130165618.V559@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Satoshi - Ports Wraith - Asami , Greg Lehey , ports@FreeBSD.ORG References: <20001118132343.B70679@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@FreeBSD.ORG on Mon, Nov 20, 2000 at 12:06:16AM -0800 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Nov 20, 2000 at 12:06:16AM -0800, Satoshi - Ports Wraith - Asami wrote: > The proper "fix" is to add a script that checks for the existence of > gs and tell users to install the version they want. No, I think the proper fix would be to put something in bsd.port.mk a la bsd.python.mk, bsd.gnome.mk, etc. Whee, bsd.gs.mk here we come! -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 14: 0: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7426937B404 for ; Thu, 30 Nov 2000 14:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eAUM03692653; Thu, 30 Nov 2000 14:00:03 -0800 (PST) (envelope-from gnats) Received: from ozz.freebsd.org.ru (ozz.etrust.ru [194.84.67.11]) by hub.freebsd.org (Postfix) with ESMTP id 8C68F37B400 for ; Thu, 30 Nov 2000 13:54:37 -0800 (PST) Received: (from osa@localhost) by ozz.freebsd.org.ru (8.11.1/8.11.1) id eAULsXK10299; Fri, 1 Dec 2000 00:54:33 +0300 (MSK) (envelope-from osa) Message-Id: <200011302154.eAULsXK10299@ozz.freebsd.org.ru> Date: Fri, 1 Dec 2000 00:54:33 +0300 (MSK) From: osa@FreeBSD.org.ru Reply-To: osa@FreeBSD.org.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23199: upgrade databases/gigabases from 2.20 to 2.21 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23199 >Category: ports >Synopsis: upgrade databases/gigabases from 2.20 to 2.21 (by maintainer) >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: Thu Nov 30 14:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Sergey Osokin >Release: FreeBSD 5.0-CURRENT i386 >Organization: Russian FreeBSD Team >Environment: System: FreeBSD oZZ.FreeBSD.ORG.ru 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Nov 30 19:29:32 MSK 2000 root@oZZ.FreeBSD.ORG.ru:/usr/src/sys/compile/SONIC i386 >Description: upgrade databases/gigabases from 2.20 to 2.21 (by maintainer) >How-To-Repeat: >Fix: diff -ruN gigabase.old/Makefile gigabase/Makefile --- gigabase.old/Makefile Fri Dec 1 00:39:15 2000 +++ gigabase/Makefile Fri Dec 1 00:39:24 2000 @@ -6,7 +6,7 @@ # PORTNAME= gigabase -PORTVERSION= 2.20 +PORTVERSION= 2.21 CATEGORIES= databases MASTER_SITES= http://www.ispras.ru/~knizhnik/ diff -ruN gigabase.old/distinfo gigabase/distinfo --- gigabase.old/distinfo Fri Dec 1 00:39:15 2000 +++ gigabase/distinfo Fri Dec 1 00:43:07 2000 @@ -1 +1 @@ -MD5 (gigabase-2.20.tar.gz) = d1f79c23be3261c483d44808821ba323 +MD5 (gigabase-2.21.tar.gz) = bec754d4c3f7e5ae6d8b555bf07c3cdb >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 Nov 30 14:54:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from brockman.tinet.ie (brockman.tinet.ie [159.134.237.30]) by hub.freebsd.org (Postfix) with ESMTP id 76E5C37B400 for ; Thu, 30 Nov 2000 14:54:50 -0800 (PST) Received: from p679.as1.cra.dublin.eircom.net ([159.134.178.167] helo=[10.0.1.3]) by brockman.tinet.ie with esmtp (Exim 2.05 #23) id 141cbF-0001cC-00 for ports@freebsd.org; Thu, 30 Nov 2000 22:54:45 +0000 User-Agent: Microsoft Outlook Express Macintosh Edition - 5.01 (1630) Date: Thu, 30 Nov 2000 22:54:40 +0000 Subject: Ethereal From: Mike Brady To: Message-ID: Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Excuse the silly question please. Has anyone ported Ethereal to Mac OS X, perchance? Best regards Mike Brady To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 15:45:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 33B8F37B400 for ; Thu, 30 Nov 2000 15:45:54 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.0/8.11.0) with ESMTP id eAUNjqQ75120 for ; Thu, 30 Nov 2000 16:45:53 -0700 (MST) (envelope-from imp@harmony.village.org) Received: (from imp@localhost) by harmony.village.org (8.9.3/8.8.3) id QAA32531 for ports@freebsd.org; Thu, 30 Nov 2000 16:45:52 -0700 (MST) Date: Thu, 30 Nov 2000 16:45:52 -0700 (MST) From: Warner Losh Message-Id: <200011302345.QAA32531@harmony.village.org> To: ports@freebsd.org Subject: P5-SNMP Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anybdoy build p5-SNMP lately? When I build it on -current, I get lots of undefines for sv_undef and other things. When I build it on -stable, it works. One difference I've noticed is that -current is at perl 5.6 while -stable is at 5.5. Maybe that's why? Other ideas? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 16:45: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp2.mail.yahoo.com (smtp2.mail.yahoo.com [128.11.68.32]) by hub.freebsd.org (Postfix) with SMTP id 2E19A37B401 for ; Thu, 30 Nov 2000 16:44:57 -0800 (PST) Received: from unknown (HELO yahoo.com) (209.211.220.23) by smtp.mail.vip.suc.yahoo.com with SMTP; 1 Dec 2000 00:00:03 -0000 X-Apparently-From: Message-ID: <3A26E9FE.B8D330F5@yahoo.com> Date: Thu, 30 Nov 2000 18:59:58 -0500 From: ahgu Reply-To: ahgu@yahoo.com X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, zh-CN MIME-Version: 1.0 To: trevor@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: bsdi-netscape47-navigator-4.76 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org When will the new bsdi-netscape version come out? thanks Andrew __________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 17:50: 6 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2170C37B401 for ; Thu, 30 Nov 2000 17:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB11o1863662; Thu, 30 Nov 2000 17:50: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 84DEB37B400 for ; Thu, 30 Nov 2000 17:44:28 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB11iS262319; Thu, 30 Nov 2000 17:44:28 -0800 (PST) (envelope-from nobody) Message-Id: <200012010144.eB11iS262319@freefall.freebsd.org> Date: Thu, 30 Nov 2000 17:44:28 -0800 (PST) From: jay@avacet.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23201: rxvt-devel port does not include scrollbars Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23201 >Category: ports >Synopsis: rxvt-devel port does not include scrollbars >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: Thu Nov 30 17:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jay Sachs >Release: FreeBSD 4.2-STABLE i386 >Organization: Avacet, Inc. >Environment: FreeBSD luddite.org 4.2-STABLE FreeBSD 4.2-STABLE #0: Sun Nov 26 08:11:28 EST 2000 root@luddite.org:/usr/obj/usr/src/sys/LUDDITE i386 >Description: rxvt-devel port doesn't include "--enable-rxvt-scroll" (or any scrollbar) in CONFIGURE_ARGS. Scrollbar is pretty much expected in an xterm-workalike. Possibly menubar as well. >How-To-Repeat: cd /usr/ports/x11/rxvt-devel make make install >Fix: Add --enable-rxvt-scroll --enable-menubar to CONFIGURE_ARGS in /usr/ports/x11/rxvt-devel/Makefile >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 Nov 30 19: 0: 6 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 38F1B37B400 for ; Thu, 30 Nov 2000 19:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1303L83864; Thu, 30 Nov 2000 19:00:03 -0800 (PST) (envelope-from gnats) Date: Thu, 30 Nov 2000 19:00:03 -0800 (PST) Message-Id: <200012010300.eB1303L83864@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Mario Sergio Fujikawa Ferreira" Subject: Re: ports/23201: rxvt-devel port does not include scrollbars Reply-To: "Mario Sergio Fujikawa Ferreira" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23201; it has been noted by GNATS. From: "Mario Sergio Fujikawa Ferreira" To: jay@avacet.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/23201: rxvt-devel port does not include scrollbars Date: Fri, 1 Dec 2000 00:55:42 -0200 On Thu, Nov 30, 2000 at 05:44:06PM -0800, jay@avacet.com wrote: > >Description: > rxvt-devel port doesn't include "--enable-rxvt-scroll" (or any scrollbar) in CONFIGURE_ARGS. > Scrollbar is pretty much expected in an xterm-workalike. > Possibly menubar as well. Unfortunaly, I disagree. It is a bikeshed discussion. I can add both WITH_SCROLLBAR and WITH_MENUBAR build time options. This way, whoever wants it can get it without having to touch the Makefile. Is that a good compromise? :) -- Mario S F Ferreira - UnB - Brazil - "I guess this is a signature." lioux at ( freebsd dot org | linf dot unb dot br ) flames to beloved devnull@someotherworldbeloworabove.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 20:35:47 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 537FE37B400; Thu, 30 Nov 2000 20:35:46 -0800 (PST) Received: (from keith@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB14ZeD11128; Thu, 30 Nov 2000 20:35:40 -0800 (PST) (envelope-from keith) Date: Thu, 30 Nov 2000 20:35:40 -0800 (PST) From: Message-Id: <200012010435.eB14ZeD11128@freefall.freebsd.org> To: clive@CirX.ORG, keith@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23197: port update: chinese/big5con - make bento happy after machine/console.h split Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port update: chinese/big5con - make bento happy after machine/console.h split State-Changed-From-To: open->closed State-Changed-By: keith State-Changed-When: Thu Nov 30 20:29:48 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23197 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 20:36:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from luqmanbsdx.mimos.my (luqmanbsdx.mimos.my [192.228.129.225]) by hub.freebsd.org (Postfix) with ESMTP id 69ECA37B400 for ; Thu, 30 Nov 2000 20:36:09 -0800 (PST) Received: (from luqman@localhost) by luqmanbsdx.mimos.my (8.11.1/8.9.3) id eB14dLT38988 for ports@FreeBSD.org; Fri, 1 Dec 2000 12:39:21 +0800 (MYT) (envelope-from luqman) Date: Fri, 1 Dec 2000 12:39:21 +0800 (MYT) From: Luqman Hakim Mohd Nor Message-Id: <200012010439.eB14dLT38988@luqmanbsdx.mimos.my> To: ports@FreeBSD.org Subject: fetching sources Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Port: linux-netscape-6 Path: /usr/ports/www/linux-netscape6 Info: Linux Netscape Communicator suite Maint: ports@FreeBSD.org Index: www linux B-deps: XFree86-3.3.6_4 R-deps: XFree86-3.3.6_4 linux-gtk-1.2 linux-jpeg-6b.9 linux_base-6.1 [root@bsdx ports]# cd /usr/ports/www/linux-netscape6 [root@bsdx linux-netscape6]# make install >> netscape-v600pr1.x86-unknown-linux2.2.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://ftp.netscape.com/pub/netscape6/english/6_PR1/unix/linux22/. fetch: netscape-v600pr1.x86-unknown-linux2.2.tar.gz: File unavailable (e.g., file not found, no access) -- I checked on the netscape ftp site, there is no such 6_PR1 folder today. I just wanna let ya'all know. Sorry if you guys already knew about it. TQ. Regards, Luke To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 20:59:14 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AE5837B400; Thu, 30 Nov 2000 20:59:13 -0800 (PST) Received: (from keith@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB14xDB16412; Thu, 30 Nov 2000 20:59:13 -0800 (PST) (envelope-from keith) Date: Thu, 30 Nov 2000 20:59:13 -0800 (PST) From: Message-Id: <200012010459.eB14xDB16412@freefall.freebsd.org> To: clive@CirX.ORG, keith@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23198: New port: chinese/emacs20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: chinese/emacs20 State-Changed-From-To: open->closed State-Changed-By: keith State-Changed-When: Thu Nov 30 20:57:53 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23198 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 21:33:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from goliath.cnchost.com (goliath.cnchost.com [207.155.252.47]) by hub.freebsd.org (Postfix) with ESMTP id DD39737B400; Thu, 30 Nov 2000 21:33:13 -0800 (PST) Received: from mercury (h63.217.elnet.msk.ru [194.190.217.63] (may be forged)) by goliath.cnchost.com id SAA17737; Tue, 28 Nov 2000 18:02:09 -0500 (EST) [ConcentricHost SMTP Relay 1.10] From: webmaster@databasefirm.ac To: Óâàæàåìûå@FreeBSD.ORG, @Ãîñïîäà.FreeBSD.ORG Subject: Áàçû äàííûõ îðãàíèçàöèé Ìîñêâû è Ðîññèè Date: Wed, 29 Nov 2000 03:08:31 +0300 Message-Id: <36859.130920949071900.290@localhost> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary=alneegcjgjkerbns Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --alneegcjgjkerbns Content-Type: text/plain; charset=windows-1251 Content-Transfer-Encoding: 8bit ÓÂÀÆÀÅÌÛÅ ÃÎÑÏÎÄÀ! 1. Ïðåäëàãàåì Âàì ïðèîáðåñòè áàçó, ñîñòîÿùóþ èç 48000 ýëåêòðîííûõ àäðåñîâ ôèðì,îðãàíèçàöèé, ó÷ðåæäåíèé Ðîññèéñêîé Ôåäåðàöèè. Áàçà ñîçäàíà â ðåçóëüòàòå êðîïîòëèâîé ðàáîòû ñ áîëåå ÷åì 18 ñïðàâî÷íèêàìè. Ñòîèìîñòü áàçû 2000 ðóá. (âêëþ÷àÿ ïðîôåññèîíàëüíóþ ïðîãðàììó äëÿ Âàøåé ðàññûëêè è ïðîãðàììó äëÿ ïîècêà àäðåñîâ â ñåòè Èíòåðíåò ). À òàêæå: Áàçó äàííûõ 25.000 îðãàíèçàöèé Ìîñêâû. Êðîìå ýëåêòðîííîãî àäðåñà ïî êàæäîé êîìïàíèè èìååòñÿ: íàçâàíèå, ðîä äåÿòåëüíîñòè (!), òåëåôîíû, ôàêñ, ïî÷òîâûé àäðåñ, àäðåñ ñàéòà. Áàçà ïðåäñòàâëåíà â âèäå ñòàíäàðòíîé òàáëèöû Excel, ÷òî ïîçîëÿåò ðàáîòàòü ñ íåþ ïîëüçîâàòåëþ ñ ëþáûì óðîâíåì çíàíèÿ êîìïüþòåðà, è äàåò âîçìîæíîñòü ñîðòèðîâêè ñòðîê ïî ëþáîìó èç ïàðàìåòðîâ, íàïðèìåð, ïî ðîäó äåÿòåëüíîñòè.  áàçó âîøëè âñå êîìïàíèè, êîòîðûå ïóáëèêóþò ñâîé e-mail â ðàçëè÷íûõ áèçíåñ-ñïðàâî÷íèêàõ ïî Ìîñêâå. Îáíîâëåíèå áàçû ïðîèñõîäèò êàæäûé êâàðòàë. Ñòîèìîñòü áàçû 200 $  ñòîèìîñòü âõîäèò óñòàíîâêà, íàñòðîéêà, îáó÷åíèå. Îäíàêî, Âàì âîâñå íå îáÿçàòåëüíî òðàòèòü 200 ó.å., ò.ê. Âû ìîæåòå: Êóïèòü ñîôò-êîìïëåêò "Mini", ñòîèìîñòüþ 100 ó.å., âêëþ÷àþùèé â ñåáÿ ñïèñîê ýëåêòðîííûõ àäðåñîâ îðãàíèçàöèé Ìîñêâû è ôèðìû, ê êîòîðûì îíè ïðèíàäëåæàò,ñ âèäàìè äåÿòåëüíîñòè(áåç ïî÷òîâûõ àäðåñîâ, àäðåñîâ â ñåòè, òåëåôîíîâ è ôàêñîâ,cîîòâåòñòâåííî îñòà¸òñÿ íèìåíîâàíèå ïðåäïðèÿòèÿ, âèä äåÿòåëüíîñòè è ýëåêòðîííûé àäðåñ) è ïðîãðàììó äëÿ ðàññûëêè òåêñòîâûõ ñîîáùåíèé; Êóïèòü òîëüêî ïðîãðàììó AYMail çà 25 ó.å. è èñïîëüçîâàòü åå äëÿ ðàññûëîê ïî ñâîèì áàçàì; Êóïèòü òîëüêî ÷àñòü áàçû, â êîòîðóþ âêëþ÷åíû èíòåðåñóþùèå Âàñ îðãàíèçàöèè; Çàêàçàòü ó íàñ ðàññûëêó Âàøåãî ïðåäëîæåíèÿ ïî âñåé áàçå èëè òîëüêî ïî îðãàíèçàöèÿì èíòåðåñóþùåãî ñåãìåíòà ðûíêà; Ïîäãîòîâêà áàçû èíòåðåñóþùèõ îðãàíèçàöèé äëÿ ïîêóïêè èëè ðàññûëêè îñóùåñòâëÿåòñÿ ñëåäóþùèì îáðàçîì.  îòâåò íà ïðèñëàííóþ Âàìè çàÿâêó â ïðîèçâîëüíîé ôîðìå Âàì (áåñïëàòíî) âûñûëàåòñÿ äåìî-âåðñèÿ áàçû (WinZip 250Kb). Äåìî-âåðñèÿ - ýòî ñïèñîê îðãàíèçàöèé ñ óêàçàíèåì ðîäà äåÿòåëüíîñòè. Îò íåå Âû "îòñåêàåòå âñå ëèøíåå" è äàííûé ñâîé âàðèàíò ïðèñûëàåòå íàì. Èç íåãî ìû ãîòîâèì Âàøó áàçó, äîïîëíÿÿ ïîëó÷èâøèéñÿ ñïèñîê èíôîðìàöèåé î êàæäîé îðãàíèçàöèè (e-mail, òåëåôîíû è ò.ä.), èëè ãîòîâèì mail-list äëÿ Âàøåé ðàññûëêè. Òàêæå ïðîèçâîäèì ðàññûëêó ïî âûáðàííûì Âàìè àäðåñàì (0.04$ çà êàæäûé àäðåñ ïëþñ 20 ó.å. çà ôîðìèðîâàíèå mail-ëèñòà 2. Ôàêñ-áàçà " Âñÿ äåëîâàÿ Ìîñêâà " Áàçà ñîäåðæèò 45000 ôàêñ-íîìåðîâ ôèðì Ìîñêâû è Ìîñêîâñêîé îáëàñòè (ìîñêîâñêèå íîìåðà) è ñîñòîèò èç 83 òåìàòè÷åñêèõ ðàçäåëîâ. Âûñîêàÿ àêòóàëüíîñòü èíôîðìàöèè îáåñïå÷èâàåòñÿ çà ñ÷åò ïîñòîÿííîé ïðîâåðêè è äîáàâëåíèÿ íîâûõ íîìåðîâ èç ðàçëè÷íûõ èñòî÷íèêîâ. Ôàêñ-áàçà ïðåäíàçíà÷åíà äëÿ èñïîëüçîâàíèÿ â ïðîãðàììàõ àâòîìàòè÷åñ- êîé ôàêñ-ðàññûëêè, ïîñòàâëÿåòñÿ â ôîðìàòå *.txt (òåêñò ñ ðàçäåëèòåëåì tab), ìîæåò áûòü îáðàáîòàíà ñòàíäàðòíûìè ñðåäñòâàìè ïàêåòà "MsOffice" ("MsWord", "MsExcel", "MsAccess") è âêëþ÷àåò òðè ïîëÿ: íàçâàíèå ôèðìû; íîìåð ôàêñà; âèä äåÿòåëüíîñòè. Ïëàíèðóåòñÿ ïåðåèçäàíèå áàçû äàííûõ êàæäûå ïîëãîäà ñ íåîáõîäèìûìè èçìåíåíèÿìè è äîïîëíåíèÿìè. Îáíîâëåíèå ôàêñ-áàçû çà 50 % ñòîèìîñòè. Ñòîèìîñòü ôàêñ-áàçû " Âñÿ äåëîâàÿ Ìîñêâà " - 2000 ðóáëåé Áåñïëàòíàÿ äîñòàâêà ïðè íàëè÷íîé îïëàòå(Ìîñêâà) tel.095 7502200 email:databases@rambler.ru ÇÀÎ "Mercury" --alneegcjgjkerbns Content-Type: text/plain; name="Áàçû Äàííûõ!.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="Áàçû Äàííûõ!.txt" DQogICAgICAgICAgICAg08LAxsDFzNvFIMPO0c/OxMAhDQoNCiAgMS4gz/Dl5Ovg 4+Dl7CDC4Owg7/Do7uHw5fHy6CDh4OfzLCDx7vHy7v/58/4g6OcgNDgwMDANCiAg /evl6vLw7u3t+/Ug4OTw5fHu4iD06PDsLO7w4+Dt6Ofg9ujpLCDz9/Dl5uTl7ejp INDu8fHo6fHq7ukgICAgINTl5OXw4Pbo6C4gweDn4CDx7ufk4O3gIOIg8OXn8+v8 8uDy5Q0KICDq8O7v7vLr6OLu6SDw4OHu8vsg8SDh7uvl5SD35ewgMTgg8e/w4OLu 9+3o6uDs6C4NCiAgICAg0fLu6Ozu8fL8IOHg5/sgMjAwMCDw8+EuICji6uv+9+D/ IO/w7vTl8fHo7u3g6/zt8/4NCiAg7/Du4/Dg7OzzIOTr/yDC4Pjl6SDw4PHx++vq 6CDoIO/w7uPw4Ozs8yDk6/8g7+7oY+rgDQogIODk8OXx7uIg4iDx5fLoIMjt8uXw 7eXyICkuICAgDQoNCiAgICDAIPLg6ublOg0KweDn8yDk4O3t+/UgMjUuMDAwIO7w 4+Dt6Ofg9ujpIMzu8eri+y4gyvDu7OUg/evl6vLw7u3t7uPuIODk8OXx4CDv7iDq 4Obk7ukg6u7s7+Dt6Ogg6Ozl5fLx/zog7eDn4uDt6OUsIPDu5CDk5f/y5ev87e7x 8uggKCEpLCDy5evl9O7t+ywg9ODq8Swg7+738u7i++kg4OTw5fEsIODk8OXxIPHg 6fLgLiDB4OfgIO/w5eTx8uDi6+Xt4CDiIOLo5OUg8fLg7eTg8PLt7ukg8uDh6+j2 +yBFeGNlbCwg9/LuIO/u5+7r/+XyIPDg4e7y4PL8IPEg7eX+IO/u6/zn7uLg8uXr /iDxIOv+4fvsIPPw7uLt5ewg5+3g7ej/IOru7O/8/vLl8OAsIOgg5ODl8iDi7ufs 7ubt7vHy/CDx7vDy6PDu4uroIPHy8O7qIO/uIOv+4e7s8yDo5yDv4PDg7OXy8O7i LCDt4O/w6Ozl8Cwg7+4g8O7k8yDk5f/y5ev87e7x8uguIMIg4eDn8yDi7vjr6CDi 8eUg6u7s7+Dt6OgsIOru8u7w++Ug7/Ph6+jq8/7yIPHi7ukgZS1tYWlsIOIg8ODn 6+j37fv1IOHo5+3l8S3x7/Dg4u737ejq4PUg7+4gzO7x6uLlLiDO4e3u4uvl7ejl IOHg5/sg7/Du6PH17uTo8iDq4Obk++kg6uLg8PLg6y4gDQrR8u7o7O7x8vwg4eDn +yAyMDAgJA0KwiDx8u7o7O7x8vwg4vXu5OjyIPPx8uDt7uLq4Cwg7eDx8vDu6erg LCDu4fP35e3o5S4gDQrO5O3g6u4sIMLg7CDi7uLx5SDt5SDu4f/n4PLl6/zt7iDy 8ODy6PL8IDIwMCDzLuUuLCDyLuouIML7IOzu5uXy5ToNCg0KyvPv6PL8IPHu9PIt 6u7s7+vl6vIgIk1pbmkiLCDx8u7o7O7x8vz+IDEwMCDzLuUuLCDi6uv+9+D++ejp IOIg8eXh/yAg8e/o8e7qIP3r5ery8O7t7fv1IODk8OXx7uIg7vDj4O3o5+D26Okg zO7x6uL7IOgg9Ojw7PssIOog6u7y7vD77CDu7egg7/Do7eDk6+Xm4PIs8SDi6OTg 7Ogg5OX/8uXr/O3u8fLoKOHl5yDv7vfy7uL79SDg5PDl8e7iLCDg5PDl8e7iIOIg 8eXy6Cwg8uXr5fTu7e7iIOgg9ODq8e7iLGPu7vLi5fLx8uLl7e3uIO7x8uC48vH/ IO3o7OXt7uLg7ejlIO/w5eTv8Oj/8uj/LCDi6OQg5OX/8uXr/O3u8fLoIOgg/evl 6vLw7u3t++kg4OTw5fEpIOgg7/Du4/Dg7OzzIOTr/yDw4PHx++vq6CDy5erx8u7i +/Ug8e7u4fnl7ejpOyANCg0KyvPv6PL8IPLu6/zq7iDv8O7j8ODs7PMgQVlNYWls IOfgIDI1IPMu5S4g6CDo8e/u6/zn7uLg8vwg5eUg5Ov/IPDg8fH76+7qIO/uIPHi 7ujsIOHg5+DsOw0KIA0KyvPv6PL8IPLu6/zq7iD34PHy/CDh4Of7LCDiIOru8u7w 8/4g4urr/vfl7fsg6O3y5fDl8fP++ejlIMLg8SDu8OPg7ejn4Pbo6DsgDQoNCsfg 6uDn4PL8IPMg7eDxIPDg8fH76+rzIMLg+OXj7iDv8OXk6+7m5e3o/yDv7iDi8eXp IOHg5+Ug6OvoIPLu6/zq7iDv7iDu8OPg7ejn4Pbo/+wg6O3y5fDl8fP++eXj7iDx 5ePs5e3y4CDw++3q4DsgDQoNCs/u5OPu8u7i6uAg4eDn+yDo7fLl8OXx8/756PUg 7vDj4O3o5+D26Okg5Ov/IO/u6vPv6ugg6OvoIPDg8fH76+roIO7x8/nl8fLi6//l 8vH/IPHr5eTz/vno7CDu4fDg5+7sLiDCIO7y4uXyIO3gIO/w6PHr4O3t8/4gwuDs 6CDn4P/i6vMg4iDv8O7o5+Lu6/zt7ukg9O7w7OUgwuDsICjh5fHv6+Dy7e4pIOL7 8fvr4OXy8f8g5OXs7i3i5fDx6P8g4eDn+yAoV2luWmlwIDI1MEtiKS4gxOXs7i3i 5fDx6P8gLSD98u4g8e/o8e7qIO7w4+Dt6Ofg9ujpIPEg8+rg5+Dt6OXsIPDu5OAg 5OX/8uXr/O3u8fLoLiDO8iDt5eUgwvsgIu7y8eXq4OXy5SDi8eUg6+j47eXlIiDo IOTg7e376SDx4u7pIOLg8Ojg7fIg7/Do8fvr4OXy5SDt4OwuIMjnIO3l4+4g7Psg 4+7y7uLo7CDC4PjzIOHg5/MsIOTu7+7r7f//IO/u6/P36OL46Onx/yDx7+jx7uog 6O307vDs4Pbo5ekg7iDq4Obk7ukg7vDj4O3o5+D26OggKGUtbWFpbCwg8uXr5fTu 7fsg6CDyLuQuKSwg6OvoIOPu8u7i6OwgbWFpbC1saXN0IOTr/yDC4Pjl6SDw4PHx ++vq6C4gDQoNCtLg6ublIO/w7ujn4u7k6Owg8ODx8fvr6vMg7+4g4vvh8ODt7fvs IMLg7Ogg4OTw5fHg7CAoMC4wNCQg5+Ag6uDm5PvpIODk8OXxIO/r/vEgMjAg8y7l LiDn4CD07vDs6PDu4uDt6OUgbWFpbC3r6PHy4A0KDQogICAyLiDU4OrxLeHg5+Ag IiDC8f8g5OXr7uLg/yDM7vHq4uAgIiANCg0KICAgweDn4CDx7uTl8Obo8iA0NTAw MCD04OrxLe3u7OXw7uIg9Ojw7CDM7vHq4vsg6CDM7vHq7uLx6u7pIO7h6+Dx8ugg KOzu8eru4vHq6OUg7e7s5fDgKSDoIPHu8fLu6PIg6OcgODMg8uXs4PLo9+Xx6uj1 IPDg5+Tl6+7iLg0KDQogICDC+/Hu6uD/IODq8vPg6/zt7vHy/CDo7fTu8Ozg9ujo IO7h5fHv5ffo4uDl8vH/IOfgIPH35fIg7+7x8u7/7e3u6SDv8O7i5fDq6CDoIOTu 4eDi6+Xt6P8g7e7i+/Ug7e7s5fDu4iDo5yDw4Ofr6Pft+/Ug6PHy7vft6Oru4i4g IA0KDQog1ODq8S3h4OfgIO/w5eTt4Oft4Pfl7eAg5Ov/IOjx7+7r/Ofu4uDt6P8g 4iDv8O7j8ODs7OD1IODi8u7s4PLo9+XxLSDq7ukg9ODq8S3w4PHx++vq6Cwg7+7x 8uDi6//l8vH/IOIg9O7w7ODy5SAqLnR4dCAo8uXq8fIg8SDw4Ofk5evo8uXr5ewg dGFiKSwg7O7m5fIg4fvy/CDu4fDg4e7y4O3gIPHy4O3k4PDy7fvs6CDx8OXk8fLi 4OzoIO/g6uXy4CAiTXNPZmZpY2UiICgiTXNXb3JkIiwgIk1zRXhjZWwiLCAiTXNB Y2Nlc3MiKSDoIOLq6/734OXyIPLw6CDv7uv/OiDt4Ofi4O3o5SD06PDs+zsg7e7s 5fAg9ODq8eA7IOLo5CDk5f/y5ev87e7x8uguIA0KDQogIM/r4O3o8PPl8vH/IO/l 8OXo5+Tg7ejlIOHg5/sg5ODt7fv1IOrg5uT75SDv7uvj7uTgIPEg7eXu4fXu5Ojs ++zoIOjn7OXt5e3o/+zoIOgg5O7v7uvt5e3o/+zoLiANCs7h7e7i6+Xt6OUg9ODq 8S3h4Of7IOfgIDUwICUg8fLu6Ozu8fLoLg0KDQog0fLu6Ozu8fL8IPTg6vEt4eDn +yANCiIgwvH/IOTl6+7i4P8gzO7x6uLgICIgLSAyMDAwIPDz4evl6SANCg0KweXx 7+vg8u3g/yDk7vHy4OLq4CDv8Ogg7eDr6Pft7ukg7u/r4PLlKMzu8eri4CkgDQoN CnRlbC4wOTUgNzUwMjIwMCANCmVtYWlsOmRhdGFiYXNlc0ByYW1ibGVyLnJ1DQog x8DOICJNZXJjdXJ5Ig0KIA== --alneegcjgjkerbns-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 21:40: 6 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB96C37B401 for ; Thu, 30 Nov 2000 21:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB15e1228790; Thu, 30 Nov 2000 21: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 4DB6D37B402 for ; Thu, 30 Nov 2000 21:38:55 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB15ct628623; Thu, 30 Nov 2000 21:38:55 -0800 (PST) (envelope-from nobody) Message-Id: <200012010538.eB15ct628623@freefall.freebsd.org> Date: Thu, 30 Nov 2000 21:38:55 -0800 (PST) From: dan@freebsddiary.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23202: /usr/ports/shells/bash2/pkg-comment contains Borne not Bourne Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23202 >Category: ports >Synopsis: /usr/ports/shells/bash2/pkg-comment contains Borne not Bourne >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 Nov 30 21:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dan Langille >Release: >Organization: The FreeBSD Diary >Environment: >Description: It's Bourne not Borne isn't it? Let's spell it right in pkg-comment then. >How-To-Repeat: /usr/ports/shells/bash2/pkg-comment >Fix: [root@set:/usr/ports/shells/bash2] # diff pkg-comment.old pkg-comment 1c1 < The GNU Borne Again Shell --- > The GNU Bourne Again Shell >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 Nov 30 21:50: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF7AF37B400 for ; Thu, 30 Nov 2000 21:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB15o4J30531; Thu, 30 Nov 2000 21:50:04 -0800 (PST) (envelope-from gnats) Date: Thu, 30 Nov 2000 21:50:04 -0800 (PST) Message-Id: <200012010550.eB15o4J30531@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: goranrunfeldt@home.se Subject: Re: ports/22665: XEvil 2.xx port Reply-To: goranrunfeldt@home.se Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22665; it has been noted by GNATS. From: goranrunfeldt@home.se To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/22665: XEvil 2.xx port Date: 1 Dec 2000 05:50:01 -0000 >Submitter-Id: current-users >Originator: Göran Runfeldt >Organization: >Confidential: no >Synopsis: >Severity: >Priority: >Category: ports >Release: FreeBSD 4.2-BETA i386 >Class: change-request I didn't write any info in the report when I submitted this port. I guess that's why it hasn't been touched. Anyway, this is a port of XEvil 2.xx. The portstree already contains xevil1.5 but that's a very old version. Göran Runfeldt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 22:52:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from prydn.tacni.net (207-55-167-109.dhc.net [207.55.167.109]) by hub.freebsd.org (Postfix) with SMTP id 2B9A637B400 for ; Thu, 30 Nov 2000 22:52:13 -0800 (PST) Received: (qmail 38063 invoked by uid 1001); 1 Dec 2000 06:51:55 -0000 Date: Fri, 1 Dec 2000 00:51:55 -0600 From: Erich Zigler To: freebsd-ports@freebsd.org Subject: iconv Message-ID: <20001201005155.A37998@superhero.org> Mail-Followup-To: Erich Zigler , freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anyone else experienced any problems with iconv since it has been updated? Such as the latest port of gnomevfs? I am also now having problems compiling several different programs due to iconv errors. Such as... undefined reference to `iconv' undefined reference to `iconv_open' Any help or advice will be greatly appreciated. Yes I am makeing sure -I/usr/local/include is included in the CFLAGS. -- Erich Zigler Is there a tape drive that isn't a DLT that doesn't suck dead weasels through a lint-clogged dryer hose? -- Peter da Silva To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 30 23:38: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from toptk.com (tp085010.seeder.net [202.43.85.10]) by hub.freebsd.org (Postfix) with ESMTP id 86D1E37B400 for ; Thu, 30 Nov 2000 23:38:06 -0800 (PST) Received: from toptk.com (tc070195.seeder.net [202.43.70.195] (may be forged)) by toptk.com (8.9.3/8.9.3) with ESMTP id PAA03456; Fri, 1 Dec 2000 15:32:41 +0800 Message-ID: <3A275490.83CDE83@toptk.com> Date: Fri, 01 Dec 2000 15:34:40 +0800 From: Kevin Lo X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-20001115-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: Vivek Khera Cc: ports@FreeBSD.ORG Subject: Re: kdeeject patch References: <14886.49027.287879.699821@onceler.kciLink.com> Content-Type: text/plain; charset=big5 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Vivek Khera wrote: > The kde2 program kdeeject is called with a full device name from the > eject menu for a CDROM device type. This doesn't work with freebsd's > eject program. The following patch hacks up the device to the form > that seems acceptable to eject. Applied, thanks. BTW, using cdcontrol instead of eject. - Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 0:34:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 5C17D37B400 for ; Fri, 1 Dec 2000 00:34:10 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eB18X6G28868; Fri, 1 Dec 2000 10:33:06 +0200 (EET) (envelope-from never) Date: Fri, 1 Dec 2000 10:33:06 +0200 From: Nevermind To: mikel Cc: freebsd-ports@FreeBSD.ORG Subject: Re: multiple apache versions. Message-ID: <20001201103306.E2185@nevermind.kiev.ua> References: <3A26A08E.6215BBD3@ocsinternet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A26A08E.6215BBD3@ocsinternet.com>; from mikel@ocsinternet.com on Thu, Nov 30, 2000 at 01:46:38PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, mikel! On Thu, Nov 30, 2000 at 01:46:38PM -0500, you wrote: > Has anyone set up different versions of appache running on the same > server? Like say Apache+Jserv bound to x.x.x.x and Apache+mod_php bound > to y.y.y.y and maybe even Apache+FastCGI bound to z.z.z.z? Sure, you can do such thing. # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, in addition to the default. See also the # directive. # #Listen 3000 #Listen 12.34.56.78:80 Also, you should be sure that all of your apaches will put their .pid files in different places :)) -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 3: 6:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id 5BD3137B400 for ; Fri, 1 Dec 2000 03:06:29 -0800 (PST) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.11.1/8.9.3) id eB1B6PV32390; Fri, 1 Dec 2000 12:06:25 +0100 (CET) (envelope-from ibex) Date: Fri, 1 Dec 2000 12:06:25 +0100 From: Dirk Froemberg To: Vivek Khera Cc: ports@FreeBSD.org Subject: Re: mysql323-server update to 3.23.38-gamma Message-ID: <20001201120624.A31215@physik.TU-Berlin.DE> References: <14886.37564.536550.640715@onceler.kciLink.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <14886.37564.536550.640715@onceler.kciLink.com>; from khera@kcilink.com on Thu, Nov 30, 2000 at 12:47:40PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Vivek! On Thu, Nov 30, 2000 at 12:47:40PM -0500, Vivek Khera wrote: > The following patch updates the mysql323-server port to 3.23.28-gamma. > I also added tcp wrappers support and changed the socket location, > which you may not wish to use in the official port. Ok, I enabled TCP wrappers and put mysql.sock into ${DB_DIR}. Thanks! Regards Dirk -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 3:52:47 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F12937B400; Fri, 1 Dec 2000 03:52:45 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1Bqj193602; Fri, 1 Dec 2000 03:52:45 -0800 (PST) (envelope-from roam) Date: Fri, 1 Dec 2000 03:52:45 -0800 (PST) From: Message-Id: <200012011152.eB1Bqj193602@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/23202: /usr/ports/shells/bash2/pkg-comment contains Borne not Bourne Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/ports/shells/bash2/pkg-comment contains Borne not Bourne Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: roam Responsible-Changed-When: Fri Dec 1 03:52:07 PST 2000 Responsible-Changed-Why: Over to maintainer; this is almost a no-brainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=23202 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 4:30: 8 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B57B37B401 for ; Fri, 1 Dec 2000 04:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1CU3M01763; Fri, 1 Dec 2000 04:30:03 -0800 (PST) (envelope-from gnats) Received: from mail.initio.no (nalle.initio.no [62.92.112.203]) by hub.freebsd.org (Postfix) with SMTP id 8E79A37B400 for ; Fri, 1 Dec 2000 04:29:31 -0800 (PST) Received: (qmail 910 invoked from network); 1 Dec 2000 12:29:28 -0000 Received: from firewall.initio.no (HELO gaia.initio.no) (195.18.131.42) by nalle.initio.no with SMTP; 1 Dec 2000 12:29:28 -0000 Received: (qmail 62321 invoked by uid 0); 1 Dec 2000 12:29:39 -0000 Message-Id: <20001201122939.62320.qmail@gaia.initio.no> Date: 1 Dec 2000 12:29:39 -0000 From: oyvindmo@initio.no Reply-To: oyvindmo@initio.no To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23208: update port: audio/juke (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23208 >Category: ports >Synopsis: update port: audio/juke (maintainer) >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 01 04:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Oyvind Moll >Release: FreeBSD 4.2-STABLE i386 >Organization: Initio IT-losninger AS >Environment: gaia:~$ uname -a FreeBSD gaia.ti.initio.no 4.2-STABLE FreeBSD 4.2-STABLE #0: Wed Nov 29 10:27:14 CET 2000 >Description: Update port audio/juke from 0.5 to 0.6. Author's changelog for 0.6: + Could not quit when player was paused. This has been fixed. + Changed player_status function to return 1 if a player exits for example with a signal. So now "amp" can be used with juke. + Error message fix in conf.c Also add a little whitespace make pkg-message stand out more clearly. >How-To-Repeat: >Fix: diff -uNr juke.orig/Makefile juke/Makefile --- juke.orig/Makefile Sun Oct 8 12:19:13 2000 +++ juke/Makefile Fri Dec 1 13:26:32 2000 @@ -6,7 +6,7 @@ # PORTNAME= juke -PORTVERSION= 0.5 +PORTVERSION= 0.6 CATEGORIES= audio MASTER_SITES= http://www.nocrew.org/software/juke/archive/ diff -uNr juke.orig/distinfo juke/distinfo --- juke.orig/distinfo Mon May 3 05:47:30 1999 +++ juke/distinfo Fri Dec 1 13:26:37 2000 @@ -1 +1 @@ -MD5 (juke-0.5.tar.gz) = 089fcdf1576eb1911e97049c54cc5c08 +MD5 (juke-0.6.tar.gz) = cb0702a754ac783d17099ede03ea5252 diff -uNr juke.orig/files/patch-ab juke/files/patch-ab --- juke.orig/files/patch-ab Mon May 3 05:47:31 1999 +++ juke/files/patch-ab Fri Dec 1 13:26:53 2000 @@ -9,7 +9,7 @@ if (cfg->file_len != ERROR) { evaluate (cfg); if (! cfg->formats) { -- fprintf (stderr, "error: No formats in /etc/juke.config\n"); +- fprintf (stderr, "error: No formats in /etc/juke.conf\n"); + fprintf (stderr, "error: No formats in " CFG_RCFILE "\n"); exit (ERROR); } diff -uNr juke.orig/pkg-message juke/pkg-message --- juke.orig/pkg-message Mon May 3 05:47:31 1999 +++ juke/pkg-message Fri Dec 1 13:27:38 2000 @@ -1,4 +1,6 @@ + A sample configuration file has been copied to PREFIX/etc/juke.conf.sample. Juke will not work without either PREFIX/etc/juke.conf or the running user's ~/.juke.conf being in place. + >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 1 5:28:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from apollo.ocsny.com (apollo.ocsny.com [204.107.76.2]) by hub.freebsd.org (Postfix) with ESMTP id CDA1137B400 for ; Fri, 1 Dec 2000 05:28:23 -0800 (PST) Received: from ocsinternet.com (fw239.ocsny.com [204.107.76.239]) by apollo.ocsny.com (8.9.2/8.9.3) with ESMTP id IAA09225; Fri, 1 Dec 2000 08:28:23 -0500 (EST) Message-ID: <3A27A6C7.4803759D@ocsinternet.com> Date: Fri, 01 Dec 2000 08:25:27 -0500 From: mikel X-Mailer: Mozilla 4.73 [en] (Windows NT 5.0; I) X-Accept-Language: en MIME-Version: 1.0 To: Nevermind Cc: freebsd-ports@FreeBSD.ORG Subject: Re: multiple apache versions. References: <3A26A08E.6215BBD3@ocsinternet.com> <20001201103306.E2185@nevermind.kiev.ua> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks, I forgot about the pid placement. I am aware of the bindery settings, what I am concerned about is if there will be any conflicts with building different versions, I am guessing that I will not be able to perform the usuall 'make install' like I would if the server were only going to use one version. Then there is the apachectl utility which I expect to get confused (more likely I'll be the one confused...) One thought I had was to do the seperate builds and rename the executable to something else like japache, fapache, and papache, thus making is a bit easier Thanks again for you response as I totaly overlooked the pid thingie.... Cheers, Mikel Nevermind wrote: > Hello, mikel! > > On Thu, Nov 30, 2000 at 01:46:38PM -0500, you wrote: > > > Has anyone set up different versions of appache running on the same > > server? Like say Apache+Jserv bound to x.x.x.x and Apache+mod_php bound > > to y.y.y.y and maybe even Apache+FastCGI bound to z.z.z.z? > Sure, you can do such thing. > # Listen: Allows you to bind Apache to specific IP addresses and/or > # ports, in addition to the default. See also the > # directive. > # > #Listen 3000 > #Listen 12.34.56.78:80 > > Also, you should be sure that all of your apaches will put their .pid files in > different places :)) > > -- > Alexandr P. Kovalenko http://nevermind.kiev.ua/ > NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 5:39:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id DF41037B400 for ; Fri, 1 Dec 2000 05:39:27 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eB1Dcg233212; Fri, 1 Dec 2000 15:38:42 +0200 (EET) (envelope-from never) Date: Fri, 1 Dec 2000 15:38:42 +0200 From: Nevermind To: mikel Cc: freebsd-ports@FreeBSD.ORG Subject: Re: multiple apache versions. Message-ID: <20001201153842.D30994@nevermind.kiev.ua> References: <3A26A08E.6215BBD3@ocsinternet.com> <20001201103306.E2185@nevermind.kiev.ua> <3A27A6C7.4803759D@ocsinternet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A27A6C7.4803759D@ocsinternet.com>; from mikel@ocsinternet.com on Fri, Dec 01, 2000 at 08:25:27AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, mikel! On Fri, Dec 01, 2000 at 08:25:27AM -0500, you wrote: > Thanks, I forgot about the pid placement. I am aware of the bindery settings, > what I am concerned about is if there will be any conflicts with building > different versions, I am guessing that I will not be able to perform the usuall > 'make install' like I would if the server were only going to use one version. Then > there is the apachectl utility which I expect to get confused (more likely I'll be > the one confused...) > > One thought I had was to do the seperate builds and rename the executable to > something else like japache, fapache, and papache, thus making is a bit easier > > Thanks again for you response as I totaly overlooked the pid thingie.... :) just do `make install PREFIX=/usr/local/apache1',`make install PREFIX=/usr/local/apache2', etc. Than, maybe you should have several /usr/local/etc/rc.d/apacheX.sh, which will check for different pids :) > Nevermind wrote: > > > Hello, mikel! > > > > On Thu, Nov 30, 2000 at 01:46:38PM -0500, you wrote: > > > > > Has anyone set up different versions of appache running on the same > > > server? Like say Apache+Jserv bound to x.x.x.x and Apache+mod_php bound > > > to y.y.y.y and maybe even Apache+FastCGI bound to z.z.z.z? > > Sure, you can do such thing. > > # Listen: Allows you to bind Apache to specific IP addresses and/or > > # ports, in addition to the default. See also the > > # directive. > > # > > #Listen 3000 > > #Listen 12.34.56.78:80 -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 5:40: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E88D637B401 for ; Fri, 1 Dec 2000 05:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1De1s10027; Fri, 1 Dec 2000 05:40:01 -0800 (PST) (envelope-from gnats) Received: from plab.ku.dk (plab.ku.dk [130.225.105.65]) by hub.freebsd.org (Postfix) with ESMTP id BB7F837B400 for ; Fri, 1 Dec 2000 05:34:26 -0800 (PST) Received: (from tolid@localhost) by plab.ku.dk (8.11.0/8.9.3) id eB1DYPC41195 for FreeBSD-gnats-submit@freebsd.org.AVP; Fri, 1 Dec 2000 14:34:25 +0100 (CET) (envelope-from tolid) Received: (from tolid@localhost) by plab.ku.dk (8.11.0/8.9.3) id eB1DYPj41186; Fri, 1 Dec 2000 14:34:25 +0100 (CET) (envelope-from tolid) Message-Id: <200012011334.eB1DYPj41186@plab.ku.dk> Date: Fri, 1 Dec 2000 14:34:25 +0100 (CET) From: Anatoliy Dmytriyev Reply-To: tolid@plab.ku.dk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23209: problems with Russian language in the port gtk-12 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23209 >Category: ports >Synopsis: problems with Russian language in the port gtk-12 >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: Fri Dec 01 05:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Anatoliy Dmytriyev >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD eagle.plab.ku.dk 4.2-STABLE FreeBSD 4.2-STABLE #0: Thu Nov 23 10:07:39 C ET 2000 root@eagle.plab.ku.dk:/usr/obj/usr/src/sys/eagle i386 >Description: gtk-12 port supports Russian language, but the default fonts for Russian locale are wrong. >How-To-Repeat: Install and run any application, what has Russian localization and use gtk-12 port, and get default fonts from this port. >Fix: --- gtk/gtkrc.ru.old Fri Dec 1 13:50:11 2000 +++ gtk/gtkrc.ru Fri Dec 1 13:50:23 2000 @@ -1,7 +1,5 @@ style "gtk-default-ru" { - fontset = "-adobe-helvetica-medium-r-normal--12-*-*-*-*-*-iso8859-*,\ - -*-arial-medium-r-normal--12-*-*-*-*-*-iso8859-1,\ - -*-helvetica-medium-r-normal--12-*-*-*-*-*-koi8-r,\ + fontset = "-*-helvetica-medium-r-normal--12-*-*-*-*-*-koi8-r,\ -*-arial-medium-r-normal--12-*-*-*-*-*-koi8-r,*-r-*" } class "GtkWidget" style "gtk-default-ru" >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 1 5:46:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from apollo.ocsny.com (apollo.ocsny.com [204.107.76.2]) by hub.freebsd.org (Postfix) with ESMTP id 9091E37B400 for ; Fri, 1 Dec 2000 05:46:20 -0800 (PST) Received: from ocsinternet.com (fw239.ocsny.com [204.107.76.239]) by apollo.ocsny.com (8.9.2/8.9.3) with ESMTP id IAA09570; Fri, 1 Dec 2000 08:46:27 -0500 (EST) Message-ID: <3A27AB03.46EF1EFB@ocsinternet.com> Date: Fri, 01 Dec 2000 08:43:31 -0500 From: mikel X-Mailer: Mozilla 4.73 [en] (Windows NT 5.0; I) X-Accept-Language: en MIME-Version: 1.0 To: Nevermind Cc: freebsd-ports@FreeBSD.ORG Subject: Re: multiple apache versions. References: <3A26A08E.6215BBD3@ocsinternet.com> <20001201103306.E2185@nevermind.kiev.ua> <3A27A6C7.4803759D@ocsinternet.com> <20001201153842.D30994@nevermind.kiev.ua> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Cool beans! That's exactly what I was looking for I shall give it a try and let you know how I make out... Cheers, mikel Nevermind wrote: > Hello, mikel! > > On Fri, Dec 01, 2000 at 08:25:27AM -0500, you wrote: > > > Thanks, I forgot about the pid placement. I am aware of the bindery settings, > > what I am concerned about is if there will be any conflicts with building > > different versions, I am guessing that I will not be able to perform the usuall > > 'make install' like I would if the server were only going to use one version. Then > > there is the apachectl utility which I expect to get confused (more likely I'll be > > the one confused...) > > > > One thought I had was to do the seperate builds and rename the executable to > > something else like japache, fapache, and papache, thus making is a bit easier > > > > Thanks again for you response as I totaly overlooked the pid thingie.... > :) > just do `make install PREFIX=/usr/local/apache1',`make install > PREFIX=/usr/local/apache2', etc. > Than, maybe you should have several /usr/local/etc/rc.d/apacheX.sh, which will > check for different pids :) > > Nevermind wrote: > > > > > Hello, mikel! > > > > > > On Thu, Nov 30, 2000 at 01:46:38PM -0500, you wrote: > > > > > > > Has anyone set up different versions of appache running on the same > > > > server? Like say Apache+Jserv bound to x.x.x.x and Apache+mod_php bound > > > > to y.y.y.y and maybe even Apache+FastCGI bound to z.z.z.z? > > > Sure, you can do such thing. > > > # Listen: Allows you to bind Apache to specific IP addresses and/or > > > # ports, in addition to the default. See also the > > > # directive. > > > # > > > #Listen 3000 > > > #Listen 12.34.56.78:80 > > -- > Alexandr P. Kovalenko http://nevermind.kiev.ua/ > NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 6:20:10 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B894937B401 for ; Fri, 1 Dec 2000 06:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1EK1S16266; Fri, 1 Dec 2000 06:20:01 -0800 (PST) (envelope-from gnats) Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 0BFA437B401 for ; Fri, 1 Dec 2000 06:17:19 -0800 (PST) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 141qzx-000KUv-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 01 Dec 2000 16:17:13 +0200 Message-Id: Date: Fri, 01 Dec 2000 16:17:13 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23210: Port update: textproc/py-martel (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23210 >Category: ports >Synopsis: Port update: textproc/py-martel (MAINTAINER) >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 01 06:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 5.0-CURRENT i386 >Organization: Electric Genetics >Environment: >Description: - Update of port textprox/py-martel from 0.3.5 to 0.4 - The only major new functionality is the ability to handle EOL conventions for multiple platforms (not fully tested). - The author contends that Martel is now ready for "real work"; 0.4 is to be considered a stable development release. - Added a paragraph to ${DESCR} to clarify the purpose of Martel. - Cleaned up Makefile a bit. - Removed an erroneously installed directory. >How-To-Repeat: >Fix: diff -ruN py-martel.bak/Makefile py-martel/Makefile --- py-martel.bak/Makefile Fri Dec 1 15:59:04 2000 +++ py-martel/Makefile Fri Dec 1 15:59:53 2000 @@ -6,32 +6,34 @@ # PORTNAME= martel -PORTVERSION= 0.3.5 +PORTVERSION= 0.4 PORTEPOCH= 1 CATEGORIES= textproc biology python MASTER_SITES= http://www.biopython.org/~dalke/Martel/ -PKGNAMEPREFIX= py- -DISTNAME= Martel-0.35 +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Martel-0.4 MAINTAINER= johann@egenetics.com RUN_DEPENDS= ${PYTHON_SITELIBDIR}/TextTools/__init__.py:${PORTSDIR}/textproc/py-mxTextTools PYTHON_VERSION= python2.0 -NO_BUILD= yes MARTEL_DIR= ${PYTHON_SITELIBDIR}/Martel MARTEL_EXAMPLEDIR=${PREFIX}/share/examples/martel MARTEL_DOCDIR= ${PREFIX}/share/doc/martel +do-build: + @ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} + @ ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} + do-install: @ ${MKDIR} ${MARTEL_DIR} - @ (cd ${WRKSRC} && find *.py examples formats test \ + @ (cd ${WRKSRC} && find *.py *.pyc *.pyo formats test \ | cpio --quiet -pdum -R ${BINOWN}:${BINGRP} ${MARTEL_DIR}) - @ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${MARTEL_DIR} - @ ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${MARTEL_DIR} - @ ${MKDIR} ${MARTEL_EXAMPLEDIR} + @ ${MKDIR} ${MARTEL_EXAMPLEDIR}/builders @ ${INSTALL_DATA} ${WRKSRC}/examples/* ${MARTEL_EXAMPLEDIR} + @ ${INSTALL_DATA} ${WRKSRC}/builders/* ${MARTEL_EXAMPLEDIR}/builders post-install: .if !defined(NOPORTDOCS) diff -ruN py-martel.bak/distinfo py-martel/distinfo --- py-martel.bak/distinfo Fri Dec 1 15:59:04 2000 +++ py-martel/distinfo Fri Dec 1 15:28:00 2000 @@ -1 +1 @@ -MD5 (Martel-0.35.tar.gz) = 8743c59c37132ecfe6a99c91f774409e +MD5 (Martel-0.4.tar.gz) = 3f54a121b70b69f6167dd61343c73cc0 diff -ruN py-martel.bak/pkg-descr py-martel/pkg-descr --- py-martel.bak/pkg-descr Fri Dec 1 15:59:04 2000 +++ py-martel/pkg-descr Fri Dec 1 16:10:50 2000 @@ -1,10 +1,13 @@ Martel is a parser generator, written in Python, which takes a regular -expression grammer for a format and turns the resultant parsed tree into a -set of callback events emulating the XML/SAX API. +expression grammer for a file format and turns the resultant parsed tree into +a set of callback events emulating the XML/SAX API. -It was originally intended for use in biocomputing applications (such as -Biopython - http://www.biopython.org/), where there is often a need to parse -existing flat and semi-structured file formats. However, it is generally +Essentially this means that existing and readily available XML tools can be +used to parse non-XML flat file formats. + +Martel was originally intended for use in biocomputing applications (such as +Biopython - http://www.biopython.org/) where there is often a need to parse +flat and semi-structured legacy file formats. However, it is generally applicable to the parsing of such files in all fields of endeavour. More information on Martel may be found in this conference poster: diff -ruN py-martel.bak/pkg-plist py-martel/pkg-plist --- py-martel.bak/pkg-plist Fri Dec 1 15:59:04 2000 +++ py-martel/pkg-plist Fri Dec 1 15:56:55 2000 @@ -19,16 +19,6 @@ lib/%%PYTHON_VERSION%%/site-packages/Martel/convert_re.py lib/%%PYTHON_VERSION%%/site-packages/Martel/convert_re.pyc lib/%%PYTHON_VERSION%%/site-packages/Martel/convert_re.pyo -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/README -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/pdb1plm.ent -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/sample.swissprot -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/swissprot2html.py -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/swissprot2html.pyc -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/swissprot2html.pyo -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/test.mol -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/toxml.py -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/toxml.pyc -lib/%%PYTHON_VERSION%%/site-packages/Martel/examples/toxml.pyo lib/%%PYTHON_VERSION%%/site-packages/Martel/formats/MDL_10_1996.py lib/%%PYTHON_VERSION%%/site-packages/Martel/formats/MDL_10_1996.pyc lib/%%PYTHON_VERSION%%/site-packages/Martel/formats/MDL_10_1996.pyo @@ -92,6 +82,9 @@ lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_RecordReader.py lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_RecordReader.pyc lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_RecordReader.pyo +lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_RecordReader2.py +lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_RecordReader2.pyc +lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_RecordReader2.pyo lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_blastall_2_0_10.py lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_blastall_2_0_10.pyc lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_blastall_2_0_10.pyo @@ -108,14 +101,21 @@ lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_swissprot38.pyc lib/%%PYTHON_VERSION%%/site-packages/Martel/test/test_swissprot38.pyo share/examples/martel/README +share/examples/martel/builders/SwissProtBuilder.py +share/examples/martel/builders/SwissProtBuilder.pyc +share/examples/martel/builders/SwissProtBuilder.pyo share/examples/martel/pdb1plm.ent share/examples/martel/sample.swissprot share/examples/martel/swissprot2html.py +share/examples/martel/swissprot2html.pyc +share/examples/martel/swissprot2html.pyo share/examples/martel/test.mol share/examples/martel/toxml.py +share/examples/martel/toxml.pyc +share/examples/martel/toxml.pyo +@dirrm share/examples/martel/builders @dirrm share/examples/martel @dirrm lib/%%PYTHON_VERSION%%/site-packages/Martel/test @dirrm lib/%%PYTHON_VERSION%%/site-packages/Martel/formats -@dirrm lib/%%PYTHON_VERSION%%/site-packages/Martel/examples @dirrm lib/%%PYTHON_VERSION%%/site-packages/Martel @unexec rm -rf %D/share/doc/martel 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 1 6:48:36 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DD0A37B400; Fri, 1 Dec 2000 06:48:34 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1EmYo19702; Fri, 1 Dec 2000 06:48:34 -0800 (PST) (envelope-from lioux) Date: Fri, 1 Dec 2000 06:48:34 -0800 (PST) From: Message-Id: <200012011448.eB1EmYo19702@freefall.freebsd.org> To: jay@avacet.com, lioux@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23201: rxvt-devel port does not include scrollbars Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rxvt-devel port does not include scrollbars State-Changed-From-To: open->closed State-Changed-By: lioux State-Changed-When: Fri Dec 1 06:48:20 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23201 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 8:30:12 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CB1A37B401 for ; Fri, 1 Dec 2000 08:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1GU3k36342; Fri, 1 Dec 2000 08:30:03 -0800 (PST) (envelope-from gnats) Received: from bamby.marka.net.ua (unknown [217.24.160.45]) by hub.freebsd.org (Postfix) with ESMTP id B937D37B401 for ; Fri, 1 Dec 2000 08:20:34 -0800 (PST) Received: (from bamby@localhost) by bamby.marka.net.ua (8.9.3/8.9.3) id SAA88857; Fri, 1 Dec 2000 18:19:49 +0200 (EET) (envelope-from bamby) Message-Id: <200012011619.SAA88857@bamby.marka.net.ua> Date: Fri, 1 Dec 2000 18:19:49 +0200 (EET) From: bamby@marka.net.ua Reply-To: bamby@marka.net.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23212: Timeout bug in Merit AAA server Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23212 >Category: ports >Synopsis: Timeout bug in Merit AAA server >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 01 08:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Andriy I Pilipenko >Release: FreeBSD 4.1-RELEASE i386 >Organization: Marka Ltd >Environment: >Description: There is serious bug in handling requests in AATV module of AA_FORK and AA_FREPLAY types in Merit AAA server. If AATV module not responding for a long time main server drops original request without cleaning some critical information (process counter aatv->proc_cnt). As a result after some definite number of timeouts server stops responding. Vendor notified of this problem and fix. >How-To-Repeat: Write AATV module that may sleep long enough to make timeout in main server. Send to server aatv->proc_max requests (16 by default) and wait for timeout to occure for all requests. Make the AATV module to respond quickly (without restarting server of course :-) ). Now you may see that server does not respond at all. >Fix: *** radiusd.c.orig Mon Jul 27 23:52:37 1998 --- radiusd.c Wed Nov 29 18:09:48 2000 *************** *** 4467,4473 **** while ((event = authreq->event_q) != (EVENT_ENT *) NULL) { authreq->event_q = event->next; ! free_event_final (event); } while ((event = authreq->freed_events) != (EVENT_ENT *) NULL) --- 4467,4473 ---- while ((event = authreq->event_q) != (EVENT_ENT *) NULL) { authreq->event_q = event->next; ! free_event (event); } while ((event = authreq->freed_events) != (EVENT_ENT *) NULL) >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 1 8:53:57 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D0DB37B400; Fri, 1 Dec 2000 08:53:55 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1GrsU39411; Fri, 1 Dec 2000 08:53:54 -0800 (PST) (envelope-from kevlo) Date: Fri, 1 Dec 2000 08:53:54 -0800 (PST) From: Message-Id: <200012011653.eB1GrsU39411@freefall.freebsd.org> To: clive@CirX.ORG, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23195: Update chinese/xmms to 1.2.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update chinese/xmms to 1.2.4 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 1 08:53:41 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23195 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 8:55:59 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B68637B400; Fri, 1 Dec 2000 08:55:58 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1GtvU39835; Fri, 1 Dec 2000 08:55:57 -0800 (PST) (envelope-from kevlo) Date: Fri, 1 Dec 2000 08:55:57 -0800 (PST) From: Message-Id: <200012011655.eB1GtvU39835@freefall.freebsd.org> To: osa@FreeBSD.org.ru, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23199: upgrade databases/gigabases from 2.20 to 2.21 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: upgrade databases/gigabases from 2.20 to 2.21 (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 1 08:55:43 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23199 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 9: 0:55 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D8EDB37B400; Fri, 1 Dec 2000 09:00:53 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1H0rH40641; Fri, 1 Dec 2000 09:00:53 -0800 (PST) (envelope-from kevlo) Date: Fri, 1 Dec 2000 09:00:53 -0800 (PST) From: Message-Id: <200012011700.eB1H0rH40641@freefall.freebsd.org> To: oyvindmo@initio.no, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23208: update port: audio/juke (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: audio/juke (maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 1 09:00:41 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23208 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 9: 7:32 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 754A237B400; Fri, 1 Dec 2000 09:07:31 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1H7TJ43431; Fri, 1 Dec 2000 09:07:29 -0800 (PST) (envelope-from kevlo) Date: Fri, 1 Dec 2000 09:07:29 -0800 (PST) From: Message-Id: <200012011707.eB1H7TJ43431@freefall.freebsd.org> To: johann@egenetics.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23210: Port update: textproc/py-martel (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: textproc/py-martel (MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 1 09:07:04 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23210 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 9:55:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rhymer.cogsci.ed.ac.uk (rhymer.cogsci.ed.ac.uk [129.215.144.8]) by hub.freebsd.org (Postfix) with ESMTP id C2B6F37B400 for ; Fri, 1 Dec 2000 09:55:40 -0800 (PST) Received: from sorley.cogsci.ed.ac.uk (sorley [129.215.144.53]) by rhymer.cogsci.ed.ac.uk (8.9.3+Sun/8.9.3) with ESMTP id RAA10289 for ; Fri, 1 Dec 2000 17:55:39 GMT To: ports@freeBSD.org Subject: Netscape 6 Port From: Robert Inder Phone: (+44) 7808 492 213 (Mobile)/ (+44) 131 650 2756 (AIAI) Organisation: AI Applications Institute, University of Edinburgh Disorganisation: Rampant Date: 01 Dec 2000 17:55:39 +0000 Message-ID: Lines: 12 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just downloaded the Netscape 6 port (linux-netscape-6 in www). I had a bit of bother building it (reported elsewhere). But I managed, and ran it, and the first thing it said was "this preview version is out of date now: please get a new one..." Is someone going to "portify" the new/working/released version? Robert. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 10:10: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rhymer.cogsci.ed.ac.uk (rhymer.cogsci.ed.ac.uk [129.215.144.8]) by hub.freebsd.org (Postfix) with ESMTP id B4BD437B400 for ; Fri, 1 Dec 2000 10:09:58 -0800 (PST) Received: from sorley.cogsci.ed.ac.uk (sorley [129.215.144.53]) by rhymer.cogsci.ed.ac.uk (8.9.3+Sun/8.9.3) with ESMTP id SAA10565 for ; Fri, 1 Dec 2000 18:09:57 GMT To: ports@freeBSD.org Subject: Problem with Ports (DOCNUMENTATION BUG) From: Robert Inder Phone: (+44) 7808 492 213 (Mobile)/ (+44) 131 650 2756 (AIAI) Organisation: AI Applications Institute, University of Edinburgh Disorganisation: Rampant Date: 01 Dec 2000 18:09:57 +0000 Message-ID: Lines: 34 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've just had a problem with a port. I am running FreeBSD 4.1-RELEASE. I fetched the port for linux-netscape-6, and did a "make". After the make, I tried to "make install", and it failed because it could not find the file list. A friend told me that whereas in the past, ports had a "pkg" directory containing "DESCR", "COMMENT" and "PLIST" files, they now just have pkg-descr, pkg-comment and pkg-plist files. The netscape package had the latter, and my system was looking for the former. Simply making the "pkg" directory and copying the files appropriately seemed to fix the problem. BUT.... this, surely, isn't the right answer, is it? There is, presumably, some "official" way to update my system's ports processing make files. And the obvious place to look for how to do this is the Ports pages at www.FreeBSD.org. But there is nothing there. There is not even a mention of the possible problem, and none of the update kits seem to be relevant... I strongly urge you to add something to say that this problem is possible, and a pointer to how to fix it. Robert. P.S. Keep up the good work! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 10:50:16 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C283F37B401 for ; Fri, 1 Dec 2000 10:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1Io1f28338; Fri, 1 Dec 2000 10:50:01 -0800 (PST) (envelope-from gnats) Received: from privatecube.privatelabs.com (unknown [63.114.185.254]) by hub.freebsd.org (Postfix) with ESMTP id B1DB637B400 for ; Fri, 1 Dec 2000 10:45:51 -0800 (PST) Received: from misha.privatelabs.com (root@misha.plten [10.0.0.106]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id OAA14279 for ; Fri, 1 Dec 2000 14:05:20 -0500 Received: (from root@localhost) by misha.privatelabs.com (8.11.0/8.9.3) id eB1Ijn870282; Fri, 1 Dec 2000 13:45:49 -0500 (EST) (envelope-from mi) Message-Id: <200012011845.eB1Ijn870282@misha.privatelabs.com> Date: Fri, 1 Dec 2000 13:45:49 -0500 (EST) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23213: MAINTAINER PORT UPGRADE devel/tcllib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23213 >Category: ports >Synopsis: MAINTAINER PORT UPGRADE devel/tcllib >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 01 10:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: This moves the port from 0.4 to 0.8. New modules are added. The newer www/tclhttpd, which I'm going to submit next will need this. Also, the current port's pkg-message appears to have slipped from some other port :) It is quite irrelevant for this one. >How-To-Repeat: >Fix: --- Makefile Thu Jun 8 23:35:20 2000 +++ Makefile Fri Dec 1 13:32:12 2000 @@ -8,3 +8,3 @@ PORTNAME= tcllib -PORTVERSION= 0.4 +PORTVERSION= 0.8 CATEGORIES= devel @@ -21,3 +21,5 @@ PLIST_SUB+= PORTVERSION=${PORTVERSION} -MANN= graph.n queue.n stack.n tree.n math.n ncgi.n pop3.n profiler.n html.n +MANN= counter.n ftpd.n graph.n html.n javascript.n math.n \ + ncgi.n nntp.n pop3.n profiler.n queue.n stack.n textutil.n \ + tree.n uri.n MANCOMPRESSED= no @@ -25,3 +27,4 @@ MANCOMPRESSED= no do-install: - ${TAR} -xz --exclude "${PORTNAME}${PORTVERSION}/[RI]*" \ + ${TAR} -xpz --exclude "${PORTNAME}${PORTVERSION}/[RI]*" \ + --exclude install.sh \ -C ${LOCALBASE}/lib -f ${DISTDIR}/${DISTFILES} @@ -30,2 +33,5 @@ do-install: ${LOCALBASE}/man/mann/ + +post-install: + @${CAT} ${PKGMESSAGE} --- distinfo Thu Jun 8 23:35:20 2000 +++ distinfo Fri Dec 1 12:53:05 2000 @@ -1 +1 @@ -MD5 (tcllib0.4.tar.gz) = efee3008c58bf481913a133fbee4ede0 +MD5 (tcllib0.8.tar.gz) = 0c198c010090b52043034a7a20179ef7 --- pkg-descr Thu Jun 8 23:35:21 2000 +++ pkg-descr Fri Dec 1 13:35:36 2000 @@ -1,13 +1,14 @@ -Tcllib is a collection of utility modules for Tcl. These modules provide -a wide variety of functionality, from implementations of standard data -structures to implementations of common networking protocols. The intent -is to collect commonly used function into a single library, which users -can rely on to be available and stable. +Tcllib is a collection of utility modules for Tcl. The intent is to +collect commonly used function into a single library, which users can +rely on to be available and stable. -The latest version of tcllib, 0.4, includes the following modules: +The latest version of tcllib, 0.8, includes the following modules: base64 base64 encoder and decoder cmdline command line argument processor similar to opt - fileutil - Tcl implementations of some standard Unix utilities + counter Event counters, interval timers, and histogram display + fileutil Tcl implementations of some standard Unix utilities + ftp FTP client library + ftpd FTP server html HTML generation procedures. This uses ncgi. + javascript Javascript generation procedures. math common math functions like min, max, and others @@ -15,6 +16,8 @@ The latest version of tcllib, 0.4, inclu ncgi new CGI processing module + nntp NNTP (news) client pop3 POP3 protocol implementation - profiler - function level Tcl source code profiler + profiler function level Tcl source code profiler struct Tcl implementations of common data structures + textutil Text processing utilities + uri URI parsing module --- pkg-message Thu Jun 8 23:35:21 2000 +++ pkg-message Fri Dec 1 13:39:45 2000 @@ -1,11 +1,7 @@ -=========================================================================== - If you want users to be able to create their own web - subdirectories off of the main web directory, you need to: + Some of the parts of tcllib already come with man pages, + which are properly installed. Some others -- with + plain-text/HTML pages which are installed next to the + corresponding TCL code. This is how the Scriptics/Ajuba + developers intended it to happen, apparently... - a) add a group for www admins - b) chgrp yourgroup ${PREFIX}/bin/makeweb ${PREFIX}/www - c) chmod 2755 ${PREFIX}/bin/makeweb - d) tell them about makeweb(1) - -=========================================================================== --- pkg-plist Thu Jun 8 23:35:21 2000 +++ pkg-plist Fri Dec 1 13:26:23 2000 @@ -1,34 +1,41 @@ lib/tcllib%%PORTVERSION%%/base64/base64.tcl -lib/tcllib%%PORTVERSION%%/base64/pkgIndex.tcl lib/tcllib%%PORTVERSION%%/base64/base64.test +lib/tcllib%%PORTVERSION%%/base64/compare.tcl +lib/tcllib%%PORTVERSION%%/base64/pkgIndex.tcl @dirrm lib/tcllib%%PORTVERSION%%/base64 lib/tcllib%%PORTVERSION%%/cmdline/cmdline.tcl +lib/tcllib%%PORTVERSION%%/cmdline/cmdline.test lib/tcllib%%PORTVERSION%%/cmdline/pkgIndex.tcl lib/tcllib%%PORTVERSION%%/cmdline/typedCmdline.tcl -lib/tcllib%%PORTVERSION%%/cmdline/cmdline.test lib/tcllib%%PORTVERSION%%/cmdline/typedCmdline.test @dirrm lib/tcllib%%PORTVERSION%%/cmdline -lib/tcllib%%PORTVERSION%%/struct/graph.tcl -lib/tcllib%%PORTVERSION%%/struct/pkgIndex.tcl -lib/tcllib%%PORTVERSION%%/struct/queue.tcl -lib/tcllib%%PORTVERSION%%/struct/stack.tcl -lib/tcllib%%PORTVERSION%%/struct/struct.tcl -lib/tcllib%%PORTVERSION%%/struct/tree.tcl -lib/tcllib%%PORTVERSION%%/struct/graph.test -lib/tcllib%%PORTVERSION%%/struct/queue.test -lib/tcllib%%PORTVERSION%%/struct/stack.test -lib/tcllib%%PORTVERSION%%/struct/tree.test -@dirrm lib/tcllib%%PORTVERSION%%/struct +lib/tcllib%%PORTVERSION%%/counter/counter.tcl +lib/tcllib%%PORTVERSION%%/counter/counter.test +lib/tcllib%%PORTVERSION%%/counter/pkgIndex.tcl +@dirrm lib/tcllib%%PORTVERSION%%/counter lib/tcllib%%PORTVERSION%%/fileutil/fileutil.tcl -lib/tcllib%%PORTVERSION%%/fileutil/pkgIndex.tcl lib/tcllib%%PORTVERSION%%/fileutil/fileutil.test +lib/tcllib%%PORTVERSION%%/fileutil/pkgIndex.tcl @dirrm lib/tcllib%%PORTVERSION%%/fileutil +lib/tcllib%%PORTVERSION%%/ftp/ftp.tcl +lib/tcllib%%PORTVERSION%%/ftp/ftpdemo.tcl +lib/tcllib%%PORTVERSION%%/ftp/pkgIndex.tcl +@dirrm lib/tcllib%%PORTVERSION%%/ftp +lib/tcllib%%PORTVERSION%%/ftpd/ftpd.tcl +lib/tcllib%%PORTVERSION%%/ftpd/pkgIndex.tcl +lib/tcllib%%PORTVERSION%%/ftpd/rfc959.txt +lib/tcllib%%PORTVERSION%%/ftpd/std9.txt +@dirrm lib/tcllib%%PORTVERSION%%/ftpd +lib/tcllib%%PORTVERSION%%/html/html.tcl +lib/tcllib%%PORTVERSION%%/html/html.test +lib/tcllib%%PORTVERSION%%/html/pkgIndex.tcl +@dirrm lib/tcllib%%PORTVERSION%%/html +lib/tcllib%%PORTVERSION%%/javascript/javascript.tcl +lib/tcllib%%PORTVERSION%%/javascript/pkgIndex.tcl +@dirrm lib/tcllib%%PORTVERSION%%/javascript +lib/tcllib%%PORTVERSION%%/license.terms lib/tcllib%%PORTVERSION%%/math/math.tcl -lib/tcllib%%PORTVERSION%%/math/pkgIndex.tcl lib/tcllib%%PORTVERSION%%/math/math.test +lib/tcllib%%PORTVERSION%%/math/pkgIndex.tcl @dirrm lib/tcllib%%PORTVERSION%%/math -lib/tcllib%%PORTVERSION%%/mime/mime.tcl -lib/tcllib%%PORTVERSION%%/mime/pkgIndex.tcl -lib/tcllib%%PORTVERSION%%/mime/smtp.tcl -lib/tcllib%%PORTVERSION%%/mime/mime.test lib/tcllib%%PORTVERSION%%/mime/README.html @@ -36,2 +43,6 @@ lib/tcllib%%PORTVERSION%%/mime/README.tx lib/tcllib%%PORTVERSION%%/mime/README.xml +lib/tcllib%%PORTVERSION%%/mime/mime.tcl +lib/tcllib%%PORTVERSION%%/mime/mime.test +lib/tcllib%%PORTVERSION%%/mime/pkgIndex.tcl +lib/tcllib%%PORTVERSION%%/mime/smtp.tcl @dirrm lib/tcllib%%PORTVERSION%%/mime @@ -39,5 +50,10 @@ lib/tcllib%%PORTVERSION%%/ncgi/formdata. lib/tcllib%%PORTVERSION%%/ncgi/ncgi.tcl -lib/tcllib%%PORTVERSION%%/ncgi/pkgIndex.tcl lib/tcllib%%PORTVERSION%%/ncgi/ncgi.test +lib/tcllib%%PORTVERSION%%/ncgi/pkgIndex.tcl @dirrm lib/tcllib%%PORTVERSION%%/ncgi +lib/tcllib%%PORTVERSION%%/nntp/nntp.tcl +lib/tcllib%%PORTVERSION%%/nntp/pkgIndex.tcl +lib/tcllib%%PORTVERSION%%/nntp/rfc977.txt +@dirrm lib/tcllib%%PORTVERSION%%/nntp +lib/tcllib%%PORTVERSION%%/pkgIndex.tcl lib/tcllib%%PORTVERSION%%/pop3/pkgIndex.tcl @@ -49,9 +65,29 @@ lib/tcllib%%PORTVERSION%%/profiler/profi @dirrm lib/tcllib%%PORTVERSION%%/profiler -lib/tcllib%%PORTVERSION%%/html/html.tcl -lib/tcllib%%PORTVERSION%%/html/pkgIndex.tcl -lib/tcllib%%PORTVERSION%%/html/html.test -@dirrm lib/tcllib%%PORTVERSION%%/html -lib/tcllib%%PORTVERSION%%/pkgIndex.tcl -lib/tcllib%%PORTVERSION%%/install.sh -lib/tcllib%%PORTVERSION%%/license.terms +lib/tcllib%%PORTVERSION%%/struct/graph.tcl +lib/tcllib%%PORTVERSION%%/struct/graph.test +lib/tcllib%%PORTVERSION%%/struct/pkgIndex.tcl +lib/tcllib%%PORTVERSION%%/struct/queue.tcl +lib/tcllib%%PORTVERSION%%/struct/queue.test +lib/tcllib%%PORTVERSION%%/struct/stack.tcl +lib/tcllib%%PORTVERSION%%/struct/stack.test +lib/tcllib%%PORTVERSION%%/struct/struct.tcl +lib/tcllib%%PORTVERSION%%/struct/tree.tcl +lib/tcllib%%PORTVERSION%%/struct/tree.test +@dirrm lib/tcllib%%PORTVERSION%%/struct +lib/tcllib%%PORTVERSION%%/textutil/adjust.tcl +lib/tcllib%%PORTVERSION%%/textutil/adjust.test +lib/tcllib%%PORTVERSION%%/textutil/pkgIndex.tcl +lib/tcllib%%PORTVERSION%%/textutil/split.tcl +lib/tcllib%%PORTVERSION%%/textutil/split.test +lib/tcllib%%PORTVERSION%%/textutil/tabify.tcl +lib/tcllib%%PORTVERSION%%/textutil/tabify.test +lib/tcllib%%PORTVERSION%%/textutil/textutil.tcl +lib/tcllib%%PORTVERSION%%/textutil/textutil.test +lib/tcllib%%PORTVERSION%%/textutil/trim.tcl +lib/tcllib%%PORTVERSION%%/textutil/trim.test +@dirrm lib/tcllib%%PORTVERSION%%/textutil +lib/tcllib%%PORTVERSION%%/uri/pkgIndex.tcl +lib/tcllib%%PORTVERSION%%/uri/uri.tcl +lib/tcllib%%PORTVERSION%%/uri/uri.test +@dirrm lib/tcllib%%PORTVERSION%%/uri @dirrm lib/tcllib%%PORTVERSION%% >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 1 13: 3:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail12.intelnet.net.gt (mail12.intelnet.net.gt [216.230.128.18]) by hub.freebsd.org (Postfix) with ESMTP id E754537B400; Fri, 1 Dec 2000 13:03:24 -0800 (PST) Received: from concyt.gob.gt (MC60-156.intelnet.net.gt [216.230.156.60] (may be forged)) by mail12.intelnet.net.gt (Pro-8.9.3/8.9.3) with ESMTP id PAA09283; Fri, 1 Dec 2000 15:00:11 +0600 (GMT) Message-ID: <3A2812B6.C11F712E@concyt.gob.gt> Date: Fri, 01 Dec 2000 15:05:58 -0600 From: Victor Carranza Organization: Grupo Tecno X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.0.36 i386) X-Accept-Language: en MIME-Version: 1.0 To: jmz@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: cd-write-1.4.1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there any documentation for cd-write? I haven't found any. Does it work with ATAPI writers? Many thanks in advance for your help. Best regards, Victor Carranza To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 13:30: 8 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E369837B402 for ; Fri, 1 Dec 2000 13:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB1LU1V54697; Fri, 1 Dec 2000 13:30:01 -0800 (PST) (envelope-from gnats) Received: from mail.rdc1.tn.home.com (ha1.rdc1.tn.home.com [24.2.7.66]) by hub.freebsd.org (Postfix) with ESMTP id C864A37B400 for ; Fri, 1 Dec 2000 13:21:35 -0800 (PST) Received: from megalith.bp.aventail.com ([24.12.70.142]) by mail.rdc1.tn.home.com (InterMail vM.4.01.02.00 201-229-116) with ESMTP id <20001201212134.GJJC13852.mail.rdc1.tn.home.com@megalith.bp.aventail.com> for ; Fri, 1 Dec 2000 13:21:34 -0800 Received: (from wmperry@localhost) by megalith.bp.aventail.com (8.11.1/8.9.3) id eB1LLT502023; Fri, 1 Dec 2000 16:21:29 -0500 (EST) (envelope-from wmperry) Message-Id: <200012012121.eB1LLT502023@megalith.bp.aventail.com> Date: Fri, 1 Dec 2000 16:21:29 -0500 (EST) From: "William M. Perry" Reply-To: wmperry@aventail.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23214: NTLM support for ports/mail/fetchmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23214 >Category: ports >Synopsis: Fetchmail currently builds without NTLM auth support >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 01 13:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: William M. Perry >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: >Description: Currently there is no way to make the fetchmail port build with support for NTLM authentication. This is required to authenticate against MS Exchange servers using IMAP without exposing your password in the clear. >How-To-Repeat: Configure fetchmail to talk to an Exchange server using imap. My configuration looks like: poll mail.in.aventail.com proto imap plugin '/usr/local/aventail/bin/s5connect %h %p' user wmperry@aventail pass LA-DEE-DAH-YEAH-RIGHT Replace your exchange server, username, and password of course. You need to specify the username with 'user@domain' though. Currently this will just fail the authentication because no NTLM support is available. >Fix: Need to add --enable-NTLM to CONFIGURE_ARGS. There are no external dependencies that I could find. Patch follows: Index: mail/fetchmail/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/fetchmail/Makefile,v retrieving revision 1.111 diff -c -w -r1.111 Makefile *** mail/fetchmail/Makefile 2000/11/30 08:51:48 1.111 --- mail/fetchmail/Makefile 2000/12/01 21:19:00 *************** *** 50,55 **** --- 50,59 ---- CONFIGURE_ARGS += --with-kerberos5=${KRB5_HOME} .endif + .if defined(USE_NTLM) + CONFIGURE_ARGS += --enable-NTLM + .endif + FDOC= ${PREFIX}/share/doc/fetchmail pre-patch: >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 1 13:47: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from prydn.tacni.net (207-55-167-109.dhc.net [207.55.167.109]) by hub.freebsd.org (Postfix) with SMTP id 9E7D437B400 for ; Fri, 1 Dec 2000 13:46:59 -0800 (PST) Received: (qmail 2987 invoked by uid 1001); 1 Dec 2000 21:46:37 -0000 Date: Fri, 1 Dec 2000 15:46:37 -0600 From: Erich Zigler To: ports@freebsd.org Subject: Weird iconv stuff. (May be my fault) Message-ID: <20001201154637.A2970@superhero.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm testing a application to upgrade the port. When I compile I get this error... e-font.o: In function `e_font_to_native': /usr/home/needo/gabber/src/e-font.c(.text+0x67b): undefined reference to `iconv' e-font.o: In function `e_iconv_from_gdk_font': /usr/home/needo/gabber/src/e-font.c(.text+0xf61): undefined reference to `iconv_open' e-font.o: In function `e_iconv_to_gdk_font': /usr/home/needo/gabber/src/e-font.c(.text+0xff5): undefined reference to `iconv_open' e-unicode.o: In function `e_utf8_from_gtk_string_sized': /usr/home/needo/gabber/src/e-unicode.c(.text+0x409): undefined reference to `iconv' e-unicode.o: In function `e_utf8_to_gtk_string_sized': /usr/home/needo/gabber/src/e-unicode.c(.text+0x5b9): undefined reference to `iconv' Im using the new version of iconv 2.0_1 from ports. Any ideas? -- Erich Zigler It's a hard work, being a network pusher. Your customers beep you in the middle of the night, hungry for another fix. But, what can you do? Customer satisfaction and all that crap... Pays good, though. --Ingvar the Grey, in the Monastery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 16:20:14 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6148C37B400 for ; Fri, 1 Dec 2000 16:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB20K2p82332; Fri, 1 Dec 2000 16:20:02 -0800 (PST) (envelope-from gnats) Received: from cx281057-a.irvn1.occa.home.com (cx281057-a.irvn1.occa.home.com [24.1.175.22]) by hub.freebsd.org (Postfix) with ESMTP id 638E237B400 for ; Fri, 1 Dec 2000 16:16:36 -0800 (PST) Received: (from housel@localhost) by cx281057-a.irvn1.occa.home.com (8.11.1/8.11.1) id eB20Gs472605; Fri, 1 Dec 2000 16:16:54 -0800 (PST) (envelope-from housel) Message-Id: <200012020016.eB20Gs472605@cx281057-a.irvn1.occa.home.com> Date: Fri, 1 Dec 2000 16:16:54 -0800 (PST) From: housel@acm.org Reply-To: housel@acm.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23218: Update of lang/dylan port to 2.3.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Note: There was a bad value `maintainer-update' for the field `>Class:'. It was set to the default value of `sw-bug'. >Number: 23218 >Category: ports >Synopsis: Update of lang/dylan port to 2.3.4 >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: Fri Dec 01 16:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Peter S. Housel >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cx281057-a.irvn1.occa.home.com 5.0-CURRENT FreeBSD 5.0-CURRENT #3: Mon Nov 20 19:16:35 PST 2000 root@cx281057-a.irvn1.occa.home.com:/usr/src/sys/compile/MONDAY i386 >Description: Update lang/dylan port to version 2.3.4 >How-To-Repeat: >Fix: Apply enclosed patch. Remove files/patch-ab and files/patch-ac. diff -r -u /usr/ports/lang/dylan/Makefile ./Makefile --- /usr/ports/lang/dylan/Makefile Mon Jun 26 15:13:35 2000 +++ ./Makefile Wed Nov 22 10:35:50 2000 @@ -6,7 +6,7 @@ # PORTNAME= dylan -PORTVERSION= 2.2.0 +PORTVERSION= 2.3.4 CATEGORIES= lang MASTER_SITES= ftp://berlin.ccc.de/pub/gd/src/ \ ftp://berlin.ccc.de/pub/gd/FreeBSD/ \ @@ -18,19 +18,27 @@ ftp://ftp.infodrom.north.de/pub/unix/language/dylan/gwydion/FreeBSD/ \ ftp://ftp.fu-berlin.de/pub/unix/languages/dylan/src/ \ ftp://ftp.fu-berlin.de/pub/unix/languages/dylan/FreeBSD/ -DISTNAME= gd-2.2.0 -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} d2c-2.2.0-FreeBSD.gz +DISTNAME= gd-${PORTVERSION} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} d2c-${PORTVERSION}-FreeBSD.gz +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= housel@acm.org -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -WRKSRC= ${WRKDIR}/gd/src +RUN_DEPENDS= gmake:${PORTSDIR}/devel/gmake \ + libtool:${PORTSDIR}/devel/libtool + +WRKSRC= ${WRKDIR}/gd-${PORTVERSION} GNU_CONFIGURE= yes CONFIGURE_ARGS= --srcdir=$(WRKSRC) -CONFIGURE_ENV= D2C="$(WRKDIR)/d2c" +CONFIGURE_ENV= D2C="$(WRKDIR)/d2c -p$(WRKSRC)/d2c/compiler/platforms.descr" + +PLIST_SUB= DYLANVER="${PORTVERSION}" DYLANARCH="x86-freebsd-elf-gcc" +INSTALLS_SHLIB= yes +LDCONFIG_DIRS= %%PREFIX%%/lib/dylan/%%DYLANVER%%/%%DYLANARCH%% USE_GMAKE= yes +USE_LIBTOOL= yes MAKEFILE= GNUmakefile ALL_TARGET= default @@ -39,7 +47,7 @@ MAN7= dylan.7 gwydion.7 post-extract: - $(GUNZIP_CMD) -c $(DISTDIR)/d2c-2.2.0-FreeBSD.gz > $(WRKDIR)/d2c + $(GUNZIP_CMD) -c $(DISTDIR)/d2c-$(PORTVERSION)-FreeBSD.gz >$(WRKDIR)/d2c ${CHMOD} ugo+x $(WRKDIR)/d2c .include --- /usr/ports/lang/dylan/distinfo Tue Apr 20 23:52:09 1999 +++ ./distinfo Wed Nov 22 11:19:00 2000 @@ -1,2 +1,2 @@ -MD5 (gd-2.2.0.tar.gz) = f233d92c32abd6f9d32412010bd5b327 -MD5 (d2c-2.2.0-FreeBSD.gz) = 610b2f20c19a7e6bb91c9f65ed45a5fd +MD5 (gd-2.3.4.tar.gz) = bd3935845aab5342af050bb2a110f892 +MD5 (d2c-2.3.4-FreeBSD.gz) = 362aae2edd82c970ccb63521775d4d55 Only in /usr/ports/lang/dylan/files: patch-ab Only in /usr/ports/lang/dylan/files: patch-ac diff -r -u /usr/ports/lang/dylan/pkg-plist ./pkg-plist --- /usr/ports/lang/dylan/pkg-plist Tue Apr 20 23:52:10 1999 +++ ./pkg-plist Wed Nov 22 11:12:31 2000 @@ -1,77 +1,146 @@ -bin/d2c bin/mindy -bin/mindyexec -bin/gen-makefile bin/mindycomp +bin/mindyexec +bin/d2c +bin/dybug bin/parsergen bin/melange +bin/gen-makefile bin/mk-build-tree bin/line-count bin/make-dylan-app +bin/make-dylan-lib bin/mk-rcs-links -bin/lisp2dylan -bin/synopsis -bin/make-exports etc/platforms.descr include/runtime.h -lib/dylan/dylan-lib.dbc -lib/dylan/random-lib.dbc -lib/dylan/tk-lib.dbc -lib/dylan/inspector-base-lib.dbc -lib/dylan/text-inspector-lib.dbc -lib/dylan/x-inspector-lib.dbc -lib/dylan/streams.lib.du -lib/dylan/libstreams.a -lib/dylan/streams-lib.dbc -lib/dylan/standard-io.lib.du -lib/dylan/libstdio.a -lib/dylan/standard-io-lib.dbc -lib/dylan/print.lib.du -lib/dylan/libprint.a -lib/dylan/print-lib.dbc -lib/dylan/format.lib.du -lib/dylan/libformat.a -lib/dylan/format-lib.dbc -lib/dylan/libcollext.a -lib/dylan/libregexp.a -lib/dylan/collection-extensions.lib.du -lib/dylan/collection-extensions-lib.dbc -lib/dylan/table-extensions.lib.du -lib/dylan/libtableext.a -lib/dylan/table-extensions-lib.dbc -lib/dylan/string-extensions.lib.du -lib/dylan/libstringext.a -lib/dylan/string-extensions-lib.dbc -lib/dylan/regular-expressions.lib.du -lib/dylan/regular-expressions-lib.dbc -lib/dylan/format-out.lib.du -lib/dylan/libformatout.a -lib/dylan/format-out-lib.dbc -lib/dylan/matrix.lib.du -lib/dylan/libmatrix.a -lib/dylan/matrix-lib.dbc -lib/dylan/libstreamext.a -lib/dylan/stream-extensions.lib.du -lib/dylan/stream-extensions-lib.dbc -lib/dylan/transcendental.lib.du -lib/dylan/libtranscendental.a -lib/dylan/transcendental-lib.dbc -lib/dylan/libruntime.a -lib/dylan/libgc.a -lib/dylan/dylan.lib.du -lib/dylan/libdylan.a -lib/dylan/melange-support.lib.du -lib/dylan/libmelange.a -lib/dylan/random.lib.du -lib/dylan/librandom.a -lib/dylan/elisp/dylan-mode.el -lib/dylan/elisp/fill-comment.el -lib/dylan/elisp/page-cmds.el -lib/dylan/elisp/mindy-comp.el -lib/dylan/elisp/goto-def.el -lib/dylan/elisp/dylan-params.el -lib/dylan/parse-arguments.lib.du -lib/dylan/libgetopt.a -lib/dylan/parse-arguments-lib.dbc -@dirrm lib/dylan/elisp +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/elisp/dylan-mode.el +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/elisp/fill-comment.el +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/elisp/page-cmds.el +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/elisp/mindy-comp.el +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/elisp/goto-def.el +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/elisp/dylan-params.el +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/dylan-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/random-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/tk-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/inspector-base-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/text-inspector-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/x-inspector-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libruntime.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libruntime.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libruntime.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libgc.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libgc.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libgc.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/dylan.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libdylan.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libdylan.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libdylan.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/melange-support.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libmelange-support.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libmelange-support.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libmelange-support.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/garbage-collection.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libgarbage-collection.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libgarbage-collection.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libgarbage-collection.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/streams.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstreams.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstreams.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstreams.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/streams-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/standard-io.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstandard-io.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstandard-io.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstandard-io.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/standard-io-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/print.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libprint.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libprint.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libprint.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/print-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/format.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libformat.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libformat.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libformat.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/format-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/collection-extensions.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcollection-extensions.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcollection-extensions.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcollection-extensions.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/collection-extensions-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/table-extensions.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtable-extensions.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtable-extensions.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtable-extensions.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/table-extensions-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/string-extensions.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstring-extensions.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstring-extensions.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstring-extensions.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/string-extensions-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/regular-expressions.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libregular-expressions.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libregular-expressions.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libregular-expressions.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/regular-expressions-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/format-out.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libformat-out.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libformat-out.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libformat-out.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libio.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/format-out-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/matrix.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libmatrix.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libmatrix.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libmatrix.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/matrix-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/stream-extensions.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstream-extensions.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstream-extensions.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libstream-extensions.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/stream-extensions-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/transcendental.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtranscendental.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtranscendental.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtranscendental.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/transcendental-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/parse-arguments.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libparse-arguments.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libparse-arguments.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libparse-arguments.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/parse-arguments-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/base-file-system.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libbase-file-system.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libbase-file-system.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libbase-file-system.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/base-file-system-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/common-extensions.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-extensions.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-extensions.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-extensions.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/common-dylan.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-dylan.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/io.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-dylan.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-dylan.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libio.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libio.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/io-lib.dbc +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/file-system.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libfile-system.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libfile-system.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libfile-system.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/system.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libsystem.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libsystem.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libsystem.a +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/random.lib.du +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/librandom.so.0 +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/librandom.so +lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/librandom.a +@exec mkdir %D/lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/dylan-user +@dirrm lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/dylan-user +@dirrm lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/elisp +@dirrm lib/dylan/%%DYLANVER%%/%%DYLANARCH%% +@dirrm lib/dylan/%%DYLANVER%% @dirrm lib/dylan >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 1 16:22:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from wildfire.wwwtek.com (unknown [64.69.79.193]) by hub.freebsd.org (Postfix) with ESMTP id 52E1237B401 for ; Fri, 1 Dec 2000 16:22:25 -0800 (PST) Received: (from root@localhost) by wildfire.wwwtek.com (8.9.3/8.9.3) id RAA17362 for ports@freebsd.org; Fri, 1 Dec 2000 17:24:15 -0500 Date: Fri, 1 Dec 2000 17:24:15 -0500 From: rebecca@casinooffers.com Message-Id: <200012012224.RAA17362@wildfire.wwwtek.com> Content-type: text/html To: ports@freebsd.org Subject: RE: Your check Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org QUEENS CLUB MAIL

Casino December MEGA Bonus!. . .

$200 in COMP Rewards & $20 Deposit Bonus & $25 Second Deposit Bonus!!

Not only this month are we are giving away 500 player rewards points worth $200! - but when you open an account we will give you $20 cash and $25 on your SECOND Deposit.

Thats right - $200 in Comps - $20 welcome bonus - $25 second Bonus!

We are the ONLY Boss Media Casino with Player Rewards or \'comps\'! Why play anywhere else? We have over 500 of the worlds most famous merchants you can redeem your points with from TGIF\'s to Macys to Circuit City. Best of all it\'s EASY and FREE. All you have to do is play!
Click here for more info!

Or enter http://www.queensclub.com/re/re.pl/REF11791 in your browser.

SPECTACULAR GRAPHICS : UNIQUE FEATURES : FAST PAYOUTS

TOP 5GAMBLING.COM SITE : BETCOUNTER.COM TOP 5 SITE

With 9 games; Blackjack, Craps, Video Poker, Baccarat, Caribbean Poker, Pai Gow, Roulette, Slots, Keno and more to come. The Queen invites you to step inside, pull up a chair and join her in the Casino where you will be treated like royalty.

VIPs! - We have launched our Exclusive VIP area for the elite on-line casino guest,. With very special rewards and dedicated support, this service is truly one of a kind. Stop by and enquire about opening an account with Queens Club Casino.



This email was sent to: ports@freebsd.org


To be removed from this mailing list, please visit http://64.69.79.20/members/remove.cgi and enter your email address (listed above) to be removed.



To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 19:30: 5 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53A2A37B401 for ; Fri, 1 Dec 2000 19:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23U1f05940; Fri, 1 Dec 2000 19: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 9FE7637B400 for ; Fri, 1 Dec 2000 19:29:06 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23T6g05824; Fri, 1 Dec 2000 19:29:06 -0800 (PST) (envelope-from nobody) Message-Id: <200012020329.eB23T6g05824@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:29:06 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23220: Update port: cad/xcircuit to 2.1b9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23220 >Category: ports >Synopsis: Update port: cad/xcircuit to 2.1b9 >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 01 19:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 2.1b9 >How-To-Repeat: >Fix: diff -urN /usr/ports/cad/xcircuit/Makefile cad/xcircuit/Makefile --- /usr/ports/cad/xcircuit/Makefile Tue Nov 14 20:36:25 2000 +++ cad/xcircuit/Makefile Fri Dec 1 01:21:11 2000 @@ -6,7 +6,7 @@ # PORTNAME= xcircuit -PORTVERSION= 2.1b8 +PORTVERSION= 2.1b9 CATEGORIES= cad MASTER_SITES= http://bach.ece.jhu.edu/~tim/programs/xcircuit/archive/ diff -urN /usr/ports/cad/xcircuit/distinfo cad/xcircuit/distinfo --- /usr/ports/cad/xcircuit/distinfo Tue Nov 14 20:36:26 2000 +++ cad/xcircuit/distinfo Fri Dec 1 01:23:55 2000 @@ -1 +1 @@ -MD5 (xcircuit-2.1b8.tar.bz2) = efa31056f1e30b1c2966cd66d8a3fc25 +MD5 (xcircuit-2.1b9.tar.bz2) = 0e62855929b80f6a28dc8824f59dcd7d >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 1 19:40:12 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53BAB37B698 for ; Fri, 1 Dec 2000 19:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23e1k06612; Fri, 1 Dec 2000 19: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 4764A37B400 for ; Fri, 1 Dec 2000 19:30:09 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23U9K05951; Fri, 1 Dec 2000 19:30:09 -0800 (PST) (envelope-from nobody) Message-Id: <200012020330.eB23U9K05951@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:30:09 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23221: Update port: editors/dedit to 0.6.2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23221 >Category: ports >Synopsis: Update port: editors/dedit to 0.6.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: Fri Dec 01 19:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.6.2.1 >How-To-Repeat: >Fix: diff -urN /usr/ports/editors/dedit/Makefile editors/dedit/Makefile --- /usr/ports/editors/dedit/Makefile Thu Nov 30 05:09:56 2000 +++ editors/dedit/Makefile Fri Dec 1 01:45:16 2000 @@ -6,7 +6,7 @@ # PORTNAME= dedit -PORTVERSION= 0.6.2 +PORTVERSION= 0.6.2.1 CATEGORIES= editors gnome MASTER_SITES= ftp://ftp.debian.org/debian/dists/unstable/main/source/editors/ DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -27,6 +27,10 @@ .if defined(KANJI) MANLANG= "" ja .endif + +pre-patch: + @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ + 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g' post-install: .if defined(KANJI) diff -urN /usr/ports/editors/dedit/distinfo editors/dedit/distinfo --- /usr/ports/editors/dedit/distinfo Fri Oct 20 20:18:12 2000 +++ editors/dedit/distinfo Thu Nov 30 05:13:28 2000 @@ -1 +1 @@ -MD5 (dedit_0.6.2.tar.gz) = ef5ad55b7a15865d1e550410e22f9610 +MD5 (dedit_0.6.2.1.tar.gz) = 1370a3f1beedb9cdf22608165ef4f92f diff -urN /usr/ports/editors/dedit/pkg-plist editors/dedit/pkg-plist --- /usr/ports/editors/dedit/pkg-plist Mon Jan 31 17:43:45 2000 +++ editors/dedit/pkg-plist Thu Nov 30 05:23:27 2000 @@ -1,2 +1,3 @@ bin/dedit +share/gnome/apps/Applications/dedit.desktop share/locale/ja/LC_MESSAGES/dedit.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 Fri Dec 1 19:40:26 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7841D37B69B for ; Fri, 1 Dec 2000 19:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23e1d06621; Fri, 1 Dec 2000 19: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 3AE2737B400 for ; Fri, 1 Dec 2000 19:31:11 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23VB006023; Fri, 1 Dec 2000 19:31:11 -0800 (PST) (envelope-from nobody) Message-Id: <200012020331.eB23VB006023@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:31:11 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23222: Update port: ftp/pavuk to 0.9.26 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23222 >Category: ports >Synopsis: Update port: ftp/pavuk to 0.9.26 >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 01 19:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.9pl26 New file: files/patch-af Remove file: files/patch-ab files/patch-ac files/patch-ad >How-To-Repeat: >Fix: diff -urN /usr/ports/ftp/pavuk/Makefile ftp/pavuk/Makefile --- /usr/ports/ftp/pavuk/Makefile Fri Sep 22 23:17:21 2000 +++ ftp/pavuk/Makefile Fri Dec 1 02:10:57 2000 @@ -5,56 +5,55 @@ # $FreeBSD: ports/ftp/pavuk/Makefile,v 1.19 2000/09/22 01:58:53 kris Exp $ # -PORTNAME= pavuk -PORTVERSION= 0.9.18 -CATEGORIES= ftp www -MASTER_SITES= ${MASTER_SITE_SUNSITE} \ - ftp://ftp.idata.sk/pub/unix/www/ \ - ftp://ftp.phacka.sk/pub/pavuk/ \ - http://www.idata.sk/~ondrej/sw/ -MASTER_SITE_SUBDIR= X11/gtkbuffet/apps/pavuk -DISTNAME= ${PORTNAME}-0.9pl18 -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -USE_AUTOCONF= yes - -.if defined(WIITHOUT_X11) -CONFIGURE_ARGS= --disable-gtk +PORTNAME= pavuk +PORTVERSION= 0.9.26 +CATEGORIES= ftp www +MASTER_SITES= ${MASTER_SITE_SUNSITE} \ + http://www.idata.sk/~ondrej/sw/ +MASTER_SITE_SUBDIR= apps/www/mirroring +DISTNAME= ${PORTNAME}-0.9pl26 +EXTRACT_SUFX= .tgz + +MAINTAINER= ports@FreeBSD.org + +LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext + +WANT_GTK= yes +USE_AUTOMAKE= yes +AUTOMAKE_ARGS= --include-deps +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --with-locale-dir=${LOCALBASE}/share/locale \ + --disable-debug --disable-gnome --enable-threads + +MAN1= pavuk.1 + +.include + +.if defined(HAVE_GTK) +USE_GTK= yes +CONFIGURE_ARGS+= --with-gtk-config="${GTK_CONFIG:T}" .else -CONFIGURE_ARGS= --with-xpm-includes=${X11BASE}/include --disable-gtk -USE_XPM= yes +CONFIGURE_ARGS+= --disable-gtk .endif -USE_GMAKE= yes - .if defined(WITH_SSL) -USE_OPENSSL= YES +USE_OPENSSL= yes .else CONFIGURE_ARGS+= --disable-ssl .endif -MAN1= pavuk.1 +pre-configure: + @cd ${WRKSRC} && aclocal -do-install: - @ ${INSTALL_PROGRAM} ${WRKSRC}/src/pavuk ${PREFIX}/bin - @ ${INSTALL_MAN} ${WRKSRC}/man/pavuk.1 ${PREFIX}/man/man1 - @ ${INSTALL_DATA} ${WRKSRC}/pavukrc.sample ${PREFIX}/etc - @ ${INSTALL_DATA} ${WRKSRC}/pavuk_authinfo.sample ${PREFIX}/etc - @ ${MKDIR} ${PREFIX}/share/locale/cs/LC_MESSAGES - @ ${MKDIR} ${PREFIX}/share/locale/de/LC_MESSAGES - @ ${MKDIR} ${PREFIX}/share/locale/sk/LC_MESSAGES - @ ${INSTALL_DATA} ${WRKSRC}/po/cs.mo ${PREFIX}/share/locale/cs/LC_MESSAGES/pavuk.mo - @ ${INSTALL_DATA} ${WRKSRC}/po/de.mo ${PREFIX}/share/locale/de/LC_MESSAGES/pavuk.mo - @ ${INSTALL_DATA} ${WRKSRC}/po/sk.mo ${PREFIX}/share/locale/sk/LC_MESSAGES/pavuk.mo - @ ${MKDIR} ${PREFIX}/share/icons - @ ${INSTALL_DATA} ${WRKSRC}/icons/*.xpm ${PREFIX}/share/icons +post-install: + ${INSTALL_DATA} ${WRKSRC}/pavuk_authinfo.sample ${PREFIX}/etc + ${INSTALL_DATA} ${WRKSRC}/pavukrc.sample ${PREFIX}/etc .if !defined(NOPORTDOCS) - @ ${MKDIR} ${PREFIX}/share/doc/pavuk -.for file in AUTHORS BUGS ChangeLog FAQ README THANK_TO TODO - @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/pavuk + @${MKDIR} ${PREFIX}/share/doc/pavuk +.for file in AUTHORS BUGS CREDITS ChangeLog FAQ MAILINGLIST NEWS README + ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/pavuk .endfor .endif -.include +.include diff -urN /usr/ports/ftp/pavuk/distinfo ftp/pavuk/distinfo --- /usr/ports/ftp/pavuk/distinfo Thu Aug 5 13:03:42 1999 +++ ftp/pavuk/distinfo Wed Nov 29 04:20:45 2000 @@ -1 +1 @@ -MD5 (pavuk-0.9pl18.tgz) = a7d192948e7f9637f0005489c4f24249 +MD5 (pavuk-0.9pl26.tgz) = cb211efa0219aaf43b9186fa0572681a diff -urN /usr/ports/ftp/pavuk/files/patch-ab ftp/pavuk/files/patch-ab --- /usr/ports/ftp/pavuk/files/patch-ab Thu Aug 5 13:03:43 1999 +++ ftp/pavuk/files/patch-ab Thu Jan 1 09:00:00 1970 @@ -1,26 +0,0 @@ ---- src/net.c.orig Fri Jul 23 03:50:48 1999 -+++ src/net.c Wed Aug 4 20:32:42 1999 -@@ -106,9 +106,9 @@ - { - return -1; - } -- -+#ifndef __FreeBSD__ - fcntl(sock , F_SETFL , O_NONBLOCK); -- -+#endif - rv = connect(sock, (struct sockaddr*)&addr, sizeof(addr)); - if (rv && (errno != EINPROGRESS) && (errno != EISCONN)) - { -@@ -296,9 +296,9 @@ - int rv; - - p = sizeof(caller); -- -+#ifdef __FreeBSD__ - fcntl(sock , F_SETFL , O_NONBLOCK); -- -+#endif - rsock = accept(sock, (struct sockaddr*)&caller, &p); - if ((rsock < 0) && (errno != EWOULDBLOCK)) - { diff -urN /usr/ports/ftp/pavuk/files/patch-ac ftp/pavuk/files/patch-ac --- /usr/ports/ftp/pavuk/files/patch-ac Thu Aug 5 18:10:13 1999 +++ ftp/pavuk/files/patch-ac Thu Jan 1 09:00:00 1970 @@ -1,12 +0,0 @@ ---- src/doc.c.orig Thu Aug 5 02:09:04 1999 -+++ src/doc.c Thu Aug 5 02:09:25 1999 -@@ -18,7 +18,8 @@ - #include - #endif - #ifdef HAVE_FSTATFS --#include -+#include -+#include - #endif - #include - #include diff -urN /usr/ports/ftp/pavuk/files/patch-ad ftp/pavuk/files/patch-ad --- /usr/ports/ftp/pavuk/files/patch-ad Tue Feb 15 16:25:53 2000 +++ ftp/pavuk/files/patch-ad Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- Makefile.in.orig Sun Feb 13 23:12:20 2000 -+++ Makefile.in Sun Feb 13 23:13:13 2000 -@@ -109,7 +109,7 @@ - config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - $(SHELL) ./config.status --recheck - $(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) -- cd $(srcdir) && $(AUTOCONF) -+ cd $(srcdir) && $(CONFIGURE_ENV) $(AUTOCONF) - - # This directory's subdirectories are mostly independent; you can cd - # into them and run `make' without going through this Makefile. diff -urN /usr/ports/ftp/pavuk/files/patch-ae ftp/pavuk/files/patch-ae --- /usr/ports/ftp/pavuk/files/patch-ae Tue Feb 15 16:25:53 2000 +++ ftp/pavuk/files/patch-ae Thu Nov 30 00:56:50 2000 @@ -1,18 +1,41 @@ ---- configure.in.orig Sun Jul 25 15:18:07 1999 -+++ configure.in Thu Feb 10 16:30:46 2000 -@@ -197,14 +197,14 @@ - fi - - if eval "test x$WITH_SSL = xyes"; then +--- configure.in.orig Thu Aug 31 08:37:36 2000 ++++ configure.in Thu Nov 30 00:56:41 2000 +@@ -233,15 +233,15 @@ + CFLAGS="$CFLAGS -I$WITH_SSL_PFX/include" + LDFLAGS="$LDFLAGS -L$WITH_SSL_PFX/lib" + fi - AC_CHECK_LIB(ssl, SSLv23_client_method, SSL_LIBS="-lssl", ,"-lcrypto") + AC_CHECK_LIB(ssl, SSLv23_client_method, SSL_LIBS="-lssl", ,-lcrypto $EXTRA_SSL_LIBS) if test -n "$SSL_LIBS"; then +- AC_CHECK_LIB(ssl, TLSv1_client_method, TLS1=yes, TLS1=no, "-lcrypto") ++ AC_CHECK_LIB(ssl, TLSv1_client_method, TLS1=yes, TLS1=no, "-lcrypto $EXTRA_SLL_LIBS") AC_CHECK_HEADER(ssl.h, SSLEAY=yes, SSLEAY=no) AC_CHECK_HEADER(openssl/ssl.h, OPENSSL=yes, OPENSSL=no) if eval "test x$SSLEAY = xno -a x$OPENSSL = xno"; then - AC_WARN("SSLeay headers not found --\> use --disable-ssl option or set --with-ssl-includes to apropriate location") + AC_MSG_WARN("SSLeay or OpenSSL headers not found --\> use --disable-ssl option or set --with-ssl-includes to apropriate location") fi - AC_CHECK_LIB(crypto, SSLeay, SSL_LIBS="$SSL_LIBS -lcrypto", SSL_LIBS='') + AC_CHECK_LIB(crypto, SSLeay, SSL_LIBS="$SSL_LIBS -lcrypto $EXTRA_SSL_LIBS", SSL_LIBS='', $EXTRA_SSL_LIBS) fi fi + +@@ -250,7 +250,7 @@ + echo 'void f(){}' > conftest.c + if test -z "`${CC-cc} -pthread -c conftest.c 2>&1`"; then + ac_ccpthread_opt=yes +- x_cflags="$x_cflags -pthread -DHAVE_MT" ++ x_cflags="$x_cflags -D_THREAD_SAFE -DHAVE_MT" + x_libs="-pthread $x_libs" + HAVE_MT="yes" + else +@@ -297,8 +297,8 @@ + + dnl Test for gtk + if eval "test x$WITH_GTK = xyes"; then +- AC_CHECK_PROG(GTK_CONFIG, $WITH_GTK_CONFIG, "yes", "no") +- if eval "test x$GTK_CONFIG = xyes"; then ++ AC_CHECK_PROG(GTK_CONFIG_SCRIPT, $WITH_GTK_CONFIG, "yes", "no") ++ if eval "test x$GTK_CONFIG_SCRIPT = xyes"; then + AC_MSG_RESULT("checking for gtk configuration using gtk-config script ...") + if eval "test x$HAVE_MT = xyes"; then + GTK_LIBS=`$WITH_GTK_CONFIG --libs gtk gthread` diff -urN /usr/ports/ftp/pavuk/files/patch-af ftp/pavuk/files/patch-af --- /usr/ports/ftp/pavuk/files/patch-af Thu Jan 1 09:00:00 1970 +++ ftp/pavuk/files/patch-af Wed Nov 29 05:23:02 2000 @@ -0,0 +1,8 @@ +--- icons/Makefile.am.orig Thu Mar 2 07:03:32 2000 ++++ icons/Makefile.am Wed Nov 29 05:22:50 2000 +@@ -1,4 +1,4 @@ +-iconsdir = $(datadir)/icons ++iconsdir = $(pkgdatadir)/icons + + icons_DATA = pavuk_16x16.xpm pavuk_32x32.xpm pavuk_64x64.xpm \ + pavuk_as_icon.xpm pavuk_prg_icon.xpm diff -urN /usr/ports/ftp/pavuk/pkg-plist ftp/pavuk/pkg-plist --- /usr/ports/ftp/pavuk/pkg-plist Fri Jul 14 21:35:13 2000 +++ ftp/pavuk/pkg-plist Thu Nov 30 00:45:30 2000 @@ -1,20 +1,25 @@ bin/pavuk -etc/pavukrc.sample etc/pavuk_authinfo.sample +etc/pavukrc.sample share/doc/pavuk/AUTHORS share/doc/pavuk/BUGS +share/doc/pavuk/CREDITS share/doc/pavuk/ChangeLog share/doc/pavuk/FAQ +share/doc/pavuk/MAILINGLIST +share/doc/pavuk/NEWS share/doc/pavuk/README -share/doc/pavuk/THANK_TO -share/doc/pavuk/TODO -share/icons/pavuk_16x16.xpm -share/icons/pavuk_32x32.xpm -share/icons/pavuk_64x64.xpm -share/icons/pavuk_as_icon.xpm -share/icons/pavuk_prg_icon.xpm +share/pavuk/icons/pavuk_16x16.xpm +share/pavuk/icons/pavuk_32x32.xpm +share/pavuk/icons/pavuk_64x64.xpm +share/pavuk/icons/pavuk_as_icon.xpm +share/pavuk/icons/pavuk_prg_icon.xpm share/locale/cs/LC_MESSAGES/pavuk.mo share/locale/de/LC_MESSAGES/pavuk.mo +share/locale/es/LC_MESSAGES/pavuk.mo +share/locale/fr/LC_MESSAGES/pavuk.mo +share/locale/it/LC_MESSAGES/pavuk.mo share/locale/sk/LC_MESSAGES/pavuk.mo +@dirrm share/pavuk/icons +@dirrm share/pavuk @dirrm share/doc/pavuk -@unexec rmdir %D/share/icons > /dev/null 2>&1 || 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 1 19:40:31 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C60BB37B6A1 for ; Fri, 1 Dec 2000 19:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23e1606639; Fri, 1 Dec 2000 19: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 6A03337B400 for ; Fri, 1 Dec 2000 19:32:59 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23WxF06132; Fri, 1 Dec 2000 19:32:59 -0800 (PST) (envelope-from nobody) Message-Id: <200012020332.eB23WxF06132@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:32:59 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23224: Update port: graphics/gphoto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23224 >Category: ports >Synopsis: Update port: graphics/gphoto >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 01 19:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Fix MASTER_SITES >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/gphoto/Makefile graphics/gphoto/Makefile --- /usr/ports/graphics/gphoto/Makefile Thu Oct 5 22:48:23 2000 +++ graphics/gphoto/Makefile Wed Nov 29 02:57:38 2000 @@ -8,8 +8,7 @@ PORTNAME= gphoto PORTVERSION= 0.4.3 CATEGORIES= graphics -MASTER_SITES= ftp://ftp.gphoto.org/projects/gphoto/pub/tar/stable/ \ - ftp://ftp.uk.linux.org/pub/gphoto/0.4/ +MASTER_SITES= http://www.gphoto.net/dist/ MAINTAINER= ports@FreeBSD.org @@ -17,9 +16,9 @@ USE_IMLIB= yes USE_LIBTOOL= yes -INSTALLS_SHLIB= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +INSTALLS_SHLIB= yes MAN1= gphoto.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 Fri Dec 1 19:40:39 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F13C437B6A3 for ; Fri, 1 Dec 2000 19:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23e1k06648; Fri, 1 Dec 2000 19: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 3A67437B400 for ; Fri, 1 Dec 2000 19:34:40 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23Yeg06254; Fri, 1 Dec 2000 19:34:40 -0800 (PST) (envelope-from nobody) Message-Id: <200012020334.eB23Yeg06254@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:34:40 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23225: Update port: lang/mit-scheme to 7.5.11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23225 >Category: ports >Synopsis: Update port: lang/mit-scheme to 7.5.11 >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 01 19:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 7.5.11 Remove file: files/Makefile >How-To-Repeat: >Fix: diff -urN /usr/ports/lang/mit-scheme/Makefile lang/mit-scheme/Makefile --- /usr/ports/lang/mit-scheme/Makefile Fri Oct 20 20:28:19 2000 +++ lang/mit-scheme/Makefile Thu Nov 30 04:59:44 2000 @@ -6,7 +6,7 @@ # PORTNAME= mit-scheme -PORTVERSION= 7.5.10 +PORTVERSION= 7.5.11 CATEGORIES= lang MASTER_SITES= ftp://ftp.swiss.ai.mit.edu/pub/scheme-7.5/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTVERSION} @@ -20,12 +20,16 @@ NO_BUILD= yes NO_WRKSUBDIR= yes +SCHEME_DIR= ${PREFIX}/lib/mit-scheme + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/scheme ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/bin/bchscheme ${PREFIX}/bin ${TAR} -C ${WRKSRC}/lib -cf - mit-scheme | \ ${TAR} -C ${PREFIX}/lib --unlink -xf - - find ${PREFIX}/lib/mit-scheme | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} - find ${PREFIX}/lib/mit-scheme -type f | xargs ${CHMOD} ${SHAREMODE} + ${LN} -sf ${SCHEME_DIR}/SRC/edwin ${SCHEME_DIR}/edwin/autoload + ${LN} -sf ${SCHEME_DIR}/SRC/runtime ${SCHEME_DIR}/options + find ${SCHEME_DIR} | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} + find ${SCHEME_DIR} -type f | xargs ${CHMOD} ${SHAREMODE} .include diff -urN /usr/ports/lang/mit-scheme/distinfo lang/mit-scheme/distinfo --- /usr/ports/lang/mit-scheme/distinfo Fri Oct 20 20:28:20 2000 +++ lang/mit-scheme/distinfo Thu Nov 30 04:31:02 2000 @@ -1 +1 @@ -MD5 (scheme-7.5.10-ix86-freebsd.tar.gz) = bab056c6768e19630a1997fe04cdfdf3 +MD5 (scheme-7.5.11-ix86-freebsd.tar.gz) = 421b3a60446c4aad3ecce43f42a24637 diff -urN /usr/ports/lang/mit-scheme/files/Makefile lang/mit-scheme/files/Makefile --- /usr/ports/lang/mit-scheme/files/Makefile Sun Mar 26 12:31:03 1995 +++ lang/mit-scheme/files/Makefile Thu Jan 1 09:00:00 1970 @@ -1,4 +0,0 @@ -all: - (cd microcode; make all) -install: - ./install.sh ${PREFIX} diff -urN /usr/ports/lang/mit-scheme/pkg-plist lang/mit-scheme/pkg-plist --- /usr/ports/lang/mit-scheme/pkg-plist Fri Oct 20 20:28:20 2000 +++ lang/mit-scheme/pkg-plist Fri Dec 1 02:48:32 2000 @@ -1,5 +1,6 @@ bin/bchscheme bin/scheme + lib/mit-scheme/SRC/edwin/abbrev.bci lib/mit-scheme/SRC/edwin/ansi.bci lib/mit-scheme/SRC/edwin/argred.bci @@ -173,6 +174,8 @@ lib/mit-scheme/SRC/edwin/xform.bci lib/mit-scheme/SRC/edwin/xmodef.bci lib/mit-scheme/SRC/edwin/xterm.bci +@exec ln -sf %D/lib/mit-scheme/SRC/edwin %D/lib/mit-scheme/edwin/autoload +@unexec rm -f %D/lib/mit-scheme/edwin/autoload lib/mit-scheme/SRC/runtime/advice.bci lib/mit-scheme/SRC/runtime/apply.bci lib/mit-scheme/SRC/runtime/apropos.bci @@ -340,9 +343,25 @@ lib/mit-scheme/SRC/runtime/xeval.bci lib/mit-scheme/SRC/runtime/ystep.bci lib/mit-scheme/SRC/runtime/ystep.com +@exec ln -sf %D/lib/mit-scheme/SRC/runtime %D/lib/mit-scheme/options +@unexec rm -f %D/lib/mit-scheme/options lib/mit-scheme/all.com lib/mit-scheme/compiler.com lib/mit-scheme/doc/COPYING +lib/mit-scheme/doc/imail.html +lib/mit-scheme/doc/imail_1.html +lib/mit-scheme/doc/imail_2.html +lib/mit-scheme/doc/imail_3.html +lib/mit-scheme/doc/imail_4.html +lib/mit-scheme/doc/imail_5.html +lib/mit-scheme/doc/imail_6.html +lib/mit-scheme/doc/imail_7.html +lib/mit-scheme/doc/imail_8.html +lib/mit-scheme/doc/imail_9.html +lib/mit-scheme/doc/imail_abt.html +lib/mit-scheme/doc/imail_fot.html +lib/mit-scheme/doc/imail_ovr.html +lib/mit-scheme/doc/imail_toc.html lib/mit-scheme/doc/index.html lib/mit-scheme/doc/scheme.html lib/mit-scheme/doc/scheme_1.html @@ -424,7 +443,6 @@ lib/mit-scheme/doc/user_ovr.html lib/mit-scheme/doc/user_toc.html lib/mit-scheme/edwin.com -lib/mit-scheme/edwin/autoload lib/mit-scheme/edwin/etc/TUTORIAL lib/mit-scheme/edwin/etc/mime.types lib/mit-scheme/edwin/info/dir @@ -502,7 +520,6 @@ lib/mit-scheme/imail/url.bci lib/mit-scheme/imail/url.com lib/mit-scheme/optiondb.scm -lib/mit-scheme/options lib/mit-scheme/runtime.com lib/mit-scheme/sos/class.bci lib/mit-scheme/sos/class.com >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 1 19:40:45 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B48637B400 for ; Fri, 1 Dec 2000 19:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23e1306630; Fri, 1 Dec 2000 19: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 149FD37B400 for ; Fri, 1 Dec 2000 19:32:15 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23WFe06102; Fri, 1 Dec 2000 19:32:15 -0800 (PST) (envelope-from nobody) Message-Id: <200012020332.eB23WFe06102@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:32:15 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23223: Update port: games/crossfire Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23223 >Category: ports >Synopsis: Update port: games/crossfire >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 01 19:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Fix dependancy - Support CFLAGS/PREFIX properly - tar -> TAR New file: pkg-message Remove file: scripts/pre-configure >How-To-Repeat: >Fix: diff -urN /usr/ports/games/crossfire/Makefile games/crossfire/Makefile --- /usr/ports/games/crossfire/Makefile Thu Oct 26 22:23:18 2000 +++ games/crossfire/Makefile Sat Dec 2 05:52:23 2000 @@ -6,23 +6,23 @@ # PORTNAME= crossfire -PORTVERSION= ${MAJ}.${MIN}.${PL} +PORTVERSION= 0.94.3 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= ftp://ftp.ifi.uio.no/pub/crossfire/old/ \ ftp://ftp.sunet.se/pub/unix/games/crossfire/old/ DISTFILES= ${CF_SOURCES} ${CF_DOC} ${CF_MAPS} ${CF_SOUNDS} \ ${CF_ARCH} ${CF_CLSERV} +EXTRACT_ONLY= ${CF_SOURCES} ${CF_DOC} MAINTAINER= ports@FreeBSD.org -BUILD_DEPENDS= rplay:${PORTSDIR}/audio/rplay +LIB_DEPENDS= rplay.1:${PORTSDIR}/audio/rplay +BUILD_DEPENDS= xmkmf:${PORTSDIR}/devel/imake-4 -EXTRACT_ONLY= ${CF_SOURCES} ${CF_DOC} USE_PERL5= yes -USE_IMAKE= yes USE_XPM= yes -PREFIX= ${LOCALBASE} -MAN6= crossfire.6 crossedit.6 +MAN6= crossedit.6 crossfire.6 .include @@ -37,36 +37,43 @@ # You need TeX to do this ! Please read the README's ! WANT_CF_ARCH= NO -MAJ= 0 -MIN= 94 -PL= 3 -CF_SOURCES= crossfire-${MAJ}.${MIN}.${PL}.tar.gz -CF_MAPS= crossfire-${MAJ}.${MIN}.${PL}.maps.tar.gz +CF_SOURCES= ${PORTNAME}-${PORTVERSION}.tar.gz +CF_MAPS= ${PORTNAME}-${PORTVERSION}.maps.tar.gz # crossfire doc ready for use -CF_DOC= crossfire-${MAJ}.${MIN}.${PL}.doc.tar.gz +CF_DOC= ${PORTNAME}-${PORTVERSION}.doc.tar.gz # no newer sounds available -CF_SOUNDS= crossfire-${MAJ}.92.7.sounds.tar.gz +CF_SOUNDS= ${PORTNAME}-0.92.7.sounds.tar.gz .if ${WANT_CF_ARCH} == YES || ${WANT_CF_ARCH} == yes # only for rebuild of doc -CF_ARCH= crossfire-${MAJ}.${MIN}.${PL}.arch.tar.gz +CF_ARCH= ${PORTNAME}-${PORTVERSION}.arch.tar.gz .endif #CF_CLSERV= eutl.tar.gz # only for client/server CFDIR= ${PREFIX}/lib/crossfire # crossfire base directory +post-patch: + @${PERL} -pi -e \ + 's|%%LOCALBASE%%|${LOCALBASE}|g ; \ + s|%%X11BASE%%|${X11BASE}|g ; \ + s|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/config/crosssite.def + +do-configure: + @(cd ${CONFIGURE_WRKSRC}; ${SETENV} ${MAKE_ENV} ${XMKMF}) + # If you want to re-make playbook and spoiler you need the ARCH # files and a TeX version with a ,great' amount of max_mem # (I had to rebuild teTeX, that already is in fact ,BigTeX') .if ${WANT_CF_ARCH} == YES || ${WANT_CF_ARCH} == yes post-configure: - (cd ${CFDIR}; tar -xzf ${DISTDIR}/${CF_ARCH}) + ${TAR} -C ${CFDIR} -xzf ${_DISTDIR}/${CF_ARCH} .endif post-install: - @(cd ${CFDIR}/lib; tar -xzf ${DISTDIR}/${CF_MAPS}) - @(cd ${CFDIR}; tar -xzf ${DISTDIR}/${CF_SOUNDS}) - @${MKDIR} ${PREFIX}/share/doc/crossfire - @${CP} -r ${WRKDIR}/crossfire-${MAJ}.${MIN}.${PL}-doc/* \ - ${PREFIX}/share/doc/crossfire + ${INSTALL_MAN} ${WRKSRC}/doc/crossedit.man \ + ${MANPREFIX}/man/man6/crossedit.6 + ${INSTALL_MAN} ${WRKSRC}/doc/crossfire.man \ + ${MANPREFIX}/man/man6/crossfire.6 + @${TAR} -C ${CFDIR}/lib -xzf ${_DISTDIR}/${CF_MAPS} + @${TAR} -C ${CFDIR} -xzf ${_DISTDIR}/${CF_SOUNDS} @${TOUCH} ${CFDIR}/lib/bookarch @${CHMOD} 664 ${CFDIR}/lib/bookarch @${TOUCH} ${CFDIR}/lib/forbid @@ -77,9 +84,11 @@ @${CHMOD} 0664 ${CFDIR}/lib/highscore @${CHOWN} root.games ${PREFIX}/bin/crossfire @${CHMOD} 2555 ${PREFIX}/bin/crossfire - ${ECHO} "Note: to start crossfire in clientmode" - ${ECHO} " crossfire -xpm" - ${ECHO} "Note: don't forget to update ${PREFIX}/etc/rplay.conf" - ${ECHO} " with new sounds in ${CFDIR}/sounds" +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/crossfire + @${TAR} -C ${WRKDIR}/${PORTNAME}-${PORTVERSION}-doc -cf - . | \ + ${TAR} -C ${PREFIX}/share/doc/crossfire --unlink -xf - +.endif + @${SED} -e "s:/usr/local:${LOCALBASE}:g" ${PKGMESSAGE} .include diff -urN /usr/ports/games/crossfire/files/patch-aa games/crossfire/files/patch-aa --- /usr/ports/games/crossfire/files/patch-aa Fri May 8 22:51:28 1998 +++ games/crossfire/files/patch-aa Sat Dec 2 05:15:20 2000 @@ -1,5 +1,5 @@ ---- config/crosssite.def.orig Thu Apr 16 04:07:49 1998 -+++ config/crosssite.def Fri May 8 14:51:14 1998 +--- config/crosssite.def.orig Sat Aug 1 19:23:58 1998 ++++ config/crosssite.def Sat Dec 2 05:14:43 2000 @@ -36,10 +36,8 @@ * (mwedel@pyramid.com) */ @@ -8,7 +8,7 @@ #define XPM_PIX -#define Xpm_LibDir /usr/local/lib/ -*/ -+#define Xpm_LibDir !!X11BASE!!/lib/ ++#define Xpm_LibDir %%X11BASE%%/lib/ /* If your include files are someplace odd */ /*#define Xpm_Include /usr/local/include*/ @@ -17,14 +17,14 @@ * overall. */ -#define CTop /home/hugin/a/crossfire/crossfire -+#define CTop !!LOCALBASE!!/lib/crossfire ++#define CTop %%PREFIX%%/lib/crossfire /* #define CTop /net/contrib/crossfire */ /*#define CTop /usr/local/games/crossfire*/ /* Binaries location If this is undefined, it default to the standard location for X binaries on your machine. */ -#define CBinDir Concat(CTop,/bin) -+#define CBinDir !!LOCALBASE!!/bin ++#define CBinDir %%PREFIX%%/bin /* Libraries location If this is undefined it defaults to the standard location for X lib files/crossfire on your machine */ @@ -33,23 +33,14 @@ standard location for manual pages on your machine.*/ /* #define CManPath Concat(CTop,/man) */ -#define CManSuffix 6 -+#define CManPath !!LOCALBASE!!/man ++#define CManPath %%PREFIX%%/man +/* #define CManSuffix 6 */ /* Force CC to use the specified options instead of the default -@@ -85,7 +84,7 @@ - * any of the default compiler options for your machine. - */ - /*define ForceCCOPTIONS -O -g -Wall */ --#undef ForceCCOPTIONS -+#define ForceCCOPTIONS -pipe -O - - /* Extra_Flags are added onto the compilers default options. Can be - * quite useful if you just want to add another flag or two, and not -@@ -102,9 +101,8 @@ - /* Add any extra/special libraries that you may need. Make sure you +@@ -103,9 +102,8 @@ * use the -l form or put in the complete path name. + * Linux users may need to add -lcrypt */ -/* -#define Extra_Libraries -lcrypt @@ -59,7 +50,7 @@ /* Force CC to be a specific compilator? Define this to be the * actual compiler (see example). If defined, the default -@@ -160,11 +158,9 @@ +@@ -161,11 +159,9 @@ * too distant future, it probably isn't worth fixing here. */ @@ -68,12 +59,12 @@ -#define RPlayLibDir /usr/local/lib -#define RPlayIncDir /usr/local/include -*/ -+#define RPlayLibDir !!LOCALBASE!!/lib -+#define RPlayIncDir !!LOCALBASE!!/include ++#define RPlayLibDir %%LOCALBASE%%/lib ++#define RPlayIncDir %%LOCALBASE%%/include /* define this if using OpenWindows as your enviroment. This only * needs to be set if the openwindows server you use is -@@ -202,7 +198,7 @@ +@@ -203,7 +199,7 @@ * awk on most other systems will be OK. */ diff -urN /usr/ports/games/crossfire/pkg-message games/crossfire/pkg-message --- /usr/ports/games/crossfire/pkg-message Thu Jan 1 09:00:00 1970 +++ games/crossfire/pkg-message Fri Dec 1 06:18:17 2000 @@ -0,0 +1,4 @@ +Note: to start crossfire in clientmode + crossfire -xpm +Note: don't forget to update /usr/local/etc/rplay.conf + with new sounds in /usr/local/lib/crossfire/sounds diff -urN /usr/ports/games/crossfire/pkg-plist games/crossfire/pkg-plist --- /usr/ports/games/crossfire/pkg-plist Mon Sep 28 11:06:15 1998 +++ games/crossfire/pkg-plist Fri Dec 1 06:18:17 2000 @@ -2024,138 +2024,138 @@ share/doc/crossfire/spoiler.ps share/doc/crossfire/teleporter.doc share/doc/crossfire/xbmtobdf.man -@dirrm lib/crossfire/lib/adm -@dirrm lib/crossfire/lib/players -@dirrm lib/crossfire/lib/help +@dirrm share/doc/crossfire/spoiler-html +@dirrm share/doc/crossfire/spell-docs +@dirrm share/doc/crossfire/playbook-html/fig +@dirrm share/doc/crossfire/playbook-html +@dirrm share/doc/crossfire +@dirrm lib/crossfire/sounds @dirrm lib/crossfire/lib/unique-items -@dirrm lib/crossfire/lib/maps/editor/picks -@dirrm lib/crossfire/lib/maps/editor/walls -@dirrm lib/crossfire/lib/maps/editor -@dirrm lib/crossfire/lib/maps/skud +@dirrm lib/crossfire/lib/players @dirrm lib/crossfire/lib/maps/world -@dirrm lib/crossfire/lib/maps/dtabb/town -@dirrm lib/crossfire/lib/maps/dtabb/quest -@dirrm lib/crossfire/lib/maps/dtabb -@dirrm lib/crossfire/lib/maps/ender/pisland -@dirrm lib/crossfire/lib/maps/ender/temple -@dirrm lib/crossfire/lib/maps/ender/island -@dirrm lib/crossfire/lib/maps/ender -@dirrm lib/crossfire/lib/maps/kar -@dirrm lib/crossfire/lib/maps/city/oldcity -@dirrm lib/crossfire/lib/maps/city/taverns -@dirrm lib/crossfire/lib/maps/city/houses -@dirrm lib/crossfire/lib/maps/city/misc -@dirrm lib/crossfire/lib/maps/city/towers -@dirrm lib/crossfire/lib/maps/city/cannery -@dirrm lib/crossfire/lib/maps/city/shops -@dirrm lib/crossfire/lib/maps/city/kar -@dirrm lib/crossfire/lib/maps/city/magara -@dirrm lib/crossfire/lib/maps/city/mansion -@dirrm lib/crossfire/lib/maps/city -@dirrm lib/crossfire/lib/maps/cd -@dirrm lib/crossfire/lib/maps/eeur -@dirrm lib/crossfire/lib/maps/mcz -@dirrm lib/crossfire/lib/maps/esben -@dirrm lib/crossfire/lib/maps/santo_dominion/houses +@dirrm lib/crossfire/lib/maps/wolfsburg/tt +@dirrm lib/crossfire/lib/maps/wolfsburg/magara/tower2 +@dirrm lib/crossfire/lib/maps/wolfsburg/magara/tower1 +@dirrm lib/crossfire/lib/maps/wolfsburg/magara/cellar1 +@dirrm lib/crossfire/lib/maps/wolfsburg/magara/castle +@dirrm lib/crossfire/lib/maps/wolfsburg/magara +@dirrm lib/crossfire/lib/maps/wolfsburg +@dirrm lib/crossfire/lib/maps/thomas/sisters +@dirrm lib/crossfire/lib/maps/thomas +@dirrm lib/crossfire/lib/maps/test +@dirrm lib/crossfire/lib/maps/terrain +@dirrm lib/crossfire/lib/maps/skud +@dirrm lib/crossfire/lib/maps/santo_dominion/shops @dirrm lib/crossfire/lib/maps/santo_dominion/magara/well -@dirrm lib/crossfire/lib/maps/santo_dominion/magara/north_lighthouse @dirrm lib/crossfire/lib/maps/santo_dominion/magara/south_lighthouse +@dirrm lib/crossfire/lib/maps/santo_dominion/magara/north_lighthouse @dirrm lib/crossfire/lib/maps/santo_dominion/magara/hut @dirrm lib/crossfire/lib/maps/santo_dominion/magara @dirrm lib/crossfire/lib/maps/santo_dominion/lord_byron -@dirrm lib/crossfire/lib/maps/santo_dominion/shops +@dirrm lib/crossfire/lib/maps/santo_dominion/houses @dirrm lib/crossfire/lib/maps/santo_dominion -@dirrm lib/crossfire/lib/maps/hendel -@dirrm lib/crossfire/lib/maps/terrain -@dirrm lib/crossfire/lib/maps/peterm/CTower +@dirrm lib/crossfire/lib/maps/pup_land/s_f +@dirrm lib/crossfire/lib/maps/pup_land/ruin_barbarian +@dirrm lib/crossfire/lib/maps/pup_land/rainbow/red_town +@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv7 +@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv6 +@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv5 +@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv4 +@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv3 +@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv2 +@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv1 +@dirrm lib/crossfire/lib/maps/pup_land/rainbow +@dirrm lib/crossfire/lib/maps/pup_land/raffle +@dirrm lib/crossfire/lib/maps/pup_land/pplant +@dirrm lib/crossfire/lib/maps/pup_land/ordeal +@dirrm lib/crossfire/lib/maps/pup_land/nurnberg/reception +@dirrm lib/crossfire/lib/maps/pup_land/nurnberg/dick +@dirrm lib/crossfire/lib/maps/pup_land/nurnberg/castle_bauer +@dirrm lib/crossfire/lib/maps/pup_land/nurnberg +@dirrm lib/crossfire/lib/maps/pup_land/lone_town/cave +@dirrm lib/crossfire/lib/maps/pup_land/lone_town +@dirrm lib/crossfire/lib/maps/pup_land/kurte +@dirrm lib/crossfire/lib/maps/pup_land/jk +@dirrm lib/crossfire/lib/maps/pup_land/cave_weapon +@dirrm lib/crossfire/lib/maps/pup_land/castle_eureca +@dirrm lib/crossfire/lib/maps/pup_land/begin +@dirrm lib/crossfire/lib/maps/pup_land/ancient/village/siegfried +@dirrm lib/crossfire/lib/maps/pup_land/ancient/village/hole +@dirrm lib/crossfire/lib/maps/pup_land/ancient/village +@dirrm lib/crossfire/lib/maps/pup_land/ancient/ruin +@dirrm lib/crossfire/lib/maps/pup_land/ancient/mountain +@dirrm lib/crossfire/lib/maps/pup_land/ancient/kurte +@dirrm lib/crossfire/lib/maps/pup_land/ancient/castle +@dirrm lib/crossfire/lib/maps/pup_land/ancient +@dirrm lib/crossfire/lib/maps/pup_land @dirrm lib/crossfire/lib/maps/peterm/temple -@dirrm lib/crossfire/lib/maps/peterm/Demonology -@dirrm lib/crossfire/lib/maps/peterm/DragonQuest @dirrm lib/crossfire/lib/maps/peterm/FireTemple +@dirrm lib/crossfire/lib/maps/peterm/DragonQuest +@dirrm lib/crossfire/lib/maps/peterm/Demonology +@dirrm lib/crossfire/lib/maps/peterm/CTower @dirrm lib/crossfire/lib/maps/peterm -@dirrm lib/crossfire/lib/maps/langley/pirates +@dirrm lib/crossfire/lib/maps/navar_city/tower +@dirrm lib/crossfire/lib/maps/navar_city/magara/houses +@dirrm lib/crossfire/lib/maps/navar_city/magara +@dirrm lib/crossfire/lib/maps/navar_city/light +@dirrm lib/crossfire/lib/maps/navar_city/illusion +@dirrm lib/crossfire/lib/maps/navar_city +@dirrm lib/crossfire/lib/maps/mcz @dirrm lib/crossfire/lib/maps/langley/town +@dirrm lib/crossfire/lib/maps/langley/pirates @dirrm lib/crossfire/lib/maps/langley/goblin @dirrm lib/crossfire/lib/maps/langley -@dirrm lib/crossfire/lib/maps/asyvan +@dirrm lib/crossfire/lib/maps/kar +@dirrm lib/crossfire/lib/maps/hendel +@dirrm lib/crossfire/lib/maps/good @dirrm lib/crossfire/lib/maps/generic/volcano @dirrm lib/crossfire/lib/maps/generic +@dirrm lib/crossfire/lib/maps/espen +@dirrm lib/crossfire/lib/maps/esben +@dirrm lib/crossfire/lib/maps/ender/temple +@dirrm lib/crossfire/lib/maps/ender/pisland +@dirrm lib/crossfire/lib/maps/ender/island +@dirrm lib/crossfire/lib/maps/ender +@dirrm lib/crossfire/lib/maps/eeur +@dirrm lib/crossfire/lib/maps/editor/walls +@dirrm lib/crossfire/lib/maps/editor/picks +@dirrm lib/crossfire/lib/maps/editor +@dirrm lib/crossfire/lib/maps/dtabb/town +@dirrm lib/crossfire/lib/maps/dtabb/quest +@dirrm lib/crossfire/lib/maps/dtabb +@dirrm lib/crossfire/lib/maps/dragonisland +@dirrm lib/crossfire/lib/maps/city/towers +@dirrm lib/crossfire/lib/maps/city/taverns +@dirrm lib/crossfire/lib/maps/city/shops +@dirrm lib/crossfire/lib/maps/city/oldcity +@dirrm lib/crossfire/lib/maps/city/misc +@dirrm lib/crossfire/lib/maps/city/mansion +@dirrm lib/crossfire/lib/maps/city/magara +@dirrm lib/crossfire/lib/maps/city/kar +@dirrm lib/crossfire/lib/maps/city/houses +@dirrm lib/crossfire/lib/maps/city/cannery +@dirrm lib/crossfire/lib/maps/city +@dirrm lib/crossfire/lib/maps/cd @dirrm lib/crossfire/lib/maps/brittany/Brest/Castle @dirrm lib/crossfire/lib/maps/brittany/Brest @dirrm lib/crossfire/lib/maps/brittany -@dirrm lib/crossfire/lib/maps/navar_city/illusion -@dirrm lib/crossfire/lib/maps/navar_city/tower -@dirrm lib/crossfire/lib/maps/navar_city/light -@dirrm lib/crossfire/lib/maps/navar_city/magara/houses -@dirrm lib/crossfire/lib/maps/navar_city/magara -@dirrm lib/crossfire/lib/maps/navar_city -@dirrm lib/crossfire/lib/maps/wolfsburg/magara/tower1 -@dirrm lib/crossfire/lib/maps/wolfsburg/magara/cellar1 -@dirrm lib/crossfire/lib/maps/wolfsburg/magara/tower2 -@dirrm lib/crossfire/lib/maps/wolfsburg/magara/castle -@dirrm lib/crossfire/lib/maps/wolfsburg/magara -@dirrm lib/crossfire/lib/maps/wolfsburg/tt -@dirrm lib/crossfire/lib/maps/wolfsburg -@dirrm lib/crossfire/lib/maps/espen -@dirrm lib/crossfire/lib/maps/thomas/sisters -@dirrm lib/crossfire/lib/maps/thomas -@dirrm lib/crossfire/lib/maps/Lake_Country/Mwizard -@dirrm lib/crossfire/lib/maps/Lake_Country/marsh -@dirrm lib/crossfire/lib/maps/Lake_Country/small_buildings -@dirrm lib/crossfire/lib/maps/Lake_Country/Butakis/houses -@dirrm lib/crossfire/lib/maps/Lake_Country/Butakis -@dirrm lib/crossfire/lib/maps/Lake_Country/RETower -@dirrm lib/crossfire/lib/maps/Lake_Country/ebony +@dirrm lib/crossfire/lib/maps/asyvan @dirrm lib/crossfire/lib/maps/Lake_Country/snake_pit -@dirrm lib/crossfire/lib/maps/Lake_Country/Sunset_Lake -@dirrm lib/crossfire/lib/maps/Lake_Country/flight +@dirrm lib/crossfire/lib/maps/Lake_Country/small_buildings @dirrm lib/crossfire/lib/maps/Lake_Country/shops @dirrm lib/crossfire/lib/maps/Lake_Country/quest +@dirrm lib/crossfire/lib/maps/Lake_Country/marsh +@dirrm lib/crossfire/lib/maps/Lake_Country/flight +@dirrm lib/crossfire/lib/maps/Lake_Country/ebony +@dirrm lib/crossfire/lib/maps/Lake_Country/Sunset_Lake +@dirrm lib/crossfire/lib/maps/Lake_Country/RETower +@dirrm lib/crossfire/lib/maps/Lake_Country/Mwizard +@dirrm lib/crossfire/lib/maps/Lake_Country/Butakis/houses +@dirrm lib/crossfire/lib/maps/Lake_Country/Butakis @dirrm lib/crossfire/lib/maps/Lake_Country -@dirrm lib/crossfire/lib/maps/test -@dirrm lib/crossfire/lib/maps/good -@dirrm lib/crossfire/lib/maps/pup_land/ancient/ruin -@dirrm lib/crossfire/lib/maps/pup_land/ancient/village/siegfried -@dirrm lib/crossfire/lib/maps/pup_land/ancient/village/hole -@dirrm lib/crossfire/lib/maps/pup_land/ancient/village -@dirrm lib/crossfire/lib/maps/pup_land/ancient/kurte -@dirrm lib/crossfire/lib/maps/pup_land/ancient/mountain -@dirrm lib/crossfire/lib/maps/pup_land/ancient/castle -@dirrm lib/crossfire/lib/maps/pup_land/ancient -@dirrm lib/crossfire/lib/maps/pup_land/begin -@dirrm lib/crossfire/lib/maps/pup_land/castle_eureca -@dirrm lib/crossfire/lib/maps/pup_land/cave_weapon -@dirrm lib/crossfire/lib/maps/pup_land/jk -@dirrm lib/crossfire/lib/maps/pup_land/kurte -@dirrm lib/crossfire/lib/maps/pup_land/lone_town/cave -@dirrm lib/crossfire/lib/maps/pup_land/lone_town -@dirrm lib/crossfire/lib/maps/pup_land/nurnberg/dick -@dirrm lib/crossfire/lib/maps/pup_land/nurnberg/reception -@dirrm lib/crossfire/lib/maps/pup_land/nurnberg/castle_bauer -@dirrm lib/crossfire/lib/maps/pup_land/nurnberg -@dirrm lib/crossfire/lib/maps/pup_land/ordeal -@dirrm lib/crossfire/lib/maps/pup_land/pplant -@dirrm lib/crossfire/lib/maps/pup_land/raffle -@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv1 -@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv2 -@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv3 -@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv4 -@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv5 -@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv6 -@dirrm lib/crossfire/lib/maps/pup_land/rainbow/Lv7 -@dirrm lib/crossfire/lib/maps/pup_land/rainbow/red_town -@dirrm lib/crossfire/lib/maps/pup_land/rainbow -@dirrm lib/crossfire/lib/maps/pup_land/ruin_barbarian -@dirrm lib/crossfire/lib/maps/pup_land/s_f -@dirrm lib/crossfire/lib/maps/pup_land -@dirrm lib/crossfire/lib/maps/dragonisland @dirrm lib/crossfire/lib/maps +@dirrm lib/crossfire/lib/help +@dirrm lib/crossfire/lib/adm @dirrm lib/crossfire/lib @dirrm lib/crossfire/fonts -@dirrm lib/crossfire/sounds @dirrm lib/crossfire -@dirrm share/doc/crossfire/spell-docs -@dirrm share/doc/crossfire/spoiler-html -@dirrm share/doc/crossfire/playbook-html/fig -@dirrm share/doc/crossfire/playbook-html -@dirrm share/doc/crossfire diff -urN /usr/ports/games/crossfire/scripts/pre-configure games/crossfire/scripts/pre-configure --- /usr/ports/games/crossfire/scripts/pre-configure Sun Aug 29 20:20:58 1999 +++ games/crossfire/scripts/pre-configure Thu Jan 1 09:00:00 1970 @@ -1,19 +0,0 @@ -#! /bin/sh - -# $FreeBSD: ports/games/crossfire/scripts/pre-configure,v 1.2 1999/08/29 11:20:58 peter Exp $ - -# -# patch hacks !!LOCALBASE!! and !!X11BASE!! hooks into the config file -# here we resolve finally our - via /etc/make.conf - variable include -# and destination directories -# -andreas -# - -echo "adjusting paths in ${WRKSRC}/config/crosssite.def" - -perl -pi -e "s=!!LOCALBASE!!=$LOCALBASE=" ${WRKSRC}/config/crosssite.def \ - || exit 1 -perl -pi -e "s=!!X11BASE!!=$X11BASE=" ${WRKSRC}/config/crosssite.def \ - || exit 1 - -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 Fri Dec 1 19:40:50 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C07537B6AA for ; Fri, 1 Dec 2000 19:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23e2M06666; Fri, 1 Dec 2000 19:40: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 5CFC037B400 for ; Fri, 1 Dec 2000 19:36:21 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23aLM06341; Fri, 1 Dec 2000 19:36:21 -0800 (PST) (envelope-from nobody) Message-Id: <200012020336.eB23aLM06341@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:36:21 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23227: Update port: misc/khotkeys Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23227 >Category: ports >Synopsis: Update port: misc/khotkeys >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 01 19:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Add x11/kdebase11 to RUN_DEPENDS - Fix pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/khotkeys/Makefile misc/khotkeys/Makefile --- /usr/ports/misc/khotkeys/Makefile Tue Nov 7 19:37:15 2000 +++ misc/khotkeys/Makefile Thu Nov 30 02:08:19 2000 @@ -16,6 +16,7 @@ kdeui.3:${PORTSDIR}/x11/kdelibs11 \ kfm.3:${PORTSDIR}/x11/kdelibs11 \ kfile.3:${PORTSDIR}/x11/kdelibs11 +RUN_DEPENDS= kcontrol:${PORTSDIR}/x11/kdebase11 NO_LATEST_LINK= yes USE_BZIP2= yes diff -urN /usr/ports/misc/khotkeys/pkg-descr misc/khotkeys/pkg-descr --- /usr/ports/misc/khotkeys/pkg-descr Tue Nov 7 19:37:15 2000 +++ misc/khotkeys/pkg-descr Thu Nov 30 02:10:49 2000 @@ -1 +1,3 @@ Global Hotkey Support for KDE 1.x + +WWW: http://dforce.sh.cvut.cz/~seli/en/khotkeys/ diff -urN /usr/ports/misc/khotkeys/pkg-plist misc/khotkeys/pkg-plist --- /usr/ports/misc/khotkeys/pkg-plist Tue Nov 7 19:37:15 2000 +++ misc/khotkeys/pkg-plist Thu Nov 30 02:05:38 2000 @@ -1 +1,22 @@ +bin/kcmhotkyes +bin/kcmmodifiers bin/khotkeys +share/applnk/Settings/Keys/kcmhotkeys.kdelnk +share/applnk/Settings/Keys/kcmmodifiers.kdelnk +share/doc/HTML/en/kcontrol/kcmhotkeys/index-1.html +share/doc/HTML/en/kcontrol/kcmhotkeys/index-2.html +share/doc/HTML/en/kcontrol/kcmhotkeys/index-3.html +share/doc/HTML/en/kcontrol/kcmhotkeys/index-4.html +share/doc/HTML/en/kcontrol/kcmhotkeys/index-5.html +share/doc/HTML/en/kcontrol/kcmhotkeys/index-6.html +share/doc/HTML/en/kcontrol/kcmhotkeys/index.html +share/doc/HTML/en/kcontrol/kcmmodifiers/index-1.html +share/doc/HTML/en/kcontrol/kcmmodifiers/index-2.html +share/doc/HTML/en/kcontrol/kcmmodifiers/index-3.html +share/doc/HTML/en/kcontrol/kcmmodifiers/index-4.html +share/doc/HTML/en/kcontrol/kcmmodifiers/index-5.html +share/doc/HTML/en/kcontrol/kcmmodifiers/index.html +share/locale/cs/LC_MESSAGES/kcmhotkyes.mo +share/locale/cs/LC_MESSAGES/kcmmodifiers.mo +@dirrm share/doc/HTML/en/kcontrol/kcmmodifiers +@dirrm share/doc/HTML/en/kcontrol/kcmhotkeys >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 1 19:40:56 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA70E37B6AC for ; Fri, 1 Dec 2000 19:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23e2h06675; Fri, 1 Dec 2000 19:40: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 90DEF37B400 for ; Fri, 1 Dec 2000 19:37:02 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23b2W06391; Fri, 1 Dec 2000 19:37:02 -0800 (PST) (envelope-from nobody) Message-Id: <200012020337.eB23b2W06391@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:37:02 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23228: Update port: misc/qhacc to 0.6.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23228 >Category: ports >Synopsis: Update port: misc/qhacc to 0.6.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: Fri Dec 01 19:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.6.4 >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/qhacc/Makefile misc/qhacc/Makefile --- /usr/ports/misc/qhacc/Makefile Sat Nov 18 07:03:54 2000 +++ misc/qhacc/Makefile Sat Dec 2 05:51:05 2000 @@ -6,7 +6,7 @@ # PORTNAME= qhacc -PORTVERSION= 0.6.2 +PORTVERSION= 0.6.4 CATEGORIES= misc MASTER_SITES= ftp://ftp.ostrich-emulators.cx/qhacc/ @@ -17,7 +17,7 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= QTDIR="${X11BASE}" -pre-build: +post-extract: @${RM} -f ${WRKSRC}/src/moc_*.cpp do-install: diff -urN /usr/ports/misc/qhacc/distinfo misc/qhacc/distinfo --- /usr/ports/misc/qhacc/distinfo Sat Nov 18 07:03:54 2000 +++ misc/qhacc/distinfo Sat Dec 2 06:00:11 2000 @@ -1 +1 @@ -MD5 (qhacc-0.6.2.tar.gz) = d2693ef38cba992c114c6ace1012de89 +MD5 (qhacc-0.6.4.tar.gz) = 0a9f628166f3cc7360082ffc9f44744f >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 1 19:41: 0 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DE91537B6AD for ; Fri, 1 Dec 2000 19:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23e2d06684; Fri, 1 Dec 2000 19:40: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 2FBB637B400 for ; Fri, 1 Dec 2000 19:37:54 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23bs906426; Fri, 1 Dec 2000 19:37:54 -0800 (PST) (envelope-from nobody) Message-Id: <200012020337.eB23bs906426@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:37:54 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23229: Update port: net/rwhois Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23229 >Category: ports >Synopsis: Update port: net/rwhois >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 01 19:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Fix pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/net/rwhois/pkg-plist net/rwhois/pkg-plist --- /usr/ports/net/rwhois/pkg-plist Wed Nov 29 04:15:29 2000 +++ net/rwhois/pkg-plist Thu Nov 30 02:12:40 2000 @@ -1,3 +1,4 @@ +etc/rc.d/rwhoisd.sh lib/rwhois/a.com/attribute_defs/asn.tmpl lib/rwhois/a.com/attribute_defs/contact.tmpl lib/rwhois/a.com/attribute_defs/domain.tmpl >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 1 19:41: 0 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F9F837B6A6 for ; Fri, 1 Dec 2000 19:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23e2406657; Fri, 1 Dec 2000 19:40: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 2CE0237B400 for ; Fri, 1 Dec 2000 19:35:30 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB23ZUA06303; Fri, 1 Dec 2000 19:35:30 -0800 (PST) (envelope-from nobody) Message-Id: <200012020335.eB23ZUA06303@freefall.freebsd.org> Date: Fri, 1 Dec 2000 19:35:30 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23226: Update port: math/oleo to 1.99.14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23226 >Category: ports >Synopsis: Update port: math/oleo to 1.99.14 >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 01 19:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.99.14 New file: files/patch-ak files/patch-al Remove file: files/patch-aj >How-To-Repeat: >Fix: diff -urN /usr/ports/math/oleo/Makefile math/oleo/Makefile --- /usr/ports/math/oleo/Makefile Thu Aug 3 21:22:53 2000 +++ math/oleo/Makefile Sat Dec 2 12:23:00 2000 @@ -6,7 +6,7 @@ # PORTNAME= oleo -PORTVERSION= 1.99.12 +PORTVERSION= 1.99.14 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -14,13 +14,23 @@ MAINTAINER= ports@FreeBSD.org LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext +.if defined(WITH_MOTIF) +LIB_DEPENDS+= plot.3:${PORTSDIR}/graphics/plotutils \ + Xbae.7:${PORTSDIR}/x11-toolkits/xbae +.endif USE_XLIB= yes USE_AUTOCONF= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" -CONFIGURE_ARGS= --with-x --without-motif \ - --without-xbae --without-xlt \ +CONFIGURE_ARGS= --with-x --without-xlt \ --without-xmhtml --without-SciPlot + +.if defined(WITH_MOTIF) +USE_MOTIF= yes +CONFIGURE_ARGS+= --with-motif +.else +CONFIGURE_ARGS+= --without-motif +.endif .include diff -urN /usr/ports/math/oleo/distinfo math/oleo/distinfo --- /usr/ports/math/oleo/distinfo Wed Aug 2 09:05:10 2000 +++ math/oleo/distinfo Sat Dec 2 06:27:32 2000 @@ -1 +1 @@ -MD5 (oleo-1.99.12.tar.gz) = 57ac0e2eab661685ef5f6fa6bfe5b1c5 +MD5 (oleo-1.99.14.tar.gz) = 85c0de81f7cbabab3c26b46ba0a75779 diff -urN /usr/ports/math/oleo/files/patch-ag math/oleo/files/patch-ag --- /usr/ports/math/oleo/files/patch-ag Wed Aug 2 09:05:11 2000 +++ math/oleo/files/patch-ag Sat Dec 2 12:21:26 2000 @@ -1,60 +1,16 @@ ---- aclocal.m4.orig Thu Feb 10 05:22:27 2000 -+++ aclocal.m4 Fri Jul 28 19:30:42 2000 -@@ -1733,7 +1733,7 @@ - # but which still want to provide support for the GNU gettext functionality. - # Please note that the actual code is *not* freely available. - --# serial 3 -+# serial 5 - - AC_DEFUN(AM_WITH_NLS, - [AC_MSG_CHECKING([whether NLS is requested]) -@@ -1775,9 +1775,10 @@ - AC_CHECK_LIB(intl, bindtextdomain, - [AC_CACHE_CHECK([for gettext in libintl], - gt_cv_func_gettext_libintl, -- [AC_TRY_LINK([], [return (int) gettext ("")], -- gt_cv_func_gettext_libintl=yes, -- gt_cv_func_gettext_libintl=no)])]) -+ [AC_CHECK_LIB(intl, gettext, -+ gt_cv_func_gettext_libintl=yes, -+ gt_cv_func_gettext_libintl=no)], -+ gt_cv_func_gettext_libintl=no)]) - fi - - if test "$gt_cv_func_gettext_libc" = "yes" \ -@@ -1799,6 +1800,9 @@ +--- aclocal.m4.orig Thu Nov 23 05:32:03 2000 ++++ aclocal.m4 Sat Dec 2 12:21:18 2000 +@@ -1996,9 +1996,12 @@ + [CATOBJEXT=.gmo + DATADIRNAME=share], + [CATOBJEXT=.mo +- DATADIRNAME=lib]) ++ DATADIRNAME=share]) INSTOBJEXT=.mo fi - fi ++ fi + if test "$gt_cv_func_gettext_libintl" = "yes"; then + INTLLIBS='-lintl' -+ fi + fi ]) - if test "$CATOBJEXT" = "NONE"; then -@@ -1883,6 +1887,12 @@ - nls_cv_header_intl=intl/libintl.h - nls_cv_header_libgt=intl/libgettext.h - fi -+ AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl) -+ AC_OUTPUT_COMMANDS( -+ [case "$CONFIG_FILES" in *po/Makefile.in*) -+ sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile -+ esac]) -+ - - # If this is used in GNU gettext we have to set USE_NLS to `yes' - # because some of the sources are only built for this goal. -@@ -1927,9 +1937,9 @@ - AC_REQUIRE([AC_FUNC_MMAP])dnl - - AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h string.h \ --unistd.h values.h sys/param.h]) -+unistd.h sys/param.h]) - AC_CHECK_FUNCS([getcwd munmap putenv setenv setlocale strchr strcasecmp \ --__argz_count __argz_stringify __argz_next]) -+strdup __argz_count __argz_stringify __argz_next]) - - if test "${ac_cv_func_stpcpy+set}" != "set"; then - AC_CHECK_FUNCS(stpcpy) diff -urN /usr/ports/math/oleo/files/patch-ah math/oleo/files/patch-ah --- /usr/ports/math/oleo/files/patch-ah Wed Aug 2 09:05:11 2000 +++ math/oleo/files/patch-ah Sat Dec 2 10:41:10 2000 @@ -1,15 +1,21 @@ ---- configure.in.orig Tue Jul 25 21:56:32 2000 -+++ configure.in Fri Jul 28 02:51:24 2000 -@@ -324,12 +324,6 @@ - AM_GNU_GETTEXT - +--- configure.in.orig Thu Nov 23 05:31:55 2000 ++++ configure.in Sat Dec 2 10:41:01 2000 +@@ -208,13 +208,15 @@ + dnl the libplot from GNU plotutils sometimes requires linking the + dnl X and Motif libraries dnl --dnl This used to cause all kinds of problems in an earlier revision --dnl of oleo. (Mostly because of using earlier auto* tools.) --dnl --AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl) -- --dnl - dnl Pass information about where we install to the source, to be - dnl able to read AFM files. Note this doesn't work if you - dnl install via "make install DESTDIR=/xxx" +-AC_CHECK_LIB(plot, pl_openpl_r, ++if test "$with_motif" = "yes"; then ++ AC_CHECK_LIB(plot, pl_openpl_r, + AC_DEFINE(HAVE_LIBPLOT) + LIBS="$LIBS -lplot") + +-AC_CHECK_LIB(sciplot, sp_begin_plot) +-if test x$ac_cv_lib_sciplot_sp_begin_plot = xyes; then ++ AC_CHECK_LIB(sciplot, sp_begin_plot) ++ if test x$ac_cv_lib_sciplot_sp_begin_plot = xyes; then + AC_DEFINE(HAVE_LIBSCIPLOT) ++ fi + fi + + dnl Checks for Guile diff -urN /usr/ports/math/oleo/files/patch-aj math/oleo/files/patch-aj --- /usr/ports/math/oleo/files/patch-aj Wed Aug 2 09:05:11 2000 +++ math/oleo/files/patch-aj Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- po/Makefile.in.in.orig Fri Aug 28 06:15:29 1998 -+++ po/Makefile.in.in Fri Jul 28 04:30:24 2000 -@@ -119,7 +119,7 @@ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - case "$$cat" in \ -- *.gmo) destdir=$(gnulocaledir);; \ -+ *.mo) destdir=$(gnulocaledir);; \ - *) destdir=$(localedir);; \ - esac; \ - lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ diff -urN /usr/ports/math/oleo/files/patch-ak math/oleo/files/patch-ak --- /usr/ports/math/oleo/files/patch-ak Thu Jan 1 09:00:00 1970 +++ math/oleo/files/patch-ak Sat Dec 2 11:50:34 2000 @@ -0,0 +1,22 @@ +--- src/Makefile.in.orig Thu Nov 23 05:39:58 2000 ++++ src/Makefile.in Sat Dec 2 10:44:42 2000 +@@ -158,7 +158,7 @@ + @UseMotif_TRUE@MYCFL = ${X_CFLAGS} + @UseMotif_FALSE@MYCFL = ${X_CFLAGS} + +-oleo_LDADD = ${X_PRE_LIBS} ${MYLD} @INTLLIBS@ ../lib/liboleo.a ../intl/libintl.a ${X_LIBS} ++oleo_LDADD = ${X_PRE_LIBS} ${MYLD} @INTLLIBS@ ../lib/liboleo.a ${X_LIBS} + INCLUDES = -I.. -I$(srcdir) -I$(top_srcdir)/lib -I../intl ${MYINC} + CFLAGS = @CFLAGS@ -DLOCALEDIR=\"$(localedir)\" ${MYCFL} -DBUILD_PREFIX='"'${BUILD_PREFIX}'"' + +@@ -251,8 +251,8 @@ + @UseMotif_FALSE@@HaveXbase_FALSE@postscript$U.o pcl$U.o epson$U.o \ + @UseMotif_FALSE@@HaveXbase_FALSE@prtext$U.o afm$U.o mdi$U.o gsl$U.o \ + @UseMotif_FALSE@@HaveXbase_FALSE@plotter$U.o legend$U.o +-@UseMotif_TRUE@oleo_DEPENDENCIES = ../lib/liboleo.a ../intl/libintl.a +-@UseMotif_FALSE@oleo_DEPENDENCIES = ../lib/liboleo.a ../intl/libintl.a ++@UseMotif_TRUE@oleo_DEPENDENCIES = ../lib/liboleo.a @INTLDEPS@ ++@UseMotif_FALSE@oleo_DEPENDENCIES = ../lib/liboleo.a @INTLDEPS@ + oleo_LDFLAGS = + CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) + CXXLD = $(CXX) diff -urN /usr/ports/math/oleo/files/patch-al math/oleo/files/patch-al --- /usr/ports/math/oleo/files/patch-al Thu Jan 1 09:00:00 1970 +++ math/oleo/files/patch-al Sat Dec 2 10:16:36 2000 @@ -0,0 +1,28 @@ +--- src/io-motif.c.orig Thu Nov 23 05:38:22 2000 ++++ src/io-motif.c Sat Dec 2 09:47:19 2000 +@@ -5995,7 +5995,11 @@ + #endif + + #ifdef HAVE_LIBPLOT ++#if defined(PL_LIBPLOT_VER_STRING) + sprintf(xbae, "\n GNU PlotUtils (libplot version %s)", PL_LIBPLOT_VER_STRING); ++#else ++ sprintf(xbae, "\n GNU PlotUtils (libplot version %s)", LIBPLOT_VERSION); ++#endif + xms1 = xms; + xms2 = XmStringCreateLtoR(xbae, XmFONTLIST_DEFAULT_TAG); + xms = XmStringConcat(xms1, xms2); +@@ -6079,6 +6083,7 @@ + return; + } + ++#if XbaeVersion > 4007 + if (XbaeMatrixGetCellWidget(mat, r-1, c-1) == NULL) { + button = XtVaCreateManagedWidget(lbl, xmPushButtonWidgetClass, mat, NULL); + XbaeMatrixSetCellWidget(mat, r-1, c-1, button); +@@ -6088,4 +6093,5 @@ + + fprintf(stderr, "MotifButton(%d,%d,%s,%s)\n", r-1, c-1, lbl, command); + } ++#endif + } diff -urN /usr/ports/math/oleo/pkg-plist math/oleo/pkg-plist --- /usr/ports/math/oleo/pkg-plist Wed Aug 2 09:05:11 2000 +++ math/oleo/pkg-plist Sat Dec 2 12:19:08 2000 @@ -1,17 +1,17 @@ bin/oleo +@unexec install-info --delete %D/info/oleo.info %D/info/dir +info/oleo.info +@exec install-info %D/info/oleo.info %D/info/dir +share/doc/Oleo/AUTHORS +share/doc/Oleo/FAQ share/locale/en/LC_MESSAGES/oleo.mo share/locale/fr/LC_MESSAGES/oleo.mo share/locale/nl/LC_MESSAGES/oleo.mo +share/oleo/Oleo share/oleo/fr/Oleo share/oleo/nl/Oleo share/oleo/oleo.html -share/oleo/Oleo -share/doc/Oleo/AUTHORS -share/doc/Oleo/FAQ -@unexec install-info --delete %D/info/oleo.info %D/info/dir -info/oleo.info -@exec install-info %D/info/oleo.info %D/info/dir -@dirrm share/doc/Oleo @dirrm share/oleo/nl @dirrm share/oleo/fr @dirrm share/oleo +@dirrm share/doc/Oleo >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 1 22: 1:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sloth.goodnet.com (smtp.goodnet.com [207.98.129.2]) by hub.freebsd.org (Postfix) with ESMTP id 2CB6437B400 for ; Fri, 1 Dec 2000 22:01:56 -0800 (PST) Received: from goodguy (goodnet.com [207.98.129.1]) by sloth.goodnet.com (8.10.2/8.10.2) with ESMTP id eB261t402705 for ; Fri, 1 Dec 2000 23:01:55 -0700 (MST) Date: Fri, 1 Dec 2000 23:01:55 -0700 (MST) From: "Geoffrey T. Cheshire" To: ports@FreeBSD.org Subject: ncurses 5.2 port breaks many things Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm a bit flummoxed as after my install of ncurses 5.2, pine, xemacs, and others are broken. For example, pine when not run as superuser gets: /usr/libexec/ld-elf.so.1: /usr/local/lib/libncurses.so.5: Undefined symbol "SP" But fires up when run as root. This is odd. I tried to recompile xemacs because the Undefined symbol error was showing up with some functions. Now the compile dies with many lines like: /usr/local/lib/libncurses.so: undefined reference to `SP' /usr/local/lib/libncurses.so: undefined reference to `_nc_set_buffer' /usr/local/lib/libncurses.so: undefined reference to `tparm' /usr/local/lib/libncurses.so: undefined reference to `has_key' /usr/local/lib/libncurses.so: undefined reference to `_nc_str_null' [. . .] Any ideas?? Geoffrey T. Cheshire To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 1 22:39: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sloth.goodnet.com (smtp.goodnet.com [207.98.129.2]) by hub.freebsd.org (Postfix) with ESMTP id D23D637B400 for ; Fri, 1 Dec 2000 22:38:58 -0800 (PST) Received: from goodguy (goodnet.com [207.98.129.1]) by sloth.goodnet.com (8.10.2/8.10.2) with ESMTP id eB26cv405916 for ; Fri, 1 Dec 2000 23:38:58 -0700 (MST) Date: Fri, 1 Dec 2000 23:38:57 -0700 (MST) From: "Geoffrey T. Cheshire" To: ports@freebsd.org Subject: ncurses update Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ok, got things to work. I looked at the files below: [gtc:~]$ ls -l /usr/lib/libncurses.so.5 -r--r--r-- 1 root wheel 260412 Nov 27 12:03 /usr/lib/libncurses.so.5 [gtc:~]$ ls -l /usr/local/lib/libncurses.so.5 -r--r--r-- 1 root wheel 121997 Dec 1 23:08 /usr/local/lib/libncurses.so.5 See how there are 2 versions, and the newer one under local is way smaller? I moved the version in local and symlinked to the /usr/lib version. Now all progs work and xemacs compiles. Any ideas? Geoffrey T. Cheshire To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 1: 9:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from wildfire.wwwtek.com (unknown [64.69.79.193]) by hub.freebsd.org (Postfix) with ESMTP id 2005837B400 for ; Sat, 2 Dec 2000 01:09:52 -0800 (PST) Received: (from root@localhost) by wildfire.wwwtek.com (8.9.3/8.9.3) id CAA31817 for ports@freebsd.org; Sat, 2 Dec 2000 02:11:51 -0500 Date: Sat, 2 Dec 2000 02:11:51 -0500 From: nick@montecarlo.com Message-Id: <200012020711.CAA31817@wildfire.wwwtek.com> Content-type: text/html To: ports@freebsd.org Subject: RE: Queensclub 100% December Promo Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org QUEENS CLUB MAIL

Casino December MEGA Bonus!. . .

$200 in COMP Rewards & $20 Deposit Bonus & $25 Second Deposit Bonus!!

Not only this month are we are giving away 500 player rewards points worth $200! - but when you open an account we will give you $20 cash and $25 on your SECOND Deposit.

Thats right - $200 in Comps - $20 welcome bonus - $25 second Bonus!

We are the ONLY Boss Media Casino with Player Rewards or \'comps\'! Why play anywhere else? We have over 500 of the worlds most famous merchants you can redeem your points with from TGIF\'s to Macys to Circuit City. Best of all it\'s EASY and FREE. All you have to do is play!
Click here for more info!

Or enter http://www.queensclub.com/re/re.pl/REF11791 in your browser.

SPECTACULAR GRAPHICS : UNIQUE FEATURES : FAST PAYOUTS

TOP 5GAMBLING.COM SITE : BETCOUNTER.COM TOP 5 SITE

With 9 games; Blackjack, Craps, Video Poker, Baccarat, Caribbean Poker, Pai Gow, Roulette, Slots, Keno and more to come. The Queen invites you to step inside, pull up a chair and join her in the Casino where you will be treated like royalty.

VIPs! - We have launched our Exclusive VIP area for the elite on-line casino guest,. With very special rewards and dedicated support, this service is truly one of a kind. Stop by and enquire about opening an account with Queens Club Casino.

QUEENS CLUB MAIL
Queen announces 100% December Bonus!. . .

The Queen at Queensclub.com announces her latest promotion!

Simply make a deposit between now and midnight 7th December 2000 PST and recieve $25 bonus! This promotion is for the Queen\'s existing Players only.

Deposit $25 and get $25 - thats 100% Bonus!

The Queen is also pleased to announce her latest winners:

Maraynn C from USA won $5000 on SLOTS!
Donald B from USA won $5000 on VIDEO POKER!
Bennadi H from Morocco won $5000 on SLOTS!

Congratulations to you all!!!!

If there is anything I can do to make your play more enjoyable please email or ICQ me.

Good luck

Nick
Casino Manager

 

SPECTACULAR GRAPHICS : UNIQUE FEATURES : FAST PAYOUTS

TOP 5GAMBLING.COM SITE : BETCOUNTER.COM TOP 5 SITE

With 9 games; Blackjack, Craps, Video Poker, Baccarat, Caribbean Poker, Pai Gow, Roulette, Slots, Keno and more to come. The Queen invites you to step inside, pull up a chair and join her in the Casino where you will be treated like royalty.

VIPs! - We have launched our Exclusive VIP area for the elite on-line casino guest,. With very special rewards and dedicated support, this service is truly one of a kind. Stop by and enquire about opening an account with Queens Club Casino.



This email was sent to: ports@freebsd.org


To be removed from this mailing list, please visit http://64.69.79.20/members/remove.cgi and enter your email address (listed above) to be removed.



To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 4:25:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id C158337B400 for ; Sat, 2 Dec 2000 04:25:46 -0800 (PST) Received: from ipamzlx.Physik.Uni-Mainz.DE (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.1/8.11.0) with ESMTP id eB2CRh716155 for ; Sat, 2 Dec 2000 13:27:43 +0100 (CET) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Sat, 2 Dec 2000 13:27:43 +0100 (CET) From: "O. Hartmann" To: freebsd-ports@freebsd.org Subject: StarOffice 5.2, User Installation, the 1E6th question Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear Sirs, Yes, I already read the FAQ, yes, I consulted www.staroffice.com at SUN, yes, I read all the threads concerning installations on FreeBSD, yes, I tried all the described way but I never have had success as decribed there! So, pleade allow me to ask a further question, the 1001st question in this subject. I received StarOffice5.2 (German) from the ports collection. Then I cd'ed into the ports directory and made 'make all && make install'. After setting the DISPLAY variable I could make a complete install and the script informed me that a complete network installation has been taken place. Yes, that sounds good ... I thought. But I thought wrong. I tried then as a normal user (non-root) to install a custom-user installation, but it did not work as decribed in those many FAQs. I tried the following scenarios: 1. switched to the users home directory, then typed PATH_TO_SOFFICE/setup, no success, the installation routine either tells me that soffice52 is already installed or it reports an error not finding /usr/local/soffcie52/users/sofficerc and wants to repair something that must fail due to the lack of root privileges. 2. I created a directory ~/office52 and tried step 1. again 3. I tried step 1. and 2. again, but this time I called the Makefile of the port with the option install-user, but it offers the same result as mentioned above. 4. I tried to apply a destination path where to install, but this fails. At this point, I did not follow ONLY the way as suggested by the authors of the installation scripts, but doing this sucks the same way as trying some 'nearby paths'. Can anyone help? Is there a way to set up a user under FreeBSD? I need to do this for up to 20 stations so I prefere an autmated way as the script should provide it (I do not beggar for solutions, I need some kind of input what's going wrong ... I already have some automated installscripts, but they do not work due the main fasult of the port ...). Thanks in advance, Oliver - MfG O. Hartmann ------------------------------------------------------------------- ohartman@ipamzlx.physik.uni-mainz.de Klimadatenserver-Abteilung des IPA IT Netz- und Systembetreuung Johannes Gutenberg-Universitaet Mainz Becherweg 21 D-55099 Mainz BRD/Germany Tel: +496131/3924662 Tel: +496131/3924152 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 5:40:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (beleriand.online.bg [195.138.137.181]) by hub.freebsd.org (Postfix) with SMTP id AA88B37B400 for ; Sat, 2 Dec 2000 05:40:18 -0800 (PST) Received: (qmail 2611 invoked by uid 1000); 2 Dec 2000 13:39:37 -0000 Date: Sat, 2 Dec 2000 15:39:37 +0200 From: Peter Pentchev To: Robert Inder Cc: ports@freeBSD.org Subject: Re: Problem with Ports (DOCNUMENTATION BUG) Message-ID: <20001202153937.C1968@ringworld.oblivion.bg> Mail-Followup-To: Robert Inder , ports@freeBSD.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from R.Inder@ed.ac.uk on Fri, Dec 01, 2000 at 06:09:57PM +0000 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Dec 01, 2000 at 06:09:57PM +0000, Robert Inder wrote: > > I've just had a problem with a port. > > I am running FreeBSD 4.1-RELEASE. > > I fetched the port for linux-netscape-6, and did a "make". > After the make, I tried to "make install", and it failed > because it could not find the file list. > > A friend told me that whereas in the past, ports had a "pkg" directory > containing "DESCR", "COMMENT" and "PLIST" files, they now just > have pkg-descr, pkg-comment and pkg-plist files. The netscape package > had the latter, and my system was looking for the former. Simply making > the "pkg" directory and copying the files appropriately seemed to fix > the problem. > > BUT.... > this, surely, isn't the right answer, is it? > > There is, presumably, some "official" way to update my system's ports > processing make files. > > And the obvious place to look for how to do this is the > Ports pages at www.FreeBSD.org. Actually, what you're looking for is there, not in the Ports pages, but in the Handbook :) Look at http://www.FreeBSD.org/handbook/synching.html, it describes how to pull the latest versions of the source tree and/or the ports tree. In your case, you need to update your ports collection, and especially the ports-base collection - the one which holds all the /usr/ports/Mk/ makefiles doing all the magic behind the scenes when building ports :) If you encounter any problems with updating your source/ports tree, please post questions to freebsd-questions@freebsd.org. Hope that helps :) G'luck, Peter -- If there were no counterfactuals, this sentence would not have been paradoxical. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 5:42: 3 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 71AA437B402; Sat, 2 Dec 2000 05:42:02 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2Dg2e76876; Sat, 2 Dec 2000 05:42:02 -0800 (PST) (envelope-from roam) Date: Sat, 2 Dec 2000 05:42:02 -0800 (PST) From: Message-Id: <200012021342.eB2Dg2e76876@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, roam@FreeBSD.org Subject: Re: ports/23214: Fetchmail currently builds without NTLM auth support Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fetchmail currently builds without NTLM auth support Responsible-Changed-From-To: freebsd-ports->roam Responsible-Changed-By: roam Responsible-Changed-When: Sat Dec 2 05:40:48 PST 2000 Responsible-Changed-Why: I'll look into that.. http://www.freebsd.org/cgi/query-pr.cgi?pr=23214 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 5:50: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B88537B401 for ; Sat, 2 Dec 2000 05:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2Do2S77307; Sat, 2 Dec 2000 05:50:02 -0800 (PST) (envelope-from gnats) Received: from ice.42.org (ice.42.org [194.246.250.222]) by hub.freebsd.org (Postfix) with ESMTP id 4B10437B402; Sat, 2 Dec 2000 05:43:36 -0800 (PST) Received: by ice.42.org (Postfix, from userid 1000) id D934985; Sat, 2 Dec 2000 14:43:34 +0100 (CET) Message-Id: <20001202134334.D934985@ice.42.org> Date: Sat, 2 Dec 2000 14:43:34 +0100 (CET) From: sec@42.org Reply-To: sec@42.org To: FreeBSD-gnats-submit@freebsd.org Cc: ade@freebsd.org, sec@42.org X-Send-Pr-Version: 3.2 Subject: ports/23232: ORBit-port bug / gettext/xview port collision Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23232 >Category: ports >Synopsis: ORBit-port bug / gettext/xview port collision >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 02 05:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Stefan `Sec` Zehl >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: FreeBSD-4.2-STABLE >Description: I built the ORBit port on FreeBSD-4.2. It failed on me with a message about not beeing able to find libgettext. It took me some time to find out why. I had an /usr/X11R6/bin/xgettext installed (additionally to the /usr/local/bin/xgettext from the gettext port) As I had /usr/X11R6/bin in the path before /usr/local/bin, the configure script picked the wrong version, and failed. The wrong version was installed by the xview-3.2.1 - port. (it then continues to output a config.log file which has nothing to do with the failure which is misleading at best) Here is the error: [running configure in work/ORBit-0.5.4/popt/] checking for GNU xgettext... configure: error: *** GNU gettext is required. The latest version *** is always available from ftp://ftp.gnu.org/gnu/gettext/. configure: error: ./configure failed for popt ===> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. [outputting the config.log from work/ORBit-0.5.4/config.log] >How-To-Repeat: install xview port PATH=/usr/X11R6/bin:${PATH} build ORBit port >Fix: either change xview to not install xgettext, or specify the path in ORBit exactly >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 2 6: 2:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 8569837B400 for ; Sat, 2 Dec 2000 06:02:52 -0800 (PST) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id eB2E2oQ19410; Sat, 2 Dec 2000 09:02:50 -0500 (EST) Date: Sat, 2 Dec 2000 09:02:49 -0500 (EST) From: Trevor Johnson To: ahgu Cc: ports@FreeBSD.ORG Subject: Re: FreeBSD Port: bsdi-netscape47-navigator-4.76 In-Reply-To: <3A26E9FE.B8D330F5@yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > When will the new bsdi-netscape version come out? In the past, releases for all platforms have been done at the same time. The fact that the BSD/OS ones didn't show up at ftp://ftp.netscape.com/pub/communicator/english/4.76/unix/unsupported/ suggests to me that Netscape has discontinued them. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 7:34: 0 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AA1737B401; Sat, 2 Dec 2000 07:33:57 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2FXvB90358; Sat, 2 Dec 2000 07:33:57 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 07:33:57 -0800 (PST) From: Message-Id: <200012021533.eB2FXvB90358@freefall.freebsd.org> To: housel@acm.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23218: Update of lang/dylan port to 2.3.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update of lang/dylan port to 2.3.4 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 07:33:04 PST 2000 State-Changed-Why: Committed, thanks. Note that using USE_GMAKE=yes instead of RUN_DEPENDS=gmake. http://www.freebsd.org/cgi/query-pr.cgi?pr=23218 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 7:40:46 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCB8337B400; Sat, 2 Dec 2000 07:40:44 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2Feiv05419; Sat, 2 Dec 2000 07:40:44 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 07:40:44 -0800 (PST) From: Message-Id: <200012021540.eB2Feiv05419@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23220: Update port: cad/xcircuit to 2.1b9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: cad/xcircuit to 2.1b9 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 07:40:31 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23220 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 7:50:12 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D1DD37B69D for ; Sat, 2 Dec 2000 07:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2Fo2j50145; Sat, 2 Dec 2000 07:50: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 DFEB437B400 for ; Sat, 2 Dec 2000 07:47:53 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2Flr039469; Sat, 2 Dec 2000 07:47:53 -0800 (PST) (envelope-from nobody) Message-Id: <200012021547.eB2Flr039469@freefall.freebsd.org> Date: Sat, 2 Dec 2000 07:47:53 -0800 (PST) From: mux@qualys.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23234: port update request: xblast Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23234 >Category: ports >Synopsis: port update request: xblast >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 02 07:50:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Maxime Henrion >Release: >Organization: >Environment: >Description: There is now a new version of xblast, xblast-tnt which is still under development but already features a real TCP/IP client/server multiplayer game much more faster than X11 exporting. Here is the URL: http://www.ndh.net/home/m.vogel/ >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 2 7:50:21 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 74A8637B400; Sat, 2 Dec 2000 07:50:20 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2FoK150955; Sat, 2 Dec 2000 07:50:20 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 07:50:20 -0800 (PST) From: Message-Id: <200012021550.eB2FoK150955@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23222: Update port: ftp/pavuk to 0.9.26 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: ftp/pavuk to 0.9.26 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 07:50:01 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 7:59:59 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADF7A37B400; Sat, 2 Dec 2000 07:59:57 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2Fxv264510; Sat, 2 Dec 2000 07:59:57 -0800 (PST) (envelope-from roam) Date: Sat, 2 Dec 2000 07:59:57 -0800 (PST) From: Message-Id: <200012021559.eB2Fxv264510@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, se@FreeBSD.org Subject: Re: ports/23234: port update request: xblast Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port update request: xblast Responsible-Changed-From-To: freebsd-ports->se Responsible-Changed-By: roam Responsible-Changed-When: Sat Dec 2 07:58:50 PST 2000 Responsible-Changed-Why: Over to maintainer; it's generally much better to send port update requests in private ail to the maintainer first. http://www.freebsd.org/cgi/query-pr.cgi?pr=23234 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8: 4: 3 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BA9337B400; Sat, 2 Dec 2000 08:04:02 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2G42464911; Sat, 2 Dec 2000 08:04:02 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 08:04:02 -0800 (PST) From: Message-Id: <200012021604.eB2G42464911@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23223: Update port: games/crossfire Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/crossfire State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 08:03:34 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23223 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8:10: 0 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6466737B400; Sat, 2 Dec 2000 08:09:59 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2G9xm67394; Sat, 2 Dec 2000 08:09:59 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 08:09:59 -0800 (PST) From: Message-Id: <200012021609.eB2G9xm67394@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23224: Update port: graphics/gphoto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gphoto State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 08:09:48 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23224 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8:17:24 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5796037B400; Sat, 2 Dec 2000 08:17:23 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2GHNX68242; Sat, 2 Dec 2000 08:17:23 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 08:17:23 -0800 (PST) From: Message-Id: <200012021617.eB2GHNX68242@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23225: Update port: lang/mit-scheme to 7.5.11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: lang/mit-scheme to 7.5.11 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 08:17:12 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23225 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8:25:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from scooby.zenithtech.com (unknown [208.231.27.78]) by hub.freebsd.org (Postfix) with SMTP id 7B24537B400 for ; Sat, 2 Dec 2000 08:25:45 -0800 (PST) Received: (qmail 3739 invoked from network); 2 Dec 2000 21:10:44 -0000 Received: from p3e9ba9f9.dip.t-dialin.net (HELO Schneemann) (62.155.169.249) by 208.231.27.78 with SMTP; 2 Dec 2000 21:10:44 -0000 From: To: beate99999@hotmail.com Cc: Subject: EROS RU Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-Id: <20001202162545.7B24537B400@hub.freebsd.org> Date: Sat, 2 Dec 2000 08:25:45 -0800 (PST) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org look and See WWW://eoos.ru ____________________________________________________________________________ --------------------------------------------------------------- unregistrierte Demoversion http://www.aquadrat.de/download/psmail.htm Referenz zu http://www.stripline.de Referenz zu http://www.selfproducer.de co. 2000 --------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8:27:43 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2679237B400; Sat, 2 Dec 2000 08:27:41 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2GRfE69788; Sat, 2 Dec 2000 08:27:41 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 08:27:41 -0800 (PST) From: Message-Id: <200012021627.eB2GRfE69788@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23226: Update port: math/oleo to 1.99.14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: math/oleo to 1.99.14 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 08:27:27 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23226 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8:30: 7 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 16F2E37B400 for ; Sat, 2 Dec 2000 08:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2GU4I70381; Sat, 2 Dec 2000 08:30:04 -0800 (PST) (envelope-from gnats) Date: Sat, 2 Dec 2000 08:30:04 -0800 (PST) Message-Id: <200012021630.eB2GU4I70381@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Trevor Johnson Subject: Re: ports/23037: new ports : misc/p5-Data-Dumper Reply-To: Trevor Johnson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23037; it has been noted by GNATS. From: Trevor Johnson To: Ying-Chieh Liao Cc: Subject: Re: ports/23037: new ports : misc/p5-Data-Dumper Date: Sat, 2 Dec 2000 11:26:03 -0500 (EST) This seems to be in the base system (src/contrib/perl5/ext/Data/Dumper). -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8:32:44 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4C6B37B400; Sat, 2 Dec 2000 08:32:42 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2GWgY70914; Sat, 2 Dec 2000 08:32:42 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 08:32:42 -0800 (PST) From: Message-Id: <200012021632.eB2GWgY70914@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23227: Update port: misc/khotkeys Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: misc/khotkeys State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 08:32:02 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23227 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8:39: 2 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8519F37B400; Sat, 2 Dec 2000 08:39:01 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2Gd1I71466; Sat, 2 Dec 2000 08:39:01 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 08:39:01 -0800 (PST) From: Message-Id: <200012021639.eB2Gd1I71466@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23228: Update port: misc/qhacc to 0.6.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: misc/qhacc to 0.6.4 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 08:38:48 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23228 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8:40:28 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0ABD537B400; Sat, 2 Dec 2000 08:40:27 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2GeQw71716; Sat, 2 Dec 2000 08:40:26 -0800 (PST) (envelope-from roam) Date: Sat, 2 Dec 2000 08:40:26 -0800 (PST) From: Message-Id: <200012021640.eB2GeQw71716@freefall.freebsd.org> To: ijliao@terry.dragon2.net, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23037: new ports : misc/p5-Data-Dumper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new ports : misc/p5-Data-Dumper State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Sat Dec 2 08:39:27 PST 2000 State-Changed-Why: As Trevor Johnson pointed out, this module is in the base system, and has been there ever since the import of Perl 5 two years ago, even before 3.0-RELEASE. http://www.freebsd.org/cgi/query-pr.cgi?pr=23037 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 8:41:41 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D69A537B402; Sat, 2 Dec 2000 08:41:38 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2Gfc171874; Sat, 2 Dec 2000 08:41:38 -0800 (PST) (envelope-from kevlo) Date: Sat, 2 Dec 2000 08:41:38 -0800 (PST) From: Message-Id: <200012021641.eB2Gfc171874@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23229: Update port: net/rwhois Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/rwhois State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 2 08:41:25 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23229 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 10: 0:11 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC9A237B400 for ; Sat, 2 Dec 2000 10:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2I05p80742; Sat, 2 Dec 2000 10:00:05 -0800 (PST) (envelope-from gnats) Received: from smtp1-gw.tp1rc.edu.tw (smtp1-gw.tp1rc.edu.tw [163.28.16.23]) by hub.freebsd.org (Postfix) with ESMTP id 907FE37B400 for ; Sat, 2 Dec 2000 09:57:12 -0800 (PST) Received: from www.caece.net (bsd.ce.ntu.edu.tw [140.112.13.1]) by smtp1-gw.tp1rc.edu.tw (8.9.3/8.9.3) with ESMTP id BAA09231 for ; Sun, 3 Dec 2000 01:56:52 +0800 (CST) (envelope-from leeym@www.caece.net) Received: (from leeym@localhost) by www.caece.net (8.11.0/8.11.0) id eB2HvBo03672; Sun, 3 Dec 2000 01:57:11 +0800 (CST) Message-Id: <200012021757.eB2HvBo03672@www.caece.net> Date: Sun, 3 Dec 2000 01:57:11 +0800 (CST) From: Yen-Ming Lee Reply-To: leeym@bsd.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23236: update port: devel/p5-IPC-Shareable Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23236 >Category: ports >Synopsis: update port: devel/p5-IPC-Shareable >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 02 10:00:05 PST 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: 4.2-STABLE >Description: update port to 0.53 (latest version) >How-To-Repeat: >Fix: diff -ruN /usr/ports/devel/p5-IPC-Shareable/Makefile p5-IPC-Shareable/Makefile --- /usr/ports/devel/p5-IPC-Shareable/Makefile Wed Oct 11 12:03:18 2000 +++ p5-IPC-Shareable/Makefile Wed Nov 22 11:45:00 2000 @@ -6,7 +6,7 @@ # PORTNAME= IPC-Shareable -PORTVERSION= 0.52 +PORTVERSION= 0.53 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= IPC diff -ruN /usr/ports/devel/p5-IPC-Shareable/distinfo p5-IPC-Shareable/distinfo --- /usr/ports/devel/p5-IPC-Shareable/distinfo Wed Oct 11 12:03:18 2000 +++ p5-IPC-Shareable/distinfo Wed Nov 22 11:46:06 2000 @@ -1 +1 @@ -MD5 (IPC-Shareable-0.52.tar.gz) = 44eaaff2b20fb0566960d071382bb927 +MD5 (IPC-Shareable-0.53.tar.gz) = 432d2cb2d4bcd39f34dd541d3e6bb8b2 >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 2 10: 0:13 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EDDD37B401 for ; Sat, 2 Dec 2000 10:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2I05f80733; Sat, 2 Dec 2000 10:00:05 -0800 (PST) (envelope-from gnats) Received: from smtp1-gw.tp1rc.edu.tw (smtp1-gw.tp1rc.edu.tw [163.28.16.23]) by hub.freebsd.org (Postfix) with ESMTP id AA1FD37B400 for ; Sat, 2 Dec 2000 09:55:04 -0800 (PST) Received: from www.caece.net (bsd.ce.ntu.edu.tw [140.112.13.1]) by smtp1-gw.tp1rc.edu.tw (8.9.3/8.9.3) with ESMTP id BAA09213 for ; Sun, 3 Dec 2000 01:54:43 +0800 (CST) (envelope-from leeym@www.caece.net) Received: (from leeym@localhost) by www.caece.net (8.11.0/8.11.0) id eB2Ht2t03350; Sun, 3 Dec 2000 01:55:02 +0800 (CST) Message-Id: <200012021755.eB2Ht2t03350@www.caece.net> Date: Sun, 3 Dec 2000 01:55:02 +0800 (CST) From: Yen-Ming Lee Reply-To: leeym@bsd.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23235: update port: databases/mytop Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23235 >Category: ports >Synopsis: update port: databases/mytop >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 02 10:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: 4.2-STABLE >Description: update port to 0.5 (latest version) >How-To-Repeat: >Fix: diff -ruN /usr/ports/databases/mytop/Makefile mytop/Makefile --- /usr/ports/databases/mytop/Makefile Mon Oct 9 12:08:25 2000 +++ mytop/Makefile Sun Dec 3 01:34:15 2000 @@ -6,10 +6,9 @@ # PORTNAME= mytop -PORTVERSION= 0.3 +PORTVERSION= 0.5 CATEGORIES= databases MASTER_SITES= http://public.yahoo.com/~jzawodn/mytop/ -DISTNAME= mytop EXTRACT_SUFX= .gz MAINTAINER= leeym@cae.ce.ntu.edu.tw @@ -28,11 +27,11 @@ do-extract: @${MKDIR} ${WRKDIR} - @${GUNZIP_CMD} -c ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} > ${WRKDIR}/${DISTNAME} - @${POD2MAN} ${WRKDIR}/${DISTNAME} > ${WRKDIR}/${DISTNAME}.1 + @${GUNZIP_CMD} -c ${DISTDIR}/${DISTFILES} > ${WRKDIR}/${PORTNAME} + @${POD2MAN} ${WRKDIR}/${PORTNAME} > ${WRKDIR}/${PORTNAME}.1 do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}.1 ${PREFIX}/man/man1 + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKDIR}/${PORTNAME}.1 ${PREFIX}/man/man1 .include diff -ruN /usr/ports/databases/mytop/distinfo mytop/distinfo --- /usr/ports/databases/mytop/distinfo Thu Oct 5 09:35:24 2000 +++ mytop/distinfo Sun Dec 3 01:27:27 2000 @@ -1 +1 @@ -MD5 (mytop.gz) = 2bd661af7434b5be6c817701398ef919 +MD5 (mytop-0.5.gz) = 7d701c3dee6b036eb0179c5c9407358e >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 2 10:10:17 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A42DC37B401 for ; Sat, 2 Dec 2000 10:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2IA1683849; Sat, 2 Dec 2000 10:10:01 -0800 (PST) (envelope-from gnats) Received: from smtp1-gw.tp1rc.edu.tw (smtp1-gw.tp1rc.edu.tw [163.28.16.23]) by hub.freebsd.org (Postfix) with ESMTP id F343937B400 for ; Sat, 2 Dec 2000 10:00:59 -0800 (PST) Received: from www.caece.net (bsd.ce.ntu.edu.tw [140.112.13.1]) by smtp1-gw.tp1rc.edu.tw (8.9.3/8.9.3) with ESMTP id CAA09364 for ; Sun, 3 Dec 2000 02:00:39 +0800 (CST) (envelope-from leeym@www.caece.net) Received: (from leeym@localhost) by www.caece.net (8.11.0/8.11.0) id eB2I0ur04209; Sun, 3 Dec 2000 02:00:56 +0800 (CST) Message-Id: <200012021800.eB2I0ur04209@www.caece.net> Date: Sun, 3 Dec 2000 02:00:56 +0800 (CST) From: Yen-Ming Lee Reply-To: leeym@bsd.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23237: update port: benchmarks/tmetric Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23237 >Category: ports >Synopsis: update port: benchmarks/tmetric >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 02 10:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: 4.2-STABLE >Description: update port to v0.4 (latest version) >How-To-Repeat: >Fix: diff -ruN /usr/ports/benchmarks/tmetric/Makefile tmetric/Makefile --- /usr/ports/benchmarks/tmetric/Makefile Sun Sep 17 12:00:54 2000 +++ tmetric/Makefile Sun Dec 3 01:36:14 2000 @@ -6,7 +6,7 @@ # PORTNAME= tmetric -PORTVERSION= v0.3 +PORTVERSION= v0.4 CATEGORIES= benchmarks net MASTER_SITES= http://netgraft.com/downloads/tmetric/ diff -ruN /usr/ports/benchmarks/tmetric/distinfo tmetric/distinfo --- /usr/ports/benchmarks/tmetric/distinfo Sat Aug 19 21:59:24 2000 +++ tmetric/distinfo Sun Dec 3 01:37:00 2000 @@ -1 +1 @@ -MD5 (tmetric-v0.3.tar.gz) = d258f55b8a80bfaa2eed9015d889c4be +MD5 (tmetric-v0.4.tar.gz) = 2085ebcd42bff2df143d6635b5a4d5d0 diff -ruN /usr/ports/benchmarks/tmetric/files/patch-aa tmetric/files/patch-aa --- /usr/ports/benchmarks/tmetric/files/patch-aa Mon Jun 5 21:25:37 2000 +++ tmetric/files/patch-aa Sun Dec 3 01:38:19 2000 @@ -10,8 +10,7 @@ $(CC) $(LIBS) $(LDFLAGS) $(OBJ) -o $(OUTPUT) install: $(OUTPUT) -- $(INSTALL) $(OUTPUT) $(BINDIR) -+ $(INSTALL) -m 4755 $(OUTPUT) $(BINDIR) + $(INSTALL) $(OUTPUT) $(BINDIR) $(INSTALL) $(MANPAGE) $(MANDIR) clean: >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 2 10:10:20 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C78E237B404 for ; Sat, 2 Dec 2000 10:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2IA1J83858; Sat, 2 Dec 2000 10: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 17BB537B400 for ; Sat, 2 Dec 2000 10:08:21 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2I8Lu83604; Sat, 2 Dec 2000 10:08:21 -0800 (PST) (envelope-from nobody) Message-Id: <200012021808.eB2I8Lu83604@freefall.freebsd.org> Date: Sat, 2 Dec 2000 10:08:21 -0800 (PST) From: tokky@fdns.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23238: new port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23238 >Category: ports >Synopsis: new port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Sat Dec 02 10:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jaedoc Lee >Release: 4.2-STABLE >Organization: N/A >Environment: FreeBSD tokky.dnip.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Thu Nov 23 18:04:42 KST 2000 root@tokky.dnip.net:/usr/src/sys/compile/TOKKY_HOME i386 >Description: # 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: # # smbfs # smbfs/pkg-plist # smbfs/Makefile # smbfs/distinfo # smbfs/pkg-comment # smbfs/files # smbfs/files/patch-aa # smbfs/pkg-descr # echo c - smbfs mkdir -p smbfs > /dev/null 2>&1 echo x - smbfs/pkg-plist sed 's/^X//' >smbfs/pkg-plist << 'END-of-smbfs/pkg-plist' X@cwd /modules Xsmbfs.ko X X@cwd /dev Xnet/nsmb0 X X@cwd /usr/local Xbin/smbutil Xetc/nsmb.conf.sample Xetc/rc.d/smbfs.sh.sample Xlib/libsmb.a Xman/man1/smbutil.1.gz Xman/man8/mount_smbfs.8.gz Xsbin/mount_smbfs X X@cwd /dev X@dirrm net END-of-smbfs/pkg-plist echo x - smbfs/Makefile sed 's/^X//' >smbfs/Makefile << 'END-of-smbfs/Makefile' X# New ports collection makefile for: smbfs X# Date created: 2th Dec 2000 X# Whom: Jaedoc Lee X# X# $FreeBSD$ X# X XPORTNAME= smbfs XPORTVERSION= 1.3.2 XCATEGORIES= net XMASTER_SITES= ftp://ftp.butya.kz/pub/smbfs/ X XMAINTAINER= tokky@fdns.org X X.if defined(WITH_ICONV) Xpre-fetch: X @${ECHO} X @${ECHO} "Using iconv library" X @${ECHO} X XLIB_DEPENDS= iconv.2:${PORTSDIR}/converters/iconv X Xpost-configure: X @${SED} -e 's/# USE_ICONV=yes/USE_ICONV=yes/g' < ${WRKSRC}/config.mk.in > ${WRKSRC}/config.mk X.else Xpre-fetch: X @${ECHO} X @${ECHO} "Not Using iconv library" X @${ECHO} X @${ECHO} "You may set iconv library (make WITH_ICONV=yes)" X @${ECHO} "to compile smbfs with the supplied iconv." X @${ECHO} X Xpost-configure: X @${CP} ${WRKSRC}/config.mk.in ${WRKSRC}/config.mk X.endif X Xpost-install: X cd ${WRKSRC} && make makedev X @${INSTALL_DATA} ${WRKSRC}/examples/dot.nsmbrc ${LOCALBASE}/etc/nsmb.conf.sample X @${INSTALL_SCRIPT} ${WRKSRC}/examples/smbfs.sh.sample ${LOCALBASE}/etc/rc.d/smbfs.sh.sample X X.include END-of-smbfs/Makefile echo x - smbfs/distinfo sed 's/^X//' >smbfs/distinfo << 'END-of-smbfs/distinfo' XMD5 (smbfs-1.3.2.tar.gz) = 9f472031240ee51822cd04da861d35a1 END-of-smbfs/distinfo echo x - smbfs/pkg-comment sed 's/^X//' >smbfs/pkg-comment << 'END-of-smbfs/pkg-comment' XSMB/CIFS protocol and SMB/CIFS file system implementation END-of-smbfs/pkg-comment echo c - smbfs/files mkdir -p smbfs/files > /dev/null 2>&1 echo x - smbfs/files/patch-aa sed 's/^X//' >smbfs/files/patch-aa << 'END-of-smbfs/files/patch-aa' X--- mount_smbfs/Makefile.orig Sat Dec 2 18:54:05 2000 X+++ mount_smbfs/Makefile Sat Dec 2 18:54:36 2000 X@@ -5,5 +5,5 @@ X MAN8= mount_smbfs.8 X X-BINDIR= /sbin X+BINDIR= ${LOCALBASE}/sbin X #NOSHARED=yes X END-of-smbfs/files/patch-aa echo x - smbfs/pkg-descr sed 's/^X//' >smbfs/pkg-descr << 'END-of-smbfs/pkg-descr' XThis is native SMB/CIFS filesystem (smbfs for short) for FreeBSD. XIt is a complete, kernel side implementation of SMB requester and filesystem. X XThis release should be considered as "beta" and it doesn't contain NetBIOS Xname resolver so you have to supply an IP address of SMB server by hand. X XPlease note, that this version of smbfs has been tested with recent FreeBSD-current, FreeBSD 4.X. X XI'm would be very grateful for any feedback, bug reports etc. X Xsmbfs has been tested with the following SMB servers: X XSamba, Windows 95/98, Windows NT 4.0 (SPs 4, 5, 6), Windows 2000, IBM LanManager. END-of-smbfs/pkg-descr exit >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 2 10:15:30 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A43B637B400; Sat, 2 Dec 2000 10:15:29 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2IFT184593; Sat, 2 Dec 2000 10:15:29 -0800 (PST) (envelope-from will) Date: Sat, 2 Dec 2000 10:15:29 -0800 (PST) From: Message-Id: <200012021815.eB2IFT184593@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, bp@FreeBSD.org Subject: Re: ports/23238: new port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port Responsible-Changed-From-To: freebsd-ports->bp Responsible-Changed-By: will Responsible-Changed-When: Sat Dec 2 10:14:52 PST 2000 Responsible-Changed-Why: Over to SMBFS author. http://www.freebsd.org/cgi/query-pr.cgi?pr=23238 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 10:28:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thummy.com (cx467325-a.irvn1.occa.home.com [24.21.105.186]) by hub.freebsd.org (Postfix) with ESMTP id 7949437B400 for ; Sat, 2 Dec 2000 10:28:08 -0800 (PST) Received: (qmail 16065 invoked from network); 2 Dec 2000 18:25:01 -0000 Received: from unknown (HELO elijah) (192.168.50.100) by cx467325-a.irvn1.occa.home.com with RC4-MD5 encrypted SMTP; 2 Dec 2000 18:25:01 -0000 Message-ID: <003301c05c8d$136b09e0$6432a8c0@thummy.com> From: "Rudy Ruiz" To: Subject: QT22 bus error Date: Sat, 2 Dec 2000 10:24:14 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm running 4.2-20001201-STABLE and have been trying to build this all night, I keep getting a bus error and core dump when trying to build this. I have -O2 -pipe for CFLAGS. I saw this topic on deja and wondered if anyone has some insight? Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 12: 0:10 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 90DE437B401 for ; Sat, 2 Dec 2000 12:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2K02V96130; Sat, 2 Dec 2000 12:00:02 -0800 (PST) (envelope-from gnats) Received: from mailhost.sclp.com (unknown [209.196.61.66]) by hub.freebsd.org (Postfix) with ESMTP id F01A737B400 for ; Sat, 2 Dec 2000 11:51:54 -0800 (PST) Received: from aguirre.la.mastaler.com (localhost [127.0.0.1]) by mailhost.sclp.com (Postfix) with SMTP id BC91CD049A for ; Sat, 2 Dec 2000 14:51:48 -0500 (EST) Received: (qmail 14880 invoked by uid 100); 2 Dec 2000 19:51:46 -0000 Message-Id: <20001202195146.14879.qmail@aguirre.la.mastaler.com> Date: 2 Dec 2000 19:51:46 -0000 From: "Jason R Mastaler" To: FreeBSD-gnats-submit@freebsd.org, sobomax@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23239: graphics/xmps segfaults Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23239 >Category: ports >Synopsis: xmps-0.1.0 crashes when trying to play MPEG-1 >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 02 12:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jason R Mastaler >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: FreeBSD aguirre.la.mastaler.com 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Sat Dec 2 11:06:00 MST 2000 root@aguirre.la.mastaler.com:/usr/obj/usr/src/sys/AGUIRRE i386 >Description: I can't get xmps to play any of my mpeg files sucessfully. As soon as it loads the file, the program segfaults. Here is an example of the errors I'm getting: aguirre:~> xmps SMPEG Codec (MPEG-1) Loaded... X11 Video Renderer Loaded... Fatal error '_waitq_remove: Not in queue' at line ? in file /usr/src/lib/libc_r/uthread/uthread_priority_que ue.c (errno = ?) zsh: abort (core dumped) xmps Other times, the player crashes and the Gnome bug report submitter pops up. I'm unsure if this is a bug in xmps or Gnome. >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 2 12:33:36 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 864FC37B400; Sat, 2 Dec 2000 12:33:35 -0800 (PST) Received: (from dwhite@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2KXZL01496; Sat, 2 Dec 2000 12:33:35 -0800 (PST) (envelope-from dwhite) Date: Sat, 2 Dec 2000 12:33:35 -0800 (PST) From: Message-Id: <200012022033.eB2KXZL01496@freefall.freebsd.org> To: dwcjr@inethouston.net, dwhite@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23062: Update mail/postfix-current - Patch for error in pkg-plist by maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update mail/postfix-current - Patch for error in pkg-plist by maintainer State-Changed-From-To: open->closed State-Changed-By: dwhite State-Changed-When: Sat Dec 2 12:33:15 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23062 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 13:27:58 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9221B37B400; Sat, 2 Dec 2000 13:27:57 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2LRvb08020; Sat, 2 Dec 2000 13:27:57 -0800 (PST) (envelope-from ade) Date: Sat, 2 Dec 2000 13:27:57 -0800 (PST) From: Message-Id: <200012022127.eB2LRvb08020@freefall.freebsd.org> To: sec@42.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23232: gettext/xview port collision Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: ORBit-port bug / gettext/xview port collision New Synopsis: gettext/xview port collision State-Changed-From-To: open->analyzed State-Changed-By: ade State-Changed-When: Sat Dec 2 13:25:10 PST 2000 State-Changed-Why: Nothing to do with ORBit -- just an artefact of the way a *lot* of ports looking for gettext. The problem is with x11-toolkits/xview -- since you appear to be one of the few people that use this, and its currently unmaintained, perhaps you'd like to submit patches to prevent xview from clashing with gettext. I don't see there being any other particularly good solution other than marking x11-toolkits/xview BROKEN. http://www.freebsd.org/cgi/query-pr.cgi?pr=23232 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 13:34:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.wolves.k12.mo.us (mail.wolves.k12.mo.us [207.160.214.1]) by hub.freebsd.org (Postfix) with ESMTP id DD08A37B400; Sat, 2 Dec 2000 13:34:14 -0800 (PST) Received: from mail.wolves.k12.mo.us (cdillon@mail.wolves.k12.mo.us [207.160.214.1]) by mail.wolves.k12.mo.us (8.9.3/8.9.3) with ESMTP id PAA51206; Sat, 2 Dec 2000 15:34:13 -0600 (CST) (envelope-from cdillon@wolves.k12.mo.us) Date: Sat, 2 Dec 2000 15:34:13 -0600 (CST) From: Chris Dillon To: will@FreeBSD.ORG Cc: freebsd-ports@FreeBSD.ORG, bp@FreeBSD.ORG Subject: Re: ports/23238: new port In-Reply-To: <200012021815.eB2IFT184593@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, 2 Dec 2000 will@FreeBSD.ORG wrote: > Synopsis: new port > > Responsible-Changed-From-To: freebsd-ports->bp > Responsible-Changed-By: will > Responsible-Changed-When: Sat Dec 2 10:14:52 PST 2000 > Responsible-Changed-Why: > Over to SMBFS author. I think SMBFS would make an excellent addition to the base system. If room is ever found on the installation floppies for it, it would also make an excellent installation source method, much more feasable than FTP or NFS for some people. -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net FreeBSD: The fastest and most stable server OS on the planet. For IA32 and Alpha architectures. IA64 and PowerPC under development. http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 13:40:12 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 75E8F37B404 for ; Sat, 2 Dec 2000 13:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2Le2O08875; Sat, 2 Dec 2000 13:40:02 -0800 (PST) (envelope-from gnats) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F89037B400 for ; Sat, 2 Dec 2000 13:36:21 -0800 (PST) Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B656E2AB4 for ; Sat, 2 Dec 2000 13:36:12 -0800 (PST) Received: (from root@localhost) by 214.norrgarden.se (8.11.1/8.11.1) id eB2La1x02659; Sat, 2 Dec 2000 22:36:01 +0100 (CET) (envelope-from cj) Message-Id: <200012022136.eB2La1x02659@214.norrgarden.se> Date: Sat, 2 Dec 2000 22:36:01 +0100 (CET) From: cj@vallcom.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23241: update port: security/saint Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23241 >Category: ports >Synopsis: update port: security/saint >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 02 13:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Carl Johan Madestrand >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: >Description: update the port to latest version >How-To-Repeat: >Fix: diff -urN /usr/ports/security/saint/Makefile saint/Makefile --- /usr/ports/security/saint/Makefile Wed Nov 8 13:31:57 2000 +++ saint/Makefile Sat Dec 2 22:10:24 2000 @@ -6,7 +6,8 @@ # PORTNAME= saint -PORTVERSION= 3.1 +PORTVERSION= 3.1.1 +DISTNAME= ${PORTNAME}-${PORTVERSION}.beta2 CATEGORIES= security MASTER_SITES= ftp://ftp.wwdsi.com/pub/saint/ \ http://www.wwdsi.com/saint/downloads/ @@ -18,7 +19,7 @@ USE_PERL5= yes MANCOMPRESSED= no MAN1= saint.1 -WRKSRC= ${WRKDIR}/saint-3.1 +WRKSRC= ${WRKDIR}/saint-3.1.1 GNU_CONFIGURE= yes MAKE_ENV= "LIBS=-lrpcsvc" "XFLAGS=-g -O2 -DSTDC_HEADERS=1 -DGETGROUPS_T=gid_t -DSYS_ERRLIST_DECLARED=1 " "RPCGEN=/usr/bin/rpcgen" INSTALL_TARGET= all diff -urN /usr/ports/security/saint/distinfo saint/distinfo --- /usr/ports/security/saint/distinfo Fri Nov 3 18:41:58 2000 +++ saint/distinfo Sat Dec 2 22:10:12 2000 @@ -1 +1 @@ -MD5 (saint-3.1.tar.gz) = 194c4e83ea889a830a634a2478d2ce7a +MD5 (saint-3.1.1.beta2.tar.gz) = bbeb97b14c1af81912a14a4074b25926 diff -urN /usr/ports/security/saint/pkg-plist saint/pkg-plist --- /usr/ports/security/saint/pkg-plist Wed Nov 8 13:31:57 2000 +++ saint/pkg-plist Sat Dec 2 22:29:04 2000 @@ -134,6 +134,7 @@ saint/html/dots/reddot.gif saint/html/dots/whitedot.gif saint/html/dots/yellowdot.gif +saint/html/images/sans.gif saint/html/images/checkmark.gif saint/html/images/top10.jpg saint/html/images/long_bottom_border.gif @@ -198,6 +199,10 @@ saint/html/tutorials/first_time/make.html saint/html/tutorials/first_time/scanning.html saint/html/tutorials/first_time/template.html +saint/html/tutorials/vulnerability/Cisco_Catalyst_access.html +saint/html/tutorials/vulnerability/Lotus_Domino_vulnerability.html +saint/html/tutorials/vulnerability/Microsoft_Terminal_Server.html +saint/html/tutorials/vulnerability/iPlanet_vulnerabilities.html saint/html/tutorials/vulnerability/HP_Openview_vulnerabilities.html saint/html/tutorials/vulnerability/JetAdmin_vulnerabilities.html saint/html/tutorials/vulnerability/http_Cmail_access.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 2 14: 0: 9 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D07B837B402 for ; Sat, 2 Dec 2000 14:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB2M01N11011; Sat, 2 Dec 2000 14:00:01 -0800 (PST) (envelope-from gnats) Received: from cielo.eece.unm.edu (cielo.eece.unm.edu [129.24.24.11]) by hub.freebsd.org (Postfix) with ESMTP id 7051637B400 for ; Sat, 2 Dec 2000 13:55:17 -0800 (PST) Received: from jalapeno.eece.unm.edu ([129.24.24.88] helo=eece.unm.edu) by cielo.eece.unm.edu with esmtp (Exim 3.12 #4) id 142Kch-0000KG-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 02 Dec 2000 14:55:11 -0700 Received: (from dbader@localhost) by eece.unm.edu (8.9.3+Sun/8.9.1) id OAA11177; Sat, 2 Dec 2000 14:55:11 -0700 (MST) Message-Id: <200012022155.OAA11177@eece.unm.edu> Date: Sat, 2 Dec 2000 14:55:11 -0700 (MST) From: "David A. Bader" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23242: ports: net/mpich update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23242 >Category: ports >Synopsis: net/mpich patch >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 02 14:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David A. Bader >Release: FreeBSD 4.2-RELEASE i386 >Organization: University of New Mexico >Environment: >Description: >How-To-Repeat: >Fix: please apply this new patch: begin 644 mpich-patch M+2TM("]U; Sat, 2 Dec 2000 16:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB30K1129611; Sat, 2 Dec 2000 16:20:01 -0800 (PST) (envelope-from gnats) Received: from portal.vegasunderwater.com (cx1010824-a.phnx3.az.home.com [24.21.124.141]) by hub.freebsd.org (Postfix) with ESMTP id 8681D37B400 for ; Sat, 2 Dec 2000 16:16:11 -0800 (PST) Received: by portal.vegasunderwater.com (Postfix, from userid 1021) id 542BF753F; Sat, 2 Dec 2000 16:58:15 -0700 (MST) Message-Id: <20001202235815.542BF753F@portal.vegasunderwater.com> Date: Sat, 2 Dec 2000 16:58:15 -0700 (MST) From: todd@vegasunderwater.com Reply-To: todd@vegasunderwater.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23244: Change request http-analyze Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23244 >Category: ports >Synopsis: http-analyze crashes when running in frames mode. cause gif files need to be png's. >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 02 16:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Todd Mortensen >Release: FreeBSD 4.2-STABLE i386 >Organization: Netstars >Environment: >Description: http-analyze crashes when running in frames mode. Cause: GD library makes buttons for frames support. Was crashing when trying to load gif files. >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: # # http-analyze # http-analyze/scripts # http-analyze/scripts/post-patch # http-analyze/files # http-analyze/files/patch-aa # http-analyze/files/patch-ab # http-analyze/files/patch-ac # http-analyze/pkg-descr # http-analyze/pkg-comment # http-analyze/pkg-plist # http-analyze/distinfo # http-analyze/README.html # http-analyze/Makefile # echo c - http-analyze mkdir -p http-analyze > /dev/null 2>&1 echo c - http-analyze/scripts mkdir -p http-analyze/scripts > /dev/null 2>&1 echo x - http-analyze/scripts/post-patch sed 's/^X//' >http-analyze/scripts/post-patch << 'END-of-http-analyze/scripts/post-patch' X#!/bin/sh Xgifdir="${WRKSRC}/files/btn" Xgif2png=`which gif2png` X Xif [ -x $gif2png ]; then X patch --quiet ${WRKSRC}/images.c << EOP X*** images.c.orig Fri Nov 17 00:52:02 2000 X--- images.c Fri Nov 17 00:52:48 2000 X*************** X*** 996,1032 **** X } X X ICON_TAB icon_tab[] = { X! { "btn/sq_green.gif", 0, 204, 0 }, X! { "btn/sq_blue.gif", 0, 0, 255 }, X! { "btn/sq_red.gif", 255, 0, 0 }, X! { "btn/sq_orange.gif", 222, 102, 0 }, X! { "btn/sq_yellow.gif", 242, 242, 0 }, X! { "btn/sq_magenta.gif", 153, 0, 255 }, X! { "btn/sq_grey.gif", 204, 204, 204 } X }; X X BTN_TAB buttons[] = { /* various images */ X! { "btn/netstore_sw.gif", "Netstore", 0, 0 }, X! { "btn/netstore_sb.gif", "Netstore", 0, 0 }, X! { "btn/RAG_sw.gif", NULL, 0, 0 }, X! { "btn/RAG_sb.gif", NULL, 0, 0 }, X! { "btn/year_off.gif", "summary", 0, 0 }, X! { "btn/totals_off.gif", "totals", 0, 0 }, X! { "btn/days_off.gif", "days", 0, 0 }, X { NULL, NULL, 0, 0 }, X { NULL, NULL, 0, 0 }, X! { "btn/avload_off.gif", "avload", 0, 0 }, X! { "btn/topurl_off.gif", "topurl", 0, 0 }, X! { "btn/topdom_off.gif", "topdom", 0, 0 }, X! { "btn/topuag_off.gif", "topuag", 0, 0 }, X! { "btn/topref_off.gif", "topref", 0, 0 }, X! { "btn/cntry_off.gif", "country", 0, 0 }, X! { "btn/files_off.gif", "files", 0, 0 }, X! { "btn/rfiles_off.gif", "rfiles", 0, 0 }, X! { "btn/sites_off.gif", "sites", 0, 0 }, X! { "btn/rsites_off.gif", "rsites", 0, 0 }, X! { "btn/agents_off.gif", "agents", 0, 0 }, X! { "btn/refers_off.gif", "refers", 0, 0 } X }; X X static void mkIcon(char * const fname, ICON_TAB * const tp) { X--- 996,1032 ---- X } X X ICON_TAB icon_tab[] = { X! { "btn/sq_green.png", 0, 204, 0 }, X! { "btn/sq_blue.png", 0, 0, 255 }, X! { "btn/sq_red.png", 255, 0, 0 }, X! { "btn/sq_orange.png", 222, 102, 0 }, X! { "btn/sq_yellow.png", 242, 242, 0 }, X! { "btn/sq_magenta.png", 153, 0, 255 }, X! { "btn/sq_grey.png", 204, 204, 204 } X }; X X BTN_TAB buttons[] = { /* various images */ X! { "btn/netstore_sw.png", "Netstore", 0, 0 }, X! { "btn/netstore_sb.png", "Netstore", 0, 0 }, X! { "btn/RAG_sw.png", NULL, 0, 0 }, X! { "btn/RAG_sb.png", NULL, 0, 0 }, X! { "btn/year_off.png", "summary", 0, 0 }, X! { "btn/totals_off.png", "totals", 0, 0 }, X! { "btn/days_off.png", "days", 0, 0 }, X { NULL, NULL, 0, 0 }, X { NULL, NULL, 0, 0 }, X! { "btn/avload_off.png", "avload", 0, 0 }, X! { "btn/topurl_off.png", "topurl", 0, 0 }, X! { "btn/topdom_off.png", "topdom", 0, 0 }, X! { "btn/topuag_off.png", "topuag", 0, 0 }, X! { "btn/topref_off.png", "topref", 0, 0 }, X! { "btn/cntry_off.png", "country", 0, 0 }, X! { "btn/files_off.png", "files", 0, 0 }, X! { "btn/rfiles_off.png", "rfiles", 0, 0 }, X! { "btn/sites_off.png", "sites", 0, 0 }, X! { "btn/rsites_off.png", "rsites", 0, 0 }, X! { "btn/agents_off.png", "agents", 0, 0 }, X! { "btn/refers_off.png", "refers", 0, 0 } X }; X X static void mkIcon(char * const fname, ICON_TAB * const tp) { XEOP X echo "===> Converting gifs to png format" X find $gifdir -name "*gif" -type f -exec $gif2png -d -O {} \; Xelif [ ! -x $gif2png ]; then X echo "*** Convertion of gifs failed." X echo "*** Running http-analyze with the -f option may cause segmentation faults." X echo "*** It is recommended to install gif2png and reinstall this port." Xfi X Xexit 0 END-of-http-analyze/scripts/post-patch echo c - http-analyze/files mkdir -p http-analyze/files > /dev/null 2>&1 echo x - http-analyze/files/patch-aa sed 's/^X//' >http-analyze/files/patch-aa << 'END-of-http-analyze/files/patch-aa' X--- Makefile.orig Thu Apr 2 15:53:41 1998 X+++ Makefile Sat Apr 18 11:37:54 1998 X@@ -28,9 +28,9 @@ X # SVR4 /usr/share/man/cat1 - 1 X # Linux /usr/local/man/man1 - man X # X-LOCALLIB = /usr/local/lib X-LOCALBIN = /usr/local/bin X-LOCALMAN = /usr/local/man/cat1 X+LOCALLIB = $(PREFIX)/lib X+LOCALBIN = $(PREFIX)/bin X+LOCALMAN = $(PREFIX)/man/man1 X X # Program to use for compressing the manpage. X # If set to 'true', no compression is applied. X@@ -41,12 +41,12 @@ X # Extension of the source to be installed as manpage. X # if it is set to '1', the pre-formatted format is used, X # if it is set to 'man', the source format is used. X-#EXTENSION = man X-EXTENSION = 1 X+EXTENSION = man X+#EXTENSION = 1 X X # Location of the GD library and include files. X-GDLIB = /usr/local/lib/libgd.a X-GDINC = /usr/local/include X+GDLIB = $(PREFIX)/lib/libgd.a X+GDINC = $(PREFIX)/include/gd X X # X # Platform selection X@@ -76,7 +76,7 @@ X # X #CC = cc X #OPTIM = -O2 X-OPTIM = -g X+#OPTIM = -g X X # Remove NDEBUG to include various assertion checks in the program. X #COMDEFS = -DTIME_STATS -DNDEBUG X@@ -108,6 +108,10 @@ X #PLATFORM = -ansi -Dunix X #CC = gcc X X+# FreeBSD X+DEFINES = -DBSD -DHA_LIBDIR="$(LOCALLIB)/http-analyze" X+PLATFORM = X+ X # HP/UX X # X # Lacks definition of the 'unix' macro in it's compiler, so we X@@ -139,7 +143,7 @@ X #DEFINES = -DNETWARE $(COMDEFS) X #PLATFORM = X X-CFLAGS = $(OPTIM) $(PLATFORM) $(DEFINES) X+CFLAGS += $(PLATFORM) $(DEFINES) X LDFLAGS = X LINT = lint -Dunix -Xa -u X LIBS = -lm X@@ -213,13 +217,14 @@ X chmod 755 $(LOCALBIN)/http-analyze $(LOCALBIN)/ha-setup X chmod 444 $(LOCALMAN)/http-analyze.1 X chown bin.bin $(LOCALBIN)/http-analyze $(LOCALBIN)/ha-setup X- $(COMPRESS) $(LOCALMAN)/http-analyze.1 X+ -mkdir -p $(PREFIX)/share/doc/http-analyze X+ cp http-analyze.pdf http-analyze.ps $(PREFIX)/share/doc/http-analyze X -mkdir -p $(LOCALLIB)/http-analyze/btn X- cp files/3D* files/TLD files/bugreport.html sample.conf $(LOCALLIB)/http-analyze/ X+ cp files/3D* files/TLD files/bugreport.html rotate-httpd sample.conf \ X+ $(LOCALLIB)/http-analyze/ X cp files/btn/* $(LOCALLIB)/http-analyze/btn/ X @echo "\nNow run 'ha-setup' to configure http-analyze for your server (Unix only).\n" X X- X clean: X -rm -f $(HA_OBJ) $(3D_OBJ) lint.out X X@@ -228,4 +233,3 @@ X X clobber:: realclean X -rm -f index.html stats*.html stats*.hist sites*.html files*.html agents*.html *.gif X- END-of-http-analyze/files/patch-aa echo x - http-analyze/files/patch-ab sed 's/^X//' >http-analyze/files/patch-ab << 'END-of-http-analyze/files/patch-ab' X--- config.h.orig Thu Apr 2 15:53:41 1998 X+++ config.h Sat Apr 18 11:31:36 1998 X@@ -167,7 +167,7 @@ X # define HA_LIBDIR "/usr/local/lib/http-analyze" X #endif X X-#define REGID_FILE HA_LIBDIR "/REGID" X-#define BUTTON_DIR HA_LIBDIR "/btn" X+#define REGID_FILE "!!REGID_FILE!!" X+#define BUTTON_DIR "!!BUTTON_DIR!!" X X /* End of user configuration section. */ END-of-http-analyze/files/patch-ab echo x - http-analyze/files/patch-ac sed 's/^X//' >http-analyze/files/patch-ac << 'END-of-http-analyze/files/patch-ac' X*** Makefile.orig Thu Jan 6 13:03:58 2000 X--- Makefile Thu Jan 6 11:50:42 2000 X*************** X*** 146,152 **** X CFLAGS += $(PLATFORM) $(DEFINES) X LDFLAGS = X LINT = lint -Dunix -Xa -u X! LIBS = -lm X NROFF = nroff X NRFLAGS = -u1 -man X X--- 146,152 ---- X CFLAGS += $(PLATFORM) $(DEFINES) X LDFLAGS = X LINT = lint -Dunix -Xa -u X! LIBS = -lm -L/usr/local/lib -lpng X NROFF = nroff X NRFLAGS = -u1 -man X X*** images.c.orig Sun May 31 08:06:53 1998 X--- images.c Thu Jan 6 11:30:16 2000 X*************** X*** 196,202 **** X basey+(rangey/2), "No hits for this month!", black); X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImageGif(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X--- 196,202 ---- X basey+(rangey/2), "No hits for this month!", black); X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImagePng(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X*************** X*** 286,292 **** X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImageGif(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X--- 286,292 ---- X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImagePng(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X*************** X*** 441,447 **** X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImageGif(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X--- 441,447 ---- X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImagePng(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X*************** X*** 529,535 **** X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImageGif(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X--- 529,535 ---- X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImagePng(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X*************** X*** 666,672 **** X gdImageInterlace(im, 1); /* make it interlaced */ X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImageGif(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X--- 666,672 ---- X gdImageInterlace(im, 1); /* make it interlaced */ X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImagePng(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X*************** X*** 752,758 **** X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImageGif(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X--- 752,758 ---- X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImagePng(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X*************** X*** 988,994 **** X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImageGif(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X--- 988,994 ---- X X gdImageInterlace(im, 1); /* make it interlaced */ X if ((out = fopen(name, "wb")) != NULL) { X! gdImagePng(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X*************** X*** 1037,1043 **** X (void) gdImageColorAllocate(im, tp->color[0], tp->color[1], tp->color[2]); X gdImageInterlace(im, 1); X if ((out=fopen(fname, "wb")) != NULL) { X! gdImageGif(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X--- 1037,1043 ---- X (void) gdImageColorAllocate(im, tp->color[0], tp->color[1], tp->color[2]); X gdImageInterlace(im, 1); X if ((out=fopen(fname, "wb")) != NULL) { X! gdImagePng(im, out); X (void) fclose(out); X } X gdImageDestroy(im); X*************** X*** 1071,1077 **** X if (!buttons[idx].name) X continue; X if ((fp = fopen(buttons[idx].name, "rb")) != NULL) { X! ip = gdImageCreateFromGif(fp); X (void) fclose(fp); X buttons[idx].wid = gdImageSX(ip); X buttons[idx].ht = gdImageSY(ip); X--- 1071,1077 ---- X if (!buttons[idx].name) X continue; X if ((fp = fopen(buttons[idx].name, "rb")) != NULL) { X! ip = gdImageCreateFromPng(fp); X (void) fclose(fp); X buttons[idx].wid = gdImageSX(ip); X buttons[idx].ht = gdImageSY(ip); X END-of-http-analyze/files/patch-ac echo x - http-analyze/pkg-descr sed 's/^X//' >http-analyze/pkg-descr << 'END-of-http-analyze/pkg-descr' Xhttp-analyze analyzes the logfile of a web server and creates Xa summary of the server's access load and the efficiency of Xcaching mechanisms in X X o tabular X o graphical X o and three-dimensional form. X Xhttp-analyze recognizes logfiles in Common Logfile Format and has Xbeen highly optimized for processing huge logfiles in short Xupdate-intervals. X XWWW: http://www.netstore.de/Supply/http-analyze/ END-of-http-analyze/pkg-descr echo x - http-analyze/pkg-comment sed 's/^X//' >http-analyze/pkg-comment << 'END-of-http-analyze/pkg-comment' XA fast Log-Analyzer for web servers END-of-http-analyze/pkg-comment echo x - http-analyze/pkg-plist sed 's/^X//' >http-analyze/pkg-plist << 'END-of-http-analyze/pkg-plist' Xbin/ha-setup Xbin/http-analyze Xlib/http-analyze/3Dlogo.wrl.gz Xlib/http-analyze/3Dprolog.wrl Xlib/http-analyze/3DshelfMotion.wav Xlib/http-analyze/TLD Xlib/http-analyze/btn/RAG_sb.png Xlib/http-analyze/btn/RAG_sw.png Xlib/http-analyze/btn/agents_off.png Xlib/http-analyze/btn/agents_on.png Xlib/http-analyze/btn/avload_off.png Xlib/http-analyze/btn/avload_on.png Xlib/http-analyze/btn/cntry_off.png Xlib/http-analyze/btn/cntry_on.png Xlib/http-analyze/btn/days_off.png Xlib/http-analyze/btn/days_on.png Xlib/http-analyze/btn/files_off.png Xlib/http-analyze/btn/files_on.png Xlib/http-analyze/btn/globe.jpg Xlib/http-analyze/btn/ha2.0_sm.png Xlib/http-analyze/btn/netstore_sb.png Xlib/http-analyze/btn/netstore_sw.png Xlib/http-analyze/btn/refers_off.png Xlib/http-analyze/btn/refers_on.png Xlib/http-analyze/btn/rfiles_off.png Xlib/http-analyze/btn/rfiles_on.png Xlib/http-analyze/btn/rsites_off.png Xlib/http-analyze/btn/rsites_on.png Xlib/http-analyze/btn/sites_off.png Xlib/http-analyze/btn/sites_on.png Xlib/http-analyze/btn/topdom_off.png Xlib/http-analyze/btn/topdom_on.png Xlib/http-analyze/btn/topref_off.png Xlib/http-analyze/btn/topref_on.png Xlib/http-analyze/btn/topuag_off.png Xlib/http-analyze/btn/topuag_on.png Xlib/http-analyze/btn/topurl_off.png Xlib/http-analyze/btn/topurl_on.png Xlib/http-analyze/btn/totals_off.png Xlib/http-analyze/btn/totals_on.png Xlib/http-analyze/btn/year_off.png Xlib/http-analyze/btn/year_on.png Xlib/http-analyze/bugreport.html Xlib/http-analyze/rotate-httpd Xlib/http-analyze/sample.conf Xshare/doc/http-analyze/http-analyze.pdf Xshare/doc/http-analyze/http-analyze.ps X@dirrm lib/http-analyze/btn X@dirrm lib/http-analyze X@dirrm share/doc/http-analyze END-of-http-analyze/pkg-plist echo x - http-analyze/distinfo sed 's/^X//' >http-analyze/distinfo << 'END-of-http-analyze/distinfo' XMD5 (http-analyze2.01-src.tar.gz) = d17abdc0e1d43fbb2563ff2c9eb127f7 END-of-http-analyze/distinfo echo x - http-analyze/README.html sed 's/^X//' >http-analyze/README.html << 'END-of-http-analyze/README.html' X X The FreeBSD Ports Collection (www/http-analyze) X

The FreeBSD Ports Collection ("www/http-analyze")


X X X

You are now in the directory for the port "www/http-analyze" (package name "http-analyze-2.01"). X X

This is the one-line description for this port: X X


XA fast Log-Analyzer for web servers X


X X

Please read the file "pkg/DESCR" for a Xlonger description. X X

Go to the top of the ports tree for Xa summary on how to use the ports collection. X X

XThis port requires package(s) "gd-1.8.3 jpeg-6b png-1.0.7" to build. X

XThis port requires package(s) "gd-1.8.3 jpeg-6b png-1.0.7" to run. X X


X Go up one level X| X Go to top of ports tree X X END-of-http-analyze/README.html echo x - http-analyze/Makefile sed 's/^X//' >http-analyze/Makefile << 'END-of-http-analyze/Makefile' X# New ports collection Makefile for: http-analyze X# Date created: Thu Nov 17 00:41:16 MST 2000 X# Whom: Todd Mortensen X# $FreeBSD: ports/www/http-analyze/Makefile,v 1.13 2000/06/06 17:56:51 will Exp $ X# X XPORTNAME= http-analyze XPORTVERSION= 2.01 XCATEGORIES= www XMASTER_SITES= ftp://ftp.rent-a-guru.de/pub/http-analyze2.01/ XDISTNAME= http-analyze2.01 XEXTRACT_SUFX= -src.tar.gz X XMAINTAINER= todd@thisisa.com X XLIB_DEPENDS= gd.1:${PORTSDIR}/graphics/gd XBUILD_DEPENDS= gif2png:${PORTSDIR}/graphics/gif2png X XMAN1= http-analyze.1 X X.include END-of-http-analyze/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 2 17: 0:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id B634937B400 for ; Sat, 2 Dec 2000 17:00:18 -0800 (PST) Received: from localhost (trevor@localhost) by blues.jpj.net (8.11.1/8.10.0) with ESMTP id eB310CT17065; Sat, 2 Dec 2000 20:00:12 -0500 (EST) Date: Sat, 2 Dec 2000 20:00:11 -0500 (EST) From: Trevor Johnson To: Chen Wang Cc: Subject: Re: installing freebsd ports In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > What exactly is the make utility people are using > to perform make? (I have gmake 3.79) The make in /usr/bin/ from the FreeBSD base system will work. The errors you're getting look as though they could come from using GNU make instead. Try unaliasing "make", or re-installing /usr/bin/make from the installation media. Ordinarily GNU make is installed as /usr/local/bin/gmake to avoid conflicts such as this. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 17:35:19 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81C5737B401; Sat, 2 Dec 2000 17:35:18 -0800 (PST) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB31ZI937676; Sat, 2 Dec 2000 17:35:18 -0800 (PST) (envelope-from vanilla) Date: Sat, 2 Dec 2000 17:35:18 -0800 (PST) From: Message-Id: <200012030135.eB31ZI937676@freefall.freebsd.org> To: leeym@bsd.ce.ntu.edu.tw, vanilla@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23236: update port: devel/p5-IPC-Shareable Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: devel/p5-IPC-Shareable State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Sat Dec 2 17:35:07 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23236 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 17:52:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from play.cirx.org (play.cirx.org [211.72.15.244]) by hub.freebsd.org (Postfix) with ESMTP id 0F85937B401; Sat, 2 Dec 2000 17:52:30 -0800 (PST) Received: by play.cirx.org (Postfix, from userid 900) id D186FF812; Sun, 3 Dec 2000 09:52:28 +0800 (CST) Date: Sun, 3 Dec 2000 09:52:28 +0800 From: "Vanilla I . Shu" To: freebsd-ports@freebsd.org Cc: dburr@Freebsd.org Subject: databases/p5-ApacheDBI & www/p5-Apache-DBI Message-ID: <20001203095228.B510@play.cirx.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 X-Loop: FreeBSD.org What's different between databases/p5-ApacheDBI & www/p5-Apache-DBI? -- Retired from the DAMN Taiwan military in the end of 2000. vanilla (@) FreeBSD.ORG / http://people.FreeBSD.ORG/~vanilla To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 18:21:51 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 875C437B400; Sat, 2 Dec 2000 18:21:50 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB32Lo043924; Sat, 2 Dec 2000 18:21:50 -0800 (PST) (envelope-from dougb) Date: Sat, 2 Dec 2000 18:21:50 -0800 (PST) From: Message-Id: <200012030221.eB32Lo043924@freefall.freebsd.org> To: jason@mastaler.com, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23171: port refers to old versions of many xemacs packages Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port refers to old versions of many xemacs packages State-Changed-From-To: open->feedback State-Changed-By: dougb State-Changed-When: Sat Dec 2 18:20:30 PST 2000 State-Changed-Why: Have you brought this up with the port's maintainer? Also, please pick more realistic values for your PR priorities, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23171 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 18:26:37 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C92B237B400; Sat, 2 Dec 2000 18:26:35 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB32QZ844354; Sat, 2 Dec 2000 18:26:35 -0800 (PST) (envelope-from dougb) Date: Sat, 2 Dec 2000 18:26:35 -0800 (PST) From: Message-Id: <200012030226.eB32QZ844354@freefall.freebsd.org> To: jdugan@ncsa.uiuc.edu, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/23172: update cfengine port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update cfengine port State-Changed-From-To: open->feedback State-Changed-By: dougb State-Changed-When: Sat Dec 2 18:25:33 PST 2000 State-Changed-Why: Could you please submit a unified diff against the current cfengine port? That's a lot easier to deal with. Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: dougb Responsible-Changed-When: Sat Dec 2 18:25:33 PST 2000 Responsible-Changed-Why: This is jseger's port http://www.freebsd.org/cgi/query-pr.cgi?pr=23172 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 18:36:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ashburn.skiltech.com (ashburn.skiltech.com [216.235.79.239]) by hub.freebsd.org (Postfix) with ESMTP id 80BAE37B400 for ; Sat, 2 Dec 2000 18:36:26 -0800 (PST) Received: (from minter@localhost) by ashburn.skiltech.com (8.11.1/8.11.1) id eB32aQD62539; Sat, 2 Dec 2000 21:36:26 -0500 (EST) (envelope-from minter) Date: Sat, 2 Dec 2000 21:36:26 -0500 (EST) From: "H. Wade Minter" X-Sender: minter@ashburn.skiltech.com To: freebsd-ports@freebsd.org Subject: pine 4.30 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is pine 4.30 going into the -stable ports tree at any point? --Wade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 19:25:14 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 955F637B401; Sat, 2 Dec 2000 19:25:12 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB33PCn50607; Sat, 2 Dec 2000 19:25:12 -0800 (PST) (envelope-from lioux) Date: Sat, 2 Dec 2000 19:25:12 -0800 (PST) From: Message-Id: <200012030325.eB33PCn50607@freefall.freebsd.org> To: dbader@eece.unm.edu, lioux@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23242: net/mpich patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: net/mpich patch State-Changed-From-To: open->closed State-Changed-By: lioux State-Changed-When: Sat Dec 2 19:24:42 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23242 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 20:40: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.servint.com (mail.servint.com [209.50.251.137]) by hub.freebsd.org (Postfix) with ESMTP id EFDC937B400; Sat, 2 Dec 2000 20:40:04 -0800 (PST) Received: from joe (cc254741-a.avnl1.nj.home.com [24.6.65.126]) by mail.servint.com (8.10.0/8.10.0) with SMTP id eB34upB03480; Sat, 2 Dec 2000 23:56:51 -0500 (EST) From: "Joseph Toth" To: Cc: Subject: FreeBSD Port: tinycobol-0.3 Date: Sat, 2 Dec 2000 23:37:21 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I keep getting an error... configure:1810: cc -o conftest -O -pipe -L/usr/local/lib conftest.c -ldb 1>&5 /usr/libexec/elf/ld: cannot find -ldb (end of "config.log") *** Error code 1 Running a configure in work/tinycobol-0.3/ gives me this error. configure: error: library db version 1.85 not found Thanks, Joseph Toth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 21:20:10 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5328937B401 for ; Sat, 2 Dec 2000 21:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB35K2w63577; Sat, 2 Dec 2000 21:20:02 -0800 (PST) (envelope-from gnats) Received: from mail.icehouse.net (mail.icehouse.net [204.203.53.2]) by hub.freebsd.org (Postfix) with ESMTP id E98E537B400 for ; Sat, 2 Dec 2000 21:13:42 -0800 (PST) Received: from mars.walker.dom (ppp-404.icehouse.net [204.203.54.174]) by mail.icehouse.net (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id VAA28727 for ; Sat, 2 Dec 2000 21:13:36 -0800 Received: (from root@localhost) by mars.walker.dom (8.11.1/8.11.1) id eB35Db402126; Sat, 2 Dec 2000 21:13:37 -0800 (PST) (envelope-from kew) Message-Id: <200012030513.eB35Db402126@mars.walker.dom> Date: Sat, 2 Dec 2000 21:13:37 -0800 (PST) From: kew@icehouse.net Reply-To: kew@icehouse.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23245: new port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23245 >Category: ports >Synopsis: new 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: Sat Dec 02 21:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Keith Walker >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: >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: # # sscalc/Makefile # sscalc/pkg-descr # sscalc/pkg-plist # sscalc/pkg-comment # sscalc/distinfo # echo x - sscalc/Makefile sed 's/^X//' >sscalc/Makefile << 'END-of-sscalc/Makefile' X# New ports collection makefile for: sscalc X# Date created: Wed Nov 29 15:08:00 PST 2000 X# Whom: Keith Walker X# X# $FreeBSD$ X# X XPORTNAME= sscalc XPORTVERSION= 1.0 XCATEGORIES= astro XMASTER_SITES= http://www.icehouse.net/kew/ X XMAINTAINER= kew@icehouse.net X Xpre-fetch: X.if !defined(LAT) X @${ECHO_MSG} "Type \"make LAT= LON=\" to hardwire your site" X.else X @${ECHO_MSG} "Compiling in lat/longs" X.endif X Xpost-install: X @strip ${PREFIX}/bin/sscalc X @${MKDIR} ${PREFIX}/share/doc/sscalc X ${INSTALL_DATA} ${WRKSRC}/cities.txt ${PREFIX}/share/doc/sscalc X ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/sscalc X X.include END-of-sscalc/Makefile echo x - sscalc/pkg-descr sed 's/^X//' >sscalc/pkg-descr << 'END-of-sscalc/pkg-descr' XThis is sscalc, a sunrise/sunset time calculator, ported to C. XYou can find the sunrise and sunset times for anywhere in the world Xas long as you know the latitude and longitude of the location. X XThe program is a port of the Javascript program located at Xhttp://www.srrb.noaa.gov/highlights/sunrise/gen.html X XThe page was written by Aaron Horiuchi, Chris Lehman and Chris XCornwall. END-of-sscalc/pkg-descr echo x - sscalc/pkg-plist sed 's/^X//' >sscalc/pkg-plist << 'END-of-sscalc/pkg-plist' Xbin/sscalc Xshare/doc/sscalc/cities.txt Xshare/doc/sscalc/README X@dirrm share/doc/sscalc END-of-sscalc/pkg-plist echo x - sscalc/pkg-comment sed 's/^X//' >sscalc/pkg-comment << 'END-of-sscalc/pkg-comment' XA sunrise/sunset time calculator END-of-sscalc/pkg-comment echo x - sscalc/distinfo sed 's/^X//' >sscalc/distinfo << 'END-of-sscalc/distinfo' XMD5 (sscalc-1.0.tar.gz) = e3777b9b3031af7215c514fc3c0665b3 END-of-sscalc/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 2 22:50:17 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7300037B401; Sat, 2 Dec 2000 22:50:16 -0800 (PST) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB36oGO77497; Sat, 2 Dec 2000 22:50:16 -0800 (PST) (envelope-from kiri) Date: Sat, 2 Dec 2000 22:50:16 -0800 (PST) From: Message-Id: <200012030650.eB36oGO77497@freefall.freebsd.org> To: hsw@acm.org, kiri@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23124: xemacs*packages have been updated Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: xemacs*packages have been updated State-Changed-From-To: open->closed State-Changed-By: kiri State-Changed-When: Sat Dec 2 22:43:30 PST 2000 State-Changed-Why: Committed with changes for avoiding this trouble. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23124 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 2 23: 3: 0 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00D6237B400; Sat, 2 Dec 2000 23:02:59 -0800 (PST) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB372wj78795; Sat, 2 Dec 2000 23:02:58 -0800 (PST) (envelope-from kiri) Date: Sat, 2 Dec 2000 23:02:58 -0800 (PST) From: Message-Id: <200012030702.eB372wj78795@freefall.freebsd.org> To: jason@mastaler.com, kiri@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23171: port refers to old versions of many xemacs packages Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port refers to old versions of many xemacs packages State-Changed-From-To: feedback->closed State-Changed-By: kiri State-Changed-When: Sat Dec 2 22:51:10 PST 2000 State-Changed-Why: Sorry for late taking measures to meet this problem. I already committed with copying obsolete xemacs' packages to the private local_distfiles and added MASTER_SITE_LOCAL to MASTER_SITES of Makefiles. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23171 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 3 0: 0:24 2000 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CE61737B401 for ; Sun, 3 Dec 2000 00:00:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eB3807F85653; Sun, 3 Dec 2000 00:00:07 -0800 (PST) (envelope-from gnats) Received: from smtp1-gw.tp1rc.edu.tw (smtp1-gw.tp1rc.edu.tw [163.28.16.23]) by hub.freebsd.org (Postfix) with ESMTP id 3A6C637B400 for ; Sat, 2 Dec 2000 23:51:55 -0800 (PST) Received: from www.caece.net (bsd.ce.ntu.edu.tw [140.112.13.1]) by smtp1-gw.tp1rc.edu.tw (8.9.3/8.9.3) with ESMTP id PAA15769 for ; Sun, 3 Dec 2000 15:51:36 +0800 (CST) (envelope-from leeym@www.caece.net) Received: (from leeym@localhost) by www.caece.net (8.11.0/8.11.0) id eB37ppL62708; Sun, 3 Dec 2000 15:51:51 +0800 (CST) Message-Id: <200012030751.eB37ppL62708@www.caece.net> Date: Sun, 3 Dec 2000 15:51:51 +0800 (CST) From: Yen-Ming Lee Reply-To: leeym@bsd.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23246: new port: textproc/p5-XML-Stream Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23246 >Category: ports >Synopsis: new port: textproc/p5-XML-Stream >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 03 00:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: 4.x-STABLE >Description: XML::Stream provides you with access to XML Stream and Net::Jabber depends on it. >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-Stream # p5-XML-Stream/files # p5-XML-Stream/Makefile # p5-XML-Stream/distinfo # p5-XML-Stream/pkg-comment # p5-XML-Stream/pkg-descr # p5-XML-Stream/pkg-plist # echo c - p5-XML-Stream mkdir -p p5-XML-Stream > /dev/null 2>&1 echo c - p5-XML-Stream/files mkdir -p p5-XML-Stream/files > /dev/null 2>&1 echo x - p5-XML-Stream/Makefile sed 's/^X//' >p5-XML-Stream/Makefile << 'END-of-p5-XML-Stream/Makefile' X# New ports collection makefile for: p5-XML-Stream X# Date created: 28 Augest 2000 X# Whom: Yen-Ming Lee X# X# $FreeBSD$ X# X XPORTNAME= XML-Stream XPORTVERSION= 1.10 XCATEGORIES= textproc perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= XML XPKGNAMEPREFIX= p5- X XMAINTAINER= leeym@cae.ce.ntu.edu.tw X XRUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser X XPERL_CONFIGURE= YES X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= XML::Stream.3 XML::Stream::Namespace.3 X X.include END-of-p5-XML-Stream/Makefile echo x - p5-XML-Stream/distinfo sed 's/^X//' >p5-XML-Stream/distinfo << 'END-of-p5-XML-Stream/distinfo' XMD5 (XML-Stream-1.10.tar.gz) = 8cf628adb1671f7ede54db5da2b64f70 END-of-p5-XML-Stream/distinfo echo x - p5-XML-Stream/pkg-comment sed 's/^X//' >p5-XML-Stream/pkg-comment << 'END-of-p5-XML-Stream/pkg-comment' XXML::Stream provides you with access to XML Stream END-of-p5-XML-Stream/pkg-comment echo x - p5-XML-Stream/pkg-descr sed 's/^X//' >p5-XML-Stream/pkg-descr << 'END-of-p5-XML-Stream/pkg-descr' XXML::Stream v1.10 X XThis module provides you with access to XML Streams. An XML Stream Xis just that. A stream of XML over a connection between two computers. XFor more information about XML Streams, and the group that created them, Xplease visit: X Xhttp://etherx.jabber.org/streams X XRyan Eatmon XJabber Perl Team Leader Xreatmon@jabber.org END-of-p5-XML-Stream/pkg-descr echo x - p5-XML-Stream/pkg-plist sed 's/^X//' >p5-XML-Stream/pkg-plist << 'END-of-p5-XML-Stream/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/XML/Stream.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/Stream/Namespace.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Stream/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Stream X@dirrm lib/perl5/site_perl/%%PERL_VER%%/XML/Stream END-of-p5-XML-Stream/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