From owner-freebsd-ports Sun Jul 5 00:21:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA29961 for freebsd-ports-outgoing; Sun, 5 Jul 1998 00:21:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA29952 for ; Sun, 5 Jul 1998 00:21:34 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA27121; Sun, 5 Jul 1998 00:20:00 -0700 (PDT) Received: from roma.coe.ufrj.br (jonny@roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA29622 for ; Sun, 5 Jul 1998 00:15:40 -0700 (PDT) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id EAA02017; Sun, 5 Jul 1998 04:15:41 -0300 (EST) (envelope-from jonny) Message-Id: <199807050715.EAA02017@roma.coe.ufrj.br> Date: Sun, 5 Jul 1998 04:15:41 -0300 (EST) From: Joao Carlos Mendes Luis Reply-To: jonny@jonny.eng.br To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7167: elm cannot pgp for more than one recipient Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7167 >Category: ports >Synopsis: elm cannot pgp for more than one recipient >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 Jul 5 00:20:00 PDT 1998 >Last-Modified: >Originator: Joao Carlos Mendes Luis >Organization: COPPE/UFRJ >Release: FreeBSD 2.2.6-STABLE i386 >Environment: FreeBSD-stable, elm from current ports >Description: When sending encrypted mail for more than one recipient, elm cannot find the second and other recipients' key. >How-To-Repeat: Send pgp encrypted mail for more than one recipient. >Fix: Here's a patch that worked for me. Since this behaviour in elm is relatively recent, and according to the patches below, the "bug" was introduced in a (maybe not so) "recent" fix in FreeBSD's pclose.c. I would send the patch to the author, but could not find the right address, although I must confess I did not search enough. BTW: While you are there, verify that elm does not package. :) --- src/pgp.c.org Sat Mar 28 02:23:20 1998 +++ src/pgp.c Sun Jul 5 03:47:06 1998 @@ -65,6 +65,8 @@ char buf[STRING], address[STRING], *c, **keys=0, *pc, userpart[STRING]; int i=0, keys_len=0, keys_max=0, return_val=0, start=0; FILE *p; + pid_t pid; + int status; if (!name || !target) return(-1); @@ -106,7 +108,7 @@ while (*c && isspace (*c)) c++; /* move past any leading space! */ - if (fork () == 0) { + if ( ( pid = fork () ) == 0) { int tmp; setgid(groupid); @@ -160,7 +162,8 @@ ++keys_len; } } - pclose(p); + fclose(p); + waitpid(pid, &status, 0); if (keys_len > 0 || i > 1) break; else { >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 Jul 5 00:31:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA00462 for freebsd-ports-outgoing; Sun, 5 Jul 1998 00:31:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA00452 for ; Sun, 5 Jul 1998 00:31:34 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA27278; Sun, 5 Jul 1998 00:30:00 -0700 (PDT) Received: from pc-21490.bc.rogers.wave.ca (pc-21490.bc.rogers.wave.ca [24.113.51.240]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA00120 for ; Sun, 5 Jul 1998 00:22:28 -0700 (PDT) (envelope-from jh@pc-21490.bc.rogers.wave.ca) Received: (from jh@localhost) by pc-21490.bc.rogers.wave.ca (8.8.8/8.8.7) id AAA07307; Sun, 5 Jul 1998 00:21:59 -0700 (PDT) Message-Id: <199807050721.AAA07307@pc-21490.bc.rogers.wave.ca> Date: Sun, 5 Jul 1998 00:21:59 -0700 (PDT) From: Jonathan Hanna Reply-To: pangolin@rogers.wave.ca To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7168: upgrade to xfmail-1.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7168 >Category: ports >Synopsis: upgrade to xfmail-1.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jul 5 00:30:00 PDT 1998 >Last-Modified: >Originator: Jonathan Hanna >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: xfmail-1.3 is now the current release. >How-To-Repeat: >Fix: diff -c -N -r xfmail.old/Makefile xfmail/Makefile *** xfmail.old/Makefile Sat Jan 10 10:36:55 1998 --- xfmail/Makefile Sat Jul 4 18:03:05 1998 *************** *** 1,20 **** # New ports collection makefile for: xfmail # http://Burka.NetVision.net.il/xfmail/xfmail.html ! # Version required: 1.2 # Date created: 30 June 1996 # Whom: gena # # $Id: Makefile,v 1.10 1998/01/10 18:36:55 jdp Exp $ # ! DISTNAME= xfmail-1.2 CATEGORIES= x11 mail MASTER_SITES= ftp://burka.netvision.net.il/pub/xfmail/ MAINTAINER= gena@NetVision.net.il LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm \ ! xforms\\.0\\.88:${PORTSDIR}/x11/xforms USE_X11= yes GNU_CONFIGURE= yes --- 1,20 ---- # New ports collection makefile for: xfmail # http://Burka.NetVision.net.il/xfmail/xfmail.html ! # Version required: 1.3 # Date created: 30 June 1996 # Whom: gena # # $Id: Makefile,v 1.10 1998/01/10 18:36:55 jdp Exp $ # ! DISTNAME= xfmail-1.3 CATEGORIES= x11 mail MASTER_SITES= ftp://burka.netvision.net.il/pub/xfmail/ MAINTAINER= gena@NetVision.net.il LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm \ ! xforms\\.0\\.88\\.1:${PORTSDIR}/x11/xforms USE_X11= yes GNU_CONFIGURE= yes diff -c -N -r xfmail.old/files/md5 xfmail/files/md5 *** xfmail.old/files/md5 Sat Jan 10 10:37:05 1998 --- xfmail/files/md5 Sat Jul 4 18:00:15 1998 *************** *** 1 **** ! MD5 (xfmail-1.2.tar.gz) = 71eb7dd8bb1ebf8fc6374e756e86d49f --- 1 ---- ! MD5 (xfmail-1.3.tar.gz) = c756fb26bb4b31e59af775d3a088fb73 >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 Jul 5 01:08:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA04686 for freebsd-ports-outgoing; Sun, 5 Jul 1998 01:08:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA04666; Sun, 5 Jul 1998 01:08:38 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id KAA24541; Sun, 5 Jul 1998 10:04:31 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by semyam.dinoco.de (8.8.8/8.8.8) with ESMTP id XAA03508; Sat, 4 Jul 1998 23:25:00 +0200 (CEST) (envelope-from seggers@semyam.dinoco.de) Message-Id: <199807042125.XAA03508@semyam.dinoco.de> To: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7161: Update to xboard - now at version 4.0.0 In-reply-to: Your message of "Sat, 04 Jul 1998 14:20:00 PDT." <199807042120.OAA15324@freefall.freebsd.org> Cc: seggers@semyam.dinoco.de, xaa@stack.nl Date: Sat, 04 Jul 1998 23:25:00 +0200 From: Stefan Eggers Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sorry, I forgot to include the two new patch files. One helps to get a reasonable info dir entry and the other teaches the Makefile of xboard to respect the PREFIX setting FreeBSD uses for ports. Stefan. --- Makefile.in.ORIG Sun Jun 21 03:36:11 1998 +++ Makefile.in Sat Jul 4 22:25:11 1998 @@ -11,7 +11,7 @@ srcdir = @srcdir@ VPATH = @srcdir@ -prefix = @prefix@ +prefix = $(PREFIX) exec_prefix = @exec_prefix@ bindir = @bindir@ mandir = @mandir@ --- xboard.texi.ORIG Sun Jun 21 03:36:22 1998 +++ xboard.texi Sat Jul 4 22:28:39 1998 @@ -1,4 +1,8 @@ @ifinfo +@dircategory Chess programs and related tools +@direntry +* XBoard: (xboard). The XBoard electronic chess board. +@end direntry This file documents version @value{VERSION} of @value{NAME}. @value{NAME} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 01:11:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA05101 for freebsd-ports-outgoing; Sun, 5 Jul 1998 01:11:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA05076 for ; Sun, 5 Jul 1998 01:11:38 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA28000; Sun, 5 Jul 1998 01:10:02 -0700 (PDT) Date: Sun, 5 Jul 1998 01:10:02 -0700 (PDT) Message-Id: <199807050810.BAA28000@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Stefan Eggers Subject: Re: ports/7161: Update to xboard - now at version 4.0.0 Reply-To: Stefan Eggers Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7161; it has been noted by GNATS. From: Stefan Eggers To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports@freebsd.org Cc: seggers@semyam.dinoco.de, xaa@stack.nl Subject: Re: ports/7161: Update to xboard - now at version 4.0.0 Date: Sat, 04 Jul 1998 23:25:00 +0200 Sorry, I forgot to include the two new patch files. One helps to get a reasonable info dir entry and the other teaches the Makefile of xboard to respect the PREFIX setting FreeBSD uses for ports. Stefan. --- Makefile.in.ORIG Sun Jun 21 03:36:11 1998 +++ Makefile.in Sat Jul 4 22:25:11 1998 @@ -11,7 +11,7 @@ srcdir = @srcdir@ VPATH = @srcdir@ -prefix = @prefix@ +prefix = $(PREFIX) exec_prefix = @exec_prefix@ bindir = @bindir@ mandir = @mandir@ --- xboard.texi.ORIG Sun Jun 21 03:36:22 1998 +++ xboard.texi Sat Jul 4 22:28:39 1998 @@ -1,4 +1,8 @@ @ifinfo +@dircategory Chess programs and related tools +@direntry +* XBoard: (xboard). The XBoard electronic chess board. +@end direntry This file documents version @value{VERSION} of @value{NAME}. @value{NAME} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 01:11:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA05098 for freebsd-ports-outgoing; Sun, 5 Jul 1998 01:11:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA05073 for ; Sun, 5 Jul 1998 01:11:35 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA27995; Sun, 5 Jul 1998 01:10:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA04647 for ; Sun, 5 Jul 1998 01:08:33 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id KAA24542 for FreeBSD-gnats-submit@freebsd.org; Sun, 5 Jul 1998 10:04:32 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id XAA03992; Sat, 4 Jul 1998 23:37:52 +0200 (CEST) (envelope-from seggers) Message-Id: <199807042137.XAA03992@semyam.dinoco.de> Date: Sat, 4 Jul 1998 23:37:52 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: ports/7170: Small bug in xscreensaver port description Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7170 >Category: ports >Synopsis: Small bug in xscreensaver port description >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Jul 5 01:10:01 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 2.2.6-STABLE i386 >Environment: A room in Germany. A little bit too warm. :-) >Description: I found a very tiny bug in the description file of xscreen- saver. >How-To-Repeat: Read the description file >Fix: --- DESCR.ORIG Fri Jan 23 02:58:25 1998 +++ DESCR Sat Jul 4 23:34:25 1998 @@ -2,7 +2,7 @@ screen instead of going blank. You can specify the programs and their arguments using resources. -It doesn't work very well with on my XF86_S3 with the MIT-SCREEN-SAVER +It doesn't work very well with my XF86_S3 with the MIT-SCREEN-SAVER extension, so it is disabled in config.h. It makes very little difference anyway as the saver still watches the keyboard and mouse activity. >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 Jul 5 05:27:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA04728 for freebsd-ports-outgoing; Sun, 5 Jul 1998 05:27:27 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from online.no (pilt.online.no [193.212.1.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA04722 for ; Sun, 5 Jul 1998 05:27:22 -0700 (PDT) (envelope-from havardjv@gudmund.vgs.no) Received: from arwen.myst.no (ti21a43-0012.dialup.online.no [130.67.194.156]) by online.no (8.8.8/8.8.7) with ESMTP id OAA08191 for ; Sun, 5 Jul 1998 14:27:22 +0200 (MET DST) Received: from localhost (hjv@localhost) by arwen.myst.no (8.8.7/8.8.7) with SMTP id OAA00644 for ; Sun, 5 Jul 1998 14:29:16 +0200 (CEST) (envelope-from havardjv@gudmund.vgs.no) X-Authentication-Warning: arwen.myst.no: hjv owned process doing -bs Date: Sun, 5 Jul 1998 14:29:16 +0200 (CEST) From: Haavard Vaagstoel X-Sender: hjv@arwen.myst.no To: ports@FreeBSD.ORG Subject: installing gtk-1.0.4 port 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 Hello. I have been trying to install gtk-1.0.4 using the port found in the ports collection. Everything works fine, it seems, up to the point where I get the message "Installing for gtk-1.0.4". I have included the result below, and if you can look into the problem and tell me what I need to do, I would be very greatful. I tried sending this message to the listed port maintainer (vanilla@freebsd.org), but since I have this far recieved no reply, I'm sending it to you as well. <<< Transcript begins >>> su-2.01# make install >> Checksum OK for gtk+-1.0.4.tar.gz. ===> Installing for gtk-1.0.4 Making install in glib gmake[1]: Entering directory `/usr/ports/x11/gtk/work/gtk+-1.0.4/glib' /bin/sh ./mkinstalldirs /usr/X11R6/lib /bin/sh ./libtool --mode=install ../ -m 644 libglib.la /usr/X11R6/lib/libglib.la ../ -m 644 .libs/libglib.so.1.4 /usr/X11R6/lib/libglib.so.1.4 eval: ../: permission denied gmake[1]: *** [install-libLTLIBRARIES] Error 126 gmake[1]: Leaving directory `/usr/ports/x11/gtk/work/gtk+-1.0.4/glib' gmake: *** [install-recursive] Error 1 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. <<< End of transcript >>> -- Haavard Vaagstoel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 06:11:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07048 for freebsd-ports-outgoing; Sun, 5 Jul 1998 06:11:37 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA07035 for ; Sun, 5 Jul 1998 06:11:36 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA06692; Sun, 5 Jul 1998 06:10:01 -0700 (PDT) Received: from myrddin.demon.co.uk (exim@myrddin.demon.co.uk [158.152.54.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06972 for ; Sun, 5 Jul 1998 06:11:09 -0700 (PDT) (envelope-from dom@myrddin.demon.co.uk) Received: from dom by myrddin.demon.co.uk with local (Exim 1.92 #1) id 0ysmRZ-0002I3-00; Sun, 5 Jul 1998 11:54:53 +0100 Message-Id: Date: Sun, 5 Jul 1998 11:54:53 +0100 From: Dom Mitchell Reply-To: dom@myrddin.demon.co.uk To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7173: install man page for frotz port. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7173 >Category: ports >Synopsis: install man page for frotz 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: Sun Jul 5 06:10:00 PDT 1998 >Last-Modified: >Originator: Dom Mitchell >Organization: Big orange angry things, inc. >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD myrddin.demon.co.uk 3.0-CURRENT FreeBSD 3.0-CURRENT #2: Mon Jun 22 22:24:32 BST 1998 root@myrddin.demon.co.uk:/usr/src/sys/compile/MYRDDIN i386 >Description: The Frotz port does not install the man page. This patch corrects that. >How-To-Repeat: cd /usr/ports/games/frotz make install man frotz >Fix: Apply this patch to the port: diff -urP --exclude=CVS /usr/ports/games/frotz/Makefile frotz/Makefile --- /usr/ports/games/frotz/Makefile Mon May 18 05:10:04 1998 +++ frotz/Makefile Sun Jul 5 11:40:24 1998 @@ -16,8 +16,11 @@ ALL_TARGET= WRKSRC= ${WRKDIR}/frotz-2.32 +MAN6= frotz.6 + do-install: @ ${INSTALL_PROGRAM} ${WRKSRC}/frotz ${PREFIX}/bin + @ ${INSTALL_MAN} ${WRKSRC}/frotz.6 ${PREFIX}/man/man6 .if !defined(NOPORTDOCS) @ ${MKDIR} ${PREFIX}/share/doc/frotz diff -urP --exclude=CVS /usr/ports/games/frotz/pkg/PLIST frotz/pkg/PLIST --- /usr/ports/games/frotz/pkg/PLIST Mon May 18 05:10:07 1998 +++ frotz/pkg/PLIST Sun Jul 5 11:40:56 1998 @@ -1,4 +1,5 @@ bin/frotz +man/man6/frotz.6.gz share/doc/frotz/Readme.unix share/doc/frotz/Todo @dirrm share/doc/frotz >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 Jul 5 07:31:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA10385 for freebsd-ports-outgoing; Sun, 5 Jul 1998 07:31:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA10380 for ; Sun, 5 Jul 1998 07:31:06 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (sjx-ca126-03.ix.netcom.com [207.92.177.195]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id HAA03118; Sun, 5 Jul 1998 07:31:08 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id HAA28759; Sun, 5 Jul 1998 07:31:05 -0700 (PDT) Date: Sun, 5 Jul 1998 07:31:05 -0700 (PDT) Message-Id: <199807051431.HAA28759@silvia.HIP.Berkeley.EDU> To: mph@pobox.com CC: ports@FreeBSD.ORG, brett@peloton.physics.montana.edu In-reply-to: <19980517233452.A1746@flarn.dyn.ml.org> (message from Matthew Hunt on Sun, 17 May 1998 23:34:52 -0400) Subject: Re: Request for repository move: afterstep144 -> afterstep-devel From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Can we move this to afterstep-devel instead? Ok, done copying. Go ahead and do whatever else is necessary. By the way, please drop me a note if you want another afterstep* directory (even if it's another version) so I can do another copy. Satohsi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 07:32:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA10472 for freebsd-ports-outgoing; Sun, 5 Jul 1998 07:32:00 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA10373; Sun, 5 Jul 1998 07:30:54 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (sjx-ca126-03.ix.netcom.com [207.92.177.195]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id HAA03114; Sun, 5 Jul 1998 07:30:03 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id HAA28748; Sun, 5 Jul 1998 07:29:55 -0700 (PDT) Date: Sun, 5 Jul 1998 07:29:55 -0700 (PDT) Message-Id: <199807051429.HAA28748@silvia.HIP.Berkeley.EDU> To: dima@tejblum.dnttm.rssi.ru CC: ady@warpnet.ro, freebsd-ports@FreeBSD.ORG, dt@FreeBSD.ORG In-reply-to: <199807041655.UAA19456@tejblum.dnttm.rssi.ru> (message from Dmitrij Tejblum on Sat, 04 Jul 1998 20:55:09 +0400) Subject: Re: Rumba has disappeared ... From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * > give me a name, should it be "sharity-light"? * * Yes, I think it is best choice. Ok, done. Commit away. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 09:01:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA17515 for freebsd-ports-outgoing; Sun, 5 Jul 1998 09:01:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA17500 for ; Sun, 5 Jul 1998 09:01:39 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08240; Sun, 5 Jul 1998 09:00:03 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA17256 for ; Sun, 5 Jul 1998 08:58:50 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id RAA23859 for FreeBSD-gnats-submit@freebsd.org; Sun, 5 Jul 1998 17:57:34 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.8.8/8.8.8) id RAA23485; Sun, 5 Jul 1998 17:55:32 +0200 (CEST) (envelope-from seggers) Message-Id: <199807051555.RAA23485@semyam.dinoco.de> Date: Sun, 5 Jul 1998 17:55:32 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: ports/7175: pkg_delete mgetty-1.1.14 deletes its config files Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7175 >Category: ports >Synopsis: pkg_delete mgetty-1.1.14 deletes its config files >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 Jul 5 09:00:03 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 2.2.6-STABLE i386 >Environment: My 2.2-stable system with its MicroLink 56k. >Description: The mgetty PLIST is buggy insofar as it deletes the config files on deinstallation. After an update to a newer version with deinstalling and then installing a newer version one looses it for example. >How-To-Repeat: Install mgetty, make some config changes, deinstall mgetty. The config is lost. >Fix: Change the install target in the mgetty Makefile to not copy them to "*.config" but to "*.config-sample" instead. Change PLIST to follow this change. >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 Jul 5 14:21:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA09868 for freebsd-ports-outgoing; Sun, 5 Jul 1998 14:21:24 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA09857 for ; Sun, 5 Jul 1998 14:21:21 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by freefall.freebsd.org (8.8.8/8.8.5) with ESMTP id OAA01966 for ; Sun, 5 Jul 1998 14:21:19 -0700 (PDT) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id XAA01570 for freebsd-ports@freefall.cdrom.com; Sun, 5 Jul 1998 23:21:10 +0200 (MEST) (envelope-from kuku) Date: Sun, 5 Jul 1998 23:21:10 +0200 (MEST) From: Christoph Kukulies Message-Id: <199807052121.XAA01570@gilberto.physik.RWTH-Aachen.DE> To: freebsd-ports@freefall.cdrom.com Subject: mysql - 3.22.3alpha Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anyone tried out 3.22.3alpha or 3.22.4 ? I compiled it today by some Makefile tweaklng and I see big performance problems. Is it that mit-pthreads are so slow? I would like to share some experiences with mysql and FreeBSD. Do otheres see performance problems as well? Also there seem to be some name-resolving problems (127.0.0.1 does not resolve to localhost on my 2.2.6 within mysql). -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 15:37:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA23364 for freebsd-ports-outgoing; Sun, 5 Jul 1998 15:37:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA23355 for ; Sun, 5 Jul 1998 15:36:54 -0700 (PDT) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id QAA19103 for ; Sun, 5 Jul 1998 16:35:57 -0600 (MDT) (envelope-from brett@peloton.physics.montana.edu) Date: Sun, 5 Jul 1998 16:35:57 -0600 (MDT) From: Brett Taylor To: freebsd-ports@FreeBSD.ORG Subject: applause 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 wanted to give a big round of applause to Steve Price, the amazing man of many commits this last week! Nice job Steve - keep up the good work! Brett *********************************************************** Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ How many Microsoft employees does it take to change a light bulb? Zero. They declared Darkness[tm] the standard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 15:42:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA24365 for freebsd-ports-outgoing; Sun, 5 Jul 1998 15:42:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA24253 for ; Sun, 5 Jul 1998 15:42:14 -0700 (PDT) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id QAA19165 for ; Sun, 5 Jul 1998 16:41:16 -0600 (MDT) (envelope-from brett@peloton.physics.montana.edu) Date: Sun, 5 Jul 1998 16:41:16 -0600 (MDT) From: Brett Taylor Reply-To: Brett Taylor To: freebsd-ports@FreeBSD.ORG Subject: afterstep development help 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 all, I've been trying to work w/ the AfterStep development team to get the various apps and the window manager itself to compile cleanly and actually work (many apps are Linux specific). Unfortunately, I'm a bit swamped now w/ my own stuff and I haven't been making as much progress on this as I had hoped. Is anyone interested in helping out with this? If you are, can you email me and let me know. I sort of have a list of things that need to be done and I've gotten a couple of the developers to do some work on their own. That and they keep adding new apps! :-) Thanks, Brett *********************************************************** Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ How many Microsoft employees does it take to change a light bulb? Zero. They declared Darkness[tm] the standard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 15:58:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA27528 for freebsd-ports-outgoing; Sun, 5 Jul 1998 15:58:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA27473; Sun, 5 Jul 1998 15:58:24 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA03902; Sun, 5 Jul 1998 15:58:22 -0700 (PDT) Date: Sun, 5 Jul 1998 15:58:22 -0700 (PDT) Message-Id: <199807052258.PAA03902@freefall.freebsd.org> To: seggers@semyam.dinoco.de, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7161 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to xboard - now at version 4.0.0 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jul 5 15:57:31 PDT 1998 State-Changed-Why: Update committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 16:02:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA28064 for freebsd-ports-outgoing; Sun, 5 Jul 1998 16:02:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA27952; Sun, 5 Jul 1998 16:01:45 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA04099; Sun, 5 Jul 1998 16:01:43 -0700 (PDT) Date: Sun, 5 Jul 1998 16:01:43 -0700 (PDT) Message-Id: <199807052301.QAA04099@freefall.freebsd.org> To: seggers@semyam.dinoco.de, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7170 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Small bug in xscreensaver port description State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jul 5 16:00:27 PDT 1998 State-Changed-Why: Suggested patch applied, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 16:04:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA28431 for freebsd-ports-outgoing; Sun, 5 Jul 1998 16:04:51 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA28328; Sun, 5 Jul 1998 16:03:55 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA04269; Sun, 5 Jul 1998 16:03:47 -0700 (PDT) Date: Sun, 5 Jul 1998 16:03:47 -0700 (PDT) Message-Id: <199807052303.QAA04269@freefall.freebsd.org> To: dom@myrddin.demon.co.uk, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7173 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: install man page for frotz port. State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jul 5 16:02:35 PDT 1998 State-Changed-Why: Suggested patch applied, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 16:09:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA29272 for freebsd-ports-outgoing; Sun, 5 Jul 1998 16:09:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA29167; Sun, 5 Jul 1998 16:08:58 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA04641; Sun, 5 Jul 1998 16:08:55 -0700 (PDT) Date: Sun, 5 Jul 1998 16:08:55 -0700 (PDT) Message-Id: <199807052308.QAA04641@freefall.freebsd.org> To: croyle@gelemna.ft-wayne.in.us, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7162 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update to xconq-7.2.2 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jul 5 16:07:38 PDT 1998 State-Changed-Why: Update committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 16:17:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA00935 for freebsd-ports-outgoing; Sun, 5 Jul 1998 16:17:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA00898; Sun, 5 Jul 1998 16:17:24 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05010; Sun, 5 Jul 1998 16:17:22 -0700 (PDT) Date: Sun, 5 Jul 1998 16:17:22 -0700 (PDT) Message-Id: <199807052317.QAA05010@freefall.freebsd.org> To: giffunip@asme.org, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7166 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to the gopher port State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jul 5 16:16:14 PDT 1998 State-Changed-Why: Update committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 16:45:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18793 for freebsd-ports-outgoing; Sun, 5 Jul 1998 16:45:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA18755; Sun, 5 Jul 1998 16:45:01 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05587; Sun, 5 Jul 1998 16:45:00 -0700 (PDT) Date: Sun, 5 Jul 1998 16:45:00 -0700 (PDT) Message-Id: <199807052345.QAA05587@freefall.freebsd.org> To: pangolin@rogers.wave.ca, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7168 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: upgrade to xfmail-1.3 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jul 5 16:43:57 PDT 1998 State-Changed-Why: Update committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 16:59:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA20585 for freebsd-ports-outgoing; Sun, 5 Jul 1998 16:59:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA20566; Sun, 5 Jul 1998 16:58:58 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05944; Sun, 5 Jul 1998 16:58:56 -0700 (PDT) Date: Sun, 5 Jul 1998 16:58:56 -0700 (PDT) Message-Id: <199807052358.QAA05944@freefall.freebsd.org> To: stephane@lituus.fr, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7058 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port : BUGS - cryptography library State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Jul 5 16:57:36 PDT 1998 State-Changed-Why: New port committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 18:57:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09297 for freebsd-ports-outgoing; Sun, 5 Jul 1998 18:57:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09276 for ; Sun, 5 Jul 1998 18:56:48 -0700 (PDT) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain (localhost [127.0.0.1]) by cain.gsoft.com.au (8.8.8/8.6.9) with ESMTP id LAA25417; Mon, 6 Jul 1998 11:25:27 +0930 (CST) Message-Id: <199807060155.LAA25417@cain.gsoft.com.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: dannyman cc: "Daniel O'Connor" , Atipa , freebsd-ports@FreeBSD.ORG Subject: Re: New ports scheme In-reply-to: Your message of "Fri, 03 Jul 1998 17:45:58 EST." <19980703174558.C6665@enteract.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 06 Jul 1998 11:25:26 +0930 From: "Daniel O'Connor" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > It might be irritating to have a directory on one's system containing 30,000 > files, or even 1500 files ... especially if you're the FTP server distrbuting > the files in question ... we do imagine a day when FreeBSD has really taken > off and the ports collection has grown to an awesome, scarey size, and we've > planned for it to scale happily, ya? :) Well, 1500 files isn't too bad... 30000 would suck :) > A DB would still be nice. "Multiple categories" could be kludged into the fs > with symlinks. :) Yeah, but you could do that with the old system! > Of course, with a DB interface, there's no compelling reason to keep several > hundred tarballs on your system in the first place. ;) Hrmm.. true.. But doing it my way would make the DB less vulnerable to being toasted.. Acatully Satoshi had a point when he said changing it would make life hellish for commiters :-/ --------------------------------------------------------------------- |Daniel O'Connor software and network engineer for Genesis Software | |http://www.gsoft.com.au | |The nice thing about standards is that there are so many of them to| |choose from. -- Andrew Tanenbaum | --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 19:33:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA15052 for freebsd-ports-outgoing; Sun, 5 Jul 1998 19:33:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA15016; Sun, 5 Jul 1998 19:33:27 -0700 (PDT) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA09451; Sun, 5 Jul 1998 19:33:22 -0700 (PDT) Date: Sun, 5 Jul 1998 19:33:22 -0700 (PDT) Message-Id: <199807060233.TAA09451@freefall.freebsd.org> To: n@nectar.com, nectar@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6870 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port, Kerberos V 1.0.5 State-Changed-From-To: open-closed State-Changed-By: nectar State-Changed-When: Sun Jul 5 19:33:07 PDT 1998 State-Changed-Why: Port committed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 20:26:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA22661 for freebsd-ports-outgoing; Sun, 5 Jul 1998 20:26:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from joshua.enteract.com (joshua.enteract.com [207.229.129.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA22615 for ; Sun, 5 Jul 1998 20:25:55 -0700 (PDT) (envelope-from djhoward@joshua.enteract.com) Received: (qmail 29829 invoked by uid 1032); 6 Jul 1998 03:25:51 -0000 Message-ID: <19980705222551.A29753@enteract.com> Date: Sun, 5 Jul 1998 22:25:51 -0500 From: dannyman To: "Daniel O'Connor" Cc: Atipa , freebsd-ports@FreeBSD.ORG Subject: Re: New ports scheme Mail-Followup-To: Daniel O'Connor , Atipa , freebsd-ports@FreeBSD.ORG References: <19980703174558.C6665@enteract.com> <199807060155.LAA25417@cain.gsoft.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807060155.LAA25417@cain.gsoft.com.au>; from Daniel O'Connor on Mon, Jul 06, 1998 at 11:25:26AM +0930 X-Loop: djhoward@uiuc.edu X-URL: http://www.dannyland.org/~dannyman/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Jul 06, 1998 at 11:25:26AM +0930, Daniel O'Connor wrote: > Acatully Satoshi had a point when he said changing it would make life > hellish for commiters :-/ Actually, I'm concerned you may be making life hellish for Satoshi by bringing up the subject again - you know the Japanese work too hard already as it is! :> -dan -- // dannyman yori aiokomete || Our Honored Symbol deserves \\/ http://www.dannyland.org/~dannyman/ || an Honorable Retirement (UIUC) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jul 5 21:10:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27323 for freebsd-ports-outgoing; Sun, 5 Jul 1998 21:10:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA27312 for ; Sun, 5 Jul 1998 21:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA12478; Sun, 5 Jul 1998 21:10:01 -0700 (PDT) Received: from rich.chel.su (root@mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA26837 for ; Sun, 5 Jul 1998 21:07:01 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by rich.chel.su (8.7.2/Murphy) with ESMTP id KAA00218 for ; Mon, 6 Jul 1998 10:08:05 +0600 (UDT) Received: (from andy@localhost) by icc.surw.chel.su (8.8.5/8.8.4) id IAA26743; Mon, 6 Jul 1998 08:11:56 +0400 (MSD) Message-Id: <199807060411.IAA26743@icc.surw.chel.su> Date: Mon, 6 Jul 1998 08:11:56 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7179: Update port: games/xlines Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7179 >Category: ports >Synopsis: Update port: games/xlines >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 Jul 5 21:10:01 PDT 1998 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: This is a patch to update games/xlines port. diff -Nru xlines/Makefile xlines-1.0/Makefile --- xlines/Makefile Fri Feb 13 18:08:28 1998 +++ xlines-1.0/Makefile Mon Jul 6 12:02:34 1998 @@ -17,18 +17,19 @@ BUILD_DEPENDS= moc:${PORTSDIR}/x11/qt USE_X11= yes -WRKSRC= ${WRKDIR} +NO_WRKSUBDIR= yes -pre-patch: - @ ${TR} -d "\015" < ${WRKSRC}/Makefile > ${WRKSRC}/Makefile.new - @ ${MV} ${WRKSRC}/Makefile.new ${WRKSRC}/Makefile +pre-build: + @ ${RM} ${WRKSRC}/lines.moc do-install: @ ${INSTALL_PROGRAM} ${WRKSRC}/xlines ${PREFIX}/bin @ ${MKDIR} ${PREFIX}/share/xlines @ ${INSTALL_DATA} ${WRKSRC}/trolltech.gif ${PREFIX}/share/xlines +.if !defined(NOPORTDOCS) @ ${MKDIR} ${PREFIX}/share/doc/xlines @ ${INSTALL_DATA} ${WRKSRC}/readme.lines ${PREFIX}/share/doc/xlines @ ${INSTALL_DATA} ${WRKSRC}/readme.qt ${PREFIX}/share/doc/xlines +.endif .include diff -Nru xlines/files/md5 xlines-1.0/files/md5 --- xlines/files/md5 Fri Feb 13 18:08:29 1998 +++ xlines-1.0/files/md5 Mon Jul 6 11:43:00 1998 @@ -1 +1 @@ -MD5 (xlines.tar.gz) = 9e456bb7419b8cda6bc44ac9940913e4 +MD5 (xlines.tar.gz) = dd7ca76975023a5923e3adbfa8136995 diff -Nru xlines/patches/patch-aa xlines-1.0/patches/patch-aa --- xlines/patches/patch-aa Fri Feb 13 18:08:29 1998 +++ xlines-1.0/patches/patch-aa Mon Jul 6 11:56:31 1998 @@ -1,20 +1,16 @@ ---- Makefile.orig Fri Feb 13 23:57:06 1998 -+++ Makefile Fri Feb 13 23:57:30 1998 +--- Makefile Mon Apr 27 21:47:35 1998 ++++ /home/andy/tmp/wrk/Makefile Mon Jul 6 11:56:02 1998 @@ -1,8 +1,8 @@ -INCDIR=/usr/local/qt/include --CFLAGS=-O2 -I/usr/X11/include +-CFLAGS=-O2 -I/usr/X11/include -DSHOW_NEXT_COLORS -LFLAGS=-L/usr/local/qt/lib -lqt -L/usr/X11/lib -lX11 -+INCDIR=/usr/X11R6/include/X11/qt -+CFLAGS=-O2 -m486 -pipe -I/usr/X11R6/include -+LFLAGS=-L/usr/X11R6/lib -lX11 -lqt - CC=gcc +-CC=gcc -MOC=/usr/local/qt/bin/moc -+MOC=/usr/X11R6/bin/moc ++INCDIR=${X11BASE}/include/X11/qt ++CFLAGS+=-I${X11BASE}/include -DSHOW_NEXT_COLORS ++LFLAGS=-L${X11BASE}/lib -lqt -lX11 ++#CC=gcc ++MOC=${X11BASE}/bin/moc SRC=lines.cpp lines.moc - OBJECTS=lines.o -@@ -23,3 +23,4 @@ - - lines.moc: lines.h - $(MOC) lines.h -o lines.moc -+ + OBJECTS=lines.o >How-To-Repeat: >Fix: Please, check and apply this patch. >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 Jul 5 23:18:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10261 for freebsd-ports-outgoing; Sun, 5 Jul 1998 23:18:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA10246 for ; Sun, 5 Jul 1998 23:18:29 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id IAA14745; Mon, 6 Jul 1998 08:18:27 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id IAA23210; Mon, 6 Jul 1998 08:18:25 +0200 (CEST) To: Þórður Ívarsson Cc: ports@FreeBSD.ORG Subject: Re: File not found - graphviz_1_21 References: <359E6D92.4EEC38EC@est.is> From: Thomas Gellekum Date: 06 Jul 1998 08:18:25 +0200 In-Reply-To: Þórður Ívarsson's message of "Sat, 04 Jul 1998 18:59:46 +0100" Message-ID: <87g1gfy026.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 14 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Þórður Ívarsson writes: > When I try to build graphviz with FreeBSD's ports collection the > make cannot find the source file. >From the Makefile: MASTER_SITES= # http://www.research.att.com/sw/tools/graphviz/ RESTRICTED= "Can't be fetched without license" You need to go to the above address, fill out the license form and then you'll be able to download the file. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 00:30:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA21736 for freebsd-ports-outgoing; Mon, 6 Jul 1998 00:30:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA21726 for ; Mon, 6 Jul 1998 00:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA27845; Mon, 6 Jul 1998 00:30:01 -0700 (PDT) Received: from ns.mikage.t-cnet.or.jp (ns.mikage.t-cnet.or.jp [210.169.187.130]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA20602 for ; Mon, 6 Jul 1998 00:23:30 -0700 (PDT) (envelope-from issei@mikage.t-cnet.or.jp) Received: (from uucp@localhost) by ns.mikage.t-cnet.or.jp (8.8.8/3.6W) id QAA25544 for ; Mon, 6 Jul 1998 16:23:24 +0900 (JST) Received: from ordin.mikage.t-cnet.or.jp(210.169.187.132) via SMTP by ns.mikage.t-cnet.or.jp, id smtpdc25541; Mon Jul 6 16:23:15 1998 Received: (from issei@localhost) by ordin.mikage.t-cnet.or.jp (8.8.8/3.6W) id QAA10944; Mon, 6 Jul 1998 16:23:14 +0900 (JST) Message-Id: <199807060723.QAA10944@ordin.mikage.t-cnet.or.jp> Date: Mon, 6 Jul 1998 16:23:14 +0900 (JST) From: issei@t-cnet.or.jp Reply-To: issei@t-cnet.or.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7181: New port: securiy/bjorb Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7181 >Category: ports >Synopsis: New port: security/bjorb >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 6 00:30:00 PDT 1998 >Last-Modified: >Originator: Issei Suzuki >Organization: A Site under T-CNET >Release: FreeBSD 2.2.6-STABLE i386 >Environment: >Description: Bjorb is secure TCP relay software. Bjorb provides you, secure end-to-end connection over insecure network such as Internet. Features: 1. Encrypt/decrypt any "static port" TCP connection with SSL. 2. Restrcit access by IP address. 3. Server side certification. 4. Client side certification. >How-To-Repeat: >Fix: begin 644 bjorb-0.5.3p1-980705.tar.gz M'XL(`/1+GS4``^U:_U/BR!+W5_)7]%/?E1;F&R&)LNJ!@"YO12E@;^]J;XL+ MR2!9(>$E89&WY?_^>B8!(B+>7BULO7?S*8.*)M1 MYRG^YO;?@QLR@9$?1"'8_F!`[,CU/1@F$P)Z?E#(L$DB[,$O)`@I-2#_'KL! M<0H91=(E;:0BK6)%!.R`X`G;,W5K"JIQ!.K)R3%2/_3](;9FV"@7(]'V2"3Y M@?1Y).PA>;_F[`M"I=9JWY3JU;.X0W$FO/'NZEFSI`KE4KMZ==NL55MG&10' M(;''@1M-A7JIU:XV.ZU:FY)ZT:@@RWB4^FYDV7U7'(:2[6/7\FC,%(.!# MM9LV_E>;9ZNT%"[>UZXKG4JU4;VIH-0P'!!K6MC_VKAMMEN56O-1GO4OMUK7 M2!.:[V^^B5]H5EOM9JWRC4;EKMTO5UIUUJ7E7;9V@%#R?]8``V"2*WY]IH,T$BGN/V!.%M MJ=4IW]Y-W'(IR04/C3?M9IE?&[_*UXRW?>_SHR%[Q'80N6VO(:%D9%8 MOFW\UJQ=O6W#[T(FTZR6*O4JNYP3<*A90Z+R[#9FG=TYOAV;#%(R1"$D1]&8C+T!2%3W/\Z,TRKW*PUVH^`0\;&\5%.B8K? M-.PCM=&L7M9^?91)9,N!+3ESFA3S/K7^S2V=:U3B(>NMSNR2$A/VK8#(\]$4 M)%SLX(+K)8H\/E&R4FJ7TBKNN^M$X6Q":>OZ)0],YW!%YS.C?;,"RS(3+69S M6W(]>S!V")QV0T>B3D\:WI\+/]H'_TC$[F]T?[?!'/!/YG^:DC=-QPY]1XNC]\@,T3B\3%PG`"^)6458D!<]XTLE!T7`C+P6M5 M+'F6$ZSA2N4%J[E69`?K^-+RGJB\%.Z*Y('8<``?0>S!/RLR3>\2FC0B0_@$ M/_T$Y,&-X`T0N^_#+N[[7.\NG0<"S?K#7>2PG;D,O(OS5YKY@^CACD%\T)43 MO/0=$H+H6-,0-$,'T1]'L.A1O"?3)RUO8."!&*98_D@DS^11=K%O8;YSNN#Z M0U*H1OVA[P!U)2M>[O!O'<;_,A;^OU+%-'0C?;SB_\$PPR]5(=3=RH#[A]EO#YG`1-$D:!C?[-LFT2 MHI>90JT!EN-@%R'ET21H,6<*(;Y*RN^A,$K/2U!F3GDE79@/U@3W[1'Q:`?O MB'?OVGT7ZA;Z9`M.A^Q<7"XVG./;.+%'$SX0'$[KCE!1UA<,&59W0,"*"M"/ M6+5B,ID\KU8DE8KO:__%^B_?UNO5FTUD@*^M?\CG9^L_KYIL_6LZ7_];0>NE M99]:6S]:1X[-(4F*:=*WL0K`G]W_ZPJZ`(/6_U4CI_']_S:0MO_0VT$[WAD^)]'DO]9D=W?6`3X!O^/&T"3[?]TA?O_;>"I_=E9M*SOV\=K M]5\S;\[M;^1I_J\9NLK]_S8@BB)(DHQ_3X(`_:@[_U6(Y'J9#\0!^DT_IX"J M%/(F_L7?]K/9+*QC-@J*4="TF+E8!#%G'IF09<=B48#KRN5UZ:H%9WA9N\`S M%.D9*8(8?]RC3:,`A3\4A6S2]'.J#6C9LQ/?(>_^0!SD;V2BNU,T[Q&-65'JJD`>WM[=$<$9=_KN7?C@-4%J*+8V+YMQ-/Y#.1Q M&,@#W[8&LC0:SM'\2LAW+RH3)FF0\1B-<+EH';3 M6!E[/EIKJMG*&Z#\MK/,';=_M](U%?;7R]=,Q7D%^\7WBKLYI,9)?BL@]@)" MNJ&#!H*,/:++==7/`U*S[MGGFY<3M97^O_M]?X_]\& M7O+_SV98ZO-@IMT?Q_Y=I<$`7;R6"@9KGZ21X5]C#T`#)5?(G>#?(C+H^M$Q M9/%XPAQ5.+("THD_?H4X37("RN[T_.`^,YLY43!&'^D0;]J96.@)DFQ2$,NE M#EU7'?8;-L32XDAYH1DG3OW^"LYR2Audit-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 Jul 6 01:27:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA00406 for freebsd-ports-outgoing; Mon, 6 Jul 1998 01:27:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from asteroid.svib.ru (root@asteroid.svib.ru [195.151.166.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA00361; Mon, 6 Jul 1998 01:27:35 -0700 (PDT) (envelope-from tarkhil@asteroid.svib.ru) Received: from minas-tirith.pol.ru (shuttle.svib.ru [195.151.166.144]) by asteroid.svib.ru (8.8.8/8.8.8) with ESMTP id MAA01456; Mon, 6 Jul 1998 12:27:23 +0400 (MSD) (envelope-from tarkhil@asteroid.svib.ru) Received: from minas-tirith.pol.ru (minas-tirith.pol.ru [127.0.0.1]) by minas-tirith.pol.ru (8.8.8/8.8.7) with ESMTP id MAA28573; Mon, 6 Jul 1998 12:27:45 +0400 (MSD) (envelope-from tarkhil@minas-tirith.pol.ru) Message-Id: <199807060827.MAA28573@minas-tirith.pol.ru> X-Mailer: exmh version 2.0.2 2/24/98 To: current@FreeBSD.ORG cc: ports@FreeBSD.ORG Reply-To: tarkhil@asteroid.svib.ru Subject: mySQL on CURRENT: lots of troubles X-URL: http://freebsd.svib.ru Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Date: Mon, 06 Jul 1998 12:27:45 +0400 From: Alex Povolotsky Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! mySQL (current version), compiled and run under 3.0 (late May SNAP) dumps core at every attempt to connect to it, and starting mysql daemon from /usr/local/etc/rc.d caused panic. Does anyone else have these troubles? Alex. -- Alexander B. Povolotsky [2:5020/145] [http://freebsd.svib.ru] [tarkhil@asteroid.svib.ru] [Urgent messages: 234-9696 ÁÂ.#35442 or tarkhil@pager.express.ru] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 01:40:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA02691 for freebsd-ports-outgoing; Mon, 6 Jul 1998 01:40:37 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA02636 for ; Mon, 6 Jul 1998 01:40:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA00217; Mon, 6 Jul 1998 01:40:02 -0700 (PDT) Received: from rmstar.campus.luth.se (rmstar.campus.luth.se [130.240.197.32]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA01698 for ; Mon, 6 Jul 1998 01:33:27 -0700 (PDT) (envelope-from murduth@rmstar.campus.luth.se) Received: (from root@localhost) by rmstar.campus.luth.se (8.8.8/8.8.8) id KAA19029; Mon, 6 Jul 1998 10:33:08 +0200 (CEST) (envelope-from murduth) Message-Id: <199807060833.KAA19029@rmstar.campus.luth.se> Date: Mon, 6 Jul 1998 10:33:08 +0200 (CEST) From: Joakim Henriksson Reply-To: murduth@rmstar.campus.luth.se To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7182: netscape-4-navigator build fails. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7182 >Category: ports >Synopsis: www/netscape4-navigator cant fetch fortify. >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 6 01:40:01 PDT 1998 >Last-Modified: >Originator: Joakim Henriksson >Organization: University of Luleå >Release: FreeBSD 3.0-CURRENT i386 >Environment: current port as of 980706 >Description: The port can't build a fortified navigator. >How-To-Repeat: setenv USE_128BIT yes setenv USA_RESIDENT NO make install >Fix: begin 644 patch M*BHJ($UA:V5F:6QE+F]L9`E-;VX@2G5L("`V(#`Y.C4U.C4S(#$Y.3@*+2TM M($UA:V5F:6QE"4UO;B!*=6P@(#8@,#DZ-38Z,CD@,3DY.`HJ*BHJ*BHJ*BHJ M*BHJ*BH**BHJ(#(T+#(V("HJ*BH*("`)"69T<#HO+V9T<"YZ82YF2\*(2!$25-41DE,15,K/0E&;W)T:69Y+3$N,BXR M+75N:7@N=&%R+F=Z"B`@4D535%))0U1%1#T@("`@(")#;VYT86EN"UX.#8N=&%R+F=Z"B`@4D535%))0U1%1#T@("`@ M(")#;VYT86EN65S(#L@)'M%0TA/?2!N;RD@?"`N+T9O#@V("8F(%P*("`)"2@D>T5#2$]]('EE'!O#@V+75N:VYO=VXM9G)E96)S9"YT87(N9WHI(#T@ M-C$Y,#`W-#=D83`P-C(X-&%C96,S.#%C9F$P,C)D-6(*(2!-1#4@*$9O"YT87(N9WHI(#T@-F(Q86(P-V4P,F1F93,P-CAB8F4U M.64R,3=F83AE9#4*+2TM(#$L,B`M+2TM"B`@340U("AN879I9V%T;W(M=C0P M-2UE>'!O#@V+75N:VYO=VXM9G)E96)S9"YT87(N9WHI(#T@-C$Y,#`W M-#=D83`P-C(X-&%C96,S.#%C9F$P,C)D-6(*(2!-1#4@*$9O"UX.#8N=&%R+F=Z*2`](#,P,V$Q-#8P,S,U9&8R8CDV-S$X93(U *,6(S9&8Y9C`V"C8N ` end >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 Jul 6 04:30:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA24583 for freebsd-ports-outgoing; Mon, 6 Jul 1998 04:30:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA24574 for ; Mon, 6 Jul 1998 04:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA09784; Mon, 6 Jul 1998 04:30:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA23689; Mon, 6 Jul 1998 04:24:19 -0700 (PDT) (envelope-from nobody) Message-Id: <199807061124.EAA23689@hub.freebsd.org> Date: Mon, 6 Jul 1998 04:24:19 -0700 (PDT) From: g-nakai@InternetSolutions.co.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/7183: New port: GYVE - GNU Yellow Vector Editor Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7183 >Category: ports >Synopsis: New port: GYVE - GNU Yellow Vector Editor >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 Jul 6 04:30:00 PDT 1998 >Last-Modified: >Originator: Yukihiro Nakai >Organization: Apricot Computer, Japan >Release: 2.2.6 >Environment: 2.2.6 >Description: I have made the port of GYVE, GNU Yellow Vector Editor. GYVE is the replacement of Adobe Illustrator and Corel Draw. Please enjoy... Yukihiro Nakai -------------- begin 644 gyve-0.1.2.4-980706.tar.gz M'XL(``QDFS4``^P]:W/;MK+]&OX*S#1G3GM<2WQ3RCGIQ+$=53=^'>!G<2DL$L0X&+QVL6N@VZ1W_UNIP!T MV3(,\!T`BF7(Y(IA<9W_`*:A6I:EJJJ)R63=TK\#QFZ+E<,LS6`"P' M!KJ[*4)^&P5J%QS*?W?F^2@:?[!WTA(>R7_=5'15L31,INJ:+/C?!I3Y']^X MC;>!K?BO*IA,4V55\+\-8/'_XF0XNFKP'8HLF[K.Y[^AEOM_75&P_,L-EH$+ MWSC_QU[8=2,["B>>*WFA[<\2ND4)J@+;3^RX5J[[`3Z'$63NDI'[?HP=&?0 M1>E:\R5EP(5/4">-'O-`)[4#Z97C)4D`'D%>2RH]-3^W!9;\'QV/#B\;?$>= M_`/++,N_K&M"_ML`+#`)3!Y`%H$4A0X(4)KBA@PF212`P=D[,'@W/#DFZ//Q M!V1GWBT"AR"B]U]>:Q=0!I;\'YZ?GAZ?-3<#^`3YUV1#R'\;(.3_VX:R_$_P M3=KP"G"+]9]L6#)9_QF:(M9_;0";_X'3Y+>OZ_\QOL1_717]?SMP>F2`'Y;L MWY<[6J?7P5^DX_[Y(W@))OV);&L*["$XZ4'8,WJR8NBZ8TYZ8]5!/3$"?.%0 MEO]3>(-(']#D.VKD7Y$M)9=_7;4,5:?[/Y8JY+\-^!ZP0P!.T'XDB,( MJ`HXB!//!TJ_3XA^FT;!$KF`WVXQOI:#BZ.CLX/7[YK-2%28<'5\>#\\OA\>CE,]K&I=.#T=7Q MY?5H>(73P+-)%K_H=O'?#L19[XN M^W"+NI.9[]]X&?V!7Z1TU([>E7#6P[,K_/_X\N4S=K$EZ36>1Q]='QU?')\= MX3(]_^OD_/#@Y/7!Z/AC=[Y[-I]5=^"+YW]=G%]>C8Z&EQ^[N82NT-+)\/4J M'UKO/_[HJ/A_X3&R)97+M23A>?SUX?G9F^'@W27^5@\HE:0XPK7V0MSZ??^% M1,ISE)-\)'MT.*?+XS?#]Q\EJ3/?`@3_&:=.A[243G#SL^CXOPZHK/]A9D\; M7@%L,?]7+)WV_[(I]#^M`(__]+H/81/OJ)O_ZZ9:XK]AZ&+\;P7V]_=!KGV9 M):@3)9[[[&J&P/_,0J#)>+Q^8>@O9#D?N/?V]E:T53*EGY.]>@7V3?4G$^SA MOSWPZI4$O@?#T,L\Z'M_(I!&`0)1-D4)N(6)!\=XQ=F10#H;.UZ2OI3`Z9N3 M@P$>HT\/WA[GM]+>87ZS/^S.TJ2;:X?F`Y.T=W(TQYZL8?&(25Y\"N^]8!:` M9<`+`03I%/D^P`5"P(GL68#"#!<(VM**H&O;.`KSRYV80"RC?Y?52QB_V'*POZG%:CP?P<&(-O;?VF:90C^MP%, M_C=L`+)Y_%=DS:CJ?S2Q_]<*+.P[WD2ST(%D[=\]&QTD]M2[1P:".78.-_!H< MCK+$"UT^?M,G'&RJ^*"^=H,-O!N\PT_65`WAR63&SWX8WN+)X*:O=XJR:>2, M/#>$&9D"<\C.QQ\.+V=AY@6;2'`/RL->))&-TG083B(>R24,76[N(Y30^?/& MRFSXF)N97/^EWV6>CZ?P>*K.(=@H'O\;A1SDQ"T-W\_P(.FL/TC7J M+S"=7I%E0QEQ0G;;2FEG[_.:,Q\HO9RFC7#W!=T*Z9_%&BR&R[)H%=(O$N^V M*/L+]&OHLE(](BIE>2MBKQ+$S'")//:S,YS#1AH.P:&7V#,?)KQ*%?#\RO$J M@-.+37"%R#>>-R(+K;Z*W%2<,,0WR.&7BQ*PWW"$AS(79UP:RY9H5@^W0,Y9 ML<_'!#S,O&(1J[P#&/,XM$#QO\8O",:,Y&'HH'ORB39PHD3#_%P5&GY)<-^, M.[1>!:H,X3_"8VZH)H*1C)273/>OE_9VC&^I"7KSF] M;8[@\SO'\Y"502=//AM@EGG$P@IW2&XR0R'9,6-E<#9XC9(;W#&Q*H-G$4[$ MXEJ.&*`0)9`C*YC?U,I3&T-Z* M%G='8:%R\\,5U:5`&;-^%*/4V(HG-$HO_\KV[IL`YOY?PP=`:NV_MO'ICRW_`!D$^0?]TPA?RW`4+^OVVH MR/\.#H!\@O[74DRA_VT#./QO]`!(_?D/M:+_M<3\KQ6@YS]6[*=&S4I_[01( M7]?U?L]6QWW#@LB>*%#N.99C&YH^-DU5$V/$%PT5^=_!`9`Z^3<5O6K_(>P_ M6X%'GO]8.W[`/0!".HXG/`%2Z<3JSH`\>_[7VN]K/!/^^+BC''_C.`6U2OV< MCE2X"8RGGKT3N\\%;#?_,S"9H@C_;^W`DO]N=N/$NVD&C[;_-2S5(K:`BFK( MPO];*U#F_Y/Z?\/\-S6+^G\S+,'_-H#%_];]OYGZ&O]S_V]B_Z\=6*C/,/N/ M+D;=21065+CS9-)/!Q1OA;5T`4T*6@,0^3S M".X\QZ76"`O7='E)8.FW7TY(HTH"GDW*GZ:F+NDH\QP_JQ4S2_Y;]_]FEN=_ MNFP*^_]6`+,=X%9+3%52LM@#V12!(R\E5CE@,,6KFI&=>'$&1@]IAH+/JNT* M^/O`DO_6_;]5Y5]3+2'_;8"0_V\;RO+_I/[?L-C+FDK]OYEB_=\*L/G?KO^W MN?_/-?[KJB;\?[<"N?\WNB[9ESMJ1U'6=']0,0P5:;U>WU+ZCJTKMJ/)8W4B M&S(#&[5Y1B&B6WY];*"/_D)X] M6Z?-74-[16*BOV3H/]^-CJ\QS1>N#/T&8=7_X\9[@Y)P!]'`'CW_-TW%HOX_ M-H`:^9_JJ:N\=\@ZS]#%O[_ MV@$:_PFS?J5$6[6#`1ZQU]5K:QCB+_(P"M.HX%-CG0+?\C&O9Y-)X41M"7\( MPUN8;L!'00!#AT]PM'#CQZ=(X)T7NL>AZX4;2GKL>-E5T?5#F>(6O^<72!P5 M;:C1&\\]'W\H'T`O$T5A=@I#Z&[*:7A>^[(E25J;VUOT$!0<0I3P)_!AT^,7 MT`NS4?;@H]HW743Q+#Y%X6P#28)SVY3'R$[(&L6I:Q\C-%_(I#7EW\Q:@GT= MW?,)?O70'1_[FQ"T7<$@2 MZ)0];*RCE[=L?`S)^>-P3=F^>N`3#WCC3`BFZWI!W%4ZB M5U^^3BP;M@3>^-^D#4#=_J]FJF7]GV4I8OQO`\CYO]^1[T=WX%?J#0:0$2]* M)&GP^Z_'/_#0/P(O!1#!@(S`'4D:3L!#-`-W,,P`O(T\!Y#XC<"9!3$@>Q%@-!R\N3C^"63) M`Y`D\`\0W()<39$[J;9ML/!:+4EC-"%/DQS'>)+B@%6[IKM<'=%#%(`G_TW: M`&QW_I?(OZ$J0OY;`8X,H[P3>.K2"=@UL.2_:1N`K?3_*M7_Z)HX_]$*\/G? MG`U`_?E?I<1_0Q']?SN0Z_^7O*?J*VO=!$#73'.,Y;&OC6U;=U35MA!>+#HR MB0MGF&*(^+*!+__S"##VWW]'_?E?K33_PRE"_EL!$O]EC?4!<8`:Y'%@?D,. M4=P#524!7E3\SUS%@:D\4R7'0_XR'HQ!X\'@OQ:-!R.![Y=:W]))D9_7<;GM MZ5LOZR[O",7>BB)]2+LI<=[MTT?I^I&4[1J.HUGVPX__)B_#+,X\>PU)B@P( MDI:M3V/5R/-8-5Z822`G\,B2-''MGP#QK0?^]2_RZ_9'"?PE[0&0O_:'Q?(4 M7Z^'@S._&GUTTO]/=FC_:IO7E___?C?RU"?/US'N/K MO:)\I/#@ MHVLB=_K][:M"GEJ\(D5B7=$.L/K_IFV`Z^P_9&-E_Z&J%EW_RV+^WPH\UOYW MI6'=X/_'XIH`J[LW`2[M87PQYK[EP,T+B]\UVKV%A3.+OF3!OX6E<(%RC_A# M6C?S7>CQ\7!?#DE=Z#0(_I%9N3-O4TX8S MN6-P&O`6#VIJSE*'!+%*[:":*T%C1"5/,F0112>G-AB[G[N<$N;8`CYCJ(CR M#CQ`;:'_4523^O^1A?_7=J#*_^8]0&W!?]DRJ?V_*?Q_M0-L_C?K`:IN_\=2 ME17_#8WH?PUQ_J\=6#>AI.R?FU?')/C*!*82]:J`S9U7,`.0%>A(D$MF ML#<&%1M_,3K$,WYF,3$*-[8HV$!P!-/IQ=*8ED$PX!CJEM%UG^QB=`JSQ"N; M-A=P!W'L>Y7`>Q6R*YBXB/,M5N;A&_#%*%D%;#;E8]C&XBL"_D<<(9=Q-H`B MW>@ZSI)K;P)M9I&7"R(&SJ<-Y]KGM(R%A[3*TJH9UV*+E=B6\L_N_YOU`%9K M_VZL,]2^U_2S+M1OIM34"'G\;BH M>II&N1;:70&[A+(!QBX"`&VC_S6H_:]JZL+_4RM0X?\.`@!MPW]=I_%?=4W8 M_[<"3/XW'`"H]OR77O'_H8GS7^W`NOZ(L)^N_BM^?@C&S6XFXXHSI#GFEH M#<7V_S<,3/EO.`#0)\B_(?P_M`-"_K]MJ,C_#@(`;;/^4_+X/Y8N]'^M`(?_ MC08`JH__8Y7X+^R_VH*E_@_S?E_NR!U%7O?^8RI(UJ'2TV5;TRW84Q5'G9C] M_D3I&=#LBV'A2X>*_.\@`%"=_%N6OCK_D_O_URQA_]4*;*'_(YL17/4?Z3B> M6/VWZL$^2^W?-F=_V]/ZT4.N.VYCCYS_S==_Y/R/K*F&F/^U`>N'G'?5#AX_ M_\=-@/I_4&5%Q/]I!0K\WX'NC\"C^:_HJF&2\1]?A/_75J#"_X9U?P1JYW^* MLL9_>OY7-PPQ_VL#-KK#D)A8>FIM`]8GI_+X>!+%A(MU48AHF(`-),2W1NY, M:@,1_L/'SO6'7'Q=[BDN@H_VZZHZ)WM$G?*S@5ST@^-2Y%Q#R*+YU)5X1?X; MUOT1J-__UTKS/TT7_I_:@=2>H@`)%<"W"A7Y;UCW1^`3Y-\D^_]"_GB`=J*_S+=_Q?^/UH"!O\;UP#5C?^ZJ2WYKU']CT[] M_XKQ?_>P.&VTBK0U("/0VG&G$B;W+)F@HNO%$M'H\'0#DOYDXD=OZ[(?O=WT M^"I(F+3F*[Z1XUC+O+^N-0]#_AO7`-7'?[;*^[^66/^W`W2^"?(&`'`+H#O` M=/>73"Z_KK8NH`H,^6]<`[2]_.NJ+.S_6P$A_]\VE.1_)QJ@;=9_BFP(_Q\M M`I/_#6N`MO'_F/-?5V2Q_FL%J/YGN;:AVYKF^@&P/D(35>T9E@YMV3!ZM@5U MVY1U79=EV5#$`/&%0TG^=Z(!JO7_2,[\S^5?IO;?>,"0A?RW`8_4_ZR"ZVUP M`&D^H0*HU(5)%V\'%+'(?5F!.?ZKU1`)=Y`"M@!RXG#7[_B$\W^R+/0_K<`\ M%NQ.V\"CUW^X#<@ZL?^0#5.L_UJ!!?]W=/2/PG;R3_1_BJ8+_K<"Z_S?P=$_ M"IOG_XJI%/9_J?]?31;G_UH!HO4<.Y,LBE.)W).XX/0:IT0ONK@/[SO016%& M?Y,C?&J.0Y>59WI(H32._O\:.3 MI?KXZ&+4I2$91Z_7E,IKJ1>E9/P?KS;P6NDW+J+\R!O\Q0[)HHB+B!B(2H'R M1%8>(QC$/A>!2HB+$?[PI;3W^`\C"2\3&*EQ$E5*C%O)V7N8N.6,* M`1>7B"@("N$E%X@X0;<>NF-@Z.E'1OHL14EGB^QJNGHWD8Q@WZ2 MX'P<1OVP\)02%VG$"N%H,.KJ'5FC_`AP\RPD0MO.$%X%XB9?3/<]-ZRDSD6U MDF[#F,;IK*3C=:(IRYTX=JJ('@OA(#MYB*OE<2*[>WA^\?OP;%!%_'][U]Z< M-I+$_\:?8C;Q[MK!8#U`&'S9LN.0K&L=QV62RE6=KR@A"=`:!"O)L4DJW_VZ M1P\$TVV2E$-V:,I*&P(R M]&8,")/]23C3[T6->U&306_&DY"&TI4`&AS9P>`&_#J#@NF3`/IN&@F\VPK: M(8TFGIVJU,RW,QBZ^OL@NC39+3!LB#!<\A$(`][T1KY#8S>!?U<939E+ATJA M@3N^`?J>8H3>G73G$7B'Z=#N>:J9YCFI$YC#V?XX=\#@\/#MZ# M#R:C_KUX:,_P(O@<43"Y[8_L:SY'[`_N*^+6A@%`WQXI.9+QBT(>1-U>/+E6 MG2@`CM,/U,I&P'?[-`=X>HKN]N*N>F,1F$8Z0[^CZ$G#(0`_\$E5_6A"EWQM M!W_Z)!#U:(Z1X8\')."]-RCZV+NC)8U#1BFT4)K,YK]5&P,":-`4@&,@@AQY M\=0E@=B.&<"E=8IF8QJ(8_+BXMFT1E8?`![9.&[M@"QAI+8]?RQ'1\MDZ`-@ MY$VTU1&N-JN%COR`J+>Q'5X/?<)$$"#+G=K.-7EGI@X,\*)8O9?I)(&B=PUB M3(3TGAT1)0#@AO8M")1I.;O&6D<"4$A_%CA_T)Q0=^QV% M'H>VXU$.1P(3M>E*<_$"];9(@!H_WP0XI5'(.`5QQC.U#T)@X*M&C/0_IYZJ M*@+3GEJEDNZH#E[2X88J0#J15>E^@&^R4.ETV_H`Y1]6],U33=' M59QX,Q`T;QZBN>J\P#HOL,X*-'D-35Y#D]?0Y#4T>0U-4L.>IA]HND$)S"%5 M8`&BN4@--%UCC!=98@0:OH<%K:/`:&KR&!J^AP6M8XS6L\1K6>`UKO(8U7L,:KZ'% M:VCQ&EJ\AA:OH<5K:#$:&CK;#E.($IA#-!>C80IQ`GD-N7:80HQ`KATBQ&O( MM<,<(K@,O@X-O@X-O@X-O@X-O@X-O@X-O@X-O@X-O@X-O@X-O@X-I@ZG6IVK MPQQ2!18@FHO4,(?>WAPK&-C\`"72XR5P,S?GOM:2-_?]_I\S^OU'H3YF^8O^G96WV?Z\E+=[_!P_] M*=/J^)^&LO]S$_]O/4F>_X0&4-&J]6HQ]&?-,KRF5?<,R_4\S3`A/RB]\UP\O8N'>/5ZRS1; MAI:EY\ZWF!>-Y^<7K>ON@(.W!%^QQ4 M$D_VM\I^$(O9#/?G6QWQ<_)?[#W>EVS[WX6>=YM[N[5>80\ M;^G:W*;-!O;R\#^SZ-/SSIOCLS.87!ZE7X]R8O?B\O7+R^-7!3`C'6V5,TKG MY/+TXDU1`#YIK=?K2@4;M3U=%^5&'3\2 M%=/C,A5W&E5&R3N16N+%Z\N3]I8H5??'UVD&UP\CL;V#3X7]<'>K4MK>6=)Z M5[I$?`X*LM+'QY(!7,EN@;5<8$5=/Y=/E$([@!]STG+FE5K%U_EC[2_6;`4O MJUTA^_WZ)1U(]IS]R_1;S4OKMYA]N3W8TVF4-09L/DT=NZRFD;?O+/,`L@VB MPL]*\FQ2J:=AS14%0<\2O&R>V#:Q48`D%@U`.1ACX0&/8`_TT% MACL0Z9EMD1P[!,\JTI-,(MGK);)S/B+;YB72C5TBV@IW@K.4 M'8&GQD6E+[:W^V+W$-_:&`BB%T&X>`7[0#@4?1]DE3]35M;'W"-*@*C`^S49 M9YWKW8OCE^W.4^CKLDNDKVS3R7SOQ/C_!PT`N7+]1]G_85J-S?QO+8E?_Y5S MO,+2SRM[!G<)9NLP&VP9S55KP`F[RED[**SZZ$VYZ@,?EG2YF*0W[.\\>IS% M)OPYN@H>[8D7EZ<8&_'%Z5D;EW[(K/^*8B`-JL/?K@)@RO)-;N)D'5B4GPKS M4.!2\-L+Z!':X.K\"'W@;'(C;-<5XTGH@5R,S8BKQ)6%8E"(T,75(U#I$2KE MXU4JI93+0/GTSUAA9NR__Y!EK!S_Z<3ZSV;]=RV)M__(&]M![#L1XP2:+##W;]4*Y;BN&;ECYS8\ZL0UB=T5[ M[,<7&(P(G^OL``BC%UP67C;:G]V"U8IR.;?5/3%);;@LBG1ITRC]V<2=_2X5 M2,1GBF7R/TH_LV3\<]:='OS;$SEKQO:)8%NA=?8P:T^D;F>1N[SL@;`X<'2A M-_+LR!,80,8>>.DKOL'KX4V23\)DMM>@<.8(A_9[3XPF<025(\8>^,29?+AV M"S=3)'=7@-!`$L?X!<1\[Y:\25^3,O__C5[]*M-*_U]7]W_IF_'?6M)GQO_& ML(!LY.]Z]7N^^C7?O+80TQO:]6)([]+VQU?';SKI[^[+\[>?/B\R]]GILSPN MMRAA<(>KJVH3_A9B/"W!MHow-To-Repeat: >Fix: >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 Jul 6 05:00:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA27721 for freebsd-ports-outgoing; Mon, 6 Jul 1998 05:00:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA27698 for ; Mon, 6 Jul 1998 05:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA10744; Mon, 6 Jul 1998 05:00:01 -0700 (PDT) Date: Mon, 6 Jul 1998 05:00:01 -0700 (PDT) Message-Id: <199807061200.FAA10744@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Kentaro Inagaki (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) Subject: Re:ports/7096:updateport: ja-vfxdvik-20c (dvi viewer for Japanese TeX) Reply-To: Kentaro Inagaki (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7096; it has been noted by GNATS. From: Kentaro Inagaki (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re:ports/7096:updateport: ja-vfxdvik-20c (dvi viewer for Japanese TeX) Date: Mon, 06 Jul 1998 20:51:58 +0900 >Submitter-Id: current-users >Originator: Kentaro Inagaki >Organization: >Confidential: no >Synopsis: update ports: japanese/vfxdvik >Severity: non-critical >Priority: high >Category: ports >Release: FreeBSD 2.2.6-STABLE i386 >Class: change-request >Environment: need to ports-current. >Description: update! new japanese/ptex-common is used kpathsea libraries version 3.2 xdvik-20a is not required new kpathsea libraries. so update port. xdvik-20c is required new kpathsea. and I got new mail address. of course old address is available. but not use mainly. old address is new address is I change a description of maintainer's address in this ports. attention!! old and new kpathsea libraries is not mix up. kpathsea is not interchangeable. >How-To-Repeat: making patch... current : vfxdvik/ new : vfxdvik.new/ diff -urN vfxdvik vfxdvik.new | gzip -9n |\ uuencode ja-vfxdvik-20c-19980626.diff.gz >\ ja-vfxdvik-20c-19980626.diff.gz.uu >Fix: begin 644 ja-vfxdvik-20c-19980626.diff.gz M'XL(```````"`^4;:W/:2/*S^16]#K6!8`E)/$V.5(B1'38V^(!XO5>IHH08 ML&*0=))PXLOYOU_WZ($`"8,W5W6/)+:DZUC.%0B&1 MS=%@:2*%"4H=9*6A5!M*Q:=X_QX$^:1P+<=S0;?F MYEC0,;69=F_`7W[[ MT)9D1:F^-XVI]^@RYX&AUN)7^UVF<(@24(!0#2),D5TG6*+P#SI"@4\]N%(OX6S1L M7=3OC+$F+$5-1XV+]G),/R*I,-.*(?\B?,D4TKBX^.]>]-SE_7*LQ?AX['O$ M0"<.<'24_1'C,KKLG;4NGWR[G'COLM\Z&H\'G\]LG/SC0 M,L)7-+XM5T0>(N+L'V3:JU:G.\0?M=\\2@U$-%]K>/;Q3ZA02%'!9QSH$`BJ MDZ"2+4U6@@;]DXJCP;#?N6X>";:<*9!Q5_(GQ2+J"/W/W5%;O5:[[4&3@G@Q M;61_7/?ZPT&[TW\JAEXOVBBVH%N+A65FX++S88V()X4O7T0%?Y+)'Z:(0?V% MYN]U+_\@VG3?(';A\T`=75RU/JG-/]1!!BZZGT=GO>YYY^)SWV\2HL]1JW\Q M:`K"-\.[$]!8.*X\YC3Q3;'=3&$+CYG:>,X$]T[#\=]\9"XDT2(IO'HA+?4K MK&L@4%!UY29Y$P?[S)UZEGTOR@2P'>8GJ$9&.,KI$S3-[_U/@_[9DQ\N\!9C M1W>-#5]I#^,$/MN9)BNI\WG MS>/LCTYW,&Q=7B*)#H*%'#YTNKW?N_@]\S\N^M=/QQ1?G]31^64+;7)SCC'1 M?"U<9G,\>C^T!FJ^B#X'8&7[Q3_&\]5=_9/$O0\=< MSS_[:JM]I<;?Q37C^99+@H9,W9IS38^UWFF`'V&\:[\_A4&[!1^/,&7MQCX1^__##F*,K&$8(RD#]#LCX$Z MQ(%%HY./CN"=9X"HD0^9\(OR.[T'@VXTQ!RC#I^V)?ZW=$(FMEPOKEDV%V*U M6\-6'K(Y/@7A&,QC&K=,;Z%A%9+S!VL^/EC]D4DIZNH3Y278'-(32X]P-GM9 M5S,(C#=_AD4TXG9P02-CF0@&&*:?VGA.H>B86#Q2:7IS/<>P8SS&AEG,9@V> MD`M'$\MDQ&=/NP7Y#/TK&E/X98(%H,DFN6Z/9DU*8=SSSYMP77(B7)-ZY6N2 MYFG+."1_&N\UQ41F3HPI!8IHF/I\.6'PE[&+]0?6W>+B_EUFLK7 M8J88]6Y+Q>R$"Q]6-/4'M\@77O$*+R;<;K4MRTN3"$%IJB+H14H2W>'JI6J` M@9+0$[8FR(VMAXI,)%Q:6LE70)$;Y6JC+,=7\@HMY!4N[U6[`KEH>8?SO(-% M7QZ:4*E+IY(N:656GY9UO:*5I>JT7--.*^.Z/*[6XJ1)A2/Q8$I5DBH5;5*O MUBJ5\6FI5%*JDY(TUNMUY*1@)1?O7H]UCUW6M:HB3VJZ)$WJTQJ;GI:K2J6B MG)Z6IN4UTJ1%#?&HEMB$55A9KVJ2/*W7%5V3&=-TO:9I4[TJ)WB(D^](/0GP M-:\EP/?W7Q+Q`0F(DPN:ME\6"K#'+\Y"<6E3\E`R2JK!7I*+4NA_7C8*.GC. M`)L9:1.8KO1!66F+\J?DI9!K&$&)78;`1$U"X.&:1)3QG*4TY')$Z4=ZE2&#F*``T5PMII,5_K^"SR\!CK@?"/V#,=(TV5''@ M]@9E<.]@86`99DYP%H"QH^GXX*7=@^8(#]K\2>0L.AYX=X9Y[^*#H5@.2/VKAW-EK27+.!MF%D3#V*$AC9]\MN M?+G2*)?C3JE7N5/P\;_J%%*S5):D$QFS,K[(],)5Q45BN9S/WU(O)K<0WS>E73.RT=PEW\4:@VTSM%"L<>?^ M6F!N_D_(PCDN#C=W)9';JQ2`;^'C+*Y.<=DZ5/MG5^UCK,)H<_/77R'>W`Q[ MV95*4"3/LN8TQH/7U+01P(\&F@=MIM,!%I4P./_P)%Z-DD6(>.X8?C36*!HK MY88LQZ)1J<@4C?0(?138^Q7T'ICC&+B$Q66WMIQ[+AT246BXX#ZZ'EN(`:JN M86QD[RS7&WF/-L.8"CT!;X0WPM1A#!?!;_+8>N1O`X_[ M8N#]_/5LL3?>596-=Q5[XQ<7>^.-HV8)8^8T7NQ1CL0Q6.:#CT18/]L6#=,/ M/1K'5/V6)!*@A-7!:6P6VB+:P"]7&J5X:2#3[%.0HSGH%?A[:YB%;\Y[W>%5 MZQJ^8?*%1VL)$\M\[0'-),?AALYQG.:F,_JD_K'"YT??O"V.-;BB#;;K5E>] M7$>-`=`"MS@G#)H@M%ME_-7M#=7;6W6(KT$O0OL:F_!QUKOL]5'[PPCP&1<$ MOS[V.]U/S2_'M2_'^/FA?=UIEB3)3X24QGO7P^&'RW:GCPD^F^-[M_E@5Q7\ M\9OBL2W'2THL66Q[;`L_O).0G#70>5B(^-_P`@?&B79X,(ZVEPL+O\"!/@P2 MW&YC&8IA,(6UTN3O"1#P4.IBB@LY(5 MV,U#<*+K^],7+_3GSQ'O)XB6:,IZ[>3T-#)E,!?Q0[`U+@0\RN8&']7+2SK; M\"Q[Y#HZSE+Y(M9TB_N`$AM56^8L=/*E8G)EC<#GL]#(Y^ M[R*_(H=LUB9,.H<0(';@,SCK=ZZ'A!G*0$H*N!S`%MTQ;"]J)!&6YII>9-Q$ MJ;BIN&C.@@[_(D&*,4%\:X<,)YJG-58F/LA("\W7DLMS.!D*[MXQ;<*9V6[S_"A:QLT MFBA"Z]%H^L^-T`/B[+\^QOZ7@BRAR+Z?I9\AK,/62^QUV`$5]@;A,^<&Y=C. M\%GOZDKM#O<[-FBKF#GW0[V^[`R&+S]>"!1*.UK8`B?:\45'"MNT/_$XX7ZV M2]FM8X08(%G!PXX/XE0_Y^@`.?*8V.J'MV[)S%L/$]@GB2T$%+DAE:.E7K!B M+//C`7XY&3*H5W#7E"XC\+N\ML,>#/:-.7QOX%;,"*MC3RAL7>/$)+,ZEUS! MHX-&?O&%W^L5(5BAK_JRIM`:G'4Z*S&&[#:'N0QL?,D#O76'0_B*7\%^D2*& M5XGA2AVVJ&KG:'QK+O?`=(Q#H(H/\-O1G,=\0%A:$89[X8Y^%V#QU!/<5"Z) M$N36H(_!=L/.OB&E\\*!G2O;G7/[E5?V.[/FV$]H13':F\J-EQZ8.#)"1)TC M:J9G"-KA""/0LY/@(,]H<\BO`@*HJ^C>6P4(QIHZU\#L*YF)^IWUN._EHCVD_>>$9@0L[ M!(9TB0O/2PR;(M=$E-!$5_DA++P#G/1RX6J`D*,TQN>[>R3$Z!?"^^K+\,)Z M1MAQR3GQ_G!R0N$SQU8>X*U;"86W'I90?)*-_^T@;VQ!*7P+2N%;4$#WM?S= M#7H++MUF!*Q'BO@C%Z-KN/S>=]3LUS'4)L0ON7$C%AUF8E$DTOW@S1MPT16A M!%!"#?,,4F(/*XROQ.>>2N7U.US%\!IL,H!NQ(9\(XA_YVZ+8-<]V&>0XY=J MMU"C^WGID'4^S^/YPFWAQ:[5;L'B-VM3+"*N_NM(,GQUOS:-0^+%V8.0_5NV M82@>+D'"5=Q]4%>W<87]/2VD>EK8T]/P'E<.N$#:NEVZ#HAN0_X+@G=SGG0U "```> ` end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 06:15:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06581 for freebsd-ports-outgoing; Mon, 6 Jul 1998 06:15:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.133.1] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06557 for ; Mon, 6 Jul 1998 06:14:49 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id PAA13893 for ; Mon, 6 Jul 1998 15:12:40 +0200 (CEST) To: ports@FreeBSD.ORG Subject: ports/math candidate: "dataplot" from NIST From: Poul-Henning Kamp Date: Mon, 06 Jul 1998 15:12:40 +0200 Message-ID: <13891.899730760@critter.freebsd.dk> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org looks like a comprehensive tool, sure would be nice with a port :-) -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 06:50:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA11259 for freebsd-ports-outgoing; Mon, 6 Jul 1998 06:50:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA11206 for ; Mon, 6 Jul 1998 06:50:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA11912; Mon, 6 Jul 1998 06:50:01 -0700 (PDT) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA10172 for ; Mon, 6 Jul 1998 06:42:20 -0700 (PDT) (envelope-from udo.schweigert@mchp.siemens.de) Received: from salomon.mchp.siemens.de (salomon.siemens.de [139.23.33.13]) by david.siemens.de (8.9.1/8.9.1) with ESMTP id PAA21915 for ; Mon, 6 Jul 1998 15:40:45 +0200 (MET DST) Received: from reims.mchp.siemens.de (reims.mchp.siemens.de [139.23.202.134]) by salomon.mchp.siemens.de (8.8.8/8.8.5) with ESMTP id PAA03074 for ; Mon, 6 Jul 1998 15:41:16 +0200 (MDT) Received: (from ust@localhost) by reims.mchp.siemens.de (8.8.8/8.8.8) id NAA14125; Mon, 6 Jul 1998 13:42:12 GMT (envelope-from ust) Message-Id: <199807061342.NAA14125@reims.mchp.siemens.de> Date: Mon, 6 Jul 1998 13:42:12 GMT From: Udo.Schweigert@mchp.siemens.de Reply-To: Udo.Schweigert@mchp.siemens.de To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7186: New port: coolmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7186 >Category: ports >Synopsis: New port: coolmail (xbiff clone) >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 Jul 6 06:50:01 PDT 1998 >Last-Modified: >Originator: Udo Schweigert >Organization: Siemens AG, ZT IK 3, Siemens CERT >Release: FreeBSD 2.2.6-STABLE i386 >Environment: none >Description: New port: coolmail >How-To-Repeat: none >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: # # coolmail # coolmail/files # coolmail/files/md5 # coolmail/patches # coolmail/patches/patch-aa # coolmail/pkg # coolmail/pkg/COMMENT # coolmail/pkg/DESCR # coolmail/pkg/PLIST # coolmail/Makefile # echo c - coolmail mkdir -p coolmail > /dev/null 2>&1 echo c - coolmail/files mkdir -p coolmail/files > /dev/null 2>&1 echo x - coolmail/files/md5 sed 's/^X//' >coolmail/files/md5 << 'END-of-coolmail/files/md5' XMD5 (coolmail-1.3.tgz) = ee355b05b3ebdb9bcf8e83eda63199df END-of-coolmail/files/md5 echo c - coolmail/patches mkdir -p coolmail/patches > /dev/null 2>&1 echo x - coolmail/patches/patch-aa sed 's/^X//' >coolmail/patches/patch-aa << 'END-of-coolmail/patches/patch-aa' Xdiff -rc coolmail-1.3.org/Makefile coolmail-1.3/Makefile X*** coolmail-1.3.org/Makefile Thu Jan 11 18:55:40 1996 X--- coolmail-1.3/Makefile Fri Jul 3 09:02:25 1998 X*************** X*** 22,52 **** X # your linker where to find the libraries it will need, and BINDIR and X # MANDIR specify the places to install the binary executable and manpage X # files for coolmail when you type `make install'. X! CFLAGS = X LINK = $(CC) X! INCLUDES = -I/usr/X11R5/include X! LIB_DIRS = -L/usr/X11R5/lib X BINDIR = /usr/local/bin X MANDIR = /usr/local/man/man1 X X # Comment these out if you can't or don't want to use the digitized audio X # feature. X! AUDIO = -DAUDIO X! AUDIO_MODULE = audio.o X X #### You really don't need to read past this point. #### X X LIBS = $(LIB_DIRS) -lXt -lX11 -lm -lXext X! COPTS = $(CFLAGS) $(AUDIO) X X all: coolmail X # Done. X X! new: X! rm -f *.o coolmail core X X clean: X! rm -f *.o core X X install: X @if [ -w $(BINDIR) ] ; then \ X--- 22,58 ---- X # your linker where to find the libraries it will need, and BINDIR and X # MANDIR specify the places to install the binary executable and manpage X # files for coolmail when you type `make install'. X! CFLAGS = -DNO_CUSERID X LINK = $(CC) X! INCLUDES = -I/usr/X11R6/include X! LIB_DIRS = -L/usr/X11R6/lib X BINDIR = /usr/local/bin X MANDIR = /usr/local/man/man1 X X # Comment these out if you can't or don't want to use the digitized audio X # feature. X! # AUDIO = -DAUDIO X! # AUDIO_MODULE = audio.o X! X! # Comment these out if you don't want Maildir support X! MAILDIR = -DSUPPORT_MAILDIR X! # for debugging: X! #MAILDIR = $(MAILDIR) -DSUPPORT_MAILDIR_DEBUG X! # normally ignores non-regular files in the Maildir; uncomment to change X! #MAILDIR = $(MAILDIR) -DSUPPORT_MAILDIR_STRICTER X X #### You really don't need to read past this point. #### X X LIBS = $(LIB_DIRS) -lXt -lX11 -lm -lXext X! COPTS = $(CFLAGS) $(AUDIO) $(MAILDIR) X X all: coolmail X # Done. X X! new: clean all X X clean: X! rm -f *.o core coolmail X X install: X @if [ -w $(BINDIR) ] ; then \ Xdiff -rc coolmail-1.3.org/audio.c coolmail-1.3/audio.c X*** coolmail-1.3.org/audio.c Thu Jan 11 18:56:40 1996 X--- coolmail-1.3/audio.c Fri Jul 3 08:47:51 1998 X*************** X*** 128,133 **** X--- 128,134 ---- X INIT_FD; X audiofd = open( "/dev/audio", O_WRONLY | O_NDELAY ); X if (audiofd < 0) { X+ perror("/dev/audio"); X fprintf(stderr, "%s: Problem opening /dev/audio.\n", X "Coolmail"); X END_FD; Xdiff -rc coolmail-1.3.org/coolmail.c coolmail-1.3/coolmail.c X*** coolmail-1.3.org/coolmail.c Thu Jan 11 18:57:24 1996 X--- coolmail-1.3/coolmail.c Fri Jul 3 09:01:05 1998 X*************** X*** 25,32 **** X--- 25,34 ---- X #include X #include X #include X+ #include X #include X X+ X #ifdef AUDIO X #include X #endif X*************** X*** 34,41 **** X #include "render1.h" X #include "mailbox.h" X X! #define DEFAULT_MAIL_DIR "/var/spool/mail/" X! #define DEFAULT_COMMAND "xterm -n Elm -e mail\0" X #define DEFAULT_INTERVAL 30 X #define DEFAULT_FRAMES 15 X X--- 36,44 ---- X #include "render1.h" X #include "mailbox.h" X X! #define DEFAULT_MAIL_DIR "/var/mail/" X! X! #define DEFAULT_COMMAND "xterm -n Elm -e elm\0" X #define DEFAULT_INTERVAL 30 X #define DEFAULT_FRAMES 15 X X*************** X*** 96,102 **** X--- 99,107 ---- X int main(int argc, char *argv[]) X { X int reason; X+ #ifndef NO_CUSERID X char username[L_cuserid]; X+ #endif X X /* Quickly scan for the -h option -- if it is present don't do anything X * but print out some help and exit. */ X*************** X*** 104,110 **** X return(0); X X /* Get the username and use it to create a default mailfile name */ X! strcat(mailfile_str, cuserid(username)); X X /* Initialize the renderer */ X rend_init(&argc, argv, (float)150.0); X--- 109,126 ---- X return(0); X X /* Get the username and use it to create a default mailfile name */ X! #ifdef SUPPORT_MAILDIR X! if (getenv("MAILDIR") && strlen(getenv("MAILDIR"))) { X! strcpy(mailfile_str,getenv("MAILDIR")); X! } else if (getenv("MAIL") && strlen(getenv("MAIL"))) { X! strcpy(mailfile_str,getenv("MAIL")); X! } else X! #endif X! #ifndef NO_CUSERID X! strcat(mailfile_str, cuserid(username)); X! #else X! strcat(mailfile_str, getlogin()); X! #endif X X /* Initialize the renderer */ X rend_init(&argc, argv, (float)150.0); X*************** X*** 432,438 **** X printf(" -e command Specifies a command (usually in quotes) which\n"); X printf(" is used to invoke your favorite mail-reading\n"); X printf(" program.\n\n"); X! printf(" -f filename Watch filename, instead of the default mail\n"); X printf(" file, %s.\n\n", DEFAULT_MAIL_DIR); X printf(" -fr n Number of frames to generate for each animation.\n"); X printf(" Set to an appropriate value for your machine's.\n"); X--- 448,454 ---- X printf(" -e command Specifies a command (usually in quotes) which\n"); X printf(" is used to invoke your favorite mail-reading\n"); X printf(" program.\n\n"); X! printf(" -f filename Watch filename/maildir, instead of the default mail\n"); X printf(" file, %s.\n\n", DEFAULT_MAIL_DIR); X printf(" -fr n Number of frames to generate for each animation.\n"); X printf(" Set to an appropriate value for your machine's.\n"); X*************** X*** 626,631 **** X--- 642,680 ---- X X /* Get file modification time */ X X+ X+ /* Maildir notes (aqua@sonoma.net, Sun Jan 18 19:42:27 PST 1998): X+ * X+ * The maildir mail-storage standard is a replacement for the traditional X+ * 'mbox' format, intended to remove problems with file contention, locking, X+ * reduce corruption in the case of a program or system crash, etc, etc. X+ * Fairly detailed description of it can be had as part of the Qmail MTA X+ * documentation, http://www.qmail.org/qmail-manual-html/man5/maildir.html. X+ * X+ * The general gist of the maildir approach is that mail is stored, one X+ # message per file, in a subtree of ~/Maildir. New mail goes in /new, X+ * the "spool" goes in /cur, and /tmp is available to MUAs &c. Mail is X+ * theoretically supposed to be removed from /new immediately by the X+ * MUA, but I've observed that with mutt 0.88, at least, it isn't if X+ * the mailfile was generated by an import script (e.g. mbox2maildir) X+ * rather than the normal delivery agent, presumably due to naming X+ * differences. X+ * X+ * Checking for new mail mostly entails checking the mtime vs. atime of X+ * every file in /new, and the number of messages in /new; if the latter X+ * increases, new mail was delivered -- if not, but the files' atimes X+ * are all later than their mtimes, the MUA read the /new spool. X+ * X+ * The specifications suggest skipping over every .file, but reading all X+ * the others -- I've extended this to include skipping of all non-regular X+ * files, which seemed to make sense -- define SUPPORT_MAILDIR_STRICTER to X+ * override this behavior. X+ * X+ * This process is more resource-intensive than the old scheme of merely X+ * calling stat() for a single file -- it's an O(n) rather than O(1) X+ * operation. X+ * X+ */ X void cool_get_inboxstatus(char *filename, int *anymail, int *unreadmail, X int *newmail) X { X*************** X*** 633,670 **** X off_t newsize; X struct stat st; X int fd; X X- fd = open (filename, O_RDONLY, 0); X- if (fd < 0) X- { X- *anymail = 0; X- *newmail = 0; X- *unreadmail = 0; X- newsize = 0; X- } X- else X- { X- fstat(fd, &st); X- close(fd); X- newsize = st.st_size; X- X- if (newsize > 0) X- *anymail = 1; X- else X- *anymail = 0; X- X- if (st.st_mtime >= st.st_atime && newsize > 0) X- *unreadmail = 1; X- else X- *unreadmail = 0; X X! if (newsize > oldsize && *unreadmail) X! *newmail = 1; X! else X! *newmail = 0; X! } X! X! oldsize = newsize; X } X X /*---------------------------------------------------------------------------*/ X--- 682,800 ---- X off_t newsize; X struct stat st; X int fd; X+ #ifdef SUPPORT_MAILDIR X+ DIR *d; X+ struct dirent *de; X+ char maildir[256],mfn[256]; X+ #endif X X X! #ifdef SUPPORT_MAILDIR_DEBUG X! printf("B anymail=%d, newmail=%d, unreadmail=%d, oldsize=%d, newsize=%d\n", X! *anymail,*newmail,*unreadmail,oldsize,newsize); X! #endif X! #ifdef SUPPORT_MAILDIR X! if (stat(filename,&st)==-1) { X! *anymail = *newmail = *unreadmail = 0; X! newsize = oldsize = 0; X! perror(filename); X! return; X! } X! if (S_ISDIR(st.st_mode)) { X! /* likely a maildir */ X! strcpy(maildir,filename); X! if (maildir[strlen(maildir)-1]!='/') X! strcat(maildir,"/"); X! strcat(maildir,"new"); X! if (stat(maildir,&st)==-1) { X! perror(maildir); X! printf("%s is not a maildir (missing/inaccessible %s)\n",filename,maildir); X! *anymail = *newmail = *unreadmail = 0; X! newsize = oldsize = 0; X! return; X! } X! if (!S_ISDIR(st.st_mode)) { X! printf("%s is not a directory (mode %d)\n",maildir,st.st_mode); X! *anymail = *newmail = *unreadmail = 0; X! newsize = oldsize = 0; X! return; X! } X! d=opendir(maildir); X! newsize=0; X! *unreadmail = 0; X! while ((de=readdir(d))) { X! if (de->d_name[0]=='.') /* dotfiles ignored per the maildir specs */ X! continue; X! strcpy(mfn,maildir); X! if (mfn[strlen(mfn)-1]!='/') X! strcat(mfn,"/"); X! strcat(mfn,de->d_name); X! if (stat(mfn,&st)==-1) { X! perror(mfn); X! continue; X! } X! #ifndef SUPPORT_MAILDIR_STRICTER X! if (S_ISREG(st.st_mode)) X! #endif X! newsize++; X! if (st.st_mtime>=st.st_atime) { X! #ifdef SUPPORT_MAILDIR_DEBUG X! printf("unread: %s mtime = %d, atime = %d\n",de->d_name,st.st_mtime,st.st_atime); X! #endif X! *unreadmail = 1; X! } X! } X! closedir(d); X! if (newsize) { X! *anymail = 1; X! if (newsize>oldsize && *unreadmail) X! *newmail = 1; X! else X! *newmail = 0; X! } else { X! *anymail = *newmail = *unreadmail = 0; X! newsize = 0; X! } X! #ifdef SUPPORT_MAILDIR_DEBUG X! printf("A anymail=%d, newmail=%d, unreadmail=%d, oldsize=%d, newsize=%d\n", X! *anymail,*newmail,*unreadmail,oldsize,newsize); X! #endif X! oldsize=newsize; X! } else { X! #endif /* SUPPORT_MAILDIR */ X! fd = open (filename, O_RDONLY, 0); X! if (fd < 0) X! { X! *anymail = 0; X! *newmail = 0; X! *unreadmail = 0; X! newsize = 0; X! } X! else X! { X! fstat(fd, &st); X! close(fd); X! newsize = st.st_size; X! X! if (newsize > 0) X! *anymail = 1; X! else X! *anymail = 0; X! X! if (st.st_mtime >= st.st_atime && newsize > 0) X! *unreadmail = 1; X! else X! *unreadmail = 0; X! X! if (newsize > oldsize && *unreadmail) X! *newmail = 1; X! else X! *newmail = 0; X! } X! #ifdef SUPPORT_MAILDIR X! } X! #endif X! oldsize = newsize; X } X X /*---------------------------------------------------------------------------*/ END-of-coolmail/patches/patch-aa echo c - coolmail/pkg mkdir -p coolmail/pkg > /dev/null 2>&1 echo x - coolmail/pkg/COMMENT sed 's/^X//' >coolmail/pkg/COMMENT << 'END-of-coolmail/pkg/COMMENT' XA Xbiff like mail tool with animated 3D graphics. END-of-coolmail/pkg/COMMENT echo x - coolmail/pkg/DESCR sed 's/^X//' >coolmail/pkg/DESCR << 'END-of-coolmail/pkg/DESCR' XCoolmail is like xbiff -- it watches your inbox mail file Xand lets you know when you have mail. But unlike xbiff, it can launch Xyour favorite mail utility when you click on it, and it has cool Xanimated 3D graphics. END-of-coolmail/pkg/DESCR echo x - coolmail/pkg/PLIST sed 's/^X//' >coolmail/pkg/PLIST << 'END-of-coolmail/pkg/PLIST' Xbin/coolmail Xman/man1/coolmail.1.gz Xman/cat1/coolmail.1.gz END-of-coolmail/pkg/PLIST echo x - coolmail/Makefile sed 's/^X//' >coolmail/Makefile << 'END-of-coolmail/Makefile' X# New ports collection makefile for: coolmail X# Version required: 1.3 X# Date created: Mon 6 Jul 12:00:06 CEST 1998 X# Whom: Udo Schweigert X# X# $Id$ X# X# DISTNAME/PKGNAME/CATEGORIES/MASTER_SITES/MASTER_SITE_SUBDIR/EXTRACT_SUFX/DISTFILES. X XDISTNAME= coolmail-1.3 XCATEGORIES= mail XMASTER_SITES= ${MASTER_SITE_SUNSITE} XMASTER_SITE_SUBDIR=system/mail/biffs XEXTRACT_SUFX= .tgz X XMAINTAINER= Udo.Schweigert@mchp.siemens.de X XPATCH_STRIP= -p1 X XMAN1= coolmail.1 X X# NO_BUILD= yes X# NO_PACKAGE= "Too many questions" X# WRKSRC= ${WRKDIR} X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/coolmail ${PREFIX}/bin/coolmail X ${INSTALL_MAN} ${WRKSRC}/coolmail.man ${PREFIX}/man/man1/coolmail.1; X Xpost-install: X strip ${PREFIX}/bin/coolmail X X.include END-of-coolmail/Makefile exit >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 Jul 6 07:29:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAB17763 for freebsd-ports-outgoing; Mon, 6 Jul 1998 07:29:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from public.bta.net.cn (public.bta.net.cn [202.96.0.97]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA17751 for ; Mon, 6 Jul 1998 07:29:33 -0700 (PDT) (envelope-from robinson@public.bta.net.cn) Received: from sidewinder.netrinsics.com (ab-2-145.bta.net.cn [202.99.62.217]) by public.bta.net.cn (8.8.5/8.8.5) with SMTP id WAA11042; Mon, 6 Jul 1998 22:26:42 +0800 (GMT) Message-ID: <35A14D16.41C67EA6@public.bta.net.cn> Date: Mon, 06 Jul 1998 22:17:58 +0000 From: Michael Robinson X-Mailer: Mozilla 3.04Gold (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: itojun@itojun.org CC: ports@FreeBSD.ORG Subject: FreeBSD Port: siag-2.65 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I was wondering if there were any plans to port the GTK-enabled siag-2.80 (which includes "Pathetic Writer" and "egon")? -Michael Robinson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 07:34:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18759 for freebsd-ports-outgoing; Mon, 6 Jul 1998 07:34:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from callmedia.se ([193.14.252.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA18713 for ; Mon, 6 Jul 1998 07:34:03 -0700 (PDT) (envelope-from robert@callmedia.se) Received: (from smap@localhost) by callmedia.se (8.7.5/8.7.3) id QAA19257; Mon, 6 Jul 1998 16:08:26 +0200 (MET DST) X-Authentication-Warning: gw.callmedia.se: smap set sender to using -f Received: from unknown(192.168.16.31) by gw.callmedia.se via smap (V1.3) id sma019255; Mon Jul 6 16:08:25 1998 Message-ID: <35A0E0DB.32216D9B@callmedia.se> Date: Mon, 06 Jul 1998 16:36:11 +0200 From: Robert Lindgren X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 3.0-971208-SNAP i386) MIME-Version: 1.0 To: gena@NetVision.net.il CC: ports@FreeBSD.ORG Subject: FreeBSD Port: xfmail-1.2 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 a FreeBSD port of xfmail 1.3? Best regards Robert Lindgren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 09:50:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA08056 for freebsd-ports-outgoing; Mon, 6 Jul 1998 09:50:31 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (billf@hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA08016; Mon, 6 Jul 1998 09:50:24 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA074283820; Mon, 6 Jul 1998 12:50:20 -0400 Date: Mon, 6 Jul 1998 12:50:20 -0400 (EDT) From: Bill Fumerola Cc: freebsd-ports , freebsd-questions Subject: Re: Ports questions 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 you evidently DID modify the file, because your name is in there. freebsd default doesn't put ``steve'' in the member list either. I've never heard of an install capitalizing wheel. I think you should probaly say "I don't remember editing this file". On Fri, 3 Jul 1998, steven wesley wilson wrote: > when trying to compile ports from the ports directory was solved after > investigating the /etc/group file. My /etc/group file had > Wheel:*:0:root,steve in it rather than > wheel:*:0:root,steve > This is interesting because I have not modified the file since installing > the system. Should this be the default installation setup? bill fumerola (root/billf)@chc-chimes.com computer horizons corp - www.computerhorizons.com ph:(248)641-1500 x107 / bill.fumerola@chc.fabrik.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 10:31:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA14301 for freebsd-ports-outgoing; Mon, 6 Jul 1998 10:31:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA14258; Mon, 6 Jul 1998 10:30:51 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA18693; Mon, 6 Jul 1998 10:30:44 -0700 (PDT) Date: Mon, 6 Jul 1998 10:30:44 -0700 (PDT) Message-Id: <199807061730.KAA18693@freefall.freebsd.org> To: cjohnson@neunacht.netgsi.com, nik@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6791 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port, TinyMUX State-Changed-From-To: open-analyzed State-Changed-By: nik State-Changed-When: Mon Jul 6 10:29:54 PDT 1998 State-Changed-Why: Moved to development/ports/net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 10:32:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA14674 for freebsd-ports-outgoing; Mon, 6 Jul 1998 10:32:53 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA14650; Mon, 6 Jul 1998 10:32:27 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA18789; Mon, 6 Jul 1998 10:32:20 -0700 (PDT) Date: Mon, 6 Jul 1998 10:32:20 -0700 (PDT) Message-Id: <199807061732.KAA18789@freefall.freebsd.org> To: pangolin@rogers.wave.ca, nik@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4839 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port - spin - Verification system for asynchronous concurrent systems. State-Changed-From-To: open-analyzed State-Changed-By: nik State-Changed-When: Mon Jul 6 10:32:03 PDT 1998 State-Changed-Why: Moved to development/ports/unfiled. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 10:45:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA16893 for freebsd-ports-outgoing; Mon, 6 Jul 1998 10:45:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA16807; Mon, 6 Jul 1998 10:44:35 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA19253; Mon, 6 Jul 1998 10:44:28 -0700 (PDT) Date: Mon, 6 Jul 1998 10:44:28 -0700 (PDT) Message-Id: <199807061744.KAA19253@freefall.freebsd.org> To: russell.stephane@usa.net, nik@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7005 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Submitting RealAudio Player 3.0 as a new port State-Changed-From-To: open-analyzed State-Changed-By: nik State-Changed-When: Mon Jul 6 10:44:07 PDT 1998 State-Changed-Why: Moved to development/ports/audio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 10:46:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17296 for freebsd-ports-outgoing; Mon, 6 Jul 1998 10:46:46 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17134; Mon, 6 Jul 1998 10:46:13 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA19418; Mon, 6 Jul 1998 10:46:06 -0700 (PDT) Date: Mon, 6 Jul 1998 10:46:06 -0700 (PDT) Message-Id: <199807061746.KAA19418@freefall.freebsd.org> To: darius@holly.dons.net.au, nik@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6355 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port State-Changed-From-To: open-analyzed State-Changed-By: nik State-Changed-When: Mon Jul 6 10:45:52 PDT 1998 State-Changed-Why: Moved to development/ports/www To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 10:54:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA19260 for freebsd-ports-outgoing; Mon, 6 Jul 1998 10:54:23 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA19105; Mon, 6 Jul 1998 10:54:07 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA19854; Mon, 6 Jul 1998 10:53:59 -0700 (PDT) Date: Mon, 6 Jul 1998 10:53:59 -0700 (PDT) Message-Id: <199807061753.KAA19854@freefall.freebsd.org> To: shige@kuis.kyoto-u.ac.jp, nik@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6415 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new ports for ja-lynx2.8.1dev.7 (modified for multibyte character) State-Changed-From-To: open-analyzed State-Changed-By: nik State-Changed-When: Mon Jul 6 10:53:40 PDT 1998 State-Changed-Why: Moved to development/ports/japanese To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 10:55:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA19481 for freebsd-ports-outgoing; Mon, 6 Jul 1998 10:55:48 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA19428; Mon, 6 Jul 1998 10:55:12 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA19958; Mon, 6 Jul 1998 10:55:05 -0700 (PDT) Date: Mon, 6 Jul 1998 10:55:05 -0700 (PDT) Message-Id: <199807061755.KAA19958@freefall.freebsd.org> To: shige@kuis.kyoto-u.ac.jp, nik@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6417 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new ports for ja-libslang-1.0.3 (modified for japanese character) State-Changed-From-To: open-analyzed State-Changed-By: nik State-Changed-When: Mon Jul 6 10:54:21 PDT 1998 State-Changed-Why: Moved to development/ports/japanese To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 10:56:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA19609 for freebsd-ports-outgoing; Mon, 6 Jul 1998 10:56:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA19493; Mon, 6 Jul 1998 10:55:52 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA20029; Mon, 6 Jul 1998 10:55:45 -0700 (PDT) Date: Mon, 6 Jul 1998 10:55:45 -0700 (PDT) Message-Id: <199807061755.KAA20029@freefall.freebsd.org> To: shige@kuis.kyoto-u.ac.jp, nik@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6414 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new ports for ja-color-lynx2.8rel.3 (modified for multibyte character and using ja-libslang-1.03) State-Changed-From-To: open-analyzed State-Changed-By: nik State-Changed-When: Mon Jul 6 10:55:21 PDT 1998 State-Changed-Why: Moved to development/ports/japanese To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 10:57:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA19856 for freebsd-ports-outgoing; Mon, 6 Jul 1998 10:57:27 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA19793; Mon, 6 Jul 1998 10:57:11 -0700 (PDT) (envelope-from nik@FreeBSD.org) From: Nik Clayton Received: (from nik@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA20133; Mon, 6 Jul 1998 10:57:04 -0700 (PDT) Date: Mon, 6 Jul 1998 10:57:04 -0700 (PDT) Message-Id: <199807061757.KAA20133@freefall.freebsd.org> To: shige@kuis.kyoto-u.ac.jp, nik@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6416 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new ports for ja-color-lynx2.8.1dev.7 (modified for multibyte character and using ja-libslang-1.0.3) State-Changed-From-To: open-analyzed State-Changed-By: nik State-Changed-When: Mon Jul 6 10:56:24 PDT 1998 State-Changed-Why: Moved to development/ports/japanese To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 11:05:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA21740 for freebsd-ports-outgoing; Mon, 6 Jul 1998 11:05:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA21723 for ; Mon, 6 Jul 1998 11:05:00 -0700 (PDT) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id MAA24197; Mon, 6 Jul 1998 12:03:47 -0600 (MDT) (envelope-from brett@peloton.physics.montana.edu) Date: Mon, 6 Jul 1998 12:03:47 -0600 (MDT) From: Brett Taylor To: Robert Lindgren cc: gena@NetVision.net.il, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: xfmail-1.2 In-Reply-To: <35A0E0DB.32216D9B@callmedia.se> 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 there a FreeBSD port of xfmail 1.3? yes - /usr/ports/mail/xfmail OR if you don't have the ports tree installed: ftp://ftp.freebsd.org/pub/FreeBSD/ports/mail/ Brett *********************************************************** Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ How many Microsoft employees does it take to change a light bulb? Zero. They declared Darkness[tm] the standard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 11:09:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA22463 for freebsd-ports-outgoing; Mon, 6 Jul 1998 11:09:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA22458 for ; Mon, 6 Jul 1998 11:09:51 -0700 (PDT) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id MAA24206; Mon, 6 Jul 1998 12:08:38 -0600 (MDT) (envelope-from brett@peloton.physics.montana.edu) Date: Mon, 6 Jul 1998 12:08:38 -0600 (MDT) From: Brett Taylor To: Michael Robinson cc: itojun@itojun.org, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: siag-2.65 In-Reply-To: <35A14D16.41C67EA6@public.bta.net.cn> 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 was wondering if there were any plans to port the > GTK-enabled siag-2.80 (which includes "Pathetic Writer" > and "egon")? Well, a commit message just went through for it. Try CVSup'ing and grabbing the new one. Not sure it includes Pathetic Writer, but ... Brett *********************************************************** Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ How many Microsoft employees does it take to change a light bulb? Zero. They declared Darkness[tm] the standard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 11:31:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA26187 for freebsd-ports-outgoing; Mon, 6 Jul 1998 11:31:22 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA26171 for ; Mon, 6 Jul 1998 11:31:18 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA20318 for freebsd-ports; Mon, 6 Jul 1998 11:00:30 -0700 (PDT) Date: Mon, 6 Jul 1998 11:00:30 -0700 (PDT) Message-Id: <199807061800.LAA20318@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 S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/04/24] ports/6405 ports vrweb port does not build; ignores local o [1998/06/19] ports/6998 ports Istall (2.2.5) does not find CDROM device 2 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1997/10/27] ports/4865 ports xdm doesn't set env variables o [1998/02/23] ports/5825 ports cd-write 1.4 fails to read tracks. o [1998/03/06] ports/5933 ports emacsserver (19.34b) hostname in /tmp/ese o [1998/03/10] ports/5970 ports psmisc ports uploaded to freebsd.org:/pub o [1998/05/02] ports/6484 ports xemacs hangs o [1998/05/11] ports/6591 ports KDE starts /usr/bin/kzip instead of /usr/ o [1998/06/01] ports/6821 ports wwwoffle-2.1 port (second posting) o [1998/06/03] ports/6851 ports apply DFN-CERT#34784 to CGIParse.c o [1998/06/08] ports/6897 ports kde port doesn't compile w/o slight modif o [1998/06/09] ports/6902 ports xemacs package broken (motif dependency) o [1998/06/12] ports/6929 ports fxtv-0.47 fails to build on AccelX server o [1998/06/18] ports/6986 ports LaTeX vs. teTeX ; xdvi, xdvik vs. teTeX o [1998/06/22] ports/7026 ports corrections to the perl5 port o [1998/06/23] ports/7034 ports new port o [1998/06/24] ports/7061 ports fspclient's grab command fails (and remov o [1998/06/27] ports/7090 ports xlock manhandles crypt(3) API. o [1998/06/29] ports/7118 ports ifmail 2.13 port has tty lock files in wr o [1998/07/05] ports/7167 ports elm cannot pgp for more than one recipien o [1998/07/05] ports/7175 ports pkg_delete mgetty-1.1.14 deletes its conf o [1998/07/06] ports/7182 ports www/netscape4-navigator cant fetch fortif 21 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/07/21] ports/1416 ports cflow(1) doesn't parse GNU C __attribute_ o [1996/10/14] ports/1804 ports pkg_create hangs if the packing list has o [1997/04/01] ports/3169 ports nn port broken o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) o [1997/04/25] ports/3383 ports kaffe core dumps if LD_LIBRARY_PATH not s o [1997/05/21] ports/3657 ports Port of NCSA HyperNews submitted as p5-hy o [1997/07/02] ports/4014 ports package/port installation obeys roots uma o [1997/07/20] ports/4127 ports netscape-3.01: get rid of bogus error mes f [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/12] ports/4281 ports Compress pcl graphics files - this is an o [1997/08/14] ports/4304 ports Recommendation re. Ports Collection o [1997/08/26] ports/4391 ports New port: VPCE o [1997/08/28] ports/4412 ports New port: YaTeX (in print and japanese) a [1997/10/15] ports/4770 ports New port: Xitami HTTP Server a [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/11/07] ports/4967 ports I have ported Carl DeClerck's mserver-0.2 o [1997/11/13] ports/5034 ports (tcsh) blocked write on named pipe sticks o [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of a [1997/11/23] ports/5131 ports New math port: SuperLU o [1997/11/26] ports/5158 ports thot editor port doesn't install template o [1997/12/03] ports/5200 ports new port-package for pgpmoose o [1997/12/03] ports/5201 ports new port-package for fidogate o [1997/12/03] ports/5202 ports new port-package for pathalias o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/07] ports/5245 ports new port, bugsx game a [1997/12/14] ports/5295 ports New Math port: umfpack o [1997/12/15] ports/5309 ports New port: sls-1.00 [category misc] o [1997/12/15] ports/5312 ports New math port xwpl o [1997/12/28] ports/5393 ports DOOMSRC port & package o [1997/12/30] ports/5397 ports upload of new port (fly) o [1998/01/08] ports/5463 ports No spell check in pico editor because /us o [1998/01/10] ports/5475 ports abacus sentry o [1998/01/15] ports/5504 ports New port sidplay (category audio) o [1998/01/15] ports/5509 ports submit new port xruskb-1.5.1 o [1998/01/26] ports/5570 ports new port, rise 0.3.3 o [1998/01/30] ports/5607 ports NEW PORT: timidity-luigi [category audio] o [1998/02/02] ports/5626 ports 'ldap' port eats all available CPU time o [1998/02/03] ports/5633 ports Submission of new port in 'lang' category a [1998/02/03] ports/5638 ports mail/bulk_mailer port update o [1998/02/04] ports/5653 ports New port of ICI language a [1998/02/05] ports/5660 ports New port type1inst a [1998/02/06] ports/5667 ports I have ported the VICE 0.13.0 Commodore e o [1998/02/07] ports/5675 ports New port in category devel: DOC++ o [1998/02/10] ports/5706 ports New port: ja-dvi2dvi-1.0 (japanese/dvi2dv o [1998/02/17] ports/5771 ports New port: Stuttgart Neural Network Simula o [1998/02/17] ports/5776 ports New compression port: lzo o [1998/02/19] ports/5788 ports pcemu harddisk-access fixes o [1998/02/21] ports/5811 ports netatalk ioctl(SIOCADDMULTI) failure a [1998/02/22] ports/5814 ports New package XShodou o [1998/02/22] ports/5821 ports Port of Swish-E, a Web site indexer o [1998/02/26] ports/5859 ports xxgdb port doesn't recognize the -k optio o [1998/03/01] ports/5884 ports New port: icqjava-0.981a (net/icqjava) o [1998/03/01] ports/5885 ports New port: dc20ctrl-0.4 (graphics/dc20ctrl o [1998/03/08] ports/5946 ports New port biology/molmol o [1998/03/10] ports/5972 ports x11/fvwm95 requiring gsm, and rplay is a o [1998/03/15] ports/6017 ports new port: yacl o [1998/03/15] ports/6018 ports new port: ml-3.3 a [1998/03/15] ports/6020 ports new port: Xfstt-0.9.7 o [1998/03/18] ports/6057 ports xperfmon++-1.40 package fails XtRealloc() o [1998/03/20] ports/6078 ports Documentation concerning logging suggests o [1998/03/21] ports/6085 ports New port: pavuk-0.8 o [1998/03/23] ports/6113 ports new port: rinfo-1.2 o [1998/03/23] ports/6120 ports New port: xtetris-2.6 o [1998/03/27] ports/6151 ports New port: xrus-1.5.2 o [1998/03/28] ports/6153 ports New port: flick o [1998/03/28] ports/6155 ports new port: emulators/vice, Versatile Commo o [1998/03/29] ports/6170 ports another squid ports o [1998/03/29] ports/6171 ports New port: xtron-1.1a o [1998/03/30] ports/6176 ports running architextSearch (excite) under li o [1998/03/30] ports/6181 ports New port: xoj-1.0 o [1998/04/01] ports/6194 ports New port: mirrormagic-1.3 o [1998/04/03] ports/6207 ports new port request: korean/ftghostscript5 o [1998/04/06] ports/6230 ports gfont_mkgdf calls wrong interpreter o [1998/04/07] ports/6235 ports New port: scwm-icon o [1998/04/07] ports/6236 ports New port: scwm o [1998/04/10] ports/6262 ports New port of bulk_mailer 1.9 o [1998/04/15] ports/6305 ports New ports collection: ja-libslang o [1998/04/15] ports/6306 ports New ports collection: ja-slrn o [1998/04/15] ports/6311 ports New port: gsfonts o [1998/04/15] ports/6312 ports New port: ghostscript-3.33 a [1998/04/16] ports/6321 ports can't run any version of PostgreSQL on 2. o [1998/04/17] ports/6331 ports New port: libshhopt-1.1.3 a [1998/04/19] ports/6355 ports New port o [1998/04/20] ports/6361 ports New ports collection: GNU Pascal Compiler o [1998/04/23] ports/6393 ports patch for multimedia-2.1.tar.gz a [1998/04/25] ports/6414 ports new ports for ja-color-lynx2.8rel.3 (modi a [1998/04/25] ports/6415 ports new ports for ja-lynx2.8.1dev.7 (modified a [1998/04/25] ports/6416 ports new ports for ja-color-lynx2.8.1dev.7 (mo a [1998/04/25] ports/6417 ports new ports for ja-libslang-1.0.3 (modified o [1998/04/28] ports/6445 ports New port for `fhist' o [1998/05/01] ports/6473 ports New port: libshhmsg-1.3.3 o [1998/05/01] ports/6474 ports New port: libxalloc-1.0.2 o [1998/05/03] ports/6504 ports New port of `C Interfaces and Implementat o [1998/05/07] ports/6541 ports New port: math/dc o [1998/05/09] ports/6565 ports new port o [1998/05/10] ports/6570 ports port of java CUP parser o [1998/05/11] ports/6598 ports new port for FreeBSD - asmodem o [1998/05/12] ports/6604 ports New port: web500gw, an HTTP - LDAP gatewa o [1998/05/12] ports/6606 ports package add of perl-5.00404 fails w/3.0 S o [1998/05/12] ports/6613 ports ports/lang/perl5 fails to install by addi o [1998/05/13] ports/6622 ports IIJ-PPP current version o [1998/05/15] ports/6645 ports Updated port: mysql o [1998/05/16] ports/6657 ports new port for perl/Tk 800.004 o [1998/05/17] ports/6666 ports Update port: ja-netscape-4.05 o [1998/05/19] ports/6687 ports New port, ktelnet v0.6 o [1998/05/19] ports/6688 ports New port: kbiff v0.6 o [1998/05/19] ports/6699 ports Generic NQS port (new) o [1998/05/20] ports/6704 ports New port: gtk-- o [1998/05/21] ports/6709 ports New port kmessage o [1998/05/23] ports/6728 ports New port ktranslator o [1998/05/24] ports/6743 ports diff to upgrade tkrat to tkrat1.1 o [1998/05/28] ports/6776 ports New port - xqf o [1998/05/28] ports/6777 ports New port - qstat a [1998/05/29] ports/6791 ports New Port, TinyMUX o [1998/05/31] ports/6806 ports /usr/ports/graphics/killustrator doesn't o [1998/06/01] ports/6815 ports ssh lookup ignores second IP address o [1998/06/02] ports/6838 ports Enable lj4dith driver by default o [1998/06/04] ports/6862 ports Cyrus upgraded to 1.5.10 o [1998/06/06] ports/6882 ports Perl5 in 3.0-980518-SNAP o [1998/06/08] ports/6895 ports Status of lsof in 3.0-980518-SNAP o [1998/06/11] ports/6915 ports Apache-FP for apache v1.3.0 o [1998/06/13] ports/6942 ports New port, mrouted-beta o [1998/06/14] ports/6943 ports new ports submitted o [1998/06/16] ports/6970 ports mule and family build faulure o [1998/06/17] ports/6978 ports New port: extension fonts for enscript o [1998/06/19] ports/7001 ports new port de/webalizer o [1998/06/20] ports/7004 ports sysutils/cdrecord depends on mkisofs, is a [1998/06/20] ports/7005 ports Submitting RealAudio Player 3.0 as a new o [1998/06/21] ports/7013 ports SANE v0.73 cannot be pkg_deleted due to i o [1998/06/21] ports/7018 ports New port: xmball-5.4.4 o [1998/06/23] ports/7030 ports New port: bogged-1.0.0 o [1998/06/24] ports/7045 ports Fixed port: guavac o [1998/06/24] ports/7062 ports pidentd partialy broken in current o [1998/06/25] ports/7071 ports jove 4.16: Clicking button 1 causes xterm o [1998/06/25] ports/7074 ports [New Ports] Xtt0.6 a TrueType X servers o [1998/06/26] ports/7076 ports New port: xmlink-5.4.4 o [1998/06/26] ports/7077 ports The default archie host "archie.sura.net" o [1998/06/27] ports/7086 ports Port: ja-p5-jcode.pl o [1998/06/28] ports/7094 ports New port of xbomber game o [1998/06/28] ports/7096 ports update port: ja-vfxdvik-20c (dvi viewer f o [1998/06/28] ports/7097 ports New port: bb-1.2 o [1998/06/28] ports/7099 ports GNU readline support for SPICE port. o [1998/06/28] ports/7106 ports New port: xwpick-2.20 o [1998/06/29] ports/7120 ports New port: biology/hmmer o [1998/06/29] ports/7121 ports new port: txt2html-1.25 (take two) o [1998/06/30] ports/7128 ports New port: Raster3D-2.4f o [1998/06/30] ports/7130 ports Japanese translation of perl5 manual o [1998/07/01] ports/7139 ports Adding a new port to the collection. o [1998/07/01] ports/7140 ports new port: htdig o [1998/07/01] ports/7143 ports New port: pp-0.01 o [1998/07/02] ports/7149 ports New port: xdigger-1.0.6 o [1998/07/02] ports/7150 ports `elftoaout': new port o [1998/07/04] ports/7158 ports New port: spellcast-1.1 o [1998/07/04] ports/7160 ports xsysinfo does not report interrupt state o [1998/07/04] ports/7163 ports new port: p5-Set-IntSpan o [1998/07/04] ports/7164 ports new port: p5-News-Newsrc o [1998/07/05] ports/7179 ports Update port: games/xlines o [1998/07/06] ports/7183 ports New port: GYVE - GNU Yellow Vector Editor o [1998/07/06] ports/7186 ports New port: coolmail (xbiff clone) 159 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 Jul 6 12:20:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA02060 for freebsd-ports-outgoing; Mon, 6 Jul 1998 12:20:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA02035 for ; Mon, 6 Jul 1998 12:20:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA23711; Mon, 6 Jul 1998 12:20:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA01291; Mon, 6 Jul 1998 12:14:09 -0700 (PDT) (envelope-from nobody) Message-Id: <199807061914.MAA01291@hub.freebsd.org> Date: Mon, 6 Jul 1998 12:14:09 -0700 (PDT) From: hetzels@westbend.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/7188: SSLeay unable to locate file to patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7188 >Category: ports >Synopsis: SSLeay unable to locate file to patch >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 6 12:20:01 PDT 1998 >Last-Modified: >Originator: Scot W. Hetzel >Organization: >Release: >Environment: FreeBSD-2.2-STABLE >Description: When building SSLeay with USA_RESIDENT set to YES, the patch for Makefile.ssl (files/Makefile.patch) will not applied, instead patch asks for the file to patch instead. Also, BUILD_DEPENDS should be changed to LIB_DEPENDS in the ports Makefile. Otherwise, when port will be unble to find the rsaref\\.2\\. library, and will keep trying to rebuild the rsaref port. >How-To-Repeat: Set USA_RESIDENT to YES, make build >Fix: Edit Makefile, and change BUILD_DEPENDS to LIB_DEPENDS Edit files/Makefile.patch and change both work/SSLeay-0.8.1 to work/SSLeay-0.8.1b. >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 Jul 6 15:49:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA06468 for freebsd-ports-outgoing; Mon, 6 Jul 1998 15:49:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA06462; Mon, 6 Jul 1998 15:49:44 -0700 (PDT) (envelope-from terry@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id PAA05814; Mon, 6 Jul 1998 15:39:10 -0700 (PDT) Received: from tlambert.whistle.com(207.76.205.208) via SMTP by alpo.whistle.com, id smtpd005812; Mon Jul 6 22:39:09 1998 Message-ID: <35A1519D.60D4@whistle.com> Date: Mon, 06 Jul 1998 15:37:18 -0700 From: Terry Lambert Organization: Whistle Communications X-Mailer: Mozilla 3.01Gold (Win95; I) MIME-Version: 1.0 To: obrien@FreeBSD.ORG, jdp@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: gcc/g++ 2.8.1 port maintainers/modifiers Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org There appears to be a problem with the non-installation of the include files in the port. Specifically, the include file "typeinfo" is not installed, and it seems that there is not a sperate installation of a "include/g++28/" directory, in general, and that an installed "/usr/local/bin/g++28" therefore uses the previous "g++" includes, which are for g++ 2.7.2. This results in failures when attempting to use runtime type information (RTTI). This is just the most obvious failure; I am sure there are other compiler/include file mismatches... Specifically, things like: #include // pseudocode... too lazy, too obvious, takes too much space... class foo { ... }; class fee : public foo { ... }; class fum : public foo { ... }; // real code follows... void gettype( char *s, foo *obj) { if( typeid(foo) == typeid(*obj)) printf( "object named '%s' is of type foo\n", s); else if( typeid(fee) == typeid(*obj)) printf( "object named '%s' is of type fee\n", s); else printf( "object named '%s' is an unknown subclass (%s), s, typeid(*obj).name); } main() { foo *foo1; fee *foo2; fum *foo3; foo1 = new foo; foo2 = new fee; foo3 = new fum; gettype( "foo1", foo1); gettype( "foo2", foo2); gettype( "foo3", foo3); } Fail because the wrong gets included. This works correctly when you use the gnu configure based install. I recommend making the compiler reference an ./include/g++28/ directory, and installing the correct include hierarchy there, wherever that is (probably /usr/local/) to resolve the problem. Sorry, I don't have patches; I don't quite follow the way the ports are supposed to actually work, and am too buried to be able to pitch in on fixing the port. 8-(. -- Regards, -- Terry Lambert -- Whistle Communications, Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 16:00:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08371 for freebsd-ports-outgoing; Mon, 6 Jul 1998 16:00:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA08345; Mon, 6 Jul 1998 16:00:37 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.8.8/8.8.8) with ESMTP id QAA29033; Mon, 6 Jul 1998 16:00:31 -0700 (PDT) (envelope-from jdp) Message-Id: <199807062300.QAA29033@austin.polstra.com> To: Terry Lambert cc: obrien@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: gcc/g++ 2.8.1 port maintainers/modifiers In-reply-to: Your message of "Mon, 06 Jul 1998 15:37:18 PDT." <35A1519D.60D4@whistle.com> Date: Mon, 06 Jul 1998 16:00:30 -0700 From: John Polstra Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > There appears to be a problem with the non-installation of the > include files in the port. > > Specifically, the include file "typeinfo" is not installed, I think you must have an out of date port. I have one that I installed just a few days ago. It definitely installs the header: > vashon$ cat test.cc > #include > vashon$ gcc28 -c -H test.cc > /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/typeinfo > /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/exception John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 16:20:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA09936 for freebsd-ports-outgoing; Mon, 6 Jul 1998 16:20:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA09922 for ; Mon, 6 Jul 1998 16:20:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA03048; Mon, 6 Jul 1998 16:20:01 -0700 (PDT) Received: from firewall.chc-chimes.com (billf@firewall.chc-chimes.com [206.67.97.82]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA09352 for ; Mon, 6 Jul 1998 16:13:00 -0700 (PDT) (envelope-from billf@firewall.chc-chimes.com) Received: (from billf@localhost) by firewall.chc-chimes.com (8.8.8/8.8.8) id TAA21632; Mon, 6 Jul 1998 19:11:40 -0400 (EDT) (envelope-from billf) Message-Id: <199807062311.TAA21632@firewall.chc-chimes.com> Date: Mon, 6 Jul 1998 19:11:40 -0400 (EDT) From: Bill Fumerola Reply-To: billf@firewall.chc-chimes.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7192: new port bnc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7192 >Category: ports >Synopsis: new port: bnc >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 Jul 6 16:20:01 PDT 1998 >Last-Modified: >Originator: Bill Fumerola >Organization: Computer Horizons Corp >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: 2.2.6-RELEASE, nothing major changed >Description: new port for bnc, an IRC proxy this is my 2nd port, and I think I did a nicer job. this one was a helluva lot easier too :> >How-To-Repeat: >Fix: shar follows # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./Makefile # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./files # ./files/md5 # ./patches # ./patches/patch-aa # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: bnc X# Version required: 2.4.3 X# Date created: 06 July 1998 X# Whom: Bill Fumerola X# X# $Id$ X# X XDISTNAME= bnc-web XPKGNAME= bnc-2.4.3 XCATEGORIES= net XMASTER_SITES= http://www.bridgenet.net/bnc/ X XMAINTAINER= billf@chc-chimes.com X XWRKSRC= ${WRKDIR}/bnc2.4.3 XHAS_CONFIGURE= YES XGNU_CONFIGURE= YES X Xdo-install: X ${CP} ${WRKSRC}/bnc ${PREFIX}/bin X ${CP} ${WRKSRC}/bncchk ${PREFIX}/bin X ${CP} ${WRKSRC}/example.conf ${PREFIX}/etc/bnc.conf X X.include END-of-./Makefile echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' Xa simple IRC relay proxy with support for virtual hosting END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XIRC Proxy Daemon that supports virtual hosting. X XInstructions in work/bnc*/README. X XBill Fumerola(billf@chc-chimes.com) END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/bnc Xbin/bncchk Xetc/bnc.conf END-of-./pkg/PLIST echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (bnc-web.tar.gz) = eee6dcba1cb1ad42f576b46f9bf0c4a7 END-of-./files/md5 echo c - ./patches mkdir -p ./patches > /dev/null 2>&1 echo x - ./patches/patch-aa sed 's/^X//' >./patches/patch-aa << 'END-of-./patches/patch-aa' X--- Makefile.in.old Mon Jul 6 16:56:21 1998 X+++ Makefile.in Mon Jul 6 17:06:25 1998 X@@ -4,7 +4,7 @@ X CFLAGS = -DVERSION='"v2.4.3"' -O6 X CC = gcc X X-ALL: bnc X+all: bnc X X bnc.o: config.h common.h bnc.c Makefile X ${CC} ${CFLAGS} -c bnc.c END-of-./patches/patch-aa exit >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 Jul 6 16:49:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13273 for freebsd-ports-outgoing; Mon, 6 Jul 1998 16:49:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA13267; Mon, 6 Jul 1998 16:49:09 -0700 (PDT) (envelope-from terry@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id QAA08972; Mon, 6 Jul 1998 16:41:32 -0700 (PDT) Received: from tlambert.whistle.com(207.76.205.208) via SMTP by alpo.whistle.com, id smtpd008964; Mon Jul 6 23:41:26 1998 Message-ID: <35A16033.7E59@whistle.com> Date: Mon, 06 Jul 1998 16:39:31 -0700 From: Terry Lambert Organization: Whistle Communications X-Mailer: Mozilla 3.01Gold (Win95; I) MIME-Version: 1.0 To: John Polstra CC: obrien@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: gcc/g++ 2.8.1 port maintainers/modifiers References: <199807062300.QAA29033@austin.polstra.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org John Polstra wrote: > > > There appears to be a problem with the non-installation of the > > include files in the port. > > > > Specifically, the include file "typeinfo" is not installed, > > I think you must have an out of date port. I have one that I > installed just a few days ago. It definitely installs the > header: > > > vashon$ cat test.cc > > #include > > vashon$ gcc28 -c -H test.cc > > /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/typeinfo > > /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/exception The correct place for this to be installed is in the directory include/g++/sys/typeinfo.h, with a wrapper include in include/g++/typeinfo that includes sys/typeinfo.h. In any case, it shouldn't be in the top level include directory, and the g++ includes the one in /usr/include in preference to that one, even if it were being put in the right place (ie: in include instead of, minimally, in include/g++/typeinfo). Try adding: #warning "This is the wrong file, you bozo!" To the /usr/include/g++/typeinfo file, and you will see what I mean. The port is broken... -- Terry Lambert -- Whistle Communications, Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 19:15:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA26619 for freebsd-ports-outgoing; Mon, 6 Jul 1998 19:15:52 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from coconut.itojun.org (root@coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA26613 for ; Mon, 6 Jul 1998 19:15:49 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from localhost (itojun@localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.8.8+3.0Wbeta12/3.6W) with ESMTP id KAA01877; Tue, 7 Jul 1998 10:24:48 +0900 (JST) To: Brett Taylor cc: Michael Robinson , ports@FreeBSD.ORG In-reply-to: brett's message of Mon, 06 Jul 1998 12:08:38 CST. X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: FreeBSD Port: siag-2.65 From: Jun-ichiro itojun Itoh Date: Tue, 07 Jul 1998 10:24:48 +0900 Message-ID: <1873.899774688@coconut.itojun.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> I was wondering if there were any plans to port the >> GTK-enabled siag-2.80 (which includes "Pathetic Writer" >> and "egon")? >Well, a commit message just went through for it. Try CVSup'ing and >grabbing the new one. Not sure it includes Pathetic Writer, but ... I managed to upgrade to 2.80. However, it does not include gtk-enabled siag. I think gtk-enabled one should be a separate port. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 19:45:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA01127 for freebsd-ports-outgoing; Mon, 6 Jul 1998 19:45:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA01102; Mon, 6 Jul 1998 19:45:11 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.8.8/8.8.8) with ESMTP id TAA01057; Mon, 6 Jul 1998 19:45:01 -0700 (PDT) (envelope-from jdp) Message-Id: <199807070245.TAA01057@austin.polstra.com> To: Terry Lambert cc: obrien@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: gcc/g++ 2.8.1 port maintainers/modifiers In-reply-to: Your message of "Mon, 06 Jul 1998 16:39:31 PDT." <35A16033.7E59@whistle.com> Date: Mon, 06 Jul 1998 19:45:01 -0700 From: John Polstra Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > vashon$ cat test.cc > > > #include > > > vashon$ gcc28 -c -H test.cc > > > /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/typeinfo > > > /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/exception > > The correct place for this to be installed is in the directory > include/g++/sys/typeinfo.h, with a wrapper include in > include/g++/typeinfo that includes sys/typeinfo.h. No it's not. There is no "typeinfo.h" in gcc-2.8.1, or in the C++ standard for that matter. There's only "typeinfo". > In any case, it shouldn't be in the top level include directory, and > the g++ includes the one in /usr/include in preference to that one, > even if it were being put in the right place (ie: in include instead > of, minimally, in include/g++/typeinfo). I can't parse that. Please, don't try to explain it to me until you've understood the rest of this mail. > Try adding: > > #warning "This is the wrong file, you bozo!" > > To the /usr/include/g++/typeinfo file, and you will see what I > mean. Did you read the output from "gcc28 -H" that I sent in my last mail? Here it is again: vashon$ cat test.cc #include vashon$ gcc28 -c -H test.cc /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/typeinfo /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/exception The "-H" option causes the compiler to report exactly which files it included. They are listed above. "/usr/include/g++/typinfo" is not in the list, even though it exists on my system. Ergo, the compiler is not including it. > The port is broken... Whatever breakage you've demonstrated to this point is not in the port, it's in your installation, or your methodology, or your assumptions. -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 20:20:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA07042 for freebsd-ports-outgoing; Mon, 6 Jul 1998 20:20:39 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA06944 for ; Mon, 6 Jul 1998 20:20:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA09261; Mon, 6 Jul 1998 20:20:01 -0700 (PDT) Received: from ail.ail-inc.co.jp ([210.145.48.250]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA05839; Mon, 6 Jul 1998 20:14:21 -0700 (PDT) (envelope-from sada@e-mail.ne.jp) Received: from amygdala.ail-inc.co.jp (amygdala.ail-inc.co.jp [210.145.48.251]) by ail.ail-inc.co.jp (8.8.5/3.6W) with ESMTP id MAA22808; Tue, 7 Jul 1998 12:14:17 +0900 (JST) Received: from pl133.local.ail-inc.co.jp (pl133.local.ail-inc.co.jp [192.168.1.13]) by amygdala.ail-inc.co.jp (8.8.8/3.6W98030310) with ESMTP id MAA11034; Tue, 7 Jul 1998 12:11:27 +0900 (JST) Received: from localhost (pl133.local.ail-inc.co.jp [192.168.1.13]) by pl133.local.ail-inc.co.jp (8.8.8/3.6W98020616) with SMTP id MAA29360; Tue, 7 Jul 1998 12:13:14 +0900 (JST) Message-Id: <199807070314.MAA22808@ail.ail-inc.co.jp> Date: Tue, 7 Jul 1998 12:13:14 +0900 (JST) From: sada@e-mail.ne.jp Reply-To: sada@e-mail.ne.jp To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: vanilla@FreeBSD.ORG, sada@e-mail.ne.jp X-Send-Pr-Version: 3.2 Subject: ports/7193: [fix port] x11/enlightment Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7193 >Category: ports >Synopsis: fix port: change to new distribute location >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 6 20:20:01 PDT 1998 >Last-Modified: >Originator: SADA Kenji >Organization: Nagoya.Aichi.Japan >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: FreeBSD 2.2.6-RELEASE i386 XFree86 3.3.2 >Description: Port x11/enlightment: Change `MASTER_SITES' and remove `BROKEN'. >How-To-Repeat: >Fix: diff -urN /usr/ports/x11/enlightenment/Makefile enlightenment13/Makefile --- /usr/ports/x11/enlightenment/Makefile Fri Jul 3 16:25:22 1998 +++ enlightenment13/Makefile Tue Jul 7 12:00:02 1998 @@ -9,15 +9,13 @@ DISTNAME= enl_BETA-0.13.3 PKGNAME= enlightenment-0.13.3 CATEGORIES= x11 -MASTER_SITES= ftp://ftp.enlightenment.org/pub/enlightenment/ +MASTER_SITES= http://technoir.nethead.org/Enlightenment/progs/ DISTFILES= enl_BETA-0.13.3.tar.gz \ enl-0.13-themes.tar.gz MAINTAINER= vanilla@FreeBSD.ORG LIB_DEPENDS= Imlib\\.1\\.:${PORTSDIR}/graphics/imlib - -BROKEN= "The distfile can't be fetch now, waiting next version now." USE_GMAKE= yes USE_IMAKE= yes >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 Jul 6 22:03:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA23478 for freebsd-ports-outgoing; Mon, 6 Jul 1998 22:03:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mailc.telia.com (root@mailc.telia.com [194.22.190.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA23440 for ; Mon, 6 Jul 1998 22:03:31 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from d1o29.telia.com (root@d1o29.telia.com [194.236.214.241]) by mailc.telia.com (8.8.8/8.8.8) with ESMTP id HAA06708; Tue, 7 Jul 1998 07:03:17 +0200 (MET DST) Received: from partitur.se (t4o29p11.telia.com [194.236.215.131]) by d1o29.telia.com (8.8.8/8.8.5) with ESMTP id HAA05107; Tue, 7 Jul 1998 07:02:29 +0200 (MET DST) Message-ID: <35A1ABED.6BC91B53@partitur.se> Date: Tue, 07 Jul 1998 07:02:37 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 2.2.6-STABLE i386) MIME-Version: 1.0 To: freebsd-ports@FreeBSD.ORG Subject: international kerberos 5? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just saw the new kerberos 5 port. Not very surprisingly, I'm not allowed to obtain the source from outside the US: If you are not a US resident, then you cannot obtain Kerberos V source from a server within the United States. You will have to find the source elsewhere, and put them in /usr/ports/distfiles/krb5. Just curious; are there any international versions of Kerberos V ? /Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 23:17:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04873 for freebsd-ports-outgoing; Mon, 6 Jul 1998 23:17:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA04868 for ; Mon, 6 Jul 1998 23:17:10 -0700 (PDT) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain (localhost [127.0.0.1]) by cain.gsoft.com.au (8.8.8/8.6.9) with ESMTP id PAA21870; Tue, 7 Jul 1998 15:46:51 +0930 (CST) Message-Id: <199807070616.PAA21870@cain.gsoft.com.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: Palle Girgensohn cc: freebsd-ports@FreeBSD.ORG Subject: Re: international kerberos 5? In-reply-to: Your message of "Tue, 07 Jul 1998 07:02:37 +0200." <35A1ABED.6BC91B53@partitur.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 07 Jul 1998 15:46:51 +0930 From: "Daniel O'Connor" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Not very surprisingly, I'm not allowed to obtain the source from outside > the US: > > If you are not a US resident, then you cannot obtain > Kerberos V source from a server within the United > States. You will have to find the source elsewhere, > and put them in /usr/ports/distfiles/krb5. > > Just curious; are there any international versions of Kerberos V ? Well, there is a copy on a UK site, but I have absolutly no idea if its legal.. Its here ftp://ftp.ox.ac.uk/pub/comp/security/software/Kerberos5/ --------------------------------------------------------------------- |Daniel O'Connor software and network engineer for Genesis Software | |http://www.gsoft.com.au | |The nice thing about standards is that there are so many of them to| |choose from. -- Andrew Tanenbaum | --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Jul 6 23:39:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA07098 for freebsd-ports-outgoing; Mon, 6 Jul 1998 23:39:38 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA07089 for ; Mon, 6 Jul 1998 23:39:31 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id IAA07960; Tue, 7 Jul 1998 08:39:15 +0200 (MEST) (envelope-from kuku) Message-ID: <19980707083914.59125@gil.physik.rwth-aachen.de> Date: Tue, 7 Jul 1998 08:39:14 +0200 From: Christoph Kukulies To: Amancio Hasty Cc: Christoph Kukulies , Mark Tinguely , freebsd-hackers@freefall.cdrom.com, freebsd-ports@FreeBSD.ORG, josh@ican.net Subject: mysql port (was Re: mit-pthreads and gethostbyname) References: <19980706191226.15709@gil.physik.rwth-aachen.de> <199807070337.UAA04805@rah.star-gate.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: <199807070337.UAA04805@rah.star-gate.com>; from Amancio Hasty on Mon, Jul 06, 1998 at 08:37:21PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Jul 06, 1998 at 08:37:21PM -0700, Amancio Hasty wrote: > I think that mysql thingie should be using libc_r and not the mit threads > package unless they have a very specific technical reason for it. Your word in the porters ears :-) (Cc: MAINTAINER=josh@ican.net) Moreover in the light of the fact that 3.22.4 will be released today. I will try to link it against libc_r and see if that works. > > Amancio > > -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 02:00:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24672 for freebsd-ports-outgoing; Tue, 7 Jul 1998 02:00:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA24662 for ; Tue, 7 Jul 1998 02:00:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA18772; Tue, 7 Jul 1998 02:00:01 -0700 (PDT) Received: from kamna.eunet.cz (kamna.eunet.cz [193.85.255.30]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id BAA24492 for ; Tue, 7 Jul 1998 01:59:01 -0700 (PDT) (envelope-from martin@eunet.cz) Received: (qmail 28249 invoked from network); 7 Jul 1998 08:58:28 -0000 Received: from woody.eunet.cz (@193.85.255.60) by kamna.eunet.cz with SMTP; 7 Jul 1998 08:58:28 -0000 Received: (from martin@localhost) by woody.eunet.cz (8.8.8/8.7.3) id KAA28148; Tue, 7 Jul 1998 10:58:27 +0200 (MET DST) Message-Id: <199807070858.KAA28148@woody.eunet.cz> Date: Tue, 7 Jul 1998 10:58:27 +0200 (MET DST) From: martin@eunet.cz Reply-To: martin@eunet.cz To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7194: problem in xinetd-2.2.1 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7194 >Category: ports >Synopsis: man pages being installed with wrong owner and permissions >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 Jul 7 02:00:00 PDT 1998 >Last-Modified: >Originator: Martin Machacek >Organization: Internet CZ >Release: FreeBSD 3.0-CURRENT i386 >Environment: Excerpt from the xinetd port top level Makefile: # New ports collection makefile for: xinetd # Version required: 2.2.1 # Date created: 28 June 1996 # Whom: markm # # $Id: Makefile,v 1.4 1997/12/04 03:40:06 vanilla Exp $ # >Description: Man pages (xinetd.1, xinetd.conf.5 and xinetd.log.5) are being installed with wrong owner a permissions. Currently man pages are being installed with owner root group bin mode 0640 which makes them basically unusable since on "normal" system almost nobody is in the bin group. Correct owner should be bin and mode 0444. >How-To-Repeat: Do make install in the top level directory of the above mentioned port. >Fix: Add folowing patch to the port's patches directory: *** xinetd/Makefile.orig Tue Jul 7 10:18:34 1998 --- xinetd/Makefile Tue Jul 7 10:22:38 1998 *************** *** 133,138 **** --- 133,139 ---- FMODE = -m 640 # mode for anything but executables INSTALL_PROGRAM = install -c -s INSTALL_DATA = install -c + INSTALL_MAN = install -c -o bin -g bin -m 0444 LINT_FLAGS = -hbux PAGER = less *************** *** 183,194 **** install.man: if test "$(MANPROGDIR)" ; then \ ! $(INSTALL_DATA) $(FMODE) $(MANPROGFILE) $(MANPROGDIR)/$(MANPROGPAGE) ;\ fi if test "$(MANDATADIR)" ; then \ for i in $(MANDATANAMES) ; do \ name=$(PROGRAM).$$i ; \ ! $(INSTALL_DATA) $(FMODE) $$name.man $(MANDATADIR)/$$name.$(MANDATASECTION);\ done ;\ fi --- 184,195 ---- install.man: if test "$(MANPROGDIR)" ; then \ ! $(INSTALL_MAN) $(MANPROGFILE) $(MANPROGDIR)/$(MANPROGPAGE) ;\ fi if test "$(MANDATADIR)" ; then \ for i in $(MANDATANAMES) ; do \ name=$(PROGRAM).$$i ; \ ! $(INSTALL_MAN) $$name.man $(MANDATADIR)/$$name.$(MANDATASECTION);\ done ;\ fi >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 Jul 7 06:01:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA22351 for freebsd-ports-outgoing; Tue, 7 Jul 1998 06:01:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from eh.est.is (root@eh.est.is [194.144.208.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA22346 for ; Tue, 7 Jul 1998 06:01:12 -0700 (PDT) (envelope-from totii@est.is) Received: from gateway.toti.est.is (root@toti.est.is [194.144.208.200]) by eh.est.is (8.8.5/8.8.7) with ESMTP id NAA14608; Tue, 7 Jul 1998 13:01:22 GMT (envelope-from totii@est.is) Received: from didda.toti.est.is ([192.168.255.22]) by gateway.toti.est.is (8.8.7/8.8.7) with ESMTP id NAA25074; Tue, 7 Jul 1998 13:02:19 GMT (envelope-from totii@est.is) Message-ID: <35A20DD9.261B8EDC@est.is> Date: Tue, 07 Jul 1998 13:00:25 +0100 From: "=?iso-8859-1?Q?=DE=F3r=F0ur=20=CDvarsson?=" Reply-To: thivars@est.is X-Mailer: Mozilla 4.01 [en] (Win95; I) MIME-Version: 1.0 To: "Daniel O'Connor" CC: Palle Girgensohn , freebsd-ports@FreeBSD.ORG Subject: Re: international kerberos 5? X-Priority: 3 (Normal) References: <199807070616.PAA21870@cain.gsoft.com.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Daniel O'Connor wrote: > > > Not very surprisingly, I'm not allowed to obtain the source from outside > > the US: > > > > If you are not a US resident, then you cannot obtain > > Kerberos V source from a server within the United > > States. You will have to find the source elsewhere, > > and put them in /usr/ports/distfiles/krb5. > > > > Just curious; are there any international versions of Kerberos V ? > Well, there is a copy on a UK site, but I have absolutly no idea if its legal.. > Its here ftp://ftp.ox.ac.uk/pub/comp/security/software/Kerberos5/ > Try ftpsearc at http://ftpsearch.ntnu.no, it gives good result! thivars@est.is To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 07:20:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA02938 for freebsd-ports-outgoing; Tue, 7 Jul 1998 07:20:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA02932 for ; Tue, 7 Jul 1998 07:20:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA27387; Tue, 7 Jul 1998 07:20:02 -0700 (PDT) Date: Tue, 7 Jul 1998 07:20:02 -0700 (PDT) Message-Id: <199807071420.HAA27387@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Tim Vanderhoek Subject: Re: ports/7194: problem in xinetd-2.2.1 port Reply-To: Tim Vanderhoek Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7194; it has been noted by GNATS. From: Tim Vanderhoek To: martin@eunet.cz, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/7194: problem in xinetd-2.2.1 port Date: Tue, 7 Jul 1998 10:14:33 -0400 On Tue, Jul 07, 1998 at 10:58:27AM +0200, martin@eunet.cz wrote: [...] > if test "$(MANPROGDIR)" ; then \ > ! $(INSTALL_MAN) $(MANPROGFILE) $(MANPROGDIR)/$(MANPROGPAGE) ;\ Heck, if you going to do this, why not go all the way and use ! ${BSD_INSTALL_MAN} $(MANPROGFILE) $(MANPROGDIR)/$(MANPROGPAGE);\ and actually get the correct permissions instead. -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 08:10:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11021 for freebsd-ports-outgoing; Tue, 7 Jul 1998 08:10:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA11011 for ; Tue, 7 Jul 1998 08:10:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA29105; Tue, 7 Jul 1998 08:10:01 -0700 (PDT) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA10304 for ; Tue, 7 Jul 1998 08:05:50 -0700 (PDT) (envelope-from ady@ady.warpnet.ro) Received: (from ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) id SAA13879; Tue, 7 Jul 1998 18:05:30 +0300 (EEST) (envelope-from ady) Message-Id: <199807071505.SAA13879@ady.warpnet.ro> Date: Tue, 7 Jul 1998 18:05:30 +0300 (EEST) From: ady@freebsd.ady.ro Reply-To: ady@freebsd.ady.ro To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: searle@longacre.demon.co.uk X-Send-Pr-Version: 3.2 Subject: ports/7196: qt-1.31: source tarball location has changed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7196 >Category: ports >Synopsis: qt-1.31: source tarball location has changed >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 Jul 7 08:10:01 PDT 1998 >Last-Modified: >Originator: Adrian Penisoara >Organization: Warp Net Technologies >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: All FreeBSD versions >Description: The source tarball location has chaged: the people at troll.no moved this old version ov the package from /qt/source to /qt/old/ >How-To-Repeat: Try to build the qt-1.31 port. >Fix: Here it is a patch for Makefile that will change MASTER_SITES to the right URL ( ftp://ftp.troll.no/qt/old/ ): Adrian Penisoara Ady (@freebsd.ady.ro) --8<-- begin 644 qt-1.31.patch M+2TM($UA:V5F:6QE+F]R:6<)1G)I($UA>2`@,2`Q,SHS-CHP,R`Q.3DX"BLK M*R!-86ME9FEL90E4=64@2G5L("`W(#$W.C4P.C0Y(#$Y.3@*0$`@+3@L-R`K M."PW($!`"B`*($1)4U1.04U%/0EQ="TQ+C,Q"B!#051%1T]22453/0EX,3$* M+4U!4U1%4E]3251%4ST)9G1P.B\O9G1P+G1R;VQL+FYO+W%T+W-O=7)C92\* M*TU!4U1%4E]3251%4ST)9G1P.B\O9G1P+G1R;VQL+FYO+W%T+V]L9"\*(`H@ J34%)3E1!24Y%4CT)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 Jul 7 09:14:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21079 for freebsd-ports-outgoing; Tue, 7 Jul 1998 09:14:58 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21070 for ; Tue, 7 Jul 1998 09:14:52 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by freefall.freebsd.org (8.8.8/8.8.5) with ESMTP id JAA01165 for ; Tue, 7 Jul 1998 09:14:09 -0700 (PDT) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id SAA09986 for freebsd-ports@freefall.cdrom.com; Tue, 7 Jul 1998 18:14:08 +0200 (MEST) (envelope-from kuku) Date: Tue, 7 Jul 1998 18:14:08 +0200 (MEST) From: Christoph Kukulies Message-Id: <199807071614.SAA09986@gilberto.physik.RWTH-Aachen.DE> To: freebsd-ports@freefall.cdrom.com Subject: perl-5.00404 in ports-current md5 checksm mismatch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org As the subject says, I'm getting a MD5 checksum mismatch when trying to build perl5 (required for mysql). Why? -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 09:40:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25371 for freebsd-ports-outgoing; Tue, 7 Jul 1998 09:40:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA25360 for ; Tue, 7 Jul 1998 09:40:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA01821; Tue, 7 Jul 1998 09:40:02 -0700 (PDT) Received: from limbo.rtfm.net (nathan@38.nyack.fcc.net [204.141.125.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA24771 for ; Tue, 7 Jul 1998 09:35:33 -0700 (PDT) (envelope-from nathan@limbo.rtfm.net) Received: (from nathan@localhost) by limbo.rtfm.net (8.8.8/8.8.8) id MAA20346; Tue, 7 Jul 1998 12:32:44 -0400 (EDT) (envelope-from nathan) Message-Id: <199807071632.MAA20346@limbo.rtfm.net> Date: Tue, 7 Jul 1998 12:32:44 -0400 (EDT) From: nathan@rtfm.net To: FreeBSD-gnats-submit@FreeBSD.ORG, Joe Greco X-Send-Pr-Version: 3.2 Subject: ports/7197: root's home incorrect in tripwire default config Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7197 >Category: ports >Synopsis: root's home incorrect in tripwire default config >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 Jul 7 09:40:01 PDT 1998 >Last-Modified: >Originator: Nathan Dorfman >Organization: RTFM.net >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD limbo 3.0-CURRENT FreeBSD 3.0-CURRENT #9: Wed Jul 1 00:54:13 EDT 1998 nathan@limbo:/usr/src/sys/compile/LIMBO i386 >Description: The default tripwire configuration file for FreeBSD (in work/tripwire-1.2/configs/tw.conf.freebsd2) seems to assume / as root's home directory. It checks for dotfiles there. These files don't exist, and will generate errors in integrity check mode. The problem is that the *real* files in /root don't get checked. >How-To-Repeat: Install the tripwire port, and generate, then check a database using the default configuration. >Fix: 75,81s/^/\/root/ - patch included because, frankly, I need to pass the time :\ *** tw.conf.freebsd2 Tue May 12 22:03:19 1998 --- tw.conf.freebsd2.n Tue Jul 7 12:20:57 1998 *************** *** 72,84 **** # First, root's "home" =/ L ! /.rhosts R # may not exist ! /.profile R # may not exist ! /.cshrc R # may not exist ! /.login R # may not exist ! /.exrc R # may not exist ! /.logout R # may not exist ! /.forward R # may not exist # Unix itself /kernel R --- 72,84 ---- # First, root's "home" =/ L ! /root/.rhosts R # may not exist ! /root/.profile R # may not exist ! /root/.cshrc R # may not exist ! /root/.login R # may not exist ! /root/.exrc R # may not exist ! /root/.logout R # may not exist ! /root/.forward R # may not exist # Unix itself /kernel R >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 Jul 7 10:29:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA02561 for freebsd-ports-outgoing; Tue, 7 Jul 1998 10:29:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA02556 for ; Tue, 7 Jul 1998 10:29:43 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by freefall.freebsd.org (8.8.8/8.8.5) with ESMTP id KAA03830 for ; Tue, 7 Jul 1998 10:29:21 -0700 (PDT) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id TAA10489; Tue, 7 Jul 1998 19:29:51 +0200 (MEST) (envelope-from kuku) Message-ID: <19980707192951.11838@gil.physik.rwth-aachen.de> Date: Tue, 7 Jul 1998 19:29:51 +0200 From: Christoph Kukulies To: Christoph Kukulies Cc: freebsd-ports@freefall.cdrom.com Subject: Re: perl-5.00404 in ports-current md5 checksm mismatch References: <199807071614.SAA09986@gilberto.physik.RWTH-Aachen.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: <199807071614.SAA09986@gilberto.physik.RWTH-Aachen.DE>; from Christoph Kukulies on Tue, Jul 07, 1998 at 06:14:08PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jul 07, 1998 at 06:14:08PM +0200, Christoph Kukulies wrote: > > As the subject says, I'm getting a MD5 checksum mismatch when trying > to build perl5 (required for mysql). Please discard this message. Problem solved. Local problem. > > Why? > > -- > Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- --Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 10:30:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA02778 for freebsd-ports-outgoing; Tue, 7 Jul 1998 10:30:29 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA02762 for ; Tue, 7 Jul 1998 10:30:17 -0700 (PDT) (envelope-from fenner@FreeBSD.org) From: Bill Fenner Received: (from fenner@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA02692 for ports@freebsd.org; Tue, 7 Jul 1998 10:00:11 -0700 (PDT) Date: Tue, 7 Jul 1998 10:00:11 -0700 (PDT) Message-Id: <199807071700.KAA02692@freefall.freebsd.org> To: ports@FreeBSD.ORG Subject: Unfetchable distfiles reminder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear porters, This is just a reminder to please periodically check the list of unfetchable distfiles at http://www.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems is http://www.freebsd.org/~fenner/portsurvey/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "distfiles" Fenner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 10:50:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA05323 for freebsd-ports-outgoing; Tue, 7 Jul 1998 10:50:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA05304 for ; Tue, 7 Jul 1998 10:50:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA04440; Tue, 7 Jul 1998 10:50:01 -0700 (PDT) Received: from download4.gamespot.com ([205.216.163.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA04904 for ; Tue, 7 Jul 1998 10:48:15 -0700 (PDT) (envelope-from jsd@download4.gamespot.com) Received: (from root@localhost) by download4.gamespot.com (8.8.8/8.8.8) id KAA11145; Tue, 7 Jul 1998 10:32:30 -0700 (PDT) (envelope-from jsd) Message-Id: <199807071732.KAA11145@download4.gamespot.com> Date: Tue, 7 Jul 1998 10:32:30 -0700 (PDT) From: jsd@gamespot.com Reply-To: jsd@gamespot.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7198: ucd-snmp port fails under 3.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7198 >Category: ports >Synopsis: ucd-snmp port won't build on 3.0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jul 7 10:50:00 PDT 1998 >Last-Modified: >Originator: Jon Drukman >Organization: Gamespot >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: >Description: >How-To-Repeat: cd /usr/ports/net/ucd-snmp make all >Fix: >Audit-Trail: >Unformatted: >> Checksum OK for ucd-snmp-3.3.1.tar.gz. ===> Building for ucd-snmp-3.3.1 for i in snmplib agent apps local ov man ; do ( cd $i ; make ) ; done cd mibgroup; make cc -I../.. -I./../.. -I./../../snmplib -I./.. -I.. -g -O2 -Dfreebsd3 -Dfreebsd2 -c system.c In file included from ../common_header.h:131, from system.c:6: /usr/include/netinet/tcp_var.h:299: field `xt_socket' has incomplete type *** Error code 1 Stop. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 11:40:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA14399 for freebsd-ports-outgoing; Tue, 7 Jul 1998 11:40:26 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA14385 for ; Tue, 7 Jul 1998 11:40:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA05775; Tue, 7 Jul 1998 11:40:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA14208; Tue, 7 Jul 1998 11:39:39 -0700 (PDT) (envelope-from nobody) Message-Id: <199807071839.LAA14208@hub.freebsd.org> Date: Tue, 7 Jul 1998 11:39:39 -0700 (PDT) From: watanabe@z.phys.nagoya-u.ac.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/7199: Update port: ja-dvipsk-* (japanese/dvipsk-*) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7199 >Category: ports >Synopsis: Update port: ja-dvipsk-* (japanese/dvipsk-*) >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 Jul 7 11:40:00 PDT 1998 >Last-Modified: >Originator: Makoto WATANABE >Organization: Z lab. Division of Particle and Astrophysical Science, Nagaoya University >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: >Description: I have updated the 'ja-dvipsk' port to correspond with updated 'ja-ptex' port. I put the patch packed with gzip and uuencode below "Fix:" Packed patch is 5419 Jul 4 16:25 ja-dvipsk-5.78a-980704.patch.gz Changed files are dvipsk/Makefile dvipsk/files/md5 dvipsk/patches/patch-aa dvipsk/patches/patch-ab dvipsk/pkg/DESCR dvipsk/pkg/PLIST Deleted file is dvipsk/pkg/MESSAGE Added file is dvipsk/pkg/INSTALL And I have added new directory 'japanese/dvipsk-vflib' for VFlib option, put this version port packed with 'tar czf' and uuencode below "Fix:" Packed tarball is 5072 Jul 4 16:25 ja-dvipsk-vflib-5.78a-980704.tar.gz Packed list is 0 Jul 4 15:44 1998 dvipsk-vflib/ 0 Jul 4 15:44 1998 dvipsk-vflib/files/ 201 Jul 4 15:44 1998 dvipsk-vflib/files/md5 0 Jul 4 15:44 1998 dvipsk-vflib/patches/ 1770 Jul 4 15:44 1998 dvipsk-vflib/patches/patch-aa 258 Jul 4 15:44 1998 dvipsk-vflib/patches/patch-ab 289 Jul 4 15:44 1998 dvipsk-vflib/patches/patch-ac 508 Jul 4 15:44 1998 dvipsk-vflib/patches/patch-ad 0 Jul 4 15:44 1998 dvipsk-vflib/pkg/ 62 Jun 27 21:03 1998 dvipsk-vflib/pkg/COMMENT 874 Jul 4 15:44 1998 dvipsk-vflib/pkg/DESCR 3385 Jul 4 15:44 1998 dvipsk-vflib/pkg/INSTALL 4438 Jul 4 15:44 1998 dvipsk-vflib/pkg/PLIST 3615 Jul 4 15:44 1998 dvipsk-vflib/Makefile - Makoto WATANABE watanabe@zlab.phys.nagoya-u.ac.jp >How-To-Repeat: >Fix: I put TWO files packed with uuencode below. begin 644 ja-dvipsk-5.78a-980704.patch.gz M'XL(".;8G34``VIA+61V:7!S:RTU+CJ%U@WVID^HU/+IJ(QOJ\I MBI(+N#&:N^1,?R"D31J]?KO;;^R1YO[^7JU>KR]2V1CI$?E];A/2(;5,CLCR7.%+"J1?T"7PX M#U(G7WP],FYKRE/R@08AP@;TOW,KH":#(UUU=U>OU8N[>WLZD/&;:@>Y'^L1 M)49`X4M`X*?5)8/Y#0K=0Z"/MYZ3=,H/C->+//)Q,!Z<#UX-R;^^ZI'NZA-Z M^,W6)ZI_^Q"JKG[C/>C*7-4-]8O_$H@AO:T3X"75M7-'FBK[QY2D-;I:HT5: M+:%E1[\GPWN?;#'78].QM@[C?R^IL%?50\- MRU(-#X:I^?.)-J:?--:F^!&]U_!/J]G5R.>:LK$^VEE1.(O"744!4[MI^0WJ M1C10O5"?Q6;6CL`C-!#BJQY037P_-CX(H*4PS/<3RWO_7] M\N)J/#H^N7K4I#]I*0`8)]D`.2^OAJ]//CUJX2V.9>JY4:C=316]-9GET[B; M1IYG`V\PZ_G[P>GUY>#HW>#-\/K5^Y/3XX,-RP4&,#AK`J'DJQ7=$B^ZI0&Y MX[$A)-Y4ZF"[5J^1]Z/A]9NSP3N8%`\TK)$WY^^OCR[.7Y^\>7\EV^+[Z^'Y MAX,-W;@V[JZ!Q^VUY8:1;ML'FUO?3\Y'X\'IZ2-1#*)X9.O[JY/SBX_G<'_# M;]Y<73YNLH#8ZNVT]TB]W=S9;;*0>/SAY!+'B98;#S^=O7[D9JT1N&/M20?H ML$:`W(!/5@9']*G3BJ9.30%1QU_;LM\/,`"*F\";6<;,(K;G^4;N5:@@MQP=[,0)^0'W+ITC0CYQ`I2;[]O`"N(7+/)C*(8GIFPK=6EE<"T0!:, MI]#[*-`S%H+1AWAWY]DS&B0X0A9<2R!@7;Y3?9M&VHJI!- MY<%.)BU"8.8PHHE](1&+9%INJ>UG6PSTB4IX&!Y!&PKCW0=FAQ#/!N.CMQ`1 M0J*8$!0^7KT;71T]DG_Q:Q;H1"XF4IZ-PV?$2('*:`^&B`)K0EY`U]'EX^*$ MC/V7/`=I4XS]ZKSKM3K.?64RMVRSCV2>H0^0%?)P&-!]^-\YI=\H,(B=TD:O M?)EU4H1_+G4EPFD?UH9#:TK^($^(,B7)*F&Y4T\SK8#\"9P@K/-EA`#$:'@, MPW,I^:VYHYU1=][7_-^(-@\#L;3$J"_SZ+U@A*86#A/R3V(1R\6HG8H=CP!D M>F)\3#@FF@S=C]K6EI66"\%0LK,/CTM@"_?J1)_%JIM:XM*$V,D4@U9(:R8M MH%@'8N$(XQJ",?S4.">6R_CR83+"S!_/F-TSX@A+:C+L%(.!ARVH*QW6,NHJ MY20%DR/.<.3KWZ,6AP"Q+I9Y8Z+*M"5E&,\(AJ*)A?OZ&+)Z8+E@'EPB8H(H M8'RSB)E,NF5%"+E6$*,6,;CU,B+@3.>M$H]BT8D:2TIY0.. MC;H\`A[HA21*B23Y_I'RJ[N[D!BN=_>:7988IF9G@B6,>^2++&A MN%39Y-STC(Q8,HS8+D3")=]D'EU(0D+P^'**6?+?)P$YE6E-X1LT(Q7S"A<\ ML?B-AF/(VQ\)5+_7G-A!3#6>RZ.W.'X`8=R%7G@+JZ/(Y<5HK,AV1AXYVR'] MIYB`J?G`6*B&`CV->S8L>DG;U.0]\U#=HVIG1B[.Y-S*F9Q]H&TV5%Z.VE1>CUVDUCKZFW=IN=Z6YK.MW;;TU:^[MFJ]LS.F8C MB[U<4;-A-";-AM[=;='&=+_=[.WNT59WK]G@W>DNV*T7*,R&S89MMYRF)!)HWC_QYI!I,E(S7[/8[N+O% MB2@IUA)E&;JS*Z"1YWYC9Q?B6@.B&_*$!`YP8``*ED.F%/C4LW<:;J76/527$75Y$!-[$I@[9 MUA(N=YYE$N,V,!SSV?,72YN"!.E_F8<1T7$9^*H')H0AP]8#G6UL(JDZI^&8 M,-Y\&FN2YWVL)C>]QO4N#"35W2ZJ%O=YK];C/E,^WF3H]MLG`_Q07O&68C6R;Y M]5>R]0PW?9[#-VX\Z\%-"->'H$\,Z02$IB_`-UZPI;=6SQ5T?#N'QH`T6^BR M;9"@&T^M!4%!2"8HQ,TF$W1?0#)!.TS0#A>T7DU0\M=?9!)0?98O,8&%@8BB M07XKIA[I\0V]IP:4$\H&9@@F9@@SW`$(J0ZL8!K553W`KHA1;08BURA"5\:OHYRFY8'N#@.F:.$$@;M_0*&39'+VCP4-T:[DW M*K?_PC./Q`WFE+D!1*X6^"NX03OE!LM8&Q\A#+'HVF31%1RBD_*&O<;./JFS MO\P;TL;K)WI^KF+QB@K9>C9Z.SP]125$GG\=!@94M,\U*,&=F4"&AI`YD(M= M3%M33USZX2W531HP)%;M;/$EC>_(7#NZ$3!8X/647$(Q.C*@NHPP5-K>S9R& M!,@2ML<%R@I16\PO;F._X&#<,;:>I7-.$&#K-D\(R$!OX\FW@09_)@G/E1OHE0D.W3]+W6RTL3+A7SS*+8TS5A3?1&LF'BM:V#V]CYZ7HXO- M\`P!V98F\92,Z2?"_)M[;<9:F`V`H9BRN(&@199RK$Q?LI-3-'7`5DZ15Y3R M83[R-QFABK">$,A,:6"[.%PH!OE-!A>,!T11Q$.2W\A+S:1WFCL'/VB]_+69 M;&IA_%U`PB\%F!]DPHJ\U!8B%M:.E7+>24%V.EF5\TXJU2O+2.4Y;YL]PN9E M=3KGE7L9R?PK2'Y[R\GO$NX"6G>_WTUGP9V=)DC!_N(4RDJQR#V5;[3[K>[R MDI3EF@+?[3=:J06I@^M1AR]'A&S#&NY`8<4^X`\.Z?38)78191L2SP$L!R&4 MKH0G]ZD`@@DW>!)_L$P#%5((1+@"WGJ(B:IE0W,FXC".BD>>V'X`0]XFXI+4 MIT(:I'`LZ`.C2(=""8)C MGGJV[7W%@,KV*)A4`AW73PD*.F/@-HU`%2-@GX(7@BC;AV300=%(J]EP'-+: M[SD.:Z^37WZYQ,=JB-D'*!A?/G`]#Y8`D<,T[SVU"S&IV;1`UOIV81?@$=F9 M[6!<7M$;RTVQ.F6`17%@=J,=#T='5_%4E0W+,U_V5)OR"73I7&<)6%,D8$E6 MS!XFV)ZAVV(K"N*T,Q7O*;!KU7"GN)A&MWHD_)Q%OAHQH$@%(YKD\AUA3ZQV MR`[E-X05:# M%D0%*2OC%LH$2S'0JE<:%GONS>_[RT,#*NL,)D5,#*B^WH!*I.&#@L)"67Q1 MJ$96OTU1/!GD/F'*C>468=Z$$'VL//T=_`[*C,8^V_EI@)/W&HM30L*73HK& M3H.M?TWVPD+]Z1/V3"EDCPG9P[#-^ZW6)GER`!?I32F;8Q&.NQ`C*\$2MKA-6X]L;O_43V)GF`%M,0/8XX%8"E019_UO;TYN]3N*>5!((;OP'$KN M],#2)Q#V4;ULU<`7,7AV-A>[=?+%R,V$5K);D^M:. M?=Y$%7_>)-Y^K,1'\#J#RPY<*-C]Z<]O$'(C8UHP-3S=-/A#T'!`BI((@ M#E)*^7_DCX<_^V03EK\0Z1FX_7`/1G7#1P#$ION'[;_N_PW_L7XA"6OY#/Y; MGG>D%(\?"":@OKYT5_Z)9;^44DI=D#\2BCB$1R8B7B78:>8(LL03/RR*;"X0 MVTP@T"OCZ]1<3+<6SF[YR4P^)6;)A5J8C)_3B(27G9D0L!P`)*RH*3/#9S.S M5//X8;MP20/;C4OWQX9XS90/A2_,9,((\AD!V30.1R4GX#T1N7@';N.FW49^ M2^/+@MZ*0U,:WHFTDI\,[M, M_;!W+I`K]<\D@.?ZZ/+2(#\_X*6P@N2L'ODKA\3)\]9O)`?M?]AC%[*9)9]% MDG@-+,0RR7A(VCS0^)Y?0E:^@@O<+%:P)%LD;9R6))!_5FM9B6H^]**-665E)M2:5%E/K0N3(*#:F$9=7 MDDBJWEI)Y6>9)Q5`P4!R&"4&JD`E'L=*.P=.H>6DS_\SJ6EQ32G>'TG7@?*5 MDKR:4O3E;+/LYVZS2/C"&I1OJNZ3.A:6N(_V4S#5=D#2'TJW:\K/V/U1 M?FCW1_E?W?WYV28O=O;+TY/1..V>K"'7T5E/93<7T&4;)[L[O1ZI[^[L\L-O M_(UC]C2+/3=I+3>UEYLZ-66QJ5LCA_@(GZ\*OQRGWXV&C(F%\6JO0Z=P)17%T5X/_3?G8CITEBAOCAW'8K*2G#G^+#Z[Q/?""+J!7W&D4]8G7 M>XJZI^*%N:)^]GYZ82>>HRCHNRT6=T]G)S_R>H*B'MTL[)$G20KZ_*).PPMF M17VF4=C##%O0.9V[LX>B3KRF]U%9MP6>5M8?/CA%W?=VJ[`K*NQ*#O?D=*8. M`Q7@LB=V_%Q5&00[^JK5>3B(WR%> M\_04D:\"R1BUS#A]9@+RUB*8@G9Q<((=F>"ESS)41N9"@-31KF*8U)&O0J#4 M4;!"F-01L4*8M"/FP"P?5#N#5T)PT^-EIA>'*0L@TD?KRR#2YV\+`-+ M#F5*Y58&]E9`RP.>+(2L!F-GOBJ!J7>/Q?WJP!4$8+"]QAJ$$3@L6WS$*3TQM)(X)0"%4^GMZK#FW+<]MS3M7$(` MNP11=0S+O:L.'!H8^AC= M=3'VU^'!0L]".A#A;[4DYS.UB:T;&!&7$X=%2)855H*D,(]70R7GB,I"@AB2 MWE:-:>EJ*@#%G*T.S29L17"8K14AP5HPZ=8"5M8!;ZX#W%H'N+T.<&<=X.X: MP+TU8/?6@>U6A]VO3)=/M&7H19>/?\MC%5CJ]SW((N3"X6W]3G>C&STP*(EP4`64%0S+U4*N M`*G?/*D`[5N&BL^K'5H1."5N('5I:[^<8A,+&*^M@OI2CY??A; M*V)#6IPQS]U1$*Z;="X?$2=RA4F=2W_9K1;`8JTG.U8%>TX+C]:R6T_\D6HY!L`N 3[U#E45U)9FK5_A]!/OL"5U$``'_9 ` end begin 644 ja-dvipsk-vflib-5.78a-980704.tar.gz M'XL(`)C[G34``^T\^5?;2-+S*WK?'U%Q/,,IR2<&)^3#@"$>SH<=DGV3+-.6 MVK;&NE:2'4B&_=NWNG7:E@^RA.SLNM_#2-UU=55U=76K)76HV6Y?''9TK2W_ M]'T*E'*5MZA)^W5+8SIWT"[L;JN%WF*]L[]!">2>?WZ$$J;?)"`GNA&)>RA/=[A&)$Y0\GU"G0#N= M4DXIM@ND0RO%@K)-"R37WBEM[RH%M2W\:$7^1^1`WS#_%^IY)?Q M_SG*A/T/+\_/ZQ>MI^0Q+_Y#99O;OYPO5[:+%00KY/VT M/.:,_WRY7!C/__!N.?Z?HQQQ^X-BF4/J>"X0'@_80@!LQU('"E6A?0\M^@'6 M,!Y87H\ZK*7K$&,=XX9`DINPKKFN9G:A8YE(42$FM"F0@6<9Q-,4HNOW MT*4F=8B'Q+6.<%YOU8XO+UI`[S07,2P3D`VX]ZY'C2U`M@&-0$K$ZCB6`;]W M.ZLL=/UN]U>%CN4@>8:K4H.8J@2\:T!TUP)W8-L6Z][OGJTIJUN(XG:T+KN@ MAD?O5K<$1('?F217E\W6JB0(+13!'QUA?T%SP;!4K:.A!"B(JR$WJP,ME.7: MZFM*7UMU?1Q`J@]2?B;-0"#W$./#"GKIDL]<"V#PI`X&FGC4@TT7U,<DL><^+]=JHRO_TNX`EC&_^G5Z M811-6<,:"(("8+=YX/NEH6L,>@X6MC]8BX7 M@NYE%,,I2UAC]S,"&[]3*:2,]1AA+V-H9ED:=L`Q=`E'>2;0QPL0.Y#]&O;A M(1$ITS02XMPA3J2=AU10-@ET6`3/?@TZ\_`*5$N`4=1L!]Z`K-*A;`YT'7[Y M!4(M\=ER+Q.A^Q4,(R.HEDE'6$0]783)GW]"K$K3\F)6*=5)AKS[H@D30F5` M)"!^@2DDTMV+*CT+,AM/6C*QGQ<#/S^HM0[?1A*@:GR^;/K]MZ;>3$0JFH/3 M'2EERHUQ4^;>:$DV.@FO?%1(C-&*A,!H`]&EXD1EZB<-H+#,C+(Q(B=+\_8H/N8P`,V MSL=&^<08#T'YT!OM-A^!L]3-2AOUVX_NJ8XV3;1&RC_F"E.8G.:,$[$^+-_NCC@CI,P&J3-! MB)+BEE\@!>F_SS7'TI!QYT1J>(6T@[F.$0^(\KC)W-<83IDK4FNE-FI+L:$:!=7O"*%C+OU=]@(%W0;>QOP4:INQ0L\O!N+IM6M3.1*4X5` MQTMMBR;!6G*2BB8!MFL9L.9^GT(A(T19V6*!P`>=D_+Q_CS21$S7H;^,:#-< MV8;:C%>Z7)MC02&ISXA$M+P-:236N_.(/)%1$F$1S1+V8;I9%B`2=6*V<1UC MJKU\!_\^:>2/7K@]49E8_U^=-9I/^O1GWOH_GRL7MB>>_Q=SR_7_%E5ICC#6 M-GXOYB=J"A,UQ8F:DK#/1>+1.<$./K'DA$=4D\)J?DL^I^:@*MNK_HZGO^R/ MH-^,B+H_V-?/FC/2]TO<5V@/K_6I\W"FL8B6!MS#1G_[B1J*OZ= M[?)8)QG$#I:0LO]/LEU@J5LT&Z$$R>T2SEO.:MCW8-F,D]$TF"GU/"U@ZVS. M"7.722`NY+#C"XD+TVD@8:^FM2M&U,^I(/?.7!@ZF`NBD[D@":6G@(R;(1H) MW]6.W!8+V)+#3;/S;%NB0)Z#(?Z<]&F+?K@ZE6Q]!MA5L^5H2M^=`:)8NN6X MU)[B&3&8KPD'H^LL,,>R)=UV9H!XFD%=@WB2Z]W/`..;CIK)5V'3H7"HBO3. MX8C475A6&LV<+O-[-]N,^>9#X6_BT%)^;DZ=N4"*\*RZ.X/B/VQ9`T"UTK(648O1YO4ULZBP"[P-J M7ZBDTR'5"X]"<37V=&P1%(?:FDT7ZX+;LS[;I#L'FC_[E*_KM:/S^EPPG0FP MO3-GE(_!SN?.02NYQI\[\7@5PI"@IG5EC+X!3![9NF=V%@=$" MCK<8M&8.%P-T%0=3Z,?`BH^`SC\"MO`(V.(C8$N/@"TO#EM9''3G$:#EA4%W M%Z7*H\'=!##^RK9.PAS='P\2ULZ!NN6WJ8`ZP=]";C>`)4-B>EWBJ'1B6DV! M;NM$85%R(5C+ZF-6O`BHTB.F0IW[A6!9VK&@"!3UM0B"#;+'A4"[#J7]14`QW<**12!Y6K48]UO=%W4!O\)Y5%,DME-KT,5@ M8PE42PE:1J+Y>+7D'SF?ULJW-"8:_64;LM>F-/6H;@=K-]W$G-U-3[B#`1PW MQG2"IFCIX!@SH7!5B1`+9)_S0?U\?\ M3R7'SGR/[?\MSW\^3WD)%_0S^(O=&>(G4L@TUBQ?"4:/9NJB=U_=6DJ\] M"5>G)W[M'T0<>1_);SZLM>HGE]>->I-!A$?B')-L_86-3+[\CP45A)8"G4]*@C62[I1QV0 M#[&O+`Y^YC&12S>.YVA]:DK=B-L"*`.1:%]"%@R'B345K^=Q1(,]6'5[FNGV M!I%\_S11VGMB$!D7H)[%"7%%'S?.F%*R7T.M/V2_UC^TKFN'K=OFN^,/#X%C MI;P^QIF.6&+RS3`!E=^X:.%?_7IO9?X93.'ZW<7M4?VJ?G&$4C$+B(IE&)99 MS7Z]NKQN-8\:UP]R:%\Y`<"E0:#IA\G220P[GF7IPEGC(.9[%<[N[VJ'9[63NJW!^\:9T=[*YJ)(J$*M#:.S\^:UPM.907EX<-T[>70=5T>UM_>)F;X4H MM\J0/R>\#3;&V1/LX!S@`X@*B!9DOQXT+B[?7^!]U[\YN;YZR`B,T>WQ6>T$ MN_GAT+_(B(U8<2B\/E!I!CZ<7=:.4"UU!G`6`V#'&9F+_%Y@?2D/T;ZZ(/"S MN7N3IN`3L'!TT[ABJF0>QR$?@NP!;WAU7,]R6!2[Y@_IX-!V\/CC`!7^[NHV M<-Y'[O@B-JH\P$WLGD-B&QR2^]V0V-B&Q`XV=SG,]]'<:F*3'UP^M+-E(Y M3+3Z93BF9Q!E=*E[AC'Z`R:2(5J46&YP89-(\4(&^.H#.1Y='B*G%4D:75Y` M7.&_^13$Q$#Z.$@EEA8P4L-7%`+VSY\LJ\+*/GHO.W3(#N&`Z(*HXAAZ?WW: MO#Y\@-?^-0\(/AT_WCT:+35JHB"6ZXGM@::K3)(U[`"`DJ`4!OUPA?,*.`BJ MP?W'@-(O%%E%OJ(S9WDSZCL(ON[W-X@?C$_R,&T<"Z)'>$&BSCEEOS;K1P^+ M/LY+(<7;B=ZQQ[/9;)(F\X=S;O`1,?RA M-LHB&3.2;*81X,NZ&=S\/D:,^CR>;V"',\9#>F9Q:! M0W),M/!Z'"]^!C>IGA!G`<=/4>,W"#VAU%'9$TR2D6\1'J$M$CN`5D?T?GB$\_1>`ON'[/]O%RO+[#\]14NWOK\4)>2(><_;_BL6) M][_+Q=+R_-^S%%'D[[+RS3Z<`R3+T;HKK=X`*QW(%R"W72U6JJ4RVY/;$38W M-Y/0*\V!";_B7V$'\OEJ*5\M[_J`^_L@%DM;%=CDO_O[`N#DM,;2K:S*7F[) MKK&M@G7\S[8:B=-U\7I_G9WE\X_<^Z?^/6=`V8YZ<*X)A/"P7G1H3R4>B6[8 M$X*J(*ZP-$)E:43\YM5:\&:5NQZ>R/*HZ_$U5%:-4OW-&'5!C*G]"F1Z1-=> MPB7?R$$\4R6."NB97>JY/'>C0^K<>_Z;XKI>W8A#OYK5W8Y+_,A$F=5V,%K?OG/&$EN]9\6S\[8[WW+/O6 M==AY['49EXY&/\#%"I<;W61-7$T=*[BTW1XE*G4X$L_RL_ZGH?PU_BVNW1T. MRU25^.H`BJ%;W0'UWT/G^R6H)E<*'*$76=.'\LV974NFD\@^VTL3`9/+7F`A M<869>2WL5;@SPZS^$1O]%)LR9AMLHV8*%SJ%"PVX;+Y\4J&1W`RIL?6)Q$:+ M1.LM"6KF/;`U0;P$^ZSAF&U3^.Q8_,L0#AAH0+"IQ3X2P%Z!1#*K'J,3CG!B M^O[.OC^!V389Z)Z$[2OA0'P!HI,J5<1U!RF.QB:T!?_1,^Y]99N5_[2?B,>_[7Z7< M9/Z77W[_\5E*(I6(X[>?2(SF=L5JH3R12,21=@QZNXHVC=*($LLB2D$2L2%@ MN"E5=NE^&,-/'O@)2(^>Q',?R]>X\]%A4T&?XV<"/M8$68Q M6#LZ0W":%KQ@I\DW.YPAXM1456./MHD._.$*_U0-:_S1%OBQ9=;X5YZ(Q]SQ M7QK__@N._^7W_YZE),9_\+2*C_Y"RCIB%^PC^IE\%ZOA$)\@;BH."$;V1QOH.Y=9XU]](A[SQG^E4IH8_\OW/Y^G),9_XE!#>@S8 MKJ+UQF-``FL\#NQ4"Z4X#F!,W\KG8#/XSV*!XO;:N14X[#9[Q#0M\T#%!=MK M5BO9'<+;[Y+M];L(XLZ'$$3'T'TONKX?&)HIGFG=GB>^Y0W#R88;0>RV#1_C MQ,+UI7)P<"">4U4;&`P+&X?IC3?")I)<&>/#Q/G=$<.C1R(VL6\X;"*=E10& M4Z"9K&.4;V90'J:0ODD'!P%^AO];8;]G[)-W\1>,JO_MH6U9EF59EF59EF59 @EF59EF59EF59EF59EF59EF59EN5_NOP+N8VZ%@!X``#M ` end >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 Jul 7 13:19:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA28186 for freebsd-ports-outgoing; Tue, 7 Jul 1998 13:19:58 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA28180; Tue, 7 Jul 1998 13:19:56 -0700 (PDT) (envelope-from terry@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id NAA14850; Tue, 7 Jul 1998 13:17:33 -0700 (PDT) Received: from tlambert.whistle.com(207.76.205.208) via SMTP by alpo.whistle.com, id smtpd014842; Tue Jul 7 20:17:30 1998 Message-ID: <35A281E8.FCE@whistle.com> Date: Tue, 07 Jul 1998 13:15:36 -0700 From: Terry Lambert Organization: Whistle Communications X-Mailer: Mozilla 3.01Gold (Win95; I) MIME-Version: 1.0 To: John Polstra CC: obrien@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: gcc/g++ 2.8.1 port maintainers/modifiers References: <199807070245.TAA01057@austin.polstra.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org John Polstra wrote: > > > > vashon$ cat test.cc > > > > #include > > > > vashon$ gcc28 -c -H test.cc > > > > /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/typeinfo > > > > /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/include/exception Ah. Running it directly, instead of in a Makefile... Which of course is exactly the wrong way to try and find this problem, but it gave me the clue I needed. The brain damage is in bsd.prog.mk: ] .if defined(DESTDIR) ] CFLAGS+= -I${DESTDIR}/usr/include ] CXXFLAGS+= -I${DESTDIR}/usr/include/g++ ] .end Obviously, I have DESTDIR defined (in fact, it is required). The bug is that the DESTDIR is examined, incorrectly, for include path information. This is because there is no seperation between the idea of installed binaries vs. installed build environment components. Therefore, the includes are redirected into the install environment, instead of the build environment. Of course, bsd.lib.mk is brain-damaged the same way, as is the bsd.libnames.mk, technically. > > In any case, it shouldn't be in the top level include directory, and > > the g++ includes the one in /usr/include in preference to that one, > > even if it were being put in the right place (ie: in include instead > > of, minimally, in include/g++/typeinfo). > > I can't parse that. Please, don't try to explain it to me until > you've understood the rest of this mail. The include directory the ,mk files force is not dependent upon which gcc/g++ is being used; it's invariant. > Did you read the output from "gcc28 -H" that I sent in my last mail? Yes. It's not what I got from a build in a Makefile (see above for explanation). > > The port is broken... > > Whatever breakage you've demonstrated to this point is not in the > port, it's in your installation, or your methodology, or your > assumptions. Actually, it's in the port's inability to affect the DESTDIR redefinition of the include path based on whether the ports compiler or the default compiler is being used. This is either a bug in the port, or a bug in the bsd.*.mk files. Thanks for the help in tracking this down; now if we could only get it fixed in -current... -- Terry Lambert -- Whistle Communications, Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 15:47:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA14353 for freebsd-ports-outgoing; Tue, 7 Jul 1998 15:47:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from limbo.rtfm.net (nathan@38.nyack.fcc.net [204.141.125.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA14348 for ; Tue, 7 Jul 1998 15:47:43 -0700 (PDT) (envelope-from nathan@limbo.rtfm.net) Received: (from nathan@localhost) by limbo.rtfm.net (8.8.8/8.8.8) id SAA22538; Tue, 7 Jul 1998 18:45:10 -0400 (EDT) (envelope-from nathan) Message-ID: <19980707184510.A22502@rtfm.net> Date: Tue, 7 Jul 1998 18:45:10 -0400 From: Nathan Dorfman To: Joe Greco Cc: ports@FreeBSD.ORG Subject: Re: Patch breaks tripwire security paradigm References: <199807071632.MAA20346@limbo.rtfm.net> <199807071917.OAA02914@aurora.sol.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807071917.OAA02914@aurora.sol.net>; from Joe Greco on Tue, Jul 07, 1998 at 02:17:45PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jul 07, 1998 at 02:17:45PM -0500, Joe Greco wrote: > To make a long story short, it wasn't broken, those files are listed for > a reason, /root is already protected, and this patch substantially weakens > single-user security. It's Wrong. Kill it dead. You're right about sh -- it will read /.profile instead of /root/.profile when you're booting single-user. I just took down my machine to find out for myself, and was barely able to reconnect--lame ISP :>. Anyway, csh doesn't seem to execute any .cshrc or .login in single-user mode. Also, when in single-user mode, .rhosts and .forward probably don't mean all that much. As for .login, I didn't try and don't want to battle with PPP again. If csh won't read its startup files, I doubt it reads .logout... > ------------------------------------------------------------------------------- > Joe Greco - Systems Administrator jgreco@ns.sol.net > Solaria Public Access UNIX - Milwaukee, WI 414/342-4847 -- ________________ ___________________________________________ / Nathan Dorfman \ / "My problems start when the smarter bears / nathan@rtfm.net \/ and the dumber visitors intersect." / finger for PGP key \ Steve Thompson, Yosemite wildlife biologist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 16:25:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18763 for freebsd-ports-outgoing; Tue, 7 Jul 1998 16:25:48 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail-01.cdsnet.net (mail-01.cdsnet.net [206.107.16.35]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id QAA18750 for ; Tue, 7 Jul 1998 16:25:43 -0700 (PDT) (envelope-from mrcpu@internetcds.com) Received: (qmail 8161 invoked from network); 7 Jul 1998 23:25:43 -0000 Received: from schizo.cdsnet.net (204.118.244.32) by mail.cdsnet.net with SMTP; 7 Jul 1998 23:25:43 -0000 Date: Tue, 7 Jul 1998 16:25:43 -0700 (PDT) From: Jaye Mathisen X-Sender: mrcpu@schizo.cdsnet.net To: ports@FreeBSD.ORG Subject: Are the ports still being built regularly? 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 have been having more numerous than usual problems building ports recently, lots of compilation errors and such... IN any case, I'm trying to build tiff34, and I'm getting (cvsup today): uwb-01# make install >> Checksum OK for tiff-v3.4-tar.gz. ===> Installing for tiff-3.4 ===> tiff-3.4 depends on shared library: jpeg\.9\. - found = libtiff /usr/bin/ar rc libtiff34.a ar: no archive members specified usage: ar -d [-Tv] archive file ... ar -m [-Tv] archive file ... ar -m [-abiTv] position archive file ... ar -p [-Tv] archive [file ...] ar -q [-cTv] archive file ... ar -r [-cuTv] archive file ... ar -r [-abciuTv] position archive file ... ar -t [-Tv] archive [file ...] ar -x [-ouTv] archive [file ...] *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jul 7 18:30:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA01969 for freebsd-ports-outgoing; Tue, 7 Jul 1998 18:30:22 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA01948 for ; Tue, 7 Jul 1998 18:30:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA17606; Tue, 7 Jul 1998 18:30:02 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA01193; Tue, 7 Jul 1998 18:25:35 -0700 (PDT) (envelope-from nobody) Message-Id: <199807080125.SAA01193@hub.freebsd.org> Date: Tue, 7 Jul 1998 18:25:35 -0700 (PDT) From: taguchi@tohoku.iij.ad.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/7204: ja-expect bug Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7204 >Category: ports >Synopsis: ja-expect bug >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jul 7 18:30:01 PDT 1998 >Last-Modified: >Originator: Taguchi Takeshi >Organization: IIJ >Release: FreeBSD-STABLE >Environment: FreeBSD hirose.tohoku.iij.ad.jp 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Mon May 25 12:11:41 JST 1998 root@hirose.tohoku.iij.ad.jp:/usr/src/sys/compile/MEGURA i386 >Description: File pkgIndex.tcl which contained ja-expect-5.26 is incorrect. If this file is evaluated, then inperpriter will output following error messages: expected version number but got "5.26jp.0" >How-To-Repeat: (1) execute Japanized tcl interp. such as tclsh8.0jp # tclsh8.0jp (2) evaluate following command (equivalent to pkgIndex) on the interp. % package ifneeded Expect 5.26jp.0 [list load [file join /usr/local/lib libexpect526jp.so.1.2]] >Fix: 2nd arg for package command should be 5.26.0, not 5.26jp.0. please commit following patch. begin 644 ja-expect.fix-pkgIndexBug.patch.gz M'XL("`;)HC4"`VIA+65X<&5C="YF:7@M<&MG26YD97A"=6=MMO?_,#]+!J MKW>)$9VW9V9X9L9V5BO@DU`#?`YP&=<6R?K7P(J7&XRR)V\M@R?AZ7OK9QU$F+-\6I^Z*Q+1H(PL5[("X26+(ERLY5%X!ENT;XT M\3T"\T#J,+!Z6V[D8'R*)G`M0F/?A%8]09O.U%$Q7Z$C-QJR<'LH\A7:*].. M7!=RTQQ-%%,XL<'P`#Z`Y\<(/S?H01+85NQX:_B!8>10VEZR6]!/V&"('%AN MY&880_TJ<$".(-TX$TR]>>;\;;,OS2I3]QF&`9?B-P]%+&4F;9CMC2&(#K>VL,LW2B5`\/5/-T MI'?+>[,_KV_&ZB?*1AD87RKE=&-((IMAJ($J"P`]C MH-G*&Q#%N"NGMOV!.=%'YK?^3+MYU)CUPHIHFH/07X?6+H*?CNO"`F&1.&[\ M5,GY(#;:7(.J9\\4/FN**#6Y6R:FM++5P@#T^2?=N#GI9>546WBY)]H]'1C7 M2%D]JR1677(\D@\&)V:#J3941Z;^64GC'Y?9E+B\RP1[DX9]N=CP]0-XP^S/QOIE2O['3<*+YP3_)<;A25CD\"]Y0&( M;"<+`GUH)[>$-VX4OGVC!$Y@)ZI]N!F%?7SA9-#"_^=D%,Q/+X8@%2Y&BW6= M?:44^@#1,G2"&!AW_21W268LMA1,?4`'0E:&^1&;?##EUHZV'Q@+;?6&FF2/42;4E32/D'O-0%[ M\.C2O-+P6C8\LFCPW2?8-)%:+7/(R4!,,(?J6.D]/5$?W@5!-/Z_"'\#$R5M %O?D(``#P ` end >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 Jul 7 18:34:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA02655 for freebsd-ports-outgoing; Tue, 7 Jul 1998 18:34:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mailhost.iprg.nokia.com (mailhost.iprg.nokia.com [205.226.5.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA02631; Tue, 7 Jul 1998 18:34:36 -0700 (PDT) (envelope-from scott@iprg.nokia.com) Received: from melkor.iprg.nokia.com (melkor.iprg.nokia.com [205.226.1.82]) by mailhost.iprg.nokia.com (8.8.7/8.6.10) with SMTP id SAA22282; Tue, 7 Jul 1998 18:33:59 -0700 (PDT) Message-ID: <35A2CC86.773C2448@iprg.nokia.com> Date: Tue, 07 Jul 1998 18:33:58 -0700 From: Scott Sewall Organization: Nokia Communications X-Mailer: Mozilla 3.04Gold (X11; U; FreeBSD 2.2.6-RELEASE i386) MIME-Version: 1.0 To: jseger@FreeBSD.ORG CC: ports@FreeBSD.ORG Subject: FreeBSD Port: tclX-8.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 I'm trying to make a tclX-8.0.2 package from the sources, but it fails because it can't find some man pages. Any ideas? Thanks! -- Scott melkor# make package |& tee package >> Checksum OK for tclX8.0.2.tar.gz. ===> Building package for tclX-8.0.2 tar: can't add file man/man3/TclCommandWriting.3.gz : No such file or directory tar: can't add file man/man3/TclX_Main.3.gz : No such file or directory tar: can't add file man/man3/Tcl_HandleAlloc.3.gz : No such file or directory tar: can't add file man/man3/Tcl_HandleFree.3.gz : No such file or directory tar: can't add file man/man3/Tcl_HandleTblInit.3.gz : No such file or directory tar: can't add file man/man3/Tcl_HandleTblRelease.3.gz : No such file or directory tar: can't add file man/man3/Tcl_HandleTblUseCount.3.gz : No such file or directory tar: can't add file man/man3/Tcl_HandleWalk.3.gz : No such file or directory tar: can't add file man/man3/Tcl_HandleXlate.3.gz : No such file or directory tar: can't add file man/man3/Tclx_Init.3.gz : No such file or directory tar: can't add file man/man3/Tclxcmd_Init.3.gz : No such file or directory tar: can't add file man/man3/TkX_Main.3.gz : No such file or directory tar: can't add file man/man3/Tkx_Init.3.gz : No such file or directory tar: can't add file man/mann/Tcl_DisplayMemory.n.gz : No such file or directory tar: can't add file man/mann/Tcl_InitMemory.n.gz : No such file or directory tar: can't add file man/mann/Tcl_ValidateAllMemory.n.gz : No such file or directory tar: can't add file man/mann/ckalloc.n.gz : No such file or directory tar: can't add file man/mann/ckfree.n.gz : No such file or directory tar: can't add file man/mann/memory.n.gz : No such file or directory Creating package /usr/ports/packages/All/tclX-8.0.2.tgz Registering depends: tcl-8.0.2 tk-8.0.2. Creating gzip'd tar ball in '/usr/ports/packages/All/tclX-8.0.2.tgz' *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. melkor# To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 02:09:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA01099 for freebsd-ports-outgoing; Wed, 8 Jul 1998 02:09:06 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from btp1da.phy.uni-bayreuth.de (btp1da.phy.uni-bayreuth.de [132.180.20.32]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA01082 for ; Wed, 8 Jul 1998 02:09:01 -0700 (PDT) (envelope-from werner@btp1da.phy.uni-bayreuth.de) Received: (from werner@localhost) by btp1da.phy.uni-bayreuth.de (8.8.8/8.7.3) id JAA14554 for ports@FreeBSD.org; Wed, 8 Jul 1998 09:58:17 +0200 (MEST) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 08 Jul 1998 09:58:17 +0200 (MEST) Organization: university of bayreuth From: Werner Griessl To: ports@FreeBSD.ORG Subject: blas Makefile broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ---------------------------------- E-Mail: Werner Griessl Date: 08-Jul-98 Time: 09:39:38 This message was sent by XFMail ---------------------------------- ports/math/blas/Makefile line 12 needs a backslash . Werner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 02:18:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA04458 for freebsd-ports-outgoing; Wed, 8 Jul 1998 02:18:32 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA04325 for ; Wed, 8 Jul 1998 02:18:13 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id IAA19195 for ; Wed, 8 Jul 1998 08:18:37 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id IAA12229; Wed, 8 Jul 1998 08:18:35 +0200 (CEST) To: ports@FreeBSD.ORG Subject: [comp.unix.bsd.netbsd.announce] Changes to packages collection in June 1998. From: Thomas Gellekum Date: 08 Jul 1998 08:18:33 +0200 Message-ID: <87lnq450hy.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 37 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Moin, anyone want to look at this? tg ------- Start of forwarded message ------- From: Alistair Crooks Newsgroups: comp.unix.bsd.netbsd.announce Subject: Changes to packages collection in June 1998. Date: Sun, 05 Jul 1998 00:50:48 -0700 Organization: Bay Area Internet Solutions (408) 260-5000 Message-ID: <6ntnc8$oqt$1@news.bayarea.net> Changes to NetBSD packages collection in June 1998. =================================================== Add support for CONFLICTS entry to pkgsrc/mk/bsd.pkg.mk and implemented -C switch in pkg_create to deal @pkgcfl entries. This way one can define a list of other packages a specific package conflicts with (e.g. install identical set of files). [frueauf 1998-06-05] Add USE_MOTIF to bsd.pkg.mk, and use it in the packages which use Motif - this checks for a Motif installation, and, if not available, will install Lesstif. Delete HAVE_MOTIF, MOTIF_STATIC, REQUIRES_MOTIF and MOTIF_ONLY. [agc 1998-06-09] Added automatic manual page handling to bsd.pkg.mk, backwards- compatible with the current practice of using MANx and CATx definitions in the package Makefile. The new way finds the manual pages by scanning the PLIST. [agc 1998-06-18] ------- End of forwarded message ------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 02:20:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA05267 for freebsd-ports-outgoing; Wed, 8 Jul 1998 02:20:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA05236 for ; Wed, 8 Jul 1998 02:20:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA01964; Wed, 8 Jul 1998 02:20:01 -0700 (PDT) Received: from mf00.iij.ad.jp (root@mf00.iij.ad.jp [202.232.2.11]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA03155 for ; Wed, 8 Jul 1998 02:16:05 -0700 (PDT) (envelope-from nobu@gallup.rd.isac.co.jp) Received: from dokuro.isac.co.jp (dokuro.isac.co.jp [192.47.123.3]) by mf00.iij.ad.jp (8.8.8/MFI1.0) with SMTP id NAA18613 for ; Wed, 8 Jul 1998 13:15:07 +0900 (JST) Received: from mailgw1.psrc.isac.co.jp ([192.47.120.49]) by dokuro.isac.co.jp (8.6.12+2.4W/IIJ-I1.0/dokuro-1.0) with ESMTP id NAA06144; Wed, 8 Jul 1998 13:07:35 +0900 Received: from rd.isac.co.jp ([192.47.125.162]) by mailgw1.psrc.isac.co.jp (8.8.7/3.6W) with ESMTP id NAA12969 for ; Wed, 8 Jul 1998 13:11:31 +0900 (JST) Received: from gallup.rd.isac.co.jp (gallup.rd.isac.co.jp [192.47.125.164]) by rd.isac.co.jp (8.8.5/8.8.5) with ESMTP id NAA16474 for ; Wed, 8 Jul 1998 13:15:01 +0900 (JST) Received: (from nobu@localhost) by gallup.rd.isac.co.jp (8.8.8/8.8.8) id LAA03991; Wed, 8 Jul 1998 11:25:55 +0900 (JST) (envelope-from nobu) Message-Id: <199807080225.LAA03991@gallup.rd.isac.co.jp> Date: Wed, 8 Jul 1998 11:25:55 +0900 (JST) From: nobu@psrc.isac.co.jp Reply-To: nobu@psrc.isac.co.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7205: Update ports/japanese/less with newer pathes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7205 >Category: ports >Synopsis: Update ports/japanese/less with newer pathes >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 Jul 8 02:20:01 PDT 1998 >Last-Modified: >Originator: Nobuhiro Yasutomi >Organization: ISAC, Inc. >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: FreeBSD gallup.rd.isac.co.jp 2.2.6-RELEASE FreeBSD 2.2.6-RELEASE #0: Mon Jun 15 18:08:16 JST 1998 nobu@gallup.rd.isac.co.jp:/usr/src/sys/compile/GALLUP i386 >Description: for ports/japanese/less. Changing PATCH_SITE and using newer version of patches. Please apply patch in this send-pr. >How-To-Repeat: >Fix: diff -ur japanese/less.orig/Makefile japanese/less/Makefile --- japanese/less.orig/Makefile Fri Jan 23 20:18:17 1998 +++ japanese/less/Makefile Wed Jul 8 11:04:52 1998 @@ -11,10 +11,13 @@ CATEGORIES= japanese MASTER_SITES= ${MASTER_SITE_GNU} -PATCH_SITES= ftp://ftp.aist-nara.ac.jp/pub/misc/less/ -PATCHFILES= less-332-iso221.patch.gz \ - less-332-iso221-222.patch.gz \ - less-332-iso222-224.patch.gz +PATCH_SITES= ftp://ftp.tokyonet.ad.jp/pub/misc/less/ +PATCHFILES= less-332-iso233.patch.gz \ + less-332-iso233-235.patch.gz \ + less-332-iso235-237.patch.gz \ + less-332-iso237-238.patch.gz \ + less-332-iso238-240.patch.gz \ + PATCH_DIST_STRIP= -p1 MAINTAINER= nobu@psrc.isac.co.jp diff -ur japanese/less.orig/files/md5 japanese/less/files/md5 --- japanese/less.orig/files/md5 Fri Jan 23 20:18:17 1998 +++ japanese/less/files/md5 Wed Jul 8 10:55:34 1998 @@ -1,4 +1,6 @@ MD5 (less-332.tar.gz) = be6b85092fa00c030119a0b12a1e8c44 -MD5 (less-332-iso221.patch.gz) = 699b5c99a6887b762d3521a865b30997 -MD5 (less-332-iso221-222.patch.gz) = 33e6aced92249c78f5691a1b954097ee -MD5 (less-332-iso222-224.patch.gz) = 768b6c99fc993fef0af4fb0d52662f5e +MD5 (less-332-iso233.patch.gz) = 5a7a01ff5118edc616dd05a8cdd2de6c +MD5 (less-332-iso233-235.patch.gz) = 8a40f7fe1ca4104734714cbe18194b87 +MD5 (less-332-iso235-237.patch.gz) = f845015f29c171496d8e46b5a705daf9 +MD5 (less-332-iso237-238.patch.gz) = f2e41efd6797a3bcc291bf35c63f873c +MD5 (less-332-iso238-240.patch.gz) = 12b4099de6668353913ab6ab04640caa >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 Jul 8 02:26:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA07522 for freebsd-ports-outgoing; Wed, 8 Jul 1998 02:26:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA07450; Wed, 8 Jul 1998 02:26:19 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.8.8/8.8.8) with ESMTP id WAA10805; Tue, 7 Jul 1998 22:45:08 -0700 (PDT) (envelope-from jdp) Message-Id: <199807080545.WAA10805@austin.polstra.com> To: Terry Lambert cc: obrien@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: gcc/g++ 2.8.1 port maintainers/modifiers In-reply-to: Your message of "Tue, 07 Jul 1998 13:15:36 PDT." <35A281E8.FCE@whistle.com> Date: Tue, 07 Jul 1998 22:45:08 -0700 From: John Polstra Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The brain damage is in bsd.prog.mk: > > ] .if defined(DESTDIR) > ] CFLAGS+= -I${DESTDIR}/usr/include > ] CXXFLAGS+= -I${DESTDIR}/usr/include/g++ > ] .end > > > Obviously, I have DESTDIR defined (in fact, it is required). Aha. Well, I'm glad you figured out the problem. > The bug is that the DESTDIR is examined, incorrectly, for > include path information. This is because there is no > seperation between the idea of installed binaries vs. > installed build environment components. > > Therefore, the includes are redirected into the install > environment, instead of the build environment. Yes, various things have been tried. The top-level Makefile and bsd.*.mk files are more of an art than a science. The current scheme was a big step forward from what we had before. It made it possible to build -current on a -stable system, for instance. But I don't think anybody would argue that it's perfect. John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 02:30:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA09334 for freebsd-ports-outgoing; Wed, 8 Jul 1998 02:30:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA09185 for ; Wed, 8 Jul 1998 02:30:25 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02145; Wed, 8 Jul 1998 02:30:02 -0700 (PDT) Received: from rodan.misc.hit-u.ac.jp (rodan.misc.hit-u.ac.jp [133.46.141.160]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA05913 for ; Wed, 8 Jul 1998 02:22:14 -0700 (PDT) (envelope-from mega@rodan.misc.hit-u.ac.jp) Received: (from mega@localhost) by rodan.misc.hit-u.ac.jp (8.8.8/3.6W) id SAA12326; Wed, 8 Jul 1998 18:22:00 +0900 (JST) Message-Id: <199807080922.SAA12326@rodan.misc.hit-u.ac.jp> Date: Wed, 8 Jul 1998 18:22:00 +0900 (JST) From: mega@rodan.misc.hit-u.ac.jp Reply-To: mega@rodan.misc.hit-u.ac.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7206: new ports collection: ja-libslang Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7206 >Category: ports >Synopsis: new ports collection: ja-libslang >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 Jul 8 02:30:01 PDT 1998 >Last-Modified: >Originator: Takashi Mega >Organization: Hitotsubashi University in Japan >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: >Description: >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: Hello! I would like to contribute a new ports collection named `ja-libslang' (ftp://ftp.freebsd.org/incoming/ja-libslang-1.2.2.tar.gz). S-Lang is a language and library for programmers and used by slrn, mutt and etc. Please check it. Takashi Mega To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 02:30:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA09336 for freebsd-ports-outgoing; Wed, 8 Jul 1998 02:30:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA09204 for ; Wed, 8 Jul 1998 02:30:27 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02165; Wed, 8 Jul 1998 02:30:03 -0700 (PDT) Received: from rimmer.bogon.net (0@rimmer.bogon.net [205.219.75.107]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA07067 for ; Wed, 8 Jul 1998 02:25:21 -0700 (PDT) (envelope-from wes@rimmer.bogon.net) Received: (from wes@localhost) by rimmer.bogon.net (8.8.8/8.8.8) id UAA04570; Wed, 8 Jul 1998 20:24:55 -0700 (PDT) (envelope-from wes) Message-Id: <199807090324.UAA04570@rimmer.bogon.net> Date: Wed, 8 Jul 1998 20:24:55 -0700 (PDT) From: wes@bogon.net Reply-To: wes@bogon.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7208: INN port doesn't grok TCL 8.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7208 >Category: ports >Synopsis: INN port w/TCL enabled doesn't install TCL8.0 and doesn't use 8.1 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 8 02:30:03 PDT 1998 >Last-Modified: >Originator: Wes Santee >Organization: N/A >Release: FreeBSD 2.2.6-STABLE i386 >Environment: FreeBSD rimmer.bogon.net 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Mon Jul 6 02:16:24 PDT 1998 root@rimmer.bogon.net:/usr/src/sys/compile/RIMMER i386 >Description: Setting USE_TCL= DO in /usr/ports/news/inn/Makefile and trying to build will fail if the machine has TCL8.1, but not TCL8.0 installed. The build process uses the flag -I/usr/local/include/tcl8.0 >How-To-Repeat: 1) Uninstall TCL8.0 (if installed) 2) Install TCL8.1 3) Set USE_TCL= DO in the above listed Makefile 4) make >Fix: Either: 1) Update port so it will use TCL8.1 if installed. -or- 2) If TCL8.0 is required, make it a dependency if USE_TCL= DO in the Makefile since user may think they have met the requirements by having TCL8.1 installed already. >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 Jul 8 02:30:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA09418 for freebsd-ports-outgoing; Wed, 8 Jul 1998 02:30:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA09187 for ; Wed, 8 Jul 1998 02:30:25 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02154; Wed, 8 Jul 1998 02:30:03 -0700 (PDT) Received: from rodan.misc.hit-u.ac.jp (rodan.misc.hit-u.ac.jp [133.46.141.160]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA06868 for ; Wed, 8 Jul 1998 02:24:50 -0700 (PDT) (envelope-from mega@rodan.misc.hit-u.ac.jp) Received: (from mega@localhost) by rodan.misc.hit-u.ac.jp (8.8.8/3.6W) id SAA12448; Wed, 8 Jul 1998 18:24:42 +0900 (JST) Message-Id: <199807080924.SAA12448@rodan.misc.hit-u.ac.jp> Date: Wed, 8 Jul 1998 18:24:42 +0900 (JST) From: mega@rodan.misc.hit-u.ac.jp Reply-To: mega@rodan.misc.hit-u.ac.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7207: New ports collection: ja-slrn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7207 >Category: ports >Synopsis: New ports collection: ja-slrn >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 Jul 8 02:30:02 PDT 1998 >Last-Modified: >Originator: Takashi Mega >Organization: Hitotsubashi University in Japan. >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: >Description: >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: Hello! I would like to contribute a new ports collection named `ja-slrn' (ftp://ftp.freebsd.org/incoming/ja-slrn-0.9.5.2.tar.gz). Slrn is a nntp client using S-Lang. Please check it. Takashi Mega To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 02:33:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA10262 for freebsd-ports-outgoing; Wed, 8 Jul 1998 02:33:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA10093; Wed, 8 Jul 1998 02:32:35 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA00488; Wed, 8 Jul 1998 01:24:54 -0700 (PDT) Date: Wed, 8 Jul 1998 01:24:54 -0700 (PDT) Message-Id: <199807080824.BAA00488@freefall.freebsd.org> To: ports@FreeBSD.ORG Subject: Dependencies when doing a make install ... Cc: jkoshy@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, A question about the current ports framework: Why does `make install' try to register dependencies in /usr/ports/*? Shouldn't it try to update stuff in /var/db/pkg/* instead, or am I missing something obvious? Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 02:57:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA17632 for freebsd-ports-outgoing; Wed, 8 Jul 1998 02:57:40 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from tunnel.cal.shaw.wave.ca (tunnel.cal.shaw.wave.ca [139.142.2.203]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA17627 for ; Wed, 8 Jul 1998 02:57:39 -0700 (PDT) (envelope-from pierced@geocities.com) Received: from shane ([24.64.104.186]) by tunnel.cal.shaw.wave.ca (Netscape Messaging Server 3.0) with SMTP id AAA2098 for ; Tue, 7 Jul 1998 19:15:19 -0600 Reply-To: From: "Shane Brothen" To: Subject: DHCP Client Date: Tue, 7 Jul 1998 19:05:09 -0600 Message-ID: <000201bdaa0d$53563fa0$02000003@shane.wave.shaw.ca> 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 V4.72.3110.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I've decided to switch from NT to FreeBSD for more speed and less problems. Now I already re-partitioned the hard disk and then found out I could notdirectly install from the net because my service provider needs DHCP, so, I can for sure get it all up and running but when I do I need it to use DHCP, is there something I can use for DHCP? ..Shane To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 03:03:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA18870 for freebsd-ports-outgoing; Wed, 8 Jul 1998 03:03:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from copland.udel.edu (copland.udel.edu [128.175.13.92]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA18845 for ; Wed, 8 Jul 1998 03:03:39 -0700 (PDT) (envelope-from jalexand@wlgore.com) Received: from wlgore.com (ppp-as17-2.nss.udel.edu [128.175.145.38]) by copland.udel.edu (8.8.8/8.8.8) with ESMTP id CAA02958 for ; Wed, 8 Jul 1998 02:40:27 -0400 (EDT) Message-Id: <199807080640.CAA02958@copland.udel.edu> To: freebsd-ports@FreeBSD.ORG Subject: Mozilla Questions Organization: Mos Eisley Candy Store Reply-To: darkstar@UDel.Edu Date: Wed, 08 Jul 1998 02:41:39 -0400 From: Jerry Alexandratos Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just compiled mozilla from the port and I've run into some snags. First, now that things in /usr/lib have been changed around, shouldn't there be some patches and LD_LIBRARY_PATH point to /usr/lib/aout? I'm just curious about this. Second, has anyone had problems if using Lesstif 0.85? Everytime I try to use the bookmarks, mozilla crashes on me. Third, should I be using the port or the cvs-mozilla port? Is there a difference? Is the cvs stuff still being worked on? Thanks in advance for satisfying my curiosity. --Jerry 8) name: Jerry Alexandratos % - % "Nothing inhabits my (8 8) email: jalexand@wlgore.com % - % thoughts, and oblivion (8 8) phone: 410.506.7544 % - % drives my desires." (8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 03:07:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA20308 for freebsd-ports-outgoing; Wed, 8 Jul 1998 03:07:52 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from bastuba.partitur.se (bastuba.partitur.se [193.219.246.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA20285 for ; Wed, 8 Jul 1998 03:07:47 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from solist. (solist.partitur.se [193.219.246.204]) by bastuba.partitur.se (8.8.8/8.8.8) with SMTP id MAA02735; Wed, 8 Jul 1998 12:07:43 +0200 (CEST) (envelope-from girgen@partitur.se) Received: from partitur.se by solist. (SMI-8.6/SMI-SVR4) id MAA27483; Wed, 8 Jul 1998 12:06:19 +0200 Message-ID: <35A3449B.9C04FEAD@partitur.se> Date: Wed, 08 Jul 1998 12:06:19 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.05 [en] (X11; I; SunOS 5.6 sun4u) MIME-Version: 1.0 To: thivars@est.is CC: "Daniel O'Connor" , freebsd-ports@FreeBSD.ORG Subject: Re: international kerberos 5? References: <199807070616.PAA21870@cain.gsoft.com.au> <35A20DD9.261B8EDC@est.is> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id DAA20300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Þórður Ívarsson wrote: > > Daniel O'Connor wrote: > > > > > Not very surprisingly, I'm not allowed to obtain the source from outside > > > the US: > > > > > > If you are not a US resident, then you cannot obtain > > > Kerberos V source from a server within the United > > > States. You will have to find the source elsewhere, > > > and put them in /usr/ports/distfiles/krb5. > > > > > > Just curious; are there any international versions of Kerberos V ? > > Well, there is a copy on a UK site, but I have absolutly no idea if its legal.. > > Its here ftp://ftp.ox.ac.uk/pub/comp/security/software/Kerberos5/ > > > Try ftpsearc at http://ftpsearch.ntnu.no, it gives good result! > > thivars@est.is Thanks! Anybody knows how well ports will work with krb5, comared to krb4? Is there a lot to change in the applications. (I'll do my homework, i.e. rtfm, but I'm just curious about your experience). /Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 04:29:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA08906 for freebsd-ports-outgoing; Wed, 8 Jul 1998 04:29:34 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA08789; Wed, 8 Jul 1998 04:29:03 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA02089; Wed, 8 Jul 1998 04:28:57 -0700 (PDT) Date: Wed, 8 Jul 1998 04:28:57 -0700 (PDT) Message-Id: <199807081128.EAA02089@freefall.freebsd.org> To: ports@FreeBSD.ORG Subject: A peculiar port; advice requested ... Cc: jkoshy@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm trying to make a port of Standard ML/NJ (an ML implementation from Bell labs). This is a somewhat unusual port, so I'd like to ask the list for suggestions on how to tackle the porting process. Names of ports which handle similar issues will do fine! Quirks: 1. While the official master site uses a ".tar.Z" suffix for most files, some of the mirrors use ".tar.gz" instead. Any nice way of handling this in the ports framework (short of writing scripts for the entire fetch process that is)? 2. The install process involves a recompilation of (a) the runtime system and (b) the SML/NJ standard libraries. The default installation process expects to do this `in-place' in the final installation directory tree. I'm somehow not comfortable with a compilation under /usr/local as part of `make'; however is it acceptable? Does any other port do anything similar? 3. Is creating a new hierarchy root say "${PREFIX}/sml-nj" ok? The default installation expects "bin", "bin.${ARCH}", "lib" etc. under this `ROOT'. Changing the installation to confirm to a more conventional "/usr/local/*/" structure would make a FreeBSD SML/NJ installation different from the other unix installations. Do we have a strict policy on directory hierarchies? Thanks, Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 04:41:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA11794 for freebsd-ports-outgoing; Wed, 8 Jul 1998 04:41:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA11759; Wed, 8 Jul 1998 04:41:22 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id NAA19636; Wed, 8 Jul 1998 13:41:06 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id NAA05276; Wed, 8 Jul 1998 13:41:05 +0200 (CEST) To: Joseph Koshy Cc: ports@FreeBSD.ORG Subject: Re: Dependencies when doing a make install ... References: <199807080824.BAA00488@freefall.freebsd.org> From: Thomas Gellekum Date: 08 Jul 1998 13:41:04 +0200 In-Reply-To: Joseph Koshy's message of "Wed, 08 Jul 1998 01:24:54 -0700 (PDT)" Message-ID: <87g1gc4lkf.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 7 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Joseph Koshy writes: > Why does `make install' try to register dependencies in /usr/ports/*? What makes you think it does? tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 05:03:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14982 for freebsd-ports-outgoing; Wed, 8 Jul 1998 05:03:40 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jkoshy@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14974; Wed, 8 Jul 1998 05:03:36 -0700 (PDT) (envelope-from jkoshy) Date: Wed, 8 Jul 1998 05:03:36 -0700 (PDT) From: Joseph Koshy Message-Id: <199807081203.FAA14974@hub.freebsd.org> To: tg@ihf.rwth-aachen.de Subject: Re: Dependencies when doing a make install ... Cc: jkoshy, ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Joseph Koshy writes: > > > Why does `make install' try to register dependencies in /usr/ports/*? > > What makes you think it does? > > tg Take a port with a LIB_DEPENDS dependency (eg:- xaos, which depends on `png'). $ lcvs co xaos $ cd xaos; make ... [snip] ... # make install ... [snip] ... ===> Registering installation for xaos-3.0 Warning: "/usr/ports/graphics/png" non-existent -- @pkgdep registration incomplete I do have the `png' package installed: # pkg_info -aI | grep png png-1.0.1 Library for manipulating PNG images. And sure enough, the files in /var/db/pkg/png/ don't get updated correctly to record the dependency of `xaos' on the PNG library. Note: bsd.port.mk on -stable post 2.2.6 Am I missing something? Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 05:40:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA20865 for freebsd-ports-outgoing; Wed, 8 Jul 1998 05:40:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA20796 for ; Wed, 8 Jul 1998 05:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA04724; Wed, 8 Jul 1998 05:40:01 -0700 (PDT) Received: from phmit.demon.co.uk (phmit.demon.co.uk [194.222.15.209]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id FAA20357 for ; Wed, 8 Jul 1998 05:35:35 -0700 (PDT) (envelope-from dom@phmit.demon.co.uk) Received: from voodoo.pandhm.co.uk [192.15.143.228] by phmit.demon.co.uk with esmtp (Exim 1.82 #1) id 0yttRp-00070m-00; Wed, 8 Jul 1998 13:35:45 +0100 Received: from dom by voodoo.pandhm.co.uk with local (Exim 1.92 #1) for FreeBSD-gnats-submit@freebsd.org id 0yttRh-0003cj-00; Wed, 8 Jul 1998 13:35:37 +0100 Message-Id: Date: Wed, 8 Jul 1998 13:35:38 +0100 From: Dom Mitchell Reply-To: dom@phmit.demon.co.uk To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7212: XFree86 (internat) port fails to install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7212 >Category: ports >Synopsis: XFree86 (internat) port fails to install >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 Jul 8 05:40:01 PDT 1998 >Last-Modified: >Originator: Dom Mitchell >Organization: Palmer & Harvey McLane Ltd. >Release: FreeBSD 2.2.6-STABLE i386 >Environment: FreeBSD voodoo.pandhm.co.uk 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Thu Jul 2 21:21:10 BST 1998 root@voodoo.pandhm.co.uk:/usr/src/sys/compile/VOODOO i386 >Description: The port of XFree86-3.3.2 (international version) calls on a file called Wraphelp.c, which is summoned by fetch. Unfortunately, fetch seems to insist on transferring the file in binary mode instead of ascii, with the end result that the file has all it's lines ending in \r\n instead of \n. This breaks the install process, as the file can't be compiled. >How-To-Repeat: cd /usr/ports/x11/XFree86; make; make install >Fix: Add these lines to the bottom of the ports Makefile: (UNTESTED) post-fetch: sed -e 's/ $//' ${DISTDIR}/xc/Wraphelp.c > ${DISTDIR}/xc/foo mv ${DISTDIR}/xc/foo ${DISTDIR}/xc/Wraphelp.c >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 Jul 8 07:38:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA08051 for freebsd-ports-outgoing; Wed, 8 Jul 1998 07:38:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.promo.de (mail.Promo.DE [194.45.188.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07975; Wed, 8 Jul 1998 07:38:10 -0700 (PDT) (envelope-from stefan@promo.de) Received: from d254.promo.de (d254.Promo.DE [194.45.188.254]) by mail.promo.de (8.8.8/8.8.8) with SMTP id QAA25376; Wed, 8 Jul 1998 16:34:36 +0200 (CEST) Date: Wed, 08 Jul 1998 16:37:01 +0200 From: Stefan Bethke To: Joseph Koshy cc: ports@FreeBSD.ORG Subject: Re: A peculiar port; advice requested ... Message-ID: <1075713.3108904621@d254.promo.de> In-Reply-To: <199807081128.EAA02089@freefall.freebsd.org> X-Mailer: Mulberry Demo (MacOS) [1.4.0a6, s/n Evaluation] X-Licensed-To: Unlicensed - for evaluation only 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 On 08.07.1998 4:28 Uhr -0700 Joseph Koshy wrote: > Quirks: > > 1. While the official master site uses a ".tar.Z" suffix for most files, > some of the mirrors use ".tar.gz" instead. > > Any nice way of handling this in the ports framework (short of writing > scripts for the entire fetch process that is)? Check if the master site is a decent server: wuftpd usually supports on-the-fly conversion. Just try to fetch .tar.gz. Stefan -- Stefan Bethke Promo Datentechnik | Tel. +49-40-851744-18 + Systemberatung GmbH | Fax. +49-40-851744-44 Eduardstrasse 46-48 | e-mail: stefan@Promo.DE D-20257 Hamburg | http://www.Promo.DE/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 07:48:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA09092 for freebsd-ports-outgoing; Wed, 8 Jul 1998 07:48:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA09035; Wed, 8 Jul 1998 07:48:19 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id QAA19904; Wed, 8 Jul 1998 16:34:03 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id QAA05630; Wed, 8 Jul 1998 16:34:02 +0200 (CEST) To: Joseph Koshy Cc: jkoshy@hub.freebsd.org, ports@FreeBSD.ORG Subject: Re: Dependencies when doing a make install ... References: <199807081203.FAA14974@hub.freebsd.org> From: Thomas Gellekum Date: 08 Jul 1998 16:33:58 +0200 In-Reply-To: Joseph Koshy's message of "Wed, 08 Jul 1998 05:03:36 -0700 (PDT)" Message-ID: <87emvw4dk9.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 44 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Joseph Koshy writes: > Take a port with a LIB_DEPENDS dependency (eg:- xaos, which depends on `png'). > > $ lcvs co xaos > $ cd xaos; make ... [snip] ... > > # make install > ... [snip] ... > ===> Registering installation for xaos-3.0 > Warning: "/usr/ports/graphics/png" non-existent -- @pkgdep registration incomplete > > I do have the `png' package installed: > > # pkg_info -aI | grep png > png-1.0.1 Library for manipulating PNG images. > > And sure enough, the files in /var/db/pkg/png/ don't get updated correctly > to record the dependency of `xaos' on the PNG library. > > Note: bsd.port.mk on -stable post 2.2.6 > > Am I missing something? Yes and no. The dependency registration works somewhat different in pkg_add/pkg_delete and bsd.ports.mk. bsd.ports.mk builds a list of dependencies (and dependencies' dependencies (and dep... ;-) )) from the ports' makefiles (second part of the *_DEPENDS line); check the package-depends target for that. It assumes a complete ports tree to _generate_ the @pkgdep lines for a package. pkg_add just uses those lines to add the dependencies into /var/db/pkg/.../+REQUIRED_BY, so it gets by without a ports tree. This is actually a missing feature in our ports. They don't have an understanding of an upgrade path, or a check which versions of a port work with specific versions of a dependent port. Currently, we don't have the ability to say ``xaos-3.0 works with png-1.0.0, png-1.0.1, png-1.1.0 and png-2.0.0'', and then use what's already there instead of looking for the latest and greatest. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 08:02:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11144 for freebsd-ports-outgoing; Wed, 8 Jul 1998 08:02:18 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from joshua.enteract.com (joshua.enteract.com [207.229.129.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA11125 for ; Wed, 8 Jul 1998 08:02:15 -0700 (PDT) (envelope-from djhoward@joshua.enteract.com) Received: (qmail 19954 invoked by uid 1032); 8 Jul 1998 15:02:13 -0000 Message-ID: <19980708100213.D18868@enteract.com> Date: Wed, 8 Jul 1998 10:02:13 -0500 From: dannyman To: pierced@geocities.com, ports@FreeBSD.ORG Subject: Re: DHCP Client Mail-Followup-To: pierced@geocities.com, ports@FreeBSD.ORG References: <000201bdaa0d$53563fa0$02000003@shane.wave.shaw.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <000201bdaa0d$53563fa0$02000003@shane.wave.shaw.ca>; from Shane Brothen on Tue, Jul 07, 1998 at 07:05:09PM -0600 X-Loop: djhoward@uiuc.edu X-URL: http://www.dannyland.org/~dannyman/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jul 07, 1998 at 07:05:09PM -0600, Shane Brothen wrote: > Hello, I've decided to switch from NT to FreeBSD for more speed and less > problems. Now I already re-partitioned the hard disk and then found out I > could notdirectly install from the net because my service provider needs > DHCP, so, I can for sure get it all up and running but when I do I need it > to use DHCP, is there something I can use for DHCP? Yes. Check out http://www.freebsd.org/ports/, choose your poison, and then stick it in /etc/start_if.??? - where ??? is your NIC device. -danny -- // dannyman yori aiokomete || Our Honored Symbol deserves \\/ http://www.dannyland.org/~dannyman/ || an Honorable Retirement (UIUC) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 11:50:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA10952 for freebsd-ports-outgoing; Wed, 8 Jul 1998 11:50:13 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10928 for ; Wed, 8 Jul 1998 11:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA15242; Wed, 8 Jul 1998 11:50:02 -0700 (PDT) Received: from myrddin.demon.co.uk (exim@myrddin.demon.co.uk [158.152.54.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10540 for ; Wed, 8 Jul 1998 11:46:50 -0700 (PDT) (envelope-from dom@myrddin.demon.co.uk) Received: from dom by myrddin.demon.co.uk with local (Exim 1.92 #1) id 0ytzEJ-0001cl-00; Wed, 8 Jul 1998 19:46:11 +0100 Message-Id: Date: Wed, 8 Jul 1998 19:46:11 +0100 From: Dom Mitchell Reply-To: dom@myrddin.demon.co.uk To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7216: new port of pcre-1.09 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7216 >Category: ports >Synopsis: new port of pcre-1.09 >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 Jul 8 11:50:01 PDT 1998 >Last-Modified: >Originator: Dom Mitchell >Organization: Big orange angry things, inc. >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD myrddin.demon.co.uk 3.0-CURRENT FreeBSD 3.0-CURRENT #3: Sun Jul 5 15:50:59 BST 1998 root@myrddin.demon.co.uk:/usr/src/sys/compile/MYRDDIN i386 >Description: pcre is Perl Compatible Regular expressino library which may well be useful to some developers. It's quite small, as well. It is used inside the exim mailer. >How-To-Repeat: make, make install >Fix: Apply this port: # 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: # # pcre # pcre/pkg # pcre/pkg/COMMENT # pcre/pkg/DESCR # pcre/pkg/PLIST # pcre/files # pcre/files/md5 # pcre/Makefile # echo c - pcre mkdir -p pcre > /dev/null 2>&1 echo c - pcre/pkg mkdir -p pcre/pkg > /dev/null 2>&1 echo x - pcre/pkg/COMMENT sed 's/^X//' >pcre/pkg/COMMENT << 'END-of-pcre/pkg/COMMENT' XPerl Compatible Regular Expressions library. END-of-pcre/pkg/COMMENT echo x - pcre/pkg/DESCR sed 's/^X//' >pcre/pkg/DESCR << 'END-of-pcre/pkg/DESCR' XPCRE is a Perl compatible library of regular expressions. They Xare based on a completely seperate code-base from Henry Spencers Xoriginals. It has been designed to make efficient use of memory Xfor compiled regex's. X XOriginal Author: Phil Hazel END-of-pcre/pkg/DESCR echo x - pcre/pkg/PLIST sed 's/^X//' >pcre/pkg/PLIST << 'END-of-pcre/pkg/PLIST' Xbin/pgrep Xinclude/pcre.h Xlib/libpcre.a Xman/man1/pgrep.1.gz Xman/man3/pcre.3.gz Xman/man3/pcreposix.3.gz END-of-pcre/pkg/PLIST echo c - pcre/files mkdir -p pcre/files > /dev/null 2>&1 echo x - pcre/files/md5 sed 's/^X//' >pcre/files/md5 << 'END-of-pcre/files/md5' XMD5 (pcre-1.09.tar.gz) = e6826e6e3b25e3e09e1bf46f637e8fe5 END-of-pcre/files/md5 echo x - pcre/Makefile sed 's/^X//' >pcre/Makefile << 'END-of-pcre/Makefile' X# New ports collection makefile for: pcre X# Version required: 1.09 X# Date created: 08 July 1998 X# Whom: dom X# X# $Id$ X# X XDISTNAME= pcre-1.09 XCATEGORIES= devel XMASTER_SITES= ftp://ftp.cus.cam.ac.uk/pub/software/programs/pcre/ X XMAINTAINER= dom@myrddin.demon.co.uk X XMAN3= pcre.3 pcreposix.3 XMAN1= pgrep.1 X Xdo-configure: X ${SED} -e '/^CC/s/.*/CC=${CC}/' \ X -e '/^CFLAGS/s/.*/CFLAGS=${CFLAGS}/' \ X -e '/^RANLIB/s/.*/RANLIB=${RANLIB}/' \ X ${WRKSRC}/Makefile > ${WRKSRC}/Makefile.new X ${MV} ${WRKSRC}/Makefile.new ${WRKSRC}/Makefile X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/pgrep ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/libpcre.a ${PREFIX}/lib X ${INSTALL_DATA} ${WRKSRC}/pcre.h ${PREFIX}/include X ${INSTALL_MAN} ${WRKSRC}/pcre.3 ${PREFIX}/man/man3 X ${INSTALL_MAN} ${WRKSRC}/pcreposix.3 ${PREFIX}/man/man3 X ${INSTALL_MAN} ${WRKSRC}/pgrep.1 ${PREFIX}/man/man1 X X.include END-of-pcre/Makefile exit >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 Jul 8 11:50:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA10968 for freebsd-ports-outgoing; Wed, 8 Jul 1998 11:50:18 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10932 for ; Wed, 8 Jul 1998 11:50:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA15252; Wed, 8 Jul 1998 11:50:02 -0700 (PDT) Received: from myrddin.demon.co.uk (exim@myrddin.demon.co.uk [158.152.54.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA10563 for ; Wed, 8 Jul 1998 11:47:01 -0700 (PDT) (envelope-from dom@myrddin.demon.co.uk) Received: from dom by myrddin.demon.co.uk with local (Exim 1.92 #1) id 0ytyqu-0001N3-00; Wed, 8 Jul 1998 19:22:00 +0100 Message-Id: Date: Wed, 8 Jul 1998 19:22:00 +0100 From: Dom Mitchell Reply-To: dom@myrddin.demon.co.uk To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7217: update of gxedit to 1.06 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7217 >Category: ports >Synopsis: update of gxedit to 1.06 >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 Jul 8 11:50:02 PDT 1998 >Last-Modified: >Originator: Dom Mitchell >Organization: Big orange angry things, inc. >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD myrddin.demon.co.uk 3.0-CURRENT FreeBSD 3.0-CURRENT #3: Sun Jul 5 15:50:59 BST 1998 root@myrddin.demon.co.uk:/usr/src/sys/compile/MYRDDIN i386 >Description: Upgrade to version 1.06 of this port. Has a few nifty features like load from URL and an awk commands menu. Oh, and a set of man macros - there's no excuse now. :-) >How-To-Repeat: N/A >Fix: Apply this diff: diff -urP --exclude=CVS /usr/ports/editors/gxedit/Makefile gxedit/Makefile --- /usr/ports/editors/gxedit/Makefile Wed Jul 1 12:58:48 1998 +++ gxedit/Makefile Wed Jul 8 18:27:43 1998 @@ -1,13 +1,13 @@ # New ports collection makefile for: gxedit -# Version required: 1.04 +# Version required: 1.06 # Date created: 01 Jul 1998 # Whom: Dom Mitchell # # $Id: Makefile,v 1.1.1.1 1998/07/01 11:58:48 tg Exp $ # -DISTNAME= GXedit1.04 -PKGNAME= gxedit-1.04 +DISTNAME= GXedit1.06 +PKGNAME= gxedit-1.06 CATEGORIES= editors MASTER_SITES= http://devplanet.fastethernet.net/ EXTRACT_SUFX= .tar diff -urP --exclude=CVS /usr/ports/editors/gxedit/files/md5 gxedit/files/md5 --- /usr/ports/editors/gxedit/files/md5 Wed Jul 1 12:58:48 1998 +++ gxedit/files/md5 Wed Jul 8 18:34:09 1998 @@ -1 +1 @@ -MD5 (GXedit1.04.tar) = dd7cc37a310eea8cb8b87807bad11fd7 +MD5 (GXedit1.06.tar) = c1bd4a04a19f11f6773937a94db35f9a >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 Jul 8 12:03:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA12534 for freebsd-ports-outgoing; Wed, 8 Jul 1998 12:03:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from myrddin.demon.co.uk (exim@myrddin.demon.co.uk [158.152.54.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12528 for ; Wed, 8 Jul 1998 12:03:01 -0700 (PDT) (envelope-from dom@myrddin.demon.co.uk) Received: from dom by myrddin.demon.co.uk with local (Exim 1.92 #1) id 0ytzTj-0001f9-00; Wed, 8 Jul 1998 20:02:07 +0100 To: ports@FreeBSD.ORG Subject: how to depend on /usr/src? Date: Wed, 08 Jul 1998 20:02:07 +0100 From: Dom Mitchell Message-Id: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there a way that one can issue a depend on something in /usr/src? I would like to write a port for gxditview, the source of which is in /usr/src/contrib/groff/xditview. Also, how can woudl I write fetch and extract? Something like this? do-fetch: /bin/true do-extract: cd ${WRKSRC} && cp -rp /usr/src/contrib/groff/xditview/* . Or am I attempting the whole thing from the wrong angle? -- ``If make doesn't do what you expect it to, it's a good chance the makefile is wrong.'' -- Adam de Boor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 12:49:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18773 for freebsd-ports-outgoing; Wed, 8 Jul 1998 12:49:48 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hwcn.org (ac199@james.hwcn.org [199.212.94.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18768 for ; Wed, 8 Jul 1998 12:49:45 -0700 (PDT) (envelope-from hoek@hwcn.org) Received: from localhost (ac199@localhost) by hwcn.org (8.8.8/8.8.8) with SMTP id PAA05246; Wed, 8 Jul 1998 15:39:45 -0400 (EDT) Date: Wed, 8 Jul 1998 15:39:44 -0400 (EDT) From: Tim Vanderhoek To: Thomas Gellekum cc: ports@FreeBSD.ORG Subject: Re: [comp.unix.bsd.netbsd.announce] Changes to packages collection in June 1998. In-Reply-To: <87lnq450hy.fsf@ghpc6.ihf.rwth-aachen.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 8 Jul 1998, Thomas Gellekum wrote: > Add support for CONFLICTS entry to pkgsrc/mk/bsd.pkg.mk and > implemented -C switch in pkg_create to deal @pkgcfl > entries. This way one can define a list of other > packages a specific package conflicts with (e.g. > install identical set of files). [frueauf 1998-06-05] This should be handled automatically. Some pkg_*(1) command should search all PLISTs stored in whatever PKGDBDIR is associated with the current PREFIX and print a warning if a conflict is found. I don't see any benefit to defining a CONFLICTS variable at all. I don't think we should copy this at all. > Add USE_MOTIF to bsd.pkg.mk, and use it in the packages which > use Motif - this checks for a Motif installation, and, > if not available, will install Lesstif. Delete HAVE_MOTIF, > MOTIF_STATIC, REQUIRES_MOTIF and MOTIF_ONLY. > [agc 1998-06-09] Not as good as a generic solution, but solves the specific problem, I suppose. > Added automatic manual page handling to bsd.pkg.mk, backwards- > compatible with the current practice of using MANx and > CATx definitions in the package Makefile. The new way finds > the manual pages by scanning the PLIST. [agc 1998-06-18] My initial reaction was "ugh". I don't really see what they hope to gain from this? Using the MANx variables is pretty simple (they weren't filling them in by hand, were they!?!) and lets users easily see what manpages exist. [Caveat: I haven't looked at their actual code] -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 13:40:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25399 for freebsd-ports-outgoing; Wed, 8 Jul 1998 13:40:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA25394 for ; Wed, 8 Jul 1998 13:40:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA17968; Wed, 8 Jul 1998 13:40:01 -0700 (PDT) Received: from freefour.acs.rpi.edu (freefour.acs.rpi.edu [128.113.24.91]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAB24522 for ; Wed, 8 Jul 1998 13:33:40 -0700 (PDT) (envelope-from root@freefour.acs.rpi.edu) Received: (from root@localhost) by freefour.acs.rpi.edu (8.8.8/8.8.8) id QAA15528; Wed, 8 Jul 1998 16:33:15 -0400 (EDT) (envelope-from root) Message-Id: <199807082033.QAA15528@freefour.acs.rpi.edu> Date: Wed, 8 Jul 1998 16:33:15 -0400 (EDT) From: Charlie Root Reply-To: gad@eclipse.its.rpi.edu To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: gad@eclipse.its.rpi.edu X-Send-Pr-Version: 3.2 Subject: ports/7219: misc/screen does not include libcrypt on 'make' Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7219 >Category: ports >Synopsis: misc/screen does not include libcrypt on 'make' >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 8 13:40:00 PDT 1998 >Last-Modified: >Originator: Garance A Drosehn >Organization: RPI >Release: FreeBSD 3.0-980627-SNAP i386 >Environment: I'm running a recently built system, with only a few ports installed. >Description: I should be cvsup-ed to pretty close to the minute. I cd'ed to /usr/ports/misc/screen, and did a 'make'. The make failed, with the linking step saying it could not find '_crypt'. My system does have /usr/lib/libcrypt and /usr/lib/aout/libcrypt.*, so I just editted the makefile in the screen/work directory to include -lcrypt on the "LIBS =" line. screen then compiled OK and seems to be working correctly. >How-To-Repeat: See above. >Fix: I did not look to see *why* the makefile for screen did not include -lcrypt. I was in a bit of a rush to make this, so just did the quickest fix that got it to make for me. >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 Jul 8 14:40:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02296 for freebsd-ports-outgoing; Wed, 8 Jul 1998 14:40:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02282 for ; Wed, 8 Jul 1998 14:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19356; Wed, 8 Jul 1998 14:40:01 -0700 (PDT) Received: from rachel.glenatl.glenayre.com (mail.glenatl.glenayre.com [157.230.160.51]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA01402 for ; Wed, 8 Jul 1998 14:31:54 -0700 (PDT) (envelope-from jhicks@glenatl.glenayre.com) Received: from jhicks.glenatl.glenayre.com by rachel.glenatl.glenayre.com (SMI-8.6/SMI-SVR4) id RAA19765; Wed, 8 Jul 1998 17:25:06 -0400 Received: (from jhicks@localhost) by jhicks.glenatl.glenayre.com (8.8.8/8.8.5) id RAA23875; Wed, 8 Jul 1998 17:31:05 -0400 (EDT) Message-Id: <199807082131.RAA23875@jhicks.glenatl.glenayre.com> Date: Wed, 8 Jul 1998 17:31:05 -0400 (EDT) From: jhicks@glenatl.glenayre.com Reply-To: jhicks@glenatl.glenayre.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7220: devel/crossm68k-devel port addition (gcc-2.8.1) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7220 >Category: ports >Synopsis: devel/crossm68k-devel port addition (gcc-2.8.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: Wed Jul 8 14:40:00 PDT 1998 >Last-Modified: >Originator: Jerry Hicks >Organization: Glenayre Electronics, Inc >Release: FreeBSD 2.2.6-STABLE i386 >Environment: 2.2.6-STABLE (Built July 7, 1998) >Description: FSF has issued updates to binutils, gcc, and gdb. Cygnus has issued an update to newlib. The existing crossm68k port uses the 'crosstree' script to generate an integrated cross-development toolchain. Since Cygnus has not released crosstree updated for the new FSF releases, the set of ports I am submitting will allow a user to generate a gcc-2.8.x based toolchain for themselves. Since the existing crossm68k port is in use by several people I know of, this port will be designated a "development version" until some time in the future and the existing port should remain available until then. The top-level port (devel/crossm68k-devel) builds the following ports: m68kgdb: gdb-4.17 (updated email address) m68kbinutils: binutils-2.9.1 (new) m68kgcc: gcc-2.8.1 (new) m68knewlib: newlib-1.8.1 (new) I modeled this scheme after the kde port. It was necessary because of problems I encountered trying to from build a unified tree. The uuencoded tarball contains these port directories relative to ${PORTSDIR}/devel Jerry Hicks jhicks@glenatl.glenayre.com July 8, 1998 >How-To-Repeat: >Fix: begin 644 crossm68k-devel.tar.gz M'XL(`.++HS4``^T]:7/;.++SU?P5R/'F6$<2;\K><2J.+7N\L>64)6]FJ[;* M19&0Q)C7DI0=;2K__0'@(1(B)6I'HG.@:R86NAMG-^YNT`B\,'34[GW+A`_0 M[ORT`P`RKRD*^`E@X*F_20"HBL)KDBJI*@""*$C*3T#916%HF(61'@#P4^!Y MT2J^QRF$=A,%:A8,2O[^_63K.E!?_C+/2QJ6O\;+3/Y-0)G\WU]>#(9;S$/@ M>5665\@?*4_R5- MTUC_;P).L/P!D;WGDX%@[`7@RHN\P+-UH'8_??H$=-<$)YYMCJT`@K'N6/:\ MS0:#[P+*^O]I;W!RL\4\UO1_49#3_B]+LLR3^5]E\W\C,,1S/9[XLLNPP#DT,`X\/'/[MPD?;&I'DT`+" M)5']P/-A`$+XGQET#=A&`XGCHX5&$))L3N+!97\?Z&ALX2;0A8$>0?/OX'KT M$1J1]0!;)[ALKAF1,8=@&@+3``RJ/Y;FS283_`MS+!,)$_=G:-<0BO01S8:TJ$>S0)4:@2`8=B&C`, M/20V/02/2$M0SE/+F*+?*`]HHE8AW#/T_Z,+'KW@'M7K(D*M%X(1A$@;8(@$ MQI'RHN3,&9*NYZ)JHP*AOYY+E`4+'24=6%&$XB`E.DF:!^M(VD0X48XD:EN3 M*5:(./$TG2BP'BS=QNE-`MUI@S-4PI&.&LXG3?XL;IM$`(OVL5PT&M@V2@@U M]2&W!Y#2M^2VH+W*Q-@2VP=MD0@3_>RVA5=)X[<$',()YWJ4@5)%#1[@%`NS M;))EJF>AYZ#:0P\5+Y&R9=O<+$P[H-C6VF);`B.B?MF@W>9:6P/N'S`(YN`/ MR[@/N8]3_.?-Q(:N'MEM\G<>P#82`%@/_Y@AB71?`>'@H,O6"5\UT/,_V0-N M^01H@_,_C9<4//^+DL#.?YJ`Q/)799ZM_YH`-CS_ MV$#W_RO]'N(Q8)MYK.G_@B!JB_L?227]7V/]OQ%XD>S6#`\M>^,%N9.H`%[/ M'R+Y9"K"O0#_C)>M:.7\GYF%5K6'V7*/K/5>@%.T>4,Q(-[#'6;G>QF+AE@^ M3#WG$%"06WR"WU>L/E]S+U`2+R_,E^@'=WHQ&/:/KWI'>PL]%ML\=W(\[)U? MWUST!D=[1*^YJ^/!L'=S-[@88MP+`!T_FI/X9Q>7>13BO.@/T?^]FZ.]%07A M4#'(0;D)?>B::&\[1ULQM'DV=+3]+&R4R;8JW2M''MH-D=UUE.ZDN-/>^U[_ M%!7BY>?WUS?#P>G%S9=.W!\7VVKNYK9_EW&2JAK>>-Q"6Y3#\GB(PG&]/XQ?W[V]O;@\/=J;PQ"'3O[HG;P;W%YEB$O4A(/AW>5%_UV, M0WOC5K(_.ERT5AMM7^P9VL']/@K--M:EMG/_FLTJWPHD>K*3>_\4-KC_551\ M%R#PLBRQ]7\3D,I_%_-^"NOF?W+GB^6/I*\1^8LB+[#YOPEX`?KP8Q)RAMCURT'7G[.A>_.^[=? M-E@&H+GR_?')N^-SE&M\NI@>4P+;,]!L.>=0BG7=T,4M3<\ M2N;HPGS-[?UJF.#EYP\W[P8W)U\Z*";X^6>$($7X@GX4$_GR&YO9?PQ(Q_]= MG/NE4'O^5]`_`M[_"8HLLOF_"2C*?[OG?BFLM_\0B"8"A2A:IJB,.)EOJMVV;7.=P)I_]^% MW6\*FXS_DB:3$T&1[?\:@;S\MVWWE\+Z\9_(GY?0O*^H/!G_F?U/,W"]ABA0W_WPGD^_^V[?Y26-?_95E;C/\JOO\7>7;_ MTPQ@0[+3M-,;NKNXG(B\>#1(C:C"V+I,#XRI%4$C-AB+C<.B*8IH12&8>F'4 MYK@/V,0KRNR@YMZ,)(WO1?#)@^>"LP#"MX/3128CR]4#"X:)91@TP6@.=,`M MCT'0?;`"SR6_XT.2"%M)Y8:Q=R!GK49LJ+B3Z[.S.(\Y'MH<'1>SOLW3]SO< MY?O_MOU^4EAW_BO*:M+_-5Y6A-C_CYW_-@*H3W0*)XJ]HP@N#_3CL8@4\7VX22(DPKJ!_5\E1*Z,&2HIYJ+"=#B-E,,L MQ4DKE\/(W)OE=EXMUY7\Y<*LCE(AP:?N)=\OY.T4=G4`L-']KZ+%Y[]L_]\( M%.2_HTN`^N<_:*7`$_]_5="8_)N`$OEO_1)@_?E/LO^3-560\/F?)/$*6_\U M`>3\O^#;(N1N`;KC`]T4=!4>J)HLCDV)5P]D[4#0$$XR1)%-S-\Z%/K_CBX! MZH__&AX`\/@OL?&_&5B2_PX.`=;Y__+I^Q\JSRLB>?]#%-CXWP@4]__&_CY: M`T1<$>LZ%,(;?31GCD]A`]W%9LI%9&C]%]*H*+#<25B"I5-$^1B>/Z>P.AUU MHH=T3-ND(P4TPC0#T;9<6';@X=J.X;D/\:%'"3UIITJZZU22DK:KI,>M6$G& M[5E-C%MV);TZYZ2U*^EZ=<*V61TKJ":E(H@Y$GNSSFALMJ?Y$&*YSV%TXE)K MV`B%6JJ#_K=&,(CF;3T-XQ3L0B@+>#[V-PYSY!2C]P=+\_\. MC`#6[?\$7L[.?_C8_TL6V/U?(W`V.*.>-B@^`'2%K],*[_\LW$;AJ7^ MOP,C@'7]7U&S]_]D02'^_X(JLO[?!&RC_Q>?/"&/[XSF\6LG'P=??_DJ"E^W]!2][_4)G]=R-0Q_]K+Z\D\1EQF1_8 M7DHI.('M[6D%!W'B`+:WM_=77;ZH\A0',-2HXMO1@U=S9`1<9G#QN__L//_W4,J_Z_" M_T/E-4$0B/\'S][_;P3R\G\B^T]%EH1,_HHH,OO/!H&Z23$,;NE&B+YM09CL M,-\PC.H+!<1933.,A%8X&,<%6&"R$_\PA&B"G]8T`S5\_W^V/T7%*KC2B`,*01=# MI$LNTB47EZ+0)1?IDHMTR46ZY")==!9T#G0&=_L$J<]9R35QA M,5NF?O@^!K\VB_\N^@9Y>S;K(>$\M"W'BL+D4FPM?V2BW45]9A..:S(_Z`%* MN6XY'O26;OM3O3[[M"OQ?'UVJZMNPGVP";=C^1O4T^EV[S?@=@5>W*2B.,)& M+>-OT.C^/*C/'/IZ8-1G-VS+]^%&Z<\VX'8D<9.TI_5Y'[K*!LU=OTVLT%-E M=0/A^'53]@,O\FKR.GHT;:G=;E>H&2&:^Y!,<768X2<#^OBDJ1:W"Q_K\M4L M[$:#Y4WO^/2J5XMU;'MZ5']8Q8T(?&:@XT MHZVD(QR>Q/253"C,\_Q&O$[HC:,6:=Z:\12Q=A9E:3_UPKPAR.__GL[_7\ON M_S2![/\DGOG_-P+X_B_[E`&[^O_A(-__G\K_7]$R^Q]9$67B_Z\R^]]&8+G_ M+]^X?]LV`,FG<9@90"FD_?_K>/]/$B3\+3!!4"1V_],(%.7_5.__B3GYD_=? M!/;]QV8@?O\OG0!RKG^2('3%`WA@2"K?Y<NVBV5O4#^%6,7@S^ M*J3]_RG?_Y9Y,;W_4\E:$/=_9O_9"-2V_\K&B`K3KVYSIE^+HA2?^\[0.S;X M(E_.*/L4AQY6?(DC^Q((;EZ]O,8]WZ7Y47 MZW]1BK__S.Q_FH%6JP5"0W=;^/HN;(?3MA=8D[WA#))O=@`-3=Z'DGJH=.-9 M?']_O\A/LW8/I8.8][/(GT5M#G#`T"/P.HQ:YLQQYFT#_/[[L][UV3-N_X4UQB-'YV_@ M0P^<7O=_&8(_CO_9`\,_>H,>N.T/+RY!O_?A\N(MP@_`VUZO#Y+O7/1.GSU[ M!O[6047*9H5P'G;B6DU?%_")^0.-)`84KTDU10U74^RFU82N:8TQ^QC%!`_Z MG6V%$9=6,D6`/__\,_GY=U2;-%+R-ZXDV/'\M#@AVYT)\$;O?\7G/P)^_YF- M_[N'G/QW9@)<7_ZB*,GD_7=-8N^_-`*4_'=B`KQF_M=44<[DKZKD_E=E_E_- M0/'9!R.(^+9'OP5AC2:%US$2I%&&=,J0(V.9%^.6G\&P1I;I+_%B7!FO\^!` MM%9SY18(1X8B\O)RA)B@+A-R9B_+V6>TY:9:T)9; M-Z&5"FX1KTP`";54#HN89>)(J*52R96U2CB)04^5C*@4RD252Z%,8HL42@67 MD"OE5Z!7BY&V&JHL9I&O4A!YOE7BI-*K5`F*;X4*Y#E7J0.5X@K5R'.N4A.Z M+FM4)L>]3GW*4EZA2G3**]2*2GF5BN59UZG;,F^9ZF5&;0EMZ9EDJ,;4\N%G;$>1M@2>R63!2$<^RM90AA]=/R6^;$&UTJ6Y("DA.,. MO\M63B'>*6%Y3?6@%&W@C$HIIA5`MSPM&`2N5TI9V8YCPXWL4LHD*&^-%2U. M+DO*2^[H-J)6D"K*YB-">7LGWS@IISV:I?@`5C5=`">QC\\R:856A-;$UH-297JS:F5FLPH5H5"HF)%JYL>1_$9%\/=*>2 M6JU/,37T9H%1G?`]>__9>]_*9)"[G]XB=E_-0(G\XD["T&L`BV!>0'\8$#U M_YVX`*RU_Q>%K/_+\?<_59[=_S8"5?W_^_`"^$&-^C>`7/_?F0M`??L?!5_\ MQ=__5=G]7Q.P)/\=N`"LM_]7%O*7R?BOB6S]UP@0^__\Z)]S`3`.=-F094.4 M9%,4!$D?=\>BW)7,`]DP=9[_UL8Z!LN0Z_\[``F6])\`X\@\['?1OVR!+89QIQY^-.DFO MV(9?P,0P*NSO\7MG6S*]'Q[?G/>&^>=A5YCCO_PBW\,7#SD-O[ MU3#!R\\?;MX-;DZ^@)]_1@%2H"_@A-CK'SUO78.6;_GP^6_,UIX!`P8,&#!@ ;P(`!`P8,&#!@P(`!`P8,GAS^'Y56PL``R``` ` end >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 Jul 8 17:33:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23884 for freebsd-ports-outgoing; Wed, 8 Jul 1998 17:33:31 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from usc.usc.unal.edu.co ([200.21.26.65]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA23806; Wed, 8 Jul 1998 17:32:45 -0700 (PDT) (envelope-from giffunip@asme.org) Received: from unalmodem01.usc.unal.edu.co by usc.usc.unal.edu.co (AIX 4.1/UCB 5.64/4.03) id AA12464; Wed, 8 Jul 1998 20:12:32 -0400 Message-Id: <35A4066B.B12F8110@asme.org> Date: Wed, 08 Jul 1998 18:53:15 -0500 From: Pedro Giffuni Organization: Progen Ltda. X-Mailer: Mozilla 4.04 [en] (X11; U; FreeBSD 2.2.5-RELEASE i386) Mime-Version: 1.0 To: Joseph Koshy Cc: ports@FreeBSD.ORG Subject: Re: A peculiar port; advice requested ... References: <199807081128.EAA02089@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Joseph Koshy wrote: > Quirks: > > 1. While the official master site uses a ".tar.Z" suffix for most files, > some of the mirrors use ".tar.gz" instead. > Both use the same extract command (tar -xzf), so don't worry about the extension and write the complete list of tarballs in DISTFILES=. > > > 2. The install process involves a recompilation of (a) the runtime system > and (b) the SML/NJ standard libraries. The default installation > process expects to do this `in-place' in the final installation > directory tree. > > I'm somehow not comfortable with a compilation under /usr/local as > part of `make'; however is it acceptable? Does any other port do > anything similar? Scilab does something like this, if I were doing it , I'd try a symlink in /usr/local, but I think Scilab changes some scripts..I'm not sure. > > > 3. Is creating a new hierarchy root say "${PREFIX}/sml-nj" ok? The default > installation expects "bin", "bin.${ARCH}", "lib" etc. under > this `ROOT'. Changing the installation to confirm to a more > conventional "/usr/local/*/" structure would make a FreeBSD SML/NJ > installation different from the other unix installations. Do > we have a strict policy on directory hierarchies? > If it's unavoidable you can use $(PREFIX)/sml-nj, but if there's only one executable you should try $(PREFIX)/lib/sml-nj and add a link or a script. Hope that helps, Pedro. > Thanks, > Koshy > > > 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 Jul 8 18:20:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA29089 for freebsd-ports-outgoing; Wed, 8 Jul 1998 18:20:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA29073 for ; Wed, 8 Jul 1998 18:20:49 -0700 (PDT) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain (localhost [127.0.0.1]) by cain.gsoft.com.au (8.8.8/8.6.9) with ESMTP id KAA20900; Thu, 9 Jul 1998 10:50:38 +0930 (CST) Message-Id: <199807090120.KAA20900@cain.gsoft.com.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: pierced@geocities.com cc: ports@FreeBSD.ORG Subject: Re: DHCP Client In-reply-to: Your message of "Tue, 07 Jul 1998 19:05:09 CST." <000201bdaa0d$53563fa0$02000003@shane.wave.shaw.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 09 Jul 1998 10:50:38 +0930 From: "Daniel O'Connor" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Hello, I've decided to switch from NT to FreeBSD for more speed and less > problems. Now I already re-partitioned the hard disk and then found out I > could notdirectly install from the net because my service provider needs > DHCP, so, I can for sure get it all up and running but when I do I need it > to use DHCP, is there something I can use for DHCP? The net/wide-dchp port has dhcpc which configures your an interface you give it. It can also change your hostname and/or your resolv.conf if you tell it. The net/isc-dhcp2 port has one too.. Actually whats a bit annoying is there is no program I've seen which gets a DHCP lease and actually tells you about it, instead of setting your interface up automatically.. (which means its a bastard to test a DHCP server) --------------------------------------------------------------------- |Daniel O'Connor software and network engineer for Genesis Software | |http://www.gsoft.com.au | |The nice thing about standards is that there are so many of them to| |choose from. -- Andrew Tanenbaum | --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 18:36:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00993 for freebsd-ports-outgoing; Wed, 8 Jul 1998 18:36:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mickey00.mickey.ai.kyutech.ac.jp (mickey.ai.kyutech.ac.jp [131.206.1.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA00987; Wed, 8 Jul 1998 18:36:21 -0700 (PDT) (envelope-from ohashi@mickey.ai.kyutech.ac.jp) Received: from ateken2.mickey.ai.kyutech.ac.jp (ateken2.mickey.ai.kyutech.ac.jp [131.206.21.141]) by mickey00.mickey.ai.kyutech.ac.jp (8.8.8/3.6W-mickey) with ESMTP id KAA19717; Thu, 9 Jul 1998 10:36:15 +0900 (JST) Received: (from ohashi@localhost) by ateken2.mickey.ai.kyutech.ac.jp (8.8.8/3.5Wpl5) id KAA01795; Thu, 9 Jul 1998 10:36:21 +0900 (JST) Date: Thu, 9 Jul 1998 10:36:21 +0900 (JST) Message-Id: <199807090136.KAA01795@ateken2.mickey.ai.kyutech.ac.jp> To: mauri@krabi.mbp.ee Cc: current@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: crt0.o In-Reply-To: Your message of "Wed, 8 Jul 1998 18:40:52 +0300 (EEST)". From: ohashi@mickey.ai.kyutech.ac.jp (Takeshi Ohashi) X-Mailer: mnews [version 1.20] 1996-12/08(Sun) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org mauri>>Hi mauri>> mauri>>there are some ports which cry for /usr/lib/crt0.o... Some ports, mule-2.3 and emacs20, have same problem. # xemacs-mule seems no problem. AOUT binaries were moved from /usr/lib to /usr/lib/aout. I think ports should use ${LIBDIR}, but bsd.port.mk does not pass it to gmake. Then I made a small patch. --- /usr/share/mk/bsd.port.mk.orig Tue Jun 30 23:19:25 1998 +++ /usr/share/mk/bsd.port.mk Wed Jul 1 18:39:16 1998 @@ -407,7 +407,7 @@ MAKE_FLAGS?= -f MAKEFILE?= Makefile -MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} MOTIFLIB="${MOTIFLIB}" CFLAGS="${CFLAGS}" +MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} MOTIFLIB="${MOTIFLIB}" CFLAGS="${CFLAGS}" LIBDIR="${LIBDIR}" .if exists(/usr/bin/fetch) FETCH_CMD?= /usr/bin/fetch For mule-2.3 family, put the following patch for patch-am in mule-2.3-common/patches. --- ./src/s/freebsd.h.orig Wed Jul 1 11:53:10 1998 +++ ./src/s/freebsd.h Wed Jul 1 18:08:33 1998 @@ -34,7 +34,7 @@ #define LIBS_DEBUG -lcrypt #define LIBS_SYSTEM -lutil #define LIBS_TERMCAP -ltermcap -#define LIB_GCC /usr/lib/libgcc.a +#define LIB_GCC ${LIBDIR}/libgcc.a /* Reread the time zone on startup. */ #define LOCALTIME_CACHE @@ -47,7 +47,7 @@ #ifndef NO_SHARED_LIBS #define LD_SWITCH_SYSTEM -e start #define HAVE_TEXT_START /* No need to define `start_of_text'. */ -#define START_FILES pre-crt0.o /usr/lib/crt0.o +#define START_FILES pre-crt0.o ${LIBDIR}/crt0.o #define UNEXEC unexsunos4.o #define RUN_TIME_REMAP For emacs20, swap the following patch and patch-ae. --- src/s/freebsd.h.orig Fri Aug 1 16:17:24 1997 +++ src/s/freebsd.h Wed Jul 1 21:15:32 1998 @@ -45,8 +45,8 @@ #ifndef NO_SHARED_LIBS #define LD_SWITCH_SYSTEM -e start -dc -dp #define HAVE_TEXT_START /* No need to define `start_of_text'. */ -#define START_FILES pre-crt0.o /usr/lib/crt0.o -#define UNEXEC unexsunos4.o +#define START_FILES pre-crt0.o ${LIBDIR}/crt0.o +#define UNEXEC unexfreebsd.o #define RUN_TIME_REMAP #ifndef N_TRELOFF I have not yet done send-pr because the number of ports whitch have USE_GMAKE is 185. I could not check them. -- Takeshi OHASHI, Dept. of A.I., Kyushu Inst. of Tech., Iizuka 820, JAPAN ohashi@mickey.ai.kyutech.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 Jul 8 19:30:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA07176 for freebsd-ports-outgoing; Wed, 8 Jul 1998 19:30:13 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA07144 for ; Wed, 8 Jul 1998 19:30:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA26518; Wed, 8 Jul 1998 19:30:02 -0700 (PDT) Received: from ail.ail-inc.co.jp ([210.145.48.250]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA06499 for ; Wed, 8 Jul 1998 19:21:59 -0700 (PDT) (envelope-from sada@e-mail.ne.jp) Received: from amygdala.ail-inc.co.jp (amygdala.ail-inc.co.jp [210.145.48.251]) by ail.ail-inc.co.jp (8.8.5/3.6W) with ESMTP id LAA26618 for ; Thu, 9 Jul 1998 11:21:49 +0900 (JST) Received: from pl133.local.ail-inc.co.jp (pl133.local.ail-inc.co.jp [192.168.1.13]) by amygdala.ail-inc.co.jp (8.8.8/3.6W98030310) with ESMTP id LAA17833 for ; Thu, 9 Jul 1998 11:18:52 +0900 (JST) Received: from localhost (pl133.local.ail-inc.co.jp [192.168.1.13]) by pl133.local.ail-inc.co.jp (8.8.8/3.6W98020616) with SMTP id LAA00780 for FreeBSD-gnats-submit@freebsd.org; Thu, 9 Jul 1998 11:20:45 +0900 (JST) Message-Id: <199807090221.LAA26618@ail.ail-inc.co.jp> Date: Thu, 9 Jul 1998 11:20:45 +0900 (JST) From: sada@e-mail.ne.jp Reply-To: sada@e-mail.ne.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7225: New port: x11/kb2mb2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7225 >Category: ports >Synopsis: New port: x11/kb2mb2 >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: Wed Jul 8 19:30:01 PDT 1998 >Last-Modified: >Originator: SADA Kenji >Organization: Nagoya.Aichi.Japan >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: FreeBSD 2.2.6-RELEASE i386 XFree86 3.3.2 >Description: kb2mb2 redirects evants caused by a key to second mouse button. It uses right windows button by default. See kb2mb2 -h for details. >How-To-Repeat: >Fix: begin 644 kb2mb2.tar.gz M'XL(`&)?L3/)H3G$2/X$IG1*@I,RB4D&TS8W1K9% M42>NAOKU3J9861K5ZQ&ZW>%KB:^U&G4"!K)-!`T` M7+6QX3VRV*3 M?Y]K M:@8,:$`3G^:`.QV;>WR<9PFW-">$%642P;NLR!9D190C;CP>AETXYI?*8.A- M1GW7Z54Q3\7_G_.AXO>8#QHK;]R;.>.H-)Z)GSMBRVVJM5BOUTU*] MR"D]\P9JEM^WOLVK(*T[T=VV6@H?.QQ-^,\9]YHBY6_I:4*B6$TI'ZTH[SUG M.G3[5WP":UHH=^Z5>]%K-A^213)31C?3X@(]Z!#=;VNT3?T`82M` MYFS6GK4[-L(VL6S;^A>JFV07E?Z7B_OZS@!_4O\Q%OM_C'1#UO]]L)7_VVN^ M^:HCQL[ZCQ_K/[+T'_M_9,CZOP_\*&U5V_M#3T5R`+;T/W"\\W$=,7;I7T/& MX_X/(Z%_R[*D_O?!)O_\0!_R\WS`"J!?2"J^!9"RH"'X:R"PH&M@&10TR-(0 MDHQ;P"\9RU)5&3+@MP7DT?V?%;B) M\9-WH^,![=M`"@` !`%/A ` end >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 Jul 8 20:52:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA18576 for freebsd-ports-outgoing; Wed, 8 Jul 1998 20:52:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gforce.johnson.home (host-209-214-153-24.sld.bellsouth.net [209.214.153.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA18537 for ; Wed, 8 Jul 1998 20:51:58 -0700 (PDT) (envelope-from glenn@bellsouth.net) Received: from bellsouth.net (localhost.johnson.home [127.0.0.1]) by gforce.johnson.home (8.8.8/8.8.8) with ESMTP id WAA16368 for ; Wed, 8 Jul 1998 22:51:09 -0500 (CDT) (envelope-from glenn@bellsouth.net) Message-Id: <199807090351.WAA16368@gforce.johnson.home> X-Mailer: exmh version 2.0.2 2/24/98 To: ports@FreeBSD.ORG From: Glenn Johnson Subject: windowmaker 0.16.1 does not compile on -CURRENT Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 08 Jul 1998 22:51:07 -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I get the following when trying to build the windowmaker 0.16.1 port: `/usr/ports/x11/windowmaker/work/WindowMaker-0.16.1/src' gcc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I../wrlib -I../WINGs -I../libPropList -DSHAPE -DNLSDIR="\"/usr/local/lib/locale\"" -DPKGDATADIR="\"/usr/local/share/WindowMaker\"" -DPIXMAPDIR="\"/usr/X11R6/inclu de/X11/pixmaps\"" -g -O2 -Wall -Wno-implicit-int -finline-functions -c actions.c In file included from actions.c:38: icon.h:55: parse error before `WMHandlerID' icon.h:55: warning: no semicolon at end of struct or union icon.h:57: warning: data definition has no type or storage class icon.h:60: parse error before `*' icon.h:60: warning: data definition has no type or storage class icon.h:61: parse error before `*' icon.h:61: warning: data definition has no type or storage class icon.h:62: parse error before `*' icon.h:63: parse error before `*' icon.h:64: parse error before `*' icon.h:65: parse error before `*' icon.h:66: parse error before `*' icon.h:67: parse error before `*' In file included from actions.c:43: appicon.h:46: parse error before `WIcon' appicon.h:46: warning: no semicolon at end of struct or union appicon.h:73: parse error before `:' appicon.h:74: parse error before `:' appicon.h:75: parse error before `:' appicon.h:76: parse error before `:' appicon.h:77: parse error before `:' appicon.h:78: parse error before `:' appicon.h:80: parse error before `:' appicon.h:81: parse error before `:' appicon.h:82: parse error before `:' appicon.h:83: parse error before `:' appicon.h:84: parse error before `:' appicon.h:85: parse error before `:' appicon.h:87: parse error before `:' appicon.h:91: warning: data definition has no type or storage class appicon.h:94: parse error before `*' appicon.h:94: warning: data definition has no type or storage class appicon.h:95: parse error before `*' appicon.h:96: warning: data definition has no type or storage class appicon.h:98: parse error before `*' appicon.h:100: parse error before `*' In file included from actions.c:44: dock.h:34: parse error before `WAppIcon' dock.h:34: warning: no semicolon at end of struct or union dock.h:59: parse error before `}' dock.h:59: warning: data definition has no type or storage class dock.h:65: parse error before `*' dock.h:65: warning: data definition has no type or storage class dock.h:66: parse error before `*' dock.h:66: warning: data definition has no type or storage class dock.h:68: parse error before `*' dock.h:69: parse error before `*' dock.h:70: parse error before `*' dock.h:71: parse error before `*' dock.h:72: parse error before `*' dock.h:73: parse error before `*' dock.h:76: parse error before `*' dock.h:77: parse error before `*' dock.h:79: parse error before `*' dock.h:80: parse error before `*' dock.h:82: parse error before `*' dock.h:83: parse error before `*' dock.h:83: parse error before `*' dock.h:83: warning: data definition has no type or storage class dock.h:84: parse error before `*' dock.h:85: parse error before `*' dock.h:95: parse error before `*' dock.h:98: parse error before `*' dock.h:98: warning: data definition has no type or storage class actions.c: In function `wMaximizeWindow': actions.c:378: dereferencing pointer to incomplete type actions.c: At top level: actions.c:622: parse error before `*' actions.c: In function `setupIconGrabs': actions.c:625: `icon' undeclared (first use this function) actions.c:625: (Each undeclared identifier is reported only once actions.c:625: for each function it appears in.) actions.c: At top level: actions.c:635: parse error before `*' actions.c: In function `removeIconGrabs': actions.c:638: `icon' undeclared (first use this function) actions.c: In function `wIconifyWindow': actions.c:664: warning: assignment from incompatible pointer type actions.c:683: dereferencing pointer to incomplete type actions.c:691: dereferencing pointer to incomplete type actions.c:691: dereferencing pointer to incomplete type actions.c:699: dereferencing pointer to incomplete type actions.c:700: dereferencing pointer to incomplete type actions.c:702: dereferencing pointer to incomplete type actions.c: In function `wDeiconifyWindow': actions.c:745: dereferencing pointer to incomplete type actions.c:748: dereferencing pointer to incomplete type actions.c:753: dereferencing pointer to incomplete type actions.c:753: dereferencing pointer to incomplete type actions.c:767: dereferencing pointer to incomplete type actions.c: At top level: actions.c:795: parse error before `*' actions.c: In function `hideWindow': actions.c:800: `wwin' undeclared (first use this function) actions.c:818: `icon' undeclared (first use this function) actions.c:838: `animate' undeclared (first use this function) actions.c:841: `icon_x' undeclared (first use this function) actions.c:841: `icon_y' undeclared (first use this function) actions.c: In function `wHideApplication': actions.c:993: dereferencing pointer to incomplete type actions.c:993: dereferencing pointer to incomplete type actions.c:994: dereferencing pointer to incomplete type actions.c: At top level: actions.c:1024: parse error before `*' actions.c: In function `unhideWindow': actions.c:1026: `wwin' undeclared (first use this function) actions.c:1033: `animate' undeclared (first use this function) actions.c:1034: `icon_x' undeclared (first use this function) actions.c:1034: `icon_y' undeclared (first use this function) actions.c:1035: `icon' undeclared (first use this function) actions.c: In function `wUnhideApplication': actions.c:1120: dereferencing pointer to incomplete type actions.c:1120: dereferencing pointer to incomplete type actions.c:1121: dereferencing pointer to incomplete type actions.c:1125: dereferencing pointer to incomplete type actions.c: In function `wArrangeIcons': actions.c:1209: `aicon' undeclared (first use this function) actions.c:1209: warning: statement with no effect actions.c:1210: parse error before `int' actions.c:1214: `left_margin' undeclared (first use this function) actions.c:1215: `right_margin' undeclared (first use this function) actions.c:1217: dereferencing pointer to incomplete type actions.c:1225: `x' undeclared (first use this function) actions.c:1226: `y' undeclared (first use this function) actions.c:1275: dereferencing pointer to incomplete type actions.c:1277: dereferencing pointer to incomplete type gmake[1]: *** [actions.o] Error 1 gmake[1]: Leaving directory `/usr/ports/x11/windowmaker/work/WindowMaker-0.16.1 /src' gmake: *** [all-recursive] Error 1 Thanks. -- Glenn Johnson gljohns@bellsouth.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 20:59:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA19631 for freebsd-ports-outgoing; Wed, 8 Jul 1998 20:59:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from thelab.hub.org (tc-24.acadiau.ca [131.162.2.124]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA19623 for ; Wed, 8 Jul 1998 20:59:18 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.8.8/8.8.2) with SMTP id AAA28140 for ; Thu, 9 Jul 1998 00:59:18 -0300 (ADT) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Thu, 9 Jul 1998 00:59:18 -0300 (ADT) From: The Hermit Hacker To: ports@FreeBSD.ORG Subject: generating PLIST... 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 Morning... How do ppl generally generate the PLIST file? I just upgraded kdemultimeia, and I want to make sure that PLIST is correct. I tried doing a 'make PREFIX=' so that I could just do a 'find' off of it to get a listing, but then configure failed... Thanks... Marc G. Fournier Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 21:10:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA20865 for freebsd-ports-outgoing; Wed, 8 Jul 1998 21:10:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA20860 for ; Wed, 8 Jul 1998 21:10:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA29336; Wed, 8 Jul 1998 21:10:01 -0700 (PDT) Date: Wed, 8 Jul 1998 21:10:01 -0700 (PDT) Message-Id: <199807090410.VAA29336@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Jerry Hicks Subject: Re: ports/7220: devel/crossm68k-devel port addition (gcc-2.8.1) Reply-To: Jerry Hicks Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7220; it has been noted by GNATS. From: Jerry Hicks To: freebsd-gnats-submit@freebsd.org, jhicks@glenatl.glenayre.com Cc: Subject: Re: ports/7220: devel/crossm68k-devel port addition (gcc-2.8.1) Date: Thu, 09 Jul 1998 00:03:44 -0400 If you already have m68kgdb installed or crossm68k installed, they should be removed before attempting to build crossm68k-devel. Otherwise, you will encounter problems building. Jerry Hicks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 21:33:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA23163 for freebsd-ports-outgoing; Wed, 8 Jul 1998 21:33:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from pozo.com (pozo.pozo.com [207.201.8.18]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA23157 for ; Wed, 8 Jul 1998 21:33:33 -0700 (PDT) (envelope-from mantar@netcom.com) Received: from dual (DUAL [192.168.0.2]) by pozo.com (8.8.8/8.8.8) with SMTP id VAA00578; Wed, 8 Jul 1998 21:33:11 -0700 (PDT) (envelope-from mantar@netcom.com) Message-Id: <199807090433.VAA00578@pozo.com> X-Sender: null@192.168.0.1 X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.1 Date: Wed, 08 Jul 1998 21:33:11 -0700 To: Glenn Johnson , ports@FreeBSD.ORG From: Manfred Antar Subject: Re: windowmaker 0.16.1 does not compile on -CURRENT In-Reply-To: <199807090351.WAA16368@gforce.johnson.home> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 10:51 PM 7/8/98 -0500, Glenn Johnson wrote: >I get the following when trying to build the windowmaker 0.16.1 port: > >`/usr/ports/x11/windowmaker/work/WindowMaker-0.16.1/src' >gcc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I../wrlib -I../WINGs >-I../libPropList -DSHAPE -DNLSDIR="\"/usr/local/lib/locale\"" >-DPKGDATADIR="\"/usr/local/share/WindowMaker\"" -DPIXMAPDIR="\"/usr/X11R6/inclu >de/X11/pixmaps\"" -g -O2 -Wall -Wno-implicit-int -finline-functions -c >actions.c >In file included from actions.c:38: >icon.h:55: parse error before `WMHandlerID' >icon.h:55: warning: no semicolon at end of struct or union Same thing happened to me. I did pkg_delete windowmaker 0.16.0 , and it built fine Manfred ============================== || mantar@netcom.com || || pozo@infinex.com || || Ph. (415) 681-6235 || ============================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 23:03:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03100 for freebsd-ports-outgoing; Wed, 8 Jul 1998 23:03:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@206-18-112-233.la.inreach.net [206.18.112.233]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA03093 for ; Wed, 8 Jul 1998 23:03:08 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id XAA02684; Wed, 8 Jul 1998 23:02:40 -0700 (PDT) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Wed, 08 Jul 1998 23:02:34 -0700 (PDT) Organization: Computer Help From: Donald Burr To: The Hermit Hacker Subject: RE: generating PLIST... Cc: ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My secret spy satellite informs me that on 09-Jul-98, The Hermit Hacker wrote: > > Morning... > > How do ppl generally generate the PLIST file? I just upgraded > kdemultimeia, and I want to make sure that PLIST is correct. I tried > doing a 'make PREFIX=' so that I could just do a > 'find' off of it to get a listing, but then configure failed... Here's what I usually do. Before running 'make install', 'touch' a file. I call mine "instdate". Then run make install. Then run: find ${PREFIX} -newer ./instdate -print This will print out a listing of the files that were just installed.. then strip ${PREFIX} off the front of each line (use sed or somesuch), and you got yourself a PLIST. --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. ----------------------------------------------------------------------- FreeBSD - Turning PCs into Workstations - http://www.freebsd.org/ (NOTE: POBoxes.com appears to be working again -- fire away!) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 23:12:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA03951 for freebsd-ports-outgoing; Wed, 8 Jul 1998 23:12:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from myrddin.demon.co.uk (exim@myrddin.demon.co.uk [158.152.54.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA03936 for ; Wed, 8 Jul 1998 23:12:17 -0700 (PDT) (envelope-from dom@myrddin.demon.co.uk) Received: from dom by myrddin.demon.co.uk with local (Exim 1.92 #1) id 0yu9eD-0000B2-00; Thu, 9 Jul 1998 06:53:37 +0100 To: The Hermit Hacker Cc: ports@FreeBSD.ORG Subject: Re: generating PLIST... In-reply-to: The Hermit Hacker's message of "Thu, 09 Jul 1998 00:59:18 -0300". Date: Thu, 09 Jul 1998 06:53:37 +0100 From: Dom Mitchell Message-Id: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 9 July 1998, The Hermit Hacker proclaimed: > Morning... Ugh. :-) > How do ppl generally generate the PLIST file? I just upgraded > kdemultimeia, and I want to make sure that PLIST is correct. I tried > doing a 'make PREFIX=' so that I could just do a > 'find' off of it to get a listing, but then configure failed... A rather brute force method: You could install tripwire. I usually find myself inspecting the output "make install" for the package though. -- ``If make doesn't do what you expect it to, it's a good chance the makefile is wrong.'' -- Adam de Boor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jul 8 23:13:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04052 for freebsd-ports-outgoing; Wed, 8 Jul 1998 23:13:53 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA04044 for ; Wed, 8 Jul 1998 23:13:50 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id IAA21362; Thu, 9 Jul 1998 08:13:45 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id IAA07260; Thu, 9 Jul 1998 08:13:44 +0200 (CEST) To: The Hermit Hacker Cc: ports@FreeBSD.ORG Subject: Re: generating PLIST... References: From: Thomas Gellekum Date: 09 Jul 1998 08:13:43 +0200 In-Reply-To: The Hermit Hacker's message of "Thu, 09 Jul 1998 00:59:18 -0300 (ADT)" Message-ID: <87pvffpn54.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 22 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The Hermit Hacker writes: > Morning... > > How do ppl generally generate the PLIST file? I just upgraded > kdemultimeia, and I want to make sure that PLIST is correct. I tried > doing a 'make PREFIX=' so that I could just do a > 'find' off of it to get a listing, but then configure failed... touch /tmp/now make install find /usr/local -type f -newer /tmp/now | \ sed -e 's,/usr/local/,,' | sort find /usr/local -type d -newer /tmp/now | \ sed -e 's,/usr/local/,@dirrm ,' | sort -r It's a bit work to sort out symbolic links, though. For kdemultimedia in particular see my other mail. There's an upgrade coming for the KDE ports. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 03:35:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26559 for freebsd-ports-outgoing; Thu, 9 Jul 1998 03:35:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@pm9-43.sba1.avtel.net [207.71.222.243]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26552 for ; Thu, 9 Jul 1998 03:35:09 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id DAA01514 for freebsd-ports@freebsd.org; Thu, 9 Jul 1998 03:35:15 -0700 (PDT) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Thu, 09 Jul 1998 03:35:15 -0700 (PDT) Organization: Computer Help From: Donald Burr To: FreeBSD Ports Subject: I wish to work on VICE port PR#5667 - any comments? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'd like to see VICE, the Versatile Commodore Emulator, ushered into ports. To that end, I'd like to start working on it. It is PR ports/5667. I just looked at the PR, and see that it is in "analyzed" state, but still "owned" by ports. There was some discussion amended to the pr about the questonable state of the copyrighted ROMs included with the distfile, but no ultimate decision was offered up. My personal belief is that, if I simply set RESTRICTED (i.e. don't package it, don't put it on the CD, and don't mirror the distfile) it should be OK. I base this on the fact that we already have several emulator ports in the system (xgs, atari800, fmsx, stonx, to name a few) that do exactly that. Is there any objection to me proceeding on this assumption? If this is ok with you, I'd need someone to make the port tarball (on ftp.freebsd.org:/pub/incoming/vice-0.13.0.tar.gz) accessable to me. (As a matter of fact, I had a look at ports, and it turns out that we have another C=64 port, emulators/frodo, that also includes copyrighted ROMs, but RESTRICTED is *NOT* set. Methinks we better change this. I volunteer. Any objections? [I'd still like to port VICE though, because IMHO it works a lot better and runs a lot faster than frodo.]) --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. ----------------------------------------------------------------------- FreeBSD - Turning PCs into Workstations - http://www.freebsd.org/ (NOTE: POBoxes.com appears to be working again -- fire away!) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 03:38:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA26841 for freebsd-ports-outgoing; Thu, 9 Jul 1998 03:38:51 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@pm9-43.sba1.avtel.net [207.71.222.243]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26836 for ; Thu, 9 Jul 1998 03:38:49 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id DAA01525 for freebsd-ports@freebsd.org; Thu, 9 Jul 1998 03:38:56 -0700 (PDT) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Thu, 09 Jul 1998 03:38:56 -0700 (PDT) Organization: Computer Help From: Donald Burr To: FreeBSD Ports Subject: Two versions of a port, how to handle? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have two ports that are both of the same program, but different revisions. I have a "stable" and a "development" version. This is a similar situation to how "gimp" and "gimp-devel" used to be ("gimp" was the stable 0.54 version, and "gimp-devel" was the "beta" 0.99 version). How should I handle this? The program in question is "sysutils/mkhybrid", a program for creating hybrid CD-ROMs (Joliet, HFS, et al). The port that's in there now is of version 1.11.1, and is the last "stable" release. I now have a port for mkhybrid 1.12a4.1, which is considered "alpha" but contains significant new functionality. Should I make a "mkhybrid" and "mkhybrid-devel" port? Or a "mkhybrid11" and "mkhybrid12" port (a' la squid11/squid12)? Opinions, anyone? --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. ----------------------------------------------------------------------- FreeBSD - Turning PCs into Workstations - http://www.freebsd.org/ (NOTE: POBoxes.com appears to be working again -- fire away!) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 06:38:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA14148 for freebsd-ports-outgoing; Thu, 9 Jul 1998 06:38:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (billf@hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA14143 for ; Thu, 9 Jul 1998 06:38:07 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA028461465; Thu, 9 Jul 1998 09:37:45 -0400 Date: Thu, 9 Jul 1998 09:37:45 -0400 (EDT) From: Bill Fumerola To: The Hermit Hacker Cc: ports@FreeBSD.ORG Subject: Re: generating PLIST... 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 I do a``find /usr/local -name * >> /tmp/local.old'' then I install the port.. then I do it again with ">> /tmp/local.new" then I diff the two. On Thu, 9 Jul 1998, The Hermit Hacker wrote: > > Morning... > > How do ppl generally generate the PLIST file? I just upgraded > kdemultimeia, and I want to make sure that PLIST is correct. I tried > doing a 'make PREFIX=' so that I could just do a > 'find' off of it to get a listing, but then configure failed... > > Thanks... > > Marc G. Fournier > Systems Administrator @ hub.org > primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > bill fumerola [root/billf]@chc-chimes.com computer horizons corp - www.computerhorizons.com ph:(800)252.2421 x128 / bill.fumerola@computerhorizons.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 07:06:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16702 for freebsd-ports-outgoing; Thu, 9 Jul 1998 07:06:51 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from joshua.enteract.com (joshua.enteract.com [207.229.129.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id HAA16690 for ; Thu, 9 Jul 1998 07:06:49 -0700 (PDT) (envelope-from djhoward@joshua.enteract.com) Received: (qmail 26198 invoked by uid 1032); 9 Jul 1998 14:06:47 -0000 Message-ID: <19980709090647.B25967@enteract.com> Date: Thu, 9 Jul 1998 09:06:47 -0500 From: dannyman To: "Daniel O'Connor" , pierced@geocities.com Cc: ports@FreeBSD.ORG Subject: Re: DHCP Client Mail-Followup-To: Daniel O'Connor , pierced@geocities.com, ports@FreeBSD.ORG References: <000201bdaa0d$53563fa0$02000003@shane.wave.shaw.ca> <199807090120.KAA20900@cain.gsoft.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807090120.KAA20900@cain.gsoft.com.au>; from Daniel O'Connor on Thu, Jul 09, 1998 at 10:50:38AM +0930 X-Loop: djhoward@uiuc.edu X-URL: http://www.dannyland.org/~dannyman/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Jul 09, 1998 at 10:50:38AM +0930, Daniel O'Connor wrote: > Actually whats a bit annoying is there is no program I've seen which gets a > DHCP lease and actually tells you about it, instead of setting your interface > up automatically.. (which means its a bastard to test a DHCP server) We just commandeer other users' Windows boxen here. :) -- // dannyman yori aiokomete || Our Honored Symbol deserves \\/ http://www.dannyland.org/~dannyman/ || an Honorable Retirement (UIUC) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 07:12:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17322 for freebsd-ports-outgoing; Thu, 9 Jul 1998 07:12:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA17317 for ; Thu, 9 Jul 1998 07:12:46 -0700 (PDT) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id IAA11035; Thu, 9 Jul 1998 08:11:33 -0600 (MDT) (envelope-from brett@peloton.physics.montana.edu) Date: Thu, 9 Jul 1998 08:11:33 -0600 (MDT) From: Brett Taylor To: The Hermit Hacker cc: ports@FreeBSD.ORG Subject: Re: generating PLIST... 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 Hi, > How do ppl generally generate the PLIST file? I normally do something like this: touch some_file install port find /usr/local -newer some_file > PLIST (of course /usr/local could be /usr/X11R6 or whatever PREFIX is) You then need to go through and strip out directories etc... Brett *********************************************************** Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ How many Microsoft employees does it take to change a light bulb? Zero. They declared Darkness[tm] the standard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 08:48:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA01528 for freebsd-ports-outgoing; Thu, 9 Jul 1998 08:48:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hub.org (hub.org [209.47.148.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA01522 for ; Thu, 9 Jul 1998 08:48:40 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by hub.org (8.8.8/8.7.5) with SMTP id LAA05682; Thu, 9 Jul 1998 11:46:05 -0400 (EDT) Date: Thu, 9 Jul 1998 11:46:05 -0400 (EDT) From: The Hermit Hacker To: Thomas Gellekum cc: ports@FreeBSD.ORG Subject: Re: generating PLIST... In-Reply-To: <87pvffpn54.fsf@ghpc6.ihf.rwth-aachen.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 9 Jul 1998, Thomas Gellekum wrote: > The Hermit Hacker writes: > > > Morning... > > > > How do ppl generally generate the PLIST file? I just upgraded > > kdemultimeia, and I want to make sure that PLIST is correct. I tried > > doing a 'make PREFIX=' so that I could just do a > > 'find' off of it to get a listing, but then configure failed... > > touch /tmp/now > make install > find /usr/local -type f -newer /tmp/now | \ > sed -e 's,/usr/local/,,' | sort > find /usr/local -type d -newer /tmp/now | \ > sed -e 's,/usr/local/,@dirrm ,' | sort -r Perfect...I did something similar last night after posting, but wasn't entirely confident with the output... > It's a bit work to sort out symbolic links, though. > > For kdemultimedia in particular see my other mail. There's an upgrade > coming for the KDE ports. As for the kdemultimedia port...it was marked as BROKEN, which is the only reason I dived into it. I have Beta4 installed right now, of everything else, and compiled that port against it, so unless I've totally missed something in my testing, the 1.0pre2 that I have it pointing at works fine with Beta4 libraries from the kdebase port... Apologies for fixing it, but I didn't think that there would be any outcry against it :( To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 09:09:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA05045 for freebsd-ports-outgoing; Thu, 9 Jul 1998 09:09:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from symbion.srrc.usda.gov ([199.78.118.118]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA05027 for ; Thu, 9 Jul 1998 09:09:37 -0700 (PDT) (envelope-from glenn@nola.srrc.usda.gov) Received: from nola.srrc.usda.gov (localhost.srrc.usda.gov [127.0.0.1]) by symbion.srrc.usda.gov (8.8.8/8.8.8) with ESMTP id LAA27848; Thu, 9 Jul 1998 11:09:03 -0500 (CDT) (envelope-from glenn@nola.srrc.usda.gov) Message-Id: <199807091609.LAA27848@symbion.srrc.usda.gov> X-Mailer: exmh version 2.0.2 2/24/98 To: Manfred Antar cc: ports@FreeBSD.ORG From: Glenn Johnson Subject: Re: windowmaker 0.16.1 does not compile on -CURRENT In-reply-to: Your message of "Wed, 08 Jul 1998 21:33:11 PDT." <199807090433.VAA00578@pozo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 09 Jul 1998 11:09:03 -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > At 10:51 PM 7/8/98 -0500, Glenn Johnson wrote: > >I get the following when trying to build the windowmaker 0.16.1 port: > > > >`/usr/ports/x11/windowmaker/work/WindowMaker-0.16.1/src' > >gcc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I../wrlib -I../WINGs > >-I../libPropList -DSHAPE -DNLSDIR="\"/usr/local/lib/locale\"" > >-DPKGDATADIR="\"/usr/local/share/WindowMaker\"" > -DPIXMAPDIR="\"/usr/X11R6/inclu > >de/X11/pixmaps\"" -g -O2 -Wall -Wno-implicit-int -finline-functions -c > >actions.c > >In file included from actions.c:38: > >icon.h:55: parse error before `WMHandlerID' > >icon.h:55: warning: no semicolon at end of struct or union > > Same thing happened to me. > I did pkg_delete windowmaker 0.16.0 , and it built fine > Manfred Thanks for the reply. I tried that and it worked, but it still seems that something is wrong. I usually do a "make" first to verify that the port builds. Once the port builds, then I do a pkg_delete, followed by a "make install". It seems that a port should build without having to do a pkg_delete first. Having to do pkg_delete before the build implies that the new version is using parts of the old version to build and it seems that would not be the "right thing to do". -- Glenn Johnson Technician USDA, ARS, SRRC New Orleans, LA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 10:31:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17214 for freebsd-ports-outgoing; Thu, 9 Jul 1998 10:31:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17208 for ; Thu, 9 Jul 1998 10:31:51 -0700 (PDT) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id LAA11682; Thu, 9 Jul 1998 11:29:53 -0600 (MDT) (envelope-from brett@peloton.physics.montana.edu) Date: Thu, 9 Jul 1998 11:29:52 -0600 (MDT) From: Brett Taylor To: Glenn Johnson cc: Manfred Antar , ports@FreeBSD.ORG Subject: Re: windowmaker 0.16.1 does not compile on -CURRENT In-Reply-To: <199807091609.LAA27848@symbion.srrc.usda.gov> 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 usually do a "make" first to verify that the port builds. Once the > port builds, then I do a pkg_delete, followed by a "make install". It > seems that a port should build without having to do a pkg_delete first. > Having to do pkg_delete before the build implies that the new version is > using parts of the old version to build and it seems that would not be > the "right thing to do". But this is NOT an unusual experience. Try installing TeX and LaTeX, then decide you want teTeX instead. Or lyx w/ just the LaTeX install. Or some of the tcl/tk ports. Note I'm not trying to defend this port behavior but it certainly happens. If you're worried about it (ports usually build - really) then you could always do a make package of the old one so you could just pkg_add your old package if the new port fails to build. Brett *********************************************************** Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ How many Microsoft employees does it take to change a light bulb? Zero. They declared Darkness[tm] the standard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 11:48:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA02710 for freebsd-ports-outgoing; Thu, 9 Jul 1998 11:48:58 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from solaris.matti.ee (root@solaris.matti.ee [194.126.98.135]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA02705 for ; Thu, 9 Jul 1998 11:48:54 -0700 (PDT) (envelope-from vallo@matti.ee) Received: from myhakas.matti.ee (myhakas [194.126.98.150]) by solaris.matti.ee (8.8.8/8.8.8.s) with SMTP id VAA12684 for ; Thu, 9 Jul 1998 21:48:42 +0300 (EET DST) Date: Thu, 9 Jul 1998 21:48:43 +0300 (EEST) From: Vallo Kallaste X-Sender: root@myhakas.matti.ee To: freebsd-ports@FreeBSD.ORG Subject: mkhybrid port doesn't compile under -current 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 Hello ! I have seen such behavior for a while now... about 4 weeks or so. Mkhybrid port compiles without any modifications under 2.2.5-RELEASE, I don't know other branches, but under -current it's broken. Personally I'm using that nice program about an half year, compiled it under 2.2.5 and used under -current. Must I send a PR ? Maybe some other more knowledgeable people can do that? Vallo Kallaste vallo@matti.ee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 12:10:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA06173 for freebsd-ports-outgoing; Thu, 9 Jul 1998 12:10:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA06134 for ; Thu, 9 Jul 1998 12:10:06 -0700 (PDT) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id NAA12150 for ; Thu, 9 Jul 1998 13:08:56 -0600 (MDT) (envelope-from brett@peloton.physics.montana.edu) Date: Thu, 9 Jul 1998 13:08:56 -0600 (MDT) From: Brett Taylor To: freebsd-ports@FreeBSD.ORG Subject: Pine-4.00 out! 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 all, Just a note - Pine-4.00 is out. Is anyone interested in updating this? I'd take a look at it but I'm completely overloaded right now. New features include some HTML support including URL recognition and viewer dispatch. If no one gets to this I'll take a look at it this weekend. Brett *********************************************************** Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ How many Microsoft employees does it take to change a light bulb? Zero. They declared Darkness[tm] the standard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 12:35:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA11386 for freebsd-ports-outgoing; Thu, 9 Jul 1998 12:35:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from the.oneinsane.net (insane@gw.oneinsane.net [207.113.133.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA11365 for ; Thu, 9 Jul 1998 12:35:07 -0700 (PDT) (envelope-from insane@the.oneinsane.net) Received: (from insane@localhost) by the.oneinsane.net (8.9.0/8.9.0) id MAA09781; Thu, 9 Jul 1998 12:34:57 -0700 (PDT) Message-ID: <19980709123457.A9454@oneinsane.net> Date: Thu, 9 Jul 1998 12:34:57 -0700 From: "Ron 'The Insane One' Rosson" To: Glenn Johnson Cc: freebsd-ports@FreeBSD.ORG Subject: Re: windowmaker 0.16.1 does not compile on -CURRENT Mail-Followup-To: Glenn Johnson , freebsd-ports@freebsd.org References: <199807090433.VAA00578@pozo.com> <199807091609.LAA27848@symbion.srrc.usda.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807091609.LAA27848@symbion.srrc.usda.gov>; from Glenn Johnson on Thu, Jul 09, 1998 at 11:09:03AM -0500 X-Operating-System: FreeBSD the.oneinsane.net 2.2.6-STABLE X-Opinion: What you read here is my IMHO X-Disclaimer: I am a firm believer in RTFM X-WWW: http://www.oneinsane.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just a small note.. I grabbed the source directly from http://www.windowmaker.org for 16.1 and compiled it on my 2.2.6-STABLE box with WindowMaker Running. Everything went fine and installed. The main piece of information is that There are no FreeBSD patches. Just shareing my experience. Ron On Thu, Jul 09, 1998 at 11:09:03AM -0500, Glenn Johnson wrote: > > At 10:51 PM 7/8/98 -0500, Glenn Johnson wrote: > > >I get the following when trying to build the windowmaker 0.16.1 port: > > > > > >`/usr/ports/x11/windowmaker/work/WindowMaker-0.16.1/src' > > >gcc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I../wrlib -I../WINGs > > >-I../libPropList -DSHAPE -DNLSDIR="\"/usr/local/lib/locale\"" > > >-DPKGDATADIR="\"/usr/local/share/WindowMaker\"" > > -DPIXMAPDIR="\"/usr/X11R6/inclu > > >de/X11/pixmaps\"" -g -O2 -Wall -Wno-implicit-int -finline-functions -c > > >actions.c > > >In file included from actions.c:38: > > >icon.h:55: parse error before `WMHandlerID' > > >icon.h:55: warning: no semicolon at end of struct or union > > > > Same thing happened to me. > > I did pkg_delete windowmaker 0.16.0 , and it built fine > > Manfred > > Thanks for the reply. I tried that and it worked, but it still seems that > something is wrong. > > I usually do a "make" first to verify that the port builds. Once the port > builds, then I do a pkg_delete, followed by a "make install". It seems that a > port should build without having to do a pkg_delete first. Having to do > pkg_delete before the build implies that the new version is using parts of the > old version to build and it seems that would not be the "right thing to do". > -- > Glenn Johnson > Technician > USDA, ARS, SRRC > New Orleans, LA > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- -------------------------------------------------------- Ron Rosson ... and a UNIX user said ... The InSaNe One rm -rf * insane@oneinsane.net and all was null and void -------------------------------------------------------- It's so nice to be insane, nobody asks you to explain. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 12:48:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13918 for freebsd-ports-outgoing; Thu, 9 Jul 1998 12:48:34 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from 207.181.100.74 (stn-on1-10.netcom.ca [207.181.100.74]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA13512; Thu, 9 Jul 1998 12:47:02 -0700 (PDT) (envelope-from dp3000@cheney.net) Date: Thu, 9 Jul 1998 12:47:02 -0700 (PDT) Message-Id: <199807091947.MAA13512@hub.freebsd.org> From: dp3000@cheney.net To: @FreeBSD.ORG Subject: Online Marketing X-Reply-To: xroma@netcom.ca Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ONLINE MARKETING - THE NEXT GENERATION OF ADVERTISING/MARKETING Complete Online Marketing Solutions: At Estroco Technologies, we provide all the tools necessary to promote your business/organization. Whether your goal is: to have people come to your website, or to prospect for orders of products, we can help. Note all prices are in US$ funds. We provide the following solutions: 1. Bulk Email Services Let us send out your ad for you. It can be of any length, but must not be illegal in nature, or be of a pornographic nature. The list below, is a general pricing. We can customize how many you want sent out. 100,000 - 200 200,000 - 345 400,000 - 875 600,000 - 1,100 800,000 - 1,300 1,000,000 - 1,400 2,000,000 - 2,200 2. WebSite Search Engine Promotion One key factor for getting people to go to your website, is to have your site on search engines. The more search engines you are listed on, the more hits from your attended audience you'll receive. When including this option, we need the following criteria: - website to be submitted - keywords to be used(max. 25) - Title of Web Site - 30 word description Also, we allow multiple submissions, which will allow maximum exposure. As well, ever so often, sites will bump your listing down so it is a good idea to have the same site, submitted at least once a month, to guarantee to maintain your listing at the top. Our prices: 100 engines & directories - 15.00 200 engines & directories - 25.00 500 engines & directories - 45.00 3. Email Lists Ok. So you want to do your own bulk emailings. Well, we have our own bulk emailing lists, which are cleaned of remove requests, flames, etc. Also, we have much more on stock. 500,000 - 220.00 1,000,000 - 350.00 4. Targeted Mailings & Targeted Email Lists We also have targeted email addresses, and also can retrieve targeted email addresses. Minimum order of 5,000, due to the large work involved. Prices are per 5,000 @ 100.00. For Targeted Mailings prices are per 5,000 as well. Per 5,000 @ $200.00. 5. Web Page Design Let us create your web page, with state of the art design & graphics. To get started on this, you will need to send us a proposal, either by email, fax, or snail mail. If possible please send us a competitive price so we can work out and negotiate the web site to be designed. 6. Customized Graphics We can customize any graphics you desire. For example do you need customized pictures, a company logo, a banner, or any type of graphical illustration. We can do all. Contact us on what you need, and we will reply with a price quote. 7. Bulk Email Software We are distributors for one of the best bulk email packages out there. Express Mail Server transforms your computer into a powerful mail server. Let us show you the benefits of this amazing software. As well, you can receive a free 3-day fully-functional demo, which will give you time to actually try out the program package. the program retails regularly for: $299, but if you mention this ad, we will give it to you for $225. 8. Web Page Maintenance We also can maintain your web page, and make changes as you require them. The prices can be negotiated on this. For further info. please email us, or phone us. 9. Credit Card Merchant Account We have arrangements with a major credit card processor, which will allow you to obtain a pre-approved merchant account. You can then accept credit cards on your web-site, or be able to receive orders, form email messages sent out, etc. They also have various other services that they provide. Email us for more information. Do you have a deal to make with us?? Send us some info. on your proposal and we will look at it. If we want to go from there, we will negotiate fairly. We are always coming out with new services and products. Do you have any new ideas that we can add to our extensive list of products/services. Drop us a line, and we will certainly look over it. If there's something that's not here, we probably came out with it, or will come out with it. Just contact us and we will see what we can do. How to order or Contact us: As stated above, prices are in US. Funds. We accept as payment, check, money order, or bank transfer. For check's and money orders please send to our postal address. For bank transfer's please email, or phone us, for further instructions. To place an order, send a proposal, or to discuss anything with us: Postal Address: Estroco Technologies 32983 Wills Road Wainfleet, Ontario, Canada L0S 1V0 Email: xroma@netcom.ca Phone/Fax: (905) 899-3508 Thanks for your attention and time Note: if you don't wish to receive further mailings, please respond to our email address stating this, and you will not receive any mailings from us or will not be place on any email lists, etc. You will just be transferred to our permanent remove list, which will guarantee you receive no mailings form us, or any mailings form lists sold by us. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 16:06:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12094 for freebsd-ports-outgoing; Thu, 9 Jul 1998 16:06:17 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA12076 for ; Thu, 9 Jul 1998 16:06:11 -0700 (PDT) (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id DAA29367; Fri, 10 Jul 1998 03:05:59 +0400 (MSD) (envelope-from ache) Message-ID: <19980710030559.A27687@nagual.pp.ru> Date: Fri, 10 Jul 1998 03:05:59 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Brett Taylor , freebsd-ports@FreeBSD.ORG Subject: Re: Pine-4.00 out! Mail-Followup-To: Brett Taylor , freebsd-ports@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: ; from brett@peloton.physics.montana.edu on Thu, Jul 09, 1998 at 01:08:56PM -0600 Organization: Biomechanoid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Jul 09, 1998 at 01:08:56PM -0600, Brett Taylor wrote: > Just a note - Pine-4.00 is out. Is anyone interested in updating this? > I'd take a look at it but I'm completely overloaded right now. > > New features include some HTML support including URL recognition and > viewer dispatch. > > If no one gets to this I'll take a look at it this weekend. If you'll have some success in this direction please send me your patches. Please not drop any current pine patches too unless the authors already implement the same functionality. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 16:41:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16642 for freebsd-ports-outgoing; Thu, 9 Jul 1998 16:41:01 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from horst.bfd.com (horst.bfd.com [204.160.242.10] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA16637 for ; Thu, 9 Jul 1998 16:40:59 -0700 (PDT) (envelope-from ejs@bfd.com) Received: from HARLIE.bfd.com (bastion.bfd.com [204.160.242.14]) by horst.bfd.com (8.8.8/8.8.8) with SMTP id QAA22652; Thu, 9 Jul 1998 16:40:29 -0700 (PDT) (envelope-from ejs@bfd.com) Date: Thu, 9 Jul 1998 16:40:29 -0700 (PDT) From: "Eric J. Schwertfeger" To: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= cc: Brett Taylor , freebsd-ports@FreeBSD.ORG Subject: Re: Pine-4.00 out! In-Reply-To: <19980710030559.A27687@nagual.pp.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from QUOTED-PRINTABLE to 8bit by hub.freebsd.org id QAA16638 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 10 Jul 1998, [koi8-r] áÎÄÒÅÊ þÅÒÎÏ× wrote: > On Thu, Jul 09, 1998 at 01:08:56PM -0600, Brett Taylor wrote: > > Just a note - Pine-4.00 is out. Is anyone interested in updating this? > > I'd take a look at it but I'm completely overloaded right now. > > > > New features include some HTML support including URL recognition and > > viewer dispatch. > > > > If no one gets to this I'll take a look at it this weekend. > > If you'll have some success in this direction please send me your patches. > Please not drop any current pine patches too unless the authors already > implement the same functionality. It seems that all the FreeBSD mods were rolled into 4.00, all I did was s/3.96/4.00/ on the make file, mv files/md5 files/md5.dist, rm -rf patches, and make install did its magic. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 16:43:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16944 for freebsd-ports-outgoing; Thu, 9 Jul 1998 16:43:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA16937 for ; Thu, 9 Jul 1998 16:43:04 -0700 (PDT) (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id DAA04887; Fri, 10 Jul 1998 03:42:57 +0400 (MSD) (envelope-from ache) Message-ID: <19980710034257.A2220@nagual.pp.ru> Date: Fri, 10 Jul 1998 03:42:57 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: "Eric J. Schwertfeger" Cc: Brett Taylor , freebsd-ports@FreeBSD.ORG Subject: Re: Pine-4.00 out! Mail-Followup-To: "Eric J. Schwertfeger" , Brett Taylor , freebsd-ports@FreeBSD.ORG References: <19980710030559.A27687@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: ; from ejs@bfd.com on Thu, Jul 09, 1998 at 04:40:29PM -0700 Organization: Biomechanoid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Jul 09, 1998 at 04:40:29PM -0700, Eric J. Schwertfeger wrote: > It seems that all the FreeBSD mods were rolled into 4.00, all I did was Are you sure? Did you check each and every patch? > s/3.96/4.00/ on the make file, mv files/md5 files/md5.dist, rm -rf > patches, and make install did its magic. Pine 3.96 can be builded/installed without patches too, but *then* it works incorrectly in many places. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 17:06:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19760 for freebsd-ports-outgoing; Thu, 9 Jul 1998 17:06:48 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from horst.bfd.com (horst.bfd.com [204.160.242.10] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA19752 for ; Thu, 9 Jul 1998 17:06:47 -0700 (PDT) (envelope-from ejs@bfd.com) Received: from HARLIE.bfd.com (bastion.bfd.com [204.160.242.14]) by horst.bfd.com (8.8.8/8.8.8) with SMTP id RAA23255; Thu, 9 Jul 1998 17:06:37 -0700 (PDT) (envelope-from ejs@bfd.com) Date: Thu, 9 Jul 1998 17:06:37 -0700 (PDT) From: "Eric J. Schwertfeger" To: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= cc: Brett Taylor , freebsd-ports@FreeBSD.ORG Subject: Re: Pine-4.00 out! In-Reply-To: <19980710034257.A2220@nagual.pp.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from QUOTED-PRINTABLE to 8bit by hub.freebsd.org id RAA19753 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 10 Jul 1998, [koi8-r] áÎÄÒÅÊ þÅÒÎÏ× wrote: > On Thu, Jul 09, 1998 at 04:40:29PM -0700, Eric J. Schwertfeger wrote: > > It seems that all the FreeBSD mods were rolled into 4.00, all I did was > > Are you sure? Did you check each and every patch? Turns out I got bored too soon, there are some that aren't there. It's hard to tell what patches are still applicable, as just about all the file names changed. All of the relevant *.bsf files are there, so the largest of the patches are superceded. > > s/3.96/4.00/ on the make file, mv files/md5 files/md5.dist, rm -rf > > patches, and make install did its magic. Oops, missed mv ./work/pine4.00/pico/libpico.so.1.3 ./work/pine4.00/bin between make and make install. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 17:25:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA21294 for freebsd-ports-outgoing; Thu, 9 Jul 1998 17:25:37 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from thelab.hub.org (tc-24.acadiau.ca [131.162.2.124]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA21273 for ; Thu, 9 Jul 1998 17:25:34 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.8.8/8.8.2) with ESMTP id VAA08150; Thu, 9 Jul 1998 21:25:22 -0300 (ADT) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Thu, 9 Jul 1998 21:25:21 -0300 (ADT) From: The Hermit Hacker To: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= cc: "Eric J. Schwertfeger" , Brett Taylor , freebsd-ports@FreeBSD.ORG Subject: Re: Pine-4.00 out! In-Reply-To: <19980710034257.A2220@nagual.pp.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 10 Jul 1998, [koi8-r] áÎÄÒÅÊ þÅÒÎÏ× wrote: > On Thu, Jul 09, 1998 at 04:40:29PM -0700, Eric J. Schwertfeger wrote: > > It seems that all the FreeBSD mods were rolled into 4.00, all I did was > > Are you sure? Did you check each and every patch? > > > s/3.96/4.00/ on the make file, mv files/md5 files/md5.dist, rm -rf > > patches, and make install did its magic. > > Pine 3.96 can be builded/installed without patches too, but *then* it > works incorrectly in many places. Just curious, but where? I generally build pine 'out of the box', and except for Mark's opinion that /var/mail should be 1777, I've never noticed any problems with 3.96... What's the point of having a './build fbd' if it doesn't build correctly for FreeBSD? Marc G. Fournier Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 19:11:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA03766 for freebsd-ports-outgoing; Thu, 9 Jul 1998 19:11:29 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from bubble.didi.com (cs11k24.ppp.infoweb.or.jp [202.219.191.40]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA03746; Thu, 9 Jul 1998 19:11:21 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id KAA08068; Fri, 10 Jul 1998 10:55:42 +0900 (JST) (envelope-from asami) Date: Fri, 10 Jul 1998 10:55:42 +0900 (JST) Message-Id: <199807100155.KAA08068@bubble.didi.com> To: jkoshy@FreeBSD.ORG CC: ports@FreeBSD.ORG, jkoshy@FreeBSD.ORG In-reply-to: <199807081128.EAA02089@freefall.freebsd.org> (message from Joseph Koshy on Wed, 8 Jul 1998 04:28:57 -0700 (PDT)) Subject: Re: A peculiar port; advice requested ... From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * 2. The install process involves a recompilation of (a) the runtime system * and (b) the SML/NJ standard libraries. The default installation * process expects to do this `in-place' in the final installation * directory tree. * * I'm somehow not comfortable with a compilation under /usr/local as * part of `make'; however is it acceptable? Does any other port do * anything similar? Please change it if possible. But if it's really really hard, you can leave it that way. In that case, please do the compilation in the install target, rather than doing the installation in the build target. :) * 3. Is creating a new hierarchy root say "${PREFIX}/sml-nj" ok? The default * installation expects "bin", "bin.${ARCH}", "lib" etc. under * this `ROOT'. Changing the installation to confirm to a more * conventional "/usr/local/*/" structure would make a FreeBSD SML/NJ * installation different from the other unix installations. Do * we have a strict policy on directory hierarchies? Again, please change it if possible, but if you think that is very hard or it will cause a great hardship to SML/NJ users, that's fine. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 19:56:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA08957 for freebsd-ports-outgoing; Thu, 9 Jul 1998 19:56:29 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA08952 for ; Thu, 9 Jul 1998 19:56:27 -0700 (PDT) (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id GAA07430; Fri, 10 Jul 1998 06:56:07 +0400 (MSD) (envelope-from ache) Message-ID: <19980710065606.A3998@nagual.pp.ru> Date: Fri, 10 Jul 1998 06:56:06 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: The Hermit Hacker Cc: "Eric J. Schwertfeger" , Brett Taylor , freebsd-ports@FreeBSD.ORG Subject: Re: Pine-4.00 out! Mail-Followup-To: The Hermit Hacker , "Eric J. Schwertfeger" , Brett Taylor , freebsd-ports@FreeBSD.ORG References: <19980710034257.A2220@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: ; from scrappy@hub.org on Thu, Jul 09, 1998 at 09:25:21PM -0300 Organization: Biomechanoid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Jul 09, 1998 at 09:25:21PM -0300, The Hermit Hacker wrote: > > Pine 3.96 can be builded/installed without patches too, but *then* it > > works incorrectly in many places. > > Just curious, but where? I generally build pine 'out of the box', > and except for Mark's opinion that /var/mail should be 1777, I've never > noticed any problems with 3.96... It will be more simple to look at the patches directly to understand what they do than describe what 'incorrectly' means in plain English, at least for me. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 20:20:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA11331 for freebsd-ports-outgoing; Thu, 9 Jul 1998 20:20:27 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from bubble.didi.com (cs11k07.ppp.infoweb.or.jp [202.219.191.23]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA11324 for ; Thu, 9 Jul 1998 20:20:23 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id LAA08170; Fri, 10 Jul 1998 11:41:02 +0900 (JST) (envelope-from asami) Date: Fri, 10 Jul 1998 11:41:02 +0900 (JST) Message-Id: <199807100241.LAA08170@bubble.didi.com> To: dom@myrddin.demon.co.uk CC: ports@FreeBSD.ORG In-reply-to: (message from Dom Mitchell on Wed, 08 Jul 1998 20:02:07 +0100) Subject: Re: how to depend on /usr/src? From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Is there a way that one can issue a depend on something in /usr/src? I * would like to write a port for gxditview, the source of which is in * /usr/src/contrib/groff/xditview. * * Also, how can woudl I write fetch and extract? Something like this? Look at japanese/handbook. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 20:24:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA11753 for freebsd-ports-outgoing; Thu, 9 Jul 1998 20:24:39 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA11747 for ; Thu, 9 Jul 1998 20:24:35 -0700 (PDT) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain (localhost [127.0.0.1]) by cain.gsoft.com.au (8.8.8/8.6.9) with ESMTP id MAA03003; Fri, 10 Jul 1998 12:53:49 +0930 (CST) Message-Id: <199807100323.MAA03003@cain.gsoft.com.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: dannyman cc: pierced@geocities.com, ports@FreeBSD.ORG Subject: Re: DHCP Client In-reply-to: Your message of "Thu, 09 Jul 1998 09:06:47 EST." <19980709090647.B25967@enteract.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 10 Jul 1998 12:53:49 +0930 From: "Daniel O'Connor" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Actually whats a bit annoying is there is no program I've seen which gets a > > DHCP lease and actually tells you about it, instead of setting your interfa > > up automatically.. (which means its a bastard to test a DHCP server) > We just commandeer other users' Windows boxen here. :) Heh, yeah I do that too, but it still irks me :) Oh well, maybe time for dhcp_test or something ;) --------------------------------------------------------------------- |Daniel O'Connor software and network engineer for Genesis Software | |http://www.gsoft.com.au | |The nice thing about standards is that there are so many of them to| |choose from. -- Andrew Tanenbaum | --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 23:06:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA25484 for freebsd-ports-outgoing; Thu, 9 Jul 1998 23:06:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA25479 for ; Thu, 9 Jul 1998 23:06:32 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id IAA23640; Fri, 10 Jul 1998 08:06:23 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id IAA13144; Fri, 10 Jul 1998 08:06:21 +0200 (CEST) To: The Hermit Hacker Cc: ports@FreeBSD.ORG Subject: Re: generating PLIST... References: From: Thomas Gellekum Date: 10 Jul 1998 08:06:21 +0200 In-Reply-To: The Hermit Hacker's message of "Thu, 09 Jul 1998 11:46:05 -0400 (EDT)" Message-ID: <87vhp6xmsi.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 15 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The Hermit Hacker writes: > Apologies for fixing it :-) > , but I didn't think that there would be > any outcry against it :( I didn't mean to sound harsh, sorry. I just noticed that your fixes made it more difficult to apply the patches Stefan already has. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jul 9 23:18:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA26876 for freebsd-ports-outgoing; Thu, 9 Jul 1998 23:18:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA26871 for ; Thu, 9 Jul 1998 23:18:14 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id IAA23656; Fri, 10 Jul 1998 08:18:05 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id IAA13170; Fri, 10 Jul 1998 08:18:03 +0200 (CEST) To: "Ron 'The Insane One' Rosson" Cc: Glenn Johnson , freebsd-ports@FreeBSD.ORG Subject: Re: windowmaker 0.16.1 does not compile on -CURRENT References: <199807090433.VAA00578@pozo.com> <199807091609.LAA27848@symbion.srrc.usda.gov> <19980709123457.A9454@oneinsane.net> From: Thomas Gellekum Date: 10 Jul 1998 08:18:03 +0200 In-Reply-To: "Ron 'The Insane One' Rosson"'s message of "Thu, 9 Jul 1998 12:34:57 -0700" Message-ID: <87sokaxm90.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 22 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Ron 'The Insane One' Rosson" writes: > Just a small note.. I grabbed the source directly from > http://www.windowmaker.org for 16.1 and compiled it on my 2.2.6-STABLE > box with WindowMaker Running. Everything went fine and installed. > > The main piece of information is that There are no FreeBSD patches. > Just shareing my experience. > Ron > > On Thu, Jul 09, 1998 at 11:09:03AM -0500, Glenn Johnson wrote: > > > At 10:51 PM 7/8/98 -0500, Glenn Johnson wrote: > > > >I get the following when trying to build the windowmaker 0.16.1 port: > > > > > > > >`/usr/ports/x11/windowmaker/work/WindowMaker-0.16.1/src' > > > >gcc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I../wrlib -I../WINGs ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This is the problem. The preprocessor picks up the installed wraster.h before the new one from ../wrlib. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 04:37:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27629 for freebsd-ports-outgoing; Fri, 10 Jul 1998 04:37:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA27624; Fri, 10 Jul 1998 04:37:41 -0700 (PDT) (envelope-from dburr@FreeBSD.org) From: Donald Burr Received: (from dburr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA03934; Fri, 10 Jul 1998 04:37:40 -0700 (PDT) Date: Fri, 10 Jul 1998 04:37:40 -0700 (PDT) Message-Id: <199807101137.EAA03934@freefall.freebsd.org> To: dburr@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, dburr@FreeBSD.ORG Subject: Re: ports/6155 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: emulators/vice, Versatile Commodore 8-bit Emulator Responsible-Changed-From-To: freebsd-ports->dburr Responsible-Changed-By: dburr Responsible-Changed-When: Fri Jul 10 04:36:26 PDT 1998 Responsible-Changed-Why: I'll look at this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 04:38:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27755 for freebsd-ports-outgoing; Fri, 10 Jul 1998 04:38:57 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA27747; Fri, 10 Jul 1998 04:38:53 -0700 (PDT) (envelope-from dburr@FreeBSD.org) From: Donald Burr Received: (from dburr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA04012; Fri, 10 Jul 1998 04:38:52 -0700 (PDT) Date: Fri, 10 Jul 1998 04:38:52 -0700 (PDT) Message-Id: <199807101138.EAA04012@freefall.freebsd.org> To: dcarmich@mcs.com, dburr@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, dburr@FreeBSD.ORG Subject: Re: ports/5667 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: I have ported the VICE 0.13.0 Commodore emulator to FreeBSD State-Changed-From-To: analyzed-closed State-Changed-By: dburr State-Changed-When: Fri Jul 10 04:37:53 PDT 1998 State-Changed-Why: Superseded by PR ports/6155. Responsible-Changed-From-To: freebsd-ports->dburr Responsible-Changed-By: dburr Responsible-Changed-When: Fri Jul 10 04:37:53 PDT 1998 Responsible-Changed-Why: I'm handling all the vice ports stuff. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 09:47:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04874 for freebsd-ports-outgoing; Fri, 10 Jul 1998 09:47:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from bubble.didi.com (cs11m01.ppp.infoweb.or.jp [202.219.191.113]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA04864 for ; Fri, 10 Jul 1998 09:47:16 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id AAA08720; Sat, 11 Jul 1998 00:16:18 +0900 (JST) (envelope-from asami) Date: Sat, 11 Jul 1998 00:16:18 +0900 (JST) Message-Id: <199807101516.AAA08720@bubble.didi.com> To: dburr@POBoxes.com CC: freebsd-ports@FreeBSD.ORG In-reply-to: (message from Donald Burr on Thu, 09 Jul 1998 03:38:56 -0700 (PDT)) Subject: Re: Two versions of a port, how to handle? From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Should I make a "mkhybrid" and "mkhybrid-devel" port? Or a "mkhybrid11" * and "mkhybrid12" port (a' la squid11/squid12)? Probably the latter. But either way, don't create new ports yourself. Let me do a repository copy first. Drop me a note when you decide. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 13:45:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA09891 for freebsd-ports-outgoing; Fri, 10 Jul 1998 13:45:52 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from thelab.hub.org (tc-25.acadiau.ca [131.162.2.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA09792 for ; Fri, 10 Jul 1998 13:45:39 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.8.8/8.8.2) with SMTP id RAA08785; Fri, 10 Jul 1998 17:19:14 -0300 (ADT) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Fri, 10 Jul 1998 17:19:14 -0300 (ADT) From: The Hermit Hacker To: Thomas Gellekum cc: ports@FreeBSD.ORG Subject: Re: generating PLIST... In-Reply-To: <87vhp6xmsi.fsf@ghpc6.ihf.rwth-aachen.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 10 Jul 1998, Thomas Gellekum wrote: > The Hermit Hacker writes: > > > Apologies for fixing it > > :-) > > > , but I didn't think that there would be > > any outcry against it :( > > I didn't mean to sound harsh, sorry. > > I just noticed that your fixes made it more difficult to apply the > patches Stefan already has. How so? I imagine when Stefan is ready, he can just replace what I put there, he shouldn't have to add or conform to it. I just wanted to get it UNBROKEN so that it was at least usable...if someone wants to replace what is there with something better, so be it, but at least ppl can now use what is there... Marc G. Fournier Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 13:50:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA11987 for freebsd-ports-outgoing; Fri, 10 Jul 1998 13:50:32 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA11729; Fri, 10 Jul 1998 13:49:39 -0700 (PDT) (envelope-from ady@warpnet.ro) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) with SMTP id PAA07381; Fri, 10 Jul 1998 15:26:35 +0300 (EEST) (envelope-from ady@warpnet.ro) Date: Fri, 10 Jul 1998 15:26:35 +0300 (EEST) From: Adrian Penisoara To: FreeBSD ports cc: Satoshi Asami Subject: Arrangements for new port of Pine 4.00 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, Right now I'm beating on finishing up the port of the freshly released Pine 4.00; unfortunately this new release comes with many changes (and some 'bsf' makefiles for FreeBSD !) that requires extended work on them right now... I (and many others I think) believe that Pine 3.96 must not vanish too soon, not until 4.00 is proven stable enough; that's why I believe we need separate port directories for the two of them. One of them will be _identical_ with the current 'mail/pine' and will take care of Pine 3.96 and another new one (that has some changes from the original) that will be for Pine 4.00. I propose 'mail/pine3' and 'mail/pine4'. Asami please make sure you arrage things for the current 'mail/pine' to become 'mail/pine3' and "reserve" the place for 'mail/pine4'; I know you need to make some preparations for CVS maintainace. PS: I may need some help porting Pine 4.00 ; I would be very interested to get in touch with the porter of Pine 3.96 ! Thank you, Adrian Penisoara Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:17:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22317 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:17:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA21803; Fri, 10 Jul 1998 17:13:54 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04296; Fri, 10 Jul 1998 17:13:44 -0700 (PDT) Date: Fri, 10 Jul 1998 17:13:44 -0700 (PDT) Message-Id: <199807110013.RAA04296@freefall.freebsd.org> To: mega@rodan.misc.hit-u.ac.jp, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6305 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New ports collection: ja-libslang State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Jul 10 17:13:33 PDT 1998 State-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:19:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22783 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:19:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22517; Fri, 10 Jul 1998 17:17:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04608; Fri, 10 Jul 1998 17:17:35 -0700 (PDT) Date: Fri, 10 Jul 1998 17:17:35 -0700 (PDT) Message-Id: <199807110017.RAA04608@freefall.freebsd.org> To: bgingery@gtcs.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4281 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Compress pcl graphics files - this is an OLD utility State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Jul 10 17:15:34 PDT 1998 State-Changed-Why: This has been around for a long time and nobody has stepped up to the plate. If you would like to create the port I would be happy to commit it for you, otherwise considering its current dormant state nothing will happen. :( To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:19:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22878 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:19:29 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22669; Fri, 10 Jul 1998 17:18:30 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04687; Fri, 10 Jul 1998 17:18:12 -0700 (PDT) Date: Fri, 10 Jul 1998 17:18:12 -0700 (PDT) Message-Id: <199807110018.RAA04687@freefall.freebsd.org> To: hetzels@westbend.net, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7188 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: SSLeay unable to locate file to patch State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Jul 10 17:17:47 PDT 1998 State-Changed-Why: Mark Murray fixed this not too long ago. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:20:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23016 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:20:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22838; Fri, 10 Jul 1998 17:19:15 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04774; Fri, 10 Jul 1998 17:19:06 -0700 (PDT) Date: Fri, 10 Jul 1998 17:19:06 -0700 (PDT) Message-Id: <199807110019.RAA04774@freefall.freebsd.org> To: steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, vanilla@FreeBSD.ORG Subject: Re: ports/7193 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix port: change to new distribute location Responsible-Changed-From-To: freebsd-ports->vanilla Responsible-Changed-By: steve Responsible-Changed-When: Fri Jul 10 17:18:33 PDT 1998 Responsible-Changed-Why: Pass this to the port maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:20:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23421 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:20:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA23246; Fri, 10 Jul 1998 17:20:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04880; Fri, 10 Jul 1998 17:20:20 -0700 (PDT) Date: Fri, 10 Jul 1998 17:20:20 -0700 (PDT) Message-Id: <199807110020.RAA04880@freefall.freebsd.org> To: jgrosch@MooseRiver.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4264 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mftp get a Segmentation fault State-Changed-From-To: feedback-closed State-Changed-By: steve State-Changed-When: Fri Jul 10 17:19:16 PDT 1998 State-Changed-Why: This has been around for a long time and I still don't think anyone has figured out what port installs 'mftp'. I you could enlighten us I would be happy to take a look into fixing it for you. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:22:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23898 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:22:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA23765; Fri, 10 Jul 1998 17:21:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04967; Fri, 10 Jul 1998 17:21:34 -0700 (PDT) Date: Fri, 10 Jul 1998 17:21:34 -0700 (PDT) Message-Id: <199807110021.RAA04967@freefall.freebsd.org> To: eilts@tor.muc.de, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/3169 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: nn port broken State-Changed-From-To: open-feedback State-Changed-By: steve State-Changed-When: Fri Jul 10 17:20:38 PDT 1998 State-Changed-Why: Does this problem still exist? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:24:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24237 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:24:00 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24128; Fri, 10 Jul 1998 17:23:20 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA05045; Fri, 10 Jul 1998 17:23:13 -0700 (PDT) Date: Fri, 10 Jul 1998 17:23:13 -0700 (PDT) Message-Id: <199807110023.RAA05045@freefall.freebsd.org> To: bgingery@gtcs.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/3657 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port of NCSA HyperNews submitted as p5-hypernews State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Jul 10 17:21:41 PDT 1998 State-Changed-Why: Unless someone wants to step I'm afraid this port will never get committed. Anyone who uses this and wants to take a stab at it, please do and give me a jingle when you get done. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:25:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24591 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:25:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24411; Fri, 10 Jul 1998 17:24:43 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA05126; Fri, 10 Jul 1998 17:24:29 -0700 (PDT) Date: Fri, 10 Jul 1998 17:24:29 -0700 (PDT) Message-Id: <199807110024.RAA05126@freefall.freebsd.org> To: helbig@MX.BA-Stuttgart.De, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4127 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: netscape-3.01: get rid of bogus error message State-Changed-From-To: open-feedback State-Changed-By: steve State-Changed-When: Fri Jul 10 17:23:27 PDT 1998 State-Changed-Why: Does this problem still exist? The netscape3 port now installs version 3.04 and not the 3.01 that you mention. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:25:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24683 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:25:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24515; Fri, 10 Jul 1998 17:25:07 -0700 (PDT) (envelope-from ady@warpnet.ro) Received: from scouter.warpnet.ro (scouter.warpnet.ro [193.230.201.90]) by ady.warpnet.ro (8.8.8/8.8.8) with SMTP id DAA10838; Sat, 11 Jul 1998 03:25:01 +0300 (EEST) (envelope-from ady@warpnet.ro) Date: Sat, 11 Jul 1998 03:23:42 +0300 (EEST) From: Adrian Penisoara To: FreeBSD ports cc: Satoshi Asami Subject: Re: Arrangements for new port of Pine 4.00 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 Hi, On Fri, 10 Jul 1998, Adrian Penisoara wrote: > separate port directories for the two of them. One of them will be > _identical_ with the current 'mail/pine' and will take care of Pine 3.96 > and another new one (that has some changes from the original) that will be > for Pine 4.00. I propose 'mail/pine3' and 'mail/pine4'. > > Asami please make sure you arrage things for the current 'mail/pine' to > become 'mail/pine3' and "reserve" the place for 'mail/pine4'; I know you > need to make some preparations for CVS maintainace. Update: I believe the port of Pine 4.00 is ready to hit the CVS tree. Compared to the old 3.96 port the 4.00 port has pretty much changed (over 4 files and a directory deleted, BTW). Is the 'mail/pine3' : 'mail/pine4' scheme OK with you ? Please announce me when you have finished the repository copy. Pine 3.96 -> mail/pine -> mail/pine3 Pine 4.00 --------------> mail/pine4 Thanks, Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:30:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA25871 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:30:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA25654; Fri, 10 Jul 1998 17:29:56 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA05606; Fri, 10 Jul 1998 17:29:46 -0700 (PDT) Date: Fri, 10 Jul 1998 17:29:46 -0700 (PDT) Message-Id: <199807110029.RAA05606@freefall.freebsd.org> To: dom@myrddin.demon.co.uk, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7217 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update of gxedit to 1.06 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Jul 10 17:29:33 PDT 1998 State-Changed-Why: Update committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:33:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA26602 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:33:38 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA26447; Fri, 10 Jul 1998 17:32:57 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA05929; Fri, 10 Jul 1998 17:32:50 -0700 (PDT) Date: Fri, 10 Jul 1998 17:32:50 -0700 (PDT) Message-Id: <199807110032.RAA05929@freefall.freebsd.org> To: nobu@psrc.isac.co.jp, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7205 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update ports/japanese/less with newer pathes State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Jul 10 17:31:24 PDT 1998 State-Changed-Why: Suggested patches committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:34:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA26724 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:34:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA26242 for ; Fri, 10 Jul 1998 17:32:03 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id TAA05636; Fri, 10 Jul 1998 19:30:38 -0500 (CDT) Date: Fri, 10 Jul 1998 19:30:38 -0500 (CDT) From: Steve Price To: mega@rodan.misc.hit-u.ac.jp, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6305 In-Reply-To: <199807110013.RAA04296@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 Fri, 10 Jul 1998, Steve Price wrote: # Synopsis: New ports collection: ja-libslang # # State-Changed-From-To: open-closed # State-Changed-By: steve # State-Changed-When: Fri Jul 10 17:13:33 PDT 1998 # State-Changed-Why: # Oops, I forgot to say, "Superceded by PR# 7206.". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:38:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA27938 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:38:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA27774; Fri, 10 Jul 1998 17:37:56 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA06255; Fri, 10 Jul 1998 17:37:49 -0700 (PDT) Date: Fri, 10 Jul 1998 17:37:49 -0700 (PDT) Message-Id: <199807110037.RAA06255@freefall.freebsd.org> To: martin@eunet.cz, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7194 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: man pages being installed with wrong owner and permissions State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Jul 10 17:34:18 PDT 1998 State-Changed-Why: I have committed a temporary hack to fix this, but I'm sure Mark Murray will want to fix this his way when he gets back from his voyage. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 17:39:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA28192 for freebsd-ports-outgoing; Fri, 10 Jul 1998 17:39:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA28014; Fri, 10 Jul 1998 17:39:03 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA06363; Fri, 10 Jul 1998 17:38:53 -0700 (PDT) Date: Fri, 10 Jul 1998 17:38:53 -0700 (PDT) Message-Id: <199807110038.RAA06363@freefall.freebsd.org> To: andy@icc.surw.chel.su, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7179 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xlines State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Jul 10 17:38:31 PDT 1998 State-Changed-Why: Suggested patches committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 18:00:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAB00970 for freebsd-ports-outgoing; Fri, 10 Jul 1998 18:00:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA00953 for ; Fri, 10 Jul 1998 18:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA07251; Fri, 10 Jul 1998 18:00:01 -0700 (PDT) Date: Fri, 10 Jul 1998 18:00:01 -0700 (PDT) Message-Id: <199807110100.SAA07251@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: "Scot W. Hetzel" Subject: Re: ports/7188 - Partially closed Reply-To: "Scot W. Hetzel" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7188; it has been noted by GNATS. From: "Scot W. Hetzel" To: Cc: Subject: Re: ports/7188 - Partially closed Date: Fri, 10 Jul 1998 19:54:50 -0500 From: Steve Price >Synopsis: SSLeay unable to locate file to patch > >State-Changed-From-To: open-closed >State-Changed-By: steve >State-Changed-When: Fri Jul 10 17:17:47 PDT 1998 >State-Changed-Why: >Mark Murray fixed this not too long ago. > I just updated my ports collection and checked the SSLeay port. This PR is partially closed, ./files/Makefile.patch is fixed, but the ./Makefile is still using BUILD_DEPENDS instead of LIB_DEPENDS. When it tries to find the rsaref library the Makefile proceed to re-build it. Try: edit /etc/rc.conf and set USA_RESIDENT to YES cd /usr/ports/security/rsaref make install make clean cd ../SSLeay make build It will fail to find the rsaref library and will proceed to rebuild it. When the rsaref hits the install stage it will fail because the port is already installed. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jul 10 19:29:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11965 for freebsd-ports-outgoing; Fri, 10 Jul 1998 19:29:06 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from diana.infonets.hiroshima-u.ac.jp (diana.infonets.hiroshima-u.ac.jp [133.41.33.53]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11911; Fri, 10 Jul 1998 19:27:25 -0700 (PDT) (envelope-from taoka@infonets.hiroshima-u.ac.jp) Received: from cal.infonets.hiroshima-u.ac.jp (cal.infonets.hiroshima-u.ac.jp [133.41.33.61]) by diana.infonets.hiroshima-u.ac.jp (8.8.5/3.5Wpl5) with ESMTP id LAA28949; Sat, 11 Jul 1998 11:27:17 +0900 (JST) Received: from localhost (localhost.infonets.hiroshima-u.ac.jp [127.0.0.1]) by cal.infonets.hiroshima-u.ac.jp (8.8.8/3.5Wpl5) with ESMTP id LAA10080; Sat, 11 Jul 1998 11:27:16 +0900 (JST) To: FreeBSD-gnats@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4412: New port: YaTeX (in print and japanese) From: Satoshi Taoka In-Reply-To: Your message of "Thu, 28 Aug 1997 22:40:01 -0700 (PDT)" <199708290540.WAA12351@hub.freebsd.org> References: <199708290540.WAA12351@hub.freebsd.org> X-Mailer: Mew version 1.92.4 on XEmacs 20.4 (Emerald) X-Prom-Mew: Prom-Mew 1.92.9 (procmail reader for Mew) X-URL: http://www.infonets.hiroshima-u.ac.jp/~taoka/ Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19980711112715M.taoka@infonets.hiroshima-u.ac.jp> Date: Sat, 11 Jul 1998 11:27:15 +0900 X-Dispatcher: imput version 971024 Lines: 138 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: FreeBSD-gnats@FreeBSD.ORG Subject: Re: ports/4412: New port: YaTeX (in print and japanese) Date: Thu, 28 Aug 1997 22:40:01 -0700 (PDT) Message-ID: <199708290540.WAA12351@hub.freebsd.org> This is a update ports of the above PR by the following reason: - New version (YaTeX 1.65.6) was released by author - Adding new port, japanese/yatex-xemacs, that is for japanese/xemacs-*. (Note that if you use editors/xemacs or editors/xemacs-mule, please use print/yatex.) Satoshi TAOKA Department of Circuits and Systems, Faculty of Engineering, Hiroshima University, Kagamiyama 1-4-1, Higashi-Hiroshima City, Hiroshima, 739, Japan E-Mail: taoka@infonets.hiroshima-u.ac.jp begin 644 yatex-980711.tar.gz M'XL(`!W'IC4"`^T]:WO:QM+Y:OV*"7&.H;4`<7-BAYRZ1DG<^O8`:=+G^#06 M:#&R0:*2L./C>?(T+2OFM`%2*I0K]0JE3]#^T+EG'Z;$''L9'+%K&'A^&$#;Z_58.W0\%_J2#Z#C^=OPJ]5D M'[5G\`OS`ZKUV>]#QV?V]IJ1K92S%:RJ(?M`VV?X@\5KQ@MXPUI9,%Z^?(&U M'[I>'TO7&E;H!5T'FH1L>,5Q_H/C=CR7A4&VZ_A4V[?T8=9J9R\&K[5GV'A] M'7^TDY_?'NT>FO^LKEU8.F=670Z^M]LTWQ[7]\T&U0EVAH'ON*&F';X_,*MK M:S^7MNOCW+9+/WCT%-;(*4]^1M<4_M_<'G^\#K@ MCO(_OU4IY`V2!4:A8A17\O\;T?_D8+_1?$3Y7\@7BIS^QM96I5(6\K]DK.3_ M8UP]IY7K#WLL%S@ATWM.,)":&6=;3%L+<6-VPWTL`P;_)$,;+9!C+ MMI.!F'N5#'3.W&2@KL/N`'09W`&H-T@&PMIDH+[NW0$H["8##?QV,E#`%@'] MBCKWX[N#$U322ZN9>ZZ1?A?]72CW3`NZEL]RMM>>8!677<_4#`/FZXZ+.[77 MFZG\W7)M:WXI'W[^,#[KS*\A+L.B^94LBW_F5Q%/+6QWL;@=3H1/\P?LO0W_ M`KT#SVLYCB?;\>'?\,F];

U;77/VO?V9]JQT\L`EX1_NO;.0-+.?ZOV@45O;?MZ/_ MP[H!][/_T18TL$%^1?]O2_^'.4W+/,;IE$V M=B'ZEW2K#^8`[=S3OY@SANIJS&>9E;/QOZ3_'_88*/'\QRC'YS^&T/^%\DK_ MK\Y_9L]_E.,?P:O1*9#VT3S!SQTM%Q-<:XZ[^?QYW?ZEDX/XW MBENK\_]'I_]7.?Q/E/]&OD0^GZ1_<6N+XC]&9>7_K>2_*O]K^XVF4`"<65^^ MR)?SE4*Q:"B9`0O2`K!&I`,<[C::9OU38[])N0+=,!QLYW+7U]=9='4'68ME M+YGCB:%S_[T9#B\H7*J MKBW54P,K;'=1K[W9/S`;R>!$OH"0PT$3NKX\UWB\9Q)P'`;2/M1_;M3W>"W> M\DK>V#\^&J&V[8"-3.,R.ZWHXHSVX_O]@]JGFGEB'M40[4)M;Z_? MGAS7FPW>%;.=T/,#Z3KH=%C!,>Y>=B;@QL8J5FCH_=A.1]/D!*H1+S9WZV]- MR2J"<;%MP]QKGC* MZ@T9>!W8K=4X<^(:FN@J><.>C3NPU_.NP:*MV,?Y(!@G72=M9#2U074M';#P M=^AYEJTCLW0A;0T&.`ZDT0\+X?34):2>GH:GIV@1F4C8DYB26!8#9.).,ADL MGB"N6!A?Y-3*HI.F:'4+68+?(S<)@B_L2U8_4[$8P4H\3B!@WKA\0/*`YT[D MR/Q`Z4'C",([\^`$"[JL-Q'#@,D"\KMKQWMB1Z`O&RC>.F?F2()GUFT<2:Y<1SOT(2\.MZ;N_0X\F$> M?)+KBP.M$`5*08ES@A*EY/-1@IN@1`GC.A'G`R4>"4K0$90@G]*&AQ!!B>P! M*'%/&,=YXR8B6*O9GMX:.CU[6ULC='.S`>6C&GR#_2/O]][Q]%%-S/5M>-/1[NU70*0MS,@4KX2B+R=79+D>KZL2'7, MZX/LFC=]>#UW+H=:F>CC:>M<9:8`(K87RT;;P4L%5;:",V!-[B# M/IJQ&53(9TN;(-4+:3Q(X]X:R^W(2&@Q-,K[ELVP"ZL3H@C\V7(O'#3I;6Y8 M*/K)(4/?O6)^"!W?HXBLTPGA`HO3APV=-\M@+Z$'YON][&(=OI9NV\#-092G M(Q)L`BH]XBHUF=#0Z+/X1)71A4*+PZ'428 MWH'`NF+RD8^?&1N9MA>)LNVIA4=KYD8QS)A5LEJ2^E-MM[DKH(3POWL+4I03 MT-,#1QN7EZN"^$S*(5"W)/P1"=Y4L+F]"9OGJ;-()L\97:7RF.6G!R7NC_"F MV@E'QZ022?%F)F:L*,J1MC:)U-DIH+E`/T)_SS2/"#7P@C`FU>)I_!`/T-BK M[Y\T)S?LA/*:/]0:]OTO>$I\$^-!'+CLH.?`7(E*H=WN=KHRV9&@I,,G&VT$ M+N*KD:B'R#".&_)1QR:*PB^@N$&I"0F9XFUB@RNE,DHJ6L:[42RH: MDY!*>/@5N7(4`D%7[O7?+`@\$S'X"E'@.^=_&4:^E*?X;Z&TRO_Y5O3OVP^- M]Z3S/T/D__#SOT*YP.._Y:U5_/SL/M/^7R7^C4J;]7Z3T MSWRQ4!'G_X75_G^4\Y^GN9;CHB6*=MGEN6OU677=T+2]DRIYL=LZQ3A&&OD/ M5>%&8!&/;HPTBE]411@#"WE48Z35#ZMDTF%!_1`?T?BMK`QX=7+^5ZQZE9#/3M44CO"'?^6YM->X.I#ZN%U(H M-S^FQMLH%?D#Y/L(1RQ58ST6.NXY,#?T;WA?%)*/>CM-"==\_58BB[L#J2FW MCK6['D@8CK*%3AW:Q-*:UGD(0==MF@!3!XA].G7,**2!BZ/5G9W[;(!3_6W] M5D$QS1?;1621L5#:5Q33/!LC`+AM?E\4+.@VI3A7#%*YJ2GE-N,2I",N1C@R M)'`6]LD]L`5UV99UR8<4L9TE4(MK>7OR=Q)&09^/]0)$._OLA)#7\/GQY/]# M2_]$^5\JY/G[__D"MQ-Y_G\EOY+_WU+^1]'P:AP81Q$[CI>/OEQ!S&J$B9`& MEHIP]DB3P>KJ.&R-=5$L^T'T"#^3]^PQ#(]"2Q@1GHYAV.>!"D8A:`621ZCO MH)BP+A`9%E4U`D,+B\/7?P[]I89S%!6F!KT625%%W,,X4K5$*%*(J^T-W;!J M:&LB!,X^6RA^V"9U!#X+ACU^\'W6'H80AB'H-FS3)`IG%,_&DBQ\Z-[\$^>G MT#U6C-O:VG67]&9\!"+T(LD?OJ2/2I1T0J'2B-%HZWR69X2?&"-K+9^1T*:N M:"7BM\>J]^A1M"(^XSMPJB7GT<26R*'S&A+C+FTK*9HZDR=2J(;Y68A.S*TC M7^KF4;/^*RKD66OA3.&,6+6/&TJ.QH8QX\N`(EVO7\_I4NUHWCQ2R9E'E4N^N45)80#'Y&!Z\2__`]&&?QF9'L?M>V MEUI%H9=@%D8]?9%E>!^#$#?-QN1IV@8\G=@:D=48<];_QW#\`EOO&UIZ1/?[ M$76QH3ON9W+=*7C]>MD4^!D#:7>1+P2I26JED"E.-6D12][(_0:Y7%*_,],A MI"N*N)E)MJE(1#Z;A5GDM#K@,Y#10JHB"1 MM/^EV<_]`^X8:)IB.[X[1MV=RXK$,25C*/?;SLYWH&8-0?H7YF?'Z4$90(!U MTA!H$"^%8ZZ]GK-Y^L>KJ1%16_#$7ML+Y12T6TT><+YZ91Z_T7;F7$G36G9I M(I73&H8>3V33+4KAU/A^2;?)?A=_4Z=X45[#>@HV1/HS@6>F6V8R6IJ***U3 M!804OT]!2DV?.R"J`]6C:LK@XK0=,1]J1MEJE#2;ZO&6F:C.OG(*<>5G?`3] MG'GP??[[/.@!%`ET!_8[<.,-*3N,6@R"2[!X6JV%)OXFKY(I+01!UK_(?R7U M&79]QJ#GN"S(*J-R$:93M$AF=$"*WG-L34Q-`(5>#-*;#R)7,(;CDX3G'7@> MPO,`569OX(N5!`/6=CHW-#-+3;>A?7-(6;`(@]0RJ@V>8?/3?F,3"E7^4ZR: M[_?&8XL<]%`7.=Y1LH$U`;8FN#E((@N&`3JLI6YD2E'ES\'SGW'%1 M9M]0'K_G4W-!1[DB9!F6/<_"J33$;SN>-\I`ZP8Q36M`_\@)C9=\91XG1->B MQ**0LHF&KDQ2Y"1QV>>0TX'(,$#'0N6H#10*H=[SVI>Z)&L`&[V8-<72Y!;Y ME6<50MJ2G$=/DH/E1MB9OQ-V8-Y>R%)[L164GF;WPL[$9AB#TFZ@AZGM\*YY M>*#N!OC@HVU#*$*SV[KR^%/+]ZY1Z;`FIJ%%*&:3M^>C^#CP7W9DV`[X`$1G=_;%Q?/"^:2)MG,_`\[W) MG"1;\GW]@!=,CT9E^M#O3>)P(YU.Y;I>G^7$*PR#8:OGM#\)1&0AI;SWT+_! M.8))`UDJTCLBRGY*\PSB<+I]6$-LXM MF6J\LOKFVW]?Y>./3^[U_1^C1+D`1L$H55;Y']^"_GO'AX?FT8-^_C$Q_P.V M*M'Y;S%?H/R?8J&TLO\?Y9IO]H'GRK>DTB))CALY,SIZ)4G_7J77;&66@..2GS&&ZEO^ MI3X<1+X-ND3M+CF29Z; M^D-T(%#H'3;TVG$C77Q1R6QR)P[2^#=TM`/+/1^B#0^FV[70$A>^D`=OC]X+ M28GP-!'NZ%!/V`T-C&Z4R_A[I>@'7""S";>!WE+@(?M-^*^T5]%S:';17:#9 MH>L51.$8389C-M3`W$863GK,0A>9/O\S1$W_F/)63H MK=%J77KUW6I?$EW):[]&EXN8C3M\/!H*UP[Z5?)UR7WRP+4K1C%\E!G<"QLK MPTUQ2R\R(E*%$O5!:$SV&=VM<<=4AXX@[PVG5P\&O/ M[]G(2DB**"5>K#Q&__G0L8DIJ0T]\SW@BFVE+?Q@&_89Q_2TQ-?45[KR[Z#_ M'_SC[\GZWRAOE>+OOPO[WS!6]O^C7,H+VGHOVI_!<=K[$ Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13200 for freebsd-ports-outgoing; Fri, 10 Jul 1998 19:40:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA13176 for ; Fri, 10 Jul 1998 19:40:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA10054; Fri, 10 Jul 1998 19:40:01 -0700 (PDT) Received: from daetalus.his.com (daetalus.his.com [205.252.81.47]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA13071 for ; Fri, 10 Jul 1998 19:39:58 -0700 (PDT) (envelope-from apple@daetalus.his.com) Received: (from apple@localhost) by daetalus.his.com (8.8.8/8.8.8) id WAA02914; Fri, 10 Jul 1998 22:39:54 -0400 (EDT) (envelope-from apple) Message-Id: <199807110239.WAA02914@daetalus.his.com> Date: Fri, 10 Jul 1998 22:39:54 -0400 (EDT) From: James Saint-Rossy Reply-To: appleseed@his.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7244: update to tkrat-1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7244 >Category: ports >Synopsis: diff to update tkrat to ver 1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 10 19:40:01 PDT 1998 >Last-Modified: >Originator: Appleseed@his.com >Organization: >Release: FreeBSD 2.2.6-STABLE i386 >Environment: The attached diffs update the mail/tkrat prot to 1.1. This problem report replaces 6743. It includes additional fixes and has been thoroughly tested. >Description: Tkrat is a fullfeatured Mail User Agent for X. It is unique in that it interfaces directly with sendmail and dosen't require MH. >How-To-Repeat: >Fix: Before applying the diff delete the following files. patches/patch-ab patches/patch-ac patches/patch-ad diff -urN tkrat/Makefile tkrat11/Makefile --- tkrat/Makefile Sun Dec 7 06:20:50 1997 +++ tkrat11/Makefile Sun Jun 7 14:45:26 1998 @@ -1,43 +1,43 @@ -# New ports collection Makefile for: TkRat -# Version required: 1.0.5 +# New ports collection makefile for: tkrat +# Version required: 1.1 # Date created: 24 October 1997 # Whom: Bruce Gingery # -# $Id: Makefile,v 1.3 1997/12/07 07:21:20 hoek Exp $ +# $Id$ # -DISTNAME= tkrat-1.0.5 +DISTNAME= tkrat-1.1 CATEGORIES= mail tk80 MASTER_SITES= ftp://ftp.md.chalmers.se/pub/tkrat/ \ ftp://ftp.sunet.se/pub/unix/mail/tkrat/ -# NOTE: "fetch" fails on FreeBSD 2.2.1 for "no-login", but ncftp succeeds -# from commandline, or script invocation. -MAINTAINER= bgingery@gtcs.com +MAINTAINER= James Saint-Rossy BUILD_DEPENDS= tclsh8.0:${PORTSDIR}/lang/tcl80 -LIB_DEPENDS= c-client\\.2\\.1:${PORTSDIR}/mail/imap-uw \ - tk80\\.1:${PORTSDIR}/x11/tk80 +LIB_DEPENDS= tcl80\\.1\\.2:${PORTSDIR}/lang/tcl80 \ + tk80\\.1\\.2:${PORTSDIR}/x11/tk80 \ + c-client\\.2\\.1:${PORTSDIR}/mail/imap-uw GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-shared=yes \ - --with-tcl-config=${PREFIX}/lib/tcl8.0 \ + +CONFIGURE_ARGS= --with-tcl-config=${PREFIX}/lib/tcl8.0 \ --with-tk-config=${PREFIX}/lib/tk8.0 -DOCFILES= CONFIGURATION COPYRIGHT README doc/interface doc/userprocs \ +DOCFILES= CONFIGURATION COPYRIGHT README doc/interface doc/userprocs \ doc/userproc.example post-install: .if !defined(NOPORTDOCS) - @${ECHO_MSG} "===> Copying documents to ${PREFIX}/${PORTDOCDIR}" - @${MKDIR} ${PREFIX}/share/doc/tkrat + ${ECHO_MSG} "===> Copying documents to ${PREFIX}/${PORTDOCDIR}" + ${MKDIR} ${PREFIX}/share/doc/tkrat .for f in ${DOCFILES} - ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/tkrat + ${INSTALL_MAN} ${WRKSRC}/${f} ${PREFIX}/share/doc/tkrat .endfor .else - @${ECHO_MSG} "===> Not copying available documents" + ${ECHO_MSG} "===> Not copying available documents" .endif - @${MKDIR} ${PREFIX}/lib/ratatosk + ${MKDIR} ${PREFIX}/lib/ratatosk ${INSTALL_DATA} ${FILESDIR}/ratatoskrc ${PREFIX}/lib/ratatosk + /bin/chmod ugo+wt /var/mail .include diff -urN tkrat/files/md5 tkrat11/files/md5 --- tkrat/files/md5 Fri Nov 14 17:51:08 1997 +++ tkrat11/files/md5 Sun May 24 16:33:45 1998 @@ -1 +1 @@ -MD5 (tkrat-1.0.5.tar.gz) = 9dac94afd014cdb37af73fb21e29a971 +MD5 (tkrat-1.1.tar.gz) = 25a77aaf11db7286900a82b97084a4a9 diff -urN tkrat/patches/patch-aa tkrat11/patches/patch-aa --- tkrat/patches/patch-aa Fri Nov 14 17:51:10 1997 +++ tkrat11/patches/patch-aa Sun May 24 15:36:57 1998 @@ -1,27 +1,11 @@ -*** Makefile.in.orig Tue Oct 21 16:00:48 1997 ---- Makefile.in Sun Nov 9 00:44:42 1997 -*************** -*** 15,26 **** - all: build - - build: -- -cd imap-4.1; \ -- if test "`cat OSTYPE 2>/dev/null`" = "${OSTYPE}" ; then \ -- ${MAKE}; \ -- else \ -- ${MAKE} ${OSTYPE}; \ -- fi - cd lib; ${MAKE} - cd script; ${MAKE} - cd tkrat; ${MAKE} ---- 15,20 ---- -*************** -*** 32,38 **** - cd misc; ${MAKE} install - - clean: -- cd imap-4.1; ${MAKE} clean - cd lib; ${MAKE} clean - cd script; ${MAKE} clean - cd tkrat; ${MAKE} clean ---- 26,31 ---- +--- configure.back Sat May 16 13:48:48 1998 ++++ configure Sat May 16 14:27:13 1998 +@@ -1994,7 +1994,7 @@ + for i in $tcl_dirs ; do + tcl_include_dirs="$tcl_include_dirs $i/include" + done +-tcl_include_dirs="$tcl_include_dirs /usr/include/tcl /usr/include" ++tcl_include_dirs="$tcl_include_dirs /usr/local/include/tcl8.0 /usr/local/include/tk8.0 /usr/include" + tcl_dir=0 + for i in $tcl_include_dirs ; do + if test -r $i/tcl.h ; then diff -urN tkrat/pkg/COMMENT tkrat11/pkg/COMMENT --- tkrat/pkg/COMMENT Fri Nov 14 17:51:09 1997 +++ tkrat11/pkg/COMMENT Sun May 24 15:36:57 1998 @@ -1 +1 @@ -An advanced scriptable GUI Mail UA for X-, Win32 and Mac +A mail user agent for X with a Tcl/Tk user interface. diff -urN tkrat/pkg/PLIST tkrat11/pkg/PLIST --- tkrat/pkg/PLIST Fri Nov 14 17:51:10 1997 +++ tkrat11/pkg/PLIST Sun May 24 15:36:57 1998 @@ -20,6 +20,9 @@ lib/tkratlib/show.tcl lib/tkratlib/source.tcl lib/tkratlib/tclIndex +lib/tkratlib/text_balText_en.tcl +lib/tkratlib/text_balText_it.tcl +lib/tkratlib/text_balText_sv.tcl lib/tkratlib/text_changes_en.tcl lib/tkratlib/text_changes_it.tcl lib/tkratlib/text_changes_sv.tcl >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 Jul 11 00:07:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA05595 for freebsd-ports-outgoing; Sat, 11 Jul 1998 00:07:01 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@pm2-5.sba1.avtel.net [207.71.218.105]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA05516; Sat, 11 Jul 1998 00:06:14 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id AAA28057; Sat, 11 Jul 1998 00:05:09 -0700 (PDT) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199807110020.RAA04880@freefall.freebsd.org> Date: Sat, 11 Jul 1998 00:04:48 -0700 (PDT) Organization: Computer Help From: Donald Burr To: Steve Price , freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/4264 Cc: freebsd-ports@FreeBSD.ORG, jgrosch@MooseRiver.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My secret spy satellite informs me that on 11-Jul-98, Steve Price wrote: > Synopsis: mftp get a Segmentation fault > > State-Changed-From-To: feedback-closed > State-Changed-By: steve > State-Changed-When: Fri Jul 10 17:19:16 PDT 1998 > State-Changed-Why: > This has been around for a long time and I still don't think > anyone has figured out what port installs 'mftp'. I you could > enlighten us I would be happy to take a look into fixing it for > you. Thanks. Found it. It's ${PORTSDIR}/net/moxftp. This isn't immediately obvious (i.e. a grep of /usr/ports won't find it) because the PLIST is generated on-the-fly. --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. ----------------------------------------------------------------------- FreeBSD - Turning PCs into Workstations - http://www.freebsd.org/ (NOTE: POBoxes.com appears to be working again -- fire away!) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 00:10:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA06003 for freebsd-ports-outgoing; Sat, 11 Jul 1998 00:10:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA05996 for ; Sat, 11 Jul 1998 00:10:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA16541; Sat, 11 Jul 1998 00:10:01 -0700 (PDT) Date: Sat, 11 Jul 1998 00:10:01 -0700 (PDT) Message-Id: <199807110710.AAA16541@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Donald Burr Subject: Re: ports/4264 Reply-To: Donald Burr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/4264; it has been noted by GNATS. From: Donald Burr To: Steve Price , freebsd-gnats-submit@freebsd.org Cc: freebsd-ports@freebsd.org, jgrosch@MooseRiver.com Subject: Re: ports/4264 Date: Sat, 11 Jul 1998 00:04:48 -0700 (PDT) My secret spy satellite informs me that on 11-Jul-98, Steve Price wrote: > Synopsis: mftp get a Segmentation fault > > State-Changed-From-To: feedback-closed > State-Changed-By: steve > State-Changed-When: Fri Jul 10 17:19:16 PDT 1998 > State-Changed-Why: > This has been around for a long time and I still don't think > anyone has figured out what port installs 'mftp'. I you could > enlighten us I would be happy to take a look into fixing it for > you. Thanks. Found it. It's ${PORTSDIR}/net/moxftp. This isn't immediately obvious (i.e. a grep of /usr/ports won't find it) because the PLIST is generated on-the-fly. --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. ----------------------------------------------------------------------- FreeBSD - Turning PCs into Workstations - http://www.freebsd.org/ (NOTE: POBoxes.com appears to be working again -- fire away!) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 02:01:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA13963 for freebsd-ports-outgoing; Sat, 11 Jul 1998 02:01:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA13957; Sat, 11 Jul 1998 02:01:33 -0700 (PDT) (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id NAA02059; Sat, 11 Jul 1998 13:01:29 +0400 (MSD) (envelope-from ache) Message-ID: <19980711130129.A633@nagual.pp.ru> Date: Sat, 11 Jul 1998 13:01:29 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Adrian Penisoara , FreeBSD ports Cc: Satoshi Asami Subject: Re: Arrangements for new port of Pine 4.00 Mail-Followup-To: Adrian Penisoara , FreeBSD ports , Satoshi Asami References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: ; from ady@warpnet.ro on Fri, Jul 10, 1998 at 03:26:35PM +0300 Organization: Biomechanoid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Jul 10, 1998 at 03:26:35PM +0300, Adrian Penisoara wrote: > I (and many others I think) believe that Pine 3.96 must not vanish too > soon, not until 4.00 is proven stable enough; that's why I believe we need I disagree, there is no major functionality changes in 4.00 to make separate port for it. I plan to overwrite 3.96 port with 4.00 one when I'll find time for it. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 02:24:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA15782 for freebsd-ports-outgoing; Sat, 11 Jul 1998 02:24:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA15668; Sat, 11 Jul 1998 02:23:48 -0700 (PDT) (envelope-from ady@warpnet.ro) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) with ESMTP id MAA14830; Sat, 11 Jul 1998 12:22:53 +0300 (EEST) (envelope-from ady@warpnet.ro) Date: Sat, 11 Jul 1998 12:22:53 +0300 (EEST) From: Adrian Penisoara Reply-To: Adrian Penisoara To: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= cc: FreeBSD ports , Satoshi Asami Subject: Re: Arrangements for new port of Pine 4.00 In-Reply-To: <19980711130129.A633@nagual.pp.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Sat, 11 Jul 1998, [koi8-r] áÎÄÒÅÊ þÅÒÎÏ× wrote: > On Fri, Jul 10, 1998 at 03:26:35PM +0300, Adrian Penisoara wrote: > > I (and many others I think) believe that Pine 3.96 must not vanish too > > soon, not until 4.00 is proven stable enough; that's why I believe we need > > I disagree, there is no major functionality changes in 4.00 to make > separate port for it. I plan to overwrite 3.96 port with 4.00 one when > I'll find time for it. Well, Pine 4.00 has already shown signs of "beta phase instability" -- the Pine Team just announced that part of the sources (specifically the imap daemon) has security problems: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >From gray@cac.washington.edu Sat Jul 11 12:06:52 1998 Date: Fri, 10 Jul 1998 23:44:59 -0700 (Pacific Daylight Time) From: Terry Gray To: pine-announce@u.washington.edu Subject: Attention: Please update your imapd Just after Pine 4.00 was released, we were made aware of a security problem with the imapd server that is included in the Pine 4.00 distribution. This will be fixed in the Pine 4.01 maintenance release, but in the mean time, if you are using the UW IMAP server, please update it with the following distribution: ftp://ftp.cac.washington.edu/mail/imap.tar.Z We don't have new imapd binaries available yet. Pine itself is not affected. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - I personally still use Pine 3.96 on production machines and I will not switch over to Pine 4.00 until it proves to be less buggy/more stable. I believe many people will want to stick with 3.96 until the future 4.01 will gain trust (remember there are *many* changes in the sources of 4.00 compared to 3.96 and I have faced some probles in the porting process). And besides, the form of the port has pretty much changed -- I will submit it soon on a 'send-pr'. Personally I'm still in the favor of making it a separate port, it will require just a change on the MASTER_SITES for the old 3.96 to survive. > > -- > Andrey A. Chernov > http://www.nagual.pp.ru/~ache/ > MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y > PS: please CC: to me, as majordomo somehow managed to kick me off freebsd-ports sometime during these latest days... Thanks ! Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 02:42:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA17523 for freebsd-ports-outgoing; Sat, 11 Jul 1998 02:42:34 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA17515; Sat, 11 Jul 1998 02:42:31 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id LAA04627; Sat, 11 Jul 1998 11:42:40 +0200 (MEST) (envelope-from kuku) Message-ID: <19980711114240.A4616@gil.physik.rwth-aachen.de> Date: Sat, 11 Jul 1998 11:42:40 +0200 From: Christoph Kukulies To: jmz@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: mgetty port [gert@greenie.muc.de: Re: tcsetattr failed: invalid argument] Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm forwarding this to you as the maintainer of the freebsd port Perhaps you can set the respective default value as suggested below. Thanks. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de ----- Forwarded message from Gert Doering ----- Received: from ns.crynwr.com (ns.crynwr.com [192.203.178.14]) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) with SMTP id LAA04514 for ; Sat, 11 Jul 1998 11:06:41 +0200 (MEST) (envelope-from mgetty-return-2770-kuku=gilberto.physik.rwth-aachen.de@crynwr.com) Received: (qmail 16231 invoked by alias); 11 Jul 1998 09:04:46 -0000 Mailing-List: contact mgetty-help@crynwr.com; run by ezmlm Delivered-To: mailing list mgetty@crynwr.com Received: (qmail 16211 invoked by uid 0); 11 Jul 1998 09:04:45 -0000 Received: from colin.muc.de??MX? (HELO colin.muc.de) (root@193.174.4.1) by pdam.crynwr.com with SMTP; 11 Jul 1998 09:04:45 -0000 Received: from greenie.muc.de ([193.174.156.65]) by colin.muc.de with SMTP id <140559-2>; Sat, 11 Jul 1998 11:04:02 +0200 Received: from mobile by greenie.muc.de via rmail with uucp id for greenie.muc.de!mgetty; Sat, 11 Jul 1998 11:03:29 +0200 (MEST) (Smail-3.2 1996-Jul-4 #4 built -Feb-21) Received: by mobile via sendmail with stdio id for mgetty@greenie.muc.de; Sat, 11 Jul 1998 00:34:46 +0200 (CEST) (Smail-3.2 1996-Jul-4 #2 built 1998-Jun-25) Message-Id: From: gert@greenie.muc.de (Gert Doering) Subject: Re: tcsetattr failed: invalid argument To: kuku@gilberto.physik.rwth-aachen.de (Christoph Kukulies) Date: Sat, 11 Jul 1998 00:34:46 +0200 Cc: gert@greenie.muc.de, kuku@gilberto.physik.rwth-aachen.de, mgetty@greenie.muc.de In-Reply-To: <19980710163616.A28281@gil.physik.rwth-aachen.de> from "Christoph Kukulies" at Jul 10, 98 04:36:16 pm Content-Type: text Hi, Christoph Kukulies wrote: > On Fri, Jul 10, 1998 at 12:28:29AM +0200, Gert Doering wrote: > > > 07/09 19:16:01 aa0 autobauding: switch to 14400 bps > > > 07/09 19:16:01 aa0 tcsetattr failed: Invalid argument [..] > Then I wonder why it is the default selection during the interactive > configuration dialog. It should not be. It's definitely not needed for any recent modem (I think my Discovery 2400P needs it, because it has no error control, and no buffering to handle different speeds...). > I'm not sure though where the defaults are set > and whether it isn't a deficiency of the FreeBSD port. Ah... the wonders of the FreeBSD ports. Which version of mgetty is that? If it's a current version (1.1.14 and up), it's obviously still maintained, so maybe someone should talk to the port maintainer, and make sure that he doesn't fiddle with the default settings! It makes support much harder for me if some defaults are changed to insane values, like in this case. gert -- Gert Doering Mobile communications ... right now writing from *AWAY* :-)) ... mobile phone: +49 177 2160221 ... or mail me: gert@greenie.muc.de ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 02:58:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA18211 for freebsd-ports-outgoing; Sat, 11 Jul 1998 02:58:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA18206; Sat, 11 Jul 1998 02:58:16 -0700 (PDT) (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id NAA08831; Sat, 11 Jul 1998 13:55:28 +0400 (MSD) (envelope-from ache) Message-ID: <19980711135527.A7441@nagual.pp.ru> Date: Sat, 11 Jul 1998 13:55:27 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Adrian Penisoara Cc: FreeBSD ports , Satoshi Asami Subject: Re: Arrangements for new port of Pine 4.00 Mail-Followup-To: Adrian Penisoara , FreeBSD ports , Satoshi Asami References: <19980711130129.A633@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.91.1i In-Reply-To: ; from ady@warpnet.ro on Sat, Jul 11, 1998 at 12:22:53PM +0300 Organization: Biomechanoid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Jul 11, 1998 at 12:22:53PM +0300, Adrian Penisoara wrote: > Hi, > > On Sat, 11 Jul 1998, [koi8-r] áÎÄÒÅÊ þÅÒÎÏ× wrote: > > > On Fri, Jul 10, 1998 at 03:26:35PM +0300, Adrian Penisoara wrote: > > > I (and many others I think) believe that Pine 3.96 must not vanish too > > > soon, not until 4.00 is proven stable enough; that's why I believe we need > > > > I disagree, there is no major functionality changes in 4.00 to make > > separate port for it. I plan to overwrite 3.96 port with 4.00 one when > > I'll find time for it. > > Well, Pine 4.00 has already shown signs of "beta phase instability" -- > the Pine Team just announced that part of the sources (specifically the > imap daemon) has security problems: Our port do not build/install imap daemon. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 03:06:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA18519 for freebsd-ports-outgoing; Sat, 11 Jul 1998 03:06:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA18509; Sat, 11 Jul 1998 03:06:33 -0700 (PDT) (envelope-from ady@warpnet.ro) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) with ESMTP id NAA16238; Sat, 11 Jul 1998 13:05:56 +0300 (EEST) (envelope-from ady@warpnet.ro) Date: Sat, 11 Jul 1998 13:05:55 +0300 (EEST) From: Adrian Penisoara To: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= cc: FreeBSD ports , Satoshi Asami Subject: Re: Arrangements for new port of Pine 4.00 In-Reply-To: <19980711135527.A7441@nagual.pp.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Sat, 11 Jul 1998, [koi8-r] áÎÄÒÅÊ þÅÒÎÏ× wrote: > > Well, Pine 4.00 has already shown signs of "beta phase instability" -- > > the Pine Team just announced that part of the sources (specifically the > > imap daemon) has security problems: > > Our port do not build/install imap daemon. Yes, the bundled tools (mtest, ipop[23]d & imapd) are not built nor installed by the Pine 3.96 port and neither will be they in the new Pine 4.00 port; this is just a sign that the newly released source for Pine 4 is not quite as stable as everyone would think ! > > -- > Andrey A. Chernov > http://www.nagual.pp.ru/~ache/ > MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y > PS: finished portlint'ing and testing on FreeBSD 3.0 and soon I'll send-pr the port. Thanks ! Adrian Penisoara Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 03:23:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA19605 for freebsd-ports-outgoing; Sat, 11 Jul 1998 03:23:46 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from baerenklau.de.freebsd.org (baerenklau.de.freebsd.org [195.185.195.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA19598 for ; Sat, 11 Jul 1998 03:23:43 -0700 (PDT) (envelope-from wosch@panke.de.freebsd.org) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id MAA09720; Sat, 11 Jul 1998 12:23:42 +0200 (CEST) (envelope-from wosch@panke.de.freebsd.org) Received: (from wosch@localhost) by campa.panke.de (8.8.8/8.8.8) id MAA01492; Sat, 11 Jul 1998 12:14:46 +0200 (MET DST) (envelope-from wosch) Date: Sat, 11 Jul 1998 12:14:46 +0200 (MET DST) Message-Id: <199807111014.MAA01492@campa.panke.de> From: wosch@FreeBSD.ORG To: ports@FreeBSD.ORG Subject: New ports added/updated last two weeks Reply-to: ports@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Introduction ------------ The FreeBSD Ports Collection offers a simple way for users and administrators to install applications. Each "port" listed here contains any patches necessary to make the original application source code compile and run on FreeBSD. Installing an application is as simple as downloading the port, unpacking it and typing make in the port directory. The Makefile automatically fetches the application source code, either from a local disk or via ftp, unpacks it on your system, applies the patches, and compiles. If all goes well, simply type make install to install the application. For more information about using ports, see the ports collection http://www.freebsd.org/handbook/ports.html and http://www.freebsd.org/ports/ There are currently 1536 ports in the FreeBSD Ports Collection. New ports added last two weeks ------------------------------ Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== mp3info-0.2.15 MP3 information tool. Maintained by: andy@icc.surw.chel.su Category cad (http://www.freebsd.org/ports/cad.html) ================================================================== sis-1.2.1 Synthesis program for the synthesis of sequential circuits. Maintained by: volf@oasis.IAEhv.nl Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-bg5ps-1.1b Convert Chinese-Big5 encoded file to Postscript, using TTF fonts. Maintained by: keith@email.gcn.net.tw Also listed in: print Requires: python-1.5.1, tcl-8.0.2, tk-8.0.2 Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== a2dev-1.2 Apple II 6502 assembler, linker, loader, and object file viewer Maintained by: archie@whistle.com Requires: gmake-3.76.1 glade-0.2.3 A user interface builder for GTK+. Maintained by: dom@myrddin.demon.co.uk Requires: gmake-3.76.1, gtk-1.0.4 ups-3.32 Source level C debugger that runs under X11 Maintained by: obrien@FreeBSD.org Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== gxedit-1.04 A simple GTK+ editor. Maintained by: dom@myrddin.demon.co.uk Requires: gmake-3.76.1, gtk-1.0.4 Category games (http://www.freebsd.org/ports/games.html) ================================================================== inform-6.15 Compiler for producing text adventure games. Maintained by: mph@freebsd.org Requires: unzip-5.3.2 ishido-1.1 Tile placement game Maintained by: samorodi@NUXI.com xteddy-1.0 A cuddlesome teddy for the X desktop. Maintained by: Isegrim@Wunder-Nett.org Requires: xpm-3.4k xzip-1.7.0 An Infocom game interpreter that runs under X11. Maintained by: mph@freebsd.org Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== fnlib-0.2 Fonts and font libraries necessary for Enlightenment. Maintained by: ports@freebsd.org Requires: giflib-3.0, gmake-3.76.1, gtk-1.0.4, imlib-1.6, jpeg-6b, png-1.0.1, tiff-3.4 plotutils-2.1.1 A plotting library and toolkit. Maintained by: chuckr@FreeBSD.ORG Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-jcode.pl-2.6 Perl library for Japanese character code conversion Maintained by: sada@e-mail.ne.jp ja-kinput2-canna+sj3+wnn4-2.0.4 Input server of Japanese text (Canna+SJ3+Wnn4) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Canna-3.2.2, ja-Wnn-4.2, ja-sj3-2.0.1.13 ja-kinput2-canna+sj3+wnn6-2.0.4 Input server of Japanese text (Canna+SJ3+Wnn6) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Canna-3.2.2, ja-Wnn-4.2, ja-sj3-2.0.1.13 ja-kinput2-canna+wnn4-2.0.4 Input server of Japanese text (Canna+Wnn4) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Canna-3.2.2, ja-Wnn-4.2 ja-kinput2-canna+wnn6-2.0.4 Input server of Japanese text (Canna+Wnn6) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Canna-3.2.2, ja-Wnn-4.2 ja-kinput2-sj3+wnn4-2.0.4 Input server of Japanese text (SJ3+Wnn4) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Wnn-4.2, ja-sj3-2.0.1.13 ja-kinput2-sj3+wnn6-2.0.4 Input server of Japanese text (SJ3+Wnn6) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Wnn-4.2, ja-sj3-2.0.1.13 ja-kinput2-wnn4-2.0.4 Input server of Japanese text (Wnn4) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Wnn-4.2 ja-kinput2-wnn6-2.0.4 Input server of Japanese text (Wnn6) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Wnn-4.2 ja-mew-mule-1.92.4 Message interface to Emacs Window(for japanese mule) Maintained by: kiri@kiri.toba-cmt.ac.jp Also listed in: mail Requires: gmake-3.76.1, im-76, mew-common-1.92.4, mule-2.3, perl-5.00404 ja-mew-xemacs-1.92.4 Message interface to Emacs Window(for xemacs-mule) Maintained by: kiri@kiri.toba-cmt.ac.jp Also listed in: mail Requires: autoconf-2.12, faces-1.6.1, im-76, jpeg-6b, mew-common-1.92.4, perl-5.00404, png-1.0.1, xemacs-mule-20.4, xpm-3.4k Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== mew-xemacs-1.92.4 Message interface to Emacs Window(for xemacs) Maintained by: kiri@kiri.toba-cmt.ac.jp Requires: autoconf-2.12, faces-1.6.1, im-76, jpeg-6b, mew-common-1.92.4, perl-5.00404, png-1.0.1, xemacs-mule-20.4, xpm-3.4k Category math (http://www.freebsd.org/ports/math.html) ================================================================== py-rng-1.0 Random Number Generator module for python. Maintained by: tg@FreeBSD.ORG Also listed in: python Requires: py-numeric-1.3, python-1.5.1, tcl-8.0.2, tk-8.0.2 Category net (http://www.freebsd.org/ports/net.html) ================================================================== micq-19980626 Text-based ICQ implementation. Maintained by: mph@freebsd.org xicq-062398 Xtropy's ICQ Client Maintained by: scrappy@freebsd.org Requires: gmake-3.76.1 Category shells (http://www.freebsd.org/ports/shells.html) ================================================================== bash-1.14.7 The GNU Borne Again Shell. Maintained by: obrien@NUXI.com Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== mkhybrid-1.11.1 create a hybrid ISO9660/JOLIET/HFS/Rock Ridge filesystem. Maintained by: murray@cdrom.com Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== docproj The "meta-port" for the FreeBSD Documentation Project Maintained by: nik@freebsd.org Requires: docbook-3.0, dsssl-docbook-modular-1.08, iso8879-1986, jade-1.1.1, linuxdoc-1.1, perl-5.00404, sgmlformat-1.6 textutils-1.22 GNU text utilities Maintained by: aw1@stade.co.uk Requires: gmake-3.76.1 Category www (http://www.freebsd.org/ports/www.html) ================================================================== apache-1.2.6-php3.0 Apache http server with database support via compiled in PHP3 module. Maintained by: andreas@FreeBSD.ORG Requires: gd-1.3, gmake-3.76.1 grail-0.4 An extensible Internet browser written entirely in Python. Maintained by: n@nectar.com Requires: python-1.5.1, tcl-8.0.2, tk-8.0.2 webalizer-1.12 The Webalizer - A web server log file analysis thingie Maintained by: dirk.meyer@dinoex.sub.org Requires: gd-1.3 Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== wmx-4.0 Extended version of wm2 - A simple window manager for X Maintained by: sec@42.org Requires: xpm-3.4k Updated ports last two weeks ----------------------------------- Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-ted-4.2h A Small and Powerful Text Editor for X Window with big5 support Maintained by: vanilla@FreeBSD.ORG Also listed in: editors Requires: zh-kcfonts-1.05, zh-xcin-2.3.02 zh-tin-1.4-980618 TIN newsreader (termcap based) Maintained by: yssu@CCCA.NCTU.edu.tw Also listed in: news Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== asl-1.41r7 Assembler for a variety of microcontrollers/-processors. Maintained by: ports@FreeBSD.org ddd-3.0 Data Display Debugger -- a common graphical front-end for GDB/DBX/XDB Maintained by: obrien@NUXI.com Requires: gmake-3.76.1 m68kgdb-4.17 A Motorola 68k debugger for cross-development purposes. Maintained by: jhicks@mail.glenatl.glenayre.com Requires: gmake-3.76.1 p5-Devel-Peek-0.9 a perl5 data debugging tool for the XS programmer Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 Requires: perl-5.00404 p5-Storable-0.6.2 persistency for perl data structures Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 Requires: perl-5.00404 qtez-0.62a Qt Development Environment for X Window System. Maintained by: andy@icc.surw.chel.su Also listed in: x11 Requires: gmake-3.76.1, qt-1.31 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== vim-5.2f A vi "workalike", with many additional features. Maintained by: obrien@FreeBSD.org Requires: perl-5.00404, python-1.5.1, tcl-8.0.2, tk-8.0.2 Category games (http://www.freebsd.org/ports/games.html) ================================================================== crafty-15.15 A chess programm for playing and analyzing games. Maintained by: seggers@semyam.dinoco.de Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== ImageMagick-4.0.7 An X11 package for display and interactive manipulation of images. Maintained by: jseger@FreeBSD.org Requires: freetype-1.1, ghostscript-5.10, gmake-3.76.1, jbigkit-1.0, jpeg-6b, mpeg_lib-1.2.1, netpbm-94.3.1, png-1.0.1, tiff-3.4, transfig-3.2, unzip-5.3.2, xpm-3.4k imlib-1.6 a graphic library for enlightenment package Maintained by: vanilla@FreeBSD.ORG Requires: giflib-3.0, gmake-3.76.1, gtk-1.0.4, jpeg-6b, png-1.0.1, tiff-3.4 jbigkit-1.0 A lossless image compression library Maintained by: mi@aldan.ziplink.net Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-kinput2-canna+sj3-2.0.4 Input server of Japanese text (Canna+SJ3) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Canna-3.2.2, ja-sj3-2.0.1.13 ja-kinput2-canna-2.0.4 Input server of Japanese text (Canna) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-Canna-3.2.2 ja-kinput2-sj3-2.0.4 Input server of Japanese text (SJ3) Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: x11 Requires: ja-sj3-2.0.1.13 ja-ptex-common-2.1.8 Character code independent files for ASCII Japanese pTeX Maintained by: max@FreeBSD.ORG Also listed in: print Requires: gmake-3.76.1 ja-ptex-euc-2.1.8 Japanese pTeX files to support EUC character set. Maintained by: max@FreeBSD.ORG Also listed in: print Requires: gmake-3.76.1, ja-ptex-common-2.1.8 ja-ptex-jis-2.1.8 Japanese pTeX files to support JIS character set. Maintained by: max@FreeBSD.ORG Also listed in: print Requires: gmake-3.76.1, ja-ptex-common-2.1.8 ja-ptex-sjis-2.1.8 Japanese pTeX files to support Shift-JIS character set. Maintained by: max@FreeBSD.ORG Also listed in: print Requires: gmake-3.76.1, ja-ptex-common-2.1.8 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== adcomplain-3.33 complain about inappropriate commercial use (f.e. SPAM) of usenet/e-mail Maintained by: ache@FreeBSD.org Also listed in: news fetchmail-4.5.0 batch mail retrieval/forwarding utility for pop2, pop3, apop, imap Maintained by: ve@sci.fi p5-MIME-Tools-4.121 a set of perl5 modules for MIME Maintained by: eivind@FreeBSD.ORG Also listed in: perl5 Requires: p5-IO-stringy-1.203, p5-MIME-Base64-2.05, p5-Mail-Tools-1.11, perl-5.00404 qpopper-2.5 Berkeley POP 3 server (now maintained by Qualcomm). Maintained by: ache@freebsd.org smtpfeed-0.65 SMTP Fast Exploding External Deliverer for Sendmail Maintained by: itojun@itojun.org Category math (http://www.freebsd.org/ports/math.html) ================================================================== py-numeric-1.3 The Numeric Extension to Python Maintained by: tg@FreeBSD.ORG Also listed in: python Requires: python-1.5.1, tcl-8.0.2, tk-8.0.2 py-gist-1.5 Python interface for the Gist graphics package. Maintained by: tg@FreeBSD.ORG Also listed in: python Requires: py-numeric-1.3, py-rng-1.0, python-1.5.1, tcl-8.0.2, tk-8.0.2, yorick-1.4.1 R-a4-0.62.1 R a language for statistics similar to AT&T's S Maintained by: maurice@serc.rmit.edu.au Requires: perl-5.00404 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== amanda-2.4.0p1 The Advanced Maryland Automatic Network Disk Archiver Maintained by: cwt@FreeBSD.ORG Requires: gd-1.3, gnuplot-340, png-1.0.1 Category net (http://www.freebsd.org/ports/net.html) ================================================================== lftp-1.0.1 Shell-like command line ftp client. Maintained by: andy@icc.surw.chel.su ncftp-3.0b13 FTP replacement with advanced user interface. Maintained by: obrien@FreeBSD.ORG rdist-6.1.4 A network file distribution/synchronisation utility. Maintained by: peter@FreeBSD.org rumba-0.6a An userland smbfs --- SMB to NFS protocols converter Maintained by: dt@FreeBSD.ORG wget-1.5.2 Retrieve files from the 'net via HTTP and FTP. Maintained by: ports@FreeBSD.ORG Category news (http://www.freebsd.org/ports/news.html) ================================================================== tinpre-1.4-980618 TIN newsreader (termcap based) Maintained by: ache@FreeBSD.org trn-4.0b66 Version 4.0 of the threaded readnews newsreader. Maintained by: mph@freebsd.org Category print (http://www.freebsd.org/ports/print.html) ================================================================== freetype-1.1 A free and portable TrueType font rendering engine Maintained by: jseger@FreeBSD.org Requires: gmake-3.76.1 xmbibtex-1.5 A reference manager based on the BibTeX file format. Maintained by: ports@FreeBSD.ORG Also listed in: databases Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== catdoc-0.35 Convert MS Word documents to plain ASCII or TeX. TK viewer included. Maintained by: brion@queeg.com dsssl-docbook-modular-1.08 DSSSL stylesheets for the DocBook DTD by Norman Walsh Maintained by: kuriyama@FreeBSD.ORG Requires: docbook-3.0, iso8879-1986, unzip-5.3.2 Category www (http://www.freebsd.org/ports/www.html) ================================================================== p5-HTML-Parser-2.18 perl5 module for parse HTML tag. Maintained by: ports@FreeBSD.ORG Also listed in: perl5 Requires: perl-5.00404 wml-1.6.6 Website META Language, webdesign toolkit for HTML generation Maintained by: rse@engelschall.com Also listed in: lang Requires: perl-5.00404 Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== blackbox-0.33.6 This window manager is a small fast X11R6 Window Manager. Maintained by: ports@FreeBSD.ORG filerunner-2.5 Filemanager with FTP capabilities. Uses Tcl/Tk. Maintained by: vanilla@FreeBSD.ORG Also listed in: tk81 Requires: tcl-8.1.a2, tk-8.1.a2 icewm-0.9.8 cool window manager developped in a very hot day in a winter Maintained by: Nakai@technologist.com Requires: xpm-3.4k py-gtk-0.4.3 Python wrapper for the GTK library. Maintained by: tg@FreeBSD.ORG Also listed in: python Requires: gmake-3.76.1, gtk-1.0.4, python-1.5.1, tcl-8.0.2, tk-8.0.2 xlockmore-4.11 Like XLock session locker/screen saver, but just more. Maintained by: tg@FreeBSD.ORG Requires: xpm-3.4k _________________________________________________________________ © 1996-1998 by Wolfram Schneider. All rights reserved. Please direct questions about this service to www@FreeBSD.org General questions about FreeBSD ports should be sent to ports@FreeBSD.org Last database update: 1998-07-03 08:30:00 UTC _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -- Wolfram Schneider http://www.freebsd.org/~w/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 03:40:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA20647 for freebsd-ports-outgoing; Sat, 11 Jul 1998 03:40:17 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA20640 for ; Sat, 11 Jul 1998 03:40:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA20840; Sat, 11 Jul 1998 03:40:06 -0700 (PDT) Received: from titus.stade.co.uk (root@stade.demon.co.uk [158.152.29.164]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA20186 for ; Sat, 11 Jul 1998 03:31:41 -0700 (PDT) (envelope-from aw1@stade.co.uk) Received: (from aw1@localhost) by titus.stade.co.uk (8.8.8/8.8.8) id LAA20906; Sat, 11 Jul 1998 11:20:22 +0100 (BST) (envelope-from aw1) Message-Id: <199807111020.LAA20906@titus.stade.co.uk> Date: Sat, 11 Jul 1998 11:20:22 +0100 (BST) From: Adrian Wontroba Reply-To: aw1@stade.co.uk To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7247: new port: xlogmaster Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7247 >Category: ports >Synopsis: new port - xlogmaster >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 Jul 11 03:40:04 PDT 1998 >Last-Modified: >Originator: Adrian Wontroba >Organization: Stade Computers Ltd, UK >Release: FreeBSD 2.2.6-STABLE i386 >Environment: >Description: A port of xlogmaster - for those of us who pass their time watching log 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: # # sysutils/xlogmaster # sysutils/xlogmaster/Makefile # sysutils/xlogmaster/pkg # sysutils/xlogmaster/pkg/COMMENT # sysutils/xlogmaster/pkg/DESCR # sysutils/xlogmaster/pkg/PLIST # sysutils/xlogmaster/files # sysutils/xlogmaster/files/md5 # echo c - sysutils/xlogmaster mkdir -p sysutils/xlogmaster > /dev/null 2>&1 echo x - sysutils/xlogmaster/Makefile sed 's/^X//' >sysutils/xlogmaster/Makefile << 'END-of-sysutils/xlogmaster/Makefile' X# New ports collection makefile for: xlogmaster X# Version required: 1.2.2 X# Date created: 11 July 1998 X# Whom: Adrian Wontroba X# X# $Id$ X# X XDISTNAME= xlogmaster-1.2.2 XCATEGORIES= sysutils XMASTER_SITES= http://www.fusebox.hanse.de/xlogmaster/\ X http://porter.desy.de/~greve/xlogmaster/ XEXTRACT_SUFX= .src.tar.gz X XMAINTAINER= aw1@stade.co.uk X XLIB_DEPENDS= gtk\\.1\\.:${PORTSDIR}/x11/gtk X XGNU_CONFIGURE= yes X XUSE_GMAKE= yes X XMAN1= xlogmaster.1 XWRKSRC= ${WRKDIR}/xlogmaster XUSE_X11= yes XNO_PACKAGE= ignores cflags X Xpost-install: X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/xlogmaster X ${INSTALL_MAN} ${WRKSRC}/doc/tutorial.txt ${PREFIX}/share/doc/xlogmaster X.endif X X.include END-of-sysutils/xlogmaster/Makefile echo c - sysutils/xlogmaster/pkg mkdir -p sysutils/xlogmaster/pkg > /dev/null 2>&1 echo x - sysutils/xlogmaster/pkg/COMMENT sed 's/^X//' >sysutils/xlogmaster/pkg/COMMENT << 'END-of-sysutils/xlogmaster/pkg/COMMENT' Xquick & easy monitoring of logfiles and devices END-of-sysutils/xlogmaster/pkg/COMMENT echo x - sysutils/xlogmaster/pkg/DESCR sed 's/^X//' >sysutils/xlogmaster/pkg/DESCR << 'END-of-sysutils/xlogmaster/pkg/DESCR' XXlogmaster displays logfiles and/or devices that can be read via cat. XIt allows for quick and easy control of all logfiles and most of the Xhardware/device status within one program. X XFilters allow to highlight/lowlight/hide lines of higher/lower/no Xinterest. Click right mouse button in text window to bring up the menu. X Xhttp://porter.desy.de/~greve/xlogmaster/ END-of-sysutils/xlogmaster/pkg/DESCR echo x - sysutils/xlogmaster/pkg/PLIST sed 's/^X//' >sysutils/xlogmaster/pkg/PLIST << 'END-of-sysutils/xlogmaster/pkg/PLIST' Xbin/xlogmaster Xman/man1/xlogmaster.1.gz Xetc/steelblue.gtkrc Xetc/simpsons.gtkrc Xetc/hell.gtkrc Xetc/green.gtkrc Xetc/xlogmaster.gtkrc Xshare/doc/xlogmaster/tutorial.txt X@dirrm share/doc/xlogmaster END-of-sysutils/xlogmaster/pkg/PLIST echo c - sysutils/xlogmaster/files mkdir -p sysutils/xlogmaster/files > /dev/null 2>&1 echo x - sysutils/xlogmaster/files/md5 sed 's/^X//' >sysutils/xlogmaster/files/md5 << 'END-of-sysutils/xlogmaster/files/md5' XMD5 (xlogmaster-1.2.2.src.tar.gz) = 3d61f3cefc3a740451f978b0cd94316a END-of-sysutils/xlogmaster/files/md5 exit >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 Jul 11 04:30:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA26850 for freebsd-ports-outgoing; Sat, 11 Jul 1998 04:30:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA26842 for ; Sat, 11 Jul 1998 04:30:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA22590; Sat, 11 Jul 1998 04:30:01 -0700 (PDT) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA26218 for ; Sat, 11 Jul 1998 04:24:56 -0700 (PDT) (envelope-from ady@ady.warpnet.ro) Received: (from ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) id OAA16774; Sat, 11 Jul 1998 14:24:44 +0300 (EEST) (envelope-from ady) Message-Id: <199807111124.OAA16774@ady.warpnet.ro> Date: Sat, 11 Jul 1998 14:24:44 +0300 (EEST) From: Adrian Penisoara Reply-To: ady@warpnet.ro To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7248: New port for Pine 4.00 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7248 >Category: ports >Synopsis: New port for Pine 4.00 >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 Jul 11 04:30:01 PDT 1998 >Last-Modified: >Originator: Adrian Penisoara >Organization: Warp Net Technologies >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: The port has been tested on : * FreeBSD 2.2.6-RELEASE * FreeBSD 3.0-980520-SNAP i386 >Description: This is a new port for the newly released Pine 4.00 >How-To-Repeat: Non-repeatable. >Fix: The source code of Pine 4.00 has many changes from Pine 3.96; the most important for us is that bsf is now in the official list of Pine ports. This means we have an official 'BSF' signature and separate makefile.bsf makefiles in the source code. Althought many of the old patchfiles from the Pine 3.96 port are made obsolete unfortunately these files aren't quite OK and some patches are still needed. Though I ran the binaries without problems (except for the locking issues in /var/mail) bugs may still live in the source (like the recently discovered security issue in the imapd source code -- see pkg/DESCR for more info); Pine itself has many new features and the code has been reorganized. The new port has a new structure (there is no need to mess up with a proprietary Makefile and scripts/configure, there is a do-build target in the root Makefile that does all the job) and patches are much different (sorce code locations have changed, many patches have been made obsolete by the new makefile.bsf files, a new patch to deal with locking in the /var/mail/ directory, etc.). I think that in general the code is not enough mature (like Pine 3.96 is) and I believe many folks will want to stick with 3.96 until the future 4.01 maintanance release (and onwards versions) will gain enough trust from the userbase. For these reasons I have suggested on freebsd-ports that we should have two different ports (my choice would be 'mail/pine3' and 'mail/pine4'): Pine 3.96 --> mail/pine --> mail/pine3 Pine 4.00 ----------------> mail/pine4 I have sent a message to Asami in order for him to make necessary CVS maintainance (but I still haven't received a direct reply from him). In order to have mail/pine3 "alive" I will shortly sumbit a patch for Pine 3.96 too that will change MASTER_SITES to the correct location. Comments on the port's content relative to the old Pine 3.96 port: /-Makefile - New header, changed MAINTAINER, new do-build | and do-install targets, changed | post-install | +-filesa/-Makefile - REMOVED ! | +-dot.pinerc.pgp.s... - identical | +-md5 - Updated for current source tarball | +-pgpdecode - identical | +-pgpencrypt - identical | \-pgpsign - identical | +-patches/-patch-aa - REMOVED ! | +-patch-ab - changed/new | +-patch-ac - changed/new | +-patch-ad - REMOVED ! | +-patch-ae - REMOVED ! | +-patch-af - REMOVED ! | +-patch-ag - changed/new | +-patch-ah - REMOVED ! | +-patch-ai - changed | +-patch-aj - changed/new | +-patch-ak - changed/new | +-patch-al - changed/new | +-patch-am - REMOVED ! | +-patch-an - changed/new | +-patch-ao - REMOVED ! | +-patch-ap - REMOVED ! | +-patch-aq - REMOVED ! | \-patch-ar - NEW ! | +-pkg/-COMMENT - changed | +-DESCR - changed | \-PLIST - indentical | +-scripts/ - REMOVED ! For your convenience I have attached two files: * pine3-4.diff.gz - Patch against the old port (10 files & 1 directory removed, see above !) * pine4.tar.gz - Tarball of the new port Patches, suggestions and critics happily accepted! Thanks, Adrian Penisoara Ady (@freebsd.ady.ro) --8<-- begin 644 pine3-4.diff.gz M'XL(".$QIS4"`W!I;F4S+30N9&EF9@#,.VMWVLB2G_&OZ,O,F1@;!-C8CLE, M)AADAQN,&(3C\=W=PQ%2"[06:D8/8^Z<_/>MJFZ!>/B1V61V.7$LU%75U?6N M[K;CN2XK)2&;>0$_+E];]]SU?$Y?:\NO>Z52:0,B-T@XN^0CQHY9];A^=%2O MU%CU_/SMWN'AX09ZSK1B]L_$9]4JJU3KU?-ZI2IA/WQ@I6KQZ(0=5HNU&OOP M88_]P+I\SF8BC"-F"]_G=NR)@$U3SEP1UG-('T$G<3RKE\OS^5R;6]'$"\:Q M"#3N)&6$*.^5?F"?>1@A@9#_D7@A=^H,/\?:^2F.MJR8,SOD\,NIYW*58V;R M6X5/T:EJE@J.;],YQW0LEF!6IAA-Z5L!Z//`B M8846^]ER%A_JM7H- MA/J6/5B!Y_L6TQ]G[$><#3!_1")LK]1JFX-NXUK_AY"D@O=B41#K-D8Z%=&OZV;3X+^#S:8]<-]6'S!^W6AW!_"C]W_)D5%\N`0I79@M383CO<.U8<#9D"%0@%F[U5]8CH:U M*K!J"_KEBUBK`L"A(TJCQ/.=^MYA[L.^[;`?_[SM?S+[S2_OX-'4!WKW\Q=X MNFY\TH?TK)4)@8TBM[!W2!2\((HMWT<:/_[9[IJ#1J>#2$VC=_>%E00\=MH7 MQFT7OHSEEZM^#[Y,Y9=KHZ5_8?\)Z+G5_.61%Y1];T0\1\"V=@R#O;Y^V?[] M"PYL#&8G'_;ZQE6_'$6U6SVV[T! M8EZV.[K9:O>_E&?C&0_L<#';FGDY\!H:#K>%P[=)R/>OH1!YXV`;']^N8;<: M@\8ZK@.&ADL-;0T0M,B:SB".D:IS*WH\MG=#KE$'8\X*UA%V61GTBM+4"O"G MJD9>QB=/V$U`.LF+%,BS=A+`D;U#S7/9/QR(8`%W]KM&S^@/6D;3+.R07,G) M$(HF5LB7<^R4"ZT*BB>*5\Y:RS@N6Y]#7UW;.3$]!D*:O(C;E*N6Q$83_]E,*O+^2KV`?L3JMI="_;5RJ" M9&,"!CW-"VP_`8/_&8,A!DYM>O]^SP@@&7F!RN684*)5;MESUHL!&BY/G1.5 MSI??,^7`\EWNECM`*61'IZQ2JU>/ZD<5S%)GF7I@!3R8)%00L',&E<-)50&K M@@"J`2P%2M>M$[:?9BHMMD)M_.\"^X6-W..C467D5H_.3UWWJ'I2Y=61?>:> MU$Z=VK$U@K208F).RF#6+*M2<4[/1K7*:>7H_)R?<\=USVHUVQJ=ND?'&P*: M6;$]01'10\FR-D6D`,IJ?*06NODZ([#-H=QEZ+%&,D915*M01-5KE-U/,W+; MB4/U5(5JKUK]>*V>JE(]53TG(1X<'%#.*XMHF`3>HV9#YO3&I*]_)@&KPG0G M]=I9_:@JYRU)9K,8:D(`KK%*I0[PQQ7%9(:\PV=E@L_0!Q6_!4C0;[VJ5'R8 MH9^B;*^HEP[+L)_9TR^DU4(?XQY&(#Z8L:B132$0!J^DRQ6 MST^.0"(G;R4"`.^5_D%((8^3,-C?!UCV_A=600_%YY^7)`KL5WJ&1]^+XO^` MW__%ZJQ[T^D4WN'<7_8.%0-A&`@PL\H[".WE`RI:692$4$^'_,$3280@(F3@ MSLSV.?QRV$$Y1=\[E"Q%_R1YANWPV*+#_/%]E/Y#_>OWFA\&>*PIAM M15"(MXW+[B6KX^O<@P7^#EP,^C?Z.[E4%/E*9OCU!9D1PE)FA+!#9DNA%5!J M^QMB0[GMVQ"Z#@K_'\2W[XM@S`X*?UV,SSN_O=M;[:>=WUXU4=@[H5_)TO[L M:>>WLZX"L?/XK'YREG7^6K6ZY?U02TM?$U$):E9M(ET49V]QFUJXT_KQ*381 MV1"PA;:&<5:OG=9K;]?BP!,3I>$#<\,Y]G\GM;58L#W1UB(KI\_%@XJ*`V2V M10CNRL8/6?F@]$T^2`M_LI\!^\AT?.BQ-NO*QVO6@"\=>#+9'?P,X/5U!KEC M@3T'-F>=)'!&O@4IV@H@ST5X']%P"RPY]$8)=)6L*::S M)(9>20$NOQ,D?)M"1+4M[)HC!7(3>`_8ML8+)EQVNVRUU'##F7H!SD!([`)Z M&\\!B")K7)5J-05E0E,;0P>:P2^R\[<0((KLQFPHJ':`\83'=>:/_0_-1E-; M@6MZZV93AFP**X^>`%3`/7!U\$[+<4(>@4!\GXV2L92,#>OE01RQ6+`\M:$X M]&&[IH2DI70 M]BR?)<"N1(2'#+&IM6`C#K]`[1"E)B*)(;9Y$&?FH1?'/-7(C(=3+Z)]AM?, MGUE2D=935"O#?BT2;CS']>$K#R2E2D-8)01_6GE3S!;@IY-8$:J>OSTOH5^S MT>+5LP\`SDU`-T06P`1$2I^/01Q0TWHVAYEQ2R>(+6P#L,I"TK2I8X-.N9,: M=.^NW[[Z."BN.$59`33@.ZDG>)G9LRKU(JK?K#!F([`:AX$,D37=GT)]ZOG, M7("2I_74$`^^S6=)CNV:C3'(N!L8"U\L,>OP7]+^.<0!?2N/DA#$-C*($RB>`W_&PI[I?AO M$^&AD%`4?_#<`)I5-C3,8;O;[-RT]!:]EQWLUOOTYSODF@':O.N%(,9([81. MK`A\>LK1E:!MI=@WL6*V$`G%ESF\PF@(E5@P7EIJ$$2]*4@)[7*RMP8YX``E*T@ZQJ%&"8 M5)6X`@X6+(4F5[04TTII?[?R!!8P8DY:A#HAC%;.BN^\D%V&`K3`H4@(%3$? M2Y"`P2_@_]094H]/?8)[TEFY:R5^7`*IS03@ MEB8.X(/'V>!)8@K]D2-?`8DQ^*#-FTI+-=;H M=(S;8?-CHWO5[EX-+_O&]9;J8#ZH%Y202"Y8VY),_N^5ME08-L#H:Q3KH#). M5.Q(A1Q8(U\Z&%;2A('=[,RW;'()"Z/;_7[A#92P$\]WTE",H0I(E7`!Q\_T#R;I8=TV9#RE#E< M-)J?KOK&3;NKC'\I-]=&(U^:]@QFI_^[K6@.4)N'$,<^*T'QFH+ MLE)(\Q'*?@IMEH7A""MYCS*`JMM51YDG=\RG06$$G5,0*`J6C%9@`7DMCY.I M%]!*0/?!??<9N>C=IM'2*2Z8?X=,P*_`SB*V#\65")RH\(2AMBZ'UXUVI_E1 M!UW1)U\]J>21]8\0%:##XH$,XQP-`-8>0(&!?EB$=2,EJ)MS@*:B;EJ2O%&E M''^5%AD,K`;4$',N&J+.D(#%1"9$!=/),&_?D+H+_?M(*TM@*R M,@MD@=%/`S'7"HQ]MPJ&-4D@,U@3>>]+5`LHY M0XELCLZ5:1'[V#MSE4*CK.C(2^\+:,)3(0-TL#5'!D%Q)T/DS(JP?8P\W*V1 M)2V4X1EHE;/G5D0-O8;I8Z;B/9C]'`L=+\O/!((L#ZAFG7-5JWM8^9(_3D(N M(WVTJ7W3"!91P2:6F>+D+FS36Y4^L?@I@PO*=91%-Z?]7G*2U= M]O7?8'B_>O2"EJA`P+*1A#OBR[V.ESX@1=S_B:4LIE`5@AG!0I*HD.I10O#SW`R.A^I"T5IL+(0CL^Y2PE*DM#+M>X>F-M3P M=BA\GTJ'"532XPD%8VIV6)#0_12(M1A8(YD3<2#=)B<:J80;17+8[G:;1 MP?DLAGMT0'<$-=QUX_>U,3IKXN!\SXA9P>?R9[5\=BA#*_>V\H0*U)9;:>XY M7*4]&8&^;B,H#7;FG3G0KX<]O&/47`M,^7(2A64H^2R?;F_090><,/\D/G#_ MN]YZ"5]SO4?NY+]S]8-&XJ2&)GQHY5A@0?8ANU(O'`^W8D3H<:R1L%)!,QQ9 M]OT91^'X3O=&=>>KK9:^F7C MI@/II;DF\SR6IR4,ZFLR3J'-QF=]/7GD(\@V3DD5M-$:%K8&+\/\4+?%GD:VB1L MMJ^ZC<%-7T=GU#,KP\/V]UA7^]U M[IZ!-#HM1?,E2-PG,KJ=NV'+P/N"Z4IW0%[J6;.B&6:&+4'`8H87 M=T-3[[8RNME!V#3Z`VSY-N5K05'V8/F;X(T+B=&_Z61UDL?S%732$AZ(E/`X M/2KY4!OM8HP,E-:Z))-/-WVD>V^MOMG648E&R@LC;DD6KU==-\\(P/JWA:>H\<"3$_2;.Q-AM!--S;?FV"^=*V8E?/AG2\%Z`.E51NX"CR-/D-F"D98^&!6Z@4@T?)ZY+K5CF"$AV M<@X)SZ+=$[22(I60(EC;#<4!+"5Q!Z2(79L\.9`4@*&&VI1*&X#U\R@Z^UD6 M+L^?H*4[YPQO_O"0ME;D)@)NPRLB=!DIA70DQ[-0C*P1``&;(=$EE=A9W-'F[Q??QAOPV!FIMR]I METI^KDV^YN!ZOKN-OF M3])XKPQBYEMX3"#IRDT6'M"N!AY7HI+E04'$5C:TI@E%CA9["2$"&LS$EL'U M@>[;2$-837)09B\NE5&]ZO]OEYI2><]2,\<5T4X>!J')\D^%BIF!)]:9H05C M=%(KY&8Z15+'!\/,*"B$#0 M6SZ;TJ(;H:^FA=#;?$&OU/Y=M@L=4]'"JU'T7DF?17P*\=:SH<.,XX47:'9A M!U=WYN<=A%2K__EE6B\9`VO@(3GNC&"$@UG?1)2+U&8%PPNCT9,Q3^%`H$1& MZ%`,HB8^'Q\-XW<[02"&A0JH>JJ`GN7P#W1H2#?CA`[(*!)_=5[XSO"*4,,HDC+7M^A\%+<=`Q&41GB(AG&K;;"7 M%Y3K&MTA58)XH-PVJ#<&'\V&32!;DG?VUK/!)A_J3MWG3=[95_&1 MRAI[>"BKK\'<%!]IR41;KEC^+2?;65F8CA2'"]=Y#E_93<1EMUXM41*`N]K,ORK*6XY\M38 MWRR^GA$Y[L?TC,YR@T4%`7O M&>N];;0'PYMNV^@J.^`4DR&FTEE7A@A]?SXVLS;>(@HV8-+K4:>,6F2.H*^3CQ(5[^3WO7WMRVD>3_EC[%F-)N M2(ND"(`O4DM"`(4HA(@`&H5^W>=[]^S``#$*1D6?8Y M5Y>4*9"8Z9GI>?5,=_\:?Q&?ND00'0G?'1_\,-@HP)E=5(+1$#[<60%W/[(PN_5L$$@/@GM M&=O%#=U8%49V4NB5ODH'@1SJ]SX,EC0UF(G<+#U\$I6K0K**T2_*4LF9C58S M0)S)BKFS^31X8*$ZWQH0[1#@"*<=N-,"D+P`0[=KV>_DFHRYTCJDU2)O<@\2 MJPI!W`5VABBV/'K^>4#O)&A,O)=+=OR`IB<+5C7*!+BNQ:N)FLTW9&U]'IWC@*AJM6DFL M2')^BM.D:-9DDO1X8PT^S%190QI9#MLF01T=-$[`VFEVZ)2$1F+.&J=N2(^/ M^KW!)0CPO#D?'&\4S7HI+R4TX?U)/Y.V72M]2AM1-4DT+7\P(+V7)P5RAVV-: MA["%*_B`;*CRW3(F)WK(0DB'YN.X<])&2O98P'LRR+*)#.0?\=W]%1M4X/V4 MNEO$M>9*&:??H:QV%\+$K(JC!13OS?#^6=X07[ON'$@.;WSG"LH.8"4KQY=1 M]7)L[ZZ<)Y+68:/^N&&ECFZUC=;T1".`EE*YQ<40H^Q`\'<9FN^1P(D)+>Z[+3,A#-&0&RMK;AO;< MU+U)6YQMY"Y@9Z2;%)D9EGW7(5\W46QA5ZGZ0^/#&Y^L*:#UHQLR."YI)-O: M\QZ3!^$M6E_(R@6!%U+J;%'[TE:Y/]LA^7HGMDWN=`0]YD\65U$YT:VDS&&E M_FC5FD:60[I&LFC4SMNTJBQCJ3""YY=.6*6(K+GL?S_J28(8B"!LV[218X5R'PGR*[XYZQV^98(8B&BX\5-)TN5]3 M%.,+9#K@(0'=UTY/1`[G9K-=-EMU=OY.C$G;VO/3Q[[R)$1`@5_>1]^-',`\F^2`%D]68!PDPB-$2M6:GT9;@ M)6L`3R8I`#D3`02,9@I`KHV0!PTKACR`W6"^B^K.7:?B3#U8PG=G5SKRR0G( MOD8#L4;J"HU`PAZLR)J%0#$[IJ5!'U"N*'0T3),8_DZ"+220-Y`?2C4,#0-A M7?YLZUO`M'5@".U:N]PV3`T:!:92,1K>C*O1XM(A@X1774$6%Y6_10YJ3&9N M2?Q+88)(Y1K+FD"&S0*[HG]TO*\@0`A,PV,MVAP6(@^W4#Q\A=X(]B#IZ.]!*VZ]$5Y(H9BKEIF#\_/#KAV*T,%UZ?"P MZSCX\W&_._5%)<+G\X/^\=&;;FC[4V^8+(]%`*DON%RZH8O\'8N,2?2OLB0?R) M6YG,A*_=RN4Q__*-I<&^9Y7W]A))@!R2JW#^CMR;40`/OKN`200/XRD+3/@X MBA]_I5SAV&F;9I6O%>$/WG["'UR=ZZ&!Y(*Y%:=FL"LQ`][1'_J?N[-;&N\GW7`F*N&8)QOS()9$_C0\V'HI)F0G.V-_M:VRT4[&QH88 MG)V>'K\].N_NWL*"\BO_>'!X_M*M42W9_A<_$0IB7ILR_?6\)JX71Z\>$4>]?/G1 M6RV.>AL#D.E0N#)K*%R9K8[5?`2"R]/1J4"6:U@=,R6.-ILHCC9;:00N5*DH M$53A?ID-(@"%MKG0!'F+DV>JUZA):;FE(6[IA&/4/4.81L>"'%86:4L2SK3! MZ-2-=4)EPVJ8(&$WU6$+?VLVC28TUDQ`]38VAL'H`62JFR'9@G2%,W^`]:58 M")R%NZBP.%,H$9[:!N]'M%W);[NOXT?Q6AS,YX14@9<[T\1+.70G=CB:(A04 M7J?&/F])1NG7I'SJ(W>"*M?O(H5]@/@"[$Z'%CZ1T//>^'C7@W:>=$R'^HY( M5T$ZL+\)J_:7&`TER41&'U1!/-P2;@5=_J&;)^D%[0B>\9(/[S.CN>VXU6I5 MH[#+DXU9H!X_F05:QD]F@9;WZ2S0,CV3!0F%W4TAGV&5NHR;VD6G\#='_8/S M?^RSED16H2V&'EG]LJ(1!Q0-)FU4X9A7`U?"'M(\D`/7,F-DPVEN(D>>UJOSFZV(]3N-/(_?^ID$R%-4R54(\I)2':?4B> MBM!>*,?%9/S0Q1CFUPM9W2TJ!75+DER?H)\Q13]ODCYSFK[$1$U-U9>;K/G; M3M,PK#)\[&G;3JMN[95;]7HCP7)%>@S[*>20456"TP8>,]"0"/N17`X040L- MI+#&LC(2`%3V?8?/)LPD00/*\X'+"#;4>ULA1XR#-\<]>2`B3DS&EU//O[YD MTD7XVH8F7_XQ+R4C:66:LH)#5:O+$'KS>C]N6U(]9FY'KQ\(;';XP#5$80OW M:'D3`IR#A7INW?PV>OCRTO,5X:SR^5D M&@SM::E$:3>>PN:T8!_ M9J&L[HAJS7*KH:X+=YY8RI,+45Q"1L'(BI>*Z)?,2,/U/69:B??DC8V_TV_$ M*5ISX+^.R,^)W1CGP_(H+X^Y>,CI[Y<)_0<1.CGX&-.!"F32=`BDYN+'WOEO M>'W'LZR%LZQMII"57[*G^";-,+"G6AE5PY^SI]`6\-$)O_ZT]WO^\>SWU:>] MWW-.>ZU'3GN_9TY*AM5I-/33WAX>]O;6J1Z"Z!*=XJZJ0_N:3F@$^0P%FYV: M(9'.5VL?5.Y4W0U";+>THV">!B$N.-9`8,F&)6J0N=&Q5/Y5&HBXZ`P+3'E( M7G58M)KENJE!,N/W!'9>4U1$ZQ6N6[)=8BRP?=V+@"HD=\\BH8*&8*F1PHP$PQ,U-E M64N&NCFKAF/4LF34`'UV)&HQK8JM3JW1,5K9^9`FCE/O8!X*J`+4SVIWZLVL M"FY%R*I&NP.9UHSX>@O5CXF,:C9J9;.9*%\VMHL7IZ?'@]+N]O>BL%T\[I<* M`F<;B<0NB,9RNLO$\%[\PMM%QAXI:9E> MK?-@_E(T.?Z=,#/$7%UI#5*3UWE6\!7K'/H;)P.\(`'!QG6 M0]DI\ M=_K-],K64[MEZZG]LO59'2,OY;8R/L,4@4LA_R!_!X>GL=NT`I9$QAWW"9#= M">8/HA(&L\(3NWDK[F@9;L*V3&'7#6%[]WA9+$:5B4`CFJE_+Z8/OI@YP!P? M;;F'PD?<\6@L(JTW1Z^[]5B[@PC M\RGE0Q.Y`CO84C+?R^2@1&-Q=GYZV!L,NHQ(A7GF"V-=";YJ#1"8+^ZYE-R& M[)FQ"K&BS0M)B+V28-^FEQC4*7X3"VO[0M6!%IZ=>]Q MSB;ON;]HXB@&G)]HU2258*-LU)*#R==HU)8*J;*^;2N2?5(3G[,3K)>5IOG" MS72UK#1-"2)[':L!LL@CLM(T(RM9=1E[1ZI,$V26+JN9ARM:X5Q1;-5-MJU ME#34A'VW&4M#FFT_[8NSI&/[)H$^S(+8=9[JP,8AFDA7G MXMF/IR<]JM82T2?28U&+NUR)6E^ER[>>V^5;CW;YUG.[?.MENOS;ZN%<.PNS MC:>[>GPKOUSDT//U%\PQ\C5@;C-C*$(IQQ45RX.F6N7@L)0-F2\D+I"/+$Z] M9=(B[HU*)8]:8N9)=8C[DZEEWO+G&FK4!-G#LG8:-?WMRL5!HT;%:15+4]/? M:A7+)_7TL?C=#!.D2*T3`??\F>64CRT]!]I8GSWW=)/ MA6//OR;S>S:X9H1^F\"%\&8^<:[J%/3>)7>T.(0M/C"S\8EY%5^/[8=;;FM/T_+P9&S&.IYO;C+FK*F?,>"W_B\/>`TG.TLI M$QQ:D607[2SA3.+,5V;EIQ2EI\YGR1-*_"JS>>UL3,\\L1QS^^F3<85`W(9# MV)YN.67N[96MFF8W1?LN'7.6"SN?(5\B6S4XFQB)ZOAE*K[>ZF_VR)'-SS]C^:N/;#Y[8T!. MWW] M>*=\EP@_!4&(^Q?+ZHM8+8,K>)Z696>%MBA?[9/X9%%U]*/'9U0'UQ%_\Z(V]M`M,@EU^)L8%`4@P"[P3?17&`$8Y+@*8: MF\J/#NLSWE!(*]&M51+__G>,O.(L4E^]R$E]/WC_,?4]FGAT#Y-@L!^AL?&& MQ)J0T")"JLM6)XSF03#5D[/R[)70/=W6Y)'V%3&O&$V'_:1E#*,%I&9_:^)) M)**YRV$#*(B&P^[2"!PBT0;D*D?#N:FMWAZ<@*+ MD,J2_*+O6LFO.5Z3S26O22UY^LJN7H_5E[17P49%NY0"H<%1JP+WBA[ASQ// M$2=Z0A0^J^BASGS6ONV-S@\UZI)WS,MI=]RVMG*:R";A4EJA& MOCTA.`CR:`H#WW-4A"R*D+B@$$`C5^$ZSEW'&WL.84!(X.=;#Q&,'8K4[(82 MZ`<&S,SS)6*P1$1!W^`@9`P/VT$'X6"D8O:0[=UF)1@C*O:=(E-0]II5&0`7 M?HV2GE&AO,CJP`FFD2BZ50QQU<(VD"?];P>5T.J>R./)"^.5(+TA4CVYUA MS&@80Z=GIF#0IC*<59`P_6C)'ZL\Z$3QT<%6>JP+-W?T/A3/[,+-'>Y#\7E= M"&3(?O(SNW!SA_I0/+\+-X'K1^EX=@J!CQ;3>,^*8QM*X)HR1P?"IKP!;F&' MG\68=6I`K!\+')6:'`R'87`'#.`^BC'$L06W]="0`X8K#2-F5QLA"/!*P;4Y M#1_\?+QW097%`EU))69("0;3YLXG-_8LU5CA^K<>#!M"[H/-RB-#Z\%9[_B8 MU+>:BQ7=ZC#=RK2`G!8'O@CFZ-]O+Z&[(1<*2>`8-880*HB,1-,A8@0O;,VR M!0M;NVSP&>]`FW\C#B&W(.">T*G.)_-J9,_F$OS=G:`;%=)'V28M@$R$9 ML"D4M5'FYA&\\&[5"@34*%U`(9F\.<@^\-/(1=O6\B8^LYTK+YSP%><3\;\B M7NS_S9U?:JU=H[:[U_Y-#.#H'V*H:0XQGH3"HE%YX=JS#A;_GX34-\:)2R_J MU5J-IGSH4FSY$45DNV.Q#L1XFP*F4S##2):PN:-P>&0P&_&`9($D)RYF M7-[F3BIV.9O\*UPZBOB3S6*@_(C&FS9&?I-5I;5FQ#\,%+N:=W5WXK"X'@"#1C>[2 MJ@L[K/X79OF@XM21L0/*PO%5ITU#+T&!>W`Q'J)<\CE$)#*2@L".Q[!>(ZQ+ 02@3KJ.&W^3^;"&6?P)```/%5 ` end --8<-- begin 644 pine4.tar.gz M'XL(`(`PIS4``^P]>7_;-K+]5_H4$]F-+5<'#QVV7*?Q(:?>^EI+:=K7]GDI M$I+XS*L$9,?M]KOO#$#JLFQE4UE)^X3\(E,@,`/,`I54ZL;^*QKAF9^`=7G;99*`RZL&."+.`S%4^7N^HQY MRVC0JR'\=!6'%_V6D*851]!#F'K[QF"V*=Z[HAP-1M,.@Z\9^`;C;"U0Y2Q0[H1"ACP".6-<: M>`*PF.,2/HG)\CQJ'"%,&P@NAR`LEK(3V.S0CT+.BIP%3C'L=EG,BXB."_ST M!(NSB*+=QZJW5NQ:'8^!L&X0F`5>0H`H#GNQY7-$9@GL*^=6#TNQ]X(P1F[$ M''`#$2(@JXL0X>SDK`D.LT/'#7H%K.\2:4)P7!YYUGTIFSPD+>![N2*E@^:; MDW.X?'.9@_*`QV4OM"VOW'&#,FJ=!,>&C758%QE!K4Q:-Z]QT&%(-B;;1EP) M'K2."(0YV>3OL'$/VT)\*F33,?KA>P0>WT<"KJ^:AR>7)\WS=NN:6MX/PYL" MH>HQ`;'KI`SD`_L&,<+&KX-08'NQ28$@5FS`;C&?E\VEK\7MCBN*C/LB*@:L M%PK7(GG(?FI=^3NF\?'?=YYGQITS_@/4=37_&WJ]4B?[3Z]75^/_4M+9414V MI1"4-*V$I"CU?LO#'E0L2].<6KU3T6J:L;/#=IC3[=8K%=OJU+J&N5+&OT<: MU__A]+-@'//TOUZOC=E_==1_TZA65_J_C+3V`N1TSOLX_1:'"8:R,,K$`H9> MTLS23@VN0L\*'/R#5D27>0Y\'8&)8>]RJYAS=8@@#,D MM%%!>[^AZ0U#A[-F&_0=A+8?.#&S.'SG,=^'KRWU]?5-$':85^H-$C!H$J') MXT<@Q17-'6E5A+';

5IO2?7+Z%XYBK_U5SI/\5LO^->E5?Z?\RTN/Z3Z*P,.5'W5\I_N>8E/Y' MEK#[S[8"\.'Q?T.KU73R_VMF=17_7T::Y+_\6[3*8,_Y7*M6$_X99K1L4 M_S?-ZLK^6TK:VMH"DH$RA8-+=HF\JJ.BJX);DXF^`ZIVK5"K&=L@LP`RF4[HW!=?\4%'W$<, M]L".[KF(-W.A+9@HXB.S_%Q^E\J2I/R!#]D7ZKF\E3[!%NQ'D7]=$1 M3(/>Z/[UK-A!TX:K^#Z[=<,!'ZN7^'PE4-%VSGH^^GH;')B+OF(,02ADC+V` M7B;%V<>J#@+/O6&(5<;<1YXFK7:@@V=J7R9A[[$Z,EPO6X<$MH+[.^L>_]`\/SPX.=^_^G%7 M$@82_-O0<078?2OF5!>)^$<2S9>$)&8F/#$-.=/_69ZXW4U56U7=@_:/E\UV M\X=V'DM,)FSE6\ZHY=L')VV(+4EOT;>"46_D`A!5'^OYK+X3A-VT`//XB.3C M4O+Q<&-]<*\"9^I?6DZU^C`IR_/3T=B6X'&7&SFS1YA%81IC&. M%TUD*[Y7F`_V6\U:A?"1`F'/3>P^SF")`GWR[J,2'E]?'!_C9_.)XRB3).\2I%IV2Q0W_.%W&$8"%3(8CNV`MYE<;&94+T!7_*?-;V*_XU<(6TY-1Z9 M,U0)_M,4LVCT&G8E+P?&3.8;F26;+PF5R32FF9S4([*FM0B9K*F8-N39V.N' M8+Z68,[V?TBA(/*I(@TJ<='^MGGU"[)$"F-5UXEV]508_[*T@YZXTT_[_O\7BF!?_(?,CL?]UPS"E_:_75O;_,A(-N6@,164>V^60.RPJ M#P+W/3Y>=[A;ZBN'H-T?P#'K(&-`JS>,:L.4#D%=CCI/59_R$'2C8=8>]Q#, M>J%BJG&?`-/7[70H6W,#VQO@5/(U(N#"*?5?3>3BF$;VV73N/2^3,,';2.KJ]E9EK:<6E'4U)4;;T!RK,%J%>4+PW,:1SX.JE&NVJZ M$^^[=B"\&0WSPIG-I5@LY2^'_S/U?\%R/D?_J_6ZF<9_#+-N2/VOK?S_I212 MN\[`]1REZ&=A@.H:@%X%0VN8U0;J[=#SE^4R+4LHC=9!,R@X8&B/:[11K16, M6FW,-TB3VX6?H,C!+MJ>2_L(?X%=%9&?,P!3$6<&X&'^XX!5$?DY5D`MUYY9VXG1(>S^'S=[K\-'*P;ML> MRGIOK*;MP/KEMQ=G3=FF:9`?!HTD(V7SR`=Z9C:O?22;UQZ"GV3S-.`/9?,, MP!_!YL^'JS.5>5LO&#N52<=L'!UZ>6/YBE`TP21L4`2)7#O$#R\4,\2D5"K+ M^**L12272=(=*3OQ5D&&,1[,`"81)RQ.P(T!&W^K/A^')!N?\/0AI/&WDZ+Q M2!_M4'X\TL?TK?R8"P9).83S$`R]59]3@(9\&Y<0DK>-C>FF(EA?%](S=&/N[^)EU_Q3!Z4%2F)T4E]1([J1XFA4*A M/@H#-JX7N[MI\%+)8VW2V?V,Y'%Z+/EX>9P!Z>\BCU\]"@C'1/I;XF%)+YD$ M<:SP[$9.59GZ^AG(_Z2LRZ?)1GZ@^,\N9FZ0TT>ZXH$1A,J_I4>BCRJ\31PZM9CP.UP&OAP1OI`--.$F<7.7147 M,S6]8.K#$.TS4Z;#N\N@S.-H/I`RTOZ?Z?\M>`O0O/-?E7I%^7_H]>F:KM9_ MM97_MXRT)==_<>A4P9N0%U&NTK#/W2C4:UC MG2=\0Q-G[S'/,(VXP-M6\_KHY*IYWGX\EO-B=@!F,B+DX-CZ5)Q(61&R&2// MY:.;,8H>_9>MF$4';&B4V*>>XM9 M#FS2DBEQ9H/3DI\J@ZHM]SCG)0Q:XTG[>+9_V)<5_?H4%@9S2X)68)B^,@A#W0=M6BM[1]^`#5 M,]V1047H3'"LK+=8+5FKVHG1I);>-[OLO]"^>ML<>IFCYDY&MYZSN9M>2!L"\A_9[/^" M_S/UWUZLC,W3_VJUKO2_4JO5Y/T/J/ZK\U]+25OI_K]9]I]2ZP",&F@[#1P& MJI6I?8"/VW^&00:C]L1JGU';+ACUZ7#B]NAQ!Z==='IZ<G M9O>#-%/_;Q:+8Y[_5].2]?^J7JOH:OU_=?_'D:T MR+?=J-1&FC]1?F(]4&]4MQM8YXGU0*U@U/1AC&I]LWUQ<=K*E]=?0VY]\_0\ MGP/:2B"W(+*Q)1]9%E_#OZ([YU]RN\$-BSL,]1/GWLEBLT&JH6I]L_5CJ]T\ MRX^O)CU:9W)MZ-%B;A12G)4^GRPVMB`T[,]XX5)6&@9RG;61N6C1]EF(F?R> M_I4A'RP2.!YSU*BB"DI3X+6,`!U0P8GU)?*?UCG@D>I3NT7T.DX0C\\.]6IA>S@WK,&A MLK4X1&B$N1WO'L);=*E"^#-F[@N+>N,[`\+!0+I8'[5U>'>\C4V$8% M/CS2\QWG.KVI6B`WZU%Q:7"Q;MG!O65+VJO7MY7[[6U60EA]CWL=7='9@U/2]7+$'Q0LH MTKUB4#PZ/VY]=_KVZ$TSET"AHJ=':5E/7A201%@[W&UDUN"@=51VS>V:"J$D MO4B-C>?L1=J#]=_5TQ_P2%^FV/,17?O48_K)[E!K0_A$P*D+%2OOE-/CDQA?F;+Y"+`C;[%$TMO.2=?'YT M."D!%`WHLDH$$`B1-[;N?/&;ZU^;D4O0_&?]O>L]X!_@' MW_]@Z+6:0?L_M'IM=?_#4M*(_X<79V?-\_8SX)A[_V=M>/^'635I_C>TU?Z? MY23:YH8C6!YG"K#@,KEDF`)4)P&.F>AMP3F:X/`2FC2:_BULWE4:I9'^'S5; MAU?/@F.._IM:NOZ+@[]A5N3]/ZOXWW(2Z3]LSM7[/)DTEMHC187H"HODUDQY MBW@A2XNBOA58/8ITRXO?XS!P[?2J+,8@,!-BT^D&7M[M>2#LJ1`B63:NR MH6,)N9,KJRY6"+N0B\*[%$HNO2X#&R([C;E\U-GT1G4TVT1HAQ[/;LH;[:^. M#XO;AE&`UEG[LB"O52_`R=D^/I^?MR_S^1&9>'O)3-'F!' ML;,*G;0+Z;)1PI+L`^0RCGA)>\*9XXHP+B09M#=%"4`@SL7+SV-"3 M+MR'`V0.6O5(3Z2,NBJ5-L`-M]FE]^\38:E'\L9426\6W+K(;+H0972[?NNR M>7I*T')3%\>["FS1RR'F_0#4CPM8'LC?!^@-8DM=_D_=S]'P5*(7N93Q*!CJ M&HDQL$S8D)57VZ-70W)%_9>/6,[8I=Q>3.(%.VLY4@)EQC25DF)%^YM(NYT5Q]0.20:MV,W M$GQT>V\AJV[RI$TB7NW'H M)U*-U&HSRV]DL_\8T%E&^2,*,ILN'Y=C0XPCA\49ZOH=4Q?Y^A8RTKJSE.!9 MR&,%/TL.EBD;%+2I]5`NEFX0"XQ:12U>L!)>>C]VW=2=9,F M%B"2(-#UDR.7*[+#KG1#SPOOJ-YX*Y%P.%UV1=0HE_&S9%MV"8G6QW("^\"< M@?*1B1#R*O?_R6;?H5"&Y"[WZ9(@VCL[/'AE25FS;K&*U-A[)E!1LK*_KN#, MZZI?VB!.=5&LF?.I%RM7:>%I9/]=GIZTGL/[F^__F?5Z^OM/==.H2_NOOMK_ MMY24'DK+C@Y@I@?6LK3L,G4Z[37M>X,REP?7'#5C0]&'+P^RKP?!S)=7VZ1WT;6=WK*D&SF1D:.!FO0%]+TN+N[FS8[I&IAB>^3GV"(V:\# M-(6=AF2P-+?6X(BL'!L]1[0D&IF,MD.+0_=J16@-WJ$!31'W?0<=B``N6>#R MT(HM^-IR[E]W8\8ZW"GA]LVEI&`;C^+GY%!5VF(=U>):"M!PK,^#Y91K*@8BU9H>*\7]M: M]J.50F\XQC(J0I-0G7?5/\AN0M_S;)WDVQK,KVLM0LKMQ$XR(][=6"_5W*_$ M7(JXNE5!20N:/50JI.<.K$TXF-I):"^[UVLC?_M4>7BS409&>Y;)(EHLM"+F M^5/E3[8JN&#W?)69H7!SD8J\TM6VN5CRA%;^,_&\YMG3_LID%9D+.F./U73` M,32/7N>"IR):5AUK9NES8^/H>"Y1ZOYP5ZI=U25:U9KM2E5N=I0R%BPOM%!/ M/I`)$Y5[NEE'W/BQ\R;J$U1Z%FK7=]Z`V8.])S>^TA$G41&UI<-=3?T7>XVU MT][6L:TRKYNDUH^:#-P8ZCCGLW*3\8?UMDR<,V#*T:!>QY!`];ZN[$S\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 Jul 11 08:20:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09862 for freebsd-ports-outgoing; Sat, 11 Jul 1998 08:20:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09857 for ; Sat, 11 Jul 1998 08:20:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA26518; Sat, 11 Jul 1998 08:20:01 -0700 (PDT) Date: Sat, 11 Jul 1998 08:20:01 -0700 (PDT) Message-Id: <199807111520.IAA26518@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Peter Cornelius Subject: Re: ports/6993: cvsup (X): Heaps of fatal process exception: page fault,... but seems to work still. Reply-To: Peter Cornelius Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6993; it has been noted by GNATS. From: Peter Cornelius To: Brett Taylor Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/6993: cvsup (X): Heaps of fatal process exception: page fault,... but seems to work still. Date: Sat, 11 Jul 1998 17:17:11 +0200 Thank you for the response and please excuse the late reply. I had to recover from a little bit of a breakdown 8-S On Fri, Jun 19, 1998 at 10:24:42AM -0600, Brett Taylor wrote: > You MUST use 15.4 now. Upgrade CVSUP and see the mail list archives for > John Polstra's explanation. Thanks for the hint, I upgraded, but the messages did not go away. But I received a note from John Polstra about which kernel option to switch off to quiet a bit the kernel :) Thanks again, best regards, Peter. --- Peter Cornelius To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 08:30:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11157 for freebsd-ports-outgoing; Sat, 11 Jul 1998 08:30:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA11151 for ; Sat, 11 Jul 1998 08:30:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA26661; Sat, 11 Jul 1998 08:30:02 -0700 (PDT) Date: Sat, 11 Jul 1998 08:30:02 -0700 (PDT) Message-Id: <199807111530.IAA26661@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Peter Cornelius Subject: Re: ports/6993: cvsup (X): Heaps of fatal process exception: page fault,... but seems to work still. Reply-To: Peter Cornelius Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6993; it has been noted by GNATS. From: Peter Cornelius To: John Polstra Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/6993: cvsup (X): Heaps of fatal process exception: page fault,... but seems to work still. Date: Sat, 11 Jul 1998 17:25:30 +0200 Re... Thanks for the reply! On Thu, Jul 02, 1998 at 08:20:56AM -0700, John Polstra wrote: > Oops, I should have said "options DEBUG". I've added this to the > CVSup FAQ at . Ooops... why did this creep in... Ah, yes. I am trying to get going a scanner. Weird bugger, no success yet (relisys avec color 2400). That's why I wanted the kernel to be _really_ verbose... I promise never ever to forget that again... )8-S But with my ram problems I suspected something quite different... Thanks again, Best regards, Peter. --- Peter Cornelius To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 09:26:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15981 for freebsd-ports-outgoing; Sat, 11 Jul 1998 09:26:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA15911; Sat, 11 Jul 1998 09:25:41 -0700 (PDT) (envelope-from ady@warpnet.ro) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) with SMTP id TAA18092; Sat, 11 Jul 1998 19:25:08 +0300 (EEST) (envelope-from ady@warpnet.ro) Date: Sat, 11 Jul 1998 19:25:08 +0300 (EEST) From: Adrian Penisoara To: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= cc: FreeBSD ports , Satoshi Asami Subject: Re: Arrangements for new port of Pine 4.00 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 Hi, On Sat, 11 Jul 1998, Adrian Penisoara wrote: > > PS: finished portlint'ing and testing on FreeBSD 3.0 and soon I'll send-pr > the port. PR ports/7248 submitted: From: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/7248: New port for Pine 4.00 Thank you very much for your problem report. It has the internal identification `ports/7248'. The individual assigned to look at your report is: freebsd-ports. >Category: ports >Responsible: freebsd-ports >Synopsis: New port for Pine 4.00 >Arrival-Date: Sat Jul 11 04:30:01 PDT 1998 Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 10:39:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA22641 for freebsd-ports-outgoing; Sat, 11 Jul 1998 10:39:37 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA22636; Sat, 11 Jul 1998 10:39:33 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA00577; Sat, 11 Jul 1998 10:39:22 -0700 (PDT) Date: Sat, 11 Jul 1998 10:39:22 -0700 (PDT) Message-Id: <199807111739.KAA00577@freefall.freebsd.org> To: jgrosch@MooseRiver.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4264 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mftp get a Segmentation fault State-Changed-From-To: closed-open State-Changed-By: steve State-Changed-When: Sat Jul 11 10:37:37 PDT 1998 State-Changed-Why: Donald Burr's detective work found out that mftp comes from the moxftp port. Anyone out there with Motif that can test and/or fix this problem? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 10:48:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23477 for freebsd-ports-outgoing; Sat, 11 Jul 1998 10:48:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23472; Sat, 11 Jul 1998 10:48:44 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA00972; Sat, 11 Jul 1998 10:48:33 -0700 (PDT) Date: Sat, 11 Jul 1998 10:48:33 -0700 (PDT) Message-Id: <199807111748.KAA00972@freefall.freebsd.org> To: taguchi@tohoku.iij.ad.jp, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7204 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ja-expect bug State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Jul 11 10:46:50 PDT 1998 State-Changed-Why: Suggested patch committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 10:50:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA23703 for freebsd-ports-outgoing; Sat, 11 Jul 1998 10:50:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23692 for ; Sat, 11 Jul 1998 10:50:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA01086; Sat, 11 Jul 1998 10:50:01 -0700 (PDT) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA22956 for ; Sat, 11 Jul 1998 10:43:02 -0700 (PDT) (envelope-from ady@ady.warpnet.ro) Received: (from ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) id UAA19390; Sat, 11 Jul 1998 20:43:04 +0300 (EEST) (envelope-from ady) Message-Id: <199807111743.UAA19390@ady.warpnet.ro> Date: Sat, 11 Jul 1998 20:43:04 +0300 (EEST) From: Adrian Penisoara Reply-To: ady@warpnet.ro To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7252: Patch for the Pine 3.96 port (MASTER_SITES update) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7252 >Category: ports >Synopsis: Patch for the Pine 3.96 port (MASTER_SITES update) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 11 10:50:00 PDT 1998 >Last-Modified: >Originator: Adrian Penisoara >Organization: Warp Net Technologies >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: This patch has been tested under: * FreeBSD 2.2.6-RELEASE * FreeBSD 3.0-980520-SNAP i386 >Description: This patch will update MASTER_SITES to a feasable URL ( ftp://ftp.cac.washington.edu/pine/old/ ), since it disappeared from /pine/ when the new 4.00 version has appearead. >How-To-Repeat: Try to fetch the distfile for 'mail/pine'. >Fix: I have attached a port which modifies the following files: * Makefile - Updated MASTER_SITES, added EXTRACT_SUFX (.tar.Z), changed MAINTAINER * files/md5 - New checksum for pine-3.96.tar.Z As the port seems it doesn't currently have any maintainer I would be very pleased to maintain it; please make the necessary modifications. The port directory should be/have been renamed from 'mail/pine' to 'mail/pine3' -- please review 'ports/7248' ! Thank you, Adrian Penisoara Ady (@freebsd.ady.ro) --8<-- begin 644 pine3.diff.gz M'XL("!:>IS4"`W!I;F4S+F1I9F8`E9%/;YPP$,7/\"GFV(IB/)@_`0D)FF6C M3<6F6J@:Y1+98&]1R;("5E'[Z6M`B5;MJ99L'W[S9C3OV;8-!?\I5=M)T@_M MT:@N$K92`#!`%KMN3#W`*+HQ+%M!R?Y M.IIVD955?G@N=Y6&AIK.L>/HE]2\)J]\_-&>CE-_(K*Y.'-#Q[3^5]%WC5;E MC]4ANZV>RV_;Q\0@$Q_(DPGS_-V^TC<_),:Y'Z8QW0Y2?BXWVL'C/.P*ZVZI MTE2,#>'-+S+TN@,4V1X3,!9,4*]=]\O7]1/!>82.9?9Y=%X:?\WENVRT_0.X M`5`O1C=VZ>QXN.3R7OMW,&'LT:M@="IS(G:Q\>'#6PS+8L??'R$!H9@KJ%#H M1H%2+OHH4=2A\KV@\1@7>KE_E$^SD(7(;A1M4-8,0[]6J)0,:AJX=<2%4.8? (FA(WD&D"``"A ` end --8<-- >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 Jul 11 10:54:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA24043 for freebsd-ports-outgoing; Sat, 11 Jul 1998 10:54:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA24033; Sat, 11 Jul 1998 10:54:33 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA01405; Sat, 11 Jul 1998 10:54:22 -0700 (PDT) Date: Sat, 11 Jul 1998 10:54:22 -0700 (PDT) Message-Id: <199807111754.KAA01405@freefall.freebsd.org> To: ejc@bazzle.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7034 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Jul 11 10:52:20 PDT 1998 State-Changed-Why: New port committed. This port is very cool, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 11:22:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA27312 for freebsd-ports-outgoing; Sat, 11 Jul 1998 11:22:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA27283; Sat, 11 Jul 1998 11:21:58 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02391; Sat, 11 Jul 1998 11:21:47 -0700 (PDT) Date: Sat, 11 Jul 1998 11:21:47 -0700 (PDT) Message-Id: <199807111821.LAA02391@freefall.freebsd.org> To: giffunip@asme.org, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5295 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Math port: umfpack State-Changed-From-To: analyzed-closed State-Changed-By: steve State-Changed-When: Sat Jul 11 11:19:49 PDT 1998 State-Changed-Why: New port committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 11:29:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA28562 for freebsd-ports-outgoing; Sat, 11 Jul 1998 11:29:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA28534; Sat, 11 Jul 1998 11:29:20 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02759; Sat, 11 Jul 1998 11:29:10 -0700 (PDT) Date: Sat, 11 Jul 1998 11:29:10 -0700 (PDT) Message-Id: <199807111829.LAA02759@freefall.freebsd.org> To: sec@42.org, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5309 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: sls-1.00 [category misc] State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Jul 11 11:25:30 PDT 1998 State-Changed-Why: New port committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 11:34:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA29698 for freebsd-ports-outgoing; Sat, 11 Jul 1998 11:34:32 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA29682; Sat, 11 Jul 1998 11:34:28 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA03055; Sat, 11 Jul 1998 11:34:17 -0700 (PDT) Date: Sat, 11 Jul 1998 11:34:17 -0700 (PDT) Message-Id: <199807111834.LAA03055@freefall.freebsd.org> To: billf@firewall.chc-chimes.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7192 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: bnc State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Jul 11 11:33:57 PDT 1998 State-Changed-Why: New port committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 19:20:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA04819 for freebsd-ports-outgoing; Sat, 11 Jul 1998 19:20:37 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA04776 for ; Sat, 11 Jul 1998 19:20:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA14324; Sat, 11 Jul 1998 19:20:01 -0700 (PDT) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA04620 for ; Sat, 11 Jul 1998 19:19:43 -0700 (PDT) (envelope-from ady@ady.warpnet.ro) Received: (from ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) id BAA26332; Sun, 12 Jul 1998 01:06:18 +0300 (EEST) (envelope-from ady) Message-Id: <199807112206.BAA26332@ady.warpnet.ro> Date: Sun, 12 Jul 1998 01:06:18 +0300 (EEST) From: Adrian Penisoara Reply-To: ady@warpnet.ro To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: desmo@bandwidth.org X-Send-Pr-Version: 3.2 Subject: ports/7255: Update of ircd-hybrid-5 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7255 >Category: ports >Synopsis: Update of ircd-hybrid-5 port >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 11 19:20:00 PDT 1998 >Last-Modified: >Originator: Adrian Penisoara >Organization: Warp Net Technologies >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: This port has been tested under: * FreeBSD 3.0-980520-SNAP i386 >Description: The source tarball of the ircd-hybrid-5.2p1 isn't avaliable anymore, instead a new 5.3 version appeared. Plus some extra patches (optional). >How-To-Repeat: Try to fetch the distfile of the port. >Fix: I've attached a shar archive that contains 2 files: * ircd-h5.diff - patches for Makefile + files/md5 * ircd-h5.extra.diff - optional patches for patches/ directory ircd-h5.diff patches: * Makefile - updates DISTNAME/PKGNAME and MASTER_SITES * files/md5 - updates the md5 checksum ircd-h5.extra.diff patches (these are optional and the maintainer should have a word to say about them): * patches/patch-ab - changes the place of two log files from /usr/local/etc/ to /var/log * patches/patch-ad - new file; patch against src/list.c ; read ${WRKSRC}/README.small_nets to understand why; basicly these numbers are too high for a regular (small) site, wasting memory in vain... Thanks, Ady (@freebsd.ady.ro) --8<-- # 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: # # ircd-h5.diff # ircd-h5.extra.diff # echo x - ircd-h5.diff sed 's/^X//' >ircd-h5.diff << 'END-of-ircd-h5.diff' X--- Makefile.orig Mon Jun 8 01:38:35 1998 X+++ Makefile Sat Jul 11 22:51:49 1998 X@@ -6,8 +6,8 @@ X # $Id: Makefile,v 1.5 1998/06/07 15:58:19 dburr Exp $ X # X X-DISTNAME= ircd-hybrid-5.2p1 X-PKGNAME= ircd-hybrid-5.2.1 X+DISTNAME= ircd-hybrid-5.3 X+PKGNAME= ircd-hybrid-5.3 X CATEGORIES= net X MASTER_SITES= ftp://ftp.vol.com/pub/ircd/ X X--- files/md5.orig Mon Jun 8 01:38:35 1998 X+++ files/md5 Sat Jul 11 22:54:12 1998 X@@ -1 +1 @@ X-MD5 (ircd-hybrid-5.2p1.tar.gz) = dc7b91da8d14435ed075eed45cd6a4a5 X+MD5 (ircd-hybrid-5.3.tar.gz) = 7f22c603ac60d54e98e84bae2abd39d8 END-of-ircd-h5.diff echo x - ircd-h5.extra.diff sed 's/^X//' >ircd-h5.extra.diff << 'END-of-ircd-h5.extra.diff' X--- patches/patch-ab.orig Mon Jun 8 01:38:36 1998 X+++ patches/patch-ab Sat Jul 11 23:56:36 1998 X@@ -1,5 +1,5 @@ X---- include/config.h.old Sun Jun 7 07:08:17 1998 X-+++ include/config.h Sun Jun 7 07:12:38 1998 X+--- include/config.h.orig Tue Jul 7 17:40:42 1998 X++++ include/config.h Sat Jul 11 23:52:40 1998 X @@ -27,8 +27,8 @@ X /***************** MAKE SURE THIS IS CORRECT!!!!!!!!! **************/ X /* ONLY EDIT "HARD_FDLIMIT_" and "INIT_MAXCLIENTS" */ X@@ -28,8 +28,8 @@ X */ X -#define FNAME_USERLOG "/usr/local/ircd/users" /* */ X -#define FNAME_OPERLOG "/usr/local/ircd/opers" /* */ X-+#define FNAME_USERLOG "/usr/local/etc/ircd/users" /* */ X-+#define FNAME_OPERLOG "/usr/local/etc/ircd/opers" /* */ X++#define FNAME_USERLOG "/var/log/ircd.users" /* */ X++#define FNAME_OPERLOG "/var/log/ircd.opers" /* */ X X /* FOLLOW_IDENT_RFC X * X--- patches/patch-ad.orig Sun Jul 12 00:40:56 1998 X+++ patches/patch-ad Sat Jul 11 23:14:08 1998 X@@ -0,0 +1,20 @@ X+--- src/list.c.orig Tue Jul 7 17:40:52 1998 X++++ src/list.c Sat Jul 11 23:12:41 1998 X+@@ -49,7 +49,7 @@ X+ for smaller nets who knows? -Dianora X+ */ X+ X+-#define LINK_PREALLOCATE 1024 X++#define LINK_PREALLOCATE 64 X+ X+ /* Number of aClient structures to preallocate at a time X+ for Efnet 1024 is reasonable X+@@ -60,7 +60,7 @@ X+ rather than 30k times -Dianora X+ */ X+ X+-#define CLIENTS_PREALLOCATE 1024 X++#define CLIENTS_PREALLOCATE 64 X+ X+ void outofmemory(); X+ END-of-ircd-h5.extra.diff exit --8<-- >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 Jul 11 19:33:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA08398 for freebsd-ports-outgoing; Sat, 11 Jul 1998 19:33:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA08288; Sat, 11 Jul 1998 19:32:52 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA08466; Sat, 11 Jul 1998 15:05:38 -0700 (PDT) Date: Sat, 11 Jul 1998 15:05:38 -0700 (PDT) Message-Id: <199807112205.PAA08466@freefall.freebsd.org> To: gad@eclipse.its.rpi.edu, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7219 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: misc/screen does not include libcrypt on 'make' State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Jul 11 15:04:07 PDT 1998 State-Changed-Why: This ia problem associated with the a.out -> elf movement. Make sure /usr/lib/libcrypt.a exists and this port will build. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 19:33:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA08492 for freebsd-ports-outgoing; Sat, 11 Jul 1998 19:33:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA08361; Sat, 11 Jul 1998 19:33:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA08089; Sat, 11 Jul 1998 14:51:12 -0700 (PDT) Date: Sat, 11 Jul 1998 14:51:12 -0700 (PDT) Message-Id: <199807112151.OAA08089@freefall.freebsd.org> To: daetalus@his.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6743 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: diff to upgrade tkrat to tkrat1.1 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Jul 11 14:49:59 PDT 1998 State-Changed-Why: Duplicate of PR #7244. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 19:34:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA08787 for freebsd-ports-outgoing; Sat, 11 Jul 1998 19:34:23 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA08593; Sat, 11 Jul 1998 19:33:54 -0700 (PDT) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA06569; Sat, 11 Jul 1998 13:38:10 -0700 (PDT) Date: Sat, 11 Jul 1998 13:38:10 -0700 (PDT) Message-Id: <199807112038.NAA06569@freefall.freebsd.org> To: jseger@FreeBSD.ORG, jseger@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6413 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new ports for lynx2.8rel.3 (modified for multibyte character) Responsible-Changed-From-To: jseger->freebsd-ports Responsible-Changed-By: jseger Responsible-Changed-When: Sat Jul 11 13:36:53 PDT 1998 Responsible-Changed-Why: This is a new port and I don't deal with Japanese ports. Someone else should take this. . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 19:35:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA09142 for freebsd-ports-outgoing; Sat, 11 Jul 1998 19:35:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA09020 for ; Sat, 11 Jul 1998 19:34:50 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (cs11i01.ppp.infoweb.or.jp [202.219.190.161]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id SAA14523 for ; Sat, 11 Jul 1998 18:20:41 -0700 (PDT) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id KAA13167; Sun, 12 Jul 1998 10:17:19 +0900 (JST) (envelope-from asami) Date: Sun, 12 Jul 1998 10:17:19 +0900 (JST) Message-Id: <199807120117.KAA13167@bubble.didi.com> To: ady@warpnet.ro CC: freebsd-ports@FreeBSD.ORG In-reply-to: (message from Adrian Penisoara on Sat, 11 Jul 1998 03:23:42 +0300 (EEST)) Subject: Re: Arrangements for new port of Pine 4.00 From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Is the 'mail/pine3' : 'mail/pine4' scheme OK with you ? Please announce * me when you have finished the repository copy. * * Pine 3.96 -> mail/pine -> mail/pine3 * Pine 4.00 --------------> mail/pine4 Yes, that's ok. (Andrey, we usually err on the side of cautiosness when we upgrade major ports like this. We can always delete pine3 if pine4 proves to be stable enough.) I just did a repository copy. Please do the rest. Don't forgot to set NO_LATEST_LINK in pine4/Makefile. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 19:50:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13219 for freebsd-ports-outgoing; Sat, 11 Jul 1998 19:50:51 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nd2.san.rr.com (@dt053nd2.san.rr.com [204.210.34.210]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA13194 for ; Sat, 11 Jul 1998 19:50:46 -0700 (PDT) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053nd2.san.rr.com (8.8.8/8.8.8) with ESMTP id TAA01396; Sat, 11 Jul 1998 19:50:34 -0700 (PDT) (envelope-from Studded@dal.net) Message-ID: <35A82479.68BD19CE@dal.net> Date: Sat, 11 Jul 1998 19:50:33 -0700 From: Studded Reply-To: FreeBSD Questions Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 2.2.6-STABLE-0507 i386) MIME-Version: 1.0 To: pierced@geocities.com CC: ports@FreeBSD.ORG Subject: Re: DHCP Client References: <000201bdaa0d$53563fa0$02000003@shane.wave.shaw.ca> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Shane Brothen wrote: > > Hello, I've decided to switch from NT to FreeBSD for more speed and less > problems. Now I already re-partitioned the hard disk and then found out I > could notdirectly install from the net because my service provider needs > DHCP, so, I can for sure get it all up and running but when I do I need it > to use DHCP, is there something I can use for DHCP? Take a look at http://home.san.rr.com/freebsd/dhcp.html and see if that does it for you. If you have any further questions please send them to freebsd-questions@freebsd.org. Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 20:03:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA16136 for freebsd-ports-outgoing; Sat, 11 Jul 1998 20:03:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gforce.johnson.home (host-209-214-153-124.sld.bellsouth.net [209.214.153.124]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA16114 for ; Sat, 11 Jul 1998 20:03:11 -0700 (PDT) (envelope-from glenn@bellsouth.net) Received: from bellsouth.net (localhost.johnson.home [127.0.0.1]) by gforce.johnson.home (8.8.8/8.8.8) with ESMTP id WAA00750 for ; Sat, 11 Jul 1998 22:03:03 -0500 (CDT) (envelope-from glenn@bellsouth.net) Message-Id: <199807120303.WAA00750@gforce.johnson.home> X-Mailer: exmh version 2.0.2 2/24/98 To: ports@FreeBSD.ORG From: Glenn Johnson Subject: Getting exmh2 and pgp5 to work Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 11 Jul 1998 22:03:02 -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org There is a patch to add pgp5 support to exmh2.0.2 available: http://berger1.informatik.fh-muenchen.de:8000/download/pgp50/exmh-pgp5.patch.gz There is a link to it from the official exmh patch page. This patch adds pgp5.0 support to exmh 2.0.2. In order for this patch to work, the pgpExec.tcl patch, which is provided by the FBSD port as "patch-as", needs to be removed. Thanks. -- Glenn Johnson gljohns@bellsouth.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 23:10:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA13577 for freebsd-ports-outgoing; Sat, 11 Jul 1998 23:10:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.his.com (root@mail.his.com [205.177.25.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA13508 for ; Sat, 11 Jul 1998 23:09:58 -0700 (PDT) (envelope-from randy@his.com) Received: from randy.his.com (randy.his.com [205.252.80.53]) by mail.his.com (8.8.5/8.8.5) with SMTP id CAA13050; Sun, 12 Jul 1998 02:09:45 -0400 (EDT) Message-ID: <000001bdad5b$b9e89aa0$3550fccd@randy.his.com> From: "Randy Philipp" To: Cc: Subject: FreeBSD Port: upsd-2.0 Date: Sat, 20 Jun 1998 23:38:53 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0004_01BD9CA4.95FE9120" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0004_01BD9CA4.95FE9120 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Do you think you could change the location of the configuration file to = /usr/local/etc, I presume this was an oersight on somebodies part. I am just getting it = setup on some machines using it when I discovered it. BTW, is there a plan for a man page for upsd? ------------- Randy Philipp randy@his.com ------=_NextPart_000_0004_01BD9CA4.95FE9120 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

Do you think you could change the = location of=20 the configuration file to /usr/local/etc,
I presume this was an oersight on = somebodies=20 part.  I am just getting it setup on
some machines using it when I = discovered=20 it.
 
BTW, is there a plan for a man page = for=20 upsd?
 
-------------
Randy Philipp
 
 
------=_NextPart_000_0004_01BD9CA4.95FE9120-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 23:24:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA14961 for freebsd-ports-outgoing; Sat, 11 Jul 1998 23:24:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from joshua.enteract.com (joshua.enteract.com [207.229.129.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id XAA14956 for ; Sat, 11 Jul 1998 23:24:44 -0700 (PDT) (envelope-from djhoward@joshua.enteract.com) Received: (qmail 510 invoked by uid 1032); 12 Jul 1998 06:24:42 -0000 Message-ID: <19980712012442.C26465@enteract.com> Date: Sun, 12 Jul 1998 01:24:42 -0500 From: dannyman To: ports@FreeBSD.ORG Subject: pine4 and mutt Mail-Followup-To: ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i X-Loop: djhoward@uiuc.edu X-URL: http://www.dannyland.org/~dannyman/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hey, two points; 1:23 djhoward@adam /usr/ports/mail/pine4> grep pine Makefile # New ports collection makefile for: pine # http://www.washington.edu/pine/ DISTNAME= pine3.96 PKGNAME= pine-3.96 [...] ... does this somehow magically result in pine4? also, has anyone sent a port for the latest release of mutt? will it soon be committed? happy weekends folks! love, danny -- // dannyman yori aiokomete || Our Honored Symbol deserves \\/ http://www.dannyland.org/~dannyman/ || an Honorable Retirement (UIUC) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jul 11 23:33:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA15643 for freebsd-ports-outgoing; Sat, 11 Jul 1998 23:33:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from lsd.relcom.eu.net (ache@lsd.relcom.eu.net [193.125.27.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA15633; Sat, 11 Jul 1998 23:33:26 -0700 (PDT) (envelope-from ache@lsd.relcom.eu.net) Received: (from ache@localhost) by lsd.relcom.eu.net (8.8.8/8.8.8) id KAA02755; Sun, 12 Jul 1998 10:33:08 +0400 (MSD) (envelope-from ache) Message-ID: <19980712103307.A22942@nagual.pp.ru> Date: Sun, 12 Jul 1998 10:33:07 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Satoshi Asami , ady@warpnet.ro Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Arrangements for new port of Pine 4.00 Mail-Followup-To: Satoshi Asami , ady@warpnet.ro, freebsd-ports@FreeBSD.ORG References: <199807120117.KAA13167@bubble.didi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807120117.KAA13167@bubble.didi.com>; from asami@FreeBSD.ORG on Sun, Jul 12, 1998 at 10:17:19AM +0900 Organization: Biomechanoid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Jul 12, 1998 at 10:17:19AM +0900, Satoshi Asami wrote: > * Is the 'mail/pine3' : 'mail/pine4' scheme OK with you ? Please announce > * me when you have finished the repository copy. > * > * Pine 3.96 -> mail/pine -> mail/pine3 > * Pine 4.00 --------------> mail/pine4 > > Yes, that's ok. (Andrey, we usually err on the side of cautiosness > when we upgrade major ports like this. We can always delete pine3 if > pine4 proves to be stable enough.) > > I just did a repository copy. Please do the rest. Don't forgot to > set NO_LATEST_LINK in pine4/Makefile. Are we going to have two pine4 ports? As port maintainer I plan to upgrade to 4.00 as I find time. It results with two pine4 ports. Submitted pine4 port is deadly broken just because essential pine3.96 patches are dropped out so I not reccomed to use it in anycase. -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ MTH/SH/HE S-- W-- N+ PEC>+ D A a++ C G>+ QH+(++) 666+>++ Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message