From owner-freebsd-ports Sun Dec 14 01:43:48 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA24601 for ports-outgoing; Sun, 14 Dec 1997 01:43:48 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from colossus.dyn.ml.org (root@206-18-115-152.la.inreach.net [206.18.115.152]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA24588; Sun, 14 Dec 1997 01:43:21 -0800 (PST) (envelope-from dburr@POBoxes.com) Received: from control.colossus.dyn.ml.org (dburr@control.colossus.dyn.ml.org [192.160.60.1]) by colossus.dyn.ml.org (8.8.7/8.8.7) with SMTP id BAA24792; Sun, 14 Dec 1997 01:46:34 -0800 (PST) (envelope-from dburr@POBoxes.com) Message-ID: X-Mailer: XFMail 1.1 [p0] on FreeBSD MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="_=XFMail.1.1.p0.FreeBSD:971214014632:23355=_" Date: Sun, 14 Dec 1997 01:14:12 -0800 (PST) Organization: Starfleet Command From: Donald Burr To: FreeBSD Ports , se@freebsd.org Subject: About the KDE port Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk This message is in MIME format --_=XFMail.1.1.p0.FreeBSD:971214014632:23355=_ Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- I finally built and installed the KDE port this weekend. I LOVE IT! Thanks so much for porting it to FreeBSD. I did notice several things that don't quite work right, so I thought I should mention them here, so that you may be aware of them and fix them for the next kde port, etc. Those are: kaudioserver dies with a signal 11 (segfault) upon startup. KDE's "find" module (kfind) assumes that the `find' utility is from the GNU fileutils pckage. This is the case for Linux, but NOT the case for FreeBSD. (mainly, kfind calls find with the "-fprint" option, which doesn't exist in the FreeBSD `find'). A patch written by one of the people on the KDE mailing list is attached. KDE has the capability for you to put icons of devices (cd-rom, jaz, etc.) on the desktop, then mount and unmount them by clicking on the icons. The icons change to show whether the devices are mounted or not. This feature does not work on the FreeBSD port -- probably uses some Linux-specific syscall or mount command syntax. (Yes, I fixed the mount adn umount binaries so that I can execute them as a normal user.) The "memory" and "processor" control panels do not show a lot of useful information. Probably depends on the Linux /proc tree, so there probably isn't much you can do about it, but I thought I should mention it just in case. The "su" command in /usr/local/bin/kfmsu2 does not work right as written, so the "KFM as superuser" window dies immediately without offering the opportunity to type in the root password. Changing it to read: su root -c "kfm -sw >/dev/null" makes it work fine. The terminal emulator (kvt) does not put proper UTMP entries in /var/run/utmp. This means that commands like w. finger, etc. do not display proper login entries for users' kvt windows, "talk" and "write" do not work properly, etc. There is (suppsedly) a compile time option "UTMP_SUPPORT" in the utmp.c source file, defining this should do the trick. At least according to the folks on the KDE mailing list. - --- 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. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNJOq9/jpixuAwagxAQHJWAQAhIGm1CtxW1FvODkggSt3D7owh5rc81HL k9BS+4xSOrQIHyz0xWBjcmDS3OmbLxvLmZgGEeu63WAZgalbmydo8WvyzMM/gkGv Raw64gMaa46q8kOngKYv0syLxh7eAAt9m49hHt+2SYtAfKyqaGOYsyaxOe8r06Mv PKuyNrlUTEE= =6PMs -----END PGP SIGNATURE----- --_=XFMail.1.1.p0.FreeBSD:971214014632:23355=_ Content-Disposition: attachment; filename="kfind.diff" Content-Transfer-Encoding: 7bit Content-Description: kfind.diff Content-Type: text/plain; charset=us-ascii; name=kfind.diff; SizeOnDisk=2561 diff -r -C3 kfind/kfind.cpp kfind.new/kfind.cpp *** kfind/kfind.cpp Sat Nov 8 01:02:46 1997 --- kfind.new/kfind.cpp Mon Dec 8 13:54:23 1997 *************** *** 59,64 **** --- 59,67 ---- win,SLOT(openBinding())); connect(&findProcess,SIGNAL(processExited(KProcess *)), this,SLOT(processResults())); + connect(&findProcess, + SIGNAL(receivedStdout(KProcess *, char *, int)), + this, SLOT(handleStdout(KProcess *, char *, int))) ; emit haveResults(false); resize(tabDialog->sizeHint()); *************** *** 96,102 **** int t = time( 0L ); outFile.sprintf( "/tmp/kfindout%i", t ); ! buffer.append(pom.sprintf(" -fprint %s ",outFile.data())); buffer=buffer.simplifyWhiteSpace(); while( !buffer.isEmpty() ) { --- 99,105 ---- int t = time( 0L ); outFile.sprintf( "/tmp/kfindout%i", t ); ! buffer.append(pom.sprintf(" -print")); buffer=buffer.simplifyWhiteSpace(); while( !buffer.isEmpty() ) { *************** *** 110,116 **** buffer = buffer.remove(0,pos+1); }; ! findProcess.start(); }; }; --- 113,119 ---- buffer = buffer.remove(0,pos+1); }; ! findProcess.start(KProcess::NotifyOnExit, KProcess::AllOutput); }; }; *************** *** 138,143 **** --- 141,157 ---- stopSearch(); }; + + void Kfind::handleStdout(KProcess *proc, char *buffer, int buflen) + { + char tmp = buffer[buflen] ; + buffer[buflen] = '\0' ; + + FILE *f = fopen(outFile.data(),"a"); + fwrite(buffer, strlen(buffer), 1, f); + fclose(f); + buffer[buflen] = tmp ; + } void Kfind::processResults() { diff -r -C3 kfind/kfind.h kfind.new/kfind.h *** kfind/kfind.h Tue Aug 19 05:02:15 1997 --- kfind.new/kfind.h Mon Dec 8 13:54:41 1997 *************** *** 28,33 **** --- 28,34 ---- void stopSearch(); void newSearch(); void processResults(); + void handleStdout(KProcess *proc, char *buffer, int buflen); signals: void haveResults(bool); void resultSelected(bool); diff -r -C3 kfind/kfwin.cpp kfind.new/kfwin.cpp *** kfind/kfwin.cpp Wed Oct 8 01:01:47 1997 --- kfind.new/kfwin.cpp Mon Dec 8 13:35:39 1997 *************** *** 101,106 **** --- 101,107 ---- sprintf(str,klocale->translate("%d file(s) found"),count); emit statusChanged(str); + unlink(file); fclose(f); delete filename; delete strl; --_=XFMail.1.1.p0.FreeBSD:971214014632:23355=_-- End of MIME message From owner-freebsd-ports Sun Dec 14 06:23:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA10261 for ports-outgoing; Sun, 14 Dec 1997 06:23:02 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from didda.est.is (ppp-41.est.is [194.144.208.141]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA10232; Sun, 14 Dec 1997 06:22:48 -0800 (PST) (envelope-from totii@est.is) Received: from est.is (didda.est.is [192.168.255.1]) by didda.est.is (8.8.7/8.8.7) with ESMTP id OAA01388; Sun, 14 Dec 1997 14:22:23 GMT (envelope-from totii@est.is) Message-ID: <3493EB9F.F02F1C3E@est.is> Date: Sun, 14 Dec 1997 14:22:23 +0000 From: "orur Ivarsson" X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: Luigi Rizzo CC: erich@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: xmmix does not compile References: <199712140509.GAA01045@labinfo.iet.unipi.it> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Luigi Rizzo wrote: > > > After installation of newest sound driver kit from Luigi I did try to > > compile xmmix and got following error: > > that's because I still did not merge my version of soundcard.h with the > voxware one. On the other hand that macro is meaningless unless xmmix > uses it to determine which functions are available with the driver. So > you can just put > > #define SOUND_VERSION 301 > > somewhere (that's the original value from soundcard.h in 2.2.x) When running the binary after compile I get the following: > xmmix SOUND_MIXER_READ_CAPS ioctl failed: Invalid argument Warning: Modifier or '<' expected Warning: Modifier or '<' expected Warning: Unknown modifier name: x Warning: Unknown modifier name: r Warning: Modifier or '<' expected Warning: Modifier or '<' expected > I think I did remove the device files from /dev and remaked them for safety (sound* sndstat* dsp* mixer* and more) and checked the links afterwards -- rur varsson Thordur Ivarsson Rafeindavirki Electronic technician Norurgtu 30 Nordurgotu 30 Box 309 Box 309 602 Akureyri 602 Akureyri sland Iceland --------------------------------------------- FreeBSD has good features, Some others are full of unwanted features! --------------------------------------------- From owner-freebsd-ports Sun Dec 14 07:50:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA14925 for ports-outgoing; Sun, 14 Dec 1997 07:50:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA14917; Sun, 14 Dec 1997 07:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 14 Dec 1997 07:50:01 -0800 (PST) Resent-Message-Id: <199712141550.HAA14917@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, andy@icc.surw.chel.su Received: from rich.chel.su (root@mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA14352 for ; Sun, 14 Dec 1997 07:40:07 -0800 (PST) (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 UAA17455 for ; Sun, 14 Dec 1997 20:40:22 +0500 (UST) Received: (from andy@localhost) by icc.surw.chel.su (8.8.5/8.8.4) id SAA13344; Sun, 14 Dec 1997 18:43:31 +0300 (MSK) Message-Id: <199712141543.SAA13344@icc.surw.chel.su> Date: Sun, 14 Dec 1997 18:43:31 +0300 (MSK) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5290: Update port: net/mpd Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5290 >Category: ports >Synopsis: Update port: net/mpd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 14 07:50:01 PST 1997 >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 net/mpd port. diff -Nru mpd/Makefile mpd.new/Makefile --- mpd/Makefile Sat Oct 25 22:33:38 1997 +++ mpd.new/Makefile Sun Dec 14 18:37:36 1997 @@ -8,7 +8,7 @@ DISTNAME= mpd-1.0b4 CATEGORIES= net -MASTER_SITES= ftp://ftp.whistle.com/pub/archie/ +MASTER_SITES= ftp://ftp.whistle.com/pub/archie/mpd EXTRACT_SUFX= .tgz MAINTAINER= andy@icc.surw.chel.su >How-To-Repeat: >Fix: Please, check and apply this patch. >Audit-Trail: >Unformatted: From owner-freebsd-ports Sun Dec 14 10:26:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA25568 for ports-outgoing; Sun, 14 Dec 1997 10:26:45 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from agora.rdrop.com (root@agora.rdrop.com [199.2.210.241]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA25561 for ; Sun, 14 Dec 1997 10:26:43 -0800 (PST) (envelope-from batie@agora.rdrop.com) Received: (from batie@localhost) by agora.rdrop.com (8.8.5/8.8.5) id KAA06881; Sun, 14 Dec 1997 10:26:42 -0800 (PST) Message-ID: <19971214102641.40997@agora.rdrop.com> Date: Sun, 14 Dec 1997 10:26:41 -0800 From: Alan Batie To: ports@freebsd.org Subject: bugs in gated makefile Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-md5; boundary=LQksG6bCIzRHxTLp X-Mailer: Mutt 0.76 Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii I updated my gated ports directory from the cvs tree this morning (with "cvs update gated" in the ports/net directory), and when I typed "make", it said "checksum ok", then complained about work/gated-3-5-7 not being found. Of course not, it hadn't done the extract yet. I had to rename the existing work directory to get it to do the extract and proceed with the build. Then when that was done and I did "make install", I got: ===> Compressing manual pages for gated-3.5.7 gdc.8: No such file or directory *** Error code 1 Stop. *** Error code 1 Stop. This seems like a pretty basic error... -- Alan Batie ______ It's not my fault! It's some guy batie@agora.rdrop.com \ / named "General Protection"! +1 503 452-0960 \ / --Ratbert PGP FP: DE 3C 29 17 C0 49 \/ 7A 27 40 A5 3C 37 4A DA 52 B9 It is my policy to avoid purchase of any products from companies which use unrequested email advertisements or telephone solicitation. --LQksG6bCIzRHxTLp Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNJQk4Yv4wNua7QglAQF2FQP/YUmMwv8sWwoMsoFl2e+ojUKXB6QLnak2 dK13pbtDhO7sYYlWvyx5Gx9h31B/yBaNtnlU5wxaH4LJywLHKCgUc/zpf+xE7erv s/SVyLGFUMIUSIG52Y/oAFOYmyGV5clOR2Uv0vnoGsEEfC+fyB27Ewt0hefM+wHG 3fAEGLtuJms= =FW4E -----END PGP SIGNATURE----- --LQksG6bCIzRHxTLp-- From owner-freebsd-ports Sun Dec 14 12:59:22 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA10021 for ports-outgoing; Sun, 14 Dec 1997 12:59:22 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id MAA10016 for ; Sun, 14 Dec 1997 12:59:19 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0xhKyP-0000f3-00; Sun, 14 Dec 1997 12:49:13 -0800 Date: Sun, 14 Dec 1997 12:49:12 -0800 (PST) From: Tom To: Alan Batie cc: ports@freebsd.org Subject: Re: bugs in gated makefile In-Reply-To: <19971214102641.40997@agora.rdrop.com> Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/SIGNED; BOUNDARY="0-10206472-882132552=:2499" Content-ID: Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-10206472-882132552=:2499 Content-Type: TEXT/PLAIN; CHARSET=us-ascii Content-ID: On Sun, 14 Dec 1997, Alan Batie wrote: > I updated my gated ports directory from the cvs tree this morning (with > "cvs update gated" in the ports/net directory), and when I typed "make", > it said "checksum ok", then complained about work/gated-3-5-7 not being > found. Of course not, it hadn't done the extract yet. I had to rename Of course. You need to start with an empty work directory to make this work. All kinds of flag files are kept in their indicating build progress. > the existing work directory to get it to do the extract and proceed with > the build. Then when that was done and I did "make install", I got: > > ===> Compressing manual pages for gated-3.5.7 > gdc.8: No such file or directory > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > > This seems like a pretty basic error... But what is it? I don't see it here, and I just built gated from scratch on 2.2.5-stable system on Friday without any problem. I suspect you have more cruft around that you need to remove. Perhaps remove /usr/ports/net/gated completely, and rebuild. > -- > Alan Batie ______ It's not my fault! It's some guy > batie@agora.rdrop.com \ / named "General Protection"! > +1 503 452-0960 \ / --Ratbert > PGP FP: DE 3C 29 17 C0 49 \/ 7A 27 40 A5 3C 37 4A DA 52 B9 > > It is my policy to avoid purchase of any products from companies which > use unrequested email advertisements or telephone solicitation. > Tom --0-10206472-882132552=:2499 Content-Type: APPLICATION/PGP-SIGNATURE Content-ID: Content-Description: -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNJQk4Yv4wNua7QglAQF2FQP/YUmMwv8sWwoMsoFl2e+ojUKXB6QLnak2 dK13pbtDhO7sYYlWvyx5Gx9h31B/yBaNtnlU5wxaH4LJywLHKCgUc/zpf+xE7erv s/SVyLGFUMIUSIG52Y/oAFOYmyGV5clOR2Uv0vnoGsEEfC+fyB27Ewt0hefM+wHG 3fAEGLtuJms= =FW4E -----END PGP SIGNATURE----- --0-10206472-882132552=:2499-- From owner-freebsd-ports Sun Dec 14 13:20:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA11770 for ports-outgoing; Sun, 14 Dec 1997 13:20:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA11749; Sun, 14 Dec 1997 13:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 14 Dec 1997 13:20:02 -0800 (PST) Resent-Message-Id: <199712142120.NAA11749@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, giffunip@asme.org Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA11175; Sun, 14 Dec 1997 13:12:49 -0800 (PST) (envelope-from nobody) Message-Id: <199712142112.NAA11175@hub.freebsd.org> Date: Sun, 14 Dec 1997 13:12:49 -0800 (PST) From: giffunip@asme.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5295: New Math port: umfpack Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5295 >Category: ports >Synopsis: New Math port: umfpack >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 14 13:20:01 PST 1997 >Last-Modified: >Originator: Pedro Giffuni S. >Organization: U. Nacional de Colombia >Release: 2.2.5-Release >Environment: >Description: New linear algebra library...for academic and benchmarking purposes only. >How-To-Repeat: Also requires the BLAS update that was already submitted. >Fix: umfpack.tar.gz in incoming >Audit-Trail: >Unformatted: From owner-freebsd-ports Sun Dec 14 17:27:29 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA02032 for ports-outgoing; Sun, 14 Dec 1997 17:27:29 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from agora.rdrop.com (root@agora.rdrop.com [199.2.210.241]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id RAA02027 for ; Sun, 14 Dec 1997 17:27:27 -0800 (PST) (envelope-from batie@agora.rdrop.com) Received: (from batie@localhost) by agora.rdrop.com (8.8.5/8.8.5) id RAA05630; Sun, 14 Dec 1997 17:27:20 -0800 (PST) Message-ID: <19971214172720.61593@agora.rdrop.com> Date: Sun, 14 Dec 1997 17:27:20 -0800 From: Alan Batie To: Tom Cc: ports@FreeBSD.ORG Subject: Re: bugs in gated makefile References: <19971214102641.40997@agora.rdrop.com> Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-md5; boundary=sdtB3X0nJg68CQEu X-Mailer: Mutt 0.76 In-Reply-To: ; from Tom on Sun, Dec 14, 1997 at 12:49:12PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii On Sun, Dec 14, 1997 at 12:49:12PM -0800, Tom wrote: > Of course. You need to start with an empty work directory to make this > work. All kinds of flag files are kept in their indicating build > progress. I've never seen anything in a work directory other than a version specific subdirectory, which is as it should be. One should be able to upgrade without losing the old version "just in case" (which is far too often the case). > But what is it? I don't see it here, and I just built gated from > scratch on 2.2.5-stable system on Friday without any problem. I suspect > you have more cruft around that you need to remove. Perhaps remove > /usr/ports/net/gated completely, and rebuild. Aye, and there's the bug: a dependence on something irrelevant that causes obscure failures. While I *am* running an old 2.1.5 system, the man source directory is still in ports/net/gated/work/versiondir/man, and they still get installed in /usr/local/man/whereever. Some of us actually use our systems and can't just blow away the system and reinstall from scratch on a whim... (which doesn't directly apply in this case, but there's a principle there I wish more people understood). -- Alan Batie ______ It's not my fault! It's some guy batie@agora.rdrop.com \ / named "General Protection"! +1 503 452-0960 \ / --Ratbert PGP FP: DE 3C 29 17 C0 49 \/ 7A 27 40 A5 3C 37 4A DA 52 B9 It is my policy to avoid purchase of any products from companies which use unrequested email advertisements or telephone solicitation. --sdtB3X0nJg68CQEu Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNJSHd4v4wNua7QglAQG2OwQAsnRwwYrc64o3goCVku+y0OcgghDTR8DG oXivZn3pRxcpVLMGvMg/ekmhMPPYivV6g7gm/A9YA7KHBLgW5RCdwC7K0wh63NPp AIR3ymdACb3OUZb3UaCcq1USD0MQVJXxBt5H2CC9QVwAo0vhOYpIecGAnofRiM7g tz+1elScp5M= =k796 -----END PGP SIGNATURE----- --sdtB3X0nJg68CQEu-- From owner-freebsd-ports Sun Dec 14 17:49:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA04509 for ports-outgoing; Sun, 14 Dec 1997 17:49:59 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id RAA04498 for ; Sun, 14 Dec 1997 17:49:54 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0xhPVg-0001zm-00; Sun, 14 Dec 1997 17:39:52 -0800 Date: Sun, 14 Dec 1997 17:39:50 -0800 (PST) From: Tom To: Alan Batie cc: ports@freebsd.org Subject: Re: bugs in gated makefile In-Reply-To: <19971214172720.61593@agora.rdrop.com> Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/SIGNED; BOUNDARY="0-2069344289-882149990=:7576" Content-ID: Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-2069344289-882149990=:7576 Content-Type: TEXT/PLAIN; CHARSET=us-ascii Content-ID: On Sun, 14 Dec 1997, Alan Batie wrote: > On Sun, Dec 14, 1997 at 12:49:12PM -0800, Tom wrote: > > Of course. You need to start with an empty work directory to make this > > work. All kinds of flag files are kept in their indicating build > > progress. > > I've never seen anything in a work directory other than a version specific > subdirectory, which is as it should be. One should be able to upgrade without > losing the old version "just in case" (which is far too often the case). Let me see: .build_done .configure_done .extract_done .package_done .patch_done > > But what is it? I don't see it here, and I just built gated from > > scratch on 2.2.5-stable system on Friday without any problem. I suspect > > you have more cruft around that you need to remove. Perhaps remove > > /usr/ports/net/gated completely, and rebuild. > > Aye, and there's the bug: a dependence on something irrelevant that causes > obscure failures. While I *am* running an old 2.1.5 system, the man source > directory is still in ports/net/gated/work/versiondir/man, and they still > get installed in /usr/local/man/whereever. Some of us actually use our > systems and can't just blow away the system and reinstall from scratch on > a whim... (which doesn't directly apply in this case, but there's a > principle there I wish more people understood). Sorry, the ports framework isn't backwards compatible to older releases. There are better reasons for upgrading a 2.1.5 system though. You don't have to "blow away" your system to upgrade. A source upgrade is possible from 2.1 to 2.2.5. > -- > Alan Batie ______ It's not my fault! It's some guy > batie@agora.rdrop.com \ / named "General Protection"! > +1 503 452-0960 \ / --Ratbert > PGP FP: DE 3C 29 17 C0 49 \/ 7A 27 40 A5 3C 37 4A DA 52 B9 > > It is my policy to avoid purchase of any products from companies which > use unrequested email advertisements or telephone solicitation. > Tom --0-2069344289-882149990=:7576 Content-Type: APPLICATION/PGP-SIGNATURE Content-ID: Content-Description: -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNJSHd4v4wNua7QglAQG2OwQAsnRwwYrc64o3goCVku+y0OcgghDTR8DG oXivZn3pRxcpVLMGvMg/ekmhMPPYivV6g7gm/A9YA7KHBLgW5RCdwC7K0wh63NPp AIR3ymdACb3OUZb3UaCcq1USD0MQVJXxBt5H2CC9QVwAo0vhOYpIecGAnofRiM7g tz+1elScp5M= =k796 -----END PGP SIGNATURE----- --0-2069344289-882149990=:7576-- From owner-freebsd-ports Sun Dec 14 18:16:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA06879 for ports-outgoing; Sun, 14 Dec 1997 18:16:52 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from megaweapon.zigg.com (tcgr-190.dialup.alliance.net [207.74.43.190]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA06844; Sun, 14 Dec 1997 18:16:35 -0800 (PST) (envelope-from matt@megaweapon.zigg.com) Received: from localhost (matt@localhost) by megaweapon.zigg.com (8.8.8/8.8.7) with SMTP id VAA23247; Sun, 14 Dec 1997 21:17:14 -0500 (EST) (envelope-from matt@megaweapon.zigg.com) Date: Sun, 14 Dec 1997 21:17:13 -0500 (EST) From: Matt Behrens To: jmz@freebsd.org, ports@freebsd.org Subject: Patch for latex Makefile Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk The --ini flag confuses tex. Here's a diff for the latex makefile that fixes it. (tex was intalled by lyx automagically.) 38c38 < (cd ${WRKSRC}/base; initex unpack.ins) --- > (cd ${WRKSRC}/base; tex --ini unpack.ins) 40c40 < initex latex.ltx tex --ini latex.ltx Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA07933 for ports-outgoing; Sun, 14 Dec 1997 18:27:58 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from cabri.obs-besancon.fr (cabri.obs-besancon.fr [193.52.184.3]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id SAA07918 for ; Sun, 14 Dec 1997 18:27:52 -0800 (PST) (envelope-from jmz@cabri.obs-besancon.fr) Received: by cabri.obs-besancon.fr (5.57/Ultrix3.0-C) id AA08077; Mon, 15 Dec 97 03:30:02 +0100 Date: Mon, 15 Dec 97 03:30:02 +0100 Message-Id: <9712150230.AA08077@cabri.obs-besancon.fr> From: Jean-Marc Zucconi To: matt@megaweapon.zigg.com Cc: ports@freebsd.org In-Reply-To: (message from Matt Behrens on Sun, 14 Dec 1997 21:17:13 -0500 (EST)) Subject: Re: Patch for latex Makefile X-Mailer: Emacs Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >>>>> Matt Behrens writes: > The --ini flag confuses tex. Here's a diff for the latex makefile that > fixes it. (tex was intalled by lyx automagically.) What is the problem with 'tex --ini' ? It works for me: $ tex --ini This is TeX, Version 3.14159 (Web2c 7.1) (INITEX) ** Jean-Marc _____________________________________________________________________________ Jean-Marc Zucconi Observatoire de Besancon F 25010 Besancon cedex PGP Key: finger jmz@cabri.obs-besancon.fr From owner-freebsd-ports Sun Dec 14 18:41:43 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA09530 for ports-outgoing; Sun, 14 Dec 1997 18:41:43 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from megaweapon.zigg.com (tcgr-190.dialup.alliance.net [207.74.43.190]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA09523 for ; Sun, 14 Dec 1997 18:41:38 -0800 (PST) (envelope-from matt@megaweapon.zigg.com) Received: from localhost (matt@localhost) by megaweapon.zigg.com (8.8.8/8.8.7) with SMTP id VAA28161; Sun, 14 Dec 1997 21:41:55 -0500 (EST) (envelope-from matt@megaweapon.zigg.com) Date: Sun, 14 Dec 1997 21:41:54 -0500 (EST) From: Matt Behrens To: Jean-Marc Zucconi cc: ports@freebsd.org Subject: Re: Patch for latex Makefile In-Reply-To: <9712150230.AA08077@cabri.obs-besancon.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 15 Dec 1997, Jean-Marc Zucconi wrote: > >>>>> Matt Behrens writes: > > The --ini flag confuses tex. Here's a diff for the latex makefile that > > fixes it. (tex was intalled by lyx automagically.) > What is the problem with 'tex --ini' ? It works for me: > $ tex --ini > This is TeX, Version 3.14159 (Web2c 7.1) (INITEX) My TeX says: This is TeX, Version 3.14159 (C Version 6.1) ! I can't find file `--ini'. <*> --ini bob Please type another input file name: This wasn't a tremendous problem when it let me ask; however the port then proceeded to (on latex.something) bomb totally. Matt Behrens | Support the anti-spam amendment! http://www.zigg.com/ | Visit http://www.cauce.org/ From owner-freebsd-ports Sun Dec 14 18:42:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA09591 for ports-outgoing; Sun, 14 Dec 1997 18:42:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from megaweapon.zigg.com (tcgr-190.dialup.alliance.net [207.74.43.190]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA09578 for ; Sun, 14 Dec 1997 18:41:59 -0800 (PST) (envelope-from matt@megaweapon.zigg.com) Received: from localhost (matt@localhost) by megaweapon.zigg.com (8.8.8/8.8.7) with SMTP id VAA28271; Sun, 14 Dec 1997 21:42:36 -0500 (EST) (envelope-from matt@megaweapon.zigg.com) Date: Sun, 14 Dec 1997 21:42:35 -0500 (EST) From: Matt Behrens To: Jean-Marc Zucconi cc: ports@freebsd.org Subject: Re: Patch for latex Makefile In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I think my TeX came from the teTeX port, btw. Matt Behrens | Support the anti-spam amendment! http://www.zigg.com/ | Visit http://www.cauce.org/ From owner-freebsd-ports Sun Dec 14 19:35:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA13922 for ports-outgoing; Sun, 14 Dec 1997 19:35:44 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from cabri.obs-besancon.fr (cabri.obs-besancon.fr [193.52.184.3]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id TAA13906 for ; Sun, 14 Dec 1997 19:35:38 -0800 (PST) (envelope-from jmz@cabri.obs-besancon.fr) Received: by cabri.obs-besancon.fr (5.57/Ultrix3.0-C) id AA08495; Mon, 15 Dec 97 04:37:46 +0100 Date: Mon, 15 Dec 97 04:37:46 +0100 Message-Id: <9712150337.AA08495@cabri.obs-besancon.fr> From: Jean-Marc Zucconi To: matt@megaweapon.zigg.com Cc: ports@freebsd.org In-Reply-To: (message from Matt Behrens on Sun, 14 Dec 1997 21:42:35 -0500 (EST)) Subject: Re: Patch for latex Makefile X-Mailer: Emacs Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >>>>> Matt Behrens writes: > I think my TeX came from the teTeX port, btw. This is why the latex installation bombed. TeTeX is still based on web2c-6.1. But if you installed teTeX, you don't need to reinstall latex because it is included in the package. >From the dependencies in the lyx makefile, I don't understand why it tried to install ports/print/latex. Jean-Marc _____________________________________________________________________________ Jean-Marc Zucconi Observatoire de Besancon F 25010 Besancon cedex PGP Key: finger jmz@cabri.obs-besancon.fr From owner-freebsd-ports Sun Dec 14 20:20:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA16970 for ports-outgoing; Sun, 14 Dec 1997 20:20:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA16946; Sun, 14 Dec 1997 20:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 14 Dec 1997 20:20:02 -0800 (PST) Resent-Message-Id: <199712150420.UAA16946@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, nobu@psrc.isac.co.jp Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA16543; Sun, 14 Dec 1997 20:12:59 -0800 (PST) (envelope-from nobody) Message-Id: <199712150412.UAA16543@hub.freebsd.org> Date: Sun, 14 Dec 1997 20:12:59 -0800 (PST) From: nobu@psrc.isac.co.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5299: Update ports x11/emiclofor newer version Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5299 >Category: ports >Synopsis: Update ports x11/emiclofor newer version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 14 20:20:01 PST 1997 >Last-Modified: >Originator: Nobuhiro Yasutomi >Organization: ISAC, Inc. >Release: 2.2.2 >Environment: FreeBSD aquarius.psrc.isac.co.jp 2.2.2-RELEASE FreeBSD 2.2.2-RELEASE #0: Thu Jun 12 09:55:08 JST 1997 nobu@aquarius.psrc.isac.co.jp:/usr/src/sys/compile/AQUA i386 >Description: EmiClock 1.0.4 was released. then ports following the newer version source code. >How-To-Repeat: >Fix: Please apply following fixes. diff -ruN emiclock-1.0.2/Makefile emiclock/Makefile --- emiclock-1.0.2/Makefile Thu May 29 07:41:27 1997 +++ emiclock/Makefile Mon Dec 15 12:50:20 1997 @@ -1,31 +1,28 @@ # New ports collection makefile for: EmiClock -# Version required: 1.0.2 +# Version required: 1.0.4 # Date created: 15 March 1995 # Whom: Nobuhiro Yasutomi # # $Id: Makefile,v 1.7 1997/05/28 22:41:27 fenner Exp $ # -DISTNAME= EmiClock-1.0.2 -PKGNAME= emiclock-1.0.2 +DISTNAME= emiclock-1.0.4 CATEGORIES= x11 -MASTER_SITES= ftp://ftp.iis.u-tokyo.ac.jp/pub1/X/contrib/applications/ \ - ftp://sunsite.unc.edu/pub/X11/contrib/applications/ +MASTER_SITES= ftp://ftp.plaza.hitachi-sk.co.jp/pub/EmiClock/X11/ -MAINTAINER= asami@FreeBSD.ORG +MAINTAINER= nobu@psrc.isac.co.jp USE_IMAKE= yes LANGRES= resources/R6/EUC/EmiClock.ad LANGDIR= $(X11BASE)/lib/X11/ja_JP.EUC/app-defaults EMICLOCKDIR= $(X11BASE)/lib/X11/EmiClock -COPYRIGHTS= COPYRIGHT COPYRIGHT.E +COPYRIGHTS= COPYRIGHT COPYRIGHT.en pre-install: @if [ ! -d $(EMICLOCKDIR) ] ; then mkdir -p $(EMICLOCKDIR); fi @if [ ! -d $(LANGDIR) ] ; then mkdir -p $(LANGDIR); fi cd $(WRKSRC); install -c -m 0444 $(LANGRES) $(LANGDIR)/EmiClock cd $(WRKSRC); install -c -m 0444 $(COPYRIGHTS) $(EMICLOCKDIR) -# cd $(WRKSRC); make install.man .include diff -ruN emiclock-1.0.2/files/md5 emiclock/files/md5 --- emiclock-1.0.2/files/md5 Thu Jul 13 10:59:52 1995 +++ emiclock/files/md5 Mon Dec 15 11:52:37 1997 @@ -1 +1 @@ -MD5 (EmiClock-1.0.2.tar.gz) = 592076887e3eca06374ff458c6712afb +MD5 (emiclock-1.0.4.tar.gz) = 60d5d98be02216270e4ffac737c5383b diff -ruN emiclock-1.0.2/pkg/PLIST emiclock/pkg/PLIST --- emiclock-1.0.2/pkg/PLIST Mon Nov 18 23:16:14 1996 +++ emiclock/pkg/PLIST Mon Dec 15 12:03:59 1997 @@ -3,5 +3,5 @@ lib/X11/ja_JP.EUC/app-defaults/EmiClock lib/X11/EmiClock/myu.au lib/X11/EmiClock/COPYRIGHT -lib/X11/EmiClock/COPYRIGHT.E +lib/X11/EmiClock/COPYRIGHT.en man/man1/emiclock.1.gz >Audit-Trail: >Unformatted: From owner-freebsd-ports Sun Dec 14 21:04:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA19563 for ports-outgoing; Sun, 14 Dec 1997 21:04:12 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from send1a.yahoomail.com (send1a.yahoomail.com [205.180.60.22]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id VAA19553 for ; Sun, 14 Dec 1997 21:04:09 -0800 (PST) (envelope-from osiris2002@yahoo.com) Message-ID: <19971215050352.8144.rocketmail@send1a.yahoomail.com> Received: from [194.79.98.68] by send1a; Sun, 14 Dec 1997 21:03:52 PST Date: Sun, 14 Dec 1997 21:03:52 -0800 (PST) From: Charlie Roots Subject: Java Development Kit, HELP To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi there, Please indicate URL, where can I get JDK-1.1.1 or later for FreeBSD, and if not ported, would jdk-1.1.3 For Linux compile nicely, I prefer source code over distrubuted binaries, if available. Please Help == MAY THE FORCE BE WITH YOU. _________________________________________________________ DO YOU YAHOO!? Get your free @yahoo.com address at http://mail.yahoo.com From owner-freebsd-ports Sun Dec 14 21:58:24 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA23261 for ports-outgoing; Sun, 14 Dec 1997 21:58:24 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA23251; Sun, 14 Dec 1997 21:58:10 -0800 (PST) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id VAA27328; Sun, 14 Dec 1997 21:55:43 -0800 (PST) Date: Sun, 14 Dec 1997 21:55:43 -0800 (PST) Message-Id: <199712150555.VAA27328@freefall.freebsd.org> To: i.vaudrey@Bigfoot.com, max@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5280 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: texi2html: Change of address State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Sun Dec 14 21:55:06 PST 1997 State-Changed-Why: The port updated. From owner-freebsd-ports Sun Dec 14 21:59:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA23305 for ports-outgoing; Sun, 14 Dec 1997 21:59:03 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA23286; Sun, 14 Dec 1997 21:58:42 -0800 (PST) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id VAA27408; Sun, 14 Dec 1997 21:56:15 -0800 (PST) Date: Sun, 14 Dec 1997 21:56:15 -0800 (PST) Message-Id: <199712150556.VAA27408@freefall.freebsd.org> To: i.vaudrey@Bigfoot.com, max@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5281 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: makedepend: Change of address State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Sun Dec 14 21:55:51 PST 1997 State-Changed-Why: The update is done. From owner-freebsd-ports Sun Dec 14 23:51:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA01962 for ports-outgoing; Sun, 14 Dec 1997 23:51:55 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id XAA01930 for ; Sun, 14 Dec 1997 23:51:46 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0xhV8N-00003r-00; Sun, 14 Dec 1997 23:40:11 -0800 Date: Sun, 14 Dec 1997 23:40:07 -0800 (PST) From: Tom To: josh@ican.net, ports@freebsd.org Subject: mysql problem Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk A package built from a recent copy of the mysql port does not create /var/db/mysql, but doing a "make install" on the port does. Shouldn't a "pkg_add" do everything that "make install" does? "make install" also puts a bunch of files in /var/db/mysql/mysql, which I have to idea how to re-create on systems I'm pkg_add'ing the package to. Tom From owner-freebsd-ports Mon Dec 15 02:15:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA14683 for ports-outgoing; Mon, 15 Dec 1997 02:15:36 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from mf00.iij.ad.jp (root@mf00.iij.ad.jp [202.232.2.11]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA14648; Mon, 15 Dec 1997 02:15:02 -0800 (PST) (envelope-from nobu@psrc.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 TAA06178; Mon, 15 Dec 1997 19:14:58 +0900 (JST) Received: from hikaru.psrc.isac.co.jp (hikaru.isac.co.jp [192.47.120.1]) by dokuro.isac.co.jp (8.6.12+2.4W/IIJ-I1.0/dokuro-1.0) with SMTP id TAA18862; Mon, 15 Dec 1997 19:08:35 +0900 Received: from aquarius.psrc.isac.co.jp (aquarius) by hikaru.psrc.isac.co.jp (5.67+1.6W/6.4J.6-isac) id AA27771; Mon, 15 Dec 97 19:14:43 JST Received: from localhost (localhost [127.0.0.1]) by aquarius.psrc.isac.co.jp (8.8.5/8.8.5) with ESMTP id TAA20039; Mon, 15 Dec 1997 19:14:56 +0900 (JST) To: FreeBSD-gnats@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5299: Update ports x11/emiclofor newer version In-Reply-To: Your message of "Sun, 14 Dec 1997 20:20:01 -0800 (PST)" <199712150420.UAA16934@hub.freebsd.org> References: <199712150420.UAA16934@hub.freebsd.org> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19971215191455L.nobu@psrc.isac.co.jp> Date: Mon, 15 Dec 1997 19:14:55 +0900 From: Nobuhiro Yasutomi X-Dispatcher: imput version 971024 Lines: 46 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Oh! x11/emiclofor is typo for x11/emiclock. >Category: ports >Responsible: freebsd-ports >Synopsis: Update ports x11/emiclofor newer version >Arrival-Date: Sun Dec 14 20:20:01 PST 1997 Additional update request for x11/emiclock. Please replace patches/patch-ab by following diffs. It's send from auther of emiclock. --- Nobuhiro Yasutomi. ISAC, Inc. --- patches/patch-ab~ Thu Jan 9 12:00:55 1997 +++ patches/patch-ab Mon Dec 15 19:04:53 1997 @@ -1,10 +1,19 @@ ---- Imakefile.orig Thu Jun 30 16:34:55 1994 -+++ Imakefile Thu Jan 9 11:56:08 1997 -@@ -90,6 +90,7 @@ - /* FreeBSD */ - #if defined(i386BsdArchitecture) && (defined(i386FreeBsd) || defined(FreeBSDArchitecture)) - #define StartupSound myu.au -+EXTRA_LIBRARIES = -lxpg4 - #endif /* i386BsdArchitecture && (i386FreeBsd || FreeBSDArchitecture) */ - - #else /* USE_NETAUDIO */ +*** Imakefile- Sat Jan 11 11:35:42 1997 +--- Imakefile Mon Dec 15 13:52:11 1997 +*************** +*** 150,155 **** +--- 150,163 ---- + + SYS_LIBRARIES = SoundLibrary -lm + ++ /* FreeBSD */ ++ #if defined(i386BsdArchitecture) && (defined(i386FreeBsd) || defined(FreeBSDArchitecture)) ++ #if OSMajorVersion >= 2 ++ #if OSMinorVersion >= 2 ++ EXTRA_LIBRARIES = -lxpg4 ++ #endif /* OSMinorVersion >= 2 */ ++ #endif /* OSMajorVersion >= 2 */ ++ #endif /* i386BsdArchitecture && (i386FreeBsd || FreeBSDArchitecture) */ + + XCOMM + XCOMM Sound Definitions From owner-freebsd-ports Mon Dec 15 06:40:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA02294 for ports-outgoing; Mon, 15 Dec 1997 06:40:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA02271; Mon, 15 Dec 1997 06:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 15 Dec 1997 06:40:02 -0800 (PST) Resent-Message-Id: <199712151440.GAA02271@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, ru@ucb.crimea.ua Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [194.93.177.113]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA01726 for ; Mon, 15 Dec 1997 06:31:34 -0800 (PST) (envelope-from ru@relay.ucb.crimea.ua) Received: (from root@localhost) by relay.ucb.crimea.ua (8.8.8/8.8.8) id QAA14846; Mon, 15 Dec 1997 16:28:22 +0200 (EET) (envelope-from ru) Message-Id: <199712151428.QAA14846@relay.ucb.crimea.ua> Date: Mon, 15 Dec 1997 16:28:22 +0200 (EET) From: Ruslan Ermilov Reply-To: ru@ucb.crimea.ua To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5301: lynx: wrong default location of configuration file Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5301 >Category: ports >Synopsis: lynx: wrong default location of configuration file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 15 06:40:00 PST 1997 >Last-Modified: >Originator: Ruslan Ermilov >Organization: >Release: FreeBSD 2.2-STABLE i386 >Environment: lynx-2.7.1 >Description: Lynx compiles by default with /usr/local/lib/lynx.cfg as a default configuration file. Instead, /usr/local/etc/lynx.cfg should be used as a default. >How-To-Repeat: >Fix: Define proper location for LYNX_CFG_FILE in userdefs.h using patch-ab: --- userdefs.h.orig Thu Apr 3 17:04:12 1997 +++ userdefs.h Mon Dec 15 16:03:44 1997 @@ -216,7 +216,7 @@ * mailcap files (see the examples in the samples directory). */ #ifndef LYNX_CFG_FILE -#define LYNX_CFG_FILE "/usr/local/lib/lynx.cfg" +#define LYNX_CFG_FILE "/usr/local/etc/lynx.cfg" #endif /* LYNX_CFG_FILE */ /************************** >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon Dec 15 08:14:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA09275 for ports-outgoing; Mon, 15 Dec 1997 08:14:07 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from techine.webdev.co.uk (techine.webdev.co.uk [195.137.1.2]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id IAA09268 for ; Mon, 15 Dec 1997 08:14:02 -0800 (PST) (envelope-from ed@webdev.co.uk) Received: from webdev.co.uk (ed.webdev.co.uk [195.137.1.132]) by techine.webdev.co.uk (8.8.8/8.8.8) with ESMTP id QAA15839 for ; Mon, 15 Dec 1997 16:13:15 GMT Message-ID: <3495572F.241FB0E3@webdev.co.uk> Date: Mon, 15 Dec 1997 16:13:36 +0000 From: Edward Barbor X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: ports@freebsd.org Subject: Java developer kit port Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Is the Linux port of the java developer kit version 1.1.x compatible with bsd (assuming use of the linux lib2.4 library)? I only ask because you have listed jdk-1.02 rather than a later version. Ed Barbor ed@webdev.co.uk From owner-freebsd-ports Mon Dec 15 08:30:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA10780 for ports-outgoing; Mon, 15 Dec 1997 08:30:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA10768; Mon, 15 Dec 1997 08:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 15 Dec 1997 08:30:01 -0800 (PST) Resent-Message-Id: <199712151630.IAA10768@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, kkennawa@physics.adelaide.edu.au Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA09908; Mon, 15 Dec 1997 08:22:13 -0800 (PST) (envelope-from nobody) Message-Id: <199712151622.IAA09908@hub.freebsd.org> Date: Mon, 15 Dec 1997 08:22:13 -0800 (PST) From: kkennawa@physics.adelaide.edu.au To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5302: webcopy port doesnt work? Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5302 >Category: ports >Synopsis: webcopy port doesnt work? >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 15 08:30:00 PST 1997 >Last-Modified: >Originator: Kris Kennaway >Organization: >Release: 3.0-CURRENT >Environment: FreeBSD morden.adelaide.edu.au 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Mon Dec 15 00:42:45 CST 1997 kkenn@morden.adelaide.edu.au:/usr2/src/sys/compile/MORDEN i386 >Description: I'm trying to use webcopy to grab a copy of some stuff from a remote website; however, I can't seem to get it to do ANYTHING; tcpdump shows it initiating several transmissions to the http proxy server (Squid, I believe) , but nothing ever comes back. I don't know if this is some weird problem due to my configuration, although I noticed one other posting to the ports mailing list 6 months ago which also complained about this problem - but no followups that I could locate. Can anyone confirm that webcopy is working, or if not, suggest a suitable replacement? >How-To-Repeat: webcopy -vi http://www.netscape.com/ http://your.http.proxy:here just sits there and eventually times out. >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon Dec 15 09:36:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA16751 for ports-outgoing; Mon, 15 Dec 1997 09:36:45 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA16654; Mon, 15 Dec 1997 09:35:44 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id JAA17428; Mon, 15 Dec 1997 09:33:13 -0800 (PST) Date: Mon, 15 Dec 1997 09:33:13 -0800 (PST) Message-Id: <199712151733.JAA17428@freefall.freebsd.org> To: andy@icc.surw.chel.su, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4762 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port: aalib-1.0 State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Mon Dec 15 09:31:22 PST 1997 State-Changed-Why: the latest version has committed. From owner-freebsd-ports Mon Dec 15 10:03:13 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA19379 for ports-outgoing; Mon, 15 Dec 1997 10:03:13 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA19240; Mon, 15 Dec 1997 10:02:40 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA17834; Mon, 15 Dec 1997 10:00:10 -0800 (PST) Date: Mon, 15 Dec 1997 10:00:10 -0800 (PST) Message-Id: <199712151800.KAA17834@freefall.freebsd.org> To: yssu@CCCA.NCTU.edu.tw, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5164 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New ports State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Mon Dec 15 09:59:34 PST 1997 State-Changed-Why: Committed. thanks. From owner-freebsd-ports Mon Dec 15 10:08:13 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA20041 for ports-outgoing; Mon, 15 Dec 1997 10:08:13 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA18977 for freebsd-ports@freebsd.org; Mon, 15 Dec 1997 10:01:45 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 15 Dec 1997 10:01:45 -0800 (PST) Message-Id: <199712151801.KAA18977@hub.freebsd.org> From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk 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 Work on the problem has been postponed. This happens if a timely solution is not possible or is not cost-effective at the present time. The PR continues to exist, though a solution is not being actively sought. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1997/03/07] ports/2918 ports Unable to pass 8+ command line arguments f [1997/03/11] ports/2956 ports New Port: xgospel-1.10d in ftp.freebsd.or o [1997/09/30] ports/4662 ports Ports Additions: upsd-2.0 o [1997/10/07] ports/4724 ports teTeX-0.4 port, make install fails - not o [1997/10/16] ports/4781 ports installation of teTeX overwrites the mp e o [1997/10/19] ports/4803 ports xgrabsc dies with "bus error" after selec o [1997/10/24] ports/4846 ports Install option for HTML docs does not wor o [1997/10/27] ports/4865 ports xdm doesn't set env variables o [1997/11/17] ports/5079 ports /usr/ports/x11/auis/patches needs updatin o [1997/11/19] ports/5093 ports gated 3-5-7 exited on signal 11 o [1997/11/20] ports/5106 ports Perl5 is not listed as an install option o [1997/12/08] ports/5257 ports libpng-0.96 fails to compile in share mod o [1997/12/11] ports/5273 ports Port of o2c-1.16 14 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_ f [1996/12/08] ports/2182 ports FreeBSD's and X-32's list of locales do n f [1997/01/24] ports/2571 ports Maxima lacks pkg directory o [1997/03/13] ports/2974 ports updated Makefile and patch-ab of jp-dvi2p a [1997/03/21] ports/3052 ports /usr/ports/lang/expect does not find tkCo o [1997/04/01] ports/3169 ports nn port broken o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) a [1997/04/19] ports/3335 ports new port request of korean/hanemacs o [1997/04/25] ports/3383 ports kaffe core dumps if LD_LIBRARY_PATH not s f [1997/05/14] ports/3597 ports jp-groff-0.99 port macro update o [1997/05/21] ports/3657 ports Port of NCSA HyperNews submitted as p5-hy f [1997/06/14] ports/3870 ports Upgrade tkdesk 1.0b3 --> 1.0b4 o [1997/06/22] ports/3928 ports New port: jp-pgp-2.6.3ia (language) o [1997/06/23] ports/3939 ports new port: latex2html_icon_server o [1997/06/30] ports/3991 ports set of OffiX ports o [1997/07/02] ports/4014 ports package/port installation obeys roots uma o [1997/07/03] ports/4025 ports New port - jp-ebw3 o [1997/07/09] ports/4067 ports wrong formats of files in offix.tar o [1997/07/16] ports/4103 ports Should I or should I not ? o [1997/07/30] ports/4192 ports New port: Amulet o [1997/08/04] ports/4227 ports cops perl script produces errors o [1997/08/10] ports/4263 ports new ports: jp-vfxdvik-18f (dvi viewer for o [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 s [1997/08/22] ports/4360 ports new port of Amaya-1.0b f [1997/08/25] ports/4377 ports bkpupsd [device] o [1997/08/26] ports/4391 ports New port: VPCE o [1997/08/28] ports/4412 ports New port: YaTeX (in print and japanese) o [1997/09/12] ports/4521 ports 'Joe' editor does not show control-chars o [1997/09/17] ports/4565 ports News port: ircII-current (ircII-2.9a8/col o [1997/09/21] ports/4595 ports Lynx tarball missing from ftp.freebsd.org o [1997/09/21] ports/4596 ports nas port fails build on 2.2-STABLE o [1997/09/24] ports/4621 ports New port: xtris [category games] o [1997/09/25] ports/4631 ports New port: ncurses-1.9.9g o [1997/09/28] ports/4643 ports new port - japanese-english dictionary o [1997/09/28] ports/4644 ports This is a new port xfig -international ba o [1997/09/29] ports/4656 ports New port: sidplay (category emulators) o [1997/09/30] ports/4658 ports yet another X11 utility added -- XDiary o [1997/09/30] ports/4664 ports New port sendfile-1.6 (category net) o [1997/10/06] ports/4707 ports new-port : ja-mtools-3.6 (manipulating MS o [1997/10/08] ports/4726 ports new port developed(X11 japanese font) o [1997/10/09] ports/4733 ports new port of cfengine o [1997/10/09] ports/4734 ports Ports of NDTPD-1.0.2 and BookView-1.0.4 o [1997/10/12] ports/4744 ports New port: pnmtopng o [1997/10/13] ports/4759 ports New port: ja-xnetmaj o [1997/10/14] ports/4767 ports New port: cftp-0.7 o [1997/10/14] ports/4769 ports msql-2.0.3 ported o [1997/10/15] ports/4770 ports New port: Xitami HTTP Server o [1997/10/16] ports/4777 ports New port: le-1.4.0 o [1997/10/17] ports/4788 ports New port xd-2.3(misc/xd). o [1997/10/17] ports/4791 ports i can't make install on mc-4.1 port o [1997/10/19] ports/4809 ports Update port: tkdesk 1.03b -> 1.04b o [1997/10/20] ports/4811 ports patch-file corrections for faces and xfac o [1997/10/21] ports/4819 ports New port: libhelp o [1997/10/21] ports/4820 ports New port: seabattle-1.0 o [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/10/27] ports/4870 ports New port p5-Gtk o [1997/10/28] ports/4878 ports Apache w/FrontPage Module Port o [1997/10/29] ports/4885 ports Create a new ports about cqcam-0.45.tar.g o [1997/10/29] ports/4889 ports new port for ntimelord-1.0 o [1997/11/02] ports/4919 ports -s option description is present twice in o [1997/11/02] ports/4920 ports New math port: METIS o [1997/11/04] ports/4933 ports New port: cgihtml library o [1997/11/04] ports/4935 ports audio/nas port fails build + fix o [1997/11/04] ports/4937 ports A looks-nice audio level meter port is no o [1997/11/04] ports/4941 ports New port: nslint 2.0a2 o [1997/11/06] ports/4958 ports installing mutt port failes if sgmlfmt is o [1997/11/07] ports/4967 ports I have ported Carl DeClerck's mserver-0.2 o [1997/11/07] ports/4974 ports New port: YODL, Yet Oneother Document Lan o [1997/11/08] ports/4979 ports port for Eval-113 o [1997/11/08] ports/4980 ports NEW PORT: netscape3-us (Netscape Nav with o [1997/11/09] ports/4985 ports NEW PORT: www/htmlpp htmlpp-3.9, a WWW au o [1997/11/09] ports/4986 ports NEW PORT: comms/atp - ATP 1.50, a BBS QWK o [1997/11/11] ports/5014 ports Mysql package does not install correctly o [1997/11/12] ports/5020 ports patch-aa AND checksum for xmysql 1.5 are o [1997/11/13] kern/5034 ports (tcsh) blocked write on named pipe sticks o [1997/11/14] ports/5042 ports New port: unpost-2.3.4 o [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/17] ports/5075 ports Update: print/c2ps to 4.0 o [1997/11/17] ports/5078 ports make clean complains about p5-DBD-mysql M o [1997/11/17] ports/5080 ports Apache-1.2.4: Improved rc.d script o [1997/11/18] ports/5086 ports new port: elisp-manual.tar.gz o [1997/11/18] ports/5087 ports new port: emacs-lisp-intro.tar.gz o [1997/11/20] ports/5104 ports New port: sis-1.2pl1 o [1997/11/20] ports/5111 ports New port of cooledit-3.5.2 o [1997/11/21] ports/5120 ports Update to BLAS lib. (math port) o [1997/11/23] ports/5131 ports New math port: SuperLU o [1997/11/24] ports/5138 ports GNAT port is out of date o [1997/11/26] ports/5157 ports update to eterm port o [1997/11/26] ports/5158 ports thot editor port doesn't install template o [1997/11/27] ports/5161 ports new port: p5-DBD-Mysql o [1997/11/27] ports/5162 ports port submission: catdoc o [1997/11/27] ports/5164 ports New ports o [1997/11/27] ports/5167 ports New port ja-vftool-1.2(japanese/vftool). o [1997/11/29] ports/5175 ports NEW PORT: news/xmitBin, a binary files au o [1997/11/29] ports/5177 ports Not enought argument in script of databas o [1997/11/30] ports/5179 ports New port ja-dvipsk-5.66a (japanese/dvipsk o [1997/11/30] ports/5184 ports Port of S-Plus like language R 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/03] ports/5209 ports New port ja-mendexk-{euc,sjis}-2.4b (japa o [1997/12/03] ports/5210 ports new port-package for frodo o [1997/12/04] ports/5214 ports New port rasmol, a molecular visualizatio o [1997/12/04] ports/5215 ports New port biology/babel o [1997/12/04] ports/5217 ports New port biology/kinemage o [1997/12/04] ports/5228 ports Several ports changes o [1997/12/05] ports/5229 ports New port biology/seaview o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/07] ports/5245 ports new port, bugsx game o [1997/12/07] ports/5248 ports New port xmail-1.6 o [1997/12/08] ports/5251 ports Update the port(ja-man-1.1e):japanese/man o [1997/12/08] ports/5252 ports Update the port(ocaml-1.06):lang/ocaml. o [1997/12/10] ports/5270 ports New port: ptoc-2.01 o [1997/12/11] ports/5278 ports xinetd port updated to patch-level 1. Not o [1997/12/12] ports/5279 ports New port: vilearn, a vi tutorial o [1997/12/12] ports/5282 ports update tkdesk port to latest tkdesk relea o [1997/12/14] ports/5290 ports Update port: net/mpd o [1997/12/14] ports/5295 ports New Math port: umfpack o [1997/12/14] ports/5299 ports Update ports x11/emiclofor newer version o [1997/12/15] ports/5301 ports lynx: wrong default location of configura o [1997/12/15] ports/5302 ports webcopy port doesnt work? 123 problems total. From owner-freebsd-ports Mon Dec 15 10:10:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA20433 for ports-outgoing; Mon, 15 Dec 1997 10:10:42 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from vanilla@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA20351; Mon, 15 Dec 1997 10:09:56 -0800 (PST) (envelope-from vanilla) Date: Mon, 15 Dec 1997 10:09:56 -0800 (PST) From: "Vanilla I. Shu" Message-Id: <199712151809.KAA20351@hub.freebsd.org> To: frankch@waru.life.nthu.edu.tw, vanilla, freebsd-ports Subject: Re: ports/5214 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port rasmol, a molecular visualization program State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Mon Dec 15 10:08:59 PST 1997 State-Changed-Why: Committed. thanks. From owner-freebsd-ports Mon Dec 15 14:05:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA20012 for ports-outgoing; Mon, 15 Dec 1997 14:05:58 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id OAA19999; Mon, 15 Dec 1997 14:05:48 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0xhiAQ-0000UO-00; Mon, 15 Dec 1997 13:35:10 -0800 Date: Mon, 15 Dec 1997 13:35:10 -0800 (PST) From: Tom To: ports@freebsd.org, peter@freebsd.org Subject: gated ospf-only port? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk What do you think about a gated port with just support for ospf in it? Would this be something that people would use? I use it a lot here, even on single interface systems, as some LANs have as many as 8 routers on them. Compiling gated with just ospf (and icmp), results in a binary of 520192 bytes, while the stock gated is 786432 bytes. Tom From owner-freebsd-ports Mon Dec 15 16:50:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA04686 for ports-outgoing; Mon, 15 Dec 1997 16:50:15 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA04652; Mon, 15 Dec 1997 16:50:07 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 15 Dec 1997 16:50:07 -0800 (PST) Resent-Message-Id: <199712160050.QAA04652@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, sec@42.org Received: from matrix.42.org (sec@matrix.42.org [192.68.213.129]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA03726 for ; Mon, 15 Dec 1997 16:44:12 -0800 (PST) (envelope-from sec@matrix.42.org) Received: (from sec@localhost) by matrix.42.org (8.8.8/8.8.6) id BAA07263 (sender ); Tue, 16 Dec 1997 01:43:52 +0100 (CET) Message-Id: <199712160043.BAA07263@matrix.42.org> Date: Tue, 16 Dec 1997 01:43:52 +0100 (CET) From: Stefan `Sec` Zehl Reply-To: sec@42.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5308: New port: xtris [category games] Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5308 >Category: ports >Synopsis: New port: xtris [category games] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 15 16:50:06 PST 1997 >Last-Modified: >Originator: Stefan `Sec` Zehl >Organization: >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: I updated the (not yet committed) xtris-1.14 port to xtris-1.15 hopefully someone committs this, and closes 'ports/4621' >How-To-Repeat: >Fix: begin 644 xtris-1.15-port.tar.gz M'XL(`)O-E30``^U9;6_:2!#.5_PK1DJD:T5LO/@MH.84"K1"%T@$W"7W"2UF M@57\=EX32JK^]YNU':#I*6ET@:JI'PG6[(YGQC,[+UX^)3$7E8.=`DS=L2PX M`"".I@.*?R_#VS[WY_LQN)$U]&[C_C?,1[ZWS(P M_O6=:/,`O[C_NRT+WJ2;0"4:L30TAC:[>PNGX-K&F!GDI&9-F4MKTUJU-K:< ML>V,':?FLHGRHU4O\`+(XC^BB3O?607XSOQ/JL0QJD27\6\X1?W?"[[V?SJJ ME+ZLC"?R/S%-K>L&D%K-4JM>/:FC8U.JLS-0"3DF-2AGP]F9`LTF M%I29ZRJ@P"&XP7+.8@:K<`%+&B3I8KI'8+VS$R_EM\=1UPWC"@UFJ`Q4)3@432)F`B[LR]#5- M4]3FA_/&QP&R4B\,4%NCT9^#]@@YMENCR_[%\&+X]V5[,!HIY>\D!+6S48H' MKK>8L$RQ,(!!Z%'YL%(3P7V.OT"L4#=?'$NC_.9Y$#!T/>J\"-S0]UEJ)"[J MDD/[>MAOG'?>IUIX@?#P6X3N#4L@$R$BYO+I"JX)`8^/T>S`IY+QO9B4.]HX M4=1#N$96F1G5\]3">%L%;U/*VRN;IY%+F:"7PVOO$.9&#]-Q]__UO7?\,RTO[/)D7]WPLH^`LOX6KD MT16+X9;%@F,A"*-/L[D?%4 M_%O$?I#_B:E;1?SO`UES*UN^[=B7`>]Z5`@NN]$9]=DF(QRG*8$&*P@6_AAS M1CA5LNR1+_U'MM`494M0$B\D>XZ]8T6P&.5F(MY0`6$4A2)K,"FX2!%3C]_A MA*10L(FF,]DSITDK\F3G+J1P\?886W?NSK%/OY%->@(1C1/N+F1#ZZT@9B(* M`\%OTS9;&>/7DB=SE4VGV/GC]%K%>>@SV>G7X=T\2:)ZI;)<+C7FL5LF-!8( M;1K73_03O2()*\B6>94LBG[_"9/B)OXOSSN#753_I^.?&.:Z_IMV6O_-:G'^ MNQ?@6W&V>Y7L2L9C?CD.$QEP\LW5SF@T6YO=;<])ZF\F\;YL[D<_6X&GD<7_ M_;'.;F0\6?^=3?TW]>S_G^+\;S\XA!Y;0A3&B0`W]#Q9#+$'\/,-(0MZ7?HH MRQ&'\%?>),3LGP6/V:2>97"-6+C8H@D6]ICAD"](5$TM/2JL.4ARA55SLW0/ M-/Z96=7">*8<(M%19W*$%TJWT>D-\=/NGY:V2%I8J'J-;OLTOWOS]Y5RU?]C MT&^>EDI'G_&RU>E_R;-;LS%L?[SH=]J#TY)L)00R'PS;_=&@,Y1SSRSUBB)/ MUZX).2VM4EX]&X7F21+N$R/DR5!1M/RD#=Z-Q423YM;\FY^Q7RA0H$"!`J\# *_P+GY&;``"@``(7F ` end >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon Dec 15 16:50:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA04697 for ports-outgoing; Mon, 15 Dec 1997 16:50:19 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA04678; Mon, 15 Dec 1997 16:50:12 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 15 Dec 1997 16:50:12 -0800 (PST) Resent-Message-Id: <199712160050.QAA04678@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, sec@42.org Received: from matrix.42.org (sec@matrix.42.org [192.68.213.129]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA04317 for ; Mon, 15 Dec 1997 16:47:34 -0800 (PST) (envelope-from sec@matrix.42.org) Received: (from sec@localhost) by matrix.42.org (8.8.8/8.8.6) id BAA07489 (sender ); Tue, 16 Dec 1997 01:47:27 +0100 (CET) Message-Id: <199712160047.BAA07489@matrix.42.org> Date: Tue, 16 Dec 1997 01:47:27 +0100 (CET) From: Stefan `Sec` Zehl Reply-To: sec@42.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5309: New port: sls-1.00 [category misc] Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5309 >Category: ports >Synopsis: New port: sls-1.00 [category misc] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 15 16:50:09 PST 1997 >Last-Modified: >Originator: Stefan `Sec` Zehl >Organization: >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: This is a port of 'sls': Sls is a program designed to overcome the limitations of the standard UNIX ls(1) program, providing a more consistent interface to file inode information. It is particularly designed for use by shell scripts to make obtaining informa- tion about files easier. It uses printf(3)-style format strings to control the sorting and output of file informa- tion. >How-To-Repeat: >Fix: begin 644 sls-port.tgz M'XL(`.#)E30``^U9;6_:2!#.5_PK1DH^)")^6;\".DYP@4:HA41`K_UV,O9" MK/B%[MH]I57_^\TN&-)\2!JI]IVN?B3PLCN9&>]XGIEU>,SUDXH!MN$Y#IP` M$,\QQ!6(;\?"W9YOD!)RJ'1,H>.XS@!-.@V?EUOFV#G?J M!L?XKZ.85OD4O";^AH@_,1QB-_&O`\?X)V%5^TT,`Z/[3/Q=^TG\"7$Q_XV* M_/D.OWC\IR,'SO$AT'`7M,V7"^B#L0Z]=2<@7=,RJ&MVPPX)5AX-+;KJN`XA MRK_M@!M(Q%F]:B2&%8;,`TP#![CMVS'2#=3E=IM]L' MT=:RH#"B`1`7#-(CG9YEHU374P8#4,FE!VURV8'!0%'_F,SZH!>;=\'K1!_5&`:7M MQW$/\(%6Q%>O):I:ID`K"$`.0SR4>`F)^3"RCU78LB^7&\0S=%7>/A(KZMV@"]V]_GT]]T.KCV3+_;]]-%M54 M_Q^H_Z+GV^6_9;K[\W^3_[4`SU>Z.!259RKQ0R/:YDM3ZG\)B/PO#_55V7@I M_QW1\Q_^_^?*]_^6U>1_'3B%&?T;MEB=.-:K.,9.7Q3!9/](B.+6DX4-.>(4 M_J2,BV5&/Q5X*@CE$A#-,'!QY.=8UAG%RWY!+KJ:?%'4]5#DPUV6')=*X-8/ M;%/+V$8Y1:&S27B&`V4ZG,R6^!G/^ZU'(B,L5+/A=-PO_QH]NWU[+:?$.Q]5 MNO-A_G8QO^JW6F=?<3B:S+])FKL:+L?7-_/)>-%O)1$/T,AB.9[_M9@LQ10& MN:?K^*T%G&I;7F@T+/1ML=(Y"W3ATHR@3LF1BJ)%:1`7V*/\MN*A)O902^Y_ 6;XBS08,HT:/#?QC_3L?X+`"@``(R@ ` end >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon Dec 15 22:00:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA26880 for ports-outgoing; Mon, 15 Dec 1997 22:00:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA26872; Mon, 15 Dec 1997 22:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 15 Dec 1997 22:00:01 -0800 (PST) Resent-Message-Id: <199712160600.WAA26872@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, giffunip@asme.org Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA26757; Mon, 15 Dec 1997 21:58:42 -0800 (PST) (envelope-from nobody) Message-Id: <199712160558.VAA26757@hub.freebsd.org> Date: Mon, 15 Dec 1997 21:58:42 -0800 (PST) From: giffunip@asme.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5312: New math port xwpl Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5312 >Category: ports >Synopsis: New math port xwpl >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 15 22:00:00 PST 1997 >Last-Modified: >Originator: Pedro Giffuni >Organization: U. Nacional de Colombia >Release: 2.2.5R >Environment: >Description: The X wavelet package is a nice package for analyzing wavelets (dirac and friends). There is no source code available, but curiously there was a FreeBSD 1.1 binary that runs fine. >How-To-Repeat: >Fix: xwpl.tar.gz in incoming >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Dec 16 02:00:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA12722 for ports-outgoing; Tue, 16 Dec 1997 02:00:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA12671; Tue, 16 Dec 1997 02:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 16 Dec 1997 02:00:01 -0800 (PST) Resent-Message-Id: <199712161000.CAA12671@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, andy@icc.surw.chel.su Received: from rich.chel.su (root@mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA12407 for ; Tue, 16 Dec 1997 01:56:32 -0800 (PST) (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 OAA13618 for ; Tue, 16 Dec 1997 14:57:38 +0500 (UST) Received: (from andy@localhost) by icc.surw.chel.su (8.8.5/8.8.4) id NAA18702; Tue, 16 Dec 1997 13:01:24 +0300 (MSK) Message-Id: <199712161001.NAA18702@icc.surw.chel.su> Date: Tue, 16 Dec 1997 13:01:24 +0300 (MSK) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5315: New port: deco-3.8 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5315 >Category: ports >Synopsis: New port: deco-3.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 16 02:00:01 PST 1997 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: This is a port of the Demos Commander, a free Norton Commander clone DECO, or Demos Commander, is a visual interface for the UNIX operating system, developed by the motives of the widely known Norton Commander. # 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: # # deco-3.8 # deco-3.8/files # deco-3.8/files/md5 # deco-3.8/pkg # deco-3.8/pkg/COMMENT # deco-3.8/pkg/DESCR # deco-3.8/pkg/PLIST # deco-3.8/Makefile # deco-3.8/patches # deco-3.8/patches/patch-ab # deco-3.8/patches/patch-aa # echo c - deco-3.8 mkdir -p deco-3.8 > /dev/null 2>&1 echo c - deco-3.8/files mkdir -p deco-3.8/files > /dev/null 2>&1 echo x - deco-3.8/files/md5 sed 's/^X//' >deco-3.8/files/md5 << 'END-of-deco-3.8/files/md5' XMD5 (deco38.tgz) = c51a81a320fb78ed42190d791bf837c7 END-of-deco-3.8/files/md5 echo c - deco-3.8/pkg mkdir -p deco-3.8/pkg > /dev/null 2>&1 echo x - deco-3.8/pkg/COMMENT sed 's/^X//' >deco-3.8/pkg/COMMENT << 'END-of-deco-3.8/pkg/COMMENT' XDemos Commander, a free Norton Commander clone END-of-deco-3.8/pkg/COMMENT echo x - deco-3.8/pkg/DESCR sed 's/^X//' >deco-3.8/pkg/DESCR << 'END-of-deco-3.8/pkg/DESCR' X DECO, or Demos Commander, is a visual interface for the XUNIX operating system, developed by the motives of the Xwidely known Norton Commander. END-of-deco-3.8/pkg/DESCR echo x - deco-3.8/pkg/PLIST sed 's/^X//' >deco-3.8/pkg/PLIST << 'END-of-deco-3.8/pkg/PLIST' Xbin/deco Xman/man1/deco.1.gz Xman/man1/deco-r.1.gz Xshare/deco/help/d.edit Xshare/deco/help/d.general Xshare/deco/help/d.hexview Xshare/deco/help/d.view Xshare/deco/help/e.edit Xshare/deco/help/e.general Xshare/deco/help/e.hexview Xshare/deco/help/e.view Xshare/deco/help/f.edit Xshare/deco/help/f.general Xshare/deco/help/f.hexview Xshare/deco/help/f.view Xshare/deco/help/r.edit Xshare/deco/help/r.general Xshare/deco/help/r.hexview Xshare/deco/help/r.view Xshare/deco/help/u.edit Xshare/deco/help/u.general Xshare/deco/help/u.hexview Xshare/deco/help/u.view Xshare/deco/menu Xshare/deco/profile X@dirrm share/deco/help X@dirrm share/deco END-of-deco-3.8/pkg/PLIST echo x - deco-3.8/Makefile sed 's/^X//' >deco-3.8/Makefile << 'END-of-deco-3.8/Makefile' X# New ports collection makefile for: deco X# Version required: 3.8 X# Date created: 16 Dec 1997 X# Whom: Andrey Zakhvatov X# X# X# X XDISTNAME= deco38 XPKGNAME= deco-3.8 XCATEGORIES= misc XMASTER_SITES= ftp://ftp.cronyx.ru/cronyx/deco/ XEXTRACT_SUFX= .tgz X XMAINTAINER= andy@icc.surw.chel.su X XWRKSRC= ${WRKDIR}/deco XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --libdir=${PREFIX}/share XMAN1= deco.1 deco-r.1 X X.include END-of-deco-3.8/Makefile echo c - deco-3.8/patches mkdir -p deco-3.8/patches > /dev/null 2>&1 echo x - deco-3.8/patches/patch-ab sed 's/^X//' >deco-3.8/patches/patch-ab << 'END-of-deco-3.8/patches/patch-ab' X--- help.c Sat Jul 12 18:54:34 1997 X+++ /home/andy/tmp/wrk/help.c Tue Dec 16 12:15:00 1997 X@@ -10,7 +10,7 @@ X X #define CS 34 X #define HELPDIR "/usr/lib/deco/help/" X-#define LCLHELPDIR "/usr/local/lib/deco/help/" X+#define LCLHELPDIR "/usr/local/share/deco/help/" X X struct helptab { X char row; END-of-deco-3.8/patches/patch-ab echo x - deco-3.8/patches/patch-aa sed 's/^X//' >deco-3.8/patches/patch-aa << 'END-of-deco-3.8/patches/patch-aa' X--- ex.c Sat Jul 12 18:54:34 1997 X+++ /home/andy/tmp/wrk/ex.c Tue Dec 16 12:14:53 1997 X@@ -59,11 +59,11 @@ X #define UMFILE ".menu" X #define INITFILE ".decoini" X #define ULDINITFILE "/usr/lib/deco/initfile" X-#define ULLDINITFILE "/usr/local/lib/deco/initfile" X+#define ULLDINITFILE "/usr/local/share/deco/initfile" X #define ULDUMFILE "/usr/lib/deco/menu" X-#define ULLDUMFILE "/usr/local/lib/deco/menu" X+#define ULLDUMFILE "/usr/local/share/deco/menu" X #define ULDEXFILE "/usr/lib/deco/profile" X-#define ULLDEXFILE "/usr/local/lib/deco/profile" X+#define ULLDEXFILE "/usr/local/share/deco/profile" X X struct ex { X char *pat; END-of-deco-3.8/patches/patch-aa exit >How-To-Repeat: >Fix: Please, check and commit this port. >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Dec 16 03:44:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA19251 for ports-outgoing; Tue, 16 Dec 1997 03:44:27 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA19242; Tue, 16 Dec 1997 03:44:02 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id DAA26177; Tue, 16 Dec 1997 03:41:25 -0800 (PST) Date: Tue, 16 Dec 1997 03:41:25 -0800 (PST) Message-Id: <199712161141.DAA26177@freefall.freebsd.org> To: asami@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: pending/5316 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new ports japanese/tcsh Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Tue Dec 16 03:41:11 PST 1997 Responsible-Changed-Why: From owner-freebsd-ports Tue Dec 16 09:30:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA11609 for ports-outgoing; Tue, 16 Dec 1997 09:30:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA11601; Tue, 16 Dec 1997 09:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 16 Dec 1997 09:30:01 -0800 (PST) Resent-Message-Id: <199712161730.JAA11601@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, giffunip@asme.org Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA11329; Tue, 16 Dec 1997 09:27:31 -0800 (PST) (envelope-from nobody) Message-Id: <199712161727.JAA11329@hub.freebsd.org> Date: Tue, 16 Dec 1997 09:27:31 -0800 (PST) From: giffunip@asme.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5319: New graphics port: Gplot Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5319 >Category: ports >Synopsis: New graphics port: Gplot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 16 09:30:01 PST 1997 >Last-Modified: >Originator: Pedro Giffuni S. >Organization: U.Nacional de Colombia >Release: 2.2.5R >Environment: >Description: Gplot is a utility and library, originally for Cray, for converting/displaying files from CGM format. >How-To-Repeat: Only problem is that I couldn't build the Motif tool in X11R6. I also don't why I had to apply patch-ab, but it works as I tested converting the examples to postscript. >Fix: gplot.tar.gz in incoming. >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Dec 16 09:38:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA12207 for ports-outgoing; Tue, 16 Dec 1997 09:38:31 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from seagull.cdrom.com (root@seagull.cdrom.com [204.216.27.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA12197; Tue, 16 Dec 1997 09:38:28 -0800 (PST) (envelope-from cracauer@cons.org) Received: from cons.org (knight.cons.org [194.233.237.86]) by seagull.cdrom.com (8.8.6/8.6.6) with ESMTP id JAA04219 ; Tue, 16 Dec 1997 09:38:44 -0800 (PST) Received: (from cracauer@localhost) by cons.org (8.8.5/8.7.3) id SAA22540; Tue, 16 Dec 1997 18:38:14 +0100 (CET) Message-ID: <19971216183813.43639@cons.org> Date: Tue, 16 Dec 1997 18:38:13 +0100 From: Martin Cracauer To: asami@freebsd.org Cc: ports@freebsd.org Subject: ilu port -O Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81 Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Satoshi, I just updated the ilu port to the newest version and tried enabling -O for compilation. It doesn't work, one binary (used both for ILU building and usage) segfaults. I double-checked it doesn't segfault when built without -O. Also, I cannot easily seperate compilation switches for this specific program, because compiler switches are controlled from an imake template file, not within normal Makefiles in subdirectories. Changing this would open a can of worms and I would fear to break something that slips trough my tests. Proper testing is also questionable because the ILU libraries will be used for user's programs of all kinds and if the segfault is from a library we'll seriously screw the user. For these reasons, I would vote not to use -O for this port at all for now. I'll report this to the ILU team and try to narrow down the problematic object file. But this will take more time than I find acceptable to delay my commit of the new version. Opinions? Greetings Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer cracauer@wavehh.hanse.de (batched, preferred for large mails) Tel.: (daytime) +4940 41478712 Fax.: (daytime) +4940 41478715 Tel.: (private) +4940 5221829 Fax.: (private) +4940 5228536 Paper: (private) Waldstrasse 200, 22846 Norderstedt, Germany From owner-freebsd-ports Tue Dec 16 09:46:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA12744 for ports-outgoing; Tue, 16 Dec 1997 09:46:02 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from home.gtcs.com (home.gtcs.com [206.54.69.238]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA12715 for ; Tue, 16 Dec 1997 09:45:44 -0800 (PST) (envelope-from bruce@gtcs.com) Received: from home.gtcs.com (localhost.gtcs.com [127.0.0.1]) by home.gtcs.com (8.8.5/8.8.5) with SMTP id KAA05269 for ; Tue, 16 Dec 1997 10:45:12 -0700 (MST) X-Comment1: in most cases both the Return-Receipt and Delivery-Notification X-Comment2: requests are part of an ongoing poll to determine what clients X-Comment3: and MTAs respond to the headers. Date: Tue, 16 Dec 1997 10:45:12 -0700 (MST) From: Bruce Gingery To: freebsd-ports@freebsd.org Subject: Recommended added target for bsd.port.mk Message-ID: Disposition-Notification-To: bgingery@gtcs.com MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk ultraclean: Deletes distribution files, depends on "clean" This would allow the user to do the equivalent of pkg_add with all pre-requisites being auto-installed, just from a: make install ultraclean Perhaps "wipe" would be a better target name? I'd already recommended adding "size" as a port tarball standard component, and "make desc" as an alias to "more pkg/DESCR", and "make installed" as an alias for "pkg_info -c `make package-name`" Bruce Gingery From owner-freebsd-ports Tue Dec 16 11:51:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA23768 for ports-outgoing; Tue, 16 Dec 1997 11:51:16 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA23750; Tue, 16 Dec 1997 11:51:03 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id LAA16717; Tue, 16 Dec 1997 11:48:24 -0800 (PST) Date: Tue, 16 Dec 1997 11:48:24 -0800 (PST) Message-Id: <199712161948.LAA16717@freefall.freebsd.org> To: mi@aldan.algebra.com, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5278 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: xinetd port updated to patch-level 1. Not much, really State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Tue Dec 16 11:47:39 PST 1997 State-Changed-Why: we have latest version. From owner-freebsd-ports Tue Dec 16 16:25:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA14985 for ports-outgoing; Tue, 16 Dec 1997 16:25:03 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA14965 for ; Tue, 16 Dec 1997 16:24:54 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.7/8.7.3) id QAA04610; Tue, 16 Dec 1997 16:24:36 -0800 (PST) Date: Tue, 16 Dec 1997 16:24:36 -0800 (PST) Message-Id: <199712170024.QAA04610@vader.cs.berkeley.edu> To: cracauer@cons.org CC: ports@freebsd.org In-reply-to: <19971216183813.43639@cons.org> (message from Martin Cracauer on Tue, 16 Dec 1997 18:38:13 +0100) Subject: Re: ilu port -O From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * For these reasons, I would vote not to use -O for this port at all for * now. I'll report this to the ILU team and try to narrow down the * problematic object file. But this will take more time than I find * acceptable to delay my commit of the new version. That is absolutely the right thing to do. However, please disable packaging (just define NO_PACKAGE), we do not distribute binaries compiled without optimization. Satoshi From owner-freebsd-ports Tue Dec 16 17:00:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA17782 for ports-outgoing; Tue, 16 Dec 1997 17:00:18 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA17752; Tue, 16 Dec 1997 17:00:14 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 16 Dec 1997 17:00:14 -0800 (PST) Resent-Message-Id: <199712170100.RAA17752@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, egalois@concentric.net Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA17389; Tue, 16 Dec 1997 16:56:41 -0800 (PST) (envelope-from nobody) Message-Id: <199712170056.QAA17389@hub.freebsd.org> Date: Tue, 16 Dec 1997 16:56:41 -0800 (PST) From: egalois@concentric.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5325: startx doesnt work Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5325 >Category: ports >Synopsis: startx doesnt work >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Tue Dec 16 17:00:09 PST 1997 >Last-Modified: >Originator: Bill Eckert >Organization: >Release: 2.2.5 >Environment: generic 386/486/586 >Description: The ports mechanism as it comes off the cdrom.com disk set goes thru ftp. I tried to get ports for netscape and zircon that way and the files cannot be located at either the primary site or your repository. >How-To-Repeat: >Fix: Put the files where they are supposed to be. Better yet, on those 4 disk sets, have the ports mechanism take the files off the local cdrom. I guess there must be some way to do this, but I havent run across it yet. >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Dec 16 17:00:22 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA17798 for ports-outgoing; Tue, 16 Dec 1997 17:00:22 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA17778; Tue, 16 Dec 1997 17:00:17 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 16 Dec 1997 17:00:17 -0800 (PST) Resent-Message-Id: <199712170100.RAA17778@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, egalois@concentric.net Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA17513; Tue, 16 Dec 1997 16:58:44 -0800 (PST) (envelope-from nobody) Message-Id: <199712170058.QAA17513@hub.freebsd.org> Date: Tue, 16 Dec 1997 16:58:44 -0800 (PST) From: egalois@concentric.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5326: ircii compile errors Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5326 >Category: ports >Synopsis: ircii compile errors >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Tue Dec 16 17:00:15 PST 1997 >Last-Modified: >Originator: Bill Eckert >Organization: >Release: 2.2.5 >Environment: generic 386/486/586 >Description: In compiling ircii-2.9, numerous warnings relating to "puts" and "incompatible pointers" crop up. It seems to compile, but makes me wonder whether this port is properly done. >How-To-Repeat: >Fix: Run lint on the damn thing and recast or redefine something. >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Dec 16 17:10:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA18824 for ports-outgoing; Tue, 16 Dec 1997 17:10:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA18809; Tue, 16 Dec 1997 17:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 16 Dec 1997 17:10:02 -0800 (PST) Resent-Message-Id: <199712170110.RAA18809@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, egalois@concentric.net Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA17889; Tue, 16 Dec 1997 17:01:15 -0800 (PST) (envelope-from nobody) Message-Id: <199712170101.RAA17889@hub.freebsd.org> Date: Tue, 16 Dec 1997 17:01:15 -0800 (PST) From: egalois@concentric.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5327: Arena is a disaster Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5327 >Category: ports >Synopsis: Arena is a disaster >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Tue Dec 16 17:10:01 PST 1997 >Last-Modified: >Originator: Bill Eckert >Organization: >Release: 2.2.5 >Environment: generic 386/486/586 >Description: Unfortunately, out of the box, Arena is the only visible means to look at your site. Arena crashes constantly or simply refuses to work at all sometimes. However, today your web site is not co-existing with Netscape Communicator either. So the problem maybe in your web page. >How-To-Repeat: >Fix: Provide a pushbutton means of downloading netscape or some browser that works. >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Dec 16 17:46:43 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA22232 for ports-outgoing; Tue, 16 Dec 1997 17:46:43 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id RAA22226 for ; Tue, 16 Dec 1997 17:46:40 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <54782(3)>; Tue, 16 Dec 1997 17:44:19 PST Received: from localhost by crevenia.parc.xerox.com with SMTP id <177480>; Tue, 16 Dec 1997 17:43:08 -0800 To: Bruce Gingery cc: freebsd-ports@freebsd.org Subject: Re: Recommended added target for bsd.port.mk In-reply-to: Your message of "Tue, 16 Dec 97 09:45:12 PST." Date: Tue, 16 Dec 1997 17:43:01 PST From: Bill Fenner Message-Id: <97Dec16.174308pst.177480@crevenia.parc.xerox.com> Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Bruce Gingery wrote: >"make installed" as an alias for "pkg_info -c `make package-name`" Is installed: @if pkg_info -e ${PKGNAME}; then \ ${ECHO_MSG} "===> ${PKGNAME} is installed."; \ else \ ${ECHO_MSG} "===> ${PKGNAME} is not installed.";\ fi what you want from "make installed"? (e.g. are you asking for 'pkg_info -c' because it displays the COMMENT file, or because it tells you if it's not installed?) Bill From owner-freebsd-ports Tue Dec 16 17:50:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA22614 for ports-outgoing; Tue, 16 Dec 1997 17:50:00 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from home.gtcs.com (home.gtcs.com [206.54.69.238]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id RAA22604 for ; Tue, 16 Dec 1997 17:49:53 -0800 (PST) (envelope-from bruce@gtcs.com) Received: from gtcs.com (localhost.gtcs.com [127.0.0.1]) by home.gtcs.com (8.8.5/8.8.5) with ESMTP id SAA09658; Tue, 16 Dec 1997 18:49:31 -0700 (MST) Disposition-Notification-To: bgingery@gtcs.com X-Comment1: in most cases both the Return-Receipt and Delivery-Notification X-Comment2: requests are part of an ongoing poll to determine what clients X-Comment3: and MTAs respond to the headers. Message-Id: <199712170149.SAA09658@home.gtcs.com> Date: Tue, 16 Dec 1997 18:49:28 -0700 (MST) From: bgingery@gtcs.com Reply-To: bgingery@gtcs.com Subject: Re: Recommended added target for bsd.port.mk To: fenner@parc.xerox.com cc: freebsd-ports@freebsd.org In-Reply-To: <97Dec16.174308pst.177480@crevenia.parc.xerox.com> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On 16 Dec, Bill Fenner wrote: -} Bruce Gingery wrote: -} >"make installed" as an alias for "pkg_info -c `make package-name`" -} -} Is -} -} installed: -} @if pkg_info -e ${PKGNAME}; then \ -} ${ECHO_MSG} "===> ${PKGNAME} is installed."; \ -} else \ -} ${ECHO_MSG} "===> ${PKGNAME} is not installed.";\ -} fi -} -} what you want from "make installed"? (e.g. are you asking for 'pkg_info -c' -} because it displays the COMMENT file, or because it tells you if it's not -} installed?) -} -} Bill Whoops - time to upgrade my bsd.port.mk, I guess. The nice thing about my idea was that it did BOTH. Short description or "not installed". Bruce From owner-freebsd-ports Tue Dec 16 19:02:01 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA28643 for ports-outgoing; Tue, 16 Dec 1997 19:02:01 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA28622; Tue, 16 Dec 1997 19:01:51 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id SAA21043; Tue, 16 Dec 1997 18:59:09 -0800 (PST) Date: Tue, 16 Dec 1997 18:59:09 -0800 (PST) Message-Id: <199712170259.SAA21043@freefall.freebsd.org> To: egalois@concentric.net, jkh@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5327 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Arena is a disaster State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Tue Dec 16 18:52:25 PST 1997 State-Changed-Why: 1. This doesn't give enough information for us to work with, the problem likely being internal enough to Arena to make it something which should be reported to the Arena maintainers anyway. 2. Our web pages work with all standard browsers (and the ports collection also encapsulates Netscape, both 3.0 and 4.0, quite well). Arena is experimental and clearly marked as such. From owner-freebsd-ports Tue Dec 16 19:03:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA28778 for ports-outgoing; Tue, 16 Dec 1997 19:03:31 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA28757; Tue, 16 Dec 1997 19:03:20 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id TAA21130; Tue, 16 Dec 1997 19:00:39 -0800 (PST) Date: Tue, 16 Dec 1997 19:00:39 -0800 (PST) Message-Id: <199712170300.TAA21130@freefall.freebsd.org> To: egalois@concentric.net, jkh@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5326 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: ircii compile errors State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Tue Dec 16 18:59:51 PST 1997 State-Changed-Why: Lots of ports emit warnings of a more-or-less benign nature. I don't suspect that anyone will get to this any sooner than the central maintainers. From owner-freebsd-ports Tue Dec 16 19:05:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA28985 for ports-outgoing; Tue, 16 Dec 1997 19:05:17 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA28969; Tue, 16 Dec 1997 19:05:07 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id TAA21210; Tue, 16 Dec 1997 19:02:26 -0800 (PST) Date: Tue, 16 Dec 1997 19:02:26 -0800 (PST) Message-Id: <199712170302.TAA21210@freefall.freebsd.org> To: egalois@concentric.net, jkh@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5325 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: startx doesnt work State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Tue Dec 16 19:00:59 PST 1997 State-Changed-Why: The ports collection mechanism *will* use the 4th CD, if mounted. Netscape and zircon are only deliverable via FTP but have become outdated since the CD was released (some ports move very fast). The thing to do in that case is cvsup the -current ports collection (see the handbook). From owner-freebsd-ports Tue Dec 16 20:09:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA04077 for ports-outgoing; Tue, 16 Dec 1997 20:09:10 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id UAA04072 for ; Tue, 16 Dec 1997 20:09:07 -0800 (PST) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0xiAnA-0000ad-00; Tue, 16 Dec 1997 21:09:04 -0700 Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id VAA01807 for ; Tue, 16 Dec 1997 21:09:13 -0700 (MST) Message-Id: <199712170409.VAA01807@harmony.village.org> To: ports@freebsd.org Subject: socks5 port Date: Tue, 16 Dec 1997 21:09:13 -0700 From: Warner Losh Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Greetings, I I tried to contact the MAINTAINER for the socks 5 port, but it bounced. Anybody know who I should contact? Or I could just take it over myself if ambrisko is no longer able to do it himself. As you can tell, I've upgraded it to v1.0r3 and have done the needed hacks for OpenBSD's port tree (the ports are identical between the two). Warner P.S. here's the message I sent him: ------- Forwarded Message To: ambrisko@ambrisko.roble.com Subject: socks5 Date: Tue, 16 Dec 1997 20:59:53 -0700 From: Warner Losh Greetings, I'm in the process of upgrading the FreeBSD socks5 port from v1.0r2 to v1.0r3, which seems to be the latest version. Is there any reason to not use that version, assuming that it works? Are you still actively maintaining this port? Are you interested in patches, or would you like me to commit the patches I come up with (so far they are really minor, like two lines in the Makefile and a new files/md5). At the same time, I'm trying to port this to OpenBSD's new ports system as well. I think that it should just build there. Any ideas? Many thanks for the original port. Warner ------- End of Forwarded Message From owner-freebsd-ports Tue Dec 16 20:15:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA04639 for ports-outgoing; Tue, 16 Dec 1997 20:15:42 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id UAA04633 for ; Tue, 16 Dec 1997 20:15:39 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <52763(5)>; Tue, 16 Dec 1997 20:15:03 PST Received: from localhost by crevenia.parc.xerox.com with SMTP id <177480>; Tue, 16 Dec 1997 19:21:02 -0800 To: bgingery@gtcs.com cc: fenner@parc.xerox.com, freebsd-ports@freebsd.org Subject: Re: Recommended added target for bsd.port.mk In-reply-to: Your message of "Tue, 16 Dec 97 17:49:28 PST." <199712170149.SAA09658@home.gtcs.com> Date: Tue, 16 Dec 1997 19:21:00 PST From: Bill Fenner Message-Id: <97Dec16.192102pst.177480@crevenia.parc.xerox.com> Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk bgingery@gtcs.com wrote: >Whoops - time to upgrade my bsd.port.mk, I guess. Nope, I was making a suggestion, not offering something that already exists. >The nice thing about >my idea was that it did BOTH. Short description or "not installed". That was really what I was asking -- is that what you *wanted* (in which case "installed" isn't the most obvious name for it) or was it just the way you implemented "is this installed or not", with the side effect of displaying the COMMENT. Bill From owner-freebsd-ports Tue Dec 16 23:42:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA19707 for ports-outgoing; Tue, 16 Dec 1997 23:42:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from home.gtcs.com (home.gtcs.com [206.54.69.238]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id XAA19680 for ; Tue, 16 Dec 1997 23:41:58 -0800 (PST) (envelope-from bruce@gtcs.com) Received: from gtcs.com (localhost.gtcs.com [127.0.0.1]) by home.gtcs.com (8.8.5/8.8.5) with ESMTP id AAA12328; Wed, 17 Dec 1997 00:41:25 -0700 (MST) Disposition-Notification-To: bgingery@gtcs.com X-Comment1: in most cases both the Return-Receipt and Delivery-Notification X-Comment2: requests are part of an ongoing poll to determine what clients X-Comment3: and MTAs respond to the headers. Message-Id: <199712170741.AAA12328@home.gtcs.com> Date: Wed, 17 Dec 1997 00:41:23 -0700 (MST) From: bgingery@gtcs.com Reply-To: bgingery@gtcs.com Subject: Re: Recommended added target for bsd.port.mk To: fenner@parc.xerox.com cc: freebsd-ports@freebsd.org In-Reply-To: <97Dec16.192102pst.177480@crevenia.parc.xerox.com> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On 16 Dec, Bill Fenner wrote: -} bgingery@gtcs.com wrote: -} >Whoops - time to upgrade my bsd.port.mk, I guess. -} -} Nope, I was making a suggestion, not offering something that already -} exists. Ahhh. Okay. The exact performance isn't particularly important, although no real reason to repeat the "describe" target, per se. Personally, I *very* seldom use "make describe" but *do* use my shell alias "desc" which is merely a "more pkg/DESCR", and the (currently also a shell alias) "installed" which does what I described, passing `make package-name` to pkg_info -c. I also use `make package-name` for easy package deletes, which could be a "make delete" target, very easily, too. I do that seldom enough that I've not even made an alias for it. OTOH, to be consistent with handling pre-req's, a "make delete" should be interactive only (under normal operation) and remove packages which are registered as dependent on the port, as well. Then, too, there are enough bsd.port.mk targets now, that a "make help" is almost in order, even if it merely extracts the lines that describe the targets from itself. I know a few people have expressed a wish to re-do the whole ports handling methods, yet it's quite powerful as is. Personally, I'd rather see a "make installbin" invoke a fetch of the binary package and install it, adding to the process, than a replacement of what's already working so well. Yet, also, with someone recently, I mentioned the prospects of storing the ports tree in a series of zip-files by type ..e.g. /usr/ports/archivers.zip (etc.) or even /usr/ports/archivers/zip.zip (etc.) and only extracting what's needed for making a port. That would require changes to bsd.port.subdir.mk, though, to handle the compressed port tree. "make all ", or "make " from the parent directory. The *reason* for using .zip rather than .tar.gz was twofold. New "port tarballs" could easily be distinguised from package tars by their "zip" extension. The space taken would decrease significantly. Individual *known* files could be extracted by the bsd.port.subdir.mk other targets, easily for mass processing. without the overhead of handling all of the patches or scripts that might be in an existing port. This would be especially handy for targets like "fetch-list" and "describe" and "readme". I'm already using a Perl script for resolving *some* URLs on my website for infrequently accessed files. It merely returns HTTP headers and unzips to stdout of the file requested (if approved). Bruce Gingery From owner-freebsd-ports Wed Dec 17 00:02:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA21000 for ports-outgoing; Wed, 17 Dec 1997 00:02:52 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from seagull.cdrom.com (root@seagull.cdrom.com [204.216.27.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA20992 for ; Wed, 17 Dec 1997 00:02:46 -0800 (PST) (envelope-from cracauer@cons.org) Received: from cons.org (knight.cons.org [194.233.237.86]) by seagull.cdrom.com (8.8.6/8.6.6) with ESMTP id AAA05698 ; Wed, 17 Dec 1997 00:03:02 -0800 (PST) Received: (from cracauer@localhost) by cons.org (8.8.5/8.7.3) id JAA23973; Wed, 17 Dec 1997 09:02:33 +0100 (CET) Message-ID: <19971217090229.60856@cons.org> Date: Wed, 17 Dec 1997 09:02:29 +0100 From: Martin Cracauer To: Satoshi Asami Cc: ports@freebsd.org Subject: Re: ilu port -O References: <19971216183813.43639@cons.org> <199712170024.QAA04610@vader.cs.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81 In-Reply-To: <199712170024.QAA04610@vader.cs.berkeley.edu>; from Satoshi Asami on Tue, Dec 16, 1997 at 04:24:36PM -0800 Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In <199712170024.QAA04610@vader.cs.berkeley.edu>, Satoshi Asami wrote: > * For these reasons, I would vote not to use -O for this port at all for > * now. I'll report this to the ILU team and try to narrow down the > * problematic object file. But this will take more time than I find > * acceptable to delay my commit of the new version. > > That is absolutely the right thing to do. However, please disable > packaging (just define NO_PACKAGE), we do not distribute binaries > compiled without optimization. Don't you think this is a too harsh requirement? I assume the intention is that the user can depend on packages being built with optimization. But shouldn't this really be "compiled with options so that it works and is as fast as possible but not faster"? If there is only one way to build, why not ship this one as a package? As I understand, disabling packageing for ports without -O should ensure that the user can turn it on on building time. If he can't do this anyway, what's the point? Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer cracauer@wavehh.hanse.de (batched, preferred for large mails) Tel.: (daytime) +4940 41478712 Fax.: (daytime) +4940 41478715 Tel.: (private) +4940 5221829 Fax.: (private) +4940 5228536 Paper: (private) Waldstrasse 200, 22846 Norderstedt, Germany From owner-freebsd-ports Wed Dec 17 00:08:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA21317 for ports-outgoing; Wed, 17 Dec 1997 00:08:28 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-53.ix.netcom.com [207.93.143.181]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA21310 for ; Wed, 17 Dec 1997 00:08:24 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA10026; Wed, 17 Dec 1997 00:07:38 -0800 (PST) Date: Wed, 17 Dec 1997 00:07:38 -0800 (PST) Message-Id: <199712170807.AAA10026@silvia.HIP.Berkeley.EDU> To: cracauer@cons.org CC: ports@freebsd.org In-reply-to: <19971217090229.60856@cons.org> (message from Martin Cracauer on Wed, 17 Dec 1997 09:02:29 +0100) Subject: Re: ilu port -O From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk A port that can't be compiled with optimization is obviously "work in progress", that's why. :) By the way, have you even seen an assembly language output of a program compiled without optimization? Satoshi From owner-freebsd-ports Wed Dec 17 00:11:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA21456 for ports-outgoing; Wed, 17 Dec 1997 00:11:28 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from seagull.cdrom.com (root@seagull.cdrom.com [204.216.27.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA21451 for ; Wed, 17 Dec 1997 00:11:25 -0800 (PST) (envelope-from cracauer@cons.org) Received: from cons.org (knight.cons.org [194.233.237.86]) by seagull.cdrom.com (8.8.6/8.6.6) with ESMTP id AAA05728 ; Wed, 17 Dec 1997 00:11:42 -0800 (PST) Received: (from cracauer@localhost) by cons.org (8.8.5/8.7.3) id JAA24046; Wed, 17 Dec 1997 09:11:13 +0100 (CET) Message-ID: <19971217091110.00544@cons.org> Date: Wed, 17 Dec 1997 09:11:10 +0100 From: Martin Cracauer To: Satoshi Asami Cc: ports@freebsd.org Subject: Re: ilu port -O References: <19971217090229.60856@cons.org> <199712170807.AAA10026@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81 In-Reply-To: <199712170807.AAA10026@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Wed, Dec 17, 1997 at 12:07:38AM -0800 Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In <199712170807.AAA10026@silvia.HIP.Berkeley.EDU>, Satoshi Asami wrote: > A port that can't be compiled with optimization is obviously "work in > progress", that's why. :) Hopefully it is not gcc that is work in progress here :-) > By the way, have you even seen an assembly language output of a > program compiled without optimization? Well, I'll have to since I'm going to fix this one. Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer cracauer@wavehh.hanse.de (batched, preferred for large mails) Tel.: (daytime) +4940 41478712 Fax.: (daytime) +4940 41478715 Tel.: (private) +4940 5221829 Fax.: (private) +4940 5228536 Paper: (private) Waldstrasse 200, 22846 Norderstedt, Germany From owner-freebsd-ports Wed Dec 17 00:18:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA21870 for ports-outgoing; Wed, 17 Dec 1997 00:18:56 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-53.ix.netcom.com [207.93.143.181]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA21860 for ; Wed, 17 Dec 1997 00:18:36 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA10250; Wed, 17 Dec 1997 00:17:37 -0800 (PST) Date: Wed, 17 Dec 1997 00:17:37 -0800 (PST) Message-Id: <199712170817.AAA10250@silvia.HIP.Berkeley.EDU> To: cracauer@cons.org CC: ports@freebsd.org In-reply-to: <19971217091110.00544@cons.org> (message from Martin Cracauer on Wed, 17 Dec 1997 09:11:10 +0100) Subject: Re: ilu port -O From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Hopefully it is not gcc that is work in progress here :-) Yeah, but that's the same thing as far as we are concerned. :> * Well, I'll have to since I'm going to fix this one. Great. If you see how "for (i = 0 ; i < x ; i++)" compiles without optimization, you will never want to compile anything without -O. :) Satoshi From owner-freebsd-ports Wed Dec 17 00:20:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA21992 for ports-outgoing; Wed, 17 Dec 1997 00:20:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA21949; Wed, 17 Dec 1997 00:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 17 Dec 1997 00:20:02 -0800 (PST) Resent-Message-Id: <199712170820.AAA21949@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, dirk.meyer@dinoex.sub.org Received: from mail.dinoex.sub.de (mail.dinoex.sub.de [193.203.172.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA21397 for ; Wed, 17 Dec 1997 00:10:13 -0800 (PST) (envelope-from dinoex@net2.dinoex.sub.org) Received: from net2.dinoex.sub.org (uucp@localhost) by mail.dinoex.sub.de (8.8.7/8.8.7) with UUCP id IAA18069 for freebsd.org!FreeBSD-gnats-submit; Wed, 17 Dec 1997 08:19:07 +0100 (CET) Received: by net2.dinoex.sub.org (Smail3.1.29.1 #1) id m0xiD37-000k7eC; Wed, 17 Dec 97 07:33 CET Message-Id: Date: Wed, 17 Dec 97 07:33 CET From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5329: fix for emulators/frodo Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5329 >Category: ports >Synopsis: fix for emulators/frodo >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 17 00:20:01 PST 1997 >Last-Modified: >Originator: Dirk Meyer >Organization: privat >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: X11, tcl/tk >4.1 tested with tcl80/tk80 >Description: emulates a Commodore 64 >How-To-Repeat: if the $PREFIX is changed, somee scripts won't work also fixes report ports/5210 >Fix: the following archive create a directory frodo-4.1 this can be installed in the directory "/usr/ports/emulators". ftp://ftp.dinoex.sub.de/pub/appoved/ports-frodo-4.1.tar.gz also included in this mail begin 644 ports-frodo-4.1.tar.gz M'XL("%ZACS0"`W!OQRML;\[:YM%>_ON=M?,"'%I=`;T7>22( ML[,[.^^='<<3W.552S6TM4<#L/2&;<,:2-!O?4Z_0-VR3+.FUXPZ@*';C=H: MV&M/`&F<$`&P)CA/[IMWX5,:K#T[\.;VGYR-M=]K?T,W3:-FHOT-TVJ4]G]Z M^[=.NMWV\?"!]S!T':U[C_VMJ?W-NFDV9/S7,!FL@5[:_]'A0-H?JD##-"`) MC8%`BXVJ$RQ*?)"^E@),4A7,XBQSFTLBAZBLY>Z&%"R3NTG,:\`EU)4U!)XA( M'9I),19DXC,G!N[!&#G+Y7-IR&-)8T23A`JY6Y1-IYDZHUUK?GKFII!$CTP&M.E=.0)=FYY,' MK5Q@C)8XD%J%$2K1PQ02HCGE&Z+"."#H4^B)IC,1ZO MMJ%KGSNM9:[S73Q*$G34.`\'E,%!'7)1#:1G@F%;QA)C,WX0ASOAOG(7:4E\ M(B..[.W8_Y)TT&=)$""SZ!,!)RZ=NV(6_$$LF?-R.]_:P\NR0"HRCQ#HI9F5 M5+=N:9?HVN@D9ZAL,J;Q-J@)CA[]??P5B'!\.7<;<+G+I,-PP:B,'DE(6LCG MR$SNN6I9;/SN\[]WU!D,G_[\;YBS^M^V;5V>_Z9>GO]/`B,6:9D/*`$;T4OJ MY-^T@X*Q+"?T3[JWAM^3F#D%XRT?%7MW^",5$0D*$'GJ.^+CV_L.SPY3IB9. M<&N\;DW$.-9,S_.*,0X/N!@1$1>C7=TP?',%CKBC%1BJZYA&5R"OG$DQQ@O< M8D0@1EQ@+B[&QA,17T7."F0B:.+XQ4=IF410M&40IP2 MHU6IYO*YE3_L'1^V!W?&NX1%JI^$P1T,21.?BV+<*!UCP<5%$A?C9:6%QR&6 M8>&*&?+,NF"1RR^*\1X+Z(JELW)C!3:51W(QSL)HQO?4#V]-*JN%ASW_L\!XE`[P+_=_ M3;M>L[+^;T,WR_[O[[!_Z#Z\UG_:_VTTYO8WK$96_]F-LOY["NCNV["555Z? MK5.#J`/AJ*@0=?S]%>S"#K%&ME[SZO5:PW9&.[9C>5:M;AH.,2W=HV4.?F[Q MGWU_^/B_F_\;B_@W:K7Y^U_#S.Y_EFW\C\4_7I2>H_TW7FCR"AC[RH;BN+#Y MH]=O'W2^7FLWJW[YN`HYO2MN*!M`N5>FA/_3^.^2,RISP,/O\;/^3]TV\OAO MU'0[^_U'S;3*_L_3Q#\`S;@,Q6QQ$Y? M2+C-"CH.CN^3A((C*'[@6,4P8)]^!V-GIX'(+SX/<;""E[@S-:175.!]+N+T M4HW3D-+OM`>[ ME?G[!*6[-QBV^Z>#SE".>\FDJ6GX7_72B":JQ[1).M):[[N:(W@LWVPD*&&H MS0GDR4R#;TKEOUF=1NSR]N(E:5V:42"3_+6$IB"_G>,A_K7[N_=H2/DT:)]^ M-8S=RM_M@;)W='0ZW.L?MH=3/2E?^A\'_=9NI;+Y`Q_W._WKJ1Q2=TK_I(NH MK'N7]^JRSES>AU,45*?#(X^-4T&;2N7=5G8,Y!2O_\3'P8=K4+7YG%?9DFE3 M`Q?@A/;^-50IO(RU;YN+0V+VU!QHWS3MVS?\-[[6QB\S]9-QF M9H6WL.`_]SFDWCD>#*7$@U:_TQM>WYZR="KA0287=#/LRJ-LB62O?W+8W^LN MTSQ8:D6NHJ#*MR%,O@#9_(&ZO5XFN;\WW+N&]=L$-W^P:]GR7%]-E$8NTOT% M6HL^Z?I]0K9Z!6OGK=1[E]ZOP5E[L/)NYBE+&^2X/T$F5<>#*JCP;]A:75G< M6'")"]"])CQ.%@ZF,@]>N)B-(NIN'9_T3OK#_9/6X%4AH[=[1`M3S?J4=_1; M:*I[*,[L5"3]/G?NE_T6M66Q)6'F*2AOY`2I2^&O4>RJ,C.KX=E;Y='/_PE) M'/]1.D"_WO^I(]C9A<`RRO[/$[__F]H_^ZRV0K?')E1U)I/'J?^6[G^679OU M?QI67?9_;,.PROO?4\#KUZ]AR=:5+]2%O72,]H":WK3KS5H]+^2JU>KR1#6B M*18?#`9T`F"#834-NVDV\LFO;X+\#K6=;=."[*ND);\V`)^J"L`&YOA9BC\] M#5B47IZ>RE_F5#;FV3"^BK6$A53UW\H5>;9\+L MER=+DQ;4EP:I$!&7H\_]_G%PF/=_Y;BOV$O\G]#E_%OUR>/_!6R\T-)8:`%W M2)`UH/!RHUVPV,^#J[*4,+N7QG+=VUV0MT0D]P(FQ#DC8SK#2_04!Q#31/X@RY._,\1ZF4;G M6Q].NNU7FIJ%AG#6Y3PIO&0_RU<%[$O6H>H]"O<;&P\@0-GI*J&$$DHHH802 D2BBAA!)***&$$DHHH8022BBAA!)***&$YP__`5YNQ6(`4``` ` end >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Dec 17 00:41:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA23230 for ports-outgoing; Wed, 17 Dec 1997 00:41:34 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from isdn-kukulies.dialup.rwth-aachen.de (isdn-kukulies.dialup.RWTH-Aachen.DE [137.226.145.27]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA23212; Wed, 17 Dec 1997 00:41:26 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by isdn-kukulies.dialup.rwth-aachen.de (8.8.6/8.6.9) id JAA20651; Wed, 17 Dec 1997 09:41:24 +0100 (MET) Date: Wed, 17 Dec 1997 09:41:24 +0100 (MET) From: "Christoph P. Kukulies" Message-Id: <199712170841.JAA20651@isdn-kukulies.dialup.rwth-aachen.de> To: ports@freebsd.org Subject: Wine success story Cc: freebsd-hackers@freebsd.org Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Just FYI: I installed the most recent version of Wine (Wine-971130 from sunsite). And despite one quirk in memory/virtual.c where I had to get acoross the fact that FreeBSD doesn't do synchronuous memory syncs (Linux: ) I was able to throw it at my C:\WIN95 directory. I ran wine progman and voila, my Win95 desktop appeared neatly sorted in progman program groups. The fonts and the colors/hatching/dithering a bit strange though. Now, the big success: Freecell works! So, no more need to boot a Win95/NT System :-) Kidding aside, a lot of 32 bit apps do not work since so many functions of the 32 bit API if any at all are unimplemented but they seem on a good trip to there. What I'm concerned about though is the fact of this unimplemented MS_SYNC feature. That's why I'm cross posting this to -hackers also. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de From owner-freebsd-ports Wed Dec 17 01:16:49 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA25340 for ports-outgoing; Wed, 17 Dec 1997 01:16:49 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA25319; Wed, 17 Dec 1997 01:16:41 -0800 (PST) (envelope-from toor@dyson.iquest.net) Received: (from root@localhost) by dyson.iquest.net (8.8.8/8.8.8) id EAA02416; Wed, 17 Dec 1997 04:16:24 -0500 (EST) (envelope-from toor) Message-Id: <199712170916.EAA02416@dyson.iquest.net> Subject: Re: Wine success story In-Reply-To: <199712170841.JAA20651@isdn-kukulies.dialup.rwth-aachen.de> from "Christoph P. Kukulies" at "Dec 17, 97 09:41:24 am" To: kuku@gilberto.physik.RWTH-Aachen.DE (Christoph P. Kukulies) Date: Wed, 17 Dec 1997 04:16:24 -0500 (EST) Cc: ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG From: "John S. Dyson" Reply-To: dyson@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Christoph P. Kukulies said: > > What I'm concerned about though is the fact of this unimplemented > MS_SYNC feature. That's why I'm cross posting this to -hackers also. > You are right, I neglected to define a symbol for MS_SYNC :-(. It has caused a few troubles, and I recently added an MS_SYNC to /sys/sys/mman.h in both -current and -stable (however, that does not retrofit CDROMS :-).) If you add a local definition of "0" to MS_SYNC in either your /usr/include/sys/mman.h file or in one of the wine include files, it should work: #define MS_SYNC 0 -- John | Never try to teach a pig to sing, dyson@freebsd.org | it just makes you look stupid, jdyson@nc.com | and it irritates the pig. From owner-freebsd-ports Wed Dec 17 03:40:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA02593 for ports-outgoing; Wed, 17 Dec 1997 03:40:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA02574; Wed, 17 Dec 1997 03:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 17 Dec 1997 03:40:02 -0800 (PST) Resent-Message-Id: <199712171140.DAA02574@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, andy@icc.surw.chel.su Received: from rich.chel.su (root@mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA02174 for ; Wed, 17 Dec 1997 03:34:16 -0800 (PST) (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 QAA19664 for ; Wed, 17 Dec 1997 16:35:14 +0500 (UST) Received: (from andy@localhost) by icc.surw.chel.su (8.8.5/8.8.4) id OAA22844; Wed, 17 Dec 1997 14:39:20 +0300 (MSK) Message-Id: <199712171139.OAA22844@icc.surw.chel.su> Date: Wed, 17 Dec 1997 14:39:20 +0300 (MSK) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5330: New port: nbench-2.1 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5330 >Category: ports >Synopsis: New port: nbench-2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 17 03:40:01 PST 1997 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: New port: nbench-2.1 >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: This is a port of the BYTE Magazine's native benchmarks BYTE Magazine's native benchmarks (also called BYTEmark) designed to expose the capabilities of a system's CPU, FPU, and memory system. # 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: # # nbench-2.1 # nbench-2.1/Makefile # nbench-2.1/files # nbench-2.1/files/md5 # nbench-2.1/patches # nbench-2.1/patches/patch-ab # nbench-2.1/patches/patch-aa # nbench-2.1/pkg # nbench-2.1/pkg/PLIST # nbench-2.1/pkg/COMMENT # nbench-2.1/pkg/DESCR # echo c - nbench-2.1 mkdir -p nbench-2.1 > /dev/null 2>&1 echo x - nbench-2.1/Makefile sed 's/^X//' >nbench-2.1/Makefile << 'END-of-nbench-2.1/Makefile' X# New ports collection makefile for: nbench X# Version required: 2.1 X# Date created: 17 December 1997 X# Whom: Andrey Zakhvatov X# X# $Id$ X# X XDISTNAME= nbench-byte-2.1 XPKGNAME= nbench-2.1 XCATEGORIES= benchmarks XMASTER_SITES= ftp://ftp.tux.org/pub/tux/mayer/ \ X ${MASTER_SITE_SUNSITE} XMASTER_SITE_SUBDIR= system/benchmark X XMAINTAINER= andy@icc.surw.chel.su X XALL_TARGET= X Xdo-install: X @ ${INSTALL_PROGRAM} ${WRKSRC}/nbench ${PREFIX}/bin X @ ${MKDIR} ${PREFIX}/share/nbench X @ ${INSTALL_DATA} ${WRKSRC}/NNET.DAT ${PREFIX}/share/nbench X @ ${MKDIR} ${PREFIX}/share/doc/nbench X.for file in README README.submit RESULTS bdoc.txt X @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/nbench X.endfor X X.include END-of-nbench-2.1/Makefile echo c - nbench-2.1/files mkdir -p nbench-2.1/files > /dev/null 2>&1 echo x - nbench-2.1/files/md5 sed 's/^X//' >nbench-2.1/files/md5 << 'END-of-nbench-2.1/files/md5' XMD5 (nbench-byte-2.1.tar.gz) = 18741c3f7d01bf216a57c0132896b196 END-of-nbench-2.1/files/md5 echo c - nbench-2.1/patches mkdir -p nbench-2.1/patches > /dev/null 2>&1 echo x - nbench-2.1/patches/patch-ab sed 's/^X//' >nbench-2.1/patches/patch-ab << 'END-of-nbench-2.1/patches/patch-ab' X--- sysinfo.sh Thu Dec 11 20:54:46 1997 X+++ /home/andy/tmp/wrk/sysinfo.sh Wed Dec 17 08:30:28 1997 X@@ -50,8 +50,8 @@ X X # this bombs out on Ultrix which expect "cut -d" X X-compsystem=`uname -a | cut -b 1-78` X-compdate=`date|cut -b1-55` X+compsystem=`uname -a | cut -f 1-78` X+compdate=`date | cut -f 1-55` X X # let's hope that ctrl-c is not part of any string here X # this also will barf later if " is in any of the strings X@@ -60,4 +60,4 @@ X sed -e "s%CCVERSION%$gccversion" -e "s%LIBCVERSION%$libcversion"\ X -e "s%SYSTEM%$compsystem" -e "s%DATE%$compdate"\ X ${i}.template > $i END-of-nbench-2.1/patches/patch-ab echo x - nbench-2.1/patches/patch-aa sed 's/^X//' >nbench-2.1/patches/patch-aa << 'END-of-nbench-2.1/patches/patch-aa' X--- nbench1.h Thu Dec 11 20:54:46 1997 X+++ /home/andy/tmp/wrk/nbench1.h Wed Dec 17 08:28:11 1997 X@@ -352,7 +352,7 @@ X ** The Neural Net test requires an input data file. X ** The name is specified here. X */ X-char *inpath="NNET.DAT"; X+char *inpath="/usr/local/share/nbench/NNET.DAT"; X X /* X ** PROTOTYPES END-of-nbench-2.1/patches/patch-aa echo c - nbench-2.1/pkg mkdir -p nbench-2.1/pkg > /dev/null 2>&1 echo x - nbench-2.1/pkg/PLIST sed 's/^X//' >nbench-2.1/pkg/PLIST << 'END-of-nbench-2.1/pkg/PLIST' Xbin/nbench Xshare/nbench/NNET.DAT Xshare/doc/nbench/README Xshare/doc/nbench/README.submit Xshare/doc/nbench/RESULTS Xshare/doc/nbench/bdoc.txt X@dirrm share/nbench X@dirrm share/doc/nbench END-of-nbench-2.1/pkg/PLIST echo x - nbench-2.1/pkg/COMMENT sed 's/^X//' >nbench-2.1/pkg/COMMENT << 'END-of-nbench-2.1/pkg/COMMENT' XBYTE Magazine's native benchmarks END-of-nbench-2.1/pkg/COMMENT echo x - nbench-2.1/pkg/DESCR sed 's/^X//' >nbench-2.1/pkg/DESCR << 'END-of-nbench-2.1/pkg/DESCR' X BYTE Magazine's native benchmarks (also called BYTEmark) Xdesigned to expose the capabilities of a system's CPU, FPU, Xand memory system. END-of-nbench-2.1/pkg/DESCR exit >How-To-Repeat: >Fix: Please, check and commit this port. >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Dec 17 03:50:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA03078 for ports-outgoing; Wed, 17 Dec 1997 03:50:33 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-53.ix.netcom.com [207.93.143.181]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA03060 for ; Wed, 17 Dec 1997 03:50:16 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id DAA16651; Wed, 17 Dec 1997 03:49:36 -0800 (PST) Date: Wed, 17 Dec 1997 03:49:36 -0800 (PST) Message-Id: <199712171149.DAA16651@silvia.HIP.Berkeley.EDU> To: bruce@gtcs.com CC: freebsd-ports@FreeBSD.ORG In-reply-to: (message from Bruce Gingery on Tue, 16 Dec 1997 10:45:12 -0700 (MST)) Subject: Re: Recommended added target for bsd.port.mk From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * ultraclean: * Deletes distribution files, depends on "clean" There already is one, called "distclean". * I'd already recommended adding "size" as a port tarball standard * component, and "make desc" as an alias to "more pkg/DESCR", and * "make installed" as an alias for "pkg_info -c `make package-name`" "size" is fine, can someone send me a patch? As for the others, I don't think we should start adding things that can be done by simple aliases. bsd.port.mk is long and complicated enough as it is. Satoshi From owner-freebsd-ports Wed Dec 17 06:17:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA13906 for ports-outgoing; Wed, 17 Dec 1997 06:17:42 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from home.gtcs.com (home.gtcs.com [206.54.69.238]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA13899 for ; Wed, 17 Dec 1997 06:17:29 -0800 (PST) (envelope-from bruce@gtcs.com) Received: from gtcs.com (localhost.gtcs.com [127.0.0.1]) by home.gtcs.com (8.8.5/8.8.5) with ESMTP id HAA15618; Wed, 17 Dec 1997 07:16:47 -0700 (MST) Disposition-Notification-To: bgingery@gtcs.com X-Comment1: in most cases both the Return-Receipt and Delivery-Notification X-Comment2: requests are part of an ongoing poll to determine what clients X-Comment3: and MTAs respond to the headers. Message-Id: <199712171416.HAA15618@home.gtcs.com> Date: Wed, 17 Dec 1997 07:16:44 -0700 (MST) From: bgingery@gtcs.com Reply-To: bgingery@gtcs.com Subject: Re: Recommended added target for bsd.port.mk To: asami@cs.berkeley.edu cc: freebsd-ports@FreeBSD.ORG In-Reply-To: <199712171149.DAA16651@silvia.HIP.Berkeley.EDU> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On 17 Dec, Satoshi Asami wrote: -} "size" is fine, can someone send me a patch? As for the others, I -} don't think we should start adding things that can be done by simple -} aliases. bsd.port.mk is long and complicated enough as it is. Okay, it's not QUITE a patch (and evidently I don't have the most current bsd.port.mk which you'd want a patch against, anyways). DESCRIPTION =========== Here's the idea. In FILESDIR, we add a file called "sizes" makesizes is the logical equivalent to makesum. It creates that file from scratch. The biggest difference is that "make makesizes" depends on "make package" .. which depends on "make install" .... The only thing I've NOT taken into account is the package registry database, which will vary according to subsequent depends, anyways. I don't allow for those, but I'd think that they'd rarely make a k difference. Makesizes target creates line entries for each "stage" of the sizing. Just for the consistency, each line has THREE entries, an ident, the size in k, and the file or directory to which it applies. Although the ident is followed by a colon, that's for raw readability. The fields are whitespace delimited. package: dist: ... dist may reoccur depending on number of distfiles for port. make: work: work/ installed: port: other size targets merely extract that info. In order to get "size", we need "make" and "installed", anyways. The others are just gravy, because they'd certainly be useful, either to users or CD builders. E.g. someone with a slow link, building from the net, might want to "make fetch-list sizedist" to get an idea of the time it's apt to take on that connection - BEFORE attempting a make fetch. Someone building a ports-and-distfiles CD might do JUST sizedist and sizeport, while if packages also were being put on that same CD, a sizecd gives the total size for it all. Someone with "close space" on their filesystem would do a "make size" to find out if they have enough workspace to build it, or "make sizepkg installed" to see if they even have room to install the binaries. SYNOPSIS ======== Size target below (gather information) makesizes: Creates ${FILESDIR}/sizes by analyzing fully created and present port. Could replace "make package" as a "standard target" for ppl used to just using that target to "do it all". Size targets below (informational) size: Normal user's size to install sizemax: Size with EVERYTHING made and installed and not cleaned - including package. This is the "port tester's required size". sizepkg: Size of binary dist package sizeport: Size of just the port (within a few bytes) in k sizedist: Size of the "fetch files" sizemake: Size to make but not install - e.g. just test it. sizeinst: Size installed, distclean (not counting port dir). sizecd: Size of port plus size of package plus size of distfiles and I left off the other total, size-of-work with port built, which is really just for makesizes use, but COULD also be included. I had each size target return JUST the size-in-k, figuring that if the full record was wanted, 'grep' would easily handle it in an alias. Approximate code, off the top of my (tired) head. Its been a few weeks since I did anything in awk, and a year or two since I did anything serious in awk/gawk.... Feel free to improve! Excuse the sometimes weirdly line wrapped. CODE ===== for bsd.port.mk ... SIZES=${FILESDIR}/sizes makesizes: ${WRKDIR}/.package-done @echo -n "package: " > ${SIZES} @ls -ks ${PKGNAME}.tar.gz >> ${SIZES} @foreach $f in ${DISTFILES}; do \ echo -n "dist: " >> ${SIZES}; \ ls -ks ${DISTDIR}/$f >> ${SIZES}; \ done @echo -n "make: "`du -s .` >> ${SIZES} @echo -n "work: "`du -s work/` >> ${SIZES} @tar -tvzf ${PKGNAME}.tar.gz | awk -v n=0 '{n += $$2}; \ END {printf "installed: %d ",n;}' >>${SIZES} @echo ${PKGNAME}.tar.gz >> ${SIZES} @awk <${SIZES}'/^make/ {n += $$2};/^work/ {n -= $$2}; \ /^package/ {n -= $$2}; END {print "port:",n," ."};' \ >> ${SIZES} ${SIZES}: makesizes # size of actual portdir in k (within a few bytes). sizeport: ${SIZES} awk < $> '/^port/ {print $$2;}' # size of binary "package" in k sizepkg: ${SIZES} awk < $> '/^package/ {print $$2;}' # size for make [build] in k sizemake: ${SIZES} awk < $> '/^make/ {print $$2;}' # fetch size in k sizedist: ${SIZES} awk < $> '/^dist/ {n += $$2}; END {print n;}' # size for make package in k - larger than make install sizemax: ${SIZES} awk < $> '/^dist/ {n += $$2}; /^make/ {n += $$2}; \ /^package/ {n += $$2}; END {print n;}' # size installed, not including port, package, dist, in k sizeinst: ${SIZES} awk < $> '/^installed/ {print $$2;}' # size to make install in k size: ${SIZES} awk < $> '/^dist/ {n += $$2}; /^make/ {n += $$2}; \ /^installed/ {n += $$2}; END {print n;} # size of package PLUS size of port+distfiles, e.g. for CD-ROM sizecd: ${SIZES} awk < $> '/^dist/ {n += $$2}; /^package/ {n += $$2};\ /^port/ {n += $$2}; END {print n;}' Presumes that "make package" puts package in ${CURDIR}, not in ../pkg/ or other site tree. for bsd.port.subdir.mk I'll leave that as an exercise for someone fresher. Same targets could easily accumulate from each subdir. Bruce Gingery Advanced Integrators, LC From owner-freebsd-ports Wed Dec 17 10:16:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA29228 for ports-outgoing; Wed, 17 Dec 1997 10:16:54 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from kpgwy.kpscal.org (kpgwy.kpscal.org [167.117.0.140]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id KAA29221 for ; Wed, 17 Dec 1997 10:16:50 -0800 (PST) (envelope-from Brian.J.Gallucci@kp.org) Received: from laurel.kp.org ([206.18.242.145]) by kpgwy.kpscal.org (8.6.9/8.6.9) with ESMTP id KAA22575 for ; Wed, 17 Dec 1997 10:17:00 -0800 Received: from gren-Exch-1 by laurel.kp.org; Wed, 17 Dec 1997 10:09:18 -0800 Received: by gren-exch-1.kpscal.org with SMTP (Microsoft Exchange Server Internet Mail Connector Version 4.0.994.63) id <01BD0AD4.C2D5D4E0@gren-exch-1.kpscal.org>; Wed, 17 Dec 1997 10:15:55 -0800 Message-ID: <01BD0AD4.C2D5D4E0@gren-exch-1.kpscal.org> From: "Gallucci,Brian J" To: "'ports@FreeBSD.org'" Subject: Help! Date: Wed, 17 Dec 1997 10:15:57 -0800 X-Mailer: Microsoft Exchange Server Internet Mail Connector Version 4.0.994.63 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I'm running 2.2.5,,If I install the ports do I need to install the packages? I'm trying to install the PACKAGES from the BSD CDROM and it tells me that the files could not be found..But if I look at the cdrom I can see all of the files..It open the INDEX file fine,,just when I select the packages,,It's saying there not there...HELP PLEASE..Brian Gallucci Brian Gallucci Kaiser Permanente - Information Technology, Desktop and Network Systems Specialist 1850 California Avenue Corona, CA 91719 8*395-2528 Pgr. 909-343-6241 Fax 909-270-1225 E-Mail: Brian.J.Gallucci@kp.org From owner-freebsd-ports Wed Dec 17 10:59:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA02260 for ports-outgoing; Wed, 17 Dec 1997 10:59:30 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from kuma.web.net (root@kuma.web.net [192.139.37.6]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id KAA02255 for ; Wed, 17 Dec 1997 10:59:25 -0800 (PST) (envelope-from woods@kuma.web.net) Received: by kuma.web.net via sendmail with stdio for freebsd-ports@FreeBSD.ORG (/\##/\ Smail3.1.30.12.0 #30.4 built 4-jul-95) id ; Wed, 17 Dec 97 14:01:27 -0500 (EST) Message-Id: Date: Wed, 17 Dec 97 14:01:27 -0500 (EST) From: woods@kuma.web.net (Greg A. Woods) To: freebsd-ports@FreeBSD.ORG Subject: clarification of RESTRICTED flag for ports ma be apropriate Reply-To: woods@planix.com (Greg A. Woods) X-Mailer: ViewMail (vm) Version 5.96 (beta) with GNU Emacs 19.28.1 (sparc-sun-sunos4.1.3) of Fri Mar 10 1995 on kuma Organization: Planix, Inc.; Toronto, Ontario; Canada Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I was given the following reference about ports package controls: > There are already NO_CDROM, NO_PACKAGE and RESTRICTED variables that > can be set in a package's Makefile. Here's how they are described in > the FreeBSD documentation (see FreeBSD-current/doc/handbook/porting.sgml>): > > > If the port has a `do not sell for profit' type of > license, set the variable NO_CDROM. We will make > sure such ports won't go into the CD-ROM come release time. > The distfile and package will still be available via ftp. > > If the resulting package needs to be built uniquely for > each site, or the resulting binary package can't be distributed > due to licensing; set the variable NO_PACKAGE. > We will make sure such packages won't go on the ftp site, nor > into the CD-ROM come release time. The distfile will still be > included on both however. > > If the port has legal restrictions on who can use it > (e.g., crypto stuff) or has a `no commercial use' license, > set the variable RESTRICTED to be the string > describing the reason why. For such ports, the > distfiles/packages will not be available even from our ftp > sites. > This doesn't do a very good job of identifying the difference between "commercial use" in the sense of copyright license sense and the load-and-run software sense. Since this misconception seems to endure forever it would probably be a good idea for the above paragraph to make a more accurate distinction. The RESTRICTED flag is really only applicable to legal restrictions outside normal copyright licensing. Eg. trade secrets, fully restricted copyright (usually also covered by trade secret), export laws, etc. If the package is freely re-distributable source code but has a 'no commercial use' copyright license then it should *NOT* be listed as RESTRICTED. NO_CDROM would suffice (unless they don't want binaries distributed, in which case NO_PACKAGE would be OK, though in reality I don't believe there's been any test of whether a copyright license can truely restrict binary re-distribution when source is freely available). The term "use" in copyright law means *copying*, and almost always implies "for commercial gain", though there is some protection (at least in Canada) for defamation of character. In essence any copyright license on "free" software (or shareware for that matter) is extremely difficult to defend, at least in Canada and the USA because it's next to impossible to show any concrete damages. Perhaps if someone re-distributed a badly hacked version of your code and as a result you lost your current job then you'd have a case, but otherwise I'd bet the best you could get would be a cease&desist order. -- Greg A. Woods +1 416 443-1734 VE3TCP robohack!woods Planix, Inc. ; Secrets Of The Weird From owner-freebsd-ports Wed Dec 17 11:10:21 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA03165 for ports-outgoing; Wed, 17 Dec 1997 11:10:21 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA03155 for ; Wed, 17 Dec 1997 11:10:17 -0800 (PST) (envelope-from ambrisko@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id LAA06253; Wed, 17 Dec 1997 11:03:21 -0800 (PST) Received: from UNKNOWN(), claiming to be "crab.whistle.com" via SMTP by alpo.whistle.com, id smtpd006250; Wed Dec 17 11:03:17 1997 Received: (from ambrisko@localhost) by crab.whistle.com (8.8.8/8.6.12) id LAA09398; Wed, 17 Dec 1997 11:00:18 -0800 (PST) From: Doug Ambrisko Message-Id: <199712171900.LAA09398@crab.whistle.com> Subject: Re: socks5 port In-Reply-To: <199712170409.VAA01807@harmony.village.org> from Warner Losh at "Dec 16, 97 09:09:13 pm" To: imp@village.org (Warner Losh) Date: Wed, 17 Dec 1997 11:00:18 -0800 (PST) Cc: ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL29 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Warner Losh writes: | I tried to contact the MAINTAINER for the socks 5 port, but | it bounced. Anybody know who I should contact? Or I could just take | it over myself if ambrisko is no longer able to do it himself. As you | can tell, I've upgraded it to v1.0r3 and have done the needed hacks | for OpenBSD's port tree (the ports are identical between the two). It seems my ISP deleted ambrisko.roble.com in the past year. I didn't notice it since ambrisko.com works. So mail to ambrisko@ambrisko.com works. Feel free to become the maintainer since the hard part is over and the features are pretty static now (ie. getting LD_PRELOAD into FreeBSD and fixing any FreeBSD strangeness is resolved and submitted back into the distribution ... now thing just work). Also the licensing issues keep changing and I'm no lawyer. | ------- Forwarded Message | | I'm in the process of upgrading the FreeBSD socks5 port from | v1.0r2 to v1.0r3, which seems to be the latest version. Is there any | reason to not use that version, assuming that it works? Are you still | actively maintaining this port? Are you interested in patches, or | would you like me to commit the patches I come up with (so far they | are really minor, like two lines in the Makefile and a new files/md5). Feel free to commit the changes and if you make any changes just send them of to NEC. They are pretty good about rolling them in for the next release. | At the same time, I'm trying to port this to OpenBSD's new ports | system as well. I think that it should just build there. Any ideas? Does OpenBSD support LD_PRELOAD? The beauty of socks5 is the ability to do "runsocks ". This uses LD_PRELOAD to shim in the libsocks lib to intercept shared library calls to libc and socks'ify them. If not take a look at FreeBSD's ld.so to see how it was done. The other thing to watch out for is how the send/sendto is implemented. I recall that send was a libc wrapper around sendto or vis-versa. This caused looping problems in the shim layer. So there is detection code in the shim to prevent this. This was the biggest change that I had to work with Dave about. A good test it to set LD_PRELOAD in your .login (or equivalant) and run stuff. "vi" was a good test program as is emacs in which I tested to verify gnus worked over socks. I also tried perl as well. The only other warning is to make sure you keep libc & libsocks in sync with respect to headers. If you run into any troubles let me know, I can probably point you in the right direction. | Many thanks for the original port. Your welcome. Doug A. From owner-freebsd-ports Wed Dec 17 12:00:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA07936 for ports-outgoing; Wed, 17 Dec 1997 12:00:03 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA07899; Wed, 17 Dec 1997 12:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 17 Dec 1997 12:00:01 -0800 (PST) Resent-Message-Id: <199712172000.MAA07899@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, giffunip@asme.org Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA07340; Wed, 17 Dec 1997 11:53:12 -0800 (PST) (envelope-from nobody) Message-Id: <199712171953.LAA07340@hub.freebsd.org> Date: Wed, 17 Dec 1997 11:53:12 -0800 (PST) From: giffunip@asme.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5331: New math port: xldlas-0.85 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5331 >Category: ports >Synopsis: New math port: xldlas-0.85 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 17 12:00:00 PST 1997 >Last-Modified: >Originator: Pedro Giffuni S. >Organization: U. Nacional de Colombia >Release: 2.2.5R >Environment: >Description: A nice statistical utility for X that uses Xforms. >How-To-Repeat: >Fix: xldlas.tar.gz in incoming >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 18 00:43:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA01801 for ports-outgoing; Thu, 18 Dec 1997 00:43:30 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from home.dragondata.com (toasty@home.dragondata.com [204.137.237.2]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA01790 for ; Thu, 18 Dec 1997 00:43:25 -0800 (PST) (envelope-from toasty@home.dragondata.com) Received: (from toasty@localhost) by home.dragondata.com (8.8.5/8.8.5) id CAA12149 for ports@freebsd.org; Thu, 18 Dec 1997 02:43:24 -0600 (CST) From: Kevin Day Message-Id: <199712180843.CAA12149@home.dragondata.com> Subject: lsof unavailable... To: ports@freebsd.org Date: Thu, 18 Dec 1997 02:43:24 -0600 (CST) X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk None of the ftp sites listed for the lsof port have the file anymore... (not even the ftp.freebsd.org site).. Just passing it along.... Kevin From owner-freebsd-ports Thu Dec 18 01:25:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA04528 for ports-outgoing; Thu, 18 Dec 1997 01:25:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-53.ix.netcom.com [207.93.143.181]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA04515 for ; Thu, 18 Dec 1997 01:25:00 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id BAA06971; Thu, 18 Dec 1997 01:24:54 -0800 (PST) Date: Thu, 18 Dec 1997 01:24:54 -0800 (PST) Message-Id: <199712180924.BAA06971@silvia.HIP.Berkeley.EDU> To: toasty@home.dragondata.com CC: ports@freebsd.org In-reply-to: <199712180843.CAA12149@home.dragondata.com> (message from Kevin Day on Thu, 18 Dec 1997 02:43:24 -0600 (CST)) Subject: Re: lsof unavailable... From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * None of the ftp sites listed for the lsof port have the file anymore... * * (not even the ftp.freebsd.org site).. I don't know about the other sites, but it is certainly there at ftp.freebsd.org (I just checked). Satoshi From owner-freebsd-ports Thu Dec 18 01:46:38 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA05778 for ports-outgoing; Thu, 18 Dec 1997 01:46:38 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from home.dragondata.com (toasty@home.dragondata.com [204.137.237.2]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA05773 for ; Thu, 18 Dec 1997 01:46:34 -0800 (PST) (envelope-from toasty@home.dragondata.com) Received: (from toasty@localhost) by home.dragondata.com (8.8.5/8.8.5) id DAA13632; Thu, 18 Dec 1997 03:46:32 -0600 (CST) From: Kevin Day Message-Id: <199712180946.DAA13632@home.dragondata.com> Subject: Re: lsof unavailable... In-Reply-To: <199712180924.BAA06971@silvia.HIP.Berkeley.EDU> from Satoshi Asami at "Dec 18, 97 01:24:54 am" To: asami@cs.berkeley.edu (Satoshi Asami) Date: Thu, 18 Dec 1997 03:46:32 -0600 (CST) Cc: ports@freebsd.org X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > * None of the ftp sites listed for the lsof port have the file anymore... > * > * (not even the ftp.freebsd.org site).. > > I don't know about the other sites, but it is certainly there at > ftp.freebsd.org (I just checked). > > Satoshi > >> lsof_4.15_W.tar.gz doesn't seem to exist on this system. >> Attempting to fetch from ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/. fetch: pub/tools/unix/lsof/lsof_4.15_W.tar.gz: cannot get remote modification time fetch: ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/lsof_4.15_W.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.cert.dfn.de/pub/tools/admin/lsof/. fetch: pub/tools/admin/lsof/lsof_4.15_W.tar.gz: cannot get remote modification time fetch: ftp://ftp.cert.dfn.de/pub/tools/admin/lsof/lsof_4.15_W.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.auscert.org.au/pub/mirrors/vic.cc.purdue.edu/lsof/. fetch: pub/mirrors/vic.cc.purdue.edu/lsof/lsof_4.15_W.tar.gz: cannot get remote modification time fetch: ftp://ftp.auscert.org.au/pub/mirrors/vic.cc.purdue.edu/lsof/lsof_4.15_W.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.web.ad.jp/pub/UNIX/tools/lsof/. fetch: pub/UNIX/tools/lsof/lsof_4.15_W.tar.gz: cannot get remote modification time fetch: ftp://ftp.web.ad.jp/pub/UNIX/tools/lsof/lsof_4.15_W.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.sunet.se/pub/unix/admin/lsof/. fetch: pub/unix/admin/lsof/lsof_4.15_W.tar.gz: cannot get remote modification time fetch: ftp://ftp.sunet.se/pub/unix/admin/lsof/lsof_4.15_W.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.freebsd.org/pub/FreeBSD/distfiles//. fetch: pub/FreeBSD/distfiles//lsof_4.15_W.tar.gz: cannot get remote modification time fetch: ftp://ftp.freebsd.org/pub/FreeBSD/distfiles//lsof/lsof_4.15_W.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles and try again. *** Error code 1 Stop. I just cvsup'ed the ports about two hours ago, so everything *should* be current, right? Kevin From owner-freebsd-ports Thu Dec 18 01:56:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA06307 for ports-outgoing; Thu, 18 Dec 1997 01:56:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-53.ix.netcom.com [207.93.143.181]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA06301 for ; Thu, 18 Dec 1997 01:56:02 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id BAA07062; Thu, 18 Dec 1997 01:55:56 -0800 (PST) Date: Thu, 18 Dec 1997 01:55:56 -0800 (PST) Message-Id: <199712180955.BAA07062@silvia.HIP.Berkeley.EDU> To: toasty@home.dragondata.com CC: ports@freebsd.org In-reply-to: <199712180946.DAA13632@home.dragondata.com> (message from Kevin Day on Thu, 18 Dec 1997 03:46:32 -0600 (CST)) Subject: Re: lsof unavailable... From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * fetch: ftp://ftp.freebsd.org/pub/FreeBSD/distfiles//lsof/lsof_4.15_W.tar.gz: FTP error: * fetch: File unavailable (e.g., file not found, no access) * I just cvsup'ed the ports about two hours ago, so everything *should* be * current, right? That could be fetch. Try rebuilding it from today's source. Also, get the latest bsd.port.mk. It has a hack to disallow the dreaded double-slash. Satoshi From owner-freebsd-ports Thu Dec 18 02:40:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA08380 for ports-outgoing; Thu, 18 Dec 1997 02:40:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA08368; Thu, 18 Dec 1997 02:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 18 Dec 1997 02:40:02 -0800 (PST) Resent-Message-Id: <199712181040.CAA08368@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, sada@ail-inc.co.jp Received: from ail.ail-inc.co.jp (ail.ail-inc.co.jp [210.145.48.250]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA08153 for ; Thu, 18 Dec 1997 02:34:30 -0800 (PST) (envelope-from sada@ail-inc.co.jp) Received: from xl.local.ail-inc.co.jp (amygdala.ail-inc.co.jp [210.145.48.251]) by ail.ail-inc.co.jp (8.8.5/3.5Wpl7) with ESMTP id TAA27040 for ; Thu, 18 Dec 1997 19:34:13 +0900 (JST) Received: (from sada@localhost) by xl.local.ail-inc.co.jp (8.8.7/3.5Wpl797082210) id TAA19695; Thu, 18 Dec 1997 19:38:07 +0900 (JST) Message-Id: <199712181034.TAA27040@ail.ail-inc.co.jp> Date: Thu, 18 Dec 1997 19:38:07 +0900 (JST) From: SADA Kenji Reply-To: sada@ail-inc.co.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5334: Fix patches for netscape[3|4-[navigator|communicator]] Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5334 >Category: ports >Synopsis: Fix patches for netscape[3|4-[navigator|communicator]] >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 18 02:40:01 PST 1997 >Last-Modified: >Originator: SADA Kenji >Organization: Nagoya >Release: FreeBSD 2.2-STABLE i386 >Environment: XFree86 3.3.1 >Description: I've applied patches to the Netscape browsers' ports. These will work as * do ``pkg_delete'' complete * make package and ``pkg_install'' correct. Patches are for ``pkg/PLIST'' files. >How-To-Repeat: >Fix: for netscape-3.04/pkg/PLIST - begin 644 netscape-3.04-PLIST.diff.gz M'XL(`/#DF#0``UV,30^",`R&S^Y7]#P=HZ`@.Y'HQ<08HQR\XEB49#`S0/^^ M&\;XT:1)G[=/2RF%_79S+`)CZ\NDN`ZP,W>`%,),A+&((\`L2PAC[.6-REI) MP"5@*A:1F,=>20G]+<^`X0PC&-%_\+@`-S$"D,M'!7SH+#\A'A*7Z/KL9][J MCJ_^V'50U99,W9UI&M7VD#NVS;#L0_N M;.8;"*&&&VRS`RQH#"X&UP\FTV"*&\1L?W4/KN7#J0&(6.$4Y,A24I4">?;( M,ZY@3E_55KP`)'?E[>)Q MV9VN5_?+]99X(DUN_E,H[61H"F3E7CKSMMQV2K!+I$3QE5A7,,\84(Y;*^G54;Y_GL@ M,R)HHDNK(B;J7MI\X0`(T#5X@!--FRJ%* M6K2]_=(RMK6L*%$D._X_.[:#($"OR\5F&VG#T]Y**S0#AM`8D=&43*;)$)') M9-3'&)^XWC8K:X34R-#=AQ,2-$_U1G$X0O6CRH_#,7(6]Q%ZA`]70BB$[0'= MN/L\8%K*4G%&"VUPTF:::L4K*"RC.51DJ6K62(0/#>WV4KOX1_#=3\+@;?XT M6\W;T>7B9;[>7(37WTY$]_].3^*[D,3WOQL@<1*2)#YOH5',0,IM83[;\6:_ MT3")=ERU(4FY<$XU[YX;-VM#M3D(T:$Y)P.1_PDXXPW;C!K8>Y>&@E$WHS=/ MCSRE_KP$:T&EWGRF)?BR3*L#&,7\>9EK"]Z],"T$W1GJR5_'.M1W>J0#)JC; 5DKV"=$BY*%.N.A+[7U13:79)!``` ` end - >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 18 08:10:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA28555 for ports-outgoing; Thu, 18 Dec 1997 08:10:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA28549; Thu, 18 Dec 1997 08:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 18 Dec 1997 08:10:02 -0800 (PST) Resent-Message-Id: <199712181610.IAA28549@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Received: from waru.life.nthu.edu.tw (waru.life.nthu.edu.tw [140.114.98.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id IAA27945 for ; Thu, 18 Dec 1997 08:00:13 -0800 (PST) (envelope-from frankch@waru.life.nthu.edu.tw) Received: (from frankch@localhost) by waru.life.nthu.edu.tw (8.8.8/8.8.7) id XAA17407; Thu, 18 Dec 1997 23:59:41 +0800 (CST) Message-Id: <199712181559.XAA17407@waru.life.nthu.edu.tw> Date: Thu, 18 Dec 1997 23:59:41 +0800 (CST) From: frankch@waru.life.nthu.edu.tw Reply-To: frankch@waru.life.nthu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5336: New port graphics/aview Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5336 >Category: ports >Synopsis: New port graphics/aview >Confidential: yes >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 18 08:10:01 PST 1997 >Last-Modified: >Originator: Frank Chen Hsiung Chan >Organization: Department of Life Science, National Tsing Hua University, Hsinchu, Taiwan >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD 2.2.5 STABLE >Description: Aview is a graphics viewer which utilize devel/aalib (should be graphics/aalib). It display graphics using ascii texts. This version works under X and slang (using libslang). Committers: please note the dependancies, I make it depend on devel/aalib, you may have to change it to graphics/aalib according to the aalib category state. Right now aalib is still in devel category. Should I make another send-pr to promote the devel/aalib toward graphics/aalib change? >How-To-Repeat: >Fix: The port tarball in in ftp://ftp.freebsd.org/pub/FreeBSD/incoming with the file name aview-port.tar.gz. >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 18 09:10:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA03933 for ports-outgoing; Thu, 18 Dec 1997 09:10:09 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA03905; Thu, 18 Dec 1997 09:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 18 Dec 1997 09:10:02 -0800 (PST) Resent-Message-Id: <199712181710.JAA03905@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Received: from waru.life.nthu.edu.tw (root@waru.life.nthu.edu.tw [140.114.98.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA03194 for ; Thu, 18 Dec 1997 09:01:58 -0800 (PST) (envelope-from frankch@waru.life.nthu.edu.tw) Received: (from frankch@localhost) by waru.life.nthu.edu.tw (8.8.8/8.8.7) id AAA17871; Fri, 19 Dec 1997 00:27:39 +0800 (CST) Message-Id: <199712181627.AAA17871@waru.life.nthu.edu.tw> Date: Fri, 19 Dec 1997 00:27:39 +0800 (CST) From: frankch@waru.life.nthu.edu.tw Reply-To: frankch@waru.life.nthu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5338: slight change in devel/libslang port Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5338 >Category: ports >Synopsis: change in devel/libslang port >Confidential: yes >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 18 09:10:01 PST 1997 >Last-Modified: >Originator: Frank Chen Hsiung Chan >Organization: Depart of Life Science, National Tsing Hua University, HsinChu, Taiwan >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD 2.2.5 STABLE >Description: The libslang port should be linked to libtermcap. Under normal condition, any app that utilize libslang should also link to libtermcap. Unfortunately, It's difficult to check all the apps in ports collection which depend on libslang. Even we could do that, many ports do not explicitly specify the dependancy. For example, aalib. Aalib works with X and slang, yet the slang part is not working due to the dependancy and libtermcap problem. >How-To-Repeat: >Fix: The following patch modify devel/libslang/patch/patch-aa. It add ${TCAPLIB} in the building of shared libslang.so. I think this also change the content diff into a unified diff. xxxxxxxxxxxxxxxxxxxxxxxxxxx cut here xxxxxxxxxxxxxxxxxxxxxxxxxxxx --- patches/patch-aa.orig Fri Dec 19 00:03:37 1997 +++ patches/patch-aa Fri Dec 19 00:09:28 1997 @@ -1,76 +1,52 @@ -*** src/Makefile.in.orig Tue Jan 21 20:21:34 1997 ---- src/Makefile.in Mon Jan 27 23:49:32 1997 -*************** -*** 2,16 **** - #--------------------------------------------------------------------------- - # ANSI C compiler - #--------------------------------------------------------------------------- -! CC = @CC@ -! CFLAGS = @CFLAGS@ - LDFLAGS = @LDFLAGS@ - #--------------------------------------------------------------------------- - # ELF specific (Linux) - #--------------------------------------------------------------------------- -! ELF_CC = gcc -! ELF_CFLAGS = -O2 -fno-strength-reduce -fPIC -! ELF_LINK = gcc -shared -Wl,-lm,-t,-soname# - #--------------------------------------------------------------------------- - # Set these values to ABSOLUTE path names - #--------------------------------------------------------------------------- ---- 2,16 ---- - #--------------------------------------------------------------------------- - # ANSI C compiler - #--------------------------------------------------------------------------- -! #CC = @CC@ -! #CFLAGS = @CFLAGS@ - LDFLAGS = @LDFLAGS@ - #--------------------------------------------------------------------------- - # ELF specific (Linux) - #--------------------------------------------------------------------------- -! ELF_CC = $(CC) -! ELF_CFLAGS = $(CFLAGS) -DPIC -fpic -! ELF_LINK = ld -Bshareable - #--------------------------------------------------------------------------- - # Set these values to ABSOLUTE path names - #--------------------------------------------------------------------------- -*************** -*** 93,103 **** - # cd $(ELFDIR); $(RM) $(ELFLIB_MAJOR); $(LN) $(ELFLIB_MAJOR_MINOR) $(ELFLIB_MAJOR) - $(ELFDIR_ELF_LIB): $(ELFDIR) $(ELFOBJS) - -$(RM) $(ELFDIR_ELF_LIB) -! cd $(ELFDIR); $(ELF_LINK),$(ELFLIB_MAJOR) -o $(ELFLIB_MAJOR_MINOR) $(OFILES) -! cd $(ELFDIR); $(RM) $(ELFLIB); $(LN) $(ELFLIB_MAJOR) $(ELFLIB) - @echo "" - @echo $(ELFLIB_MAJOR_MINOR) created in $(ELFDIR). -- @echo The link $(ELFLIB) to $(ELFLIB_MAJOR_MINOR) was also created. - @echo "" - $(OBJDIR) : - -$(MKDIR) $(OBJDIR) ---- 93,101 ---- - # cd $(ELFDIR); $(RM) $(ELFLIB_MAJOR); $(LN) $(ELFLIB_MAJOR_MINOR) $(ELFLIB_MAJOR) - $(ELFDIR_ELF_LIB): $(ELFDIR) $(ELFOBJS) - -$(RM) $(ELFDIR_ELF_LIB) -! cd $(ELFDIR); $(ELF_LINK) -o $(ELFLIB_MAJOR_MINOR) $(OFILES) - @echo "" - @echo $(ELFLIB_MAJOR_MINOR) created in $(ELFDIR). - @echo "" - $(OBJDIR) : - -$(MKDIR) $(OBJDIR) -*************** -*** 124,138 **** - install-elf: install elf $(install_lib_dir) $(install_include_dir) $(ELFDIR_ELF_LIB) - $(INSTALL_DATA) $(SRCDIR)/slang.h $(install_include_dir) - $(INSTALL_DATA) $(SRCDIR)/slcurses.h $(install_include_dir) -- -$(RM) $(install_lib_dir)/$(ELFLIB) -- -$(RM) $(install_lib_dir)/$(ELFLIB_MAJOR) - @echo installing $(ELFLIB_MAJOR_MINOR) in $(install_lib_dir) - $(INSTALL_DATA) $(ELFDIR_ELF_LIB) $(install_lib_dir) -- @echo creating symbolic links to $(ELFLIB_MAJOR_MINOR) -- -cd $(install_lib_dir); $(LN) $(ELFLIB_MAJOR_MINOR) $(ELFLIB) - @echo "" - @echo $(ELFLIB_MAJOR_MINOR) created in $(install_lib_dir). -- @echo The link $(ELFLIB) to $(ELFLIB_MAJOR_MINOR) was also created. - @echo "" - install-links: - -$(RM) $(install_lib_dir)/$(ELFLIB) ---- 122,131 ---- +--- Makefile.in.orig Wed Jan 22 01:21:34 1997 ++++ Makefile.in Fri Dec 19 00:09:11 1997 +@@ -2,15 +2,15 @@ + #--------------------------------------------------------------------------- + # ANSI C compiler + #--------------------------------------------------------------------------- +-CC = @CC@ +-CFLAGS = @CFLAGS@ ++#CC = @CC@ ++#CFLAGS = @CFLAGS@ + LDFLAGS = @LDFLAGS@ + #--------------------------------------------------------------------------- + # ELF specific (Linux) + #--------------------------------------------------------------------------- +-ELF_CC = gcc +-ELF_CFLAGS = -O2 -fno-strength-reduce -fPIC +-ELF_LINK = gcc -shared -Wl,-lm,-t,-soname# ++ELF_CC = $(CC) ++ELF_CFLAGS = $(CFLAGS) -DPIC -fpic ++ELF_LINK = ld -Bshareable + #--------------------------------------------------------------------------- + # Set these values to ABSOLUTE path names + #--------------------------------------------------------------------------- +@@ -93,11 +93,9 @@ + # cd $(ELFDIR); $(RM) $(ELFLIB_MAJOR); $(LN) $(ELFLIB_MAJOR_MINOR) $(ELFLIB_MAJOR) + $(ELFDIR_ELF_LIB): $(ELFDIR) $(ELFOBJS) + -$(RM) $(ELFDIR_ELF_LIB) +- cd $(ELFDIR); $(ELF_LINK),$(ELFLIB_MAJOR) -o $(ELFLIB_MAJOR_MINOR) $(OFILES) +- cd $(ELFDIR); $(RM) $(ELFLIB); $(LN) $(ELFLIB_MAJOR) $(ELFLIB) ++ cd $(ELFDIR); $(ELF_LINK) -o $(ELFLIB_MAJOR_MINOR) $(OFILES) $(TCAPLIB) + @echo "" + @echo $(ELFLIB_MAJOR_MINOR) created in $(ELFDIR). +- @echo The link $(ELFLIB) to $(ELFLIB_MAJOR_MINOR) was also created. + @echo "" + $(OBJDIR) : + -$(MKDIR) $(OBJDIR) +@@ -124,15 +122,10 @@ + install-elf: install elf $(install_lib_dir) $(install_include_dir) $(ELFDIR_ELF_LIB) + $(INSTALL_DATA) $(SRCDIR)/slang.h $(install_include_dir) + $(INSTALL_DATA) $(SRCDIR)/slcurses.h $(install_include_dir) +- -$(RM) $(install_lib_dir)/$(ELFLIB) +- -$(RM) $(install_lib_dir)/$(ELFLIB_MAJOR) + @echo installing $(ELFLIB_MAJOR_MINOR) in $(install_lib_dir) + $(INSTALL_DATA) $(ELFDIR_ELF_LIB) $(install_lib_dir) +- @echo creating symbolic links to $(ELFLIB_MAJOR_MINOR) +- -cd $(install_lib_dir); $(LN) $(ELFLIB_MAJOR_MINOR) $(ELFLIB) + @echo "" + @echo $(ELFLIB_MAJOR_MINOR) created in $(install_lib_dir). +- @echo The link $(ELFLIB) to $(ELFLIB_MAJOR_MINOR) was also created. + @echo "" + install-links: + -$(RM) $(install_lib_dir)/$(ELFLIB) xxxxxxxxxxxxxxxxxxxxxxxxxxxx cut here xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 18 09:10:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA03942 for ports-outgoing; Thu, 18 Dec 1997 09:10:10 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA03921; Thu, 18 Dec 1997 09:10:06 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 18 Dec 1997 09:10:06 -0800 (PST) Resent-Message-Id: <199712181710.JAA03921@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Received: from waru.life.nthu.edu.tw (frankch@waru.life.nthu.edu.tw [140.114.98.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA03417 for ; Thu, 18 Dec 1997 09:05:19 -0800 (PST) (envelope-from frankch@waru.life.nthu.edu.tw) Received: (from frankch@localhost) by waru.life.nthu.edu.tw (8.8.8/8.8.7) id BAA27168; Fri, 19 Dec 1997 01:01:40 +0800 (CST) Message-Id: <199712181701.BAA27168@waru.life.nthu.edu.tw> Date: Fri, 19 Dec 1997 01:01:40 +0800 (CST) From: frankch@waru.life.nthu.edu.tw Reply-To: frankch@waru.life.nthu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5339: devel/aalib should be graphics/aalib, also add dependancy Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5339 >Category: ports >Synopsis: add dependancy to libslang, change category to graphics >Confidential: yes >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 18 09:10:04 PST 1997 >Last-Modified: >Originator: Frank Chen Hsiung Chan >Organization: Department of Life Science, National Tsing Hua University, HsinChu, Taiwan >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD 2.2.5 STABLE >Description: Aalib port should be in graphics category instead of the current devel category. Also aalib depends on linslang (though it will check the presence of X and libslang, it is a bit meanless to use aalib under X). It will work without libslang, but then it would be meanless to use it. >How-To-Repeat: >Fix: the patch below change the category, and add the dependancy to libslang. Also a small fix to slang header file location. xxxxxxxxxxxxxxxxxxxxxx cut here xxxxxxxxxxxxxxxxxxxxxxxxxxx --- Makefile.orig Fri Dec 19 00:29:25 1997 +++ Makefile Fri Dec 19 00:30:53 1997 @@ -7,10 +7,12 @@ # DISTNAME= aalib-1.1.6 -CATEGORIES= devel graphics +CATEGORIES= graphics devel MASTER_SITES= ftp://ftp.ta.jcu.cz/pub/aa/development/ MAINTAINER= andy@icc.surw.chel.su + +LIB_DEPENDS= slang\\.0\\.:${PORTSDIR}/devel/libslang WRKSRC= ${WRKDIR}/aalib-1.1 GNU_CONFIGURE= yes --- patches/patch-ab.orig Fri Dec 19 00:59:51 1997 +++ patches/patch-ab Fri Dec 19 00:57:25 1997 @@ -0,0 +1,22 @@ +--- configure.orig Fri Dec 19 00:55:02 1997 ++++ configure Fri Dec 19 00:56:55 1997 +@@ -2844,7 +2844,7 @@ + if test "x$ac_cv_lib_slang_SLsmg_init_smg" = xyes; then + echo "$ac_t""Found slang on /usr/local/include/slang.h" 1>&6 + LIBS="$LIBS " +- CFLAGS="$CFLAGS -I/usr/local/include/slang " ++ CFLAGS="$CFLAGS -I/usr/local/include " + slang_driver=true + search_slang=false + cat >> confdefs.h <<\EOF +--- configure.in.orig Fri Dec 19 00:53:58 1997 ++++ configure.in Fri Dec 19 00:54:55 1997 +@@ -245,7 +245,7 @@ + ]) + AC_SLANG(/usr/include, slang.h, , -I/usr/include/slang , "slang on /usr/include") + AC_SLANG(/usr/include/slang, slang.h, , -I/usr/include/slang , "slang on /usr/include/slang") +- AC_SLANG(/usr/local/include, slang.h, , -I/usr/local/include/slang , "slang on /usr/local/include") ++ AC_SLANG(/usr/local/include, slang.h, , -I/usr/local/include , "slang on /usr/local/include") + AC_SLANG(/usr/local/include/slang, slang.h, , -I/usr/local/include/slang , "slang on /usr/local/include/slang") + if test "$slang_driver" = true; then + if test "$force_curses_driver" = false; then xxxxxxxxxxxxxxxxxxxxxx cut here xxxxxxxxxxxxxxxxxxxxxxxxxxx >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 18 19:20:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA15524 for ports-outgoing; Thu, 18 Dec 1997 19:20:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA15497; Thu, 18 Dec 1997 19:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 18 Dec 1997 19:20:02 -0800 (PST) Resent-Message-Id: <199712190320.TAA15497@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, nobu@psrc.isac.co.jp Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA15333; Thu, 18 Dec 1997 19:17:01 -0800 (PST) (envelope-from nobody) Message-Id: <199712190317.TAA15333@hub.freebsd.org> Date: Thu, 18 Dec 1997 19:17:01 -0800 (PST) From: nobu@psrc.isac.co.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5341: followup to newer version of ports/misc/fd Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5341 >Category: ports >Synopsis: followup to newer version of ports/misc/fd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 18 19:20:01 PST 1997 >Last-Modified: >Originator: Nobuhiro Yasutomi >Organization: ISAC, Inc. >Release: 2.2.2 >Environment: FreeBSD aquarius.psrc.isac.co.jp 2.2.2-RELEASE FreeBSD 2.2.2-RELEASE #0: Thu Jun 12 09:55:08 JST 1997 nobu@aquarius.psrc.isac.co.jp:/usr/src/sys/compile/AQUA i386 >Description: Newer version (1.03f) was released. Then ports/misc/fd files please update as following diffs. >How-To-Repeat: >Fix: --- Makefile~ Fri Dec 19 11:33:05 1997 +++ Makefile Fri Dec 19 11:33:27 1997 @@ -1,13 +1,13 @@ # New ports collection makefile for: FD -# Version required: 1.03e +# Version required: 1.03f # Date created: 20 Feb 1996 # Whom: Nobuhiro Yasutomi # # $Id: Makefile,v 1.7 1997/11/13 20:19:15 max Exp $ # -DISTNAME= FD-1.03e -PKGNAME= fd-1.03e +DISTNAME= FD-1.03f +PKGNAME= fd-1.03f CATEGORIES= misc MASTER_SITES= ftp://ftp.ics.es.osaka-u.ac.jp/pub/FDclone/ --- files/Guarant~ Fri Nov 14 08:31:15 1997 +++ files/Guarant Fri Dec 19 11:32:15 1997 @@ -1,7 +1,7 @@ [in English] THE GUARANTEE WITH DISTRIBUTING FDclone BINARY PACKAGE -Object Program: FDclone Ver.1.03e +Object Program: FDclone Ver.1.03f Platform: FreeBSD Distributor: Nobuhiro Yasutomi (by E-mail): nobu@psrc.isac.co.jp @@ -22,7 +22,7 @@ [in Japanese ({)] FDclone oCiЕzɊւۏؕ -Ώ: FDclone Ver.1.03e +Ώ: FDclone Ver.1.03f ‹: FreeBSD ЕzӔC: x L_ (A): nobu@psrc.isac.co.jp >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 18 23:10:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA29175 for ports-outgoing; Thu, 18 Dec 1997 23:10:02 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA29167; Thu, 18 Dec 1997 23:10:01 -0800 (PST) (envelope-from gnats) Date: Thu, 18 Dec 1997 23:10:01 -0800 (PST) Message-Id: <199712190710.XAA29167@hub.freebsd.org> To: freebsd-ports Cc: From: Don Croyle Subject: Re: ports/5245: new port, bugsx game Reply-To: Don Croyle Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/5245; it has been noted by GNATS. From: Don Croyle To: freebsd-gnats-submit@freebsd.org, croyle@gelemna.ft-wayne.in.us Cc: Subject: Re: ports/5245: new port, bugsx game Date: Fri, 19 Dec 1997 02:01:13 -0500 Minor updates: I forgot to strip the binary, and as long as I was fixing that decided to clear up a typo in the Imakefile. Apply the following patch to ftp://ftp.freebsd.org/pub/FreeBSD/incoming/bugsx.tar.gz or pick up the updated tarball at http://www.infonex.com/~dacroyle/ports/bugsx.tar.gz begin 644 bugsx.diff.gz M4$L#!`H``````,,KDB.FT5.$V0$``-D!```-`!4`8G5GE54 M"0`#+ON8-/X:FC15>`0``````!^+"`@N^Y@T``-B=6=S>"YD:69F`-62;4^C M0!#'7\.GF(M-SFN[E(?:'N1ZB;9HT#MK`&/?&;ILZT8$PD.L&K^[LT!;C_/> M^>8V&V9V=OXS\!M"OEH!R>@E+,MUOE&2*!S\#N[9BD>L#NV.^&[QU/_]L0^G;OV[;%[YDTDLEG)/<"=)GE!>)P7J++P+.5%QE/HO%RY]JFS MP/H\WO7`K?"81F7(X,L?RVI(@:*BTPRW`[6OI MAH45/$/PM505-SHC\QWHOS0MX$,+B?X3N/H.=E\S:]8]$03GH1FADF1\+?DE M`X^E`#KHNIBC-JK+]H1HG]WJKXN9;Q/;;U`W,D;]H0Y-`(?YJ:LJ63WF)^<> M3+:T8;,L"QZATYAEQEB(=ITECVCBA.?XY:C\`OC;[96TI:2-DM9*VBCIOK%S M.?UU/;-%">)T#OWYU;>=,UAHVC938*Q9-%/X?UC0SV7Q!B```4$L%!@`````!``$`2````!D"```` !`'-X ` end From owner-freebsd-ports Thu Dec 18 23:44:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA01024 for ports-outgoing; Thu, 18 Dec 1997 23:44:23 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from acaxp (acaxp.physik.rwth-aachen.de [137.226.33.200]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id XAA00999; Thu, 18 Dec 1997 23:44:08 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from gilberto by acaxp; (5.65v3.2/1.1.8.2/17Mar96-1112AM) id AA28116; Fri, 19 Dec 1997 08:44:06 +0100 Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.8.8/8.6.9) id IAA20860; Fri, 19 Dec 1997 08:44:12 +0100 (MET) Message-Id: <19971219084412.46153@gil.physik.rwth-aachen.de> Date: Fri, 19 Dec 1997 08:44:12 +0100 From: Christoph Kukulies To: Stefan Esser Cc: "Christoph P. Kukulies" , ports@freebsd.org, freebsd-hackers@freebsd.org Subject: Re: Wine success story References: <199712170841.JAA20651@isdn-kukulies.dialup.rwth-aachen.de> <19971217235738.48757@mi.uni-koeln.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: <19971217235738.48757@mi.uni-koeln.de>; from Stefan Esser on Wed, Dec 17, 1997 at 11:57:38PM +0100 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id XAA01001 Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Wed, Dec 17, 1997 at 11:57:38PM +0100, Stefan Esser wrote: > On 1997-12-17 09:41 +0100, "Christoph P. Kukulies" wrote: > > > > Just FYI: > > > > I installed the most recent version of Wine (Wine-971130 from sunsite). > > And despite one quirk in memory/virtual.c where I had to get > > acoross the fact that FreeBSD doesn't do synchronuous memory > > syncs (Linux: ) I was able to throw it at my > > C:\WIN95 directory. > > Hi Christoph! > > Hmmm, didn't you build Wine from within the ports tree ? > If you did, then the second chunk in patch-an should have > taken care of defining MS_SYNC: Actually the story went this way: I compiled wine from the ports tree and it gave a bad system call in the first place. Hmm, thought I, should the port be broken? Maybe. Anywat, let's try the latest version (971130) and while doing this it came to mind that SYSVSHM might be the cause for the bad system call. Then it worked and while being at the newer version anyway I didn't care to fall back to previous (ports) release). Strange though that the patch didn't apply. > > *** memory/virtual.c~ Mon Dec 1 23:13:06 1997 > --- memory/virtual.c Mon Dec 1 23:24:57 1997 > *************** > *** 1098,1101 **** > --- 1098,1104 ---- > } > if (!cbFlush) cbFlush = view->size; > + #ifndef MS_SYNC > + #define MS_SYNC 0 > + #endif MS_SYNC > if (!msync( addr, cbFlush, MS_SYNC )) return TRUE; > SetLastError( ERROR_INVALID_PARAMETER ); > > I had added that patch before John Dyson added MS_SYNC > to sys/mman.h. AFAIK, we didn't need it, because it is > the default behaviour of msync() (that's where the name > comes from :), and a flag value of 0 could have been > used in WINE. > > > wine progman > > > > and voila, my Win95 desktop appeared neatly sorted in progman program groups. > > The fonts and the colors/hatching/dithering a bit strange though. > > You may need to edit your $(PREFIX)/etc/wine.conf file, > if it contains font alias lines as required by earlier > releases of WINE. See the sample wine.ini file found in > the work directory. > > > Now, the big success: Freecell works! > > > > So, no more need to boot a Win95/NT System :-) > > Quite some more stuff is working under WINE! I've been > using it to look at MS-Word .doc files. Both Winword and > the free Word viewer work reasonably well under WINE for > more than one year, already! > [...] > > You can always choose to execute the real Windows DLLs, > instead of the emulation code that comes with WINE. Ah, that's interesting. Didn' t know that. Actually, the reason why I tried wine againe was that I was in seek of running some applications , a 8051 cross compiler, under DOS (emu or whatever). pcemu though running fine turned out to be insufficient since it doesn't support DPMI resp. 386 architecture. So my hopes concentrated on running a DOS Command Prompt box under Wine. It doesn't seem to work with me here. > > > What I'm concerned about though is the fact of this unimplemented > > MS_SYNC feature. That's why I'm cross posting this to -hackers also. > > Well, it always was kind of implemented ... > You only had to use its other name: "0" :) > > Regards, STefan Thanks. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de From owner-freebsd-ports Fri Dec 19 01:06:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA05348 for ports-outgoing; Fri, 19 Dec 1997 01:06:56 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA05149; Fri, 19 Dec 1997 01:04:41 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id BAA12689; Fri, 19 Dec 1997 01:01:41 -0800 (PST) Date: Fri, 19 Dec 1997 01:01:41 -0800 (PST) Message-Id: <199712190901.BAA12689@freefall.freebsd.org> To: frankch@waru.life.nthu.edu.tw, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5339 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: add dependancy to libslang, change category to graphics State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Fri Dec 19 01:00:25 PST 1997 State-Changed-Why: Committed. thanks. From owner-freebsd-ports Fri Dec 19 02:20:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA09425 for ports-outgoing; Fri, 19 Dec 1997 02:20:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA09395; Fri, 19 Dec 1997 02:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 19 Dec 1997 02:20:01 -0800 (PST) Resent-Message-Id: <199712191020.CAA09395@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, sada@e-mail.ne.jp Received: from ail.ail-inc.co.jp (ail.ail-inc.co.jp [210.145.48.250]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA09289 for ; Fri, 19 Dec 1997 02:17:11 -0800 (PST) (envelope-from sada@ail-inc.co.jp) Received: from xl.local.ail-inc.co.jp (amygdala.ail-inc.co.jp [210.145.48.251]) by ail.ail-inc.co.jp (8.8.5/3.5Wpl7) with ESMTP id TAA28614 for ; Fri, 19 Dec 1997 19:16:50 +0900 (JST) Received: from pl133.local.ail-inc.co.jp (pl133 [192.168.1.13]) by xl.local.ail-inc.co.jp (8.8.7/3.5Wpl797082210) with ESMTP id TAA02190 for ; Fri, 19 Dec 1997 19:17:31 +0900 (JST) Received: (from sada@localhost) by pl133.local.ail-inc.co.jp (8.8.8/3.5Wpl797111709) id TAA03686; Fri, 19 Dec 1997 19:16:16 +0900 (JST) Message-Id: <199712191016.TAA28614@ail.ail-inc.co.jp> Date: Fri, 19 Dec 1997 19:16:16 +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/5342: New port ja-netscape-3.04(japanese/netscape3.language) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5342 >Category: ports >Synopsis: New port ja-netscape-3.04(japanese/netscape3.language) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Fri Dec 19 02:20:00 PST 1997 >Last-Modified: >Originator: SADA Kenji >Organization: NAGOYA.AICHI.JP >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: I've made a NEW port that tunes Netscape Navigator to work with japanese fonts. I put the port packed with 'tar czf' and uuencode below "Fix:". Packed tar ball is 5052 Dec 19 18:43 ja-netscape-3.04.tar.gz Packed list is 0 Dec 19 18:41 1997 netscape3.language/ 0 Dec 18 10:18 1997 netscape3.language/files/ 2148 Dec 16 18:59 1997 netscape3.language/files/setup.vflib 303 Nov 27 12:13 1997 netscape3.language/files/netscape.sh 177 Nov 28 10:02 1997 netscape3.language/files/md5 3338 Dec 16 19:06 1997 netscape3.language/files/setup.fonts 300 Nov 26 18:11 1997 netscape3.language/files/setup.n3 0 Dec 18 10:18 1997 netscape3.language/patches/ 3381 Nov 26 18:09 1997 netscape3.language/patches/patch-aa 718 Nov 26 18:09 1997 netscape3.language/patches/patch-ab 0 Dec 18 10:18 1997 netscape3.language/pkg/ 915 Dec 17 14:22 1997 netscape3.language/pkg/PLIST 418 Dec 16 18:53 1997 netscape3.language/pkg/MESSAGE 85 Nov 28 14:48 1997 netscape3.language/pkg/DESCR 18 Nov 27 12:29 1997 netscape3.language/pkg/COMMENT 3309 Dec 17 14:51 1997 netscape3.language/Makefile >How-To-Repeat: >Fix: begin 644 ja-netscape-3.04.tar.gz M'XL(`(9!FC0``^T\RW+C2')S%;ZB1*FMQP@@`(*@1+6THB1*S99$*O@8]=#N6/U+`F02_6>E+"^)64"3Q2S_!>(?HX+3X!>N_X7Y],"QTRW=3/>Q M;3#,HJ;;:`LM[;P2A-U"K;B3!@M(PTNZ;9FND_[J`-Z7-AG&ZF-SN=*HKZ'4 M-B'R\CEX2JV@[[]'FHZ74WN*N>0B@HH672N/%N=3*YM,V[+1LM,W='F:'V,`XV;;^#FML#VOZH,?:K&G9/<5@6=[_I\+/ MN>Z\XT5^G1,VUC,LSP`_YCTSU[=UTT4@)DHM-E^;J4WF&NKH6E!%2(G$5@Q= M<2!WL6U;/L>`3Q,"&[BB3 MZ/E)]!/[UP2]KCX>,*OH@/1=Y.C?80]`A4':`S#NG10/L9K65@!9(.4GJJ<-FHO2I5R"MT?*"_1XZ4"KV^* MY=-"&94KJ%:LUXNE%)'OCB507IF(UT&E7*]X#$;9WD4NZ18O=!;0UQK5!CJI MO"R15RB#W4:I93"@)K4@EEC02FJ(5S;B==JH5DXKM1>522([GJE<:+PF[!E\B#N\F%'E^N7"17Y>AC+"OD]8C]<6A(B`T'GWN- M,X/Q,';]'XYZ3O>A94Q9_R,IFR/K_TP.UOU2+D?7_T)VMOY_"H#U/UG[.UT& MO^M;MHN."^5#M$G_;)TKS9>G7+&Q%V2^.BI^7?OZ9'\7,,+GK5%7X=41OG*N M>ON[(6'YN'9:J+]`A-!_WMHYK18/2J\\LL#>TJ;AA%2%T]/C:K&V7ZH2NN@M MF30@VSLNU+S2-J/G+2X_C@BKB#I!AJ4JQBUA@EX`C8065W]^0]G8_M_3'BW\ M,JW_B[+@]7])D'A9!C1)RHJS_O\4<+*?1NWCLKBJUL5FVU1*&%UV6YS7@T@0?R\I2LF@FAK&X(FIS!&^W6>D9K;VQD M6VH;2[+&;VPH?#9SB_!MAA=8&&+P0.44S2\0GD<,=`WR1%.OW%(*0BW$A1AG<00:H2:PE<@DR$,O_ M:/*[Q1AC\4$Y28+[A1A'63#W-@E1NE^T=3KYO>WALP1\A_4I)+7"/>PA@?[> M!O%9@\X3@\8/#CH_P"H%$9AL\$2(2YCJ#:4%>C%A,!_#0YC`(_,0VXP),M$P MIM(_P#CO*@.A%R?1,Q/W`1:0VN;0\Z[K]O/IM*H:@Q;G#EQ5);\Y1>7.^\3# M;CE:^ESI*R9VL/_.GO>%#9;GNF[/6`BJN?V$.PNE-MTEN"2;!`.8M[UM3ZRA M5ZB&[;?87D-Z!]H)([<+8B-%>ZN3_0+%U-`YK"F19H71VF?Q\(+356R9LN`)Q3?BHE.@0U)AS75I M`I_%]Q3U&BV^?U$Y*5ZG%]\')5ZC[;2&WZ;-``+W_^4\I(_*S\Y]/`1/T3_^R MRL16N1-,C?_*V7#\IWO!X.QDY-GX_Q0`*Z+PA!VX8V0CAD1BYVJ*B\K66R2* MH+1\EL^+,@*7+\<0YV&88`AW/<\+>3[GX8ZX55"8L"8A^C*/YB-&BD8\&Z3T M^ZR&V\K``$>"K$.&3@"B#,<+'(/0//E!>U;_"D3MNFA972$%2FOD=S;"W[-Z MO8&IJ]1[<>#5[ELV?5FC',#9092#@VQPXL"MTSA:02(D<9,^4DCIDPN9U+(; M:X+?M$1*>,MY=2!,3BQ-;^M8RR.MCVH#8-1%S[7^3CBQ@YNWO89X@2T,.NQ& M]A:1JUQ@])S\WFGUL4'<=UUU(B\>2`61/5&N6-`ZJ?J70^2UPGX!'6'S7$?/ M23_;P6Q/T0U85GBTHLB"_1!:0D?@*VQS1-O$I2`-2C*H3!2V/AHB'N5*O9CW MW?PE\$4-R[H@WFD7?%>J4+<+KPYR+:3"&&'UP$U>HU@1#\LDWC\ZC7F\FJX8 M%I`-3`W;-+?2]Q3;P^8`S,5VW&3UB7(FLP:_-CP=DD+4+HS)X(Y#_[('IJOW M\*8?;@`%6@.;%'AIT5V+M]BV=8U$(Q276-^JJ[L&SL\1"$_00K*N6F:9[)\, M9[8&$S0E17U1$B'GS7[_[QYO_"3&&2@OSJ'U" M366HKB1&1OJCK*[T\.HF:UL6H/K@[80]%MXD2,IE@A99[5M]\,$<6"^?@/&T M%)OKF;AGP6`!)9Q$&&3/JE$]ABF\A8V:"YYM!Q!N_OOF_VY^^/#7/_S]AQ^6 M*RNCZ#%F%>A@?JZB:09_H5[_^>&O-_]^\Z>;'V[^ M`]Y^^/`O__R7?_C3\L7*!#91:1<1%A&%HI7QY9EN:M;EN.+^Z8\?_OCAP\WO M;_X.:O67F]]_^#.MU]G*1&91H6=1_4$TJ/Z8^OF-EE"[PLI8%K&6+(RT\YBJ M??C#AW_U2_OS2.4\I95'HIK4=J2,M+$F96!)[8\4WO]YM&\ATW+]L4A:#@Q84!6_LP?2?K)B3E[+BNMBH)_5@6UPT(O)KK(?#.]:/;I\BD_` MZ7.%IL.O2]:U6-7&BHO92]QBR;Q/XLLT(!YP#&BG,@T(.B2Z:^O*W:0(=Q<" M,J_P>8^7C8TF*`D[)'([A1TV.^F>]9UN&$H:E)$&6DJ:AG7/.S:0SL:=&"^U MHR>Q@F26!A]P1S?;%@?O`7U/,0>*\1'B@#EI+>C*83NUE6_C;+#13V(#6+X^ MB#&#OC-$Z1OAZ#U3>K+2?_KZ_MQ.VR/"=/__P=<_I_G_0D:0(_]?SE#_7YR= M_WP2`!>MC5A;1:;A@.??27MGO@?GND.28J]T:AO%FJL-3/02?M`Z$J2\M)&7 M^"A2,,QB[@Q6]R12(&R`CDE4@5\?'RG(\FM9.9A"%]!1H5XX*I0+>?2R5$.O MR&$5EAQ664.'QPB<+_`VS0Y@WCK)DC^L4O(]"]P%JTU7#WA8!>&OEM[WOG#8\JQ`>,SVL=M6'AH$0W-HB?4 M#H_3A]7\I=5N`YN\@[\=$!>1Y%L]VS*;`TUMGBN47U[D)9[GU_G\:SZ3>ZHSG?=9M[96[0:25FU<]`B$Z6F7Y M/59W!SPSP^Q`5>P>FH`;H$Q4PCBDQ/3HKN63]O\QX_])L58K'!8?IXQIYW_( M)H!W_X=,_^3[/_`X\_^>!.HP0$=[D='.AVNA2\N^0)>ZVT7!X5SOA"?','4+ M*1H]YDI2O".D:V3?ANYO(;)ULX8TBV'N>_;5Z\P,E*Z`'W*%%$2C$$2<-V]B MMX>6ENC.*\?4N]C\J)*\X8#1O7.^Y(COFS5"Z>CI5RQED-YF&/_XL`'3'76KBF;'T)TNZF''@3X&C>4?MD4P MFA+9>V2'M5@^A'77BZTK>G36R__$P\&8_K]?K.U5'ZN,:?U?$+/^_=]L5LKP M=/W'9V;]_RG@X_H_&]O29T9V]&=N^$\'QO3_O_\L*L_N_3P)AA(\$_BS;Y6:=]Q<%"?W_!)8B9''U:&5,._])3C+X\1]) MD'+T^Q_2+/[S)+``D_\E(CW?0:IED,LZNF72Y6APM#&/1HV$62!'],CY"F3C M;P>ZC;6\=\YB`>TK+D;>-C8DS@DYLN6#>RUL>WL]"^BL:_7(&:G8(F(!DA=+ MVB(\,`O[I5J]7#@I;C&G1X?T8>Y,B>% M6KU8;=9*=9+E+]PA@TL\N4@7[S@,':6QJZ;1:V;NWH3A$;4T0\0_*!V3XJ,O MJU"FMSZ:,IPV\CT4!NI2*M?AIUC=FAM=9C'51KFY7SPMEO=K7V[-A2<#%M^? M5JIU\IVD:R)_Y/W0\A;?^Q]LN`X_V'`AB$-$X65,R!A'$WWD(4TO]0X$GNN# MK_3-&$[K(&ZQ5J^6]NK%_:VY5,E4C8%&;AZ"W?EG9,'S\HR.?!P/+JW=UQC0)O3;4]0H%N1_[BJ. MN?C>P[MFF%J]4*66%BF?<[I18:!1_S.);MW>69N)W9CQVO.:YKH*Z.Y=[)/LH+7W>)!I5IL%JJ' M-7HC!WH%E2'6)]B]6ZSV3H=1;_676\B%>C+V2$^B1OP]X!XVRM^43CU)MR-V M(:EWHIW66[7,MMX9V-BK>:T()"Q&*6\85Z30AB0;C"46I#.R/CYO@U9=. MZS$%#A6/\]POU0IP["8FNQ)T2(VT09% MS'IO4P2FOKV=1,B1C\C;Y,Z\WT\>WMF&AKW%Q? M^=[[)L53NSU+0U^^0PF9FF4.Z0I6(Q3#CXXS8!?>+(:>MQR-H_Y3[V*;SBB* MW<'D?@C44\-OL6'UR:$*^GT`%Y,[`$SUY%=D[HA?I0P3O,N4WEW*,#%VG?)7 MP:P3NU$)TC5+Y8,*Y$59X,PWR<$YAO$6"DW`BF8+;RG%:-C`+AGG6(+NO7G5 M)8NO:S^?)>I$WO-MU(CY-4.*([PH`RH1Z%(I(3K^5HLPPH>#2U]1+T@X%-"7 MD4JL=X343\#O6[=HR0?:.1M?.7PL:S*_99[YG&/GOQ M[.1-,%L"XME^'BQQA:&]TVOD6Y=HXW=UY\;>FAW"8L-[L['D4=08NX1[LA$: MP]6@XY7K>?\#('//[[B6W@Z78O0SGO"WI3BP``,G8\D>.(ZNF`DZ6K8'0ZZ! ML+($;%I72'&4GKYS8&.\6]OG*M7#66AC!C.8P0QF,(,9S&`&,YC!#&8P@QG\ ,$N'_`0Y,V8L`>``` ` end >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Dec 19 07:00:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA22042 for ports-outgoing; Fri, 19 Dec 1997 07:00:07 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA22022; Fri, 19 Dec 1997 07:00:04 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 19 Dec 1997 07:00:04 -0800 (PST) Resent-Message-Id: <199712191500.HAA22022@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, graphite@jp.freebsd.org Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA21795; Fri, 19 Dec 1997 06:56:56 -0800 (PST) (envelope-from nobody) Message-Id: <199712191456.GAA21795@hub.freebsd.org> Date: Fri, 19 Dec 1997 06:56:56 -0800 (PST) From: graphite@jp.freebsd.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5344: Fix patches for ja-groff Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5344 >Category: ports >Synopsis: Fix patches for ja-groff >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 19 07:00:01 PST 1997 >Last-Modified: >Originator: Noritaka Ishizumi >Organization: NAIST >Release: 3.0-971208-SNAP >Environment: FreeBSD gargoyle.aist-nara.ac.jp 3.0-971203-SNAP FreeBSD 3.0-971203-SNAP #0: Sun Dec 7 19:26:22 JST 1997 norita-i@gargoyle.aist-nara.ac.jp:/.sd1/src/sys/compile/GARGOYLE i386 >Description: 1. Fix a typo for PS output. 2. Fix a probrem of tbl processing in japanese. >How-To-Repeat: 1. groff -Tps -mandoc csh.1 (csh.1 in japanese). >Fix: Apply this patch to ja-groff tree. diff -ur groff/patches/patch-ab groff.new/patches/patch-ab --- groff/patches/patch-ab Fri Apr 4 23:59:44 1997 +++ groff.new/patches/patch-ab Thu Dec 18 02:06:04 1997 @@ -1,5 +1,5 @@ ---- README.jgroff-0.99+ Thu Jan 1 09:00:00 1970 -+++ README.jgroff-0.99+ Sun Feb 23 00:21:41 1997 +--- README.jgroff-0.99+.orig Thu Jan 1 09:00:00 1970 ++++ README.jgroff-0.99+ Wed Dec 10 20:33:01 1997 @@ -0,0 +1,63 @@ + {Ή groff-1.10 (jgroff-0.99) unofficial patch + @@ -64,8 +64,8 @@ +XR[ĥ悤ɕύXƂǂ\ʂƂȂ铙̃AhoCX +WĂ܂B + k-horik@yk.rim.or.jp ܂ŘA肢܂B ---- devdvi/DESC.in Sat Feb 22 22:38:37 1997 -+++ devdvi/DESC.in Sun Feb 23 00:04:04 1997 +--- devdvi/DESC.in.orig Wed Dec 10 20:31:49 1997 ++++ devdvi/DESC.in Wed Dec 10 20:33:01 1997 @@ -3,6 +3,7 @@ res 57816 hor 1 @@ -74,8 +74,8 @@ sizes 500 600 700 800 900 1000 1100 1200 1400 1440 1600 1728 1800 2000 2074 2200 2400 2488 2800 3600 0 fonts 15 R I B BI 0 0 0 0 0 MI S EX CW M G ---- devnippon/DESC.proto Sat Feb 22 22:38:38 1997 -+++ devnippon/DESC.proto Sun Feb 23 00:04:04 1997 +--- devnippon/DESC.proto.orig Wed Dec 10 20:31:56 1997 ++++ devnippon/DESC.proto Wed Dec 10 20:33:02 1997 @@ -3,6 +3,7 @@ vert 40 unitwidth 10 @@ -84,8 +84,8 @@ fonts 6 R I B BI M G ondemand M G tcommand ---- devps/DESC.in Sat Feb 22 22:38:39 1997 -+++ devps/DESC.in Sun Feb 23 00:04:04 1997 +--- devps/DESC.in.orig Wed Dec 10 20:31:56 1997 ++++ devps/DESC.in Wed Dec 10 20:33:02 1997 @@ -2,7 +2,7 @@ hor 1 vert 1 @@ -95,8 +95,8 @@ sizescale 1000 unitwidth 1000 sizes 1000-10000000 0 ---- troff/charinfo.h Sat Feb 22 22:38:56 1997 -+++ troff/charinfo.h Sun Feb 23 00:04:04 1997 +--- troff/charinfo.h.orig Wed Dec 10 20:31:54 1997 ++++ troff/charinfo.h Wed Dec 10 20:33:01 1997 @@ -52,7 +52,10 @@ #ifdef NIPPON , @@ -144,8 +144,8 @@ #endif inline charinfo *charinfo::get_translation(int transparent_throughput) ---- troff/env.cc Sat Feb 22 22:38:56 1997 -+++ troff/env.cc Sun Feb 23 00:04:04 1997 +--- troff/env.cc.orig Wed Dec 10 20:31:54 1997 ++++ troff/env.cc Wed Dec 10 20:33:01 1997 @@ -291,27 +291,13 @@ /* * This node is a ASCII character node. @@ -324,8 +324,8 @@ pre_char_is_ascii = 0; if (!vlower.is_zero()) { ---- troff/input.cc Sat Feb 22 22:38:57 1997 -+++ troff/input.cc Sun Feb 23 00:04:05 1997 +--- troff/input.cc.orig Wed Dec 10 20:31:54 1997 ++++ troff/input.cc Wed Dec 10 20:33:01 1997 @@ -4680,6 +4680,12 @@ charset_table[';']->set_flags(charinfo::PRE_KINSOKU); charset_table['>']->set_flags(charinfo::PRE_KINSOKU); @@ -408,16 +408,17 @@ #endif /* NIPPON */ } ---- troff/node.cc Sat Feb 22 22:38:58 1997 -+++ troff/node.cc Sun Feb 23 00:04:05 1997 -@@ -4296,6 +4296,22 @@ +--- troff/node.cc.orig Wed Dec 10 20:31:54 1997 ++++ troff/node.cc Wed Dec 10 20:35:44 1997 +@@ -4296,6 +4296,23 @@ { return NODE_NEWLINE_SPACE; } -+node_type space_node::get_node_type() -+{ -+ return NODE_SPACE; -+} ++//To hanlde Japanese tbl, space_node does not return NODE_SPACE. ++//node_type space_node::get_node_type() ++//{ ++// return NODE_SPACE; ++//} +node_type word_space_node::get_node_type() +{ + return NODE_SPACE; @@ -433,8 +434,8 @@ #endif int unbreakable_space_node::same(node *nd) ---- troff/node.h Sat Feb 22 22:38:58 1997 -+++ troff/node.h Sun Feb 23 00:04:05 1997 +--- troff/node.h.orig Wed Dec 10 20:31:54 1997 ++++ troff/node.h Wed Dec 10 20:36:44 1997 @@ -31,7 +31,7 @@ enum hyphenation_type { HYPHEN_MIDDLE, HYPHEN_BOUNDARY, HYPHEN_INHIBIT }; @@ -444,17 +445,18 @@ #endif class ascii_output_file; -@@ -173,6 +173,9 @@ +@@ -173,6 +173,10 @@ void ascii_print(ascii_output_file *); int same(node *); const char *type(); -+#ifdef NIPPON -+ node_type get_node_type(); -+#endif ++//To handle Japanese tbl, space_node does not return NODE_SPACE. ++//#ifdef NIPPON ++// node_type get_node_type(); ++//#endif }; class word_space_node : public space_node { -@@ -184,6 +187,9 @@ +@@ -184,6 +188,9 @@ void tprint(troff_output_file *); int same(node *); const char *type(); @@ -464,7 +466,7 @@ }; #ifdef NIPPON -@@ -209,6 +215,9 @@ +@@ -209,6 +216,9 @@ node *copy(); int same(node *); const char *type(); @@ -474,7 +476,7 @@ breakpoint *get_breakpoints(hunits width, int nspaces, breakpoint *rest = 0, int is_inner = 0); int nbreaks(); -@@ -224,6 +233,9 @@ +@@ -224,6 +234,9 @@ int reread(int *); int same(node *); const char *type(); diff -ur groff/patches/patch-ac groff.new/patches/patch-ac --- groff/patches/patch-ac Tue May 20 13:50:55 1997 +++ groff.new/patches/patch-ac Thu Dec 18 01:42:24 1997 @@ -14,7 +14,7 @@ -. na -. nr nS 1 +. ie "\\$1"" \{\ -+. hk ++. hK +' in 0 . \} -. if "\\$1"DESCRIPTION" \{\ >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Dec 19 07:05:57 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA22494 for ports-outgoing; Fri, 19 Dec 1997 07:05:57 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from nash.pr.mcs.net (nash.pr.mcs.net [204.95.47.72]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA22445; Fri, 19 Dec 1997 07:05:36 -0800 (PST) (envelope-from alex@nash.pr.mcs.net) Received: (from alex@localhost) by nash.pr.mcs.net (8.8.7/8.8.7) id JAA25458; Fri, 19 Dec 1997 09:04:02 -0600 (CST) (envelope-from alex) Message-Id: <199712191504.JAA25458@nash.pr.mcs.net> Date: Fri, 19 Dec 1997 09:04:02 -0600 (CST) From: Alex Nash Reply-To: nash@mcs.com Subject: Re: Wine success story To: kuku@gilberto.physik.RWTH-Aachen.DE cc: se@freebsd.org, kuku@gilberto, ports@freebsd.org, freebsd-hackers@freebsd.org In-Reply-To: <19971219084412.46153@gil.physik.rwth-aachen.de> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On 19 Dec, Christoph Kukulies wrote: > Actually, the reason why I tried wine againe was that I was in seek of > running some applications , a 8051 cross compiler, under DOS (emu or > whatever). > > pcemu though running fine turned out to be insufficient since > it doesn't support DPMI resp. 386 architecture. > > So my hopes concentrated on running a DOS Command Prompt box under Wine. > It doesn't seem to work with me here. Try bochs, its emulation of a 386 is good enough to run Windows 95, so there's a good chance it will run your cross compiler (albeit slowly). You can get it from the ports tree or from http://world.std.com/~bochs. Alex From owner-freebsd-ports Fri Dec 19 08:58:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA29349 for ports-outgoing; Fri, 19 Dec 1997 08:58:58 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id IAA29332; Fri, 19 Dec 1997 08:58:42 -0800 (PST) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id IAA01806; Fri, 19 Dec 1997 08:55:39 -0800 (PST) Date: Fri, 19 Dec 1997 08:55:39 -0800 (PST) Message-Id: <199712191655.IAA01806@freefall.freebsd.org> To: nobu@psrc.isac.co.jp, max@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5341 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: followup to newer version of ports/misc/fd State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Fri Dec 19 08:54:23 PST 1997 State-Changed-Why: The submitted update has been committed. I also updated the file files/md5. From owner-freebsd-ports Fri Dec 19 11:57:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA13105 for ports-outgoing; Fri, 19 Dec 1997 11:57:41 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA12877; Fri, 19 Dec 1997 11:53:38 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id LAA03041; Fri, 19 Dec 1997 11:50:34 -0800 (PST) Date: Fri, 19 Dec 1997 11:50:34 -0800 (PST) Message-Id: <199712191950.LAA03041@freefall.freebsd.org> To: frankch@waru.life.nthu.edu.tw, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5338 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: change in devel/libslang port State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Fri Dec 19 11:49:55 PST 1997 State-Changed-Why: Committed. thanks. From owner-freebsd-ports Sat Dec 20 08:20:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA25420 for ports-outgoing; Sat, 20 Dec 1997 08:20:07 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA25396; Sat, 20 Dec 1997 08:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 20 Dec 1997 08:20:02 -0800 (PST) Resent-Message-Id: <199712201620.IAA25396@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, rhh@ct.picker.com Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id IAA25011 for ; Sat, 20 Dec 1997 08:12:07 -0800 (PST) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Sat, 20 Dec 1997 11:11:36 -0500 (EST) Received: from stealth.ct.picker.com (eagle.ct.picker.com) by ct.picker.com (4.1/SMI-4.1) id AA29709; Sat, 20 Dec 97 11:11:34 EST Received: (from root@localhost) by stealth.ct.picker.com (8.8.8/8.8.8) id LAA02962; Sat, 20 Dec 1997 11:12:37 GMT (envelope-from rhh) Message-Id: <199712201112.LAA02962@stealth.ct.picker.com> Date: Sat, 20 Dec 1997 11:12:37 GMT From: rhh@ct.picker.com Reply-To: rhh@ct.picker.com To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: rhh@ct.picker.com X-Send-Pr-Version: 3.2 Subject: ports/5352: multi-package ports don't build (NO_WRKSUBDIR) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5352 >Category: ports >Synopsis: multi-package ports don't build (NO_WRKSUBDIR) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 20 08:20:01 PST 1997 >Last-Modified: >Originator: Randall Hopper >Organization: self >Release: FreeBSD 3.0-971208-SNAP i386 >Environment: Stock SNAP install. >Description: Trying to add in my AWE patch to the Doom port from ports-current, I find that the port itself won't even build. NO_WRKSUBDIR is set for this port, and as the "make install" script attempts to build each package, it does: (cd musserver; make install) ... (cd joystick4doom; make install) It seems that it's not doing a needed "cd ${WRKSRC}" before switching to another dist, and thus the second and subsequent sub-package installs fail. >How-To-Repeat: Pull the doom port onto a 3.0-current system and "make install". If this works, I'm assuming its due to a bug fixed since 971208. Note: for now, you'll also need to patch in "#include " into work/musserver/musserver.h to get to this point. This is the topic of another problem report I just filed (bin/5351). >Fix: I believe modifying the port install target to prefix the subpackage cd with "${WRKSRC}" should do the trick. >Audit-Trail: >Unformatted: From owner-freebsd-ports Sat Dec 20 13:43:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA16317 for ports-outgoing; Sat, 20 Dec 1997 13:43:17 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from pop.eclec.com ([209.5.3.100]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA16312 for ; Sat, 20 Dec 1997 13:43:13 -0800 (PST) (envelope-from rob@pop.eclec.com) Received: from eclec.com (node6.eclec.com [209.5.3.6]) by pop.eclec.com (8.8.5/8.8.5) with ESMTP id RAA06600 for ; Sat, 20 Dec 1997 17:45:17 GMT Message-Id: <199712201745.RAA06600@pop.eclec.com> From: "rob henry" To: Subject: ppp server Date: Thu, 5 Jun 1997 16:40:40 -0400 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1161 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@freeBSD.org X-Loop: FreeBSD.org Precedence: bulk Hi, I'm looking at getting rid of our USR Internet Server and using FreeBSD Unix to do all of our networing stuff.. So what I wanted to know is there a simple easy install PPP server for FreeBSD that would allow us to configure a FreeBSD machine to do all or most of our ppp connections .. Thanks for any and all help Rob henry Eclectic Data