From owner-freebsd-ports Sun Feb 23 05:49:23 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA10475 for ports-outgoing; Sun, 23 Feb 1997 05:49:23 -0800 (PST) Received: from dfw-ix10.ix.netcom.com (dfw-ix10.ix.netcom.com [206.214.98.10]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA10470 for ; Sun, 23 Feb 1997 05:49:20 -0800 (PST) Received: (from smap@localhost) by dfw-ix10.ix.netcom.com (8.8.4/8.8.4) id HAA15329; Sun, 23 Feb 1997 07:48:48 -0600 (CST) Received: from sjx-ca53-15.ix.netcom.com(206.214.106.47) by dfw-ix10.ix.netcom.com via smap (V1.3) id sma015326; Sun Feb 23 07:48:29 1997 Received: (from asami@localhost) by baloon.mimi.com (8.8.5/8.6.9) id FAA02668; Sun, 23 Feb 1997 05:48:22 -0800 (PST) Date: Sun, 23 Feb 1997 05:48:22 -0800 (PST) Message-Id: <199702231348.FAA02668@baloon.mimi.com> To: jfieber@indiana.edu CC: ports@FreeBSD.org In-reply-to: (message from John Fieber on Sat, 22 Feb 1997 14:24:55 -0500 (EST)) Subject: Re: version dependent PLIST From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * I was just working on some tweaks to my SP port to ensure that it * compiles on old (2.1.x) systems as well as current. One part of * the SP port for 2.2+ systems is a shared library, but on 2.1.x * systems, only the static library is built (linking against the * shared just produces core dumps). * * My question is how to deal with a system version dependent PLIST. * Ideas from more experienced porters? I just committed a change to bsd.port.mk to make things like this easier to handle. Basically, you use the variable ${PLIST} (defaults to ${PKGDIR}/PLIST). So, you can prepare two complete PLISTs, === pkg/PLIST pkg/PLIST-2.1 === and do something like === version!= uname -r | grep "2\\.1" .if !empty(version) PLIST= ${PKGDIR}/PLIST-2.1 .endif === Another way is to put the shared library stuff in a separate file, as in === pkg/PLIST (non-shlib stuff) pkg/PLIST.shlib (shlib only) === and define === PLIST= ${PKGDIR}/PLIST.tmp === and then do a === version!= uname -r | grep "2\\.1" pre-install: ${CP} ${PKGDIR}/PLIST ${PLIST} .if empty(version) ${CAT} ${PKGDIR}/PLIST.shlib >> ${PLIST} .endif pre-clean: ${RM} ${PLIST} === The first one is obviouly easier for the Makefile, but you won't have to update two PLISTs when you add one file. Satoshi From owner-freebsd-ports Sun Feb 23 19:06:31 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA21220 for ports-outgoing; Sun, 23 Feb 1997 19:06:31 -0800 (PST) Received: from chizuru.yy.cs.keio.ac.jp (chizuru.yy.cs.keio.ac.jp [131.113.47.2]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA21202 for ; Sun, 23 Feb 1997 19:06:10 -0800 (PST) Received: from lavender.yy.cs.keio.ac.jp ([203.140.35.46]) by chizuru.yy.cs.keio.ac.jp (8.8.4+2.7Wbeta4/3.5Wpl3) with ESMTP id MAA03031 for ; Mon, 24 Feb 1997 12:06:04 +0900 (JST) Received: (from sanpei@localhost) by lavender.yy.cs.keio.ac.jp (8.7.6/3.5Wpl3) id MAA03834; Mon, 24 Feb 1997 12:05:27 +0900 (JST) Message-Id: <199702240305.MAA03834@lavender.yy.cs.keio.ac.jp> To: ports@FreeBSD.ORG Subject: Re: __FreeBSD_version In-Reply-To: Your message of "Thu, 20 Feb 1997 23:51:22 -0800 (PST)" References: <199702210751.XAA02773@silvia.HIP.Berkeley.EDU> X-Mailer: Mew version 1.54 on Emacs 19.28.1, Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Mon, 24 Feb 1997 12:05:25 +0900 From: MIHIRA "Sanpei" Yoshiro Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by freefall.freebsd.org id TAA21216 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >However, I'm not sure what to do with the following three ports. In >each case, it is drawing a line between 199607 (2.1.5R) and 199608 >(2.2-current right after 2.1.5 is released), so the question is >whether it just meant "on the 2.1 branch" (at that time, of course it >was correct) or was it really fixed in 2.1.6R? > >(2) net/wide-dhcp (maintainer sanpei) > >=== >+#if __FreeBSD_version < 199608 >+ snd.ether->ether_type = ETHERTYPE_IP; >+#else > snd.ether->ether_type = htons(ETHERTYPE_IP); >+#endif >=== Hi. I'm wide-dhcp maintainer. This patch is for changes of if_ethersubr.c and if_ether.c at 1996/07/13. I think 199608 mean that changes on 2.2 branch(Yes, to tell the truth, 199608 mean "2.2-current before 2.1" :-<). Not changed in 2.1.6R. From: ports/net/wide-dhcp/patches/patch-ac CVS 1.3 log >Make this work on -current post this change: > > * davidg 96/06/12 19:54:21 > * > * Modified: sys/net if_ethersubr.c > * sys/netinet if_ether.c > * Log: > * Keep ether_type in network order for BPF to be consistent with other > * systems. >From : sys/net/if_ethersubr.c CVS 1.20 log >1.20 Thu Jun 13 2:54:03 1996 by davidg >Diffs to 1.19 > >Keep ether_type in network order for BPF to be consistent with other >systems. > >Submitted by: Ted Lemon, Matt Thomas, and others. Retrofitted for > -current by me. I have any good idea about this. Thank you. --- Yoshiro MIHIRA Keio Univ. Japan From owner-freebsd-ports Sun Feb 23 19:25:33 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA22179 for ports-outgoing; Sun, 23 Feb 1997 19:25:33 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA22171 for ; Sun, 23 Feb 1997 19:25:25 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id TAA24071 for ; Sun, 23 Feb 1997 19:25:07 -0800 (PST) To: ports@freebsd.org Subject: Here's a radical idea... Date: Sun, 23 Feb 1997 19:25:07 -0800 Message-ID: <24067.856754707@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Since we have two perennial problems with the ports collection: a) distfiles go away. b) distfiles are updated without changing the name. It occurs to me that maybe we should simply change our default logic in the way the sites are traversed. Why not put ftp.freebsd.org FIRST in the list, since we keep it the most faithfully up to date and don't spam ourselves (too often) with new versions. We'd put the "origin" sites after that as locations of last resort (or in cases of legal/export restrictions). I think it would result in a much higher "hit rate" for ports with most people. Comments? Jordan From owner-freebsd-ports Sun Feb 23 20:47:39 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA27014 for ports-outgoing; Sun, 23 Feb 1997 20:47:39 -0800 (PST) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA27002 for ; Sun, 23 Feb 1997 20:47:35 -0800 (PST) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.5/8.8.5) with SMTP id XAA20660; Sun, 23 Feb 1997 23:47:06 -0500 (EST) Date: Sun, 23 Feb 1997 23:47:06 -0500 (EST) From: John Fieber To: "Jordan K. Hubbard" cc: ports@FreeBSD.ORG Subject: Re: Here's a radical idea... In-Reply-To: <24067.856754707@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 23 Feb 1997, Jordan K. Hubbard wrote: > It occurs to me that maybe we should simply change our default logic > in the way the sites are traversed. Why not put ftp.freebsd.org FIRST > in the list, since we keep it the most faithfully up to date and don't > spam ourselves (too often) with new versions. We'd put the "origin" > sites after that as locations of last resort (or in cases of > legal/export restrictions). > > I think it would result in a much higher "hit rate" for ports with > most people. This might be a good default behavior... ...but having ports fall over is useful in its own strange way: it helps keep ports from getting stale. To this end, maybe there should be a special debugging fetch target that doesn't ever go to ftp.freebsd.org. A make fetch on the whole ports tree in this "debug" mode is run periodically, and email is automagically sent to the MAINTAINER if something is amiss. -john From owner-freebsd-ports Sun Feb 23 21:30:48 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA28649 for ports-outgoing; Sun, 23 Feb 1997 21:30:48 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA28643 for ; Sun, 23 Feb 1997 21:30:45 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id VAA08019; Sun, 23 Feb 1997 21:26:42 -0800 (PST) To: John Fieber cc: ports@FreeBSD.ORG Subject: Re: Here's a radical idea... In-reply-to: Your message of "Sun, 23 Feb 1997 23:47:06 EST." Date: Sun, 23 Feb 1997 21:26:42 -0800 Message-ID: <8015.856762002@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > ...but having ports fall over is useful in its own strange way: > it helps keep ports from getting stale. To this end, maybe there > should be a special debugging fetch target that doesn't ever go > to ftp.freebsd.org. A make fetch on the whole ports tree in this > "debug" mode is run periodically, and email is automagically sent > to the MAINTAINER if something is amiss. How about changing the default value of MASTER_SITE_FREEBSD? Right now, it's a boolean which says "spam the existing site list with ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/.." (or, as it's called in bsd.port.mk, ${MASTER_SITE_BACKUP}). That's done by setting MASTER_SITE_OVERRIDE, which essentially turns on exactly the behavior we want when MASTER_SITE_FREEBSD is defined. I therefore propose that we simply add this: .if !defined(NO_MASTER_SITE) MASTER_SITE_FREEBSD="Yes, always please." .endif To bsd.port.mk and turn it on by default. If someone still wants to override the "master site" behavior, whatever that might be, they can build with NO_MASTER_SITE=yes. Jordan From owner-freebsd-ports Sun Feb 23 22:06:40 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA00797 for ports-outgoing; Sun, 23 Feb 1997 22:06:40 -0800 (PST) Received: from grackle.grondar.za (4TkxW9RRB0gbfoG7HvFMD9wdFZDbmdJ9@grackle.grondar.za [196.7.18.131]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA00784 for ; Sun, 23 Feb 1997 22:06:29 -0800 (PST) Received: from grackle.grondar.za (q/WZzf7b4jnU0nTdU5gAJkTfUt77pOP9@localhost [127.0.0.1]) by grackle.grondar.za (8.8.5/8.8.4) with ESMTP id IAA01856; Mon, 24 Feb 1997 08:03:56 +0200 (SAT) Message-Id: <199702240603.IAA01856@grackle.grondar.za> X-Mailer: exmh version 2.0gamma 1/27/96 To: "Jordan K. Hubbard" cc: ports@freebsd.org Subject: Re: Here's a radical idea... Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 24 Feb 1997 08:03:49 +0200 From: Mark Murray Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk "Jordan K. Hubbard" wrote: > I think it would result in a much higher "hit rate" for ports with > most people. I have been running this experimentally at work with a mirror machine and MASTER_SITE_OVERRIDE for all my users/clients. It works well. M -- Mark Murray PGP key fingerprint = 80 36 6E 40 83 D6 8A 36 This .sig is umop ap!sdn. BC 06 EA 0E 7A F2 CE CE From owner-freebsd-ports Mon Feb 24 02:40:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA12961 for ports-outgoing; Mon, 24 Feb 1997 02:40:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA12955; Mon, 24 Feb 1997 02:40:02 -0800 (PST) Resent-Date: Mon, 24 Feb 1997 02:40:02 -0800 (PST) Resent-Message-Id: <199702241040.CAA12955@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.CAA12856;Mon; (8.8.5/8.8.5);, 24 Feb 1997 02:34:32.-0800 (PST) Message-Id: <199702241034.CAA12856@freefall.freebsd.org> Date: Mon, 24 Feb 1997 02:34:32 -0800 (PST) From: koshy@india.hp.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/2808: New port for XaoS-2.2 uploaded Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2808 >Category: ports >Synopsis: New port for XaoS-2.2 uploaded >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 02:40:01 PST 1997 >Last-Modified: >Originator: Joseph Koshy >Organization: Hewlett Packard >Release: 3.0-CURRENT >Environment: >Description: A new port for XaoS-2.2 has been uploaded to ftp.freebsd.org/pub/FreeBSD/incoming/. The file name is "XaoS-2.2-port.tar.gz". XaoS is a fast fractal browser; improved algorithms allow interactive zooming of fractal images even on i486 class machines. 11 fractal types are supported in this release. XaoS is covered by the GNU Public License. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon Feb 24 03:20:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA13858 for ports-outgoing; Mon, 24 Feb 1997 03:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA13852; Mon, 24 Feb 1997 03:20:02 -0800 (PST) Resent-Date: Mon, 24 Feb 1997 03:20:02 -0800 (PST) Resent-Message-Id: <199702241120.DAA13852@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, markm@iafrica.com Received: from rodent.iafrica.com (rodent.iafrica.com [196.31.1.10]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA13805 for ; Mon, 24 Feb 1997 03:19:32 -0800 (PST) Received: (from root@localhost) by rodent.iafrica.com (8.8.5/8.7.3) id NAA00619; Mon, 24 Feb 1997 13:18:57 +0200 (SAT) Message-Id: <199702241118.NAA00619@rodent.iafrica.com> Date: Mon, 24 Feb 1997 13:18:57 +0200 (SAT) From: Mark R V Murray Reply-To: markm@iafrica.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2809: Fetching x11/xfed is broken. Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2809 >Category: ports >Synopsis: Fetching x11/xfed is broken. >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 03:20:00 PST 1997 >Last-Modified: >Originator: Mark R V Murray >Organization: GTA >Release: FreeBSD 2.2-GAMMA i386 >Environment: Any FreeBSD/OpenBSD with this port, and no local tarball/distfile. >Description: 1) If you do not have MASTER_SITE_OVERRIDE set, this port tries to get (and tar-up) the needed sources. These sources do not exist at the master sites anymore. 2) If MASTER_SITE_OVERRIDE _is_ set (to freefall), the the tarball is fetched from there, bit bsd.port.mk complains about the confict between the ${IGNORE} in the makefile and the MD5 checksum in files/md5. >How-To-Repeat: cd /usr/ports/distfiles rm xfed.tar.* cd /usr/ports/x11/xfed make fetch make checksum >Fix: :-) No time to do it myself. >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon Feb 24 04:03:18 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA15141 for ports-outgoing; Mon, 24 Feb 1997 04:03:18 -0800 (PST) Received: from whale.gu.kiev.ua (whale.gu.net [194.93.190.4]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA15136 for ; Mon, 24 Feb 1997 04:03:11 -0800 (PST) Received: from trifork.gu.net (trifork.gu.net [194.93.190.194]) by whale.gu.kiev.ua (8.8.5/8.7.3) with SMTP id OAA48718; Mon, 24 Feb 1997 14:02:30 +0200 Date: Mon, 24 Feb 1997 16:01:59 +0200 (EET) From: Andrew Stesin Reply-To: stesin@gu.net To: "Jordan K. Hubbard" cc: ports@FreeBSD.ORG Subject: Re: Here's a radical idea... In-Reply-To: <24067.856754707@time.cdrom.com> Message-ID: X-NCC-RegID: ua.gu MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi, On Sun, 23 Feb 1997, Jordan K. Hubbard wrote: > Since we have two perennial problems with the ports collection: > > a) distfiles go away. I vote "NO!" > b) distfiles are updated without changing the name. Probably. > It occurs to me that maybe we should simply change our default logic > in the way the sites are traversed. Why not put ftp.freebsd.org FIRST > in the list, since we keep it the most faithfully up to date and don't > spam ourselves (too often) with new versions. We'd put the "origin" > sites after that as locations of last resort (or in cases of > legal/export restrictions). I second this idea. Best regards, Andrew Stesin nic-hdl: ST73-RIPE From owner-freebsd-ports Mon Feb 24 04:24:38 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA16560 for ports-outgoing; Mon, 24 Feb 1997 04:24:38 -0800 (PST) Received: from relay.nuxi.com (nuxi.ucdavis.edu [128.120.37.176]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA16551 for ; Mon, 24 Feb 1997 04:24:36 -0800 (PST) Received: from dragon.nuxi.com (reqd-041.ucdavis.edu [128.120.251.161]) by relay.nuxi.com (8.8.4/8.6.12) with ESMTP id EAA27678 for ; Mon, 24 Feb 1997 04:26:13 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.5/8.7.3) id MAA10894; Mon, 24 Feb 1997 12:24:30 GMT Message-ID: <19970224042430.VP28336@dragon.nuxi.com> Date: Mon, 24 Feb 1997 04:24:30 -0800 From: obrien@NUXI.com (David O'Brien) To: freebsd-ports@freebsd.org (FreeBSD ports list) Subject: Rxvt port X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 X-Disclaimer: Mutt Bites! Organization: The NUXI *BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Has anyone been using the rxvt-2.16 port? Since upgrading to it from rxvt-2.09, I've been really frustrated with its handling of the erase character. I'm finding it impossible to get a configuration that works for both xterm and rxvt. Furthermore I have 2.19 and 2.20 compiling. Should I just upgrade this port? Note that with each release of rxvt, the maintainer keeps making gratutious changes to suit his [latest] personal tastes. Often with little reguard for previous look and feel. -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) From owner-freebsd-ports Mon Feb 24 04:24:38 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA16561 for ports-outgoing; Mon, 24 Feb 1997 04:24:38 -0800 (PST) Received: from grackle.grondar.za (eKI/uFShEujBbCNM5DOvWX+yHNh4GN65@grackle.grondar.za [196.7.18.131]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA16549 for ; Mon, 24 Feb 1997 04:24:25 -0800 (PST) Received: from grackle.grondar.za (iSmEPedAmqftGt6kTf+GXV1ddHsMMt2V@localhost [127.0.0.1]) by grackle.grondar.za (8.8.5/8.8.4) with ESMTP id OAA02781; Mon, 24 Feb 1997 14:23:11 +0200 (SAT) Message-Id: <199702241223.OAA02781@grackle.grondar.za> To: stesin@gu.net cc: "Jordan K. Hubbard" , ports@freebsd.org Subject: Re: Here's a radical idea... Date: Mon, 24 Feb 1997 14:23:05 +0200 From: Mark Murray Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Andrew Stesin wrote: > > Since we have two perennial problems with the ports collection: > > > > a) distfiles go away. > > I vote "NO!" Point a) was not for the vote! Point a) is something that actually happens: sometimes a master site stops carrying the tarball. > > b) distfiles are updated without changing the name. > > Probably. See my comments about point a). This happens with eg. expect.tar.Z where the master tarball is _always_ called expect.tar.Z, no matter what the version. M -- Mark Murray PGP key fingerprint = 80 36 6E 40 83 D6 8A 36 This .sig is umop ap!sdn. BC 06 EA 0E 7A F2 CE CE From owner-freebsd-ports Mon Feb 24 04:37:45 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA17195 for ports-outgoing; Mon, 24 Feb 1997 04:37:45 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA17190 for ; Mon, 24 Feb 1997 04:37:43 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id EAA13134; Mon, 24 Feb 1997 04:36:51 -0800 (PST) To: Mark Murray cc: stesin@gu.net, ports@freebsd.org Subject: Re: Here's a radical idea... In-reply-to: Your message of "Mon, 24 Feb 1997 14:23:05 +0200." <199702241223.OAA02781@grackle.grondar.za> Date: Mon, 24 Feb 1997 04:36:51 -0800 Message-ID: <13131.856787811@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Andrew Stesin wrote: > > > Since we have two perennial problems with the ports collection: > > > > > > a) distfiles go away. > > > > I vote "NO!" > > Point a) was not for the vote! Point a) is something that actually > happens: sometimes a master site stops carrying the tarball. Right. And I also forgot to note that for *many* ports in the ports-current tree, this is now the case. Just do a ``make fetch'' from /usr/ports with an empty distfiles directory and count the number of fall-through-to-ftp.freebsd.org-cases if anyone wants to see for themselves. There are a lot. :-) Jordan From owner-freebsd-ports Mon Feb 24 05:51:43 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA20278 for ports-outgoing; Mon, 24 Feb 1997 05:51:43 -0800 (PST) Received: (from tg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA20257; Mon, 24 Feb 1997 05:51:35 -0800 (PST) Date: Mon, 24 Feb 1997 05:51:35 -0800 (PST) From: Thomas Gellekum Message-Id: <199702241351.FAA20257@freefall.freebsd.org> To: suttonj@interconnect.com.au, tg, freebsd-ports Subject: Re: ports/2515 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port: Apple IIGS emulator State-Changed-From-To: open-closed State-Changed-By: tg State-Changed-When: Mon Feb 24 05:51:07 PST 1997 State-Changed-Why: Imported, thanks. From owner-freebsd-ports Mon Feb 24 05:52:26 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA20413 for ports-outgoing; Mon, 24 Feb 1997 05:52:26 -0800 (PST) Received: (from tg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA20393; Mon, 24 Feb 1997 05:52:22 -0800 (PST) Date: Mon, 24 Feb 1997 05:52:22 -0800 (PST) From: Thomas Gellekum Message-Id: <199702241352.FAA20393@freefall.freebsd.org> To: tg, freebsd-ports, tg Subject: Re: ports/2434 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port: fmsx Responsible-Changed-From-To: freebsd-ports->tg Responsible-Changed-By: tg Responsible-Changed-When: Mon Feb 24 05:51:48 PST 1997 Responsible-Changed-Why: I grabbed this one. From owner-freebsd-ports Mon Feb 24 07:27:56 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA23901 for ports-outgoing; Mon, 24 Feb 1997 07:27:56 -0800 (PST) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id HAA23880 for ; Mon, 24 Feb 1997 07:27:42 -0800 (PST) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 0.56 #1) id E0vz2I0-0004i1-00; Mon, 24 Feb 1997 08:26:04 -0700 To: "Jordan K. Hubbard" Subject: Re: Here's a radical idea... Cc: Mark Murray , stesin@gu.net, ports@freebsd.org In-reply-to: Your message of "Mon, 24 Feb 1997 04:36:51 PST." <13131.856787811@time.cdrom.com> References: <13131.856787811@time.cdrom.com> Date: Mon, 24 Feb 1997 08:26:04 -0700 From: Warner Losh Message-Id: Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <13131.856787811@time.cdrom.com> "Jordan K. Hubbard" writes: : Right. And I also forgot to note that for *many* ports in the : ports-current tree, this is now the case. Just do a ``make fetch'' : from /usr/ports with an empty distfiles directory and count the number : of fall-through-to-ftp.freebsd.org-cases if anyone wants to see for : themselves. There are a lot. :-) I've noticed a bunch while doing a make fetch for OpenBSD's ports. So many that I've had to do a make -k fetch, but even that seems to be failing sometimes because it tries to go off and build depends for some unknown reason :-(. Warner From owner-freebsd-ports Mon Feb 24 07:59:56 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA25447 for ports-outgoing; Mon, 24 Feb 1997 07:59:56 -0800 (PST) Received: from sovcom.kiae.su (sovcom.kiae.su [193.125.152.1]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id HAA25433 for ; Mon, 24 Feb 1997 07:59:52 -0800 (PST) Received: by sovcom.kiae.su id AA22040 (5.65.kiae-1 ); Mon, 24 Feb 1997 18:46:55 +0300 Received: by sovcom.KIAE.su (UUMAIL/2.0); Mon, 24 Feb 97 18:46:55 +0300 Received: (from ache@localhost) by nagual.ru (8.8.5/8.8.5) id SAA00576; Mon, 24 Feb 1997 18:32:30 +0300 (MSK) Date: Mon, 24 Feb 1997 18:32:25 +0300 (MSK) From: =?KOI8-R?B?4c7E0sXKIP7F0s7P1w==?= To: "Jordan K. Hubbard" Cc: ports@freebsd.org Subject: Re: Here's a radical idea... In-Reply-To: <24067.856754707@time.cdrom.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 23 Feb 1997, Jordan K. Hubbard wrote: > It occurs to me that maybe we should simply change our default logic > in the way the sites are traversed. Why not put ftp.freebsd.org FIRST > in the list, since we keep it the most faithfully up to date and don't > spam ourselves (too often) with new versions. We'd put the "origin" > sites after that as locations of last resort (or in cases of > legal/export restrictions). Fallback to ftp.freebsd.org clearly indicates error (old version not available or even deleted from master site) and you want to make this error as default case masking the real problem. I vote NO. -- Andrey A. Chernov http://www.nagual.ru/~ache/ From owner-freebsd-ports Mon Feb 24 09:34:15 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA02833 for ports-outgoing; Mon, 24 Feb 1997 09:34:15 -0800 (PST) Received: (from jmb@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA02789; Mon, 24 Feb 1997 09:34:11 -0800 (PST) From: "Jonathan M. Bresler" Message-Id: <199702241734.JAA02789@freefall.freebsd.org> Subject: Re: Here's a radical idea... To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Mon, 24 Feb 1997 09:34:11 -0800 (PST) Cc: ports@freebsd.org In-Reply-To: <24067.856754707@time.cdrom.com> from "Jordan K. Hubbard" at Feb 23, 97 07:25:07 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Jordan K. Hubbard wrote: > > Since we have two perennial problems with the ports collection: > > a) distfiles go away. > b) distfiles are updated without changing the name. > > It occurs to me that maybe we should simply change our default logic > in the way the sites are traversed. Why not put ftp.freebsd.org FIRST > in the list, since we keep it the most faithfully up to date and don't > spam ourselves (too often) with new versions. We'd put the "origin" > sites after that as locations of last resort (or in cases of > legal/export restrictions). > > I think it would result in a much higher "hit rate" for ports with > most people. how about a script that uses the contents fo the Makefiles to verify that distribution is still at the site. if not it sends mail tothe maintainer asking him to update the port. where is the authoratiative tree of ports and their files kept? can we run expect on that mahcine? jmb From owner-freebsd-ports Mon Feb 24 10:12:09 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA04865 for ports-outgoing; Mon, 24 Feb 1997 10:12:09 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA04163 for freebsd-ports@freebsd.org; Mon, 24 Feb 1997 10:00:34 -0800 (PST) Date: Mon, 24 Feb 1997 10:00:34 -0800 (PST) Message-Id: <199702241800.KAA04163@freefall.freebsd.org> From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-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 S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1997/01/01] ports/2352 ports wu-ftp port does not work with DES crypte 1 problem total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/10/11] bin/1773 ports A NULL pointer causing segmentation core o [1996/12/17] ports/2235 ports tcp-wrapper port doesn't log under 2.1.6R s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1997/02/13] ports/2731 ports new port: Tcl 8.0A2 o [1997/02/15] ports/2746 ports Updated port o [1997/02/17] ports/2756 ports top causes segmentation fault o [1997/02/18] ports/2766 ports sudo doesn't let you enter password somet o [1997/02/20] ports/2777 ports sudo does not wait for password entry o [1997/02/24] ports/2809 ports Fetching x11/xfed is broken. 9 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/04/23] ports/1155 ports systat or top display disagreeing informa o [1996/08/21] ports/1520 ports sudo dosn't recognise certain passwords a a [1996/08/28] ports/1550 ports "make install" needs to know how to updat o [1996/09/21] ports/1660 ports Updating of jp-fvwm2-port(-> jp-fvwm2-por o [1996/10/31] ports/1939 ports exodus port doesn't build with new g++-2. o [1996/11/24] ports/2096 ports ImageMagick outdated, lzw not supported o [1996/12/03] ports/2145 ports qpopper bulletin support broken o [1996/12/08] ports/2182 ports FreeBSD's and X-32's list of locales do n o [1996/12/19] ports/2251 ports New *almost* port: Scilab o [1996/12/21] ports/2264 ports latex* ports need updating o [1997/01/05] ports/2379 ports New URT port o [1997/01/10] ports/2445 ports New port : Cosmo Gang the Puzzle (games/c o [1997/01/12] ports/2477 ports Tcl 8.0 a1 port submission. o [1997/01/12] ports/2478 ports Tk 8.0a1 port submission. o [1997/01/19] ports/2530 ports New port: xpuzzletama (games/xpuzzletama) o [1997/01/24] ports/2571 ports Maxima lacks pkg directory o [1997/01/25] ports/2590 ports new ports sollection -- jp-a2ps-1.39 o [1997/01/27] ports/2601 ports New port: Plotmtv o [1997/01/30] ports/2620 ports classes.zip are looked for in the wrong d o [1997/02/02] ports/2639 ports FreeBSD 2.2 teTeX-0.4 package does not in o [1997/02/06] ports/2677 ports Various ports have checksum problems o [1997/02/08] ports/2694 ports VFlib ports is updated. o [1997/02/13] ports/2722 ports New port: newosaka o [1997/02/13] ports/2723 ports New port: recjis o [1997/02/14] ports/2741 ports jp-vfghostscript-4.03 is updated. o [1997/02/16] ports/2750 ports New port - jp-iv o [1997/02/18] ports/2758 ports multilingual nvi ports put in incoming di o [1997/02/18] ports/2760 ports New ports, jp-fvwm-2.0.45 o [1997/02/18] ports/2761 ports Update ports, jp-skk-9.6 o [1997/02/18] ports/2764 ports new ports of Japanized Tcl/Tk o [1997/02/18] ports/2765 ports gopher port uses gets() o [1997/02/20] ports/2776 ports New Port: Turbo Vision for UNIX o [1997/02/20] ports/2778 ports New Port: Version of traceroute which pri o [1997/02/21] ports/2794 ports ssh fails to exec ssh-askpass o [1997/02/21] ports/2796 ports olvwm thinks TrueColor is mono o [1997/02/22] ports/2797 ports New Port. o [1997/02/22] ports/2799 ports Submission of Angband 2.8.0 port. o [1997/02/24] ports/2808 ports New port for XaoS-2.2 uploaded 38 problems total. From owner-freebsd-ports Mon Feb 24 13:31:32 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA20178 for ports-outgoing; Mon, 24 Feb 1997 13:31:32 -0800 (PST) Received: from freenet.hamilton.on.ca (0@main.freenet.hamilton.on.ca [199.212.94.65]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA20154 for ; Mon, 24 Feb 1997 13:31:21 -0800 (PST) Received: from james.freenet.hamilton.on.ca (james.freenet.hamilton.on.ca [199.212.94.66]) by freenet.hamilton.on.ca (8.7.5/8.7.3) with ESMTP id QAA21787; Mon, 24 Feb 1997 16:31:04 -0500 (EST) Received: from localhost (ac199@localhost) by james.freenet.hamilton.on.ca (8.7.5/8.7.3) with SMTP id QAA09995; Mon, 24 Feb 1997 16:33:05 -0500 (EST) X-Authentication-Warning: james.freenet.hamilton.on.ca: ac199 owned process doing -bs Date: Mon, 24 Feb 1997 16:33:02 -0500 (EST) From: Tim Vanderhoek To: =?KOI8-R?B?4c7E0sXKIP7F0s7P1w==?= cc: "Jordan K. Hubbard" , ports@FreeBSD.ORG Subject: Re: Here's a radical idea... In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from QUOTED-PRINTABLE to 8bit by freefall.freebsd.org id NAA20172 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Mon, 24 Feb 1997, [KOI8-R] Андрей Чернов wrote: > Fallback to ftp.freebsd.org clearly indicates error (old version not > available or even deleted from master site) and you want to make this > error as default case masking the real problem. I vote NO. The handbook's guide mentions that someone is planning to add support for auto-determination of the nearest ftp site. Perhaps it would be better to add this support rather than try working around the problem of bad ftp sites. -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk From owner-freebsd-ports Mon Feb 24 14:18:35 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA23320 for ports-outgoing; Mon, 24 Feb 1997 14:18:35 -0800 (PST) Received: from bloke.statsci.com (bloke.statsci.com [206.63.206.184]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id OAA23310 for ; Mon, 24 Feb 1997 14:18:29 -0800 (PST) Received: from statsci.com [127.0.0.1] with smtp by bloke.statsci.com with smtp (/\oo/\ Smail3.1.29.1 #29.3 #3) id m0vz8iN-000QdNC; Mon, 24 Feb 97 14:17 PST Message-Id: To: "Jonathan M. Bresler" cc: jkh@time.cdrom.com (Jordan K. Hubbard), ports@FreeBSD.org Subject: Re: Here's a radical idea... References: <199702241734.JAA02789@freefall.freebsd.org> In-reply-to: Your message of "Mon, 24 Feb 1997 09:34:11 -0800." <199702241734.JAA02789@freefall.freebsd.org> Reply-to: scott@statsci.com Date: Mon, 24 Feb 1997 14:17:42 -0800 From: Scott Blachowicz Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk "Jonathan M. Bresler" wrote: > how about a script that uses the contents fo the Makefiles > to verify that distribution is still at the site. I think I saw something like this already float by on this thread, but I can't find it now and a search on the web page turned up zero matches... Why not set MASTER_SITES to something like this? $(FREEBSD_ORG_OVERRIDE) \ ftp://where.ever.com/what.ever \ $(FREEBSD_ORG_FALLBACK) Then and individual could override a default value (of ftp://ftp.freebsd.org/...) for either or both of those variables depending on what's desired. If I don't want to try freebsd.org first, I do make FREEBSD_ORG_OVERRIDE= fetch or if I want to error out when the master(s) lose it: make FREEBSD_ORG_OVERRIDE= FREEBSD_ORG_FALLBACK= fetch And presumably /etc/make.conf (I don't remember the name of that file for sure) could be edited to make a "permanent" local change to the value. Scott Blachowicz Ph: 206/283-8802x240 Mathsoft (Data Analysis Products Div) 1700 Westlake Ave N #500 scott@statsci.com Seattle, WA USA 98109 Scott.Blachowicz@seaslug.org From owner-freebsd-ports Mon Feb 24 18:27:02 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA11199 for ports-outgoing; Mon, 24 Feb 1997 18:27:02 -0800 (PST) Received: (from jmb@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA11150; Mon, 24 Feb 1997 18:25:40 -0800 (PST) From: "Jonathan M. Bresler" Message-Id: <199702250225.SAA11150@freefall.freebsd.org> Subject: Re: Here's a radical idea... To: scott@statsci.com Date: Mon, 24 Feb 1997 18:25:39 -0800 (PST) Cc: jkh@time.cdrom.com, ports@FreeBSD.org In-Reply-To: from "Scott Blachowicz" at Feb 24, 97 02:17:42 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Scott Blachowicz wrote: > > "Jonathan M. Bresler" wrote: > > > how about a script that uses the contents fo the Makefiles > > to verify that distribution is still at the site. > > I think I saw something like this already float by on this thread, but I > can't find it now and a search on the web page turned up zero matches... > > Why not set MASTER_SITES to something like this? > > $(FREEBSD_ORG_OVERRIDE) \ > ftp://where.ever.com/what.ever \ > $(FREEBSD_ORG_FALLBACK) > > Then and individual could override a default value (of > ftp://ftp.freebsd.org/...) for either or both of those variables depending > on what's desired. If I don't want to try freebsd.org first, I do > > make FREEBSD_ORG_OVERRIDE= fetch this is good--saves people from ripping out their hair when grying to get a port built. the port could be out of date. a newer realesae may be available. a nightly script would tell the maintainer that it may be time to create a new port, better than waiting for someone to notice that a new version it out , no? jmb From owner-freebsd-ports Mon Feb 24 22:03:25 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA26816 for ports-outgoing; Mon, 24 Feb 1997 22:03:25 -0800 (PST) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id WAA26791 for ; Mon, 24 Feb 1997 22:03:18 -0800 (PST) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 0.56 #1) id E0vzFyq-00065w-00; Mon, 24 Feb 1997 23:03:12 -0700 To: ports@freebsd.org Subject: make -k oddities Date: Mon, 24 Feb 1997 23:03:12 -0700 From: Warner Losh Message-Id: Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk When I do a make -k for a port that I don't have (and can't get) the dist file for, then it will try to fetch and fail. Once it fails it will then try to patch, which it shouldn't do. I'm running this on OpenBSD amd was wondering if others had seen this problem or not on FreeBSD. I've not tried it on FreeBSD due to network pipe problems (that is, I need bigger ones). I've also seen weird things where sometimes it would fetch things twice, mysteriously hang when failing back to ftp.freebsd.org (but only sometimes, and sometimes after < 64k was trasnferred) and a few other sh related oddities. If you've seen any of these things on FreeBSD, please let me know. Otherwise, I think I have to assume that many of them are broken on OpenBSD and be bummed. Thank you for your time and efforts in this area. Warner From owner-freebsd-ports Mon Feb 24 22:31:26 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA29729 for ports-outgoing; Mon, 24 Feb 1997 22:31:26 -0800 (PST) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id WAA29722 for ; Mon, 24 Feb 1997 22:31:13 -0800 (PST) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 0.56 #1) id E0vzGPr-00067a-00; Mon, 24 Feb 1997 23:31:07 -0700 To: ports@freebsd.org Subject: OpenBSD_BROKEN Date: Mon, 24 Feb 1997 23:31:07 -0700 From: Warner Losh Message-Id: Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I'm trying to build a lot of stuff on OpenBSD, and a lot of it is currently broken for one reason or another. I'd like to mark these in the FreeBSD tree. I was thinking of having OpenBSD_BROKEN=xxxx so that we'd check BROKEN first, and then ${OPSYS}_BROKEN next and then keep going iff both aren't present. Comments? Warner From owner-freebsd-ports Tue Feb 25 06:24:56 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA24390 for ports-outgoing; Tue, 25 Feb 1997 06:24:56 -0800 (PST) Received: (from tg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA24230; Tue, 25 Feb 1997 06:23:19 -0800 (PST) Date: Tue, 25 Feb 1997 06:23:19 -0800 (PST) From: Thomas Gellekum Message-Id: <199702251423.GAA24230@freefall.freebsd.org> To: m230761@ingenieria.ingsala.unal.edu.co, tg, freebsd-ports Subject: Re: ports/2601 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port: Plotmtv State-Changed-From-To: open-closed State-Changed-By: tg State-Changed-When: Tue Feb 25 06:22:49 PST 1997 State-Changed-Why: Imported, thanks. From owner-freebsd-ports Tue Feb 25 06:37:38 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA25006 for ports-outgoing; Tue, 25 Feb 1997 06:37:38 -0800 (PST) Received: (from tg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA24982; Tue, 25 Feb 1997 06:37:27 -0800 (PST) Date: Tue, 25 Feb 1997 06:37:27 -0800 (PST) From: Thomas Gellekum Message-Id: <199702251437.GAA24982@freefall.freebsd.org> To: ssigala@globalnet.it, tg, freebsd-ports Subject: Re: ports/2776 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New Port: Turbo Vision for UNIX State-Changed-From-To: open-closed State-Changed-By: tg State-Changed-When: Tue Feb 25 06:36:38 PST 1997 State-Changed-Why: Jordan imported it. Thanks. From owner-freebsd-ports Tue Feb 25 07:33:28 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA27480 for ports-outgoing; Tue, 25 Feb 1997 07:33:28 -0800 (PST) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id HAA27473 for ; Tue, 25 Feb 1997 07:33:25 -0800 (PST) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 0.56 #1) id E0vzOsd-0006Xz-00; Tue, 25 Feb 1997 08:33:23 -0700 To: ports@freebsd.org Subject: How do you... Date: Tue, 25 Feb 1997 08:33:23 -0700 From: Warner Losh Message-Id: Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Is there any way to say 'make PLEASE_DONT_DO_X11_STUFF' or 'make DONT_DO_PORTS_THAT_DEPEND_ON_OTHER_PORTS_NOT_FOUND' I'm trying to build the entire ports collection on a machine that has no X11 installed and I don't have privs to install anything. Not even gmake. Comments? Warner From owner-freebsd-ports Tue Feb 25 14:00:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA19362 for ports-outgoing; Tue, 25 Feb 1997 14:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA19325; Tue, 25 Feb 1997 14:00:02 -0800 (PST) Resent-Date: Tue, 25 Feb 1997 14:00:02 -0800 (PST) Resent-Message-Id: <199702252200.OAA19325@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.NAA19182;Tue; (8.8.5/8.8.5);, 25 Feb 1997 13:56:10.-0800 (PST) Message-Id: <199702252156.NAA19182@freefall.freebsd.org> Date: Tue, 25 Feb 1997 13:56:10 -0800 (PST) From: pius@ienet.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/2814: mtools port doesn't remove symlinks when port is deleted Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2814 >Category: ports >Synopsis: mtools port doesn't remove symlinks when port is deleted >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 14:00:01 PST 1997 >Last-Modified: >Originator: Pius Fischer >Organization: >Release: 2.2-961006-SNAP >Environment: FreeBSD iago.ienet.com 2.2-961006-SNAP FreeBSD 2.2-961006-SNAP #0: Tue Jan 7 13:59:56 PST 1997 terryl@iago.ienet.com:/usr/src/sys/compile/IAGO i386 >Description: The mtools port creates several symlinks in /usr/local/bin, but these are not deleted when the port is deleted with pkg_delete. The PLIST needs an "@unexec rm" for each "@exec ln -fs %D/%F". >How-To-Repeat: cd /usr/ports/emulators/mtools make all install clean pkg_delete -v mtools-3.0 (now you have a bunch of symlinks in /usr/local/bin that point to mtools, but mtools has been removed) >Fix: Here's a patch for /usr/ports/emulators/mtools/pkg/PLIST: *** PLIST Thu Dec 26 12:35:02 1996 --- PLIST.new Tue Feb 25 13:19:30 1997 *************** *** 16,21 **** --- 16,38 ---- @exec ln -fs %D/%F %B/mtype @exec ln -fs %D/%F %B/mwrite @exec ln -fs %D/%F %B/mttest + @unexec rm %B/mattrib + @unexec rm %B/mcd + @unexec rm %B/mcopy + @unexec rm %B/mdel + @unexec rm %B/mdeltree + @unexec rm %B/mdir + @unexec rm %B/mformat + @unexec rm %B/mlabel + @unexec rm %B/mmd + @unexec rm %B/mmount + @unexec rm %B/mmove + @unexec rm %B/mrd + @unexec rm %B/mread + @unexec rm %B/mren + @unexec rm %B/mtype + @unexec rm %B/mwrite + @unexec rm %B/mttest bin/mkmanifest bin/mcheck bin/mxtar >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Feb 25 15:11:14 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA22942 for ports-outgoing; Tue, 25 Feb 1997 15:11:14 -0800 (PST) Received: from mail.cdsnet.net (mail.cdsnet.net [204.118.244.5]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA22935 for ; Tue, 25 Feb 1997 15:11:10 -0800 (PST) Received: from mail.cdsnet.net (mail.cdsnet.net [204.118.244.5]) by mail.cdsnet.net (8.8.5/8.7.3) with SMTP id PAA16486 for ; Tue, 25 Feb 1997 15:11:08 -0800 (PST) Date: Tue, 25 Feb 1997 15:11:08 -0800 (PST) From: Jaye Mathisen To: ports@freebsd.org Subject: Anybody looked at updating hylafax port to 4.x? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk From owner-freebsd-ports Tue Feb 25 18:58:14 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA08063 for ports-outgoing; Tue, 25 Feb 1997 18:58:14 -0800 (PST) Received: from hydrogen.nike.efn.org (metriclient-10.uoregon.edu [128.223.172.10]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA08058 for ; Tue, 25 Feb 1997 18:58:10 -0800 (PST) Received: (from jmg@localhost) by hydrogen.nike.efn.org (8.8.4/8.8.4) id SAA00639; Tue, 25 Feb 1997 18:57:42 -0800 (PST) Message-ID: <19970225185742.LH25571@hydrogen.nike.efn.org> Date: Tue, 25 Feb 1997 18:57:42 -0800 From: jmg@hydrogen.nike.efn.org (John-Mark Gurney) To: freebsd-ports@freebsd.org (FreeBSD Ports) Subject: mutt.with_pgp port installs with debuging symbols X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 X-Operating-System: FreeBSD hydrogen.nike.efn.org 2.2-960801-SNAP FreeBSD 2.2-960801-SNAP #4: Wed Jan 8 20:48:39 PST 1997 jmg@hydrogen.nike.efn.org:/usr/src/sys/compile/hydrogen i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 Organization: Cu Networking Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk hmm... I thought ports weren't suppose to install without striping their binaries first? -- John-Mark gurney_j@efn.org http://resnet.uoregon.edu/~gurney_j/ Modem/FAX: (541) 683-6954 (FreeBSD Box) Live in Peace, destroy Micro$oft, support free software, run FreeBSD (unix) From owner-freebsd-ports Tue Feb 25 19:41:13 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA11165 for ports-outgoing; Tue, 25 Feb 1997 19:41:13 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA11127 for ; Tue, 25 Feb 1997 19:40:58 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id DAA07418; Wed, 26 Feb 1997 03:53:17 GMT Date: Wed, 26 Feb 1997 03:53:17 GMT From: Adam David Message-Id: <199702260353.DAA07418@veda.is> To: ivanov@nfsun1.jinr.ru (A.P.Ivanov) Cc: freebsd-ports@freebsd.org Subject: Re: pcnfsd References: <330C0C36.167EB0E7@nf.jinr.ru> X-Newsreader: NN version 6.5.0 #2 (NOV) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >I have troubles exporting my printer with pcnfsd. >Clients are running win3.1[1] with sun pcnfs 5.1. >I followed all recommendations in pcnfsd man, but PCs just refuses to >mount >printdevice. I succeded in mounting it when I've exported spool >directory for each client. (/var/spool/mail/client1). But then >nothing happend, when I print to captured device on PC it says OK >and that's all. It is probably more convenient to specify the spool directory subtree with the -alldirs flag in /etc/exports. >And by the way, is it necessary use 'mount -n', cause without -n >I succesfully mounted exported directories on PC. Is it only useful >for pcnfsd. Yes it is normally necessary to 'mountd -n'. Either your PC is sending mount requests from a privileged port or there is a serious problem with security. I favour the former possibility. Sorry, I can't be of any more help based on the descriptions given. -- Adam David From owner-freebsd-ports Tue Feb 25 19:49:21 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA11486 for ports-outgoing; Tue, 25 Feb 1997 19:49:21 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA11476 for ; Tue, 25 Feb 1997 19:49:15 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id EAA07468; Wed, 26 Feb 1997 04:01:45 GMT Date: Wed, 26 Feb 1997 04:01:45 GMT From: Adam David Message-Id: <199702260401.EAA07468@veda.is> To: asami@vader.CS.BErkeley.EDU (Satoshi Asami) Cc: freebsd-ports@freebsd.org Subject: Re: __FreeBSD_version Newsgroups: list.freebsd.ports References: <199702210751.XAA02773@silvia.HIP.Berkeley.EDU> X-Newsreader: NN version 6.5.0 #2 (NOV) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >2.2-* is now "220000" and 3.0-* is now >"300000".) >(1) net/ucd-snmp (maintainer gpalmer) >=== >+#if __FreeBSD_version > 199607 >+ struct rlisthdr swaplist; >+ struct rlist *swapptr; >+#else >+ struct rlist *swaplist; >+#endif >=== ucd-snmp is currently broken, perhaps this is the reason for the breakage. The port is also seriously out of date and on my update list if Gary doesn't get there first. -- Adam David From owner-freebsd-ports Tue Feb 25 20:00:11 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA12037 for ports-outgoing; Tue, 25 Feb 1997 20:00:11 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA11915 for ; Tue, 25 Feb 1997 19:59:50 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id EAA07531; Wed, 26 Feb 1997 04:12:27 GMT Date: Wed, 26 Feb 1997 04:12:27 GMT From: Adam David Message-Id: <199702260412.EAA07531@veda.is> To: paul@demon.co.UK (Paul Richards) Cc: freebsd-ports@freebsd.org Subject: Re: Perl5 modules References: <87914htuw1.fsf@originat.demon.co.uk> X-Newsreader: NN version 6.5.0 #2 (NOV) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Can we *PLEASE* rethink how this is done in ports. A lot of Perl >programmers complained at the time this was wrong and I'm complaining >again. It also sucks badly that there are a great many ports scattered all over the place with names matching p5-* Why not simply bundle them all together in ports/pl/ and of course strip p5- from the names. (ports/p5/ if preferred) >The only argument I heard in favour of the current scheme was that if >some hacker was looking for a package to do something, say web >related, then they'd probably go and look in www. That can be done with categories. >It would be so much easier if "real" perl programmers could go to >/usr/ports/lang/perl_cpan/ and see immediately if the package they >want is part of the ports collection or not. Someone decreed that having a 2-deep hierarchy is a useful convenience, and the third level would interfere with that. -- Adam David From owner-freebsd-ports Tue Feb 25 20:20:50 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA13247 for ports-outgoing; Tue, 25 Feb 1997 20:20:50 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA13233 for ; Tue, 25 Feb 1997 20:20:43 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id EAA07601; Wed, 26 Feb 1997 04:32:33 GMT Date: Wed, 26 Feb 1997 04:32:33 GMT From: Adam David Message-Id: <199702260432.EAA07601@veda.is> To: imp@village.ORG (Warner Losh) Cc: freebsd-ports@freebsd.org Subject: Re: make -k oddities References: X-Newsreader: NN version 6.5.0 #2 (NOV) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >When I do a make -k for a port that I don't have (and can't get) the >dist file for, then it will try to fetch and fail. Once it fails it >will then try to patch, which it shouldn't do. make -k means "ignore error return from command" but bsd.port.mk uses the error return to bail out at that point. >I've also seen weird things where sometimes it would fetch things >twice, mysteriously hang when failing back to ftp.freebsd.org (but >only sometimes, and sometimes after < 64k was trasnferred) and a few >other sh related oddities. If the network connection breaks during fetch, the next site on the list is tried. I have sometimes seen fetch fail on the last byte of the file. -- Adam David From owner-freebsd-ports Tue Feb 25 22:02:12 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA17560 for ports-outgoing; Tue, 25 Feb 1997 22:02:12 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA17527 for ; Tue, 25 Feb 1997 22:02:00 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id GAA07876; Wed, 26 Feb 1997 06:14:33 GMT From: Adam David Message-Id: <199702260614.GAA07876@veda.is> Subject: Re: cvs commit: ports/www/netscape4/pkg DESCR In-Reply-To: <199702260531.VAA15900@freefall.freebsd.org> from "Andrey A. Chernov" at "Feb 25, 97 09:31:11 pm" To: ache@freefall.freebsd.org (Andrey A. Chernov) Date: Wed, 26 Feb 1997 06:14:31 +0000 (GMT) Cc: freebsd-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-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Modified: www/netscape4/pkg DESCR > Log: > Remove note about GOLD=yes, it already comes with editor I'd say the rest of the junk comes with the editor. Where will it ever end? Netscape had a future, once. These comments apply only to the user interface and the tasteless trademarking of what are essentially standard internet services. -- Adam David From owner-freebsd-ports Tue Feb 25 22:30:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA19547 for ports-outgoing; Tue, 25 Feb 1997 22:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA19534; Tue, 25 Feb 1997 22:30:01 -0800 (PST) Resent-Date: Tue, 25 Feb 1997 22:30:01 -0800 (PST) Resent-Message-Id: <199702260630.WAA19534@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, suttonj@interconnect.com.au Received: from tulpi.interconnect.com.au (root@tulpi.interconnect.com.au [192.189.54.18]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA19116 for ; Tue, 25 Feb 1997 22:22:10 -0800 (PST) Received: from solsbury-hill.home (acc3-ppp6.mel.interconnect.com.au [210.8.0.6]) by tulpi.interconnect.com.au with ESMTP id RAA25538 (8.7.6/IDA-1.6 for ); Wed, 26 Feb 1997 17:22:04 +1100 (EST) Received: (from suttonj@localhost) by solsbury-hill.home (8.7.5/8.7.3) id RAA03656; Wed, 26 Feb 1997 17:22:01 +1100 (EST) Message-Id: <199702260622.RAA03656@solsbury-hill.home> Date: Wed, 26 Feb 1997 17:22:01 +1100 (EST) From: suttonj@interconnect.com.au Reply-To: suttonj@interconnect.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2816: New port - aftp ftp-like shell for apple2 disk images Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2816 >Category: ports >Synopsis: New port - aftp ftp-like shell for apple2 disk images >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 22:30:00 PST 1997 >Last-Modified: >Originator: Joel Sutton >Organization: >Release: FreeBSD 2.1.5-STABLE i386 >Environment: FreeBSD solsbury-hill 2.1.5-RELEASE FreeBSD 2.1.5-RELEASE #3: Wed Jan 15 20:28:40 EST 1997 suttonj@solsbury-hill:/usr/src/sys/compile/EVERYDAY i386 >Description: aftp is an ftp-like shell for accessing apple2 disk images. Handy utility for apple 2 emulator users. I attempted to contact the author about releasing a new version, with man page, but I cannot get a response. >How-To-Repeat: >Fix: ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming/aftp.tar.gz Please add this to the ports collection when/if you have a moment. If there are any problems please email me. Thanks, Joel... >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Feb 25 22:30:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA19573 for ports-outgoing; Tue, 25 Feb 1997 22:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA19546; Tue, 25 Feb 1997 22:30:03 -0800 (PST) Resent-Date: Tue, 25 Feb 1997 22:30:03 -0800 (PST) Resent-Message-Id: <199702260630.WAA19546@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, suttonj@interconnect.com.au Received: from tulpi.interconnect.com.au (root@tulpi.interconnect.com.au [192.189.54.18]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA19343 for ; Tue, 25 Feb 1997 22:25:59 -0800 (PST) Received: from solsbury-hill.home (acc3-ppp6.mel.interconnect.com.au [210.8.0.6]) by tulpi.interconnect.com.au with ESMTP id RAA25666 (8.7.6/IDA-1.6 for ); Wed, 26 Feb 1997 17:24:34 +1100 (EST) Received: (from suttonj@localhost) by solsbury-hill.home (8.7.5/8.7.3) id RAA03976; Wed, 26 Feb 1997 17:24:32 +1100 (EST) Message-Id: <199702260624.RAA03976@solsbury-hill.home> Date: Wed, 26 Feb 1997 17:24:32 +1100 (EST) From: suttonj@interconnect.com.au Reply-To: suttonj@interconnect.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2817: New port - prodosemu is an Apple2e prodos emulator Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2817 >Category: ports >Synopsis: New port - prodosemu is an Apple2e prodos emulator >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 22:30:02 PST 1997 >Last-Modified: >Originator: Joel Sutton >Organization: >Release: FreeBSD 2.1.5-STABLE i386 >Environment: FreeBSD solsbury-hill 2.1.5-RELEASE FreeBSD 2.1.5-RELEASE #3: Wed Jan 15 20:28:40 EST 1997 suttonj@solsbury-hill:/usr/src/sys/compile/EVERYDAY i386 >Description: Prodosemu is an Apple2e prodos emulator which is text only. The program comes with copyright apple2e roms and, therefore, cannot be distributed. >How-To-Repeat: >Fix: ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming/prodosemu.tar.gz Please add this to the ports collection when/if you have a moment. If there are any problems please email me. Thanks, Joel... >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Feb 25 22:30:10 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA19592 for ports-outgoing; Tue, 25 Feb 1997 22:30:10 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA19569; Tue, 25 Feb 1997 22:30:06 -0800 (PST) Resent-Date: Tue, 25 Feb 1997 22:30:06 -0800 (PST) Resent-Message-Id: <199702260630.WAA19569@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, suttonj@interconnect.com.au Received: from tulpi.interconnect.com.au (root@tulpi.interconnect.com.au [192.189.54.18]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA19378 for ; Tue, 25 Feb 1997 22:27:31 -0800 (PST) Received: from solsbury-hill.home (acc3-ppp6.mel.interconnect.com.au [210.8.0.6]) by tulpi.interconnect.com.au with ESMTP id RAA25740 (8.7.6/IDA-1.6 for ); Wed, 26 Feb 1997 17:27:25 +1100 (EST) Received: (from suttonj@localhost) by solsbury-hill.home (8.7.5/8.7.3) id RAA04228; Wed, 26 Feb 1997 17:27:24 +1100 (EST) Message-Id: <199702260627.RAA04228@solsbury-hill.home> Date: Wed, 26 Feb 1997 17:27:24 +1100 (EST) From: suttonj@interconnect.com.au Reply-To: suttonj@interconnect.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2818: New port - dvi2tty displays dvi files on text only devices Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2818 >Category: ports >Synopsis: New port - dvi2tty displays dvi files on text only devices >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 22:30:04 PST 1997 >Last-Modified: >Originator: Joel Sutton >Organization: >Release: FreeBSD 2.1.5-STABLE i386 >Environment: FreeBSD solsbury-hill 2.1.5-RELEASE FreeBSD 2.1.5-RELEASE #3: Wed Jan 15 20:28:40 EST 1997 suttonj@solsbury-hill:/usr/src/sys/compile/EVERYDAY i386 >Description: dvi2tty displays dvi files on text only devices. This is from the CTAN archive. I couldn't find an actual tar file for this anywhere so the ftp-server does one on the fly. >How-To-Repeat: >Fix: ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming/dvi2tty.tar.gz Please add this to the ports collection when/if you have a moment. If there are any problems please email me. Thanks, Joel... >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Feb 25 23:06:52 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA22421 for ports-outgoing; Tue, 25 Feb 1997 23:06:52 -0800 (PST) Received: from lightside.com (hamby1.lightside.net [207.67.176.17]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id XAA22413 for ; Tue, 25 Feb 1997 23:06:46 -0800 (PST) Received: by lightside.com (SMI-8.6/SMI-SVR4) id XAA07003; Tue, 25 Feb 1997 23:07:21 -0800 Date: Tue, 25 Feb 1997 23:07:21 -0800 From: jehamby@lightside.com (Jake Hamby) Message-Id: <199702260707.XAA07003@lightside.com> To: ache@freefall.freebsd.org, adam@veda.is Subject: Re: cvs commit: ports/www/netscape4/pkg DESCR Cc: freebsd-ports@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-MD5: hF9/l400i6O/Vj862fGSBg== Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > Modified: www/netscape4/pkg DESCR > > Log: > > Remove note about GOLD=yes, it already comes with editor > > I'd say the rest of the junk comes with the editor. Where will it ever end? > Netscape had a future, once. These comments apply only to the user interface > and the tasteless trademarking of what are essentially standard internet > services. The latest beta: Ugly, slow, bloated, buggy. Ugh! -- Jake From owner-freebsd-ports Tue Feb 25 23:09:03 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA22535 for ports-outgoing; Tue, 25 Feb 1997 23:09:03 -0800 (PST) Received: from dfw-ix2.ix.netcom.com (dfw-ix2.ix.netcom.com [206.214.98.2]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA22530 for ; Tue, 25 Feb 1997 23:09:01 -0800 (PST) Received: (from smap@localhost) by dfw-ix2.ix.netcom.com (8.8.4/8.8.4) id BAA13258; Wed, 26 Feb 1997 01:08:15 -0600 (CST) Received: from wck-ca5-07.ix.netcom.com(199.35.213.167) by dfw-ix2.ix.netcom.com via smap (V1.3) id sma013249; Wed Feb 26 01:07:47 1997 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id XAA03996; Tue, 25 Feb 1997 23:07:42 -0800 (PST) Date: Tue, 25 Feb 1997 23:07:42 -0800 (PST) Message-Id: <199702260707.XAA03996@silvia.HIP.Berkeley.EDU> To: adam@veda.is CC: imp@village.ORG, freebsd-ports@FreeBSD.ORG In-reply-to: <199702260432.EAA07601@veda.is> (message from Adam David on Wed, 26 Feb 1997 04:32:33 GMT) Subject: Re: make -k oddities From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * >When I do a make -k for a port that I don't have (and can't get) the * >dist file for, then it will try to fetch and fail. Once it fails it * >will then try to patch, which it shouldn't do. * * make -k means "ignore error return from command" but bsd.port.mk uses the * error return to bail out at that point. That's not the problem. The real problem is that "make -k" always returns 0. By changing the way chaining is done (see attached patch) some cases can be caught (like fetch) but not all because bsd.port.mk often calles sub-makes as a shell command to do certain things (try to read _PORT_USE if you have a strong stomach). Do people think "make -k" always returning 0 is correct? I tend to think it's a bug, and it should return the status of the last command executed. Otherwise it is useless for chaining calls of make. Satoshi ------- Index: bsd.port.mk =================================================================== RCS file: /usr/cvs/src/share/mk/bsd.port.mk,v retrieving revision 1.253 diff -u -r1.253 bsd.port.mk --- bsd.port.mk 1997/02/23 13:24:45 1.253 +++ bsd.port.mk 1997/02/26 07:04:28 @@ -1101,40 +1101,41 @@ .endif .if !target(extract) -extract: checksum ${EXTRACT_COOKIE} +extract: ${EXTRACT_COOKIE} .endif .if !target(patch) -patch: extract ${PATCH_COOKIE} +patch: ${PATCH_COOKIE} .endif .if !target(configure) -configure: patch ${CONFIGURE_COOKIE} +configure: ${CONFIGURE_COOKIE} .endif .if !target(build) -build: configure ${BUILD_COOKIE} +build: ${BUILD_COOKIE} .endif .if !target(install) -install: build ${INSTALL_COOKIE} +install: ${INSTALL_COOKIE} .endif .if !target(package) -package: install ${PACKAGE_COOKIE} +package: ${PACKAGE_COOKIE} .endif -${EXTRACT_COOKIE}: +# note that checksum depends on fetch (see below) +${EXTRACT_COOKIE}: checksum @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-extract -${PATCH_COOKIE}: +${PATCH_COOKIE}: extract @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-patch -${CONFIGURE_COOKIE}: +${CONFIGURE_COOKIE}: patch @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-configure -${BUILD_COOKIE}: +${BUILD_COOKIE}: configure @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build -${INSTALL_COOKIE}: +${INSTALL_COOKIE}: build @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-install -${PACKAGE_COOKIE}: +${PACKAGE_COOKIE}: install @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-package # And call the macros From owner-freebsd-ports Tue Feb 25 23:14:13 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA22842 for ports-outgoing; Tue, 25 Feb 1997 23:14:13 -0800 (PST) Received: from palrel1.hp.com (palrel1.hp.com [15.253.72.10]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA22837 for ; Tue, 25 Feb 1997 23:14:10 -0800 (PST) Received: from fakir.india.hp.com (fakir.india.hp.com [15.10.40.3]) by palrel1.hp.com with ESMTP (8.7.5/8.7.3) id XAA26409 for ; Tue, 25 Feb 1997 23:14:04 -0800 (PST) Received: from localhost by fakir.india.hp.com with SMTP (1.37.109.20/15.5+ECS 3.3) id AA173833108; Wed, 26 Feb 1997 12:45:08 +0500 Message-Id: <199702260745.AA173833108@fakir.india.hp.com> To: freebsd-ports@freebsd.org Subject: Port for XaoS 2.2 uploaded Date: Wed, 26 Feb 1997 12:45:07 +0500 From: A JOSEPH KOSHY Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi -porters, I've uploaded a port for XaoS 2.2 a few days back but could get around to sending this message only now. XaoS is a really fast fractal browser that allows interactive browsing of 11 different fractals including the mandatory Mandelbrot set. How fast is fast? A 486/133 gives acceptable performance, with a P90 zooming is smooth without flicker at the default 300x200 resolution. It also has a mode for approximating the fractal picture on an ASCII terminal (you need to stand a bit away from the terminal to see the picture). There were a couple of things I had to do to get the port made: (a) The tool uses GNU configure; but fails to create an install target in the generated makefile. I've added a `do-install' target to the port makefile to compensate. (b) Some of the source files refer to which seems to have been obsoleted around the Lite2 time frame? I've enclosed these around a `#if !defined(BSD) || (BSD < 199506)' construct though I wonder now if this was the canonically correct thing to do. (c) In this particular port, better compiler optimization of the floating point code really wins in performance. Inside the porting environment however, the `CCOPTS' environment variable seems to be defined at the time of running `configure'. This causes a less than optimal set of compiler optimization flags to be guessed at by the `configure' script. To remedy this I've specified the correct optimization flags directly in the CFLAGS variable in the port makefile. If any of these decisions above was Not The Right Thing, I would like to know! Happy browsing! Koshy My Personal Opinions Only. PS: Please CC' me on your reply as I'm not subscribed to -ports. From owner-freebsd-ports Tue Feb 25 23:22:39 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA23121 for ports-outgoing; Tue, 25 Feb 1997 23:22:39 -0800 (PST) Received: from dfw-ix2.ix.netcom.com (dfw-ix2.ix.netcom.com [206.214.98.2]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA23116 for ; Tue, 25 Feb 1997 23:22:29 -0800 (PST) Received: (from smap@localhost) by dfw-ix2.ix.netcom.com (8.8.4/8.8.4) id BAA19618; Wed, 26 Feb 1997 01:21:55 -0600 (CST) Received: from wck-ca5-07.ix.netcom.com(199.35.213.167) by dfw-ix2.ix.netcom.com via smap (V1.3) id sma019457; Wed Feb 26 01:21:24 1997 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id XAA04362; Tue, 25 Feb 1997 23:21:20 -0800 (PST) Date: Tue, 25 Feb 1997 23:21:20 -0800 (PST) Message-Id: <199702260721.XAA04362@silvia.HIP.Berkeley.EDU> To: adam@veda.is CC: ache@freefall.freebsd.org, freebsd-ports@FreeBSD.ORG In-reply-to: <199702260614.GAA07876@veda.is> (message from Adam David on Wed, 26 Feb 1997 06:14:31 +0000 (GMT)) Subject: Re: cvs commit: ports/www/netscape4/pkg DESCR From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * I'd say the rest of the junk comes with the editor. Where will it ever end? My sentiments exactly. I thought netscape3 was bad, but netscape4 is the ultimate bloatware. This blasted pile of crap is 12MB when it starts! * Netscape had a future, once. These comments apply only to the user interface * and the tasteless trademarking of what are essentially standard internet * services. They are just trying to outrun the Internet Explorer. Microsloth is doing a good job killing Netscape's future. Satoshi From owner-freebsd-ports Wed Feb 26 00:06:14 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA24786 for ports-outgoing; Wed, 26 Feb 1997 00:06:14 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA24781 for ; Wed, 26 Feb 1997 00:06:08 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id IAA08085; Wed, 26 Feb 1997 08:18:20 GMT From: Adam David Message-Id: <199702260818.IAA08085@veda.is> Subject: Re: make -k oddities In-Reply-To: <199702260707.XAA03996@silvia.HIP.Berkeley.EDU> from Satoshi Asami at "Feb 25, 97 11:07:42 pm" To: asami@vader.cs.berkeley.edu (Satoshi Asami) Date: Wed, 26 Feb 1997 08:18:18 +0000 (GMT) Cc: imp@village.ORG, freebsd-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-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > * make -k means "ignore error return from command" but bsd.port.mk uses the > * error return to bail out at that point. > > That's not the problem. The real problem is that "make -k" always > returns 0. By changing the way chaining is done (see attached patch) > some cases can be caught (like fetch) but not all because bsd.port.mk > often calles sub-makes as a shell command to do certain things (try to > read _PORT_USE if you have a strong stomach). > > Do people think "make -k" always returning 0 is correct? I tend to > think it's a bug, and it should return the status of the last command > executed. Otherwise it is useless for chaining calls of make. > > Satoshi Fundamental command paradigm user: do this unix: (ok) :) silence is golden :) Successfully completing the command hardly counts as an error. This is similar to rm -f. If make -k returns the command status of the most recent command, there is no guarantee that it will have been the failed command. If you would let make -k return 1 to signify any failed command or 2 for abnormal condition, there is no indication of which command(s) failed, if that matters. Would you also let -command pass an error when make exits? (why, why not?) Adam From owner-freebsd-ports Wed Feb 26 00:21:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA25177 for ports-outgoing; Wed, 26 Feb 1997 00:21:06 -0800 (PST) Received: from dfw-ix5.ix.netcom.com (dfw-ix5.ix.netcom.com [206.214.98.5]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA25172 for ; Wed, 26 Feb 1997 00:21:03 -0800 (PST) Received: (from smap@localhost) by dfw-ix5.ix.netcom.com (8.8.4/8.8.4) id CAA27372; Wed, 26 Feb 1997 02:20:18 -0600 (CST) Received: from wck-ca5-07.ix.netcom.com(199.35.213.167) by dfw-ix5.ix.netcom.com via smap (V1.3) id sma027365; Wed Feb 26 02:19:59 1997 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id AAA04603; Wed, 26 Feb 1997 00:19:55 -0800 (PST) Date: Wed, 26 Feb 1997 00:19:55 -0800 (PST) Message-Id: <199702260819.AAA04603@silvia.HIP.Berkeley.EDU> To: adam@veda.is CC: imp@village.ORG, freebsd-ports@FreeBSD.ORG In-reply-to: <199702260818.IAA08085@veda.is> (message from Adam David on Wed, 26 Feb 1997 08:18:18 +0000 (GMT)) Subject: Re: make -k oddities From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Fundamental command paradigm * * user: do this * unix: (ok) * * :) silence is golden :) * * Successfully completing the command hardly counts as an error. * This is similar to rm -f. I don't think so. It will bitch and whine and say " was not remade because of errors." * If make -k returns the command status of the most recent command, there is * no guarantee that it will have been the failed command. If you would let * make -k return 1 to signify any failed command or 2 for abnormal condition, * there is no indication of which command(s) failed, if that matters. If that matters, you shouldn't be using "make -k". :) Actually I think your second suggestion is better, to have "make -k" return 1 for any error. I said "ok, build a and b and c, but if one of them didn't build, don't stop and do your best with the rest." make will say "ok" and return 0 only if all of them built successfully. Note that even with "-k", make will check the dependency and sequence of commands to ensure not to continue execution on a broken path. If "-k" is passed to sub-makes in ${.MAKEFLAGS}, it will try to continue (and this is the problem that brought up the current discussion). * Would you also let -command pass an error when make exits? (why, why not?) That is different. "-" is an explicit "I don't care what this command returns" in the *Makefile*. make has no business messing with their return status. Satoshi From owner-freebsd-ports Wed Feb 26 00:24:53 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA25348 for ports-outgoing; Wed, 26 Feb 1997 00:24:53 -0800 (PST) Received: from dfw-ix6.ix.netcom.com (dfw-ix6.ix.netcom.com [206.214.98.6]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA25341 for ; Wed, 26 Feb 1997 00:24:50 -0800 (PST) Received: (from smap@localhost) by dfw-ix6.ix.netcom.com (8.8.4/8.8.4) id CAA09583; Wed, 26 Feb 1997 02:24:18 -0600 (CST) Received: from wck-ca5-07.ix.netcom.com(199.35.213.167) by dfw-ix6.ix.netcom.com via smap (V1.3) id sma009569; Wed Feb 26 02:24:17 1997 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id AAA04625; Wed, 26 Feb 1997 00:24:14 -0800 (PST) Date: Wed, 26 Feb 1997 00:24:14 -0800 (PST) Message-Id: <199702260824.AAA04625@silvia.HIP.Berkeley.EDU> To: adam@veda.is CC: freebsd-ports@freebsd.org In-reply-to: <199702260401.EAA07468@veda.is> (message from Adam David on Wed, 26 Feb 1997 04:01:45 GMT) Subject: Re: __FreeBSD_version From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * >+#if __FreeBSD_version > 199607 * ucd-snmp is currently broken, perhaps this is the reason for the breakage. I don't think so. The issue is whether the above was intended to include 2.1.6 or 2.1.7. For 2.2 and -current, it makes no difference. * The port is also seriously out of date and on my update list if Gary doesn't * get there first. That would be very appreciated. Satoshi From owner-freebsd-ports Wed Feb 26 00:32:09 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA25634 for ports-outgoing; Wed, 26 Feb 1997 00:32:09 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA25629 for ; Wed, 26 Feb 1997 00:32:06 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id TAA09358; Wed, 26 Feb 1997 19:18:09 +1100 Date: Wed, 26 Feb 1997 19:18:09 +1100 From: Bruce Evans Message-Id: <199702260818.TAA09358@godzilla.zeta.org.au> To: freebsd-ports@freebsd.org, koshy@india.hp.com Subject: Re: Port for XaoS 2.2 uploaded Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >(b) Some of the source files refer to which seems to have been > obsoleted around the Lite2 time frame? I've enclosed these around a > `#if !defined(BSD) || (BSD < 199506)' construct though I wonder now if > this was the canonically correct thing to do. It was obsolete around the ANSI standard approval time frame (1988). is SYSV compatibility header and should not be used by programs that support BSD. Uses on Standard systems. Bruce From owner-freebsd-ports Wed Feb 26 01:38:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA27947 for ports-outgoing; Wed, 26 Feb 1997 01:38:04 -0800 (PST) Received: from dfw-ix14.ix.netcom.com (dfw-ix14.ix.netcom.com [206.214.98.14]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA27932 for ; Wed, 26 Feb 1997 01:38:00 -0800 (PST) Received: (from smap@localhost) by dfw-ix14.ix.netcom.com (8.8.4/8.8.4) id DAA29542; Wed, 26 Feb 1997 03:37:24 -0600 (CST) Received: from ala-ca9-17.ix.netcom.com(207.93.143.81) by dfw-ix14.ix.netcom.com via smap (V1.3) id sma029540; Wed Feb 26 03:37:01 1997 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id BAA00910; Wed, 26 Feb 1997 01:36:58 -0800 (PST) Date: Wed, 26 Feb 1997 01:36:58 -0800 (PST) Message-Id: <199702260936.BAA00910@silvia.HIP.Berkeley.EDU> To: imp@village.org CC: ports@FreeBSD.ORG In-reply-to: (message from Warner Losh on Tue, 25 Feb 1997 08:33:23 -0700) Subject: Re: How do you... From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Is there any way to say 'make PLEASE_DONT_DO_X11_STUFF' or * 'make DONT_DO_PORTS_THAT_DEPEND_ON_OTHER_PORTS_NOT_FOUND' No. :) * I'm trying to build the entire ports collection on a machine that has * no X11 installed and I don't have privs to install anything. Not even * gmake. Patches welcome. :) Satoshi From owner-freebsd-ports Wed Feb 26 02:00:49 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA28869 for ports-outgoing; Wed, 26 Feb 1997 02:00:49 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA28861 for ; Wed, 26 Feb 1997 02:00:40 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id KAA08243; Wed, 26 Feb 1997 10:12:54 GMT From: Adam David Message-Id: <199702261012.KAA08243@veda.is> Subject: Re: make -k oddities In-Reply-To: <199702260819.AAA04603@silvia.HIP.Berkeley.EDU> from Satoshi Asami at "Feb 26, 97 00:19:55 am" To: asami@vader.cs.berkeley.edu (Satoshi Asami) Date: Wed, 26 Feb 1997 10:12:52 +0000 (GMT) Cc: imp@village.ORG, freebsd-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-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Actually I think your second suggestion is better, to have "make -k" > return 1 for any error. I said "ok, build a and b and c, but if one > of them didn't build, don't stop and do your best with the rest." > make will say "ok" and return 0 only if all of them built > successfully. I agree this is necessary for recursion and subinvocation to work as planned. > Note that even with "-k", make will check the dependency and sequence > of commands to ensure not to continue execution on a broken path. If > "-k" is passed to sub-makes in ${.MAKEFLAGS}, it will try to continue > (and this is the problem that brought up the current discussion). It is worse than originally stated. If a patchfile does not apply cleanly, the make -k will continue blindly as it is now. The proposed change will fix this all round, if there is no serious objection to it. Adam From owner-freebsd-ports Wed Feb 26 07:58:23 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA14557 for ports-outgoing; Wed, 26 Feb 1997 07:58:23 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA14535; Wed, 26 Feb 1997 07:58:19 -0800 (PST) Date: Wed, 26 Feb 1997 07:58:19 -0800 (PST) From: Jean-Marc Zucconi Message-Id: <199702261558.HAA14535@freefall.freebsd.org> To: pius@ienet.com, jmz, freebsd-ports Subject: Re: ports/2814 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: mtools port doesn't remove symlinks when port is deleted State-Changed-From-To: open-closed State-Changed-By: jmz State-Changed-When: Wed Feb 26 07:53:59 PST 1997 State-Changed-Why: Submitted patch has been applied in rev 1.5 of PLIST. From owner-freebsd-ports Wed Feb 26 08:30:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA16404 for ports-outgoing; Wed, 26 Feb 1997 08:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA16397; Wed, 26 Feb 1997 08:30:03 -0800 (PST) Resent-Date: Wed, 26 Feb 1997 08:30:03 -0800 (PST) Resent-Message-Id: <199702261630.IAA16397@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, fcawth@jjarray.umd.edu Received: from jjarray.umd.edu (jjarray.umd.edu [129.2.40.99]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA16108 for ; Wed, 26 Feb 1997 08:24:53 -0800 (PST) Received: (from fcawth@localhost) by jjarray.umd.edu (8.8.5/8.8.5) id LAA01007; Wed, 26 Feb 1997 11:24:52 -0500 (EST) Message-Id: <199702261624.LAA01007@jjarray.umd.edu> Date: Wed, 26 Feb 1997 11:24:52 -0500 (EST) From: fcawth@jjarray.umd.edu Reply-To: fcawth@jjarray.umd.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2821: XFree86 for 2.2-GAMMA utmp problems Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2821 >Category: ports >Synopsis: XFree86 distributed with 2.2-GAMMA corrupts /var/run/utmp >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 08:30:01 PST 1997 >Last-Modified: >Originator: Fred Cawthorne >Organization: University of Maryland >Release: FreeBSD 2.2-970205-GAMMA i386 >Environment: FreeBSD 2.2-970205-GAMMA #1: Wed Feb 26 10:07:04 EST 1997 fcawth@jjarray.umd.edu:/usr/src/sys/compile/JJARRAY Calibrating clock(s) relative to mc146818A clock ... i586 clock: 199434307 Hz, i8254 clock: 1193198 Hz CPU: Pentium Pro (199.43-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x617 Stepping=7 Features=0xf9ff,MTRR,PGE,MCA,CMOV> real memory = 67108864 (65536K bytes) >Description: The XFree86 in the 2.2-Gamma dist on wcarchive appears to be compiled on a machine with UT_NAMESIZE=16 in utmp.h, (i.e. -current). This makes programs like xterm write 16 byte names into /var/run/utmp, corrupting it badly... >How-To-Repeat: Start X, run "w", see that the entries are corrupted. Open more xterms, get more messed up /var/run/utmp file. >Fix: Re-compile the XFree86 binaries with the proper utmp.h include file (i.e. the one that comes with 2.2-GAMMA works just fine) >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Feb 26 08:49:26 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA17355 for ports-outgoing; Wed, 26 Feb 1997 08:49:26 -0800 (PST) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA17348 for ; Wed, 26 Feb 1997 08:49:11 -0800 (PST) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.5/8.8.5) with SMTP id LAA29609; Wed, 26 Feb 1997 11:48:44 -0500 (EST) Date: Wed, 26 Feb 1997 11:48:44 -0500 (EST) From: John Fieber To: Adam David cc: Paul Richards , freebsd-ports@freebsd.org Subject: Re: Perl5 modules In-Reply-To: <199702260412.EAA07531@veda.is> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Wed, 26 Feb 1997, Adam David wrote: > Why not simply bundle them all together in ports/pl/ and of course strip p5- > from the names. (ports/p5/ if preferred) Need the name be so obtuse? We may as well waste an extra couple bytes and call it "perl" instead of "p". -john From owner-freebsd-ports Wed Feb 26 10:38:28 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA24389 for ports-outgoing; Wed, 26 Feb 1997 10:38:28 -0800 (PST) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA24379 for ; Wed, 26 Feb 1997 10:38:22 -0800 (PST) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 0.56 #1) id E0vzoEj-0000g9-00; Wed, 26 Feb 1997 11:37:53 -0700 To: Adam David Subject: Re: make -k oddities Cc: freebsd-ports@freebsd.org In-reply-to: Your message of "Wed, 26 Feb 1997 04:32:33 GMT." <199702260432.EAA07601@veda.is> References: <199702260432.EAA07601@veda.is> Date: Wed, 26 Feb 1997 11:37:53 -0700 From: Warner Losh Message-Id: Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <199702260432.EAA07601@veda.is> Adam David writes: : >When I do a make -k for a port that I don't have (and can't get) the : >dist file for, then it will try to fetch and fail. Once it fails it : >will then try to patch, which it shouldn't do. : : make -k means "ignore error return from command" but bsd.port.mk uses the : error return to bail out at that point. Not quiet. make -i means "ignore error return from command" but -k means this with the restriction that nothing that depends on those things returning an error should be built. No fetch should imply no build, but doesn't. : >I've also seen weird things where sometimes it would fetch things : >twice, mysteriously hang when failing back to ftp.freebsd.org (but : >only sometimes, and sometimes after < 64k was trasnferred) and a few : >other sh related oddities. : : If the network connection breaks during fetch, the next site on the list is : tried. I have sometimes seen fetch fail on the last byte of the file. This is more of a hang with OpenBSD's ftp. For some reason, it hangs after about 64k when talking to freefall for reasons unknown. Warner From owner-freebsd-ports Wed Feb 26 10:41:15 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA24675 for ports-outgoing; Wed, 26 Feb 1997 10:41:15 -0800 (PST) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA24669 for ; Wed, 26 Feb 1997 10:41:12 -0800 (PST) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 0.56 #1) id E0vzoHR-0000gh-00; Wed, 26 Feb 1997 11:40:41 -0700 To: asami@vader.cs.berkeley.edu (Satoshi Asami) Subject: Re: make -k oddities Cc: adam@veda.is, freebsd-ports@freebsd.org In-reply-to: Your message of "Tue, 25 Feb 1997 23:07:42 PST." <199702260707.XAA03996@silvia.HIP.Berkeley.EDU> References: <199702260707.XAA03996@silvia.HIP.Berkeley.EDU> Date: Wed, 26 Feb 1997 11:40:41 -0700 From: Warner Losh Message-Id: Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <199702260707.XAA03996@silvia.HIP.Berkeley.EDU> Satoshi Asami writes: : That's not the problem. The real problem is that "make -k" always : returns 0. By changing the way chaining is done (see attached patch) I'll have to try this and see how much farther it gets me. Warner From owner-freebsd-ports Wed Feb 26 10:44:51 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA24900 for ports-outgoing; Wed, 26 Feb 1997 10:44:51 -0800 (PST) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA24893 for ; Wed, 26 Feb 1997 10:44:48 -0800 (PST) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 0.56 #1) id E0vzoKJ-0000h5-00; Wed, 26 Feb 1997 11:43:39 -0700 To: Adam David Subject: Re: make -k oddities Cc: asami@vader.cs.berkeley.edu (Satoshi Asami), freebsd-ports@freebsd.org In-reply-to: Your message of "Wed, 26 Feb 1997 08:18:18 GMT." <199702260818.IAA08085@veda.is> References: <199702260818.IAA08085@veda.is> Date: Wed, 26 Feb 1997 11:43:39 -0700 From: Warner Losh Message-Id: Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <199702260818.IAA08085@veda.is> Adam David writes: : Fundamental command paradigm : : user: do this : unix: (ok) : : :) silence is golden :) Yes, but this is currently broken. make -k says not to build things that depend on those things that caused the error: -k Continue processing after errors are encountered, but only on those targets that do not depend on the target whose creation caused the error. which implies that if you do a make -k as a submake, it should return an error if anything it ran caused an error (excluding those things explicitly ignored). Warner From owner-freebsd-ports Wed Feb 26 10:45:16 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA24931 for ports-outgoing; Wed, 26 Feb 1997 10:45:16 -0800 (PST) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA24925 for ; Wed, 26 Feb 1997 10:45:12 -0800 (PST) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 0.56 #1) id E0vzoLe-0000hX-00; Wed, 26 Feb 1997 11:45:02 -0700 To: asami@vader.cs.berkeley.edu (Satoshi Asami) Subject: Re: How do you... Cc: ports@freebsd.org In-reply-to: Your message of "Wed, 26 Feb 1997 01:36:58 PST." <199702260936.BAA00910@silvia.HIP.Berkeley.EDU> References: <199702260936.BAA00910@silvia.HIP.Berkeley.EDU> Date: Wed, 26 Feb 1997 11:45:02 -0700 From: Warner Losh Message-Id: Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <199702260936.BAA00910@silvia.HIP.Berkeley.EDU> Satoshi Asami writes: : Patches welcome. :) OK. I'll see what I can do. Warner From owner-freebsd-ports Wed Feb 26 11:33:49 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA27636 for ports-outgoing; Wed, 26 Feb 1997 11:33:49 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA27628 for ; Wed, 26 Feb 1997 11:33:43 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id TAA00656; Wed, 26 Feb 1997 19:45:34 GMT From: Adam David Message-Id: <199702261945.TAA00656@veda.is> Subject: Re: Perl5 modules In-Reply-To: from John Fieber at "Feb 26, 97 11:48:44 am" To: jfieber@indiana.edu (John Fieber) Date: Wed, 26 Feb 1997 19:45:33 +0000 (GMT) Cc: paul@demon.co.uk, freebsd-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-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > Why not simply bundle them all together in ports/pl/ and of course strip p5- > > from the names. (ports/p5/ if preferred) > > Need the name be so obtuse? We may as well waste an extra couple > bytes and call it "perl" instead of "p". > > -john > Exactly my first thoughts on the subject, but then some might push to move the perl port itself into there, which would be wrong. perl is a fine choice, so long as people understand that it is intended only for perl5 scripts. Adam From owner-freebsd-ports Wed Feb 26 11:57:59 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA29209 for ports-outgoing; Wed, 26 Feb 1997 11:57:59 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA29202 for ; Wed, 26 Feb 1997 11:57:57 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by who.cdrom.com (8.7.5/8.6.11) with ESMTP id LAA14799 for ; Wed, 26 Feb 1997 11:57:54 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id UAA00718; Wed, 26 Feb 1997 20:08:44 GMT From: Adam David Message-Id: <199702262008.UAA00718@veda.is> Subject: Re: make -k oddities In-Reply-To: from Warner Losh at "Feb 26, 97 11:37:53 am" To: imp@village.org (Warner Losh) Date: Wed, 26 Feb 1997 20:08:43 +0000 (GMT) Cc: freebsd-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-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > : make -k means "ignore error return from command" but bsd.port.mk uses the > : error return to bail out at that point. > > Not quiet. make -i means "ignore error return from command" but -k > means this with the restriction that nothing that depends on those > things returning an error should be built. No fetch should imply no > build, but doesn't. We don't have FETCH_COOKIE, and if we did the dependency would cause make -k to skip the build as expected. There must have been a good reason not to implement FETCH_COOKIE? -- Adam David From owner-freebsd-ports Wed Feb 26 12:00:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA29397 for ports-outgoing; Wed, 26 Feb 1997 12:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA29372; Wed, 26 Feb 1997 12:00:03 -0800 (PST) Resent-Date: Wed, 26 Feb 1997 12:00:03 -0800 (PST) Resent-Message-Id: <199702262000.MAA29372@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, obrien@NUXI.com Received: from relay.nuxi.com (nuxi.ucdavis.edu [128.120.37.176]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA28709 for ; Wed, 26 Feb 1997 11:51:37 -0800 (PST) Received: from dragon.nuxi.com (reqd-005.ucdavis.edu [128.120.251.125]) by relay.nuxi.com (8.8.4/8.6.12) with ESMTP id LAA04625 for ; Wed, 26 Feb 1997 11:52:24 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.5/8.7.3) id TAA03267; Wed, 26 Feb 1997 19:51:32 GMT Message-Id: <199702261951.TAA03267@dragon.nuxi.com> Date: Wed, 26 Feb 1997 19:51:32 GMT From: "David O'Brien" Reply-To: obrien@NUXI.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2823: su2 uses /etc/super-users rather than $PREFIX/etc/super-users Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2823 >Category: ports >Synopsis: su2 uses /etc/super-users rather than $PREFIX/etc/super-user >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 12:00:02 PST 1997 >Last-Modified: >Originator: David O'Brien >Organization: The FreeBSD Project >Release: FreeBSD 2.2-970222-GAMMA i386 >Environment: As of Feb 26, 1997 >Description: Shouldn't su2's config file reside in $PREFIX/etc ? >How-To-Repeat: As root: strings /usr/local/bin/su2 |grep super >Fix: :-) make patch-ac >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Feb 26 12:02:55 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA29528 for ports-outgoing; Wed, 26 Feb 1997 12:02:55 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id MAA29521 for ; Wed, 26 Feb 1997 12:02:46 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id UAA00730; Wed, 26 Feb 1997 20:14:19 GMT From: Adam David Message-Id: <199702262014.UAA00730@veda.is> Subject: Re: make -k oddities In-Reply-To: from Warner Losh at "Feb 26, 97 11:43:39 am" To: imp@village.org (Warner Losh) Date: Wed, 26 Feb 1997 20:14:18 +0000 (GMT) Cc: asami@vader.cs.berkeley.edu, freebsd-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-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > -k Continue processing after errors are encountered, but only on > those targets that do not depend on the target whose creation > caused the error. > which implies that if you do a make -k as a submake, it should return > an error if anything it ran caused an error (excluding those things > explicitly ignored). > > Warner > Put this way, seems irrefutable. Go for it. Adam From owner-freebsd-ports Wed Feb 26 14:31:30 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA07565 for ports-outgoing; Wed, 26 Feb 1997 14:31:30 -0800 (PST) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.fr [193.56.58.253]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA07556 for ; Wed, 26 Feb 1997 14:31:21 -0800 (PST) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.fr [193.56.58.33]) by mexico.brainstorm.eu.org (8.8.4/8.8.4) with ESMTP id XAA10468 for ; Wed, 26 Feb 1997 23:31:04 +0100 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.8.4/8.6.12) with UUCP id XAA03939 for freebsd-ports@freebsd.org; Wed, 26 Feb 1997 23:30:45 +0100 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.5/keltia-uucp-2.9) id WAA13422; Wed, 26 Feb 1997 22:48:30 +0100 (CET) Message-ID: <19970226224830.CK43525@keltia.freenix.fr> Date: Wed, 26 Feb 1997 22:48:30 +0100 From: roberto@keltia.freenix.fr (Ollivier Robert) To: freebsd-ports@freebsd.org Subject: Re: Perl5 modules References: <199702261945.TAA00656@veda.is> X-Mailer: Mutt 0.60,1-3,9 Mime-Version: 1.0 X-Operating-System: FreeBSD 3.0-CURRENT ctm#2999 In-Reply-To: <199702261945.TAA00656@veda.is>; from Adam David on Feb 26, 1997 19:45:33 +0000 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk According to Adam David: > perl is a fine choice, so long as people understand that it is intended only > for perl5 scripts. Perl4 is now officially dead and all references to Perl5 have been removed from the books by Wall/Christiansen/Schwarz. There is now only one perl, Perl. ports/perl is fine :-) -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #39: Sun Feb 2 22:12:44 CET 1997 From owner-freebsd-ports Wed Feb 26 15:39:59 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA11410 for ports-outgoing; Wed, 26 Feb 1997 15:39:59 -0800 (PST) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA11405 for ; Wed, 26 Feb 1997 15:39:56 -0800 (PST) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.4/8.7.3) id PAA03965; Wed, 26 Feb 1997 15:39:12 -0800 (PST) Date: Wed, 26 Feb 1997 15:39:12 -0800 (PST) Message-Id: <199702262339.PAA03965@vader.cs.berkeley.edu> To: adam@veda.is CC: imp@village.org, freebsd-ports@freebsd.org In-reply-to: <199702262008.UAA00718@veda.is> (message from Adam David on Wed, 26 Feb 1997 20:08:43 +0000 (GMT)) Subject: Re: make -k oddities From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * We don't have FETCH_COOKIE, and if we did the dependency would cause make -k * to skip the build as expected. This has nothing to do with cookies, Adam. Look at the "fetch:" target, and see how it returns 0 if "make -k" doesn't report failure. Now look at the other targets (with my proposed patch), and see how the cookies will be created anyway if "make -k" doesn't report failure. * There must have been a good reason not to implement FETCH_COOKIE? Yes. ${WRKDIR} is not created at that point. :) I didn't bother trying to work around that because invoking do-fetch on an already-fetched set of distfiles in harmless (basically it will just check the files are there and return 0). Satoshi From owner-freebsd-ports Wed Feb 26 15:58:50 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA12880 for ports-outgoing; Wed, 26 Feb 1997 15:58:50 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA12056 for freebsd-ports@freebsd.org; Wed, 26 Feb 1997 15:48:55 -0800 (PST) Date: Wed, 26 Feb 1997 15:48:55 -0800 (PST) Message-Id: <199702262348.PAA12056@freefall.freebsd.org> From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-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 S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1997/01/01] ports/2352 ports wu-ftp port does not work with DES crypte o [1997/02/26] ports/2821 ports XFree86 distributed with 2.2-GAMMA corrup 2 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/10/11] bin/1773 ports A NULL pointer causing segmentation core o [1996/12/17] ports/2235 ports tcp-wrapper port doesn't log under 2.1.6R s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1997/02/13] ports/2731 ports new port: Tcl 8.0A2 o [1997/02/15] ports/2746 ports Updated port o [1997/02/17] ports/2756 ports top causes segmentation fault o [1997/02/18] ports/2766 ports sudo doesn't let you enter password somet o [1997/02/20] ports/2777 ports sudo does not wait for password entry o [1997/02/24] ports/2809 ports Fetching x11/xfed is broken. 9 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/04/23] ports/1155 ports systat or top display disagreeing informa o [1996/08/21] ports/1520 ports sudo dosn't recognise certain passwords a a [1996/08/28] ports/1550 ports "make install" needs to know how to updat o [1996/09/21] ports/1660 ports Updating of jp-fvwm2-port(-> jp-fvwm2-por o [1996/10/31] ports/1939 ports exodus port doesn't build with new g++-2. o [1996/11/24] ports/2096 ports ImageMagick outdated, lzw not supported o [1996/12/03] ports/2145 ports qpopper bulletin support broken o [1996/12/08] ports/2182 ports FreeBSD's and X-32's list of locales do n o [1996/12/19] ports/2251 ports New *almost* port: Scilab o [1996/12/21] ports/2264 ports latex* ports need updating o [1997/01/05] ports/2379 ports New URT port o [1997/01/10] ports/2445 ports New port : Cosmo Gang the Puzzle (games/c o [1997/01/12] ports/2477 ports Tcl 8.0 a1 port submission. o [1997/01/12] ports/2478 ports Tk 8.0a1 port submission. o [1997/01/19] ports/2530 ports New port: xpuzzletama (games/xpuzzletama) o [1997/01/24] ports/2571 ports Maxima lacks pkg directory o [1997/01/25] ports/2590 ports new ports sollection -- jp-a2ps-1.39 o [1997/01/30] ports/2620 ports classes.zip are looked for in the wrong d o [1997/02/02] ports/2639 ports FreeBSD 2.2 teTeX-0.4 package does not in o [1997/02/06] ports/2677 ports Various ports have checksum problems o [1997/02/08] ports/2694 ports VFlib ports is updated. o [1997/02/13] ports/2722 ports New port: newosaka o [1997/02/13] ports/2723 ports New port: recjis o [1997/02/14] ports/2741 ports jp-vfghostscript-4.03 is updated. o [1997/02/16] ports/2750 ports New port - jp-iv o [1997/02/18] ports/2758 ports multilingual nvi ports put in incoming di o [1997/02/18] ports/2760 ports New ports, jp-fvwm-2.0.45 o [1997/02/18] ports/2761 ports Update ports, jp-skk-9.6 o [1997/02/18] ports/2764 ports new ports of Japanized Tcl/Tk o [1997/02/18] ports/2765 ports gopher port uses gets() o [1997/02/20] ports/2778 ports New Port: Version of traceroute which pri o [1997/02/21] ports/2794 ports ssh fails to exec ssh-askpass o [1997/02/21] ports/2796 ports olvwm thinks TrueColor is mono o [1997/02/22] ports/2797 ports New Port. o [1997/02/22] ports/2799 ports Submission of Angband 2.8.0 port. o [1997/02/24] ports/2808 ports New port for XaoS-2.2 uploaded o [1997/02/25] ports/2816 ports New port - aftp ftp-like shell for apple2 o [1997/02/25] ports/2817 ports New port - prodosemu is an Apple2e prodos o [1997/02/25] ports/2818 ports New port - dvi2tty displays dvi files on o [1997/02/26] ports/2823 ports su2 uses /etc/super-users rather than $PR 40 problems total. From owner-freebsd-ports Wed Feb 26 18:58:22 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA26207 for ports-outgoing; Wed, 26 Feb 1997 18:58:22 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA26195 for ; Wed, 26 Feb 1997 18:58:19 -0800 (PST) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by who.cdrom.com (8.7.5/8.6.11) with ESMTP id SAA15483 for ; Wed, 26 Feb 1997 18:58:17 -0800 (PST) Received: (from adam@localhost) by veda.is (8.8.4/8.7.3) id DAA01353; Thu, 27 Feb 1997 03:10:22 GMT From: Adam David Message-Id: <199702270310.DAA01353@veda.is> Subject: Re: make -k oddities In-Reply-To: <199702262339.PAA03965@vader.cs.berkeley.edu> from Satoshi Asami at "Feb 26, 97 03:39:12 pm" To: asami@vader.cs.berkeley.edu (Satoshi Asami) Date: Thu, 27 Feb 1997 03:10:20 +0000 (GMT) Cc: imp@village.org, freebsd-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-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > * We don't have FETCH_COOKIE, and if we did the dependency would cause > * make -k to skip the build as expected. > > This has nothing to do with cookies, Adam. Look at the "fetch:" > target, and see how it returns 0 if "make -k" doesn't report failure. > Now look at the other targets (with my proposed patch), and see how > the cookies will be created anyway if "make -k" doesn't report > failure. I had a hypothetical bsd.port.mk in mind, creating *_COOKIE at a deeper level. My eyelids were snapping shut after a long day and I missed seeing that the return value of the inner make is just as significant in this context. I withdraw my previous comment as non-applicable. Adam From owner-freebsd-ports Wed Feb 26 21:20:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA03929 for ports-outgoing; Wed, 26 Feb 1997 21:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA03921; Wed, 26 Feb 1997 21:20:02 -0800 (PST) Resent-Date: Wed, 26 Feb 1997 21:20:02 -0800 (PST) Resent-Message-Id: <199702270520.VAA03921@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.VAA03796;Wed; (8.8.5/8.8.5);, 26 Feb 1997 21:16:37.-0800 (PST) Message-Id: <199702270516.VAA03796@freefall.freebsd.org> Date: Wed, 26 Feb 1997 21:16:37 -0800 (PST) From: itojun@itojun.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/2824: New port: multilingual nvi (supersedes ports/2758) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2824 >Category: ports >Synopsis: New port: multilingual nvi (supersedes ports/2758) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 21:20:01 PST 1997 >Last-Modified: >Originator: Jun-ichiro Itoh >Organization: Keio University >Release: FreeBSD 2.2-ALPHA i386 >Environment: FreeBSD 2.2-ALPHA i386 FreeBSD 2.2-BETA i386 (should work) >Description: I've put a new port into ftp.freebsd.org/pub/FreeBSD/incoming/ named nvi-1.79.m17n-970222-2400.FreeBSD-ports.tar.gz. Please merge it into 2.2-RELEASE if time allows. It supersedes the port i've sent before, identified as ports/2758. Thanks! >How-To-Repeat: (none) >Fix: (none) >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Feb 27 01:20:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA14124 for ports-outgoing; Thu, 27 Feb 1997 01:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA14118; Thu, 27 Feb 1997 01:20:02 -0800 (PST) Resent-Date: Thu, 27 Feb 1997 01:20:02 -0800 (PST) Resent-Message-Id: <199702270920.BAA14118@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, kiri@kiri.toba-cmt.ac.jp Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA13810 for ; Thu, 27 Feb 1997 01:14:42 -0800 (PST) Received: from kiri.toba-cmt.ac.jp (kiri.toba-cmt.ac.jp [202.26.248.91]) by who.cdrom.com (8.7.5/8.6.11) with ESMTP id BAA16640 for ; Thu, 27 Feb 1997 01:14:37 -0800 (PST) Received: (from kiri@localhost) by kiri.toba-cmt.ac.jp (8.8.5/8.8.5) id SAA10890; Thu, 27 Feb 1997 18:15:15 +0900 (JST) Message-Id: <199702270915.SAA10890@kiri.toba-cmt.ac.jp> Date: Thu, 27 Feb 1997 18:15:15 +0900 (JST) From: Kazuhiko Kiriyama(System administrator) Reply-To: kiri@kiri.toba-cmt.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2825: Update the port(jp-camltk41-1.0):japanese/camltk41. Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2825 >Category: ports >Synopsis: Update the port(jp-camltk41-1.0):japanese/camltk41. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 01:20:01 PST 1997 >Last-Modified: >Originator: Kazuhiko Kiriyama >Organization: Toba National College of Maritime Technology. Department of Electronic Mechanical Engineering >Release: FreeBSD 2.2-970205-GAMMA i386 >Environment: >Description: I've updated so as to using new japanese Tcl/Tk port which will be send-pred soon by TAGUCHI Takeshi(taguchi@tohoku.iij.ad.jp). I put the diff from ports-current(japanese/camltk41) in "Fix:". >How-To-Repeat: >Fix: diff -aurN ../../current/ports/japanese/camltk41/Makefile ./Makefile --- ../../current/ports/japanese/camltk41/Makefile Wed Jan 15 17:06:13 1997 +++ ./Makefile Thu Feb 27 18:11:51 1997 @@ -15,13 +15,12 @@ MAINTAINER= kiri@kiri.toba-cmt.ac.jp -LIB_DEPENDS= tcl75jp\\.:${PORTSDIR}/japanese/tcl75 \ - tk41jp\\.:${PORTSDIR}/japanese/tk41 +LIB_DEPENDS= tcl76jp\\.:${PORTSDIR}/japanese/tcl76 \ + tk42jp\\.:${PORTSDIR}/japanese/tk42 BUILD_DEPENDS= ocaml:${PORTSDIR}/lang/ocaml -DEPENDS= ${PORTSDIR}/japanese/tk41 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} --tk-src-prefix=${PORTSDIR} \ +CONFIGURE_ARGS= --prefix=${PREFIX} --tcl-version=7.6jp --tk-version=4.2jp \ --x-includes=${X11BASE}/include \ --with-config=site.config USE_GMAKE= yes diff -aurN ../../current/ports/japanese/camltk41/patches/patch-aa ./patches/patch-aa --- ../../current/ports/japanese/camltk41/patches/patch-aa Mon Jan 6 23:28:56 1997 +++ ./patches/patch-aa Wed Feb 19 14:47:50 1997 @@ -10,12 +10,12 @@ ## Location of Tk sources # In this directory, there are generic, unix, etc... -TK_SRC=/usr/local/src/tk41 -+TK_SRC=${tk_src_prefix}/japanese/tk41/work/tk4.1 ++TK_SRC=${prefix}/include/tk${tk_version} ## Compilation and link flags for Tcl/Tk applications ## Preprocessor flags to find tcl.h and tk.h -#CPPFLAGS=-I/home/cahors/furuse/sun/include -+CPPFLAGS="-I${prefix}/include -I${x_includes}" ++CPPFLAGS="-I${prefix}/include/tk${tk_version} -I${prefix}/include/tcl${tcl_version} -I${x_includes}" ## ld flags to add path to libtcl*.* and libtk*.* -#LDFLAGS=-L/home/cahors/furuse/sun/lib +LDFLAGS=-L${prefix}/lib diff -aurN ../../current/ports/japanese/camltk41/patches/patch-ab ./patches/patch-ab --- ../../current/ports/japanese/camltk41/patches/patch-ab Mon Jan 6 23:28:56 1997 +++ ./patches/patch-ab Wed Feb 19 14:46:33 1997 @@ -1,26 +1,36 @@ ---- configure Mon Dec 2 22:14:09 1996 -+++ configure Sun Jan 5 09:04:29 1997 -@@ -22,6 +22,7 @@ +--- configure.orig Mon Dec 2 22:14:09 1996 ++++ configure Wed Feb 19 14:44:02 1997 +@@ -22,6 +22,8 @@ build=NONE cache_file=./config.cache exec_prefix=NONE -+tk_src_prefix= ++tcl_version= ++tk_version= host=NONE no_create= nonopt=NONE -@@ -376,6 +377,15 @@ +@@ -376,6 +378,24 @@ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries="$ac_optarg" ;; + -+ -tk-src-prefix | --tk-src-prefix | --tk-src-prefi | --tk-src-pref \ -+ | --tk-src-pre | --tk-src-pr | --tk-src-p | --tk-src- | --tk-src \ -+ | --tk-sr | --tk-s) -+ ac_prev=tk-src-prefix ;; -+ -tk-src-prefix=* | --tk-src-prefix=* | --tk-src-prefi=* | --tk-src-pref=* \ -+ | --tk-src-pre=* | --tk-src-pr=* | --tk-src-p=* | --tk-src-=* | --tk-src=* \ -+ | --tk-sr=* | --tk-s=*) -+ tk_src_prefix="$ac_optarg" ;; ++ -tcl-version | --tcl-version | --tcl-versio | --tcl-versi \ ++ | --tcl-vers | --tcl-ver \ ++ | --tcl-ve | --tcl-v) ++ ac_prev=tcl-version ;; ++ -tcl-version=* | --tcl-version=* | --tcl-versio=* | --tcl-versi=* \ ++ | --tcl-vers=* | --tcl-ver=* \ ++ | --tcl-ve=* | --tcl-v=*) ++ tcl_version="$ac_optarg" ;; ++ ++ -tk-version | --tk-version | --tk-versio | --tk-versi \ ++ | --tk-vers | --tk-ver \ ++ | --tk-ve | --tk-v) ++ ac_prev=tk-version ;; ++ -tk-version=* | --tk-version=* | --tk-versio=* | --tk-versi=* \ ++ | --tk-vers=* | --tk-ver=* \ ++ | --tk-ve=* | --tk-v=*) ++ tk_version="$ac_optarg" ;; -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; } ;; diff -aurN ../../current/ports/japanese/camltk41/pkg/COMMENT ./pkg/COMMENT --- ../../current/ports/japanese/camltk41/pkg/COMMENT Fri Jan 3 21:13:21 1997 +++ ./pkg/COMMENT Thu Feb 27 17:48:11 1997 @@ -1 +1 @@ -A library for interfacing Objective Caml with Tcl7.5jp/Tk4.1jp. +A library for interfacing Objective Caml with Tcl7.6jp/Tk4.2jp. diff -aurN ../../current/ports/japanese/camltk41/pkg/PLIST ./pkg/PLIST --- ../../current/ports/japanese/camltk41/pkg/PLIST Fri Jan 3 21:13:21 1997 +++ ./pkg/PLIST Wed Feb 19 17:44:07 1997 @@ -147,3 +147,5 @@ lib/ocaml/camltk41/wm.mli share/doc/camltk/INSTALL share/doc/camltk/README +@dirrm lib/ocaml/camltk41 +@dirrm share/doc/camltk >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Feb 27 01:30:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA14720 for ports-outgoing; Thu, 27 Feb 1997 01:30:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA14714; Thu, 27 Feb 1997 01:30:03 -0800 (PST) Resent-Date: Thu, 27 Feb 1997 01:30:03 -0800 (PST) Resent-Message-Id: <199702270930.BAA14714@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, kiri@kiri.toba-cmt.ac.jp Received: from kiri.toba-cmt.ac.jp (kiri.toba-cmt.ac.jp [202.26.248.91]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA14480 for ; Thu, 27 Feb 1997 01:27:54 -0800 (PST) Received: (from kiri@localhost) by kiri.toba-cmt.ac.jp (8.8.5/8.8.5) id SAA11179; Thu, 27 Feb 1997 18:29:43 +0900 (JST) Message-Id: <199702270929.SAA11179@kiri.toba-cmt.ac.jp> Date: Thu, 27 Feb 1997 18:29:43 +0900 (JST) From: Kazuhiko Kiriyama(System administrator) Reply-To: kiri@kiri.toba-cmt.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2826: Update the port(jp-mmm-0.40-1.0):japanese/mmm-0.40. Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2826 >Category: ports >Synopsis: Update the port(jp-mmm-0.40):japanese/mmm. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 01:30:01 PST 1997 >Last-Modified: >Originator: Kazuhiko Kiriyama >Organization: Toba National College of Maritime Technology. Department of Electronic Mechanical Engineering >Release: FreeBSD 2.2-970205-GAMMA i386 >Environment: >Description: I've updated so as to using new japanese Tcl/Tk port which will be send-pred soon by Mr.TAGUCHI Takeshi(taguchi@tohoku.iij.ad.jp). I put the diff from ports-current(japanese/mmm) in "Fix:". >How-To-Repeat: >Fix: diff -aurN ../../current/ports/japanese/mmm/Makefile ./Makefile --- ../../current/ports/japanese/mmm/Makefile Wed Jan 15 17:06:14 1997 +++ ./Makefile Fri Feb 14 23:22:25 1997 @@ -15,8 +15,8 @@ MAINTAINER= kiri@kiri.toba-cmt.ac.jp -LIB_DEPENDS= tcl75jp\\.:${PORTSDIR}/japanese/tcl75 \ - tk41jp\\.:${PORTSDIR}/japanese/tk41 +LIB_DEPENDS= tcl76jp\\.:${PORTSDIR}/japanese/tcl76 \ + tk42jp\\.:${PORTSDIR}/japanese/tk42 BUILD_DEPENDS= ocaml:${PORTSDIR}/lang/ocaml \ ${PREFIX}/lib/ocaml/camltk41/libcamltk41.a:${PORTSDIR}/japanese/camltk41 diff -aurN ../../current/ports/japanese/mmm/files/prefs ./files/prefs --- ../../current/ports/japanese/mmm/files/prefs Fri Jan 3 21:22:01 1997 +++ ./files/prefs Sat Feb 15 01:02:38 1997 @@ -15,7 +15,7 @@ DTD:%dtd% User Agent:%user_agent%
font:-*-helvetica-medium-o-normal-*-14-*-*-*-*-*-iso8859-1 -General trace:1 +General trace:0 Attempt smooth scroll:%attempt_smooth_scroll% Max number of documents:30 Always Use Proxy:%always_use_proxy% @@ -42,8 +42,8 @@

font:-*-helvetica-bold-r-normal-*-18-*-*-*-*-*-iso8859-1 Japanese mode:1 HTML Lexical errors:0 -Table debug:1 -HTTP Requests:1 +Table debug:0 +HTTP Requests:0 Image loading:%image_loading% Default font:-*-helvetica-medium-r-normal-*-14-*-*-*-*-*-iso8859-1 Hotlist program:%hotlist_program% diff -aurN ../../current/ports/japanese/mmm/pkg/DESCR ./pkg/DESCR --- ../../current/ports/japanese/mmm/pkg/DESCR Fri Jan 3 21:22:03 1997 +++ ./pkg/DESCR Fri Feb 21 10:58:54 1997 @@ -27,7 +27,7 @@ % /usr/local/share/doc/mmm/user-install -While various custumization might be available, only "Proxy host name" +While various customization might be available, only "Proxy host name" should be set if you use in default setting. After site installation, you may be get start MMM. Just type diff -aurN ../../current/ports/japanese/mmm/pkg/PLIST ./pkg/PLIST --- ../../current/ports/japanese/mmm/pkg/PLIST Mon Jan 6 23:30:56 1997 +++ ./pkg/PLIST Wed Feb 19 16:56:42 1997 @@ -41,3 +41,7 @@ share/examples/mmm/timeout_on_headers.hlp share/examples/mmm/user-install share/examples/mmm/user_agent.hlp +@dirrm lib/mmm/mdk +@dirrm lib/mmm +@dirrm share/doc/mmm +@dirrm share/examples/mmm >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Feb 27 10:09:26 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA10809 for ports-outgoing; Thu, 27 Feb 1997 10:09:26 -0800 (PST) Received: from plato.salford.ac.uk (plato.salford.ac.uk [146.87.1.3]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA10804 for ; Thu, 27 Feb 1997 10:09:22 -0800 (PST) Received: (qmail 18758 invoked by uid 141); 27 Feb 1997 18:08:49 -0000 Date: Thu, 27 Feb 1997 18:08:49 +0000 (GMT) From: Mark Powell To: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org, squid-users@nlanr.net Subject: Squid 1.1.6 DNS problems with FreeBSD Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, Been running squid-1.1.beta23 find for ages thought I'd upgrade. Installed 1.1.6 (with latest fixes.patch.) Setup okay. Looked at a few pages. Soon got DNS Lookup failures. I could pull up at page say: www.freebsd.org no problem, but then selecting anything off the page would give the error. The host is fine as the main page just cam from it. Happens with many hosts. The hosts work fine if I turn proxies off in Netscape. Going back to 1.1.beta23 works fine again. Tried a couple of other versions 1.1.[234] all same behaviour. Checking the log I can see success for the host and then later failure for the host. If I reload the home page I get success again??? Any ideas? Cheers. Mark Powell - Unix Information Officer - Clifford Whitworth Building A.I.S., University of Salford, Salford, Manchester, UK. Tel: +44 161 745 5936 Fax: +44 161 736 3596 Email: mark@salford.ac.uk finger mark@ucsalf.ac.uk (for PGP key) Home Page From owner-freebsd-ports Thu Feb 27 15:52:03 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA25183 for ports-outgoing; Thu, 27 Feb 1997 15:52:03 -0800 (PST) Received: from vector.jhs.no_domain (slip139-92-4-66.mu.de.ibm.net [139.92.4.66]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA25134 for ; Thu, 27 Feb 1997 15:50:58 -0800 (PST) Received: from vector.jhs.no_domain (localhost [127.0.0.1]) by vector.jhs.no_domain (8.7.5/8.6.9) with ESMTP id AAA12637 for ; Fri, 28 Feb 1997 00:51:15 +0100 (MET) Message-Id: <199702272351.AAA12637@vector.jhs.no_domain> Date: Fri, 28 Feb 1997 00:49:26 +0100 From: "Julian H. Stacey" Subject: Re: Anybody looked at updating hylafax port to 4.x? Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk To: undisclosed-recipients:; ------- Blind-Carbon-Copy To: Jaye Mathisen cc: hylafax@freebsd.org Subject: Re: Anybody looked at updating hylafax port to 4.x? From: "Julian H. Stacey" Reply-To: hylafax@freebsd.org, jhs@freebsd.org X-Email: jhs@freebsd.org, Fallback: jhs@gil.physik.rwth-aachen.de X-Organization: Vector Systems Ltd. X-Mailer: EXMH 1.6.7, PGP available X-Address: Holz Strasse 27d, 80469 Munich, Germany X-Tel: +49.89.268616 X-Fax: +49.89.2608126 X-Web: http://www.freebsd.org/~jhs/ In-reply-to: Your message of "Tue, 25 Feb 1997 15:11:08 PST." Date: Fri, 28 Feb 1997 00:49:26 +0100 Sender: jhs@vector.jhs.no_domain Hi, Reference: > From: Jaye Mathisen > Subject: Re: Anybody looked at updating hylafax port to 4.x? Wrong list, so moved by use of labelling this reply: To: Jaye Mathisen bcc: ports@freebsd.org cc: hylafax@freebsd.org Reply-To: hylafax@freebsd.org,jhs@freebsd.org Answer: yes it's been discussed, yes when I get round to it, not very soon, (kinda busy). Was a hold point on a new libtiff port (made a great excuse for me to put it off ;-) can't remember if the necessary libtiff now committed, anyone ? Please subscribe hylafax@freebsd.org if you use or are interested in hylafax on freebsd Followup please to hylafax@freebsd.org not ports@freebsd.org Thanks :-) Julian - -- Julian H. Stacey jhs@freebsd.org http://www.freebsd.org/~jhs/ ------- End of Blind-Carbon-Copy From owner-freebsd-ports Thu Feb 27 17:38:25 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA00508 for ports-outgoing; Thu, 27 Feb 1997 17:38:25 -0800 (PST) Received: from mail.webspan.net (mail.webspan.net [206.154.70.7]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA00502; Thu, 27 Feb 1997 17:38:21 -0800 (PST) Received: from orion.webspan.net (orion.webspan.net [206.154.70.5]) by mail.webspan.net (WEBSPAN/970116) with ESMTP id UAA11579; Thu, 27 Feb 1997 20:36:20 -0500 (EST) Received: from orion.webspan.net (localhost [127.0.0.1]) by orion.webspan.net (WEBSPN/970116) with ESMTP id UAA20495; Thu, 27 Feb 1997 20:36:19 -0500 (EST) To: Mark Powell cc: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org, squid-users@nlanr.net From: "Gary Palmer" Subject: Re: Squid 1.1.6 DNS problems with FreeBSD In-reply-to: Your message of "Thu, 27 Feb 1997 18:08:49 GMT." Date: Thu, 27 Feb 1997 20:36:19 -0500 Message-ID: <20493.857093779@orion.webspan.net> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Mark Powell wrote in message ID : > Hi, > Been running squid-1.1.beta23 find for ages thought I'd upgrade. > Installed 1.1.6 (with latest fixes.patch.) Setup okay. Looked at a few > pages. Soon got DNS Lookup failures. I could pull up at page say: > www.freebsd.org no problem, but then selecting anything off the page would > give the error. The host is fine as the main page just cam from it. > Happens with many hosts. The hosts work fine if I turn proxies off in > Netscape. Going back to 1.1.beta23 works fine again. Tried a couple of > other versions 1.1.[234] all same behaviour. > Checking the log I can see success for the host and then later failure for > the host. If I reload the home page I get success again??? Isn't squid 1.1.7 out now? squid 1.1.6 (I think) lost it's marbles and quit with SIGABRT according to the kernel logs. Luckily this isn't a production box yet (nothing obvious in the logs as to why it crashed either) Gary -- Gary Palmer FreeBSD Core Team Member FreeBSD: Turning PC's into workstations. See http://www.FreeBSD.ORG/ for info From owner-freebsd-ports Thu Feb 27 19:30:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA08006 for ports-outgoing; Thu, 27 Feb 1997 19:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA07984; Thu, 27 Feb 1997 19:30:04 -0800 (PST) Resent-Date: Thu, 27 Feb 1997 19:30:04 -0800 (PST) Resent-Message-Id: <199702280330.TAA07984@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, mita@jp.FreeBSD.org Received: from hanpen.fujita3.iis.u-tokyo.ac.jp (hanpen.fujita3.iis.u-tokyo.ac.jp [157.82.109.66]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA07054 for ; Thu, 27 Feb 1997 19:23:48 -0800 (PST) Received: (from mita@localhost) by hanpen.fujita3.iis.u-tokyo.ac.jp (8.8.2/8.8.2) id MAA02369; Fri, 28 Feb 1997 12:24:26 +0900 (JST) Message-Id: <199702280324.MAA02369@hanpen.fujita3.iis.u-tokyo.ac.jp> Date: Fri, 28 Feb 1997 12:24:26 +0900 (JST) From: mita@jp.FreeBSD.org Reply-To: mita@jp.FreeBSD.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2830: ports/japanese/vfghostscript4/files/gdevep82.patch should be fixed. Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2830 >Category: ports >Synopsis: bug fix for jp-vfghostscript4 ports >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 19:30:02 PST 1997 >Last-Modified: >Originator: MITA Yoshio >Organization: IIS, the University of TOKYO >Release: FreeBSD 2.2-ALPHA i386 >Environment: current bsd.port.*mk + 2.2-ALPHA >Description: In jp-vfghostscript4.03 ports collection, margins set in EPSON printer driver was wrong. This should be immediately fixed because the driver is now widely used for EPSON ESPER LASER (One of the best selling printer in JAPAN)... Hopefully before 2.2-RELEASE, is it no more possible?? >How-To-Repeat: >Fix: Apply this patch, please. diff -rcN vfghostscript4.orig/files/gdevep82.patch vfghostscript4/files/gdevep82.patch *** vfghostscript4.orig/files/gdevep82.patch Fri Dec 6 11:27:34 1996 --- vfghostscript4/files/gdevep82.patch Fri Feb 28 12:18:18 1997 *************** *** 50,56 **** + 83, /* width_10ths, 8.3" */ + 117, /* height_10ths, 11.7" */ + 300, 300, ! + 0.20, 0.20, 0.20, 0.20, /* margins, lbrt */ + 1, epag300_print_page); + + gx_device_printer gs_epag600_device = --- 50,56 ---- + 83, /* width_10ths, 8.3" */ + 117, /* height_10ths, 11.7" */ + 300, 300, ! + 0.0, 0.0, 0.0, 0.0, /* margins, lbrt */ + 1, epag300_print_page); + + gx_device_printer gs_epag600_device = *************** *** 58,64 **** + 83, /* width_10ths, 8.3" */ + 117, /* height_10ths, 11.7" */ + 600, 600, ! + 0.20, 0.20, 0.20, 0.20, /* margins, lbrt */ + 1, epag600_print_page); + + /* ------ Internal routines ------ */ --- 58,64 ---- + 83, /* width_10ths, 8.3" */ + 117, /* height_10ths, 11.7" */ + 600, 600, ! + 0.0, 0.0, 0.0, 0.0, /* margins, lbrt */ + 1, epag600_print_page); + + /* ------ Internal routines ------ */ >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Feb 27 21:27:16 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA16693 for ports-outgoing; Thu, 27 Feb 1997 21:27:16 -0800 (PST) Received: from dfw-ix8.ix.netcom.com (dfw-ix8.ix.netcom.com [206.214.98.8]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA16368; Thu, 27 Feb 1997 21:24:08 -0800 (PST) Received: (from smap@localhost) by dfw-ix8.ix.netcom.com (8.8.4/8.8.4) id XAA11900; Thu, 27 Feb 1997 23:23:25 -0600 (CST) Received: from ala-ca26-31.ix.netcom.com(207.93.42.95) by dfw-ix8.ix.netcom.com via smap (V1.3) id sma010544; Thu Feb 27 23:15:43 1997 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id VAA07973; Thu, 27 Feb 1997 21:15:40 -0800 (PST) Date: Thu, 27 Feb 1997 21:15:40 -0800 (PST) Message-Id: <199702280515.VAA07973@silvia.HIP.Berkeley.EDU> To: committers@freebsd.org CC: ports@freebsd.org In-reply-to: <13513.857056627@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: 10 day countdown in 2.2-GAMMA From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * From: "Jordan K. Hubbard" * * I think we're in the home stretch, folks. I'd like to call for a 10 * day countdown to a RELENG_2_2 branch freeze, ending on March 9th. I'd * roll 2.2-RELEASE on March 10th. Ok -- that means I'm going to push the ports freeze back another week. New freeze date: 3/7 12:01AM (PST). Satoshi From owner-freebsd-ports Fri Feb 28 01:15:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA05943 for ports-outgoing; Fri, 28 Feb 1997 01:15:06 -0800 (PST) Received: from plato.salford.ac.uk (plato.salford.ac.uk [146.87.1.3]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id BAA05774 for ; Fri, 28 Feb 1997 01:14:19 -0800 (PST) Received: (qmail 22171 invoked by uid 141); 28 Feb 1997 09:14:10 -0000 Date: Fri, 28 Feb 1997 09:14:10 +0000 (GMT) From: Mark Powell To: Gary Palmer cc: Mark Powell , freebsd-ports@freebsd.org, freebsd-questions@freebsd.org, squid-users@nlanr.net Subject: Re: Squid 1.1.6 DNS problems with FreeBSD In-Reply-To: <20493.857093779@orion.webspan.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Thu, 27 Feb 1997, Gary Palmer wrote: > Mark Powell wrote in message ID > : > > Hi, > > Been running squid-1.1.beta23 find for ages thought I'd upgrade. > > Installed 1.1.6 (with latest fixes.patch.) Setup okay. Looked at a few > > pages. Soon got DNS Lookup failures. I could pull up at page say: > > www.freebsd.org no problem, but then selecting anything off the page would > > give the error. The host is fine as the main page just cam from it. > > Happens with many hosts. The hosts work fine if I turn proxies off in > > Netscape. Going back to 1.1.beta23 works fine again. Tried a couple of > > other versions 1.1.[234] all same behaviour. > > Checking the log I can see success for the host and then later failure for > > the host. If I reload the home page I get success again??? > > Isn't squid 1.1.7 out now? squid 1.1.6 (I think) lost it's marbles and > quit with SIGABRT according to the kernel logs. Luckily this isn't a > production box yet (nothing obvious in the logs as to why it crashed > either) Yeah. I forgot to mention that out of the box 1.1.7 falls over compiling acl.c with a parse error in squid.h. Didn't look at it. Just a #elsif in there which it didn't like. Just commented it out (didn't do anything for FreeBSD) and it seems to compile. 1.1.6 picked up my max open files correctly as 680. However, 1.1.7 reckons on 256. I've actually bumped it up to 4096, so it's completely off. Anyway, I didn't hold out much hope for 1.1.7 as all 1.1.x versions I've tried exhibit this behaviour. Same problem. Here's a log. Pulled up www.freebsd.org hoem page no problem. Click on support and it tells me the host doesn't exist. 857121069.917 1177 127.0.0.1 TCP_CLIENT_REFRESH/200 281 GET http://www.freebsd.org/gifs/new.gif - DIRECT/www.freebsd.org image/gif 857121069.917 1164 127.0.0.1 TCP_CLIENT_REFRESH/200 716 GET http://www.freebsd.org/gifs/littlelog o.gif - DIRECT/www.freebsd.org image/gif 857121073.269 4536 127.0.0.1 TCP_CLIENT_REFRESH/200 15764 GET http://www.freebsd.org/gifs/freebsd -advert.gif - DIRECT/www.freebsd.org image/gif 857121076.961 13720 127.0.0.1 TCP_CLIENT_REFRESH/200 4302 GET http://www.freebsd.org/ - DIRECT/www .freebsd.org text/html 857121078.521 1547 127.0.0.1 TCP_CLIENT_REFRESH/200 2951 GET http://www.freebsd.org/gifs/wclogo.g if - DIRECT/www.freebsd.org image/gif 857121107.912 30932 127.0.0.1 TCP_CLIENT_REFRESH/200 2632 GET http://www.freebsd.org/gifs/ugu_icon .gif - DIRECT/www.freebsd.org image/gif 857121110.871 33875 127.0.0.1 TCP_CLIENT_REFRESH/200 5450 GET http://www.freebsd.org/gifs/powerlog o.gif - DIRECT/www.freebsd.org image/gif 857121110.900 33909 127.0.0.1 TCP_CLIENT_REFRESH/200 2636 GET http://www.freebsd.org/gifs/apache.g if - DIRECT/www.freebsd.org image/gif 857121145.800 443 127.0.0.1 ERR_DNS_FAIL/400 776 GET http://www.freebsd.org/support.html - NONE/ - - Mark Powell - Unix Information Officer - Clifford Whitworth Building A.I.S., University of Salford, Salford, Manchester, UK. Tel: +44 161 745 5936 Fax: +44 161 736 3596 Email: mark@salford.ac.uk finger mark@ucsalf.ac.uk (for PGP key) Home Page From owner-freebsd-ports Fri Feb 28 02:17:28 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA18911 for ports-outgoing; Fri, 28 Feb 1997 02:17:28 -0800 (PST) Received: (from tg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA18889; Fri, 28 Feb 1997 02:17:22 -0800 (PST) Date: Fri, 28 Feb 1997 02:17:22 -0800 (PST) From: Thomas Gellekum Message-Id: <199702281017.CAA18889@freefall.freebsd.org> To: tg, freebsd-ports, tg Subject: Re: ports/2746 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Updated port of kaffe Responsible-Changed-From-To: freebsd-ports->tg Responsible-Changed-By: tg Responsible-Changed-When: Fri Feb 28 02:16:39 PST 1997 Responsible-Changed-Why: I grabbed this one. From owner-freebsd-ports Fri Feb 28 02:18:02 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA19051 for ports-outgoing; Fri, 28 Feb 1997 02:18:02 -0800 (PST) Received: (from tg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA19032; Fri, 28 Feb 1997 02:17:57 -0800 (PST) Date: Fri, 28 Feb 1997 02:17:57 -0800 (PST) From: Thomas Gellekum Message-Id: <199702281017.CAA19032@freefall.freebsd.org> To: tg, freebsd-ports, tg Subject: Re: ports/2808 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port for XaoS-2.2 uploaded Responsible-Changed-From-To: freebsd-ports->tg Responsible-Changed-By: tg Responsible-Changed-When: Fri Feb 28 02:17:32 PST 1997 Responsible-Changed-Why: I grabbed this one. From owner-freebsd-ports Fri Feb 28 10:48:47 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA10814 for ports-outgoing; Fri, 28 Feb 1997 10:48:47 -0800 (PST) Received: from bhexfld.mps.bellhowell.com ([207.50.66.101]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA10808 for ; Fri, 28 Feb 1997 10:48:45 -0800 (PST) Received: by bhexfld.mps.bellhowell.com with SMTP (Microsoft Exchange Server Internet Mail Connector Version 4.0.994.63) id <01BC257E.6FFB52E0@bhexfld.mps.bellhowell.com>; Fri, 28 Feb 1997 13:51:03 -0600 Message-ID: From: "Hinton, Mark A." To: "'ports@FreeBSD.ORG'" Subject: mkdep Date: Fri, 28 Feb 1997 12:45:10 -0600 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-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi! Do you all have any idea where I could find source to mkdep? I definitely need an mkdep or scandeps (alas, for Wintel platform), and think that my best shot is finding source and performing simple port myself... Thanks, Mark Hinton mah@mps.bellhowell.com From owner-freebsd-ports Fri Feb 28 15:20:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA24596 for ports-outgoing; Fri, 28 Feb 1997 15:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA24576; Fri, 28 Feb 1997 15:20:01 -0800 (PST) Resent-Date: Fri, 28 Feb 1997 15:20:01 -0800 (PST) Resent-Message-Id: <199702282320.PAA24576@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, soil@quick.net Received: from stanton-1-1.quick.net (soil@newport-1-10.quick.net [206.171.89.210]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA24298 for ; Fri, 28 Feb 1997 15:11:39 -0800 (PST) Received: (from soil@localhost) by stanton-1-1.quick.net (8.8.5/8.8.5) id PAA01822; Fri, 28 Feb 1997 15:11:32 -0800 (PST) Message-Id: <199702282311.PAA01822@stanton-1-1.quick.net> Date: Fri, 28 Feb 1997 15:11:32 -0800 (PST) From: soil@quick.net Reply-To: soil@quick.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2835: some paths in ports/LEGAL are incorrect Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2835 >Category: ports >Synopsis: some paths in ports/LEGAL are incorrect >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 15:20:01 PST 1997 >Last-Modified: >Originator: Josh Gilliam >Organization: >Release: FreeBSD 2.2-970205-GAMMA i386 >Environment: ports-current MD5 (LEGAL) = 8f6f8bbcb1a621f2e3d0a4541a4d5c4c >Description: JDK, contool, pgp, and tkman port paths are incorrect in LEGAL. >How-To-Repeat: # ls -dl ports/www/jdk # ls -dl ports/x11/contool # ls -dl ports/misc/pgp # ls -dl ports/x11/tkman >Fix: patch LEGAL with this diff --- LEGAL Thu Feb 27 03:21:15 1997 +++ /tmp/LEGAL Fri Feb 28 13:21:39 1997 @@ -15,7 +15,7 @@ Dist Port Why ------------------------------------------------------------------------------ -JDK-* ports/www/jdk Put copyright on packaging! +JDK-* ports/lang/jdk Put copyright on packaging! bzip-* ports/archivers/bzip Some algorithms used may infringe certain US patents. Opinions differ. Commercial @@ -23,7 +23,7 @@ to unfriendly legal action. cap60/* ports/net/cap Don't sell for profit cku190.tar.gz ports/comms/kermit Restrictive copyright -contool-* ports/x11/contool Don't incorporate the source +contool-* ports/sysutils/contool Don't incorporate the source code into a product which is subsequently sold. crack-5.0 ports/security/crack Crypto; export-controlled @@ -61,7 +61,7 @@ mutt-0.49.tar.gz ports/mail/mutt.with_pgp ITAR export-controlled netscape-* ports/net/netscape Commercial product nte-1.5a23 ports/mbone/nte Crypto; export-controlled -pgp262s.zip ports/misc/pgp* Various locality restrictions +pgp262s.zip ports/security/pgp* Various locality restrictions quake101.zip ports/games/quakeserver Shareware radius-2.4.21 ports/net/radius Restrictive copyright in src/rlmadmin.c @@ -80,7 +80,7 @@ taipei16.bdf.gz ports/chinese/big5con font is transformed from a font with restrictive copyright -tkman-1.7.3.tar.Z ports/x11/tkman Restrictive copyright +tkman-1.7.3.tar.Z ports/misc/tkman Restrictive copyright uzap.tar.gz ports/editors/uzap Restrictive copyright vfrb101e.taz ports/security/vscan Commercial software webcopy.tgz ports/www/webcopy Don't sell for profit >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Feb 28 15:30:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA25163 for ports-outgoing; Fri, 28 Feb 1997 15:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA25156; Fri, 28 Feb 1997 15:30:02 -0800 (PST) Resent-Date: Fri, 28 Feb 1997 15:30:02 -0800 (PST) Resent-Message-Id: <199702282330.PAA25156@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, xaa@stack.nl Received: from terra.stack.nl (terra.stack.nl [131.155.140.128]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA25103 for ; Fri, 28 Feb 1997 15:29:52 -0800 (PST) Received: from xaa.stack.nl (uucp@localhost) by terra.stack.nl (8.8.5) with UUCP id AAA17732 for FreeBSD-gnats-submit@freebsd.org; Sat, 1 Mar 1997 00:29:48 +0100 (MET) Received: (from xaa@localhost) by xaa.stack.nl (8.8.5/8.8.2) id AAA03627; Sat, 1 Mar 1997 00:27:35 +0100 (MET) Message-Id: <199702282327.AAA03627@xaa.stack.nl> Date: Sat, 1 Mar 1997 00:27:35 +0100 (MET) From: xaa@stack.nl Reply-To: xaa@stack.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2836: kaffe0.8.1 port (with biss-awt) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2836 >Category: ports >Synopsis: Port upgrade >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 15:30:01 PST 1997 >Last-Modified: >Originator: Mark Huizer >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: it's in /pub/FreeBSD/incoming/kaffe081.tgz on wcarchive >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Feb 28 17:41:10 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA03132 for ports-outgoing; Fri, 28 Feb 1997 17:41:10 -0800 (PST) Received: from hellcat.umd.edu (hellcat.umd.edu [129.2.70.125]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA03126 for ; Fri, 28 Feb 1997 17:41:07 -0800 (PST) Received: from carrier.eng.umd.edu (carrier.eng.umd.edu [129.2.98.188]) by hellcat.umd.edu (8.8.5/8.8.5) with ESMTP id UAA14487 for ; Fri, 28 Feb 1997 20:41:00 -0500 (EST) Received: from localhost (chuckr@localhost) by carrier.eng.umd.edu (8.8.5/8.6.4) with SMTP id UAA03323 for ; Fri, 28 Feb 1997 20:40:59 -0500 (EST) X-Authentication-Warning: carrier.eng.umd.edu: chuckr owned process doing -bs Date: Fri, 28 Feb 1997 20:40:58 -0500 (EST) From: Chuck Robey X-Sender: chuckr@carrier.eng.umd.edu To: FreeBSD Ports Subject: Objective C Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I have just finished working with David Stes for his Objective C compiler, and I have a problem. The thing needs a binary of itself to compile itself the first time, so I went thru the work with David to create one, but mine's linked with current libs. I don't want to exclude anyone using 2.1.6 or 2.2, but unless someone has a system with those available, there's no way to create those. The hard part's already done, figuring out the mods that had to be made, and I used the linux port he has as the bootstrap. If anyone wants to do a little work with me (who has either 2.1.6 or 2.2) then I'll give instructions, and we'll have some more options for folks. You need either 2.1.6 or 2.2, and a working linux-libs port from ports. Volunteers? ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Fri Feb 28 21:48:40 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA12461 for ports-outgoing; Fri, 28 Feb 1997 21:48:40 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA12456 for ; Fri, 28 Feb 1997 21:48:37 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id VAA01623; Fri, 28 Feb 1997 21:48:32 -0800 (PST) To: Chuck Robey cc: FreeBSD Ports Subject: Re: Objective C In-reply-to: Your message of "Fri, 28 Feb 1997 20:40:58 EST." Date: Fri, 28 Feb 1997 21:48:32 -0800 Message-ID: <1620.857195312@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > but mine's linked with current libs. I don't want to exclude anyone using > 2.1.6 or 2.2, but unless someone has a system with those available, > there's no way to create those. freefall is a 2.1.7 box, spatter is a 2.2 box and thud is a 3.0 box. You have accounts on all of them, so go to it! :) Jordan From owner-freebsd-ports Fri Feb 28 21:50:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA12527 for ports-outgoing; Fri, 28 Feb 1997 21:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA12521; Fri, 28 Feb 1997 21:50:02 -0800 (PST) Resent-Date: Fri, 28 Feb 1997 21:50:02 -0800 (PST) Resent-Message-Id: <199703010550.VAA12521@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, proff@iq.org Received: from profane.iq.org (profane.iq.org [203.4.184.217]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA12044 for ; Fri, 28 Feb 1997 21:41:15 -0800 (PST) Received: (from proff@localhost) by profane.iq.org (8.8.4/8.8.2) id QAA10327; Sat, 1 Mar 1997 16:36:42 +1100 (EST) Message-Id: <199703010536.QAA10327@profane.iq.org> Date: Sat, 1 Mar 1997 16:36:42 +1100 (EST) From: Julian Assange Reply-To: proff@iq.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2839: an-0.93 anagram generator port Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2839 >Category: ports >Synopsis: an-0.93 anagram generator port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 21:50:01 PST 1997 >Last-Modified: >Originator: Julian Assange >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: an v0.93 - Anagram Generator ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Generates anagrams for a phrase supplied by the user, the words used in the anagram are taken from a specified dictionary which should contain one word per line (default:/usr/dict/words). Read INSTALL for instructions on installing. Written by Richard M. Jones Many ideas contributed by Julian Assange (Let this be a lesson to you) Please mail bug reports and any suggestions to: jonesr@latcs1.cs.latrobe.edu.au Some Anagrams Found Using an-0.93 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Free Software Foundation - I'd fan out tons of freeware! National Security Agency - Lusty yearning at cocaine. President Dole - Led despite Ron. Central Intelligence Agency - Langley: Inelegant, eccentric. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Feb 28 23:13:48 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA15036 for ports-outgoing; Fri, 28 Feb 1997 23:13:48 -0800 (PST) Received: from puma.dyn.ml.org ([206.31.57.65]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA15029 for ; Fri, 28 Feb 1997 23:13:44 -0800 (PST) Received: (from mrr@localhost) by puma.dyn.ml.org (8.8.4/8.8.2) id VAA00849; Fri, 28 Feb 1997 21:11:10 -0500 (EST) Date: Fri, 28 Feb 1997 21:11:09 -0500 (EST) From: "Michael R. Rudel" To: "Jordan K. Hubbard" cc: Chuck Robey , FreeBSD Ports Subject: Re: Objective C In-Reply-To: <1620.857195312@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk What exactly are the purposes of spatter and thud? I know Freefall is the main machine, but what about the other two? Just testing? -mrr - Michael R. Rudel - mrr@puma.dyn.ml.org or mrr@forbidden-donut.anet-stl.com - Wizard: DeltaMUSH: lsds.com 4208 - - There is no pain, you are receding ... On Fri, 28 Feb 1997, Jordan K. Hubbard wrote: > > but mine's linked with current libs. I don't want to exclude anyone using > > 2.1.6 or 2.2, but unless someone has a system with those available, > > there's no way to create those. > > freefall is a 2.1.7 box, spatter is a 2.2 box and thud is a 3.0 > box. You have accounts on all of them, so go to it! :) > > Jordan > From owner-freebsd-ports Sat Mar 1 00:27:38 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA16411 for ports-outgoing; Sat, 1 Mar 1997 00:27:38 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA16405 for ; Sat, 1 Mar 1997 00:27:34 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id AAA02129; Sat, 1 Mar 1997 00:27:24 -0800 (PST) To: "Michael R. Rudel" cc: Chuck Robey , FreeBSD Ports Subject: Re: Objective C In-reply-to: Your message of "Fri, 28 Feb 1997 21:11:09 EST." Date: Sat, 01 Mar 1997 00:27:24 -0800 Message-ID: <2125.857204844@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > What exactly are the purposes of spatter and thud? > I know Freefall is the main machine, but what about the other two? Just > testing? Well, 3 branches, 3 machines. :-) But they also serve a number of other purposes - thud is Satoshi's package maintainance machine and spatter handles mail, CVSup and other duties as well. Jordan > > -mrr > > > - Michael R. Rudel > - mrr@puma.dyn.ml.org or mrr@forbidden-donut.anet-stl.com > - Wizard: DeltaMUSH: lsds.com 4208 > - > - There is no pain, you are receding ... > > On Fri, 28 Feb 1997, Jordan K. Hubbard wrote: > > > > but mine's linked with current libs. I don't want to exclude anyone usin g > > > 2.1.6 or 2.2, but unless someone has a system with those available, > > > there's no way to create those. > > > > freefall is a 2.1.7 box, spatter is a 2.2 box and thud is a 3.0 > > box. You have accounts on all of them, so go to it! :) > > > > Jordan > > From owner-freebsd-ports Sat Mar 1 00:29:24 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA16778 for ports-outgoing; Sat, 1 Mar 1997 00:29:24 -0800 (PST) Received: from puma.dyn.ml.org ([206.31.56.31]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA16773 for ; Sat, 1 Mar 1997 00:29:20 -0800 (PST) Received: (from mrr@localhost) by puma.dyn.ml.org (8.8.4/8.8.2) id WAA01056; Fri, 28 Feb 1997 22:26:51 -0500 (EST) Date: Fri, 28 Feb 1997 22:26:50 -0500 (EST) From: "Michael R. Rudel" To: "Jordan K. Hubbard" cc: Chuck Robey , FreeBSD Ports Subject: Re: Objective C In-Reply-To: <2125.857204844@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Ahh. I thought they were for strictly running fun tests on stability and stuff. :-) -mrr On Sat, 1 Mar 1997, Jordan K. Hubbard wrote: > > Well, 3 branches, 3 machines. :-) > > But they also serve a number of other purposes - thud is Satoshi's package > maintainance machine and spatter handles mail, CVSup and other duties > as well. > > Jordan > From owner-freebsd-ports Sat Mar 1 13:48:14 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA01247 for ports-outgoing; Sat, 1 Mar 1997 13:48:14 -0800 (PST) Received: from originat.demon.co.uk (originat.demon.co.uk [158.152.220.9]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA01241 for ; Sat, 1 Mar 1997 13:48:08 -0800 (PST) Received: (from paul@localhost) by originat.demon.co.uk (8.8.4/8.6.9) id VAA01248; Sat, 1 Mar 1997 21:51:33 GMT To: freebsd-ports@freebsd.org Subject: On holiday From: Paul Richards Date: 01 Mar 1997 21:51:33 +0000 Message-ID: <87ybc7z3fe.fsf@originat.demon.co.uk> Lines: 13 X-Mailer: Gnus v5.3/Emacs 19.34 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I'm on holiday for a week so I've unsubscribed from most of the lists to make it manageable when I get back. Apart from anything else I want to be able to download the backlog over my modem without tying up the phone for days on end :-) If someone has more to say about the Perl issue then please include me directly because I won't get this list for the next week (same goes for most other lists). -- Dr Paul Richards, Originative Solutions Ltd. Internet: paul@originat.demon.co.uk Phone: 0370 462071 (UK Mobile) From owner-freebsd-ports Sat Mar 1 20:20:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA19882 for ports-outgoing; Sat, 1 Mar 1997 20:20:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA19869; Sat, 1 Mar 1997 20:20:03 -0800 (PST) Resent-Date: Sat, 1 Mar 1997 20:20:03 -0800 (PST) Resent-Message-Id: <199703020420.UAA19869@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, handy@sag.space.lockheed.com Received: from lambic.space.lockheed.com ([192.68.162.69]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA19679 for ; Sat, 1 Mar 1997 20:13:32 -0800 (PST) Received: (from handy@localhost) by lambic.space.lockheed.com (8.8.5/8.7.3) id UAA11142; Sat, 1 Mar 1997 20:13:20 -0800 (PST) Message-Id: <199703020413.UAA11142@lambic.space.lockheed.com> Date: Sat, 1 Mar 1997 20:13:20 -0800 (PST) From: "Brian N. Handy" Reply-To: handy@sag.space.lockheed.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2842: Expect port upgraded at master site; doesn't compile Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2842 >Category: ports >Synopsis: Expect port upgraded at master site; doesn't compile >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 1 20:20:01 PST 1997 >Last-Modified: >Originator: Brian N. Handy >Organization: Montana State University >Release: FreeBSD 2.2-GAMMA i386 >Environment: 2.2-GAMMA, coupla weeks old, fresh CVSupped ports tree >Description: Expect at the master site has been upgraded to 5.22. The Makefile has it listed as 5.21. patch-aa doesn't apply cleanly. The checksum is wrong. >How-To-Repeat: make >Fix: sed 's/21/22/g' Makefile.orig > Makefile make makesum patch-aa is the only patch that's broken and it's a simple fix...however the compile still falls over (on my machine) during the configure: [...] Checking for Tk private headers... configure: error: /usr/local/include/tk4.1 directory doesn't contain private headers *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. >Audit-Trail: >Unformatted: From owner-freebsd-ports Sat Mar 1 23:40:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA27629 for ports-outgoing; Sat, 1 Mar 1997 23:40:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA27621; Sat, 1 Mar 1997 23:40:04 -0800 (PST) Resent-Date: Sat, 1 Mar 1997 23:40:04 -0800 (PST) Resent-Message-Id: <199703020740.XAA27621@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, bjn@visi.com Received: from mixer.visi.com (root@mixer.visi.com [204.73.178.1]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA27479 for ; Sat, 1 Mar 1997 23:36:50 -0800 (PST) Received: from undquirt.visi.com (undquirt.visi.com [206.11.194.26]) by mixer.visi.com (8.8.5/8.7.5) with ESMTP id BAA09251 for ; Sun, 2 Mar 1997 01:36:44 -0600 (CST) Received: (from bjn@localhost) by undquirt.visi.com (8.8.5/8.8.4) id BAA04118; Sun, 2 Mar 1997 01:33:27 -0600 (CST) Message-Id: <199703020733.BAA04118@undquirt.visi.com> Date: Sun, 2 Mar 1997 01:33:27 -0600 (CST) From: bjn@visi.com Reply-To: bjn@visi.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/2843: Update ports/astro/sattrack to 3.1.6 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2843 >Category: ports >Synopsis: Please apply attached patch and commit >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 1 23:40:02 PST 1997 >Last-Modified: >Originator: Brent J. Nordquist >Organization: None >Release: FreeBSD 2.2-GAMMA i386 >Environment: Tested against FreeBSD 2.2-GAMMA >Description: SatTrack is now at version 3.1.6. The enclosed patch will update the port accordingly. Note that there is one new file, pkg/MESSAGE; all others are patches to existing files. NO_CDROM= directive removed per agreement with author. >How-To-Repeat: >Fix: diff -c -r -P sattrack.314/Makefile sattrack/Makefile *** sattrack.314/Makefile Tue Jan 28 05:14:01 1997 --- sattrack/Makefile Sun Mar 2 01:15:20 1997 *************** *** 1,20 **** # New ports collection makefile for: sattrack ! # Version required: 3.1.4 ! # Date created: 6 Apr 1996 # Whom: Brent J. Nordquist # # $Id: Makefile,v 1.6 1997/01/28 08:11:05 asami Exp $ # ! DISTNAME= sattrack-3.1.4 CATEGORIES= astro MASTER_SITES= http://ssl.berkeley.edu/isi_www/ MAINTAINER= bjn@visi.com ! NO_CDROM= "No bundling with commercial product without author's concent" ! ! WRKSRC= ${WRKDIR}/SatTrack/src MAKE_FLAGS= PREFIX=${PREFIX} -f .include --- 1,21 ---- # New ports collection makefile for: sattrack ! # Version required: 3.1.6 ! # Date created: Sun Mar 2 1997 # Whom: Brent J. Nordquist # # $Id: Makefile,v 1.6 1997/01/28 08:11:05 asami Exp $ # ! DISTNAME= sattrack-3.1.6 CATEGORIES= astro MASTER_SITES= http://ssl.berkeley.edu/isi_www/ MAINTAINER= bjn@visi.com ! WRKSRC= ${WRKDIR}/SatTrack-3.1.6/src MAKE_FLAGS= PREFIX=${PREFIX} -f + + post-install: + @cat pkg/MESSAGE .include diff -c -r -P sattrack.314/files/md5 sattrack/files/md5 *** sattrack.314/files/md5 Tue Apr 9 01:03:51 1996 --- sattrack/files/md5 Mon Jan 27 10:32:35 1997 *************** *** 1 **** ! MD5 (sattrack-3.1.4.tar.gz) = bb3f605e5c30c09c46b0b10854f147cd --- 1 ---- ! MD5 (sattrack-3.1.6.tar.gz) = 1b4c4c409b6afea139dcd3fa1a3721fb diff -c -r -P sattrack.314/patches/patch-aa sattrack/patches/patch-aa *** sattrack.314/patches/patch-aa Tue Apr 9 01:03:52 1996 --- sattrack/patches/patch-aa Sun Mar 2 00:53:49 1997 *************** *** 1,11 **** ! diff -c -r -P ../run/getsts ../../SatTrack-FreeBSD/run/getsts ! *** ../run/getsts Wed Mar 29 00:10:16 1995 ! --- ../../SatTrack-FreeBSD/run/getsts Sat Apr 6 22:09:38 1996 *************** ! *** 28,46 **** ! set stsnum=71 ! set prelaunch=1 ! set mir=1 ! set ftphost=192.149.89.61 ! set satdir=/home/manfred ! set satuser=manfred --- 1,10 ---- ! *** ../run/getsts.orig Tue Jan 14 13:21:06 1997 ! --- ../run/getsts Sun Mar 2 00:52:30 1997 *************** ! *** 24,42 **** ! # ! set stsnum=81 ! set prelaunch=0 ! set ftphost=192.149.89.61 ! set satdir=/home/manfred ! set satuser=manfred *************** *** 22,48 **** endif # cd $satdirusr/SatTrack/tle ! --- 28,44 ---- ! set stsnum=71 ! set prelaunch=1 ! set mir=1 ! set ftphost=spacelink.msfc.nasa.gov ! set satdir=/usr/local/lib ! set satuser=sattrack # # # ! ! set userid=$USER@`hostname` # ! set satdirusr=$satdir ! ! if (! -d $satdiruser/SatTrack/tle) then ! mkdir -p $satdirusr/SatTrack/tle endif # cd $satdirusr/SatTrack/tle ! diff -c -r -P ../run/gettle ../../SatTrack-FreeBSD/run/gettle ! *** ../run/gettle Wed Mar 15 04:26:06 1995 ! --- ../../SatTrack-FreeBSD/run/gettle Sat Apr 6 21:20:43 1996 *************** *** 24,41 **** # --- 21,51 ---- endif # cd $satdirusr/SatTrack/tle ! --- 24,45 ---- ! # ! set stsnum=81 ! set prelaunch=0 ! set ftphost=spacelink.msfc.nasa.gov ! set satdir=/usr/local/lib ! set satuser=sattrack # # # ! ! set hostdot=`hostname | grep '\.'` ! ! if ("$hostdot" == "") then ! ! set userid=$USER@`hostname`.`domainname` ! ! else ! ! set userid=$USER@`hostname` ! ! endif # ! set satdirusr=$satdir ! ! if (! -d $satdirusr/SatTrack/tle) then ! mkdir -p $satdirusr/SatTrack/tle endif # cd $satdirusr/SatTrack/tle ! *** ../run/gettle.orig Tue Mar 14 22:26:06 1995 ! --- ../run/gettle Sun Mar 2 00:52:31 1997 *************** *** 24,41 **** # *************** *** 63,69 **** mkdir -p $satdirusr/SatTrack/tle endif # ! --- 24,39 ---- # # # --- 66,72 ---- mkdir -p $satdirusr/SatTrack/tle endif # ! --- 24,44 ---- # # # *************** *** 73,90 **** # # # ! ! set userid=$USER@`hostname` # ! set satdirusr=$satdir ! ! if (! -d $satdiruser/SatTrack/tle) then mkdir -p $satdirusr/SatTrack/tle endif # ! diff -c -r -P ../src/Makefile ../../SatTrack-FreeBSD/src/Makefile ! *** ../src/Makefile Fri Aug 25 17:39:13 1995 ! --- ../../SatTrack-FreeBSD/src/Makefile Sat Apr 6 21:58:28 1996 *************** ! *** 92,101 **** # Sun-4 (SPARCstation 5 or 10 with Solaris 2.x, using 'gcc' only) # --- 76,97 ---- # # # ! ! set hostdot=`hostname | grep '\.'` ! ! if ("$hostdot" == "") then ! ! set userid=$USER@`hostname`.`domainname` ! ! else ! ! set userid=$USER@`hostname` ! ! endif # ! set satdirusr=$satdir ! ! if (! -d $satdirusr/SatTrack/tle) then mkdir -p $satdirusr/SatTrack/tle endif # ! *** ../src/Makefile.orig Mon Jan 13 17:51:01 1997 ! --- ../src/Makefile Sun Mar 2 00:52:30 1997 *************** ! *** 113,122 **** # Sun-4 (SPARCstation 5 or 10 with Solaris 2.x, using 'gcc' only) # *************** *** 95,101 **** # Apollo 700 (HP Apollo 9000 Series 700 with HPUX) # ! --- 92,101 ---- # Sun-4 (SPARCstation 5 or 10 with Solaris 2.x, using 'gcc' only) # --- 102,108 ---- # Apollo 700 (HP Apollo 9000 Series 700 with HPUX) # ! --- 113,122 ---- # Sun-4 (SPARCstation 5 or 10 with Solaris 2.x, using 'gcc' only) # *************** *** 107,113 **** # Apollo 700 (HP Apollo 9000 Series 700 with HPUX) # *************** ! *** 148,157 **** # i386 (i386 with FreeBSD) # --- 114,120 ---- # Apollo 700 (HP Apollo 9000 Series 700 with HPUX) # *************** ! *** 183,192 **** # i386 (i386 with FreeBSD) # *************** *** 118,124 **** # #------------------------------------------------------------------------------- ! --- 148,157 ---- # i386 (i386 with FreeBSD) # --- 125,131 ---- # #------------------------------------------------------------------------------- ! --- 183,192 ---- # i386 (i386 with FreeBSD) # *************** *** 130,136 **** # #------------------------------------------------------------------------------- *************** ! *** 193,199 **** #CC_CUSR = -DREVERSEVIDEO -DXWINDOW #CC_CUSR = -DHOMEDIR -DREVERSEVIDEO -DXWINDOW --- 137,143 ---- # #------------------------------------------------------------------------------- *************** ! *** 228,234 **** #CC_CUSR = -DREVERSEVIDEO -DXWINDOW #CC_CUSR = -DHOMEDIR -DREVERSEVIDEO -DXWINDOW *************** *** 138,153 **** # #------------------------------------------------------------------------------- ! --- 193,199 ---- #CC_CUSR = -DREVERSEVIDEO -DXWINDOW #CC_CUSR = -DHOMEDIR -DREVERSEVIDEO -DXWINDOW ! ! CC_CUSR = -DREVERSEVIDEO -DSUNTRANSITS -DXWINDOW # #------------------------------------------------------------------------------- *************** ! *** 210,216 **** # but should be accessible by other users as well. # --- 145,160 ---- # #------------------------------------------------------------------------------- ! --- 228,234 ---- #CC_CUSR = -DREVERSEVIDEO -DXWINDOW #CC_CUSR = -DHOMEDIR -DREVERSEVIDEO -DXWINDOW ! ! CC_CUSR = -DREVERSEVIDEO -DSUNTRANSITS -DXWINDOW # #------------------------------------------------------------------------------- *************** ! *** 245,251 **** # but should be accessible by other users as well. # *************** *** 155,161 **** # #------------------------------------------------------------------------------- ! --- 210,217 ---- # but should be accessible by other users as well. # --- 162,168 ---- # #------------------------------------------------------------------------------- ! --- 245,252 ---- # but should be accessible by other users as well. # *************** *** 165,214 **** # #------------------------------------------------------------------------------- *************** ! *** 221,226 **** ! --- 222,231 ---- ! SRC = $(HOME)/SatTrack/src ! OBJ = $(HOME)/SatTrack/obj ! RUN = $(HOME)/SatTrack/run ! + DATA = $(HOME)/SatTrack/data ! + PRED = $(HOME)/SatTrack/pred ! + TLE = $(HOME)/SatTrack/tle ! + DOC = $(HOME)/SatTrack/doc INC = $(SRC)/include *************** ! *** 283,294 **** #X11 = /usr/include #X11 = /usr/local/include #X11 = /usr/include/X11 ! X11 = /usr/openwin/include ! LX11 = -lX11 -lXt # X11R5 #LX11 = -L/usr/openwin/lib -lX11 -lXt #LX11 = -lX11 -lXt -lICE -lSM # X11R6 #LX11 = -L/usr/openwin/lib -lX11 -lXt -lICE -lSM #CC_CXINC = ! --- 288,301 ---- #X11 = /usr/include #X11 = /usr/local/include #X11 = /usr/include/X11 ! #X11 = /usr/openwin/include ! ! X11 = /usr/X11R6/include ! #LX11 = -lX11 -lXt # X11R5 #LX11 = -L/usr/openwin/lib -lX11 -lXt #LX11 = -lX11 -lXt -lICE -lSM # X11R6 ! + LX11 = -L/usr/X11R6/lib -lX11 -lXt -lICE -lSM #LX11 = -L/usr/openwin/lib -lX11 -lXt -lICE -lSM #CC_CXINC = *************** ! *** 319,324 **** ! --- 326,355 ---- cd $(RUN) ; \ /bin/rm -f fixchecksum makeamsat makepassesx maketles maketlex \ satfilter sattrack xdemo --- 172,235 ---- # #------------------------------------------------------------------------------- *************** ! *** 253,261 **** ! # SATTRACK SUB-DIRECTORIES ! # ! ! ! SRC = $(HOME)/SatTrack/src ! ! OBJ = $(HOME)/SatTrack/obj ! ! RUN = $(HOME)/SatTrack/run ! ! INC = $(SRC)/include ! ! --- 254,266 ---- ! # SATTRACK SUB-DIRECTORIES ! # ! ! ! SRC = $(HOME)/SatTrack-3.1.6/src ! ! OBJ = $(HOME)/SatTrack-3.1.6/obj ! ! RUN = $(HOME)/SatTrack-3.1.6/run ! ! DATA = $(HOME)/SatTrack-3.1.6/data ! ! PRED = $(HOME)/SatTrack-3.1.6/pred ! ! TLE = $(HOME)/SatTrack-3.1.6/tle ! ! DOC = $(HOME)/SatTrack-3.1.6/doc INC = $(SRC)/include *************** ! *** 318,330 **** #X11 = /usr/include #X11 = /usr/local/include #X11 = /usr/include/X11 ! X11 = /usr/openwin/include ! LX11 = -lX11 -lXt # X11R5 + #LX11 = -lXt -lX11 -lsocket # SCOV5 #LX11 = -L/usr/openwin/lib -lX11 -lXt #LX11 = -lX11 -lXt -lICE -lSM # X11R6 #LX11 = -L/usr/openwin/lib -lX11 -lXt -lICE -lSM #CC_CXINC = ! --- 323,337 ---- #X11 = /usr/include #X11 = /usr/local/include #X11 = /usr/include/X11 ! #X11 = /usr/openwin/include ! ! X11 = $(X11BASE)/include ! #LX11 = -lX11 -lXt # X11R5 + #LX11 = -lXt -lX11 -lsocket # SCOV5 #LX11 = -L/usr/openwin/lib -lX11 -lXt #LX11 = -lX11 -lXt -lICE -lSM # X11R6 ! + LX11 = -L$(X11BASE)/lib -lX11 -lXt -lICE -lSM #LX11 = -L/usr/openwin/lib -lX11 -lXt -lICE -lSM #CC_CXINC = *************** ! *** 355,360 **** ! --- 362,391 ---- cd $(RUN) ; \ /bin/rm -f fixchecksum makeamsat makepassesx maketles maketlex \ satfilter sattrack xdemo *************** *** 239,249 **** # #------------------------------------------------------------------------------- ! diff -c -r -P ../src/include/sattrack.h ../../SatTrack-FreeBSD/src/include/sattrack.h ! *** ../src/include/sattrack.h Thu Feb 15 17:11:49 1996 ! --- ../../SatTrack-FreeBSD/src/include/sattrack.h Sat Apr 6 21:45:26 1996 *************** ! *** 55,67 **** /* */ /******************************************************************************/ --- 260,269 ---- # #------------------------------------------------------------------------------- ! *** ../src/include/sattrack.h.orig Tue Jan 14 09:38:38 1997 ! --- ../src/include/sattrack.h Sun Mar 2 00:52:30 1997 *************** ! *** 74,86 **** /* */ /******************************************************************************/ *************** *** 257,263 **** #define TLE "SatTrack/tle" #define SRC "SatTrack/src" #define INC "SatTrack/src/include" ! --- 55,69 ---- /* */ /******************************************************************************/ --- 277,283 ---- #define TLE "SatTrack/tle" #define SRC "SatTrack/src" #define INC "SatTrack/src/include" ! --- 74,88 ---- /* */ /******************************************************************************/ *************** *** 273,276 **** #define TLE "SatTrack/tle" #define SRC "SatTrack/src" #define INC "SatTrack/src/include" - Only in ../src: patch --- 293,295 ---- diff -c -r -P sattrack.314/pkg/COMMENT sattrack/pkg/COMMENT *** sattrack.314/pkg/COMMENT Tue Apr 9 01:03:52 1996 --- sattrack/pkg/COMMENT Mon Jan 27 10:40:57 1997 *************** *** 1 **** ! Satellite tracking program. --- 1 ---- ! Real-time satellite tracking and orbit propagation program. diff -c -r -P sattrack.314/pkg/DESCR sattrack/pkg/DESCR *** sattrack.314/pkg/DESCR Tue Jan 28 05:14:01 1997 --- sattrack/pkg/DESCR Sun Mar 2 01:15:36 1997 *************** *** 1,15 **** ! This is a port of SatTrack version 3.1, written by manfred Bester. ! SatTrack is a satellite tracking program. It provides two different ! live displays, for single or multiple satellites, and two different ! orbit prediction facilities. Cursor controls used in both live ! displays are compatible with the VT100 standard, which allows the ! program to be run basically from any terminal. An X Window color ! graphics display with the typical world map tracking chart and a ! number of important features has been added in this version. The ! orbit prediction can be run either interactively or in a batch ! mode. In the latter case all necessary parameters are specified ! on the command line. ! Port to FreeBSD 2.1 by Brent J. Nordquist ! Sat Apr 6 22:29:02 1996 --- 1,55 ---- ! This is a port of SatTrack version 3.1, which is ! Copyright (c) 1992-1997 Bester Tracking Systems. All Rights Reserved. ! SatTrack is a real-time satellite tracking and orbit propagation ! program with an X11 color world map tracking chart. It provides ! two different live displays, for single or multiple satellites, ! and two different orbit prediction modes. Cursor controls used in ! the numerical live displays are compatible with the VT100 standard, ! which allows the program to be run basically from any terminal ! without the graphics display. If the program is run from an X Window ! terminal, the realtime graphics display can be started up. It will ! show the location of any number of specified satellites like the ! Space Shuttle or the Russian Space Station Mir, featuring the circle ! of visibility for any selected spacecraft and for the primary and ! a number of secondary ground stations. Also shown are the ground ! track for the next three orbits, the black-out zones for communication ! through the TDRSS network, Mission Elapsed Time (MET), the terminator, ! spacecraft lighting conditions and other details. The world maps ! are provided in two different styles with four different sizes ! each. Program SatTrack is particularly interesting for the upcoming ! Shuttle - Mir rendezvous missions. ! ! The present version of SatTrack (V3.1) can track a single satellite ! and/or display multiple satellites for a single ground station. It ! can also control suitable ground station hardware, like antennas, ! optical telescopes and communications equipment with the proper ! Doppler corrections, and has an autotrack mode in which it can ! switch automatically between a number of specified satellites. For ! calibration purposes tracking of the Sun and the Moon are also ! provided. In the orbit prediction mode SatTrack pre-calculates ! passes of satellites over a specified ground station. The predictions ! can be run off either interactively or in a batch mode. ! ! SatTrack uses the two-line Keplerian element (TLE) sets generated ! by the US Space Command or NASA to run either the SGP4 model for ! satellites in low-earth orbit or a simplified model for deep-space ! objects. The commercial version, SatTrack V4.0, has many more ! features, like a Graphical User Interface, like fast forward mode ! that will allow the user to view satellite motions at higher speed, ! the SDP4 model for deep-space objects, multiple ground stations ! and second graphics display with a fish-eye sky view. Other program ! features allow prediction of GPS coverage and precision (DOP) as ! a function of time. ! ! Current on-line information on SatTrack can be found on the World ! Wide Web page with the following URL: ! ! http://www.bester.com ! ! The much advanced commercial off-the-shelf version of SatTrack ! (V4.0) can be obtained from Bester Tracking Systems. ! ! Port to FreeBSD 2.2 by Brent J. Nordquist ! Sun Mar 2 1997 diff -c -r -P sattrack.314/pkg/MESSAGE sattrack/pkg/MESSAGE *** sattrack.314/pkg/MESSAGE Wed Dec 31 18:00:00 1969 --- sattrack/pkg/MESSAGE Sun Mar 2 01:14:05 1997 *************** *** 0 **** --- 1,13 ---- + ### + SatTrack V3.1.6 + Copyright (c) 1992-1997 Bester Tracking Systems. All Rights Reserved. + + Phone: (510) 654-7824 + Email: license@bester.com + WWW: www.bester.com + + NOTE: A license is not required for private, non-commercial use. + Purchasing the FreeBSD CD-ROM does not entitle the user to use + SatTrack or parts of it commercially. Commercial usage of SatTrack + must be licensed by Bester Tracking Systems. + ### diff -c -r -P sattrack.314/pkg/PLIST sattrack/pkg/PLIST *** sattrack.314/pkg/PLIST Tue Apr 9 01:03:52 1996 --- sattrack/pkg/PLIST Mon Jan 27 11:46:57 1997 *************** *** 11,80 **** bin/sattrack bin/transits bin/xsattrackdemo ! share/doc/SatTrack/skyview_1.gif ! share/doc/SatTrack/skyview_2.gif ! share/doc/SatTrack/skyview_3.gif ! share/doc/SatTrack/skyview_4.gif ! share/doc/SatTrack/worldmap_1.gif ! share/doc/SatTrack/skyview_5.gif ! share/doc/SatTrack/worldmap_2.gif ! share/doc/SatTrack/worldmap_3.gif ! share/doc/SatTrack/sattrack.doc ! share/doc/SatTrack/COPYRIGHT ! share/doc/SatTrack/info.tle.general ! share/doc/SatTrack/info.cities ! share/doc/SatTrack/info.cities.japan ! share/doc/SatTrack/info.cities.canada ! share/doc/SatTrack/info.tle.shuttle ! share/doc/SatTrack/info.freqs.p3d ! share/doc/SatTrack/info.TrakBox.TS-790.JR1EDE ! share/doc/SatTrack/xmenu_1.gif lib/SatTrack/data/cities.dat lib/SatTrack/data/index.dat lib/SatTrack/data/modes.dat lib/SatTrack/data/satlist_all.dat lib/SatTrack/data/satlist_am.dat lib/SatTrack/data/satlist_com.dat lib/SatTrack/data/satlist_glo.dat lib/SatTrack/data/satlist_gor.dat lib/SatTrack/data/satlist_gps.dat lib/SatTrack/data/satlist_mir.dat ! lib/SatTrack/data/README_DATA lib/SatTrack/data/satlist_pbbs.dat lib/SatTrack/data/satlist_sci.dat lib/SatTrack/data/satlist_tv.dat lib/SatTrack/data/satlist_vis.dat lib/SatTrack/data/satlist_wx.dat - lib/SatTrack/data/tlelist.dat - lib/SatTrack/data/satlist_rb.dat lib/SatTrack/data/satlist_wxall.dat ! lib/SatTrack/data/satlist_mwo.dat ! lib/SatTrack/data/batch.dat ! lib/SatTrack/data/satlist_leom.dat ! lib/SatTrack/data/satlist_leop.dat ! lib/SatTrack/data/satlist_leoe.dat ! lib/SatTrack/data/satlist_nasa.dat ! lib/SatTrack/data/satlist_ir.dat ! lib/SatTrack/data/defaults0.dat ! lib/SatTrack/data/satlist_geost.dat ! lib/SatTrack/data/satlist_noaa.dat ! lib/SatTrack/data/satlist_demo.dat lib/SatTrack/pred/README_PRED lib/SatTrack/tle/debris.dat lib/SatTrack/tle/gorizont.dat ! lib/SatTrack/tle/mir-92.dat ! lib/SatTrack/tle/mir-93.dat lib/SatTrack/tle/p3d.dat ! lib/SatTrack/tle/sts-70.dat lib/SatTrack/tle/sts.dat lib/SatTrack/tle/test.dat lib/SatTrack/tle/tle.bak lib/SatTrack/tle/tle.dat ! lib/SatTrack/tle/mir-94.dat lib/SatTrack/tle/tlex.dat lib/SatTrack/tle/tvro.dat lib/SatTrack/tle/visual.dat ! lib/SatTrack/tle/README_TLE ! lib/SatTrack/tle/tles.dat ! lib/SatTrack/tle/sts-69.dat ! lib/SatTrack/tle/sts-72.dat --- 11,69 ---- bin/sattrack bin/transits bin/xsattrackdemo ! lib/SatTrack/data/COPYRIGHT ! lib/SatTrack/data/README_DATA ! lib/SatTrack/data/batch.dat lib/SatTrack/data/cities.dat + lib/SatTrack/data/defaults0.dat lib/SatTrack/data/index.dat lib/SatTrack/data/modes.dat lib/SatTrack/data/satlist_all.dat lib/SatTrack/data/satlist_am.dat lib/SatTrack/data/satlist_com.dat + lib/SatTrack/data/satlist_demo.dat + lib/SatTrack/data/satlist_geost.dat lib/SatTrack/data/satlist_glo.dat lib/SatTrack/data/satlist_gor.dat lib/SatTrack/data/satlist_gps.dat + lib/SatTrack/data/satlist_ir.dat + lib/SatTrack/data/satlist_leoe.dat + lib/SatTrack/data/satlist_leom.dat + lib/SatTrack/data/satlist_leop.dat lib/SatTrack/data/satlist_mir.dat ! lib/SatTrack/data/satlist_mwo.dat ! lib/SatTrack/data/satlist_nasa.dat ! lib/SatTrack/data/satlist_noaa.dat lib/SatTrack/data/satlist_pbbs.dat + lib/SatTrack/data/satlist_rb.dat lib/SatTrack/data/satlist_sci.dat lib/SatTrack/data/satlist_tv.dat lib/SatTrack/data/satlist_vis.dat lib/SatTrack/data/satlist_wx.dat lib/SatTrack/data/satlist_wxall.dat ! lib/SatTrack/data/tlelist.dat ! lib/SatTrack/pred/COPYRIGHT lib/SatTrack/pred/README_PRED + lib/SatTrack/tle/COPYRIGHT + lib/SatTrack/tle/README_TLE lib/SatTrack/tle/debris.dat lib/SatTrack/tle/gorizont.dat ! lib/SatTrack/tle/gps-ops.dat ! lib/SatTrack/tle/molniya.dat lib/SatTrack/tle/p3d.dat ! lib/SatTrack/tle/sts-81.bak ! lib/SatTrack/tle/sts-81.dat ! lib/SatTrack/tle/sts-81.dat.all lib/SatTrack/tle/sts.dat lib/SatTrack/tle/test.dat lib/SatTrack/tle/tle.bak lib/SatTrack/tle/tle.dat ! lib/SatTrack/tle/tles.dat lib/SatTrack/tle/tlex.dat lib/SatTrack/tle/tvro.dat lib/SatTrack/tle/visual.dat ! share/doc/SatTrack/COPYRIGHT ! share/doc/SatTrack/info.TrakBox.TS-790.JR1EDE ! share/doc/SatTrack/info.freqs.p3d ! share/doc/SatTrack/info.tle.general ! share/doc/SatTrack/sattrack.doc diff -c -r -P sattrack.314/scripts/post-patch sattrack/scripts/post-patch *** sattrack.314/scripts/post-patch Tue Jan 28 05:14:01 1997 --- sattrack/scripts/post-patch Sun Mar 2 01:15:45 1997 *************** *** 1,17 **** #!/bin/sh # ! # post-patch for sattrack-3.1.4 # modify bin scripts to point to correct install dir # # script by Brent J. Nordquist ! # Sun Apr 7 00:08:56 1996 # if [ -z "$WRKDIR" ]; then WRKDIR="$1" fi ! RUN="$WRKDIR/SatTrack/run" if [ -z "$WRKDIR" -o ! -d "$RUN" ]; then ! echo $0: bad work directory $RUN 1>&2 exit 1 fi cd $RUN --- 1,17 ---- #!/bin/sh # ! # post-patch for sattrack-3.1.6 # modify bin scripts to point to correct install dir # # script by Brent J. Nordquist ! # Sun Mar 2 1997 # if [ -z "$WRKDIR" ]; then WRKDIR="$1" fi ! RUN="$WRKDIR/SatTrack-3.1.6/run" if [ -z "$WRKDIR" -o ! -d "$RUN" ]; then ! echo $0: bad work directory $RUN >&2 exit 1 fi cd $RUN *************** *** 19,43 **** PREFIX="$2" fi if [ -z "$PREFIX" ]; then ! echo $0: PREFIX not given 1>&2 exit 2 fi do_subst() { if [ ! -r $1 ]; then ! echo $0: cannot find file $1 1>&2 exit 3 fi sed "s@set satdir=.*\$@set satdir=$PREFIX/lib@" <$1 >$1.$$ if [ $? != 0 ]; then ! echo $0: $1 sed failure 1>&2 rm -f $1.$$ exit 4 fi cat $1.$$ >$1 if [ $? != 0 ]; then ! echo $0: $1 cat failure 1>&2 rm -f $1 mv $1.$$ $1 exit 5 --- 19,43 ---- PREFIX="$2" fi if [ -z "$PREFIX" ]; then ! echo $0: PREFIX not given >&2 exit 2 fi do_subst() { if [ ! -r $1 ]; then ! echo $0: cannot find file $1 >&2 exit 3 fi sed "s@set satdir=.*\$@set satdir=$PREFIX/lib@" <$1 >$1.$$ if [ $? != 0 ]; then ! echo $0: $1 sed failure >&2 rm -f $1.$$ exit 4 fi cat $1.$$ >$1 if [ $? != 0 ]; then ! echo $0: $1 cat failure >&2 rm -f $1 mv $1.$$ $1 exit 5 >Audit-Trail: >Unformatted: