From owner-freebsd-ports Sun Oct 17 0:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E76B14D39 for ; Sun, 17 Oct 1999 00:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA41798; Sun, 17 Oct 1999 00:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 78A3314CE9; Sun, 17 Oct 1999 00:16:07 -0700 (PDT) Message-Id: <19991017071607.78A3314CE9@hub.freebsd.org> Date: Sun, 17 Oct 1999 00:16:07 -0700 (PDT) From: tempest@ecst.csuchico.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14366: wdm doesn't call setlogin() properly--actually, it doesn't call it at all Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14366 >Category: ports >Synopsis: wdm doesn't call setlogin() properly--actually, it doesn't call it at all >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 00:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ken Lui >Release: 3.2 RELEASE >Organization: >Environment: FreeBSD 3.2-RELEASE >Description: Using wdm to login causes the system call getlogin() to return "root" if one isn't logged in as root. The immediate consequence that I encountered is programs like trn posts messages that says one is "root" rather than the actual user. Problem is the BSD macro never gets set as it's defined in but it's included only if CSRG_BASED is defined and FreeBSD doesn't define it. >How-To-Repeat: Run this program as a non-root user and it will return root rather than the user's login. #include main() { printf("%s\n",getlogin()); } >Fix: patch xdm/session.c as follows: --- session.c.orig Mon Mar 2 03:56:36 1998 +++ session.c Sun Oct 17 00:01:10 1999 @@ -63,8 +63,9 @@ #endif #endif -#ifdef CSRG_BASED +#if defined(CSRG_BASED) || defined(__FreeBSD__) #include +#include #endif #ifdef HAS_SETUSERCONTEXT #include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 1:40:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1392714FB6 for ; Sun, 17 Oct 1999 01:40:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA46737; Sun, 17 Oct 1999 01:40:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pyros.dhis.org (p24-max4.dun.ihug.co.nz [209.76.100.215]) by hub.freebsd.org (Postfix) with ESMTP id C541414C36 for ; Sun, 17 Oct 1999 01:33:32 -0700 (PDT) (envelope-from mmuir@pyros.dhis.org) Received: (from root@localhost) by pyros.dhis.org (8.9.3/8.9.3) id VAA52197; Sun, 17 Oct 1999 21:33:30 +1300 (NZDT) (envelope-from mmuir) Message-Id: <199910170833.VAA52197@pyros.dhis.org> Date: Sun, 17 Oct 1999 21:33:30 +1300 (NZDT) From: mmuir@mongol.dhis.org Reply-To: mmuir@es.co.nz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14367: Update port: sysutils/consolehm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14367 >Category: ports >Synopsis: Update port: sysutils/consolehm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 01:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mike Muir >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT >Description: Update of consolehm to version 1.2 which now includes /dev/io as a method for retrieving information, as well as support for motherboard and 2 other cpu readings, along with the usual stuff (voltages, fans). >How-To-Repeat: >Fix: diff -ruN /usr/ports/sysutils/consolehm/Makefile ./consolehm/Makefile --- /usr/ports/sysutils/consolehm/Makefile Mon Sep 27 10:33:38 1999 +++ ./consolehm/Makefile Sun Oct 17 21:26:12 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: consolehm -# Version required: 1.0 +# Version required: 1.2 # Date created: 27 September 1999 # Whom: Mike Muir # -# $FreeBSD: ports/sysutils/consolehm/Makefile,v 1.1.1.1 1999/09/26 22:33:38 dan Exp $ +# $FreeBSD$ # -DISTNAME= consolehm-1.0 +DISTNAME= consolehm-1.2 CATEGORIES= sysutils MASTER_SITES= ftp://mongol.dhis.org/pub/consolehm/ \ http://www.es.co.nz/~mmuir/ @@ -15,10 +15,6 @@ WRKSRC= ${WRKDIR}/consolehm/consolehm -.include +GNU_CONFIGURE= yes -.if ${OSVERSION} < 400000 -BROKEN= 'consolehm requires intpm which is only available in 4.0-CURRENT.' -.endif - -.include +.include diff -ruN /usr/ports/sysutils/consolehm/files/md5 ./consolehm/files/md5 --- /usr/ports/sysutils/consolehm/files/md5 Mon Sep 27 09:20:46 1999 +++ ./consolehm/files/md5 Sun Oct 17 21:29:55 1999 @@ -1 +1 @@ -MD5 (consolehm-1.0.tar.gz) = 0e33f51c3a7d4b16d50972adeb3d1de3 +MD5 (consolehm-1.2.tar.gz) = e931c8ff2cee20e8093ed1e541873b16 diff -ruN /usr/ports/sysutils/consolehm/pkg/DESCR ./consolehm/pkg/DESCR --- /usr/ports/sysutils/consolehm/pkg/DESCR Mon Sep 27 09:18:37 1999 +++ ./consolehm/pkg/DESCR Sun Oct 17 21:28:05 1999 @@ -1,4 +1,4 @@ -consolehm uses the SMBus Driver for PIIX4 provided by Takanori Watanabe to +ConsoleHM uses the SMBus Driver for PIIX4 provided by Takanori Watanabe to gather information from LM78/79 sensors to provide motherboard temperature, fan speeds and voltage readings on the console. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 3: 0: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (Postfix) with ESMTP id EBA1414EC8 for ; Sun, 17 Oct 1999 02:59:57 -0700 (PDT) (envelope-from dr@domix.de) Received: from lamest.domix.de (dial-ra-nc4-163.netcologne.de [195.14.254.163]) by mail2.netcologne.de (8.9.3/8.9.3) with ESMTP id LAA01884; Sun, 17 Oct 1999 11:59:45 +0200 (MET DST) Received: from domix.de (speed.localnet.lan [192.168.1.2]) by lamest.domix.de (8.9.3/8.9.3) with ESMTP id LAA02402; Sun, 17 Oct 1999 11:52:01 +0200 (CEST) (envelope-from dr@domix.de) Received: (from dr@localhost) by domix.de (8.9.3/8.9.3) id LAA04591; Sun, 17 Oct 1999 11:58:12 +0200 (CEST) (envelope-from dr) Date: Sun, 17 Oct 1999 11:58:12 +0200 From: Dominik Rothert To: Mike Meyer Cc: ports@freebsd.org Subject: Re: Patches breaking? Message-ID: <19991017115812.A4410@speed.localnet.lan> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: X-Encryption: PGP/GnuPG key available X-URL: http://www.domix.de X-OS: FreeBSD 4.0-CURRENT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mike Meyer wrote: > More interesting, the following ports failed to *patch*: > html2ps Can't verify that. Neither html2ps-letter nor html2ps-a4 failed to patch. > apsfilter Same as above. > ssh ssh1 or ssh2? > Most just failed, but html2ps and openssl prompted me for > the file name to patch. Huh? When have you last CVSup'ed your ports? Please CVSup again. # cvsup -L 2 -g /usr/share/examples/cvsup/ports-supfile Best wishes, Dominik Rothert. -- /* Dominik Rothert | Cologne BSD-Usergroup | Dr. LANG Internet Consulting * * dr@domix.de | dr@cbug.de | dr@lang-consulting.de * * www.domix.de | www.cbug.de | www.lang-consulting.de */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 3: 8:49 1999 Delivered-To: freebsd-ports@freebsd.org Received: from guru.phone.net (guru.phone.net [216.240.39.120]) by hub.freebsd.org (Postfix) with SMTP id DD0F414C25 for ; Sun, 17 Oct 1999 03:08:44 -0700 (PDT) (envelope-from mwm@phone.net) Received: (qmail 2632 invoked by uid 100); 17 Oct 1999 10:08:44 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 17 Oct 1999 10:08:44 -0000 Date: Sun, 17 Oct 1999 03:08:44 -0700 (PDT) From: Mike Meyer To: Dominik Rothert Cc: ports@freebsd.org Subject: Re: Patches breaking? In-Reply-To: <19991017115812.A4410@speed.localnet.lan> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 17 Oct 1999, Dominik Rothert wrote: ;->> More interesting, the following ports failed to *patch*: ;->> html2ps ;->Can't verify that. Neither html2ps-letter nor html2ps-a4 failed to patch. I'm just using /usr/ports/html2ps, not -letter or -a4. ;->> ssh ;->ssh1 or ssh2? It was ssh1. ;->> Most just failed, but html2ps and openssl prompted me for ;->> the file name to patch. ;->Huh? When have you last CVSup'ed your ports? Please CVSup again. I haven't. I'm running the ports package (and the rest of the system) as installed off of the 3.2-RELEASE CDROMS. Having been told that I can't expect to update just /usr/ports and have it work, I haven't updated them from then. It may be that my original mail went to the wrong list, but I'm not sure where else it would have gone except as a PR, and I filed one for the one thing I had a fix for. ; Sun, 17 Oct 1999 06:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA62970; Sun, 17 Oct 1999 06:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.freenix.no (totem.freenix.no [195.0.166.42]) by hub.freebsd.org (Postfix) with ESMTP id 7A66114E46 for ; Sun, 17 Oct 1999 06:04:37 -0700 (PDT) (envelope-from anders@totem.freenix.no) Received: (from anders@localhost) by totem.freenix.no (8.9.3/8.9.3) id PAA35274; Sun, 17 Oct 1999 15:04:35 +0200 (CEST) Message-Id: <199910171304.PAA35274@totem.freenix.no> Date: Sun, 17 Oct 1999 15:04:35 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14370: Update port: ftp/lftp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14370 >Category: ports >Synopsis: Update port: ftp/lftp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 06:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 3.2-STABLE i386 >Organization: Fluxpod Information eXchange >Environment: FreeBSD totem.freenix.no 3.3-STABLE FreeBSD 3.3-STABLE #0: Sat Oct 2 20:15:31 CEST 1999 root@totem.freenix.no:/usr/src/sys/compile/TOTEM i386 >Description: Updates the port to the latest version. >How-To-Repeat: >Fix: diff -Nur lftp.old/Makefile lftp/Makefile --- lftp.old/Makefile Sat Oct 16 17:22:37 1999 +++ lftp/Makefile Sat Oct 16 17:24:58 1999 @@ -6,9 +6,9 @@ # $FreeBSD: ports/ftp/lftp/Makefile,v 1.18 1999/09/06 23:20:06 steve Exp $ # -DISTNAME= lftp-2.0.3 +DISTNAME= lftp-2.1.3 CATEGORIES= ftp -MASTER_SITES= ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/old/ \ +MASTER_SITES= ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/ \ ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= system/network/file-transfer diff -Nur lftp.old/files/md5 lftp/files/md5 --- lftp.old/files/md5 Sat Oct 16 17:22:37 1999 +++ lftp/files/md5 Sat Oct 16 17:31:57 1999 @@ -1 +1 @@ -MD5 (lftp-2.0.3.tar.gz) = e793d0ec0555925c98194600fbc310d1 +MD5 (lftp-2.1.3.tar.gz) = 3574b54a2c49020d7cd4215830afa72a diff -Nur lftp.old/pkg/DESCR lftp/pkg/DESCR --- lftp.old/pkg/DESCR Sat Oct 16 17:22:37 1999 +++ lftp/pkg/DESCR Sat Oct 16 17:23:15 1999 @@ -6,3 +6,5 @@ Background jobs will be completed in nohup mode if you exit or close modem connection. Lftp has reput, mirror, reverse mirror among its features. + +WWW: http://ftp.yars.free.net/projects/lftp/ diff -Nur lftp.old/pkg/PLIST lftp/pkg/PLIST --- lftp.old/pkg/PLIST Sat Oct 16 17:22:37 1999 +++ lftp/pkg/PLIST Sat Oct 16 17:45:32 1999 @@ -1,5 +1,6 @@ bin/lftp bin/ftpget +bin/lftpget etc/lftp.conf.sample share/doc/lftp/COPYING share/doc/lftp/FAQ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 6:13:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: from baerenklau.de.freebsd.org (baerenklau.de.freebsd.org [195.185.195.14]) by hub.freebsd.org (Postfix) with ESMTP id 9183414E46 for ; Sun, 17 Oct 1999 06:13:35 -0700 (PDT) (envelope-from wosch@panke.de.freebsd.org) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id PAA12099; Sun, 17 Oct 1999 15:13:34 +0200 (CEST) (envelope-from wosch@panke.de.freebsd.org) Received: (from wosch@localhost) by paula.panke.de.freebsd.org (8.9.3/8.8.8) id PAA02064; Sun, 17 Oct 1999 15:09:32 +0200 (CEST) (envelope-from wosch) Date: Sun, 17 Oct 1999 15:09:32 +0200 (CEST) Message-Id: <199910171309.PAA02064@paula.panke.de.freebsd.org> From: wosch@freebsd.org To: ports@freebsd.org Subject: New ports added/updated last two weeks Reply-To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Introduction - ------------ The FreeBSD Ports Collection offers a simple way for users and administrators to install applications. Each "port" listed here contains any patches necessary to make the original application source code compile and run on FreeBSD. Installing an application is as simple as downloading the port, unpacking it and typing make in the port directory. The Makefile automatically fetches the application source code, either from a local disk or via ftp, unpacks it on your system, applies the patches, and compiles. If all goes well, simply type make install to install the application. For more information about using ports, see the ports collection http://www.freebsd.org/handbook/ports.html and http://www.freebsd.org/ports/ There are currently 2711 ports in the FreeBSD Ports Collection. New ports added last two weeks - ------------------------------ Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== timidity++-emacs-1.3.10 Emacs interface for TiMidity++. Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.5, autoconf-2.13, m4-1.4, timidity++-1.3.10 timidity++-gtk-1.3.10 Gtk interface for TiMidity++. Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.5, autoconf-2.13, gettext-0.10.35, glib-1.2.5, gtk-1.2.5, m4-1.4, timidity++-1.3.10 timidity++-motif-1.3.10 Motif interface for TiMidity++. Maintained by: yatt@msc.biglobe.ne.jp Requires: Motif-2.1.10, XFree86-3.3.5, autoconf-2.13, m4-1.4, timidity++-1.3.10, xpm-3.4k timidity++-slang-1.3.10 Slang interface for TiMidity++. Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.5, autoconf-2.13, libslang-1.2.2, m4-1.4, timidity++-1.3.10 timidity++-tcltk-1.3.10 Tcl/Tk interface for TiMidity++. Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.5, autoconf-2.13, m4-1.4, tcl-8.0.5, timidity++-1.3.10, tk-8.0.5 timidity++-xaw-1.3.10 Xaw interface for TiMidity++. Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.5, Xaw3d-1.5, autoconf-2.13, m4-1.4, timidity++-1.3.10 timidity++-xskin-1.3.10 X11AMP skin interface for TiMidity++. Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.5, autoconf-2.13, m4-1.4, timidity++-1.3.10 wmtune-1.0 Dock app radio program for the BT848/878 cards Maintained by: jedgar@fxp.org Also listed in: windowmaker Requires: XFree86-3.3.5, gmake-3.77, xpm-3.4k Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== mmencode-2.7 Translate to and from mail-oriented encoding formats Maintained by: kbyanc@posi.net Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== dbf2mysql-1.13 Programs to convert .dbf files to MySQL tables and vice versa Maintained by: jedgar@fxp.org Requires: mysql-client-3.22.26a Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== wpeople-0.12 Simple address book type program based on the WINGs Maintained by: sobomax@altavista.net Also listed in: windowmaker Requires: XFree86-3.3.5, giflib-4.1.0, jpeg-6b, libproplist-0.9.1, png-1.0.3, tiff-3.5.1, windowmaker-0.61.1, xpm-3.4k Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== pharmacy-0.2.1 GNOME frontend for CVS Maintained by: jedgar@fxp.org Also listed in: gnome Requires: ORBit-0.5.0, XFree86-3.3.5, esound-0.2.15, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gmake-3.77, gnomelibs-1.0.14, gtk-1.2.5, imlib-1.9.7, jpeg-6b, libaudiofile-0.1.9, png-1.0.3, tiff-3.5.1, xpm-3.4k Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== color-mate-10.0.1 Color customizing module for Emacsen Maintained by: taoka@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5 Category games (http://www.freebsd.org/ports/games.html) ================================================================== wmminichess-0.8 WindowMaker chess dockapp game. Maintained by: andrews@technologist.com Requires: XFree86-3.3.5, gmake-3.77, gnuchess-4.0.80, xpm-3.4k xeji-1.2 An old man watching your mouse cursor Maintained by: th@cis.ibaraki.ac.jp Requires: XFree86-3.3.5, xpm-3.4k Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== flashplayer-0.4.3 A standalone Macromedia Flash player Maintained by: knu@idaemons.org Requires: XFree86-3.3.5 hppsmtools-0.3 Tool for HP PhotoSmart C5340A & Konica Q-Konica Q-EZ digital cameras Maintained by: anders@fix.no icod-1.0 Utility to convert Windows icon files to xpm format Maintained by: jedgar@fxp.org opendx-samples-4.0 Example files for IBM's OpenDX. Maintained by: ports@FreeBSD.org Also listed in: math Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-netscape-communicator-4.7 Netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.org Also listed in: www Requires: XFree86-3.3.5, ja-elisa8x8-1.0, ja-kaname12-1.0, ja-kappa20-0.3, ja-naga10-1.0, ja-netscape-fonts-1.0, netscape-communicator-4.7 ja-netscape-navigator-4.7 Netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.org Also listed in: www Requires: XFree86-3.3.5, ja-elisa8x8-1.0, ja-kaname12-1.0, ja-kappa20-0.3, ja-naga10-1.0, ja-netscape-fonts-1.0, netscape-navigator-4.7 ja-timidity++-slang-1.3.10 Slang interface for TiMidity++. Maintained by: yatt@msc.biglobe.ne.jp Also listed in: audio Requires: XFree86-3.3.5, autoconf-2.13, ja-libslang-1.3.8.j067, m4-1.4, timidity++-1.3.10 ja-timidity++-tcltk-1.3.10 Tcl/Tk interface for TiMidity++. Maintained by: yatt@msc.biglobe.ne.jp Also listed in: audio Requires: XFree86-3.3.5, autoconf-2.13, ja-tcl-8.0.5, ja-tk-8.0.5, m4-1.4, timidity++-1.3.10 ja-w3m-990928 a pager/text-based WWW browser Maintained by: nobutaka@nobutaka.com Also listed in: www Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== gbuffy-0.2.2 A GTK+ multiple mailbox "biff" program Maintained by: kaj@Raditex.se Also listed in: gnome Requires: XFree86-3.3.5, gettext-0.10.35, glib-1.2.5, gtk-1.2.5, libproplist-0.9.1 gensig-2.2 A random .signature generator Maintained by: arensb@ooblick.com Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== cassowary-0.52 constraint solving toolkit Maintained by: nakai@FreeBSD.org Requires: gcc-2.95.1, gmake-3.77, gtl-0.3.1 gtl-0.3.1 the graph template library that supports graphs and graph algorithm Maintained by: nakai@FreeBSD.org Requires: gcc-2.95.1 numchar-1.0 Converts phone numbers between digits and characters Maintained by: adam@whizkidtech.net rfc-1.8 Perl script to search for RFC's Maintained by: jedgar@fxp.org Category net (http://www.freebsd.org/ports/net.html) ================================================================== gnome-vnc-0.1 Gnome-VNC is a GNOME/gtk viewer for VNC servers Maintained by: domi@saargate.de Requires: ORBit-0.5.0, XFree86-3.3.5, esound-0.2.15, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gnomelibs-1.0.14, gtk-1.2.5, imlib-1.9.7, jpeg-6b, libaudiofile-0.1.9, png-1.0.3, tiff-3.5.1, xpm-3.4k iplog-2.0-1002 TCP/IP traffic logging tool Maintained by: dr@domix.de Requires: gmake-3.77 libunp-1.0 The networking library used in UNIX Network Programming Volume 1 2e Maintained by: james@targetnet.com Requires: gmake-3.77 libunpipc-1.0 The networking library used in UNIX Network Programming Volume 2 2e Maintained by: james@targetnet.com Requires: gmake-3.77 poptop-1.0.0 A Windows 9x compatible PPTP (VPN) server. Maintained by: nsayer@freebsd.org Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== asmon-0.60 A swallowable applet monitors the CPU usage, memory and swap, etc Maintained by: jack@germanium.xtalwind.net Also listed in: afterstep Requires: XFree86-3.3.5, gmake-3.77, xpm-3.4k flexbackup-0.9.6 A perl-based, flexible tape backup system. Uses dump, cpio, or afio Maintained by: jreynold@primenet.com Requires: afio-2.4.5, buffer-1.17 roottail-0.0.4b Simple utility to tail files/logs to a root X window Maintained by: jedgar@fxp.org Requires: XFree86-3.3.5 Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== code2html-0.8.6 Sourcecode to HTML converter Maintained by: jedgar@fxp.org xp-0.5 An XML parser written in Java Maintained by: mike@vee.net Also listed in: java Requires: jdk-1.1.8, unzip-5.40 Category www (http://www.freebsd.org/ports/www.html) ================================================================== flashplugin-0.4.3 A Macromedia Flash plugin for Netscape Maintained by: knu@idaemons.org Also listed in: graphics Requires: XFree86-3.3.5 linux-netscape-communicator-4.7 Linux Netscape Communicator suite Maintained by: girgen@partitur.se Requires: XFree86-3.3.5, linux_base-5.2, rpm-2.5.5 netscape-communicator-4.7.us Netscape Communicator w/US strong 128-bit encryption Maintained by: obrien@FreeBSD.org Requires: XFree86-3.3.5 netscape-communicator-4.7 Netscape ver 4 communicator web-surfboard Maintained by: sada@FreeBSD.org Requires: XFree86-3.3.5 netscape-navigator-4.7 Netscape ver 4.7 navigator web-surfboard Maintained by: sada@FreeBSD.org Requires: XFree86-3.3.5 w3m-990928 a pager/text-based WWW browser Maintained by: nobutaka@nobutaka.com Category x11-fm (http://www.freebsd.org/ports/x11-fm.html) ================================================================== endeavour-1.05 A graphical file manager and image viewer aimed towards new users Maintained by: cpiazza@FreeBSD.org Requires: XFree86-3.3.5, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gtk-1.2.5, imlib-1.9.7, jpeg-6b, png-1.0.3, tiff-3.5.1, xpm-3.4k Category x11-fonts (http://www.freebsd.org/ports/x11-fonts.html) ================================================================== nexfontsel-2.0 A neXtaw based replacement for xfontsel Maintained by: taoka@FreeBSD.org Requires: XFree86-3.3.5, neXtaw-0.5.1 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== qt-2.0.2 A C++ X GUI toolkit Maintained by: imura@FreeBSD.org Requires: XFree86-3.3.5, gcc-2.95.1, gmake-3.77, png-1.0.3 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== wmthemeinstall-0.62 A neat theme manager for WindowMaker Maintained by: andrews@technologist.com Requires: XFree86-3.3.5, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gmake-3.77, gtk-1.2.5, jpeg-6b, libproplist-0.9.1, png-1.0.3, tiff-3.5.1, windowmaker-0.61.1, xpm-3.4k Updated ports last two weeks - ----------------------------------- Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== esound-0.2.15 A sound library for enlightenment package Maintained by: vanilla@FreeBSD.org Requires: libaudiofile-0.1.9, libtool-1.3.3 gogo-2.11 Very fast MP3 encoder with MMX, 3D Now! and PentiumIII SSE support Maintained by: nakai@FreeBSD.org Requires: nasm-0.98 icecast-1.3.0 A SHOUTcast-compatible streaming MP3 server Maintained by: chip@eboai.org Also listed in: net libaudiofile-0.1.9 A sound library for SGI audio file Maintained by: vanilla@FreeBSD.org Requires: libtool-1.3.3 rosegarden-2.1pl2 The Rosegarden Editor and Sequencer suite Maintained by: shanee@augusta.de Requires: XFree86-3.3.5, autoconf-2.13, m4-1.4, tcl-8.0.5, tclmidi-3.1 xmradio-0.8 Motif based FM tuner (for use with bt848 driver) Maintained by: runge@rostock.zgdv.de Requires: Motif-2.1.10, XFree86-3.3.5, xpm-3.4k Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-ted-4.4a A Small and Powerful Text Editor for X Window with big5 support Maintained by: vanilla@FreeBSD.org Also listed in: editors Requires: XFree86-3.3.5, zh-kcfonts-1.05, zh-xcin-2.3.03 Category comms (http://www.freebsd.org/ports/comms.html) ================================================================== asmodem-0.6.1 Displays the modem status, designed to match AfterStep Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.5, xpm-3.4k Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== pgaccess-0.98 A Tcl/Tk interface to PostgreSQL Maintained by: andreas@FreeBSD.org Requires: XFree86-3.3.5, postgresql-6.5.2, tcl-8.0.5, tk-8.0.5 postgresql-6.5.2 A robust, next generation, object-relational DBMS Maintained by: andreas@FreeBSD.org Requires: gmake-3.77 Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== ORBit-0.5.0 High-performance CORBA ORB with support for the C language Maintained by: nakai@FreeBSD.org Also listed in: gnome Requires: gettext-0.10.35, glib-1.2.5, gmake-3.77, libtool-1.3.3 astyle-1.11.5 A reindenter and reformatter of C++, C and Java source code Maintained by: croyle@gelemna.ft-wayne.in.us Also listed in: textproc cxref-1.5b C program cross-referencing & documentation tool Maintained by: ports@FreeBSD.org Requires: gmake-3.77 ftnchek-2.11.0 Fortran 77 semantic checking utility Maintained by: kargl@apl.washington.edu gindent-2.2.2 GNU indent Maintained by: kchowksey@hss.hns.com glib-1.2.5 Some useful routines of C programming Maintained by: vanilla@FreeBSD.org Requires: libtool-1.3.3 gtksheet-7.10 A matrix widget for GTK+ Maintained by: ijliao@csie.nctu.edu.tw Requires: XFree86-3.3.5, gettext-0.10.35, glib-1.2.5, gtk-1.2.5 libproplist-0.9.1 Property library for gnome and Window Maker Maintained by: gljohns@bellsouth.net Also listed in: gnome Requires: libtool-1.3.3 linux_kdump-1.4 Linux-compatability ktrace.out processor Maintained by: marcel@FreeBSD.org Requires: linux_base-5.2, linux_devtools-5.2, rpm-2.5.5 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== apel-emacs-9.22 A Portable Emacs Library for emacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, custom-emacs-1.9962, emacs-19.34b apel-emacs20-9.22 A Portable Emacs Library for emacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, emacs-20.4 apel-mule-9.22 A Portable Emacs Library for mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, custom-mule-1.9962, mule-2.3, mule-common-2.3 apel-xemacs-mule-9.22 A Portable Emacs Library for xemacs-mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, faces-1.6.1, jpeg-6b, png-1.0.3, tiff-3.5.1, xemacs-mule-21.1.6, xemacs-mule-common-21.1.6, xpm-3.4k apel-xemacs-9.22 A Portable Emacs Library for xemacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, jpeg-6b, png-1.0.3, xemacs-19.16, xpm-3.4k apel-xemacs20-9.22 A Portable Emacs Library for xemacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, jpeg-6b, png-1.0.3, xemacs-20.4, xpm-3.4k bitmap-emacs20-7.19.05 Bitmap-mule, Package to use bitmap in Emacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-emacs20-9.22, bitmap-font-7.18, emacs-20.4, flim-emacs20-1.12.7 bitmap-mule-7.19.05 Package to use bitmap in MULE Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-mule-9.22, bitmap-font-7.18, custom-mule-1.9962, flim-mule-1.12.7, mule-2.3, mule-common-2.3 flim-emacs-1.13.2 FLIM, message representation or encoding emacs lisp library for emacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-emacs-9.22, custom-emacs-1.9962, emacs-19.34b, ja-nkf-1.62 flim-emacs-1.12.7 FLIM, message representation or encoding emacs lisp library for emacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-emacs-9.22, custom-emacs-1.9962, emacs-19.34b, ja-nkf-1.62 flim-emacs20-1.13.2 FLIM, message representation or encoding emacs lisp library for emacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-emacs20-9.22, emacs-20.4, ja-nkf-1.62 flim-emacs20-1.12.7 FLIM, message representation or encoding emacs lisp library for emacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-emacs20-9.22, emacs-20.4, ja-nkf-1.62 flim-mule-1.13.2 FLIM, message representation or encoding emacs lisp library for mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-mule-9.22, custom-mule-1.9962, ja-nkf-1.62, mule-2.3, mule-common-2.3 flim-mule-1.12.7 FLIM, message representation or encoding emacs lisp library for mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-mule-9.22, custom-mule-1.9962, ja-nkf-1.62, mule-2.3, mule-common-2.3 flim-xemacs-1.13.2 FLIM, message representation or encoding emacs lisp library for xemacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs-9.22, ja-nkf-1.62, jpeg-6b, png-1.0.3, xemacs-19.16, xpm-3.4k flim-xemacs-mule-1.13.2 FLIM, message representation or encoding emacs lisp library for xemacs-mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs-mule-9.22, faces-1.6.1, jpeg-6b, png-1.0.3, tiff-3.5.1, xemacs-mule-21.1.6, xemacs-mule-common-21.1.6, xemacs-sumo-pkg-19990713, xpm-3.4k flim-xemacs-mule-1.12.7 FLIM, message representation or encoding emacs lisp library for xemacs-mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs-mule-9.22, faces-1.6.1, jpeg-6b, png-1.0.3, tiff-3.5.1, xemacs-mule-21.1.6, xemacs-mule-common-21.1.6, xemacs-sumo-pkg-19990713, xpm-3.4k flim-xemacs-1.12.7 FLIM, message representation or encoding emacs lisp library for xemacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs-9.22, ja-nkf-1.62, jpeg-6b, png-1.0.3, xemacs-19.16, xpm-3.4k flim-xemacs20-1.13.2 FLIM, message representation or encoding emacs lisp library for xemacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs20-9.22, ja-nkf-1.62, jpeg-6b, png-1.0.3, xemacs-20.4, xpm-3.4k flim-xemacs20-1.12.7 FLIM, message representation or encoding emacs lisp library for xemacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs20-9.22, ja-nkf-1.62, jpeg-6b, png-1.0.3, xemacs-20.4, xpm-3.4k semi-emacs-1.13.6 SEMI, Library of MIME feature for GNU Emacs for emacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-emacs-9.22, custom-emacs-1.9962, emacs-19.34b, flim-emacs-1.13.2, ja-nkf-1.62 semi-emacs-1.13.4 SEMI, Library of MIME feature for GNU Emacs for emacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-emacs-9.22, custom-emacs-1.9962, emacs-19.34b, flim-emacs-1.12.7, ja-nkf-1.62 semi-emacs20-1.13.6 SEMI, Library of MIME feature for GNU Emacs for emacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-emacs20-9.22, emacs-20.4, flim-emacs20-1.13.2, ja-nkf-1.62 semi-emacs20-1.13.4 SEMI, Library of MIME feature for GNU Emacs for emacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-emacs20-9.22, emacs-20.4, flim-emacs20-1.12.7, ja-nkf-1.62 semi-mule-1.13.6 SEMI, Library of MIME feature for GNU Emacs for mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-mule-9.22, custom-mule-1.9962, flim-mule-1.13.2, ja-nkf-1.62, mule-2.3, mule-common-2.3 semi-mule-1.13.4 SEMI, Library of MIME feature for GNU Emacs for mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-mule-9.22, custom-mule-1.9962, flim-mule-1.12.7, ja-nkf-1.62, mule-2.3, mule-common-2.3 semi-xemacs-1.13.6 SEMI, Library of MIME feature for GNU Emacs for xemacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs-9.22, flim-xemacs-1.13.2, ja-nkf-1.62, jpeg-6b, png-1.0.3, xemacs-19.16, xpm-3.4k semi-xemacs-mule-1.13.6 SEMI, Library of MIME feature for GNU Emacs for xemacs-mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs-mule-9.22, faces-1.6.1, flim-xemacs-mule-1.13.2, jpeg-6b, png-1.0.3, tiff-3.5.1, xemacs-mule-21.1.6, xemacs-mule-common-21.1.6, xemacs-sumo-pkg-19990713, xpm-3.4k semi-xemacs-mule-1.13.4 SEMI, Library of MIME feature for GNU Emacs for xemacs-mule Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs-mule-9.22, faces-1.6.1, flim-xemacs-mule-1.12.7, jpeg-6b, png-1.0.3, tiff-3.5.1, xemacs-mule-21.1.6, xemacs-mule-common-21.1.6, xemacs-sumo-pkg-19990713, xpm-3.4k semi-xemacs-1.13.4 SEMI, Library of MIME feature for GNU Emacs for xemacs Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs-9.22, flim-xemacs-1.12.7, ja-nkf-1.62, jpeg-6b, png-1.0.3, xemacs-19.16, xpm-3.4k semi-xemacs20-1.13.6 SEMI, Library of MIME feature for GNU Emacs for xemacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs20-9.22, flim-xemacs20-1.13.2, ja-nkf-1.62, jpeg-6b, png-1.0.3, xemacs-20.4, xpm-3.4k semi-xemacs20-1.13.4 SEMI, Library of MIME feature for GNU Emacs for xemacs20 Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, apel-xemacs20-9.22, flim-xemacs20-1.12.7, ja-nkf-1.62, jpeg-6b, png-1.0.3, xemacs-20.4, xpm-3.4k Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== bochs-991004a IBM PC,i386,BIOS and AT hardware emulator. Runs DOS,Win 95,other OSs. Maintained by: obrien@FreeBSD.org Requires: XFree86-3.3.5 mastergear-1.3 SEGA Master System and Game Gear emulator for X Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.5 Category ftp (http://www.freebsd.org/ports/ftp.html) ================================================================== downloader-1.0b5 Program for downloading via ftp or http with GUI Maintained by: ijliao@csie.nctu.edu.tw Requires: XFree86-3.3.5, gettext-0.10.35, glib-1.2.5, gtk-1.2.5 proftpd-1.2.0p8 Highly configurable ftp daemon Maintained by: mharo@FreeBSD.org Requires: autoconf-2.13, gmake-3.77, m4-1.4 spegla-1.04p1 A mirror program for FTP sites (written in C) Maintained by: jkh@FreeBSD.org Category games (http://www.freebsd.org/ports/games.html) ================================================================== actx-0.99.1 a window sitter for X11 Maintained by: esu@yk.rim.or.jp Requires: XFree86-3.3.5, xpm-3.4k cgoban-1.9.8 Internet Go Server client and game editor Maintained by: simonm@dcs.gla.ac.uk Requires: XFree86-3.3.5 xphotohunter-1.4 A game looking for the difference between two pictures Maintained by: clive@CirX.ORG Also listed in: chinese Requires: XFree86-3.3.5, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gmake-3.77, gtk-1.2.5, imlib-1.9.7, jpeg-6b, png-1.0.3, tiff-3.5.1 xpuyopuyo-0.2.3 A puzzle game, somewhat like Tetris Maintained by: yinjieh@csie.nctu.edu.tw Requires: ORBit-0.5.0, XFree86-3.3.5, esound-0.2.15, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gmake-3.77, gnomelibs-1.0.14, gtk-1.2.5, imlib-1.9.7, jpeg-6b, libaudiofile-0.1.9, png-1.0.3, tiff-3.5.1, xpm-3.4k xskat-3.2 Play the card game Skat Maintained by: tg@FreeBSD.org Requires: XFree86-3.3.5 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== ImageMagick-4.2.9 An X11 package for display and interactive manipulation of images Maintained by: jseger@FreeBSD.org Also listed in: perl5 Requires: XFree86-3.3.5, freetype-1.2, ghostscript-5.10, gsfonts-5.10, jbigkit-1.0, jpeg-6b, mpeg2codec-1.2, netpbm-94.3.1, png-1.0.3, tiff-3.5.1, transfig-3.2.1, xpm-3.4k enfle-19991005 Simple Plugin-based Graphic Loader Enfle Maintained by: mami@whale.cc.muroran-it.ac.jp Requires: XFree86-3.3.5, bzip2-0.9.5d, gmake-3.77, jpeg-6b, png-1.0.3 graphviz-1.5 Graph Visualization Software from AT&T and Bell Labs Maintained by: ports@FreeBSD.org Also listed in: tk80 Requires: XFree86-3.3.5, tcl-8.0.5, tk-8.0.5 gtksee-0.5.0 Image viewer Maintained by: dirk@FreeBSD.org Requires: XFree86-3.3.5, bzip-0.21, bzip2-0.9.5d, gettext-0.10.35, glib-1.2.5, gtk-1.2.5, jpeg-6b, png-1.0.3, tiff-3.5.1 imlib-1.9.7 A graphic library for enlightenment package Maintained by: vanilla@FreeBSD.org Requires: XFree86-3.3.5, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gmake-3.77, gtk-1.2.5, jpeg-6b, libtool-1.3.3, png-1.0.3, tiff-3.5.1 lfview-1.1b3 Graphic viewer for Leaf products Maintained by: s974123@cc.matsuyama-u.ac.jp Requires: XFree86-3.3.5 pnmtopng-2.37.3 Converter between PNG and portable anymap images Maintained by: volf@oasis.IAEhv.nl Requires: XFree86-3.3.5, jpeg-6b, netpbm-94.3.1, png-1.0.3, tiff-3.5.1 scwm-icons-0.99.2 An icon collection for the scwm window manager Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.5 tgif-4.1.21 An Xlib-based two-dimensional drawing tool and hyper-object browser Maintained by: bmc@WillsCreek.COM Requires: XFree86-3.3.5, jpeg-6b, netpbm-94.3.1, tiff-3.5.1 xfractint-3.10 The Unix port of fractint Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.5, unzip-5.40 xsane-0.39 Gtk-based X11 frontend for SANE (Scanner Access Now Easy) Maintained by: domi@saargate.de Requires: XFree86-3.3.5, gettext-0.10.35, glib-1.2.5, gmake-3.77, gtk-1.2.5, jpeg-6b, png-1.0.3, sane-1.0.1, tiff-3.5.1 Category irc (http://www.freebsd.org/ports/irc.html) ================================================================== xchat-1.3.4 An X11 IRC client using the GTK+ toolkit, and optionally, GNOME Maintained by: jim@FreeBSD.org Requires: XFree86-3.3.5, bzip2-0.9.5d, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gmake-3.77, gtk-1.2.5, imlib-1.9.7, jpeg-6b, png-1.0.3, tiff-3.5.1 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-exmh-2.1.0 X11/TK based mail reader front end to MH for Japanese environments Maintained by: ports@FreeBSD.org Also listed in: mail tk80 Requires: XFree86-3.3.5, ja-less-332, ja-mh-6.8.4, ja-tcl-8.0.5, ja-tk-8.0.5, metamail-2.7, xloadimage-4.1 ja-word-0.99.12 Free Japanese word processor which is distributed in GPL2 Maintained by: sada@FreeBSD.ORG Requires: XFree86-3.3.5, gettext-0.10.35, glib-1.2.5, gtk-1.2.5 Category java (http://www.freebsd.org/ports/java.html) ================================================================== jfc-1.1.1 Java Foundation Classes (JFC)/Swing Maintained by: kuriyama@FreeBSD.org Requires: jdk-1.1.8, unzip-5.40 tya-1.5 A ``100% unofficial'' JIT-compiler for java Maintained by: jake@checker.org Requires: jdk-1.1.8 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== pfe-0.9.14 Implementation of ANSI Forth Maintained by: ports@FreeBSD.org gcc-devel-19991004 EGCS enhanced version of the GNU compiler suite (inprogress version) Maintained by: obrien@FreeBSD.org Also listed in: java Requires: gmake-3.77 nqc-2.0.1 A compiler for writing programs for the Lego RCX Maintained by: kbyanc@posi.net Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== exmh-2.1.0 X11/TK based mail reader front end to MH Maintained by: peter@FreeBSD.org Also listed in: tk80 Requires: XFree86-3.3.5, metamail-2.7, mh-6.8.4, tcl-8.0.5, tk-8.0.5, xloadimage-4.1 fetchmail-5.1.1 Batch mail retrieval/forwarding utility for pop2, pop3, apop, imap Maintained by: ve@sci.fi Category math (http://www.freebsd.org/ports/math.html) ================================================================== spin-3.35 An on-the-fly verification system for asynchronous concurrent systems Maintained by: jhanna@home.com xspread-3.1.1c A spreadsheet program for X and terminals Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.5 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== alevt-1.5.0 X11 Teletext decoding and display program. (reads from /dev/vbi) Maintained by: roger@freebsd.org Requires: XFree86-3.3.5, gmake-3.77 mc-4.5.40 Midnight Commander, a free Norton Commander Clone Maintained by: reg@shale.csir.co.za Requires: gettext-0.10.35, glib-1.2.5, gmake-3.77 rtfm-0.2 A FreeBSD documentation search mechanism Maintained by: chris@FreeBSD.org Category net (http://www.freebsd.org/ports/net.html) ================================================================== freewais-sf-2.2.12 An enhanced Wide Area Information Server Maintained by: ports@FreeBSD.org Also listed in: databases libnet-0.99g A C library for creating IP packets Maintained by: shipley@dis.org Category news (http://www.freebsd.org/ports/news.html) ================================================================== bgrab-1.2.3 Rael's Binary Grabber - downloads binaries from newsgroups Maintained by: kbyanc@posi.net Requires: mmencode-2.7 ifmail-2.15 FidoNet(tm) support package for UN*X platform Maintained by: dirk.meyer@dinoex.sub.org Category palm (http://www.freebsd.org/ports/palm.html) ================================================================== syncal-0.8.1 Synchronize your PalmPilot with ical Maintained by: Lars.Koeller@Uni-Bielefeld.DE Also listed in: comms deskutils Requires: XFree86-3.3.5, ical-2.2, pilot-link-0.9.3, tcl-8.0.5, tk-8.0.5 Category print (http://www.freebsd.org/ports/print.html) ================================================================== lout-3.17 LaTeX like document creation system with PostScript/PDF output Maintained by: ports@FreeBSD.org Requires: gmake-3.77 lyx-1.0.4 Document processor interfaced with LaTeX (nearly WYSIWYG) Maintained by: andreas@FreeBSD.org Requires: XFree86-3.3.5, libwww-5.2.6, png-1.0.3, teTeX-1.0.6, xforms-0.88.1, xpm-3.4k yatex-mule-1.67 Yet Another LaTeX mode and html mode on Emacs (for mule 2.3) Maintained by: taoka@FreeBSD.org Also listed in: elisp yatex-xemacs-mule-1.67 Yet Another LaTeX mode and html mode on Emacs (for XEmacs-mule) Maintained by: taoka@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.5, faces-1.6.1, ja-nkf-1.62, ja-xemacs-21.1.6, jpeg-6b, png-1.0.3, tiff-3.5.1, xemacs-mule-common-21.1.6, xemacs-mule-sumo-pkg-19990713, xemacs-sumo-pkg-19990713, xpm-3.4k yatex-xemacs-1.67 Yet Another LaTeX mode and html mode on Emacs (for XEmacs19, XEmacs20) Maintained by: taoka@FreeBSD.org Also listed in: elisp Category security (http://www.freebsd.org/ports/security.html) ================================================================== krb5-1.1 An authentication system developed at MIT, successor to Kerberos IV Maintained by: nectar@FreeBSD.org Requires: gmake-3.77, m4-1.4 Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== gcombust-0.1.25 A GTK+ frontend for mkisofs and cdrecord Maintained by: nox@jelal.kn-bremen.de Requires: XFree86-3.3.5, cdrecord-1.8a29, gettext-0.10.35, glib-1.2.5, gtk-1.2.5 Category www (http://www.freebsd.org/ports/www.html) ================================================================== apache+mod_ssl-1.3.9+2.4.5 The Apache 1.3 webserver with SSL/TLS functionality Maintained by: rse@engelschall.com Also listed in: security Requires: mm-1.0.12, openssl-0.9.4, rsaref-2.0 sitecopy-0.8.1 Maintains remote websites, uses FTP or WebDAV to sync up with local copy Maintained by: nik@FreeBSD.org Requires: gmake-3.77 tidy-0.9.99.1 Fixes and tidies up HTML files Maintained by: saken@hotel.rmta.org wwwcount-2.5 Access counter, clock and date for WWW pages Maintained by: dervish@ikhala.tcimet.net Requires: gmake-3.77 Category x11-clocks (http://www.freebsd.org/ports/x11-clocks.html) ================================================================== mlclock-1.1 Clock for mlvwm window manager Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.5 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== gtk-engines-0.8 Theme engine for gtk+ toolkits Maintained by: vanilla@FreeBSD.org Requires: XFree86-3.3.5, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gtk-1.2.5, imlib-1.9.7, jpeg-6b, libtool-1.3.3, png-1.0.3, tiff-3.5.1 gtk-1.2.5 General Toolkit for X11 GUI Maintained by: vanilla@FreeBSD.org Requires: XFree86-3.3.5, gettext-0.10.35, glib-1.2.5, libtool-1.3.3 gtkstep-1.9 A theme module to make GTK+ look like the NeXTSTEP(tm) interface Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.5, bzip2-0.9.5d, gettext-0.10.35, glib-1.2.5, gtk-1.2.5, libtool-1.3.3 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== afterstep-1.7.149 A development version of the AfterStep window manager Maintained by: ports@FreeBSD.org Also listed in: afterstep Requires: XFree86-3.3.5, bzip2-0.9.5d, jpeg-6b, png-1.0.3, xpm-3.4k icewm-0.9.49 Window Manager designed for speed, usability and consistency Maintained by: nacai@iname.com Requires: XFree86-3.3.5, gmake-3.77, xpm-3.4k mlvwm-0.9.0 Macintosh like window manager for X11 Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.5, xpm-3.4k qvwm-1.1.1 Windows 95/98/NT like window manager for X11 Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.5, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gtk-1.2.5, imlib-1.9.7, jpeg-6b, png-1.0.3, tiff-3.5.1, xpm-3.4k scwm-0.99.3 Scheme configurable window manager Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.5, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gmake-3.77, gtk-1.2.5, guile-1.3, imlib-1.9.7, jpeg-6b, png-1.0.3, scwm-icons-0.99.2, tiff-3.5.1, xpm-3.4k windowmaker-i18n-0.61.1 A GNUStep-compliant NeXTStep clone window manager with i18n extention Maintained by: mac@jp.freebsd.org Also listed in: windowmaker Requires: XFree86-3.3.5, bzip2-0.9.5d, gettext-0.10.35, giflib-4.1.0, ja-nkf-1.62, jpeg-6b, libproplist-0.9.1, libtool-1.3.3, png-1.0.3, tiff-3.5.1, wmicons-1.0, xpm-3.4k windowmaker-0.61.1 GNUStep-compliant NeXTStep window manager clone Maintained by: handy@physics.montana.edu Also listed in: windowmaker Requires: XFree86-3.3.5, bzip2-0.9.5d, giflib-4.1.0, jpeg-6b, libproplist-0.9.1, libtool-1.3.3, png-1.0.3, tiff-3.5.1, xpm-3.4k wm2-4.0 A very simple window manager for X Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.5 wmakerconf-2.3 A configuration tool for Window Maker Maintained by: dr@domix.de Requires: XFree86-3.3.5, bzip2-0.9.5d, gettext-0.10.35, giflib-4.1.0, glib-1.2.5, gmake-3.77, gtk-1.2.5, imlib-1.9.7, jpeg-6b, libproplist-0.9.1, libwmfun-0.0.2, png-1.0.3, rpm-2.5.5, tiff-3.5.1, wget-1.5.3, windowmaker-0.61.1, xpm-3.4k xfce-3.1.2 CDE like desktop with GTK Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.5, gettext-0.10.35, glib-1.2.5, gtk-1.2.5, xpm-3.4k _________________________________________________________________ © 1996-1998 by Wolfram Schneider. All rights reserved. Please direct questions about this service to www@FreeBSD.org General questions about FreeBSD ports should be sent to ports@FreeBSD.org Last database update: 1999-10-14 10:49:31 UTC; based on revision 1.245 _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: noconv iQCVAwUBOAnKPDmN/mkrcYGtAQEPXgP/YFYqbW7xq5ADkjQYAgHtQ93UtnPvj4VZ OwhwNOgqR5kTwN+sNqeb0pfdv1lPx4gGuy2ytdTytiAG3tyQ2Amdve3N6h6XcU9j aZwrEKGuq33gAyCvcwmlEYbVPQDz+Ck24CNZeUce3n9QNbrBH82Zb9cy7AutzDBe W6aSEYnzgWg= =ZiR/ -----END PGP SIGNATURE----- -- Wolfram Schneider http://wolfram.schneider.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 6:40:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ady.warpnet.ro (ady.warpnet.ro [194.102.224.1]) by hub.freebsd.org (Postfix) with ESMTP id BF91914BCF for ; Sun, 17 Oct 1999 06:40:15 -0700 (PDT) (envelope-from ady@warpnet.ro) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.9.3/8.9.3) with ESMTP id QAA51918; Sun, 17 Oct 1999 16:43:27 +0300 (EEST) (envelope-from ady@warpnet.ro) Date: Sun, 17 Oct 1999 16:43:27 +0300 (EEST) From: Adrian Penisoara To: jim@cdrom.com Cc: jack , Ilya Naumov , pine@freebsd.ady.ro, ports@FreeBSD.ORG Subject: Re: pine 4.20 In-Reply-To: <19991015102829.C30499@limbo.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Fri, 15 Oct 1999, Jim Mock wrote: > On Fri, 15 Oct 1999 at 09:43:24 -0400, jack wrote: > > Today Ilya Naumov wrote: > > > > > are there any plans to commit new pine 4.20 > > > (http://www.washington.edu/pine/changes/4.10-to-4.20.html) into FreeBSD > > > ports? > > > > There is a PR that does, 14313. > > I've tested the patches, and now I'm just waiting for the go ahead > from Adrian (the maintainer, who is Cc'd and who I emailed yesterday > about it) before I commit them. > Right now I've got some personal problems and have no time to take care of this -- so please go ahead if you think it's OK and I'll review it later, when possible... > - jim > > -- > - jim mock - walnut creek cdrom - www.wccdrom.com - jim@cdrom.com - > - phone: 925.691.2800 x3814 - fax: 925.674.0821 - jim@FreeBSD.org - > - freebsdzine - http://www.freebsdzine.org/ - jim@freebsdzine.org - > Thanks, Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 9:22: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from modemcable156.106-200-24.mtl.mc.videotron.net (modemcable156.106-200-24.mtl.mc.videotron.net [24.200.106.156]) by hub.freebsd.org (Postfix) with SMTP id 0591614CAD for ; Sun, 17 Oct 1999 09:22:04 -0700 (PDT) (envelope-from patrick@mindstep.com) Received: (qmail 509 invoked from network); 17 Oct 1999 15:55:22 -0000 Received: from unknown (HELO patrak) (192.168.10.25) by jacuzzi.local.mindstep.com with SMTP; 17 Oct 1999 15:55:22 -0000 Message-ID: <001101bf18b8$049e5e40$190aa8c0@local.mindstep.com> From: "Patrick Bihan-Faou" To: "Cy Schubert - ITSD Open Systems Group" , , References: <011801bf159c$f80630e0$190aa8c0@local.mindstep.com> <199910161454.HAA46310@cwsys.cwsent.com> Subject: Re: make.conf options (was Re: package-like feature for the base distrib (was Re: FreeSSH)) Date: Sun, 17 Oct 1999 11:55:21 -0400 Organization: MindStep Corporation MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, From: Cy Schubert - ITSD Open Systems Group > > I was not talking about things that constitute the "real" core of the > > distribution (kernel, basic libraries etc.). I was more thinking about > > "userland" stuff that is included in the distribution but might not be > > required by everybody. Sendmail for example is something I don't want since > > I user qmail. However I have to remove it by hand... Other examples are bind > > or perl. > > You don't need to install them. Just put these in make.conf. > > NO_SENDMAIL= true > NOPERL= true > NOGAMES= true > > It might be a good idea to support NONAMED, NOUUCP, and NONFS, > defines in make.conf. Since some like to use Qmail, Postfix, SSH, and > Kerberos V, like BUILD_PORTS='postfix ssh krb5 XFree86' in make.conf > would fetch new copies of distfiles (if you don't have them), de-install > old versions, build and install the listed ports each time a make world > is performed. This is going in the right direction, but here is a question (and I don't have the answer). Is it so much more easier to create new compile time directive than to go the extra step and use packages where they are available ? For example "bind8" is available as a package. Why not have the base install process use that instead of using its own source ? After all the package system is good, and we should capitalize on it. For things that don't have an equivalent (yet) in the ports, then there are 2 approaches: - the component is "optional enough" that it could be made as a package - or it is really required, in which case it belongs to the core installation. By optional enough, I mean something that: (this is likely not complete) a/ is not required by everybody (UUCP, YP) nore by the kernel to run properly b/ does not rely on other kernel components to be built properly c/ ... Again, I think that "sendmail" definitelly falls in that category as well as "bind". As far as the BUILD_PORTS variable. This is a great idea... Again why not take it to the next level which could be to have a new "target" in the ports' makefile: something like "make pkg_update" which would go and build/install the new version of all the installed packages/ports ? If I can help moving things in that direction, I will hapily land a hand... Patrick. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 9:31: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id CCBD114A13; Sun, 17 Oct 1999 09:30:58 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id MAA46571; Sun, 17 Oct 1999 12:30:51 -0400 (EDT) (envelope-from wollman) Date: Sun, 17 Oct 1999 12:30:51 -0400 (EDT) From: Garrett Wollman Message-Id: <199910171630.MAA46571@khavrinen.lcs.mit.edu> To: "Patrick Bihan-Faou" Cc: "Cy Schubert - ITSD Open Systems Group" , , Subject: Re: make.conf options (was Re: package-like feature for the base distrib (was Re: FreeSSH)) In-Reply-To: <001101bf18b8$049e5e40$190aa8c0@local.mindstep.com> References: <011801bf159c$f80630e0$190aa8c0@local.mindstep.com> <199910161454.HAA46310@cwsys.cwsent.com> <001101bf18b8$049e5e40$190aa8c0@local.mindstep.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: > This is going in the right direction, but here is a question (and I don't > have the answer). Is it so much more easier to create new compile time > directive than to go the extra step and use packages where they are > available ? For example "bind8" is available as a package. Why not have the > base install process use that instead of using its own source ? Because one of the fundamental principles is that a default installation, with no third-party packages, should still be a complete system, and -- most importantly -- be able to regenerate itself precisely from source. Hence, the default system needs to contain *an* MTA (not necessarily sendmail, but that's not a question we want to reopen), and *a* name server (not necessarily bind, but there are no other choices). -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 10:42:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id DDFEF14F1D for ; Sun, 17 Oct 1999 10:42:11 -0700 (PDT) (envelope-from k5@cheerful.com) Received: from souffle.bogus-local.net (kyoto-p18.alpha-net.ne.jp [210.237.118.18]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id CAA01484; Mon, 18 Oct 1999 02:39:41 +0900 (JST) Date: Mon, 18 Oct 1999 02:41:40 +0900 Message-ID: <14346.2644.818903.29321F@cheerful.com> From: FUJISHIMA Satsuki To: knu@idaemons.org Cc: matt@BabCom.ORG, freebsd-ports@freebsd.org Subject: Re: flashplugin: c++rt0.o problem (Re: FlashPlugin FreeBSD Port.) In-Reply-To: In your message of "Wed, 13 Oct 1999 01:45:29 +0900" <14339.26025.522780.26482Z@archon.my.domain> References: <14339.26025.522780.26482Z@archon.my.domain> User-Agent: Wanderlust/1.0.3 (Notorious) SEMI/1.13.4 (Terai) FLIM/1.12.7 (=?ISO-8859-4?Q?Y=FEzaki?=) MULE/2.3 (SUETSUMUHANA) (based on Emacs 19.34) MIME-Version: 1.0 (generated by SEMI 1.13.4 - "Terai") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Wed, 13 Oct 1999 01:45:29 +0900, Akinori MUSHA aka knu wrote: > To make this port, you might need legacy a.out csu library files. > Do the following steps: > > 1. extract /usr/src/lib (distribution files: src/slib.??) > 2. cd /usr/src/lib/csu/i386 > 3. make clean depend > 4. make all install > > And then try making the port. I think you meant "make all install OBJFORMAT=aout" in (4). $ objformat elf $ cd ~/tmp/src/lib/csu/i386 && make cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DCRT0 -DDYNAMIC /home/k5/tmp/src/lib/csu/i386/crt0.c -o crt0.o /home/k5/tmp/src/lib/csu/i386/crt0.c: In function `__do_dynamic_link': /home/k5/tmp/src/lib/csu/i386/crt0.c:196: storage size of `crt' isn't known /home/k5/tmp/src/lib/csu/i386/crt0.c:260: `CRT_VERSION_BSD_5' undeclared (first use this function) /home/k5/tmp/src/lib/csu/i386/crt0.c:260: (Each undeclared identifier is reported only once /home/k5/tmp/src/lib/csu/i386/crt0.c:260: for each function it appears in.) /home/k5/tmp/src/lib/csu/i386/crt0.c:264: `CRT_VERSION_BSD_4' undeclared (first use this function) /home/k5/tmp/src/lib/csu/i386/crt0.c:268: `CRT_VERSION_BSD_3' undeclared (first use this function) /home/k5/tmp/src/lib/csu/i386/crt0.c:269: invalid use of undefined type `struct _dynamic' /home/k5/tmp/src/lib/csu/i386/crt0.c:275: dereferencing pointer to incomplete type /home/k5/tmp/src/lib/csu/i386/crt0.c:288: `LDSO_VERSION_HAS_DLEXIT' undeclared (first use this function) /home/k5/tmp/src/lib/csu/i386/crt0.c:289: dereferencing pointer to incomplete type *** Error code 1 Stop. $ make OBJFORMAT=aout cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DCRT0 -DDYNAMIC /home/k5/tmp/src/lib/csu/i386/crt0.c -o crt0.o ld -o crt0.o.tmp -x -r crt0.o cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -fpic -c /home/k5/tmp/src/lib/csu/i386/c++rt0.c cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DMCRT0 -DDYNAMIC /home/k5/tmp/src/lib/csu/i386/crt0.c -o gcrt0.o cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DCRT0 /home/k5/tmp/src/lib/csu/i386/crt0.c -o scrt0.o cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DMCRT0 /home/k5/tmp/src/lib/csu/i386/crt0.c -o sgcrt0.o $ -- FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 11: 3:16 1999 Delivered-To: freebsd-ports@freebsd.org Received: from s01.arpa-canada.net (s01.arpa-canada.net [209.104.122.2]) by hub.freebsd.org (Postfix) with ESMTP id 4505714A2C for ; Sun, 17 Oct 1999 11:03:13 -0700 (PDT) (envelope-from matt@BabCom.ORG) Received: by s01.arpa-canada.net (Postfix, from userid 1001) id A8747B885; Sun, 17 Oct 1999 14:03:11 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by s01.arpa-canada.net (Postfix) with ESMTP id A51A3B; Sun, 17 Oct 1999 14:03:11 -0400 (EDT) Date: Sun, 17 Oct 1999 14:03:11 -0400 (EDT) From: matt X-Sender: matt@s01.arpa-canada.net To: FUJISHIMA Satsuki Cc: knu@idaemons.org, freebsd-ports@freebsd.org Subject: Re: flashplugin: c++rt0.o problem (Re: FlashPlugin FreeBSD Port.) In-Reply-To: <14346.2644.818903.29321F@cheerful.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Aha... this was the magick trick I needed.....Well, thank you -- that works perfectly now. Why did I not think of that....The port instructions still say (quote): root[s02]:/usr/ports/www/flashplugin/files# more message.nolib === You couldn't build this port for lack of aout csu library files. You could prepare them as: 1. extract /usr/src/lib (distribution files: src/slib.??) 2. cd /usr/src/lib/csu/i386 3. make clean depend 4. make all install === Ah well, live and learn -- thanks. Matt On Mon, 18 Oct 1999, FUJISHIMA Satsuki wrote: : At Wed, 13 Oct 1999 01:45:29 +0900, : Akinori MUSHA aka knu wrote: : : > To make this port, you might need legacy a.out csu library files. : > Do the following steps: : > : > 1. extract /usr/src/lib (distribution files: src/slib.??) : > 2. cd /usr/src/lib/csu/i386 : > 3. make clean depend : > 4. make all install : > : > And then try making the port. : : I think you meant "make all install OBJFORMAT=aout" in (4). : : $ objformat : elf : $ cd ~/tmp/src/lib/csu/i386 && make : cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DCRT0 -DDYNAMIC /home/k5/tmp/src/lib/csu/i386/crt0.c -o crt0.o : /home/k5/tmp/src/lib/csu/i386/crt0.c: In function `__do_dynamic_link': : /home/k5/tmp/src/lib/csu/i386/crt0.c:196: storage size of `crt' isn't known : /home/k5/tmp/src/lib/csu/i386/crt0.c:260: `CRT_VERSION_BSD_5' undeclared (first use this function) : /home/k5/tmp/src/lib/csu/i386/crt0.c:260: (Each undeclared identifier is reported only once : /home/k5/tmp/src/lib/csu/i386/crt0.c:260: for each function it appears in.) : /home/k5/tmp/src/lib/csu/i386/crt0.c:264: `CRT_VERSION_BSD_4' undeclared (first use this function) : /home/k5/tmp/src/lib/csu/i386/crt0.c:268: `CRT_VERSION_BSD_3' undeclared (first use this function) : /home/k5/tmp/src/lib/csu/i386/crt0.c:269: invalid use of undefined type `struct _dynamic' : /home/k5/tmp/src/lib/csu/i386/crt0.c:275: dereferencing pointer to incomplete type : /home/k5/tmp/src/lib/csu/i386/crt0.c:288: `LDSO_VERSION_HAS_DLEXIT' undeclared (first use this function) : /home/k5/tmp/src/lib/csu/i386/crt0.c:289: dereferencing pointer to incomplete type : *** Error code 1 : : Stop. : $ make OBJFORMAT=aout : cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DCRT0 -DDYNAMIC /home/k5/tmp/src/lib/csu/i386/crt0.c -o crt0.o : ld -o crt0.o.tmp -x -r crt0.o : cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -fpic -c /home/k5/tmp/src/lib/csu/i386/c++rt0.c : cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DMCRT0 -DDYNAMIC /home/k5/tmp/src/lib/csu/i386/crt0.c -o gcrt0.o : cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DCRT0 /home/k5/tmp/src/lib/csu/i386/crt0.c -o scrt0.o : cc -O -m486 -pipe -DLIBC_SCCS -fno-omit-frame-pointer -c -DMCRT0 /home/k5/tmp/src/lib/csu/i386/crt0.c -o sgcrt0.o : $ : : -- : FUJISHIMA Satsuki : -- "If the primates that we came from had known that someday politicians would come out of the...the gene pool, they'd a stayed up in the trees and written evolution off as a bad idea. Hell, I always thought the opposable thumb was overrated." -Sheridan, "A Distant Star" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 12:58:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from dt050n71.san.rr.com (dt050n71.san.rr.com [204.210.31.113]) by hub.freebsd.org (Postfix) with ESMTP id DB3B114A2D for ; Sun, 17 Oct 1999 12:58:42 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt050n71.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA11539; Sun, 17 Oct 1999 12:58:41 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <380A2A71.4F0088CB@gorean.org> Date: Sun, 17 Oct 1999 12:58:41 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 4.0-CURRENT-0927 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Cc: dbaker@distributed.net Subject: Problem with new rc5des port Content-Type: multipart/mixed; boundary="------------4984681DAD323693B47CCEFC" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------4984681DAD323693B47CCEFC Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit When I try installing rc5 with the new port without an existing /usr/local/distributed.net/rc5des.ini file it bombs with the following: *** Error code 150 Stop. *** Error code 1 Stop. *** Error code 1 Stop. There is more text before this, but all efforts to get it before it wrapped into oblivion failed. It does work if I already have an older version installed. Also, the new binary addresses all of the issues that I complained about previously, so I'm happy about that anyways. I'm not sure where to start on the installation issue. It seems to be failing in the do-configure step when it tries to run the rc5des -config. The attached patch quiets some portlint warnings, mostly whitespace stuff. HTH, Doug -- "Stop it, I'm gettin' misty." - Mel Gibson as Porter, "Payback" --------------4984681DAD323693B47CCEFC Content-Type: text/plain; charset=us-ascii; name="rc5des-port.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rc5des-port.diff" Index: Makefile =================================================================== RCS file: /usr/ncvs/ports/misc/rc5des/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 1999/10/14 17:06:20 1.15 +++ Makefile 1999/10/17 19:44:41 @@ -6,13 +6,15 @@ # $FreeBSD: ports/misc/rc5des/Makefile,v 1.15 1999/10/14 17:06:20 dbaker Exp $ # -DISTNAME= rc5des +DISTNAME= rc5des PKGNAME= rc5des-2.7106.444 CATEGORIES= misc -MASTER_SITES= ftp://ftp.distributed.net/pub/dcti/v2.7112/ \ +MASTER_SITES= ftp://ftp.distributed.net/pub/dcti/v2.7112/ \ http://http.distributed.net/pub/dcti/v2.7112/ DISTFILES= rc5des444-freebsd-x86-elf.tar.gz +MAINTAINER= dbaker@distributed.net + .include ONLY_FOR_ARCHS= i386 @@ -23,8 +25,6 @@ BROKEN= "No version is currently available for your system. Please try again later." .endif -MAINTAINER= dbaker@distributed.net - NO_WRKSUBDIR= yes NO_BUILD= yes @@ -41,13 +41,13 @@ .if !defined(BATCH) do-configure: if [ ! -f ${BINDIR}/rc5des.ini ]; then \ - install -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ + ${INSTALL} -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ ${WRKSRC}/rc5des -config; \ fi .else do-configure: if [ ! -f ${BINDIR}/rc5des.ini ]; then \ - install -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ + ${INSTALL} -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ fi .endif --------------4984681DAD323693B47CCEFC-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 13: 9:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mailhub1.cuckoo.com (wrangler.cuckoo.com [209.113.113.66]) by hub.freebsd.org (Postfix) with SMTP id 957D514A2D for ; Sun, 17 Oct 1999 13:09:03 -0700 (PDT) (envelope-from dbaker@cuckoo.com) Received: (qmail 52225 invoked by uid 200); 17 Oct 1999 20:09:01 -0000 Date: Sun, 17 Oct 1999 15:09:01 -0500 From: Daniel Baker To: Doug Cc: ports@freebsd.org Subject: Re: Problem with new rc5des port Message-ID: <19991017150901.C42128@cuckoo.com> Reply-To: dbaker@cuckoo.com References: <380A2A71.4F0088CB@gorean.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <380A2A71.4F0088CB@gorean.org> X-PGP-Fingerprint: F3 41 B7 EE 96 92 F5 35 5E 3C 02 61 08 22 23 98 X-Operating-System: FreeBSD 3.3-STABLE i386 X-Distributed: Join the cows! http://www.distributed.net/ _]:8) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yeah, this is a result of a lame feature(?) in the client that attempts to prevent stdin/stdout from being redirected. I fixed the bug in the client and commited a change. We'll be putting out a i386 freebsd elf bin distribution pretty shortly that will fix this problem. I will commit new md5s when this takes place. Thanks for the note. Daniel On 17-Oct-1999, Doug wrote: > When I try installing rc5 with the new port without an existing > /usr/local/distributed.net/rc5des.ini file it bombs with the following: > > *** Error code 150 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > > There is more text before this, but all efforts to get it before it > wrapped into oblivion failed. It does work if I already have an older > version installed. Also, the new binary addresses all of the issues that > I complained about previously, so I'm happy about that anyways. > > I'm not sure where to start on the installation issue. It seems to be > failing in the do-configure step when it tries to run the rc5des > -config. The attached patch quiets some portlint warnings, mostly > whitespace stuff. > > HTH, > > Doug > -- > "Stop it, I'm gettin' misty." > > - Mel Gibson as Porter, "Payback" > Index: Makefile > =================================================================== > RCS file: /usr/ncvs/ports/misc/rc5des/Makefile,v > retrieving revision 1.15 > diff -u -r1.15 Makefile > --- Makefile 1999/10/14 17:06:20 1.15 > +++ Makefile 1999/10/17 19:44:41 > @@ -6,13 +6,15 @@ > # $FreeBSD: ports/misc/rc5des/Makefile,v 1.15 1999/10/14 17:06:20 dbaker Exp $ > # > > -DISTNAME= rc5des > +DISTNAME= rc5des > PKGNAME= rc5des-2.7106.444 > CATEGORIES= misc > -MASTER_SITES= ftp://ftp.distributed.net/pub/dcti/v2.7112/ \ > +MASTER_SITES= ftp://ftp.distributed.net/pub/dcti/v2.7112/ \ > http://http.distributed.net/pub/dcti/v2.7112/ > DISTFILES= rc5des444-freebsd-x86-elf.tar.gz > > +MAINTAINER= dbaker@distributed.net > + > .include > > ONLY_FOR_ARCHS= i386 > @@ -23,8 +25,6 @@ > BROKEN= "No version is currently available for your system. Please try again later." > .endif > > -MAINTAINER= dbaker@distributed.net > - > NO_WRKSUBDIR= yes > NO_BUILD= yes > > @@ -41,13 +41,13 @@ > .if !defined(BATCH) > do-configure: > if [ ! -f ${BINDIR}/rc5des.ini ]; then \ > - install -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ > + ${INSTALL} -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ > ${WRKSRC}/rc5des -config; \ > fi > .else > do-configure: > if [ ! -f ${BINDIR}/rc5des.ini ]; then \ > - install -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ > + ${INSTALL} -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ > fi > .endif > -- dbaker@distributed.net - Chief Operations Administrator - distributed.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 13:10: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E97641511C for ; Sun, 17 Oct 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37192; Sun, 17 Oct 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B7ADA14A2D; Sun, 17 Oct 1999 13:02:40 -0700 (PDT) Message-Id: <19991017200240.B7ADA14A2D@hub.freebsd.org> Date: Sun, 17 Oct 1999 13:02:40 -0700 (PDT) From: rod@oscentral.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14374: gedit dependencies have changed. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14374 >Category: ports >Synopsis: gedit dependencies have changed. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 13:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Rod Taylor >Release: 3.3-Release >Organization: >Environment: >Description: gedit depends on the old gnome libs. Since gnome libs have been updated, the dependency does too.. >How-To-Repeat: >Fix: --- Makefile.old Sun Oct 17 15:24:34 1999 +++ Makefile Sun Oct 17 15:24:07 1999 @@ -16,7 +16,7 @@ MAINTAINER= andy@icc.surw.chel.su -LIB_DEPENDS= gnomeui.2:${PORTSDIR}/x11/gnomelibs +LIB_DEPENDS= gnomeui.3:${PORTSDIR}/x11/gnomelibs USE_X_PREFIX= yes GNU_CONFIGURE= yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 13:20:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 157461511C for ; Sun, 17 Oct 1999 13:20:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37783; Sun, 17 Oct 1999 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id A6D8E1511C for ; Sun, 17 Oct 1999 13:11:50 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11cwef-0004jh-00; Sun, 17 Oct 1999 13:11:46 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id QAA27311; Sun, 17 Oct 1999 16:11:27 -0400 (EDT) (envelope-from will) Message-Id: <199910172011.QAA27311@shadow.blackdawn.com> Date: Sun, 17 Oct 1999 16:11:27 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14375: update port: misc/bidwatcher; from 0.9.11 -> 1.0.0b Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14375 >Category: ports >Synopsis: update port: misc/bidwatcher; from 0.9.11 -> 1.0.0b >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 13:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 4.0-CURRENT i386 >Organization: none >Environment: FreeBSD argon.blackdawn.com 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Tue Oct 12 19:33:01 EDT 1999 root@argon.blackdawn.com:/usr/src/sys/compile/ARGON i386 >Description: (yes, this is my first PR using 4.0-CURRENT. ;-) (and yes, i'm waiting in line to kick marcel's butt.. fix signal.h!! ..maybe that's already been done, i havent cvsup'd and tried buildworld since last night.. ;) this is the bidwatcher update, bidwatcher 0.9.11 -> 1.0.0b. probably the last update that adds features in awhile, or so the author says. :) funny, this is the only port i have that actually updates faster than i can keep up the port.. please note that since the patch to the Makefile is no longer needed, it and the patches/ dir are to be removed from the cvs repository. thanks to the author who included a FreeBSD Makefile (i should have done this for Makefile,v 1.3.) >How-To-Repeat: use the diff below to patch the current port. >Fix: diff -urN bidwatcher/Makefile bidwatcher-1.0/Makefile --- bidwatcher/Makefile Fri Oct 15 14:12:34 1999 +++ bidwatcher-1.0/Makefile Sat Oct 16 19:42:48 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: bidwatcher -# Version required: 0.9.11 +# Version required: 1.0.0b # Date created: 24 Aug 1999 # Whom: Will Andrews # # $FreeBSD: ports/misc/bidwatcher/Makefile,v 1.3 1999/09/27 17:12:06 cpiazza Exp $ # -DISTNAME= bidwatcher-0.9.11 +DISTNAME= bidwatcher-1.0.0b CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SUNSITE} \ http://www.low-fi.com/bw/download/ @@ -27,6 +27,5 @@ @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/bidwatcher @${INSTALL_DATA} ${WRKSRC}/INSTALL ${PREFIX}/share/bidwatcher @${INSTALL_DATA} ${WRKSRC}/CHANGES ${PREFIX}/share/bidwatcher - @${INSTALL_DATA} ${WRKSRC}/LICENSE.LINUX ${PREFIX}/share/bidwatcher/LICENSE .include diff -urN bidwatcher/files/md5 bidwatcher-1.0/files/md5 --- bidwatcher/files/md5 Fri Oct 15 14:12:34 1999 +++ bidwatcher-1.0/files/md5 Sat Oct 16 18:44:54 1999 @@ -1 +1 @@ -MD5 (bidwatcher-0.9.11.tar.gz) = 687a520c52a8face2b142bfd3e194130 +MD5 (bidwatcher-1.0.0b.tar.gz) = 16b13333373a0d219424743dfab6139e diff -urN bidwatcher/patches/patch-aa bidwatcher-1.0/patches/patch-aa --- bidwatcher/patches/patch-aa Fri Aug 27 00:00:54 1999 +++ bidwatcher-1.0/patches/patch-aa Wed Dec 31 19:00:00 1969 @@ -1,84 +0,0 @@ ---- Makefile.orig Tue Aug 24 22:35:35 1999 -+++ Makefile Tue Aug 24 22:38:17 1999 -@@ -2,29 +2,29 @@ - # - # CHANGE WHAT YOU NEED TO, THE MOST LIKELY CANDIDATES FOR CHANGE ARE: - # QTDIR, SYSCONF_CFLAGS_X11, SYSCONF_LFLAGS_X11, SYSCONF_MOC --SYSCONF_CC = g++ -+SYSCONF_CC = ${CXX} - --QTDIR = /usr/include/qt --SYSCONF_CFLAGS_X11 = -I/usr/X11R6/include -+QTDIR ?= /usr/include/qt -+SYSCONF_CFLAGS_X11 = -I${X11BASE}/include - SYSCONF_CFLAGS_QT = -I$(QTDIR) --SYSCONF_CFLAGS_OPENGL = -I/usr/X11R6/include -+SYSCONF_CFLAGS_OPENGL = -I${X11BASE}/include - - # Compiline YACC output - SYSCONF_CFLAGS_YACC = -Wno-unused -Wno-parentheses - - # X11 --SYSCONF_LFLAGS_X11 = -L/usr/X11R6/lib -+SYSCONF_LFLAGS_X11 = -L${X11BASE}/lib - SYSCONF_LIBS_X11 = -lX11 -lXext - # Qt, Qt+OpenGL - SYSCONF_LFLAGS_QT = -L$(QTDIR)/lib - SYSCONF_LIBS_QT = -lqt - SYSCONF_LIBS_QT_OPENGL = -lqgl - # OpenGL --SYSCONF_LFLAGS_OPENGL = -L/usr/X11R6/lib -+SYSCONF_LFLAGS_OPENGL = -L${X11BASE}/lib - SYSCONF_LIBS_OPENGL = -lMesaGL -lMesaGLU -lXmu -lXext -lm - - # Linking applications --SYSCONF_LINK = g++ -+SYSCONF_LINK = ${CXX} - SYSCONF_LFLAGS = - SYSCONF_LIBS = - -@@ -32,14 +32,14 @@ - SYSCONF_LFLAGS_SHOBJ = -shared - - # Meta-object compiler --SYSCONF_MOC = /usr/bin/moc -+SYSCONF_MOC = ${X11BASE}/bin/moc - - # Linking shared libraries - # - Build the $(TARGET) library, eg. lib$(TARGET).so.0.0 - # - Place target in $(DESTDIR) - which has a trailing / - # - Usually needs to incorporate $(VER_MAJ) and $(VER_MIN) - # --SYSCONF_LINK_SHLIB = g++ -+SYSCONF_LINK_SHLIB = ${CXX} - SYSCONF_LINK_TARGET_SHARED = lib$(TARGET).so.$(VER_MAJ).$(VER_MIN) - SYSCONF_LINK_LIB_SHARED = $(SYSCONF_LINK_SHLIB) -shared -Wl,-soname,lib$(TARGET).so.$(VER_MAJ) \ - $(LFLAGS) -o $(SYSCONF_LINK_TARGET_SHARED) \ -@@ -59,11 +59,11 @@ - SYSCONF_LINK_LIB_STATIC = rm -f $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC); \ - $(SYSCONF_AR) $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) $(OBJECTS) $(OBJMOC) - # Compiling application source --SYSCONF_CFLAGS = -O2 -fno-strength-reduce -+SYSCONF_CFLAGS = ${CXXFLAGS} -fno-strength-reduce - # Compiling library source --SYSCONF_CFLAGS_LIB = -O2 -fno-strength-reduce -fPIC -+SYSCONF_CFLAGS_LIB = ${CXXFLAGS} -fno-strength-reduce -fPIC - # Compiling shared-object source --SYSCONF_CFLAGS_SHOBJ = -O2 -fno-strength-reduce -fPIC -+SYSCONF_CFLAGS_SHOBJ = ${CXXFLAGS} -fno-strength-reduce -fPIC - # Default link type (stati linking is still be used where required) - SYSCONF_LINK_LIB = $(SYSCONF_LINK_LIB_SHARED) - SYSCONF_LINK_TARGET = $(SYSCONF_LINK_TARGET_SHARED) -@@ -74,9 +74,9 @@ - ####### Compiler, tools and options - - CC = $(SYSCONF_CC) --CFLAGS = $(SYSCONF_CFLAGS_QT) $(SYSCONF_CFLAGS) --LFLAGS = $(SYSCONF_LFLAGS_QT) $(SYSCONF_LFLAGS_X11) $(SYSCONF_LFLAGS) --LIBS = $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_X11) $(SYSCONF_LIBS) -+CFLAGS += $(SYSCONF_CFLAGS_QT) $(SYSCONF_CFLAGS) -+LFLAGS += $(SYSCONF_LFLAGS_QT) $(SYSCONF_LFLAGS_X11) $(SYSCONF_LFLAGS) -+LIBS += $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_X11) $(SYSCONF_LIBS) - MOC = $(SYSCONF_MOC) - - ####### Target diff -urN bidwatcher/pkg/PLIST bidwatcher-1.0/pkg/PLIST --- bidwatcher/pkg/PLIST Tue Aug 31 12:16:09 1999 +++ bidwatcher-1.0/pkg/PLIST Sat Oct 16 19:42:37 1999 @@ -1,6 +1,5 @@ bin/bidwatcher share/bidwatcher/CHANGES -share/bidwatcher/LICENSE share/bidwatcher/INSTALL share/bidwatcher/README @dirrm share/bidwatcher >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 13:30: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 423071506F for ; Sun, 17 Oct 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA38288; Sun, 17 Oct 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id 81D911511C for ; Sun, 17 Oct 1999 13:21:08 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11cwnj-0004z0-00; Sun, 17 Oct 1999 13:21:07 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id QAA27984; Sun, 17 Oct 1999 16:21:04 -0400 (EDT) (envelope-from will) Message-Id: <199910172021.QAA27984@shadow.blackdawn.com> Date: Sun, 17 Oct 1999 16:21:04 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14376: [PATCH] shells/zsh-devel - fix zshall(1) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14376 >Category: ports >Synopsis: [PATCH] shells/zsh-devel - fix zshall(1) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 13:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: suggested-by: Dan Nelson This patch fixes the zshall(1) manpage. (It may not be obvious by this e-mail, but I am jumping up and down for joy.) >How-To-Repeat: Apply the patch to the current zsh-devel port. >Fix: diff -urN zsh-devel/Makefile zsh-devel.new/Makefile --- zsh-devel/Makefile Sun Oct 17 16:01:07 1999 +++ zsh-devel.new/Makefile Sun Oct 17 15:43:44 1999 @@ -27,6 +27,7 @@ #LDFLAGS+=-static post-install: + @man zshall > /dev/null @${INSTALL_DATA} ${WRKSRC}/Doc/zsh.info ${PREFIX}/info @install-info ${PREFIX}/info/zsh.info ${PREFIX}/info/dir @${ECHO} "Updating /etc/shells" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 13:30:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AFF81509D for ; Sun, 17 Oct 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA38297; Sun, 17 Oct 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id 5EB3D1511C for ; Sun, 17 Oct 1999 13:21:03 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11cwnd-0004yq-00; Sun, 17 Oct 1999 13:21:02 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id QAA27892; Sun, 17 Oct 1999 16:20:58 -0400 (EDT) (envelope-from will) Message-Id: <199910172020.QAA27892@shadow.blackdawn.com> Date: Sun, 17 Oct 1999 16:20:58 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14377: [PATCH] shells/zsh - fix zshall(1) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14377 >Category: ports >Synopsis: [PATCH] shells/zsh - fix zshall(1) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 13:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: suggested-by: Dan Nelson This patch fixes the zshall(1) manpage. (It may not be obvious by this e-mail, but I am jumping up and down for joy.) >How-To-Repeat: Apply the patch to the current zsh port. >Fix: diff -urN zsh/Makefile zsh.new/Makefile --- zsh/Makefile Sun Oct 17 16:04:15 1999 +++ zsh.new/Makefile Sun Oct 17 16:04:48 1999 @@ -28,6 +28,7 @@ #CONFIGURE_ENV+= "LDFLAGS=-static" post-install: + @man zshall > /dev/null @install-info ${PREFIX}/info/zsh.info ${PREFIX}/info/dir @${ECHO} "Updating /etc/shells" @${CP} /etc/shells /etc/shells.bak >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 13:30:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 163E81511C for ; Sun, 17 Oct 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA38315; Sun, 17 Oct 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mayn.de (airbus.mayn.de [194.145.150.13]) by hub.freebsd.org (Postfix) with SMTP id 4A57B1511C for ; Sun, 17 Oct 1999 13:22:38 -0700 (PDT) (envelope-from treif@mayn.de) Received: (qmail 13240 invoked from network); 17 Oct 1999 20:22:19 -0000 Received: from comppp-049.wuerzburg.dialin.mayn.de (HELO mayn.de) (194.145.151.113) by airbus.mayn.de with SMTP; 17 Oct 1999 20:22:19 -0000 Message-Id: <380A0CBF.F4691146@mayn.de> Date: Sun, 17 Oct 1999 19:51:59 +0200 From: Tobias Reifenberger To: FreeBSD-gnats-submit@freebsd.org Subject: ports/14379: New Port: graphics/xmrm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14379 >Category: ports >Synopsis: New Port: graphics/xmrm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 13:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Tobias Reifenberger >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: This is a port for XMRM (X Multi Resolution image Metamorphosis) - a morphing/warping program like xmorph. It's easy to use and has some nice features (e.g. MPEG Video creation). >Description: >How-To-Repeat: >Fix: --------------8648393257C86D7DE634566B Content-Type: application/x-shar; name="port.xmrm-171099.shar" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="port.xmrm-171099.shar" # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # xmrm # xmrm/Makefile # xmrm/patches # xmrm/patches/patch-aa # xmrm/patches/patch-ab # xmrm/patches/patch-ac # xmrm/patches/patch-ad # xmrm/files # xmrm/files/md5 # xmrm/pkg # xmrm/pkg/PLIST # xmrm/pkg/COMMENT # xmrm/pkg/DESCR # echo c - xmrm mkdir -p xmrm > /dev/null 2>&1 echo x - xmrm/Makefile sed 's/^X//' >xmrm/Makefile << 'END-of-xmrm/Makefile' X# New ports collection makefile for: xmrm X# Version required: 2.0 X# Date created: Sa 01 May 1999 15:00:00 MET X# Whom: Tobias Reifenberger X# X# $FreeBSD$ X# X XDISTNAME= xmrm20_sources XPKGNAME= xmrm-2.0 XCATEGORIES= graphics XMASTER_SITES= ftp://ftp.cg.tuwien.ac.at/pub/linux/xmrm \ X ftp://ftp.uni-passau.de/mount/common.lib.archive.unix/Graphic/xmrm XEXTRACT_SUFX= .tgz X XMAINTAINER= treif@mayn.de X XRUN_DEPENDS= mpeg:${PORTSDIR}/graphics/mpeg XLIB_DEPENDS= xforms.0:${PORTSDIR}/x11-toolkits/xforms \ X Xpm.4:${PORTSDIR}/graphics/xpm X XWRKSRC= ${WRKDIR} X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xmrm ${PREFIX}/bin X ${INSTALL_PROGRAM} ${WRKSRC}/xmrm_mpeg ${PREFIX}/bin X X.include END-of-xmrm/Makefile echo c - xmrm/patches mkdir -p xmrm/patches > /dev/null 2>&1 echo x - xmrm/patches/patch-aa sed 's/^X//' >xmrm/patches/patch-aa << 'END-of-xmrm/patches/patch-aa' Xdiff -u ../xmrm.orig/Makefile ./Makefile X--- ../xmrm.orig/Makefile Tue Mar 10 00:00:00 1998 X+++ ./Makefile Sat Sep 11 13:28:02 1999 X@@ -16,8 +16,8 @@ X # X ############################################################################## X X-CPP = g++ X-CC = gcc X+CPP = c++ X+CC = cc X X # -c: don't link yet X # -g: produce debugging-information, don't use together with link_flag -s X@@ -29,14 +29,14 @@ X #COMPILE_FLAGS = -O3 -m486 -c X X # -O: normal optimization level -c: don't link yet X-COMPILE_FLAGS = -O -c X+COMPILE_FLAGS = ${CFLAGS} -I${PREFIX}/include -I${X11BASE}/include -c X X # -s: DESTROYS symbol-table X-LINK_FLAGS = -s X+#LINK_FLAGS = -s X X X-SYSLIB = -L/usr/X11R6/lib -lX11 -lm X-LIBS = -L/usr/lib -ltiff -ljpeg -lgz -lforms -lXpm $(SYSLIB) X+SYSLIB = -L${X11BASE}/lib -lX11 -lm X+LIBS = -L${PREFIX}/lib -ltiff -ljpeg -lz -lxforms -lXpm $(SYSLIB) X X OBJECTS = xmrm.o xmrm_cb.o io.o morphvec.o init.o wavemorph.o wave_rts.o wave.o\ X areas.o xmrm_main.o END-of-xmrm/patches/patch-aa echo x - xmrm/patches/patch-ab sed 's/^X//' >xmrm/patches/patch-ab << 'END-of-xmrm/patches/patch-ab' Xdiff -u ../xmrm.orig/const.h ./const.h X--- ../xmrm.orig/const.h Tue Mar 10 00:00:00 1998 X+++ ./const.h Fri Apr 23 15:46:03 1999 X@@ -3,7 +3,7 @@ X // Programming: Gerhard Waldh^vr, Andreas Artmann X X #include X-#include X+#include X #include X #include X END-of-xmrm/patches/patch-ab echo x - xmrm/patches/patch-ac sed 's/^X//' >xmrm/patches/patch-ac << 'END-of-xmrm/patches/patch-ac' Xdiff -u ../xmrm.orig/io.cc ./io.cc X--- ../xmrm.orig/io.cc Tue Mar 10 00:00:00 1998 X+++ ./io.cc Sat Sep 11 13:26:28 1999 X@@ -87,7 +87,7 @@ X extern ControlClass control; X X /* Constructor: */ X-ControlClass::ControlClass() X+ControlClass::ControlClassInit() X { X int i; X Xdiff -u ../xmrm.orig/io.h ./io.h X--- ../xmrm.orig/io.h Tue Mar 10 00:00:00 1998 X+++ ./io.h Sat Sep 11 13:26:42 1999 X@@ -39,7 +39,7 @@ X char *URL_CG_Home; X char *URL_TU_Vienna; X X- ControlClass(); X+ ControlClassInit(); X int GetDraw(); X void SetDraw(int d); X void SetCursor(int Active, Window win); Xdiff -u ../xmrm.orig/xmrm_main.cc ./xmrm_main.cc X--- ../xmrm.orig/xmrm_main.cc Tue Mar 10 00:00:00 1998 X+++ ./xmrm_main.cc Sat Sep 11 13:27:07 1999 X@@ -6,7 +6,6 @@ X #include X #include X #include X-#include //**************** X #include "xmrm.h" X #include "io.h" X #include "const.h" X@@ -308,7 +307,7 @@ X control.debug = 0; X X /* Init control: */ X- control.ControlClass(); // call constructor X+ control.ControlClassInit(); // call constructor X temp = control.URL_manual; X X while( (c=getopt(argc, argv, "hdm:p:")) != -1) END-of-xmrm/patches/patch-ac echo x - xmrm/patches/patch-ad sed 's/^X//' >xmrm/patches/patch-ad << 'END-of-xmrm/patches/patch-ad' Xdiff -u ../xmrm.orig/morphvec.cc ./morphvec.cc X--- ../xmrm.orig/morphvec.cc Tue Mar 10 00:00:00 1998 X+++ ./morphvec.cc Sat May 8 15:21:25 1999 X@@ -9,6 +9,7 @@ X #include "io.h" X #include "xmrm.h" X //#include "areas.h" X+#include X X //static int oneliner = 1; X X@@ -433,6 +434,10 @@ X void MorphVecClass::DrawVectorScal(FL_OBJECT *obj, int item, int mode, FL_COLOR col) X { X double sc_x,sc_y; X+ X+ /* don't exit on FPE */ X+ fpsetmask(0); X+ X sc_x = (double) obj->w / max_x; sc_y = (double) obj->h / max_y; X X if (item > nr_vec) END-of-xmrm/patches/patch-ad echo c - xmrm/files mkdir -p xmrm/files > /dev/null 2>&1 echo x - xmrm/files/md5 sed 's/^X//' >xmrm/files/md5 << 'END-of-xmrm/files/md5' XMD5 (xmrm20_sources.tgz) = 9deddfdf42a016edd36a9c0b7c1d94b3 END-of-xmrm/files/md5 echo c - xmrm/pkg mkdir -p xmrm/pkg > /dev/null 2>&1 echo x - xmrm/pkg/PLIST sed 's/^X//' >xmrm/pkg/PLIST << 'END-of-xmrm/pkg/PLIST' Xbin/xmrm Xbin/xmrm_mpeg END-of-xmrm/pkg/PLIST echo x - xmrm/pkg/COMMENT sed 's/^X//' >xmrm/pkg/COMMENT << 'END-of-xmrm/pkg/COMMENT' Xa image morphing/warping program END-of-xmrm/pkg/COMMENT echo x - xmrm/pkg/DESCR sed 's/^X//' >xmrm/pkg/DESCR << 'END-of-xmrm/pkg/DESCR' XFrom the manual... X XXMRM is an image morphing program written for XWindows. A special feature Xof this program, which is not found in other morphing packages, is the Xability to control the morphing speed of details in relation to the Xmorphing speed of big features. X Xxmrm supports all Direct-Color-modes (Hi-Color, Real-Color: 15bpp,16bpp Xand True-Color: 24bpp,32bpp), but it doesn't run with any Color- XLookUpTable-mode (8bpp modes) ! X XONLINE-MANUAL: http://www.cg.tuwien.ac.at/~xmrm/ XThe XMRM-Homepage: http://www.cg.tuwien.ac.at/research/ca/mrm/xmrm.html END-of-xmrm/pkg/DESCR exit --------------8648393257C86D7DE634566B-- >Release-Note: >Audit-Trail: >Unformatted: This is a multi-part message in MIME format. --------------8648393257C86D7DE634566B Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 13:30:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CBF86150D2 for ; Sun, 17 Oct 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA38306; Sun, 17 Oct 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mayn.de (airbus.mayn.de [194.145.150.13]) by hub.freebsd.org (Postfix) with SMTP id 92D6815173 for ; Sun, 17 Oct 1999 13:21:23 -0700 (PDT) (envelope-from treif@mayn.de) Received: (qmail 13171 invoked from network); 17 Oct 1999 20:21:17 -0000 Received: from comppp-049.wuerzburg.dialin.mayn.de (HELO mayn.de) (194.145.151.113) by airbus.mayn.de with SMTP; 17 Oct 1999 20:21:17 -0000 Message-Id: <380A0BC0.5EA904F0@mayn.de> Date: Sun, 17 Oct 1999 19:47:44 +0200 From: Tobias Reifenberger To: FreeBSD-gnats-submit@freebsd.org Subject: ports/14378: New Port: graphics/mpeg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14378 >Category: ports >Synopsis: New Port: graphics/mpeg >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 13:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Tobias Reifenberger >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: It's a port for PVRG's MPEG-encoder. This one is needed by XMRM. >Description: >How-To-Repeat: >Fix: --------------013F6471A1EB6A3F601BBDDA Content-Type: application/x-shar; name="port.mpeg-171099.shar" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="port.mpeg-171099.shar" # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mpeg # mpeg/patches # mpeg/patches/patch-aa # mpeg/files # mpeg/files/md5 # mpeg/pkg # mpeg/pkg/PLIST # mpeg/pkg/COMMENT # mpeg/pkg/DESCR # mpeg/Makefile # echo c - mpeg mkdir -p mpeg > /dev/null 2>&1 echo c - mpeg/patches mkdir -p mpeg/patches > /dev/null 2>&1 echo x - mpeg/patches/patch-aa sed 's/^X//' >mpeg/patches/patch-aa << 'END-of-mpeg/patches/patch-aa' X--- makefile.orig Thu Mar 2 02:51:10 1995 X+++ makefile Sat May 1 15:14:08 1999 X@@ -3,7 +3,7 @@ X # There should be no changes for most UNIX compilers. X ########################################################### X X-MFLAGS = -O X+MFLAGS = $(CFLAGS) X DEFS = system.h globals.h marker.h X BASELINE = mpeg.o codec.o huffman.o io.o chendct.o lexer.o marker.o me.o mem.o stat.o stream.o transform.o X END-of-mpeg/patches/patch-aa echo c - mpeg/files mkdir -p mpeg/files > /dev/null 2>&1 echo x - mpeg/files/md5 sed 's/^X//' >mpeg/files/md5 << 'END-of-mpeg/files/md5' XMD5 (MPEGv1.2.2.tar.gz) = ca81191ee66fd9a34de084ea05a3d3a9 END-of-mpeg/files/md5 echo c - mpeg/pkg mkdir -p mpeg/pkg > /dev/null 2>&1 echo x - mpeg/pkg/PLIST sed 's/^X//' >mpeg/pkg/PLIST << 'END-of-mpeg/pkg/PLIST' Xbin/mpeg Xshare/doc/mpeg/README Xshare/doc/mpeg/doc.ps X@dirrm share/doc/mpeg END-of-mpeg/pkg/PLIST echo x - mpeg/pkg/COMMENT sed 's/^X//' >mpeg/pkg/COMMENT << 'END-of-mpeg/pkg/COMMENT' XPVRG's MPEG video stream encoder END-of-mpeg/pkg/COMMENT echo x - mpeg/pkg/DESCR sed 's/^X//' >mpeg/pkg/DESCR << 'END-of-mpeg/pkg/DESCR' XFrom the README: X X X MPEG, CCITT H.261 (P*64), JPEG X Image and Image sequence compression/decompression C software engines. X X XThe Portable Video Research Group at Stanford have developed Ximage/image sequence compression and decompression engines (codecs) Xfor MPEG, CCITT H.261, and JPEG. The primary goal of these codecs is Xto provide the functionality - these codecs are not optimized for Xspeed, rather completeness, and some of the code is kludgey. X XDevelopment of MPEG, P64, and JPEG engines has not been the primary Xgoal of the Portable Video Research Group. Our research has been Xfocused on software and hardware for portable wireless digital video Xcommunication. The charter of this group ended in the summer of 1994. X XCOMMENTS/DISCLAIMERS: X XThis code has been compiled on the Sun Sparc and DECstation UNIX Xmachines; some code has been further checked on HP workstations. X XFor comments, bugs, and other mail relating to the source code, we Xappreciate any comments. The code author can still be reached at Andy XC. Hung at achung@cs.stanford.edu. The standard public domain Xdisclaimer applies: Caveat Emptor - no guarantee on accuracy or Xsoftware support. X XReferences related to these codecs should NOT use any author's name, Xor refer to Stanford University. Rather the Portable Video Research XGroup or the acronym (PVRG) should be used, such as PVRG-MPEG, XPVRG-P64, PVRG-JPEG. X XANONYMOUS FTP: X XThe following files can be obtained through anonymous ftp from Xhavefun.stanford.edu, IP address [36.2.0.35]. The procedure is to use Xftp with the user name "anonymous" and an e-mail address for the Xpassword. X END-of-mpeg/pkg/DESCR echo x - mpeg/Makefile sed 's/^X//' >mpeg/Makefile << 'END-of-mpeg/Makefile' X# New ports collection makefile for: mpeg X# Version required: 1.2.2 X# Date created: Sa 01 May 1999 15:00:00 MET X# Whom: Tobias Reifenberger X# X# $FreeBSD$ X# X XDISTNAME= MPEGv1.2.2 XPKGNAME= mpeg-1.2.2 XCATEGORIES= graphics XMASTER_SITES= ftp://ftp.uni-koeln.de/graph/mpeg/ \ X ftp://ftp.mni.mcgill.ca/pub/mpeg/ \ X ftp://ftp.u-aizu.ac.jp/pub/graphics/image/mpeg/mni.mcgill.ca/ X XMAINTAINER= treif@mayn.de X XWRKSRC= ${WRKDIR}/mpegdir XMAN1= mpeg.1 X Xpre-build: X @${MV} ${WRKSRC}/makefile ${WRKSRC}/Makefile X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/mpeg ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/mpeg.1 ${PREFIX}/man/man1 X X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/mpeg X ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/mpeg/README X ${INSTALL_DATA} ${WRKSRC}/doc.ps ${PREFIX}/share/doc/mpeg/doc.ps X.endif X X.include END-of-mpeg/Makefile exit --------------013F6471A1EB6A3F601BBDDA-- >Release-Note: >Audit-Trail: >Unformatted: This is a multi-part message in MIME format. --------------013F6471A1EB6A3F601BBDDA Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 13:40: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E4AE150FA for ; Sun, 17 Oct 1999 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA39016; Sun, 17 Oct 1999 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Oct 1999 13:40:01 -0700 (PDT) Message-Id: <199910172040.NAA39016@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: RE: ports/14375: update port: misc/bidwatcher; from 0.9.11 -> 1. Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14375; it has been noted by GNATS. From: Will Andrews To: Will Andrews Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: RE: ports/14375: update port: misc/bidwatcher; from 0.9.11 -> 1. Date: Sun, 17 Oct 1999 16:30:07 -0400 (EDT) On 17-Oct-99 Will Andrews wrote: >>Synopsis: update port: misc/bidwatcher; from 0.9.11 -> 1.0.0b Eww, I screwed up. Please close this PR. There is no difference between this and PR #14365. :-) -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 14: 5:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from fly.lglobus.ru (fly.lglobus.ru [195.34.224.130]) by hub.freebsd.org (Postfix) with ESMTP id C0E201506F for ; Sun, 17 Oct 1999 14:05:04 -0700 (PDT) (envelope-from rover@fly.lglobus.ru) Received: (from rover@localhost) by fly.lglobus.ru (8.9.3/8.9.2) id BAA14548 for freebsd-ports@freebsd.org; Mon, 18 Oct 1999 01:05:23 +0400 (MSD) (envelope-from rover) Date: Mon, 18 Oct 1999 01:05:23 +0400 From: "Oleg V. Volkov" To: freebsd-ports@freebsd.org Subject: NO_PACKAGE Message-ID: <19991018010523.B14121@fly.lglobus.ru> Reply-To: fp_rover@lglobus.ru Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i Organization: -=/ SR 13 /=- Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! There's some ports that marked as NO_PACKAGE, because author requires copy of CD where such package would be distributed. I wish to know, would FreeBSD project be interested in sending one CD to software author in exchange to removing NO_PACKAGE line, and if yes, who is responsible for that (where i should point original software author). (If somebody interested, right now i'm speaking about games/adom port, ported by me and originally developed by Thomas Biskup). -- Oleg V. Volkov aka Rover E-mail: rover@lglobus.ru E-mail redirector: sr-13@mail.ru (always up) -=/ SR 13 /=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 14: 9: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from guru.phone.net (guru.phone.net [216.240.39.120]) by hub.freebsd.org (Postfix) with SMTP id A19421506F for ; Sun, 17 Oct 1999 14:08:59 -0700 (PDT) (envelope-from mwm@phone.net) Received: (qmail 15753 invoked by uid 100); 17 Oct 1999 21:08:58 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 17 Oct 1999 21:08:58 -0000 Date: Sun, 17 Oct 1999 14:08:58 -0700 (PDT) From: Mike Meyer To: freebsd-ports@FreeBSD.ORG Cc: freebsd-current@FreeBSD.ORG Subject: Re: make.conf options (was Re: package-like feature for the base distrib (was Re: FreeSSH)) In-Reply-To: <199910171630.MAA46571@khavrinen.lcs.mit.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 17 Oct 1999, Garrett Wollman wrote: ;->< said: ;-> ;->> This is going in the right direction, but here is a question (and I don't ;->> have the answer). Is it so much more easier to create new compile time ;->> directive than to go the extra step and use packages where they are ;->> available ? For example "bind8" is available as a package. Why not have the ;->> base install process use that instead of using its own source ? ;-> ;->Because one of the fundamental principles is that a default ;->installation, with no third-party packages, should still be a complete ;->system, and -- most importantly -- be able to regenerate itself ;->precisely from source. Hence, the default system needs to contain ;->*an* MTA (not necessarily sendmail, but that's not a question we want ;->to reopen), and *a* name server (not necessarily bind, but there are ;->no other choices). Much better put than I was going to do it. Is it possible to arrange things so that this principle can be adhered to, while at the same time making such replaceable components easier to deal with than disabling part of the default installation and installing a package? For instance, do we have to consider anything in a package as "third-party" software? Why can't we use the port/package technology on things that are part of FreeBSD? That way, instead of a compile-time NOFOO option, you have a compile-time FOO= option. The build process would have to be extended to rebuild packages (a good thing in any case). The installation process would need to be able to add "port" source based on the package name. We'd probably want another port category (FreeBsd?) to identify ports that aren't third-party software. Looking back at your principle, the default installation would include nothing that wasn't in the FreeBSD category. So it has no third-party packages. The built system - whether default or not - would be able to regenerate itself precisely from sources. ; Sun, 17 Oct 1999 14:18:37 -0700 (PDT) (envelope-from musha@ms.tokyo.jcom.ne.jp) Received: from daemon.my.domain (pc343031.tokyo.jcom.ne.jp [203.140.143.31]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 06/01/99) with ESMTP id GAA09314; Mon, 18 Oct 1999 06:18:30 +0900 (JST) Received: by daemon.my.domain (8.9.3/3.7W) id GAA34361; Mon, 18 Oct 1999 06:18:04 +0900 (JST) Date: Mon, 18 Oct 1999 06:18:02 +0900 Message-ID: <14346.15626.814726.81928B@archon.my.domain> From: Akinori MUSHA aka knu To: freebsd-ports@freebsd.org Cc: k5@cheerful.com, matt@BabCom.ORG Subject: Re: flashplugin: c++rt0.o problem (Re: FlashPlugin FreeBSD Port.) In-Reply-To: In your message of "Mon, 18 Oct 1999 02:41:40 +0900" <14346.2644.818903.29321F@cheerful.com> References: <14339.26025.522780.26482Z@archon.my.domain> <14346.2644.818903.29321F@cheerful.com> User-Agent: Wanderlust/2.2.3 (Always) SEMI/1.13.6 (Komatsu) PGPGPG FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 6) (Big Bend) (i386--freebsd) Organization: A.I.D. MIME-Version: 1.0 (generated by SEMI 1.13.6 - "Komatsu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Mon, 18 Oct 1999 02:41:40 +0900, FUJISHIMA Satsuki wrote: > At Wed, 13 Oct 1999 01:45:29 +0900, > Akinori MUSHA aka knu wrote: > > > To make this port, you might need legacy a.out csu library files. > > Do the following steps: > > > > 1. extract /usr/src/lib (distribution files: src/slib.??) > > 2. cd /usr/src/lib/csu/i386 > > 3. make clean depend > > 4. make all install > > > > And then try making the port. > > I think you meant "make all install OBJFORMAT=aout" in (4). Thanks. That will be fixed by sada soon, as well as www/libxpg4-ns. -- / /__ __ / ) ) ) ) / http://www.idaemons.org/knu/ Akinori MUSHA aka / (_ / ( (__( mailto:knu@idaemons.org "We are but hungry.. Associated Ita-meshi Daemons!" http://www.idaemons.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 14:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AF49150FA for ; Sun, 17 Oct 1999 14:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42058; Sun, 17 Oct 1999 14:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Oct 1999 14:40:02 -0700 (PDT) Message-Id: <199910172140.OAA42058@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Ade Lovett Subject: Re: ports/14286: Clean up print/pkfonts* and japanese/vfxdvi* Reply-To: Ade Lovett Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14286; it has been noted by GNATS. From: Ade Lovett To: MIHIRA Yoshiro Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/14286: Clean up print/pkfonts* and japanese/vfxdvi* Date: Sun, 17 Oct 1999 16:34:27 -0500 On Sat, Oct 16, 1999 at 09:45:41PM +0900, MIHIRA Yoshiro wrote: > > I'm one of the MASTER_SITE_JP Maintainer. > I put pkfonts to ${MASTER_SITE_JP}/pkfonts last week by > asami-san's request. > But I forgot to put pk600.tar.gz. I put it just now. > > Would you like to re-check Distfile survey. Ok. Next time the survey rolls around, I'll go back and take a peek to see what's improved. At the very least, the following patch will need to be applied to print/pkfonts300/Makefile: --- Makefile.orig Sun Oct 17 16:32:41 1999 +++ Makefile Sun Oct 17 16:33:32 1999 @@ -9,8 +9,8 @@ DISTNAME= pkfonts PKGNAME= pkfonts${RESOLUTION}-1.0 CATEGORIES= print -MASTER_SITES= ftp://ftp.univ-evry.fr/.04/system/OpenBSD/distfiles/pkfonts/ \ - ${MASTER_SITE_PORTS_JP}/pkfonts/ +MASTER_SITES= ${MASTER_SITE_PORTS_JP} +MASTER_SITE_SUBDIR= pkfonts DISTFILES= pk${RESOLUTION}.tar.gz # see below for RESOLUTION definition That will need to be committed before the distfile survey results will be accurate for the pkfonts* ports. -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 14:40: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C05F315143 for ; Sun, 17 Oct 1999 14:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42067; Sun, 17 Oct 1999 14:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nadja.cis.ibaraki.ac.jp (nadja.cis.ibaraki.ac.jp [157.80.87.69]) by hub.freebsd.org (Postfix) with ESMTP id 4FD20150FA for ; Sun, 17 Oct 1999 14:38:59 -0700 (PDT) (envelope-from th@nadja.cis.ibaraki.ac.jp) Received: (from th@localhost) by nadja.cis.ibaraki.ac.jp (8.9.3/8.9.3) id GAA19341; Mon, 18 Oct 1999 06:38:57 +0900 (JST) (envelope-from th) Message-Id: <199910172138.GAA19341@nadja.cis.ibaraki.ac.jp> Date: Mon, 18 Oct 1999 06:38:57 +0900 (JST) From: th@cis.ibaraki.ac.jp Reply-To: th@cis.ibaraki.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14381: New port: games/x3eyes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14381 >Category: ports >Synopsis: New port: games/x3eyes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 14:40:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: HIYAMA Takeshi >Release: FreeBSD 3.3-RELEASE i386 >Organization: Ibaraki University >Environment: >Description: xeyes with 3 eyes. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # x3eyes # x3eyes/pkg # x3eyes/pkg/COMMENT # x3eyes/pkg/PLIST # x3eyes/pkg/DESCR # x3eyes/files # x3eyes/files/md5 # x3eyes/Makefile # echo c - x3eyes mkdir -p x3eyes > /dev/null 2>&1 echo c - x3eyes/pkg mkdir -p x3eyes/pkg > /dev/null 2>&1 echo x - x3eyes/pkg/COMMENT sed 's/^X//' >x3eyes/pkg/COMMENT << 'END-of-x3eyes/pkg/COMMENT' XA xeyes with 3 eyes. END-of-x3eyes/pkg/COMMENT echo x - x3eyes/pkg/PLIST sed 's/^X//' >x3eyes/pkg/PLIST << 'END-of-x3eyes/pkg/PLIST' Xbin/x3eyes END-of-x3eyes/pkg/PLIST echo x - x3eyes/pkg/DESCR sed 's/^X//' >x3eyes/pkg/DESCR << 'END-of-x3eyes/pkg/DESCR' XA xeyes with 3 eyes. X X- TH Xth@cis.ibaraki.ac.jp END-of-x3eyes/pkg/DESCR echo c - x3eyes/files mkdir -p x3eyes/files > /dev/null 2>&1 echo x - x3eyes/files/md5 sed 's/^X//' >x3eyes/files/md5 << 'END-of-x3eyes/files/md5' XMD5 (x3eyes.tar.gz) = 4a61e15023a91bee87b8d8037cfb3439 END-of-x3eyes/files/md5 echo x - x3eyes/Makefile sed 's/^X//' >x3eyes/Makefile << 'END-of-x3eyes/Makefile' X# New ports collection makefile for: x3eyes X# Version required: 1.0 X# Date created: 18 Aug 1999 X# Whom: HIYAMA Takeshi X# X# $Id$ X# X XDISTNAME= x3eyes XPKGNAME= x3eyes-1.0 XCATEGORIES= games XMASTER_SITES= http://puma.cis.ibaraki.ac.jp/~th/pub/X11/ X XMANCOMPRESSED= yes XUSE_IMAKE= yes XMAN1= x3eyes.1 X X.include END-of-x3eyes/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 15:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AEA91151FC for ; Sun, 17 Oct 1999 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA44006; Sun, 17 Oct 1999 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cc158233-a.catv1.md.home.com (cc158233-a.catv1.md.home.com [24.3.25.17]) by hub.freebsd.org (Postfix) with ESMTP id B5DDA14DFD for ; Sun, 17 Oct 1999 15:12:35 -0700 (PDT) (envelope-from sjr@home.net) Received: (from sjr@localhost) by cc158233-a.catv1.md.home.com (8.9.3/8.9.3) id SAA21979; Sun, 17 Oct 1999 18:11:59 -0400 (EDT) (envelope-from sjr) Message-Id: <199910172211.SAA21979@cc158233-a.catv1.md.home.com> Date: Sun, 17 Oct 1999 18:11:59 -0400 (EDT) From: sjr@home.com Reply-To: sjr@home.com To: FreeBSD-gnats-submit@freebsd.org, appleseed@his.com X-Send-Pr-Version: 3.2 Subject: ports/14382: New port for tkrat version 2.0b3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14382 >Category: ports >Synopsis: New port for tkrat version 2.0b3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 15:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Stephen J. Roznowski >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: >Description: This is a port for tkrat version 2.0b3. While still in beta, the author states "...this is almost feature-complete and does not have any known major bugs..." I've created this as tkrat2 vice tkrat so that the stable version (1.2) remains available as a port. Thanks to bgingery@gtcs.com and appleseed@his.com since I was able to copy most of their tkrat port for this. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mail/tkrat2 # mail/tkrat2/files # mail/tkrat2/files/md5 # mail/tkrat2/files/ratatoskrc # mail/tkrat2/patches # mail/tkrat2/patches/patch-aa # mail/tkrat2/pkg # mail/tkrat2/pkg/COMMENT # mail/tkrat2/pkg/DESCR # mail/tkrat2/pkg/PLIST # mail/tkrat2/Makefile # echo c - mail/tkrat2 mkdir -p mail/tkrat2 > /dev/null 2>&1 echo c - mail/tkrat2/files mkdir -p mail/tkrat2/files > /dev/null 2>&1 echo x - mail/tkrat2/files/md5 sed 's/^X//' >mail/tkrat2/files/md5 << 'END-of-mail/tkrat2/files/md5' XMD5 (tkrat-2.0b3.tar.gz) = 2724fcc8c9d4295a51080c3f5c299e2e END-of-mail/tkrat2/files/md5 echo x - mail/tkrat2/files/ratatoskrc sed 's/^X//' >mail/tkrat2/files/ratatoskrc << 'END-of-mail/tkrat2/files/ratatoskrc' X# Minimum defaults or important defaults... X# X# See the file /usr/local/share/doc/tkrat/CONFIGURATION for a more X# detailed explanation of these. X# X X# Which domain we should pretend we are from Xset option(masquerade_as) {} X X# Which domain we are in Xset option(domain) {} X X# Should we sent even though we have a bad hostname? Xset option(force_send) 0 X X# Command to get default folder Xset option(default_folder) "INBOX file {} /var/mail/$env(USER)" X X# Default sending program Xset option(sendprog) /usr/sbin/sendmail X X# Can the sending program handle eightbit data Xset option(sendprog_8bit) true X X# Use the sending program, or use smtp Xset option(sendprot) prog END-of-mail/tkrat2/files/ratatoskrc echo c - mail/tkrat2/patches mkdir -p mail/tkrat2/patches > /dev/null 2>&1 echo x - mail/tkrat2/patches/patch-aa sed 's/^X//' >mail/tkrat2/patches/patch-aa << 'END-of-mail/tkrat2/patches/patch-aa' X--- configure.orig Sun Oct 17 12:41:16 1999 X+++ configure Sun Oct 17 12:42:37 1999 X@@ -1824,7 +1824,7 @@ X for i in $tcl_dirs ; do X tcl_include_dirs="$tcl_include_dirs $i/include" X done X-tcl_include_dirs="$tcl_with_include $tcl_include_dirs /usr/include/tcl /usr/include" X+tcl_include_dirs="$tcl_with_include $tcl_include_dirs /usr/local/include/tcl8.1 /usr/local/include/tk8.1 /usr/include/tcl /usr/include" X tcl_dir=0 X for i in $tcl_include_dirs ; do X if test -r $i/tcl.h ; then END-of-mail/tkrat2/patches/patch-aa echo c - mail/tkrat2/pkg mkdir -p mail/tkrat2/pkg > /dev/null 2>&1 echo x - mail/tkrat2/pkg/COMMENT sed 's/^X//' >mail/tkrat2/pkg/COMMENT << 'END-of-mail/tkrat2/pkg/COMMENT' XA mail user agent for X with a Tcl/Tk user interface END-of-mail/tkrat2/pkg/COMMENT echo x - mail/tkrat2/pkg/DESCR sed 's/^X//' >mail/tkrat2/pkg/DESCR << 'END-of-mail/tkrat2/pkg/DESCR' XExcerpted from the BLURB file... X XTkRat is a graphical Mail User Agent (MUA) which handles MIME, POP3 Xand IMAP4.1. It is mainly written in C, but the user interface is Xdone in Tcl/Tk. The following is a non-exhaustive list of the Xcapabilities: X X * Multilingual interface (English, Swedish and Italian included) X * MIME support: text/plain, image/gif and message/rfc822 X including multipart/mixed and multipart/alternate, X Quoted-printable and Base64 encoding. X * Supports MIME in headers X * Composing: (tk's text widget plus many extensions) or an X external editor of your choice. X * Message database X * Virtual folders: mbox, mh, IMAP or POP X * Message hold: suspend the composing, continued later X * Watcher: When the program is iconified it checks the mailbox X * Uses sendmail OR direct SMTP or other MA X * Supports Delivery Status Notifications - DSN ESMTP sendmail-8.7 X * Supports PGP/MIME and "old-style PGP message receipt" END-of-mail/tkrat2/pkg/DESCR echo x - mail/tkrat2/pkg/PLIST sed 's/^X//' >mail/tkrat2/pkg/PLIST << 'END-of-mail/tkrat2/pkg/PLIST' Xbin/tkrat Xlib/ratatosk/ratatosk2.0.so Xlib/ratatosk/pkgIndex.tcl Xlib/ratatosk/ratatoskrc Xshare/tkrat2.0/util/rat_tabbed.tcl Xshare/tkrat2.0/util/rat_list.tcl Xshare/tkrat2.0/util/rat_fbox.tcl Xshare/tkrat2.0/util/rat_balloon.tcl Xshare/tkrat2.0/util/rat_edit.tcl Xshare/tkrat2.0/util/rat_textlist.tcl Xshare/tkrat2.0/util/rat_ed.tcl Xshare/tkrat2.0/util/blt_busy1.0.so Xshare/tkrat2.0/util/pkgIndex.tcl Xshare/tkrat2.0/tclIndex Xshare/tkrat2.0/alias.tcl Xshare/tkrat2.0/client.tcl Xshare/tkrat2.0/compose.tcl Xshare/tkrat2.0/convert.tcl Xshare/tkrat2.0/dbase.tcl Xshare/tkrat2.0/dialog.tcl Xshare/tkrat2.0/dsn.tcl Xshare/tkrat2.0/exp.tcl Xshare/tkrat2.0/folder.tcl Xshare/tkrat2.0/font.tcl Xshare/tkrat2.0/help.tcl Xshare/tkrat2.0/info.tcl Xshare/tkrat2.0/keydef.tcl Xshare/tkrat2.0/languages.tcl Xshare/tkrat2.0/options.tcl Xshare/tkrat2.0/pgp.tcl Xshare/tkrat2.0/preferences.tcl Xshare/tkrat2.0/print.tcl Xshare/tkrat2.0/show.tcl Xshare/tkrat2.0/source.tcl Xshare/tkrat2.0/start.tcl Xshare/tkrat2.0/text_balText_en.tcl Xshare/tkrat2.0/text_balText_fr.tcl Xshare/tkrat2.0/text_balText_it.tcl Xshare/tkrat2.0/text_balText_sv.tcl Xshare/tkrat2.0/text_changes_en.tcl Xshare/tkrat2.0/text_changes_fr.tcl Xshare/tkrat2.0/text_changes_it.tcl Xshare/tkrat2.0/text_changes_sv.tcl Xshare/tkrat2.0/text_help_en.tcl Xshare/tkrat2.0/text_help_fr.tcl Xshare/tkrat2.0/text_help_it.tcl Xshare/tkrat2.0/text_help_sv.tcl Xshare/tkrat2.0/text_t_en.tcl Xshare/tkrat2.0/text_t_fr.tcl Xshare/tkrat2.0/text_t_it.tcl Xshare/tkrat2.0/text_t_sv.tcl Xshare/tkrat2.0/vfolder.tcl Xshare/tkrat2.0/vfolderdef.tcl Xshare/tkrat2.0/watcher.tcl Xshare/tkrat2.0/winctl.tcl Xshare/tkrat/tkrat.xbm Xshare/tkrat/tkrat_small.xbm Xshare/tkrat/tkrat_smallmask.xbm Xshare/tkrat/tkratmask.xbm Xshare/tkrat/tkrat.xpm Xshare/doc/tkrat/CONFIGURATION Xshare/doc/tkrat/COPYRIGHT Xshare/doc/tkrat/README Xshare/doc/tkrat/interface Xshare/doc/tkrat/userprocs Xshare/doc/tkrat/userproc.example X@dirrm share/tkrat X@dirrm share/tkrat2.0/util X@dirrm share/tkrat2.0 X@dirrm lib/ratatosk END-of-mail/tkrat2/pkg/PLIST echo x - mail/tkrat2/Makefile sed 's/^X//' >mail/tkrat2/Makefile << 'END-of-mail/tkrat2/Makefile' X# New ports collection makefile for: tkrat2 X# Version required: 2.0b3 X# Date created: 17 October 1999 X# Whom: Stephen J. Roznowski X# X# $FreeBSD$ X# X XDISTNAME= tkrat-2.0b3 XCATEGORIES= mail tk81 XMASTER_SITES= ftp://ftp.md.chalmers.se/pub/tkrat/ \ X ftp://ftp.sunet.se/pub/unix/mail/tkrat/ X XMAINTAINER= ports@FreeBSD.org X XBUILD_DEPENDS= tclsh8.1:${PORTSDIR}/lang/tcl81 XLIB_DEPENDS= tcl81.1:${PORTSDIR}/lang/tcl81 \ X tk81.1:${PORTSDIR}/x11-toolkits/tk81 \ X c-client4.5:${PORTSDIR}/mail/imap-uw X XGNU_CONFIGURE= yes X XCONFIGURE_ARGS= --with-tcl-config=${PREFIX}/lib/tcl8.1 \ X --with-tk-config=${PREFIX}/lib/tk8.1 X XDOCFILES= CONFIGURATION COPYRIGHT README doc/interface doc/userprocs \ X doc/userproc.example X Xpost-install: X.if !defined(NOPORTDOCS) X @${ECHO_MSG} "===> Copying documents to ${PREFIX}/${PORTDOCDIR}" X @${MKDIR} ${PREFIX}/share/doc/tkrat X.for f in ${DOCFILES} X ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/tkrat X.endfor X.else X @${ECHO_MSG} "===> Not copying available documents" X.endif X @${MKDIR} ${PREFIX}/lib/ratatosk X ${INSTALL_DATA} ${FILESDIR}/ratatoskrc ${PREFIX}/lib/ratatosk X #${CHMOD} ugo+wt /var/mail X X.include END-of-mail/tkrat2/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 15:30:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15020150FA for ; Sun, 17 Oct 1999 15:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA44656; Sun, 17 Oct 1999 15:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Oct 1999 15:30:02 -0700 (PDT) Message-Id: <199910172230.PAA44656@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Juergen Lock Subject: Re: ports/14311: new port: www/gnuinfo Reply-To: Juergen Lock Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14311; it has been noted by GNATS. From: Juergen Lock To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/14311: new port: www/gnuinfo Date: Mon, 18 Oct 1999 00:20:13 +0200 (MET DST) Here's a diff that adds back the other dirs to the gnuinfo.local and gnuinfo.X11R6, this helps if a page there refers to one in one of the other dirs. (like gcc 2.95.1's gcc.info refers to gdb.info...) Index: files/gnuinfo.X11R6 @@ -1,3 +1,3 @@ #! /bin/sh -export INFOPATH=/usr/X11R6/info +export INFOPATH=/usr/X11R6/info:/usr/share/info:/usr/local/info exec ${SCRIPT_FILENAME%/*}/gnuinfo Index: files/gnuinfo.local @@ -1,3 +1,3 @@ #! /bin/sh -export INFOPATH=/usr/local/info +export INFOPATH=/usr/local/info:/usr/share/info:/usr/X11R6/info exec ${SCRIPT_FILENAME%/*}/gnuinfo -- Juergen Lock (remove dot foo from address to reply) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 15:30:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C8A9315082 for ; Sun, 17 Oct 1999 15:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA44648; Sun, 17 Oct 1999 15:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blaubaer.kn-bremen.de (blaubaer.kn-bremen.de [195.37.179.254]) by hub.freebsd.org (Postfix) with ESMTP id 67CA114DFD for ; Sun, 17 Oct 1999 15:24:33 -0700 (PDT) (envelope-from nox@saturn.kn-bremen.de) Received: from saturn.kn-bremen.de (uucp@localhost) by blaubaer.kn-bremen.de (8.9.1/8.9.1) with UUCP id AAA22351 for FreeBSD-gnats-submit@freebsd.org; Mon, 18 Oct 1999 00:18:08 +0200 Received: (from nox@localhost) by saturn.kn-bremen.de (8.9.3/8.8.5) id XAA02956; Sun, 17 Oct 1999 23:50:50 +0200 (MET DST) Message-Id: <199910172150.XAA02956@saturn.kn-bremen.de> Date: Sun, 17 Oct 1999 23:50:50 +0200 (MET DST) From: Juergen Lock Reply-To: nox@jelal.kn-bremen.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14384: update olirc to 0.0.37 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14384 >Category: ports >Synopsis: update olirc to 0.0.37 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 15:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Juergen Lock >Release: FreeBSD 3.3-STABLE i386 >Organization: >Environment: 3.3-STABLE i386, gettext-0.10.35, glib-1.2.3, gtk-1.2.3 >Description: I don't see a list what changed in this version right now but at least it still seems to work... >How-To-Repeat: n/a >Fix: Changed files: Makefile files/md5 pkg/DESCR New file: patches/patch-ab Index: Makefile =================================================================== RCS file: /home/cvs/cvs/ports/irc/olirc/Makefile,v retrieving revision 1.2 diff -u -u -r1.2 Makefile --- Makefile 1999/08/25 06:12:51 1.2 +++ Makefile 1999/10/17 10:35:59 @@ -1,14 +1,14 @@ # New ports collection makefile for: olirc -# Version required: 0.0.35 +# Version required: 0.0.37 # Date created: Sat Jul 24 03:04:46 MET DST 1999 # Whom: Juergen Lock # # $FreeBSD: ports/irc/olirc/Makefile,v 1.2 1999/08/25 06:12:51 obrien Exp $ # -DISTNAME= olirc-0.0.35 +DISTNAME= olirc-0.0.37 CATEGORIES= irc -MASTER_SITES= http://altern.org/olirc/sources/ +MASTER_SITES= http://olirc.hexanet.fr/ MAINTAINER= nox@jelal.kn-bremen.de Index: files/md5 =================================================================== RCS file: /home/cvs/cvs/ports/irc/olirc/files/md5,v retrieving revision 1.1.1.1 diff -u -u -r1.1.1.1 md5 --- md5 1999/08/02 21:54:31 1.1.1.1 +++ md5 1999/10/17 10:22:47 @@ -1 +1 @@ -MD5 (olirc-0.0.35.tar.bz2) = f1ed60b1a11073481a4dc38d3f4114e0 +MD5 (olirc-0.0.37.tar.bz2) = 47102314969431c88d37bf068fa06434 Index: pkg/DESCR =================================================================== RCS file: /home/cvs/cvs/ports/irc/olirc/pkg/DESCR,v retrieving revision 1.1.1.1 diff -u -u -r1.1.1.1 DESCR --- DESCR 1999/08/02 21:54:31 1.1.1.1 +++ DESCR 1999/10/17 10:20:53 @@ -2,4 +2,4 @@ Still work in progress, no (english) docs yet... -WWW: http://altern.org/olirc/ +WWW: http://olirc.hexanet.fr/ --- /dev/null Sun Oct 17 12:53:25 1999 +++ patches/patch-ab Sun Oct 17 12:29:49 1999 @@ -0,0 +1,10 @@ +Index: configure +@@ -1714,7 +1714,7 @@ + if test "$gtk_config_major_version" = "1" -a "$gtk_config_minor_version" = 0 ; then + GTK_OBJS_STATIC="$GTK_PREFIX/lib/libgtk.a $GTK_PREFIX/lib/libgdk.a $GTK_PREFIX/lib/libglib.a" + else +- GLIB_PREFIX=`glib-config --prefix 2> /dev/null` ++ GLIB_PREFIX=`glib12-config --prefix 2> /dev/null` + GTK_OBJS_STATIC="$GTK_PREFIX/lib/libgtk.a $GTK_PREFIX/lib/libgdk.a $GLIB_PREFIX/lib/libglib.a $GLIB_PREFIX/lib/libgmodule.a" + fi + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 16: 0:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sir-alan.chem.indiana.edu (sir-alan.chem.indiana.edu [129.79.137.215]) by hub.freebsd.org (Postfix) with ESMTP id 34956150F9 for ; Sun, 17 Oct 1999 16:00:14 -0700 (PDT) (envelope-from msquires@sir-alan.chem.indiana.edu) Received: (from msquires@localhost) by sir-alan.chem.indiana.edu (8.9.2/8.9.2) id SAA71477; Sun, 17 Oct 1999 18:08:41 -0500 (EST) (envelope-from msquires) From: Mike Squires Message-Id: <199910172308.SAA71477@sir-alan.chem.indiana.edu> Subject: MARS_NWE setup that works for me To: freebsd-ports@freebsd.org Date: Sun, 17 Oct 1999 18:08:41 -0500 (EST) Cc: mikes@sir-alan.chem.indiana.edu (Mike Squires) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following setup is working for me, so far: I discovered that nwserv has to be shut down before rebooting, or the installation is trashed. To do this I wrote the following crude startup script, /usr/local/etc/rc.d/nwserv.sh. It writes a pid file for nwserv and IPXrouted in /var/run, and uses them to shut down nwserv/IPXrouted. I am using the stock 3.3-RELEASE IPXrouted with no apparent ill effects. Speed is OK, 700K/sec with old 2GB narrow SCSI disks. I have several unused NW 3.12 licenses and have copied the appropriate files to SYS:LOGIN and SYS:PUBLIC. The only problem I've found is that SYSCON can't handle a separate volume so I've used a symlink to add the second disk underneath the SYS mount point. I've run several large copies with CRC error checking (4GB total) and there have been no errors. -----nwserv.sh------- #!/bin/sh pidfiledir=/var/run nwserv=/usr/local/sbin/nwserv # start if [ "x$1" = "x" -o "x$1" = "xstart" ]; then if [ -f $nwserv ]; then echo -n 'ifconfig for NetWare' ifconfig fxp0 ipx 814f8800 ifconfig lo0 ipx 0x814f85f2.1 sleep 5 echo -n 'IPXrouted -s' /usr/sbin/IPXrouted -s sleep 5 echo -n 'nwserv' /usr/local/sbin/nwserv ps ax | grep \/usr\/local\/sbin\/nwserv | head -n 1 | sed -f /etc/scripts/bin/bltocolon.sed | cut -f1 -d: > $pidfiledir/nwserv.pid ps ax | grep \/usr\/sbin\/IPX | head -n 1 | sed -f /etc/scripts/bin/bltocolon.sed | cut -f1 -d: > $pidfiledir/IPX.pid fi # stop elif [ "x$1" = "xstop" ]; then echo -n "mars_nwe shutting down" kill `cat $pidfiledir/nwserv.pid` sleep 10 rm $pidfiledir/nwserv.pid kill `cat $pidfiledir/IPX.pid` sleep 5 rm $pidfiledir/IPX.pid fi ----end of nwserv.conf------- The nwserv.conf file is as follows: ----/usr/local/etc/nwserv.conf---------------------------------------- 1 SYS /usr/local/SYS/ kt 711 600 2 SILVERT # name of the server would be "SILVERT" 3 0x814f85f2 1 # IP in hex 4 0x814f8800 eth0 ethernet_ii 1 # IPX network number 5 0x0 6 2 0x0 7 0 8 0x0 9 0751 0640 10 65534 11 65534 12 SUPERVISOR root 13 JWALLEN jwallen 13 MIKES mikes 15 0 16 1 17 0x0 18 0x0 # The following has not been tested; lpr -P chemiso prints to an lpd host 21 CHEMISO - /usr/bin/lpr -P chemiso 40 /var/spool/nwserv/.volcache 41 /var/spool/nwserv/.locks 42 /var/spool/nwserv 45 /var/nwserv/db 47 /var/nwserv/trustees 100 0 # debug IPX KERNEL (0 | 1) 101 1 # debug NWSERV 102 0 # debug NCPSERV 103 0 # debug NWCONN 104 0 # debug (start) NWCLIENT, should *always* be '0' ! 105 0 # debug NWBIND 106 1 # debug NWROUTED 200 1 # 0 = no logfile and dont daemonize nwserv/nwrouted # 1 = daemonize nwserv/nwrouted and use logfile 201 /var/log/nw.log # filename of logfile 210 10 # 1 .. 600 (default 10) seconds after server # really goes down after a down command 211 60 # 10 .. 600 (default 60) broadcasts every x seconds 300 1 # > 0 print routing info to file every x broadcasts. 301 /var/log/nw.routes # filename of logfile 302 0x1 # flags will be interpreted as hex value. 310 7 # send wdog's only to device net < x ticks. 400 /etc/nwserv.stations # for syntax see file in the examples directory. 401 2 # 0 = ignore entry 400, get nearest response always enabled. # 1 = 400 are excludes, get nearest response normally enabled. # 2 = 400 are includes, get nearest response normally disabled. 402 0 # 0 = ignore entry 400, create connection always enabled. # 1 = 400 are excludes, create connection normally enabled. # 2 = 400 are includes, create connection normally disabled. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 18: 5:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from missinglink.darkorb.net (missinglink.darkorb.net [209.3.64.2]) by hub.freebsd.org (Postfix) with ESMTP id 4A69314A14; Sun, 17 Oct 1999 18:05:09 -0700 (PDT) (envelope-from mikmod@missinglink.darkorb.net) Received: from mikmod by missinglink.darkorb.net with local (Exim 3.03 #1) id 11d1GV-0002f2-00; Sun, 17 Oct 1999 21:07:07 -0400 Date: Sun, 17 Oct 1999 21:07:07 -0400 From: Miod Vallat To: freebsd-ports@FreeBSD.ORG, freebsd-audio@FreeBSD.org Subject: Re: festival-1.4.0 + mbrola (state of the art speech synth) portedto NetBSD Message-ID: <19991017210707.A10197@missinglink.darkorb.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre1us Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spoke Julian Assange: > At least it works, and it's public. I really get steamed at the French > MBROLA folks who somehow justify keeping their code private by saying > they're helping the research by doing this. They say on their site No, it's a sad affair of patents. The code is going to be made public in the future, but, you know, legal things are sloooooow. > they have a FreeBSD version, but it's not so. Definitely an error. I've only made NetBSD and OpenBSD binaries. Under FreeBSD, I keep getting coredump and didn't have enough time to work on this yet. Perhaps before the fall ? PS: Please reply with me in cc:, as I'm not subscribed to these lists. -- Miod Vallat (compiler slave for MBrola) miodrag@multimania.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 18:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 47FD614CE3 for ; Sun, 17 Oct 1999 18:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA53813; Sun, 17 Oct 1999 18:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pyros.dhis.org (p24-max4.dun.ihug.co.nz [209.76.100.215]) by hub.freebsd.org (Postfix) with ESMTP id 6F8E014CD3 for ; Sun, 17 Oct 1999 18:09:29 -0700 (PDT) (envelope-from mmuir@pyros.dhis.org) Received: (from root@localhost) by pyros.dhis.org (8.9.3/8.9.3) id OAA57500; Mon, 18 Oct 1999 14:09:28 +1300 (NZDT) (envelope-from mmuir) Message-Id: <199910180109.OAA57500@pyros.dhis.org> Date: Mon, 18 Oct 1999 14:09:28 +1300 (NZDT) From: mmuir@mongol.dhis.org Reply-To: mmuir@es.co.nz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14385: Update port: sysutils/wmhm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14385 >Category: ports >Synopsis: Update port: sysutils/wmhm >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 18:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mike Muir >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT >Description: Minor fixes to Makefile.in and source. Please ignore the previous change request as the only difference between the it and this is the checksum. (this diff applies to currently committed port) >How-To-Repeat: >Fix: diff -ruN /usr/ports/sysutils/wmhm/Makefile ./wmhm/Makefile --- /usr/ports/sysutils/wmhm/Makefile Mon Oct 11 05:02:52 1999 +++ ./wmhm/Makefile Sun Oct 17 09:19:26 1999 @@ -1,26 +1,22 @@ # New ports collection makefile for: wmhm -# Version required: 1.1 +# Version required: 1.2 # Date created: 21 September 1999 # Whom: Mike Muir # -# $FreeBSD: ports/sysutils/wmhm/Makefile,v 1.5 1999/10/10 10:45:19 asami Exp $ +# $FreeBSD$ # -DISTNAME= wmhm-1.1 +DISTNAME= wmhm-1.2 CATEGORIES= sysutils windowmaker MASTER_SITES= ftp://mongol.dhis.org/pub/wmhm/ \ http://www.es.co.nz/~mmuir/ MAINTAINER= mmuir@es.co.nz -LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm +LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm WRKSRC= ${WRKDIR}/wmhm/wmhm -.include +GNU_CONFIGURE= yes -.if ${OSVERSION} < 400000 -FORBIDDEN= 'wmhm requires intpm which is only available in 4.0-CURRENT' -.endif - -.include +.include diff -ruN /usr/ports/sysutils/wmhm/files/md5 ./wmhm/files/md5 --- /usr/ports/sysutils/wmhm/files/md5 Fri Sep 24 00:38:04 1999 +++ ./wmhm/files/md5 Mon Oct 18 14:01:27 1999 @@ -1 +1 @@ -MD5 (wmhm-1.1.tar.gz) = a70af0620b218f0e492d9f03129be4cf +MD5 (wmhm-1.2.tar.gz) = 6fd270fa7c68046dfde9f1bff53a12ff diff -ruN /usr/ports/sysutils/wmhm/patches/patch-aa ./wmhm/patches/patch-aa --- /usr/ports/sysutils/wmhm/patches/patch-aa Fri Sep 24 17:34:24 1999 +++ ./wmhm/patches/patch-aa Thu Jan 1 12:00:00 1970 @@ -1,12 +0,0 @@ ---- wmhm.c.orig Thu Sep 23 05:31:16 1999 -+++ wmhm.c Thu Sep 23 22:30:03 1999 -@@ -32,7 +32,9 @@ - #include - #include - #include -+#if __FreeBSD__ < 4 - #include -+#endif - #include - #include - #include diff -ruN /usr/ports/sysutils/wmhm/pkg/DESCR ./wmhm/pkg/DESCR --- /usr/ports/sysutils/wmhm/pkg/DESCR Fri Sep 24 00:37:59 1999 +++ ./wmhm/pkg/DESCR Sun Oct 17 09:12:26 1999 @@ -1,6 +1,6 @@ -wmhm uses the SMBus Driver for PIIX4 provided by Takanori Watanabe to gather -information from LM78/79 sensors to provide motherboard temperature, fan -speeds and a voltmeter in a nice looking WindowMaker dock app. +wmhm uses /dev/io OR the SMBus Driver for PIIX4 provided by Takanori Watanabe +to gather information from LM78/79 sensors to provide motherboard temperature, +fan speeds and a voltmeter in a nice looking WindowMaker dock app. WWW: http://www.mongol.dhis.org/wmhm/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 18:20: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 65B6A14CE3 for ; Sun, 17 Oct 1999 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA54447; Sun, 17 Oct 1999 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CC0FD14CD3; Sun, 17 Oct 1999 18:18:49 -0700 (PDT) Message-Id: <19991018011849.CC0FD14CD3@hub.freebsd.org> Date: Sun, 17 Oct 1999 18:18:49 -0700 (PDT) From: phj@cn.FreeBSD.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14386: new ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14386 >Category: ports >Synopsis: new ports >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 18:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peng HaiJie >Release: 3.3-STABLE >Organization: TransFar P&T Comm. Dev. Co.,Ltd. >Environment: FreeBSD sea.transfar.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Wed Sep 29 16:29:31 CST 1999 phj@sea.transfar.com:/usr/src/sys/compile/KERNEL.19990526 i386 >Description: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # tocps # tocps/pkg # tocps/pkg/COMMENT # tocps/pkg/DESCR # tocps/pkg/PLIST # tocps/patches # tocps/files # tocps/files/md5 # tocps/Makefile # echo c - tocps mkdir -p tocps > /dev/null 2>&1 echo c - tocps/pkg mkdir -p tocps/pkg > /dev/null 2>&1 echo x - tocps/pkg/COMMENT sed 's/^X//' >tocps/pkg/COMMENT << 'END-of-tocps/pkg/COMMENT' XTranslate PostScript files which contains chinese code && is generated by netsc ape into Chinese printable PostScript files. END-of-tocps/pkg/COMMENT echo x - tocps/pkg/DESCR sed 's/^X//' >tocps/pkg/DESCR << 'END-of-tocps/pkg/DESCR' XTranslate PostScript files which contains chinese code && is generated by netsc ape into Chinese printable PostScript files. X X X-- Peng HaiJie X Xphj@cn.FreeBSD.org X(or phj@transfar.com) END-of-tocps/pkg/DESCR echo x - tocps/pkg/PLIST sed 's/^X//' >tocps/pkg/PLIST << 'END-of-tocps/pkg/PLIST' Xbin/tocps Xshare/chinese/gb/cfan24.ccf Xshare/chinese/gb/cfang24.ccf Xshare/chinese/gb/chei24.ccf Xshare/chinese/gb/ckai24.ccf Xshare/chinese/gb/csong24.ccf X@dirrm share/chinese/gb END-of-tocps/pkg/PLIST echo c - tocps/patches mkdir -p tocps/patches > /dev/null 2>&1 echo c - tocps/files mkdir -p tocps/files > /dev/null 2>&1 echo x - tocps/files/md5 sed 's/^X//' >tocps/files/md5 << 'END-of-tocps/files/md5' XMD5 (zh-tocps-1.0.tar.gz) = d21cde4cb9cf39d175801f5c1727f436 END-of-tocps/files/md5 echo x - tocps/Makefile sed 's/^X//' >tocps/Makefile << 'END-of-tocps/Makefile' X# ex:ts=8 X# Ports collection makefile for: tocps X# Version required: 1.0 X# Date created: Thu Oct 14, 1999 X# Whom: Peng HaiJie (phj@cn.FreeBSD.org) X# (phj@transfar.com ) X# X# $FreeBSD$ X# X XDISTNAME= zh-tocps-1.0 XPKGNAME= zh-tocps-1.0 XCATEGORIES= chinese XMASTER_SITES= ftp://ftp.cn.FreeBSD.org/pub/ported/ XDISTFILES= zh-tocps-1.0.tar.gz X XMAINTAINER= phj@cn.FreeBSD.org X XREQUIRES_MOTIF= yes X XMANCOMPRESSED= yes XMAN1= tocps.1 X XGNU_CONFIGURE= yes X X X.include END-of-tocps/Makefile exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 18:25:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 5201814CD3; Sun, 17 Oct 1999 18:25:58 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 401041CD43E; Sun, 17 Oct 1999 18:25:58 -0700 (PDT) (envelope-from kris@hub.freebsd.org) Date: Sun, 17 Oct 1999 18:25:58 -0700 (PDT) From: Kris Kennaway To: ecsd Cc: ports@freebsd.org Subject: Re: xpdf and the wholesale destruction of the X environment In-Reply-To: <199910160641.XAA23501@ecsd.transbay.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 15 Oct 1999, ecsd wrote: > Guess what. I issue "make clean" in /usr/ports/graphics/xpdf, > and it blows away any memory that X11 was installed as well. Put down the crack pipe, dude. It cleaned out the _build_ directory for X, not the installed files. If all you want to do is remove the unpacked build directory for this port only, not the dependencies, just 'rm -rf work' and be happy. > I don't have enough space in /usr to reinstall X and because the > packages fetch is broken between 3.2 and 3.3 I can't fetch X > as a package either without figuring out how to do it manually. *cough* Oh, really? Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 18:30: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C68514D86 for ; Sun, 17 Oct 1999 18:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA54911; Sun, 17 Oct 1999 18:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2EDA314CE3; Sun, 17 Oct 1999 18:21:33 -0700 (PDT) Message-Id: <19991018012133.2EDA314CE3@hub.freebsd.org> Date: Sun, 17 Oct 1999 18:21:33 -0700 (PDT) From: phj@cn.FreeBSD.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14387: new ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14387 >Category: ports >Synopsis: new ports >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 18:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peng HaiJie >Release: 3.3-STABLE >Organization: cn.FreeBSD.org >Environment: FreeBSD sea.transfar.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Wed Sep 29 16:29:31 CST 1999 phj@sea.transfar.com:/usr/src/sys/compile/KERNEL.19990526 i386 >Description: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # cdict # cdict/pkg # cdict/pkg/COMMENT # cdict/pkg/DESCR # cdict/pkg/PLIST # cdict/patches # cdict/files # cdict/files/md5 # cdict/Makefile # echo c - cdict mkdir -p cdict > /dev/null 2>&1 echo c - cdict/pkg mkdir -p cdict/pkg > /dev/null 2>&1 echo x - cdict/pkg/COMMENT sed 's/^X//' >cdict/pkg/COMMENT << 'END-of-cdict/pkg/COMMENT' XEnglish-Chinese dictionary. END-of-cdict/pkg/COMMENT echo x - cdict/pkg/DESCR sed 's/^X//' >cdict/pkg/DESCR << 'END-of-cdict/pkg/DESCR' Xcdict - English-Chinese dictionary. X X-- Peng HaiJie X Xphj@cn.FreeBSD.org X(or phj@transfar.com) END-of-cdict/pkg/DESCR echo x - cdict/pkg/PLIST sed 's/^X//' >cdict/pkg/PLIST << 'END-of-cdict/pkg/PLIST' Xbin/cdict Xshare/chinese/cdict/back.gif Xshare/chinese/cdict/exit.gif Xshare/chinese/cdict/exitmask.xbm Xshare/chinese/cdict/help.gif Xshare/chinese/cdict/helpmask.xbm Xshare/chinese/cdict/hzfont/fonts.dir Xshare/chinese/cdict/hzfont/hz16.pcf Xshare/chinese/cdict/hzfont/yb10x20.pcf Xshare/chinese/cdict/icon.gif Xshare/chinese/cdict/iconmask.xbm Xshare/chinese/cdict/license Xshare/chinese/cdict/readme Xshare/chinese/cdict/transdic Xshare/chinese/cdict/yblib X@dirrm share/chinese/cdict/hzfont X@dirrm share/chinese/cdict END-of-cdict/pkg/PLIST echo c - cdict/patches mkdir -p cdict/patches > /dev/null 2>&1 echo c - cdict/files mkdir -p cdict/files > /dev/null 2>&1 echo x - cdict/files/md5 sed 's/^X//' >cdict/files/md5 << 'END-of-cdict/files/md5' XMD5 (zh-cdict-1.0.tar.gz) = e51d7c74185d250021377401b69d68cc END-of-cdict/files/md5 echo x - cdict/Makefile sed 's/^X//' >cdict/Makefile << 'END-of-cdict/Makefile' X# ex:ts=8 X# Ports collection makefile for: cdict X# Version required: 1.0 X# Date created: Thu Oct 14, 1999 X# Whom: Peng HaiJie (phj@cn.FreeBSD.org) X# (phj@transfar.com ) X# X# $FreeBSD$ X# X XDISTNAME= zh-cdict-1.0 XPKGNAME= zh-cdict-1.0 XCATEGORIES= chinese XMASTER_SITES= ftp://ftp.cn.FreeBSD.org/pub/ported/ XDISTFILES= zh-cdict-1.0.tar.gz X XMAINTAINER= phj@cn.FreeBSD.org X XREQUIRES_MOTIF= yes X XMANCOMPRESSED= yes XMAN1= cdict.1 X XGNU_CONFIGURE= yes X#USE_X_PREFIX= yes XUSE_XLIB= yes X X X#DEPENDS= $(PORTSDIR)/x11-toolkits/lesstif:install X X.include END-of-cdict/Makefile exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 18:31: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 9116514D28; Sun, 17 Oct 1999 18:30:59 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 7E0211CD43E; Sun, 17 Oct 1999 18:30:59 -0700 (PDT) (envelope-from kris@hub.freebsd.org) Date: Sun, 17 Oct 1999 18:30:59 -0700 (PDT) From: Kris Kennaway To: Mike Meyer Cc: Dominik Rothert , ports@freebsd.org Subject: Re: Patches breaking? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 17 Oct 1999, Mike Meyer wrote: > I haven't. I'm running the ports package (and the rest of the system) > as installed off of the 3.2-RELEASE CDROMS. Did you unpack over the top of an existing /usr/ports? Sounds like you've got stale patches lying around which were removed in the 3.2-R ports snapshot. Try blowing away the patches directory and reextracting it from the CD. Be aware that by not tracking the ports collection you miss things like security fixes which get applied to various ports. You shouldn't have any trouble running 3.2-R with an updated ports collection, especially if you apply the upgrade kit (see www.freebsd.org/ports). Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 18:40: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AAC014F44 for ; Sun, 17 Oct 1999 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA55524; Sun, 17 Oct 1999 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 82C7A14D28; Sun, 17 Oct 1999 18:33:07 -0700 (PDT) Message-Id: <19991018013307.82C7A14D28@hub.freebsd.org> Date: Sun, 17 Oct 1999 18:33:07 -0700 (PDT) From: phj@cn.FreeBSD.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14388: new ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14388 >Category: ports >Synopsis: new ports >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 18:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peng HaiJie >Release: 3.3-STABLE >Organization: cn.FreeBSD.org >Environment: FreeBSD sea.transfar.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Wed Sep 29 16:29:31 CST 1999 phj@sea.transfar.com:/usr/src/sys/compile/KERNEL.19990526 i386 >Description: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # tocps # tocps/pkg # tocps/pkg/COMMENT # tocps/pkg/DESCR # tocps/pkg/PLIST # tocps/patches # tocps/files # tocps/files/md5 # tocps/Makefile # echo c - tocps mkdir -p tocps > /dev/null 2>&1 echo c - tocps/pkg mkdir -p tocps/pkg > /dev/null 2>&1 echo x - tocps/pkg/COMMENT sed 's/^X//' >tocps/pkg/COMMENT << 'END-of-tocps/pkg/COMMENT' XTranslate PostScript files which contains chinese code && is generated by netsc ape into Chinese printable PostScript files. END-of-tocps/pkg/COMMENT echo x - tocps/pkg/DESCR sed 's/^X//' >tocps/pkg/DESCR << 'END-of-tocps/pkg/DESCR' XTranslate PostScript files which contains chinese code && is generated by netsc ape into Chinese printable PostScript files. X X X-- Peng HaiJie X Xphj@cn.FreeBSD.org X(or phj@transfar.com) END-of-tocps/pkg/DESCR echo x - tocps/pkg/PLIST sed 's/^X//' >tocps/pkg/PLIST << 'END-of-tocps/pkg/PLIST' Xbin/tocps Xshare/chinese/gb/cfan24.ccf Xshare/chinese/gb/cfang24.ccf Xshare/chinese/gb/chei24.ccf Xshare/chinese/gb/ckai24.ccf Xshare/chinese/gb/csong24.ccf X@dirrm share/chinese/gb END-of-tocps/pkg/PLIST echo c - tocps/patches mkdir -p tocps/patches > /dev/null 2>&1 echo c - tocps/files mkdir -p tocps/files > /dev/null 2>&1 echo x - tocps/files/md5 sed 's/^X//' >tocps/files/md5 << 'END-of-tocps/files/md5' XMD5 (zh-tocps-1.0.tar.gz) = cb90ed06e1ebfed91da598d244c2ec01 END-of-tocps/files/md5 echo x - tocps/Makefile sed 's/^X//' >tocps/Makefile << 'END-of-tocps/Makefile' X# ex:ts=8 X# Ports collection makefile for: tocps X# Version required: 1.0 X# Date created: Thu Oct 14, 1999 X# Whom: Peng HaiJie (phj@cn.FreeBSD.org) X# (phj@transfar.com ) X# X# $FreeBSD$ X# X XDISTNAME= zh-tocps-1.0 XPKGNAME= zh-tocps-1.0 XCATEGORIES= chinese XMASTER_SITES= ftp://ftp.cn.FreeBSD.org/pub/ported/ XDISTFILES= zh-tocps-1.0.tar.gz X XMAINTAINER= phj@cn.FreeBSD.org X XREQUIRES_MOTIF= yes X XMANCOMPRESSED= yes XMAN1= tocps.1 X XGNU_CONFIGURE= yes X X X.include END-of-tocps/Makefile exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 19:25:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7844314E52; Sun, 17 Oct 1999 19:25:24 -0700 (PDT) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA58376; Sun, 17 Oct 1999 19:25:24 -0700 (PDT) (envelope-from nakai@FreeBSD.org) Date: Sun, 17 Oct 1999 19:25:24 -0700 (PDT) From: Message-Id: <199910180225.TAA58376@freefall.freebsd.org> To: rod@oscentral.org, nakai@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14374: gedit dependencies have changed. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gedit dependencies have changed. State-Changed-From-To: open->closed State-Changed-By: nakai State-Changed-When: Sun Oct 17 19:24:30 PDT 1999 State-Changed-Why: Fixed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 20: 6:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id BDA1A14FBD; Sun, 17 Oct 1999 20:06:17 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 997721CD433; Sun, 17 Oct 1999 20:06:17 -0700 (PDT) (envelope-from kris@hub.freebsd.org) Date: Sun, 17 Oct 1999 20:06:17 -0700 (PDT) From: Kris Kennaway To: Chris Byrnes Cc: ports@freebsd.org Subject: Re: Apache SSL. In-Reply-To: <3.0.6.32.19991015182600.0079d320@jeah.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 15 Oct 1999, Chris Byrnes wrote: > Anyone know which port? grep regex.h /var/db/pkg/*/+PLIST Kris ---- XOR for AES -- join the campaign! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 20:50: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E26114F0B for ; Sun, 17 Oct 1999 20:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA63816; Sun, 17 Oct 1999 20:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cc942873-a.ewndsr1.nj.home.com (cc942873-a.ewndsr1.nj.home.com [24.2.89.207]) by hub.freebsd.org (Postfix) with ESMTP id 6360F14E4D for ; Sun, 17 Oct 1999 20:41:34 -0700 (PDT) (envelope-from cjc@cc942873-a.ewndsr1.nj.home.com) Received: (from cjc@localhost) by cc942873-a.ewndsr1.nj.home.com (8.9.3/8.9.3) id XAA11383; Sun, 17 Oct 1999 23:44:46 -0400 (EDT) (envelope-from cjc) Message-Id: <199910180344.XAA11383@cc942873-a.ewndsr1.nj.home.com> Date: Sun, 17 Oct 1999 23:44:46 -0400 (EDT) From: "Crist J. Clark" Reply-To: cjc@cc942873-a.ewndsr1.nj.home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14389: XScreensaver port does not properly detect Kerberos Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14389 >Category: ports >Synopsis: XScreensaver port does not properly detect Kerberos >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 17 20:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Crist J. Clark >Release: FreeBSD 3.3-STABLE i386 >Organization: >Environment: Fresh 2.2.8 to 3.3 upgrade. No Kerberos installed. >Description: If one goes to /usr/ports/x11/xscreensaver with a system configured as above, a 'make' will fail when the Kerberos library (libkrb) is not found. The 'configure' step does not properly identify the absence of Kerberos. Even if the user tries to add a 'CONFIGURE_ARGS=--without-kerberos' argument to the make, it still will fail with, cc -Wall -Wstrict-prototypes -Wnested-externs -Wno-format -L/usr/X11R6/lib -o xscreensaver xscreensaver.o windows.o timers.o subprocs.o xset.o splash.o setuid.o stderr.o prefs.o lock.o passwd.o passwd-kerberos.o passwd-pwent.o ../utils/fade.o ../utils/overlay.o ../utils/xroger.o ../utils/spline.o ../utils/yarandom.o ../utils/resources.o ../utils/usleep.o ../utils/visual.o -L/usr/X11R6/lib -lXmu -lXss -lXdpms -lXxf86vm -lSM -lICE -lXmu -lXt -lXt -lX11 -lXext -lkrb -ldes -lcrypt /usr/libexec/elf/ld: cannot open -lkrb: No such file or directory *** Error code 1 Stop. *** Error code 5 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. The user must edit the Makefile to add --without-kerberos to the CONFIGURE_ARGS. Then the build goes fine. >How-To-Repeat: On a system without Kerberos installed, just, # cd /usr/ports/x11/xscreensaver # make >Fix: Workaround: Edit the Makefile to add --without-kerberos Fix1: Allow CONFIGURE_ARGS to be added at make command line. Fix2: Have port check for presence of Kerberos Fix3: Have xscreensaver itself properly check for Kerberos >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 21:49: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from guru.phone.net (guru.phone.net [216.240.39.120]) by hub.freebsd.org (Postfix) with SMTP id 30D1914CFD for ; Sun, 17 Oct 1999 21:49:00 -0700 (PDT) (envelope-from mwm@phone.net) Received: (qmail 68064 invoked by uid 100); 18 Oct 1999 04:48:58 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 18 Oct 1999 04:48:58 -0000 Date: Sun, 17 Oct 1999 21:48:58 -0700 (PDT) From: Mike Meyer To: ports@freebsd.org Subject: Re: Patches breaking? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 17 Oct 1999, Kris Kennaway wrote: ;->On Sun, 17 Oct 1999, Mike Meyer wrote: ;->> I haven't. I'm running the ports package (and the rest of the system) ;->> as installed off of the 3.2-RELEASE CDROMS. ;->Did you unpack over the top of an existing /usr/ports? Sounds like you've ;->got stale patches lying around which were removed in the 3.2-R ports ;->snapshot. Try blowing away the patches directory and reextracting it from ;->the CD. Bingo. Thank you. That's why I reported it here, instead of filing a PR - I figured I'd done something wrong. Everything seems to be building and installing fine at this point. ;->Be aware that by not tracking the ports collection you miss things like ;->security fixes which get applied to various ports. You shouldn't have any ;->trouble running 3.2-R with an updated ports collection, especially if you ;->apply the upgrade kit (see www.freebsd.org/ports). Yes, I'm well aware of that. I tried tracking ports alone, until I was told that I needed to track -STABLE as well. That was a bit further from -RELEASE than we are now, though. Tracking -STABLE and my paranoia about backups don't work well together. I sleep better knowing I can recreate the entire system from backups, and tracking -STABLE causes fulls to be needed far to often. So I started tracking the things that I need to stay current with from the source, and use ports for things that can be updated at the same intervals as the system. I also follow the freebsd security and CERT lists, and will do an upgrade for security reasons should I need that. Thanx, ; Sun, 17 Oct 1999 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA74159; Sun, 17 Oct 1999 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Oct 1999 22:30:01 -0700 (PDT) Message-Id: <199910180530.WAA74159@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: MIHIRA Sanpei Yoshiro Subject: Re: ports/14286: Clean up print/pkfonts* and japanese/vfxdvi* Reply-To: MIHIRA Sanpei Yoshiro Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14286; it has been noted by GNATS. From: MIHIRA Sanpei Yoshiro To: ade@lovett.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/14286: Clean up print/pkfonts* and japanese/vfxdvi* Date: Mon, 18 Oct 1999 13:05:28 +0900 >--- Makefile.orig Sun Oct 17 16:32:41 1999 >+++ Makefile Sun Oct 17 16:33:32 1999 >@@ -9,8 +9,8 @@ > DISTNAME= pkfonts > PKGNAME= pkfonts${RESOLUTION}-1.0 > CATEGORIES= print >-MASTER_SITES= ftp://ftp.univ-evry.fr/.04/system/OpenBSD/distfiles/pkfonts/ \ >- ${MASTER_SITE_PORTS_JP}/pkfonts/ >+MASTER_SITES= ${MASTER_SITE_PORTS_JP} >+MASTER_SITE_SUBDIR= pkfonts > DISTFILES= pk${RESOLUTION}.tar.gz > # see below for RESOLUTION definition > >That will need to be committed before the distfile survey results will >be accurate for the pkfonts* ports. Yes, that's right. I hope to **commit** above change. MIHIRA Yoshiro Yokohama, Japan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 22:38:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sparenix.metronet.com (sparenix.metronet.com [207.170.106.3]) by hub.freebsd.org (Postfix) with SMTP id 6D09B14DB8 for ; Sun, 17 Oct 1999 22:38:32 -0700 (PDT) (envelope-from jmanley@metronet.com) Received: (qmail 11331 invoked by uid 7770); 18 Oct 1999 05:57:21 -0000 Received: from fcn105-47.tmi.net (HELO win) (207.170.105.47) by sparenix.metronet.com with SMTP; 18 Oct 1999 05:57:21 -0000 Message-Id: <4.1.19991018003813.00975500@mail.metronet.com> X-Sender: jmanley@mail.metronet.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Date: Mon, 18 Oct 1999 00:38:50 -0500 To: ports@freebsd.org From: Jim Manley Subject: linux_base won't install Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just learned this is the more appropriate place for this questions. > > Date: Mon, 18 Oct 1999 00:31:06 -0500 > To: freebsd-stable@freebsd.org > From: Jim Manley > Subject: linux_base won't install > > My apologies if this isn't the correct forum for this question. > > I'm trying to get the most recent linux_base port to install but the 'make > install' dies > a horrible death. The 'make' went just fine. > darkstar# make install > ===> Installing for linux_base-5.2 > ===> linux_base-5.2 depends on executable: rpm - found > 666:No such file or directory > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > Running 'make -dd install' yields: > Searching for .depend...failed. > Searching for .depend.../usr/share/mk...failed. > 666:No such file or directory > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > Apparently there's a .depend file missing. Any ideas? > > Regards, > > Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 23:29:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (Postfix) with ESMTP id 6757214D17 for ; Sun, 17 Oct 1999 23:29:10 -0700 (PDT) (envelope-from asami@stampede.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca1-150.ix.netcom.com [209.109.232.150]) by vader.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id XAA89631; Sun, 17 Oct 1999 23:29:06 -0700 (PDT) (envelope-from asami@stampede.cs.berkeley.edu) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id XAA47917; Sun, 17 Oct 1999 23:29:01 -0700 (PDT) To: fp_rover@lglobus.ru Cc: freebsd-ports@freebsd.org Subject: Re: NO_PACKAGE References: <19991018010523.B14121@fly.lglobus.ru> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 17 Oct 1999 23:29:00 -0700 In-Reply-To: "Oleg V. Volkov"'s message of "Mon, 18 Oct 1999 01:05:23 +0400" Message-ID: Lines: 21 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: "Oleg V. Volkov" * Hi! * * There's some ports that marked as NO_PACKAGE, because author requires * copy of CD where such package would be distributed. I wish to know, would You mean NO_CDROM? (Or does he require a CD even if people are redistributing the package via FTP? :) * FreeBSD project be interested in sending one CD to software author in * exchange to removing NO_PACKAGE line, and if yes, who is responsible for * that (where i should point original software author). * * (If somebody interested, right now i'm speaking about games/adom port, ported * by me and originally developed by Thomas Biskup). Definitely. Send the request to Jordan (jkh@cdrom.com), I'm sure he can arrange that as he works for Walnut Creek. (And I know him. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 17 23:52:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rnocserv.urc.ac.ru (rnocserv.urc.ac.ru [193.233.85.2]) by hub.freebsd.org (Postfix) with ESMTP id 6B65A14A2A for ; Sun, 17 Oct 1999 23:51:28 -0700 (PDT) (envelope-from joy@urc.ac.ru) Received: from urc.ac.ru (y.urc.ac.ru [193.233.85.7]) by rnocserv.urc.ac.ru (8.9.3/8.9.3) with ESMTP id MAA08242 for ; Mon, 18 Oct 1999 12:51:19 +0600 (ESS) (envelope-from joy@urc.ac.ru) Message-ID: <380AC366.52902E82@urc.ac.ru> Date: Mon, 18 Oct 1999 12:51:18 +0600 From: Konstantin Chuguev Organization: Southern Ural Regional Center of FREEnet X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.0.36 i386) X-Accept-Language: ru, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Latest patch for devel/libgtop for current broken? Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi. The latest patch (patch-ag) for libgtop to be compiled on the newest CURRENT with signal changes seems to have an error: --- sysdeps/freebsd/procsignal.c.orig Sat Oct 16 10:57:29 1999 +++ sysdeps/freebsd/procsignal.c Sat Oct 16 11:23:43 1999 @@ -26,6 +26,7 @@ #include #include +#include static const unsigned long _glibtop_sysdeps_proc_signal = (1L << GLIBTOP_PROC_SIGNAL_SIGNAL) + @@ -66,7 +67,7 @@ /* signal: mask of pending signals. * pinfo [0].kp_proc.p_siglist */ -#if defined(__NetBSD__) && (NSIG > 32) +#if (defined(__NetBSD__) && (NSIG > 32)) || (__FreeBSD_version >= 400011) buf->signal [0] = pinfo [0].kp_proc.p_siglist.__bits[0]; #else buf->signal [0] = pinfo [0].kp_proc.p_siglist; @@ -75,7 +76,7 @@ /* blocked: mask of blocked signals. * pinfo [0].kp_proc.p_sigmask */ -#if defined(__NetBSD__) && (NSIG > 32) +#if (defined(__NetBSD__) && (NSIG > 32)) || (__FreeBSD_version >= 400011) buf->blocked [0] = pinfo [0].kp_proc.p_sigmask.__bits[0]; #else buf->blocked [0] = pinfo [0].kp_proc.p_sigmask; @@ -84,16 +85,16 @@ /* sigignore: mask of ignored signals. * pinfo [0].kp_proc.p_sigignore */ -#if defined(__NetBSD__) && (NSIG > 32) +#if (defined(__NetBSD__) && (NSIG > 32)) || (__FreeBSD_version >= 400011) buf->sigignore [0] = pinfo [0].kp_proc.p_sigignore.__bits[0]; #else VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV - buf->sigignore [0] = pinfo [0].kp_proc.p_sigignore; + buf->sigignore [0] = pinfo [0].kp_proc.p_sigignore.__bits[0]; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This line should definitely not be patched: buf->sigignore [0] = pinfo [0].kp_proc.p_sigignore; --------------------------------------------------------------------- #endif /* sigcatch: mask of caught signals. * pinfo [0].kp_proc.p_sigcatch */ -#if defined(__NetBSD__) && (NSIG > 32) +#if (defined(__NetBSD__) && (NSIG > 32)) || (__FreeBSD_version >= 400011) buf->sigcatch [0] = pinfo [0].kp_proc.p_sigcatch.__bits[0]; #else buf->sigcatch [0] = pinfo [0].kp_proc.p_sigcatch; (I am sorry for that not diff format, but the change is so small and the diff of a patch file looks so weird :-) -- Konstantin V. Chuguev. System administrator of Southern http://www.urc.ac.ru/~joy/ Ural Regional Center of FREEnet, mailto:joy@urc.ac.ru Chelyabinsk, Russia. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 0:26:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from area51.fremont.ca.us (adsl-63-195-147-14.dsl.scrm01.pacbell.net [63.195.147.14]) by hub.freebsd.org (Postfix) with ESMTP id 529111514B for ; Mon, 18 Oct 1999 00:26:44 -0700 (PDT) (envelope-from mharo@area51.fremont.ca.us) Received: (from mharo@localhost) by area51.fremont.ca.us (8.9.3/8.9.2) id AAA39045; Mon, 18 Oct 1999 00:26:41 -0700 (PDT) (envelope-from mharo) Date: Mon, 18 Oct 1999 00:26:41 -0700 From: Michael Haro To: Jim Manley Cc: FreeBSD Ports Team Subject: Re: linux_base won't install Message-ID: <19991018002641.A38900@area51.fremont.ca.us> Reply-To: mharo@area51.fremont.ca.us References: <4.1.19991018003813.00975500@mail.metronet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <4.1.19991018003813.00975500@mail.metronet.com>; from Jim Manley on Mon, Oct 18, 1999 at 12:38:50AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Looks like you updated the port but not the files in /usr/ports/Mk Update /usr/ports/Mk and let me know if that fixes the problem. Michael On Mon, Oct 18, 1999 at 12:38:50AM -0500, Jim Manley wrote: > Just learned this is the more appropriate place for this questions. > > > > > Date: Mon, 18 Oct 1999 00:31:06 -0500 > > To: freebsd-stable@freebsd.org > > From: Jim Manley > > Subject: linux_base won't install > > > > My apologies if this isn't the correct forum for this question. > > > > I'm trying to get the most recent linux_base port to install but the 'make > > install' dies > > a horrible death. The 'make' went just fine. > > darkstar# make install > > ===> Installing for linux_base-5.2 > > ===> linux_base-5.2 depends on executable: rpm - found > > 666:No such file or directory > > *** Error code 1 > > > > Stop. > > *** Error code 1 > > > > Stop. > > *** Error code 1 > > > > Stop. > > Running 'make -dd install' yields: > > Searching for .depend...failed. > > Searching for .depend.../usr/share/mk...failed. > > 666:No such file or directory > > *** Error code 1 > > > > Stop. > > *** Error code 1 > > > > Stop. > > *** Error code 1 > > > > Stop. > > Apparently there's a .depend file missing. Any ideas? > > > > Regards, > > > > Jim > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 0:50: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 92E6D14CF1 for ; Mon, 18 Oct 1999 00:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA84779; Mon, 18 Oct 1999 00:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from out.gcn.net.tw (out.gcn.net.tw [203.77.2.144]) by hub.freebsd.org (Postfix) with ESMTP id 0D9C314C18 for ; Mon, 18 Oct 1999 00:40:39 -0700 (PDT) (envelope-from jtjang@gcn.net.tw) Received: from phantom.at.home (host246.21062207.gcn.net.tw [210.62.207.246]) by out.gcn.net.tw (8.8.8/8.8.8) with ESMTP id HAA17922 for ; Mon, 18 Oct 1999 07:40:36 GMT Received: (from keith@localhost) by phantom.at.home (8.9.3/8.9.3) id PAA00734; Mon, 18 Oct 1999 15:39:29 GMT (envelope-from keith) Message-Id: <199910181539.PAA00734@phantom.at.home> Date: Mon, 18 Oct 1999 15:39:29 GMT From: Keith Jang Reply-To: jtjang@gcn.net.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14391: Upgrade chinese/xcin25 to the latest release. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14391 >Category: ports >Synopsis: Upgrade chinese/xcin25 to the latest release. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 00:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Keith Jang >Release: FreeBSD 4.0-CURRENT i386 >Organization: End user >Environment: FreeBSD 4.0-CURRENT #0: Mon Oct 18 14:57:45 GMT 1999 root@phantom.at.home:/usr/src/sys/compile/phantom i386 >Description: chinese/xcin25 port is out-of-date and buggy. >How-To-Repeat: >Fix: Please commit the following patch, thanks. --- Makefile.orig Mon Oct 18 14:15:37 1999 +++ Makefile Mon Oct 18 14:20:54 1999 @@ -1,15 +1,15 @@ # New ports collection makefile for: xcin25 -# Version required: xcin-2.5.1 -# Date created: 25 June 1999 +# Version required: xcin-2.5.2b +# Date created: 18 Oct 1999 # Whom: Keith Jang # # $FreeBSD: ports/chinese/xcin25/Makefile,v 1.11 1999/09/07 11:24:04 foxfair Exp $ # -DISTNAME= xcin-2.5.1 -PKGNAME= zh-xcin-2.5.1 +DISTNAME= xcin-2.5-19991017 +PKGNAME= zh-xcin-2.5.2b CATEGORIES= chinese x11 -MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/xcin/ +MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/xcin/devel/ MAINTAINER= jtjang@gcn.net.tw @@ -43,9 +43,11 @@ ${INSTALL_MAN} ${WRKSRC}/doc/CopyRight ${PREFIX}/lib/X11/xcin25/doc ${INSTALL_MAN} ${WRKSRC}/doc/FAQ ${PREFIX}/lib/X11/xcin25/doc ${INSTALL_MAN} ${WRKSRC}/doc/README ${PREFIX}/lib/X11/xcin25/doc + ${INSTALL_MAN} ${WRKSRC}/doc/README.En ${PREFIX}/lib/X11/xcin25/doc ${INSTALL_MAN} ${WRKSRC}/doc/SETUP ${PREFIX}/lib/X11/xcin25/doc ${INSTALL_MAN} ${WRKSRC}/doc/Todo ${PREFIX}/lib/X11/xcin25/doc ${INSTALL_MAN} ${WRKSRC}/doc/Usage ${PREFIX}/lib/X11/xcin25/doc + ${INSTALL_MAN} ${WRKSRC}/doc/UserGuide ${PREFIX}/lib/X11/xcin25/doc ${MKDIR} ${PREFIX}/lib/X11/xcin25/doc/internal ${INSTALL_MAN} ${WRKSRC}/doc/internal/IMdkit \ ${PREFIX}/lib/X11/xcin25/doc/internal --- files/md5.orig Mon Oct 18 14:15:37 1999 +++ files/md5 Mon Oct 18 14:18:37 1999 @@ -1 +1 @@ -MD5 (xcin-2.5.1.tar.gz) = 35f9b95585e1322da73362802dad7efa +MD5 (xcin-2.5-19991017.tar.gz) = e7a1d7f5c4346e12a39f551713f53f45 --- patches/patch-ae.orig Mon Oct 18 14:15:37 1999 +++ patches/patch-ae Mon Oct 18 14:19:01 1999 @@ -1,6 +1,6 @@ ---- src/xcinrc.in.orig Fri Sep 3 01:17:52 1999 -+++ src/xcinrc.in Fri Sep 3 01:18:29 1999 -@@ -86,8 +86,8 @@ +--- src/xcinrc.in.orig Mon Oct 18 11:48:24 1999 ++++ src/xcinrc.in Mon Oct 18 11:50:39 1999 +@@ -95,8 +95,8 @@ (define bimsphone '((SETKEY 6) (MODULE "bimsphone") @@ -8,6 +8,6 @@ - (YIN_FNAME "yin.db") + (TSI_FNAME "/usr/local/share/tabe/tsiyin/tsi.db") + (YIN_FNAME "/usr/local/share/tabe/tsiyin/yin.db") - (KEYMAP 0))) ; 0: ¹s³ü, 1: ­Ê¤Ñ, 2: ³\¤ó - - (define cj + (SPACE_SEL NO) + (MOD_PHR 1) ; 1: shift, 2: ctrl, 4: alt + (NSELKEY 9) ; The maximun number is 10 --- pkg/PLIST.orig Mon Oct 18 14:15:37 1999 +++ pkg/PLIST Mon Oct 18 14:24:13 1999 @@ -12,9 +12,11 @@ lib/X11/xcin25/doc/CopyRight lib/X11/xcin25/doc/FAQ lib/X11/xcin25/doc/README +lib/X11/xcin25/doc/README.En lib/X11/xcin25/doc/SETUP lib/X11/xcin25/doc/Todo lib/X11/xcin25/doc/Usage +lib/X11/xcin25/doc/UserGuide lib/X11/xcin25/doc/internal/IMdkit lib/X11/xcin25/doc/internal/gen_inp lib/X11/xcin25/doc/internal/module @@ -38,11 +40,19 @@ lib/X11/xcin25/tab/zh_TW.Big5/simplex.tab lib/X11/xcin25/tab/zh_TW.Big5/sys.cin lib/X11/xcin25/tab/zh_TW.Big5/sys.tab +lib/X11/xcin25/tab/zh_CN.GB2312/biaoxingma.cin +lib/X11/xcin25/tab/zh_CN.GB2312/biaoxingma.tab lib/X11/xcin25/tab/zh_CN.GB2312/default.phr lib/X11/xcin25/tab/zh_CN.GB2312/jtcj_gb.cin lib/X11/xcin25/tab/zh_CN.GB2312/jtcj_gb.tab +lib/X11/xcin25/tab/zh_CN.GB2312/pinyin.cin +lib/X11/xcin25/tab/zh_CN.GB2312/pinyin.tab +lib/X11/xcin25/tab/zh_CN.GB2312/shuangpin.cin +lib/X11/xcin25/tab/zh_CN.GB2312/shuangpin.tab lib/X11/xcin25/tab/zh_CN.GB2312/sys.cin lib/X11/xcin25/tab/zh_CN.GB2312/sys.tab +lib/X11/xcin25/tab/zh_CN.GB2312/wubizixing.cin +lib/X11/xcin25/tab/zh_CN.GB2312/wubizixing.tab lib/X11/xcin25/tab/zh_CN.GB2312/zhiranma.cin lib/X11/xcin25/tab/zh_CN.GB2312/zhiranma.tab share/locale/zh_TW.Big5/LC_MESSAGES/xcin.mo >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 1: 0: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3865D14D8C for ; Mon, 18 Oct 1999 01:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA85417; Mon, 18 Oct 1999 01:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from out.gcn.net.tw (out.gcn.net.tw [203.77.2.144]) by hub.freebsd.org (Postfix) with ESMTP id 029D614C18 for ; Mon, 18 Oct 1999 00:53:52 -0700 (PDT) (envelope-from jtjang@gcn.net.tw) Received: from phantom.at.home (host246.21062207.gcn.net.tw [210.62.207.246]) by out.gcn.net.tw (8.8.8/8.8.8) with ESMTP id HAB16002 for ; Mon, 18 Oct 1999 07:53:50 GMT Received: (from keith@localhost) by phantom.at.home (8.9.3/8.9.3) id PAA01035; Mon, 18 Oct 1999 15:52:30 GMT (envelope-from keith) Message-Id: <199910181552.PAA01035@phantom.at.home> Date: Mon, 18 Oct 1999 15:52:30 GMT From: jtjang@gcn.net.tw Reply-To: jtjang@gcn.net.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14392: Update chinese/moettf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14392 >Category: ports >Synopsis: chinese/moettf has a bug when writing fonts.dir >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 01:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Keith Jang >Release: FreeBSD 4.0-CURRENT i386 >Organization: End user >Environment: FreeBSD 4.0-CURRENT #0: Mon Oct 18 14:57:45 GMT 1999 root@phantom.at.home:/usr/src/sys/compile/phantom i386 >Description: When /usr/X11R6/lib/X11/fonts/TrueType/fonts.dir is empty, moettf's INSTALL script will incorrectly calculate the number of fonts. >How-To-Repeat: Remove all ports that install truetype fonts in /usr/X11R6/lib/X11/fonts/TrueType rm /usr/X11R6/lib/X11/fonts/TrueType/fonts.* Install chinese/moettf, then you'll see that the first line of fonts.dir is 11, not the supposed 12. >Fix: Please commit the following patch, thanks. --- pkg/INSTALL.orig Mon Oct 18 14:38:03 1999 +++ pkg/INSTALL Mon Oct 18 14:41:54 1999 @@ -9,11 +9,18 @@ echo "Updating fonts.dir & fonts.alias. This may take a while..." # Update fonts.dir touch fonts.dir -sed -e '/-moe-/d' -e '/-twmoe-/d' fonts.dir > fonts.dir.tmp +sed -e '/ -moe-/d' -e '/ -twmoe-/d' fonts.dir > fonts.dir.tmp # Add 12 new fonts numfonts=$(echo $(cat fonts.dir.tmp |wc -l) - 1 + 12 |bc) -echo ${numfonts} > fonts.dir -sed -e 1d fonts.dir.tmp >> fonts.dir +if [ ${numfonts} -le 12 ]; then # fonts.dir.tmp is empty + echo 12 > fonts.dir +else + echo ${numfonts} > fonts.dir + sed -e 1d fonts.dir.tmp >> fonts.dir +fi +rm -f fonts.dir.tmp + +# Write font information to fonts.dir for FAMILY in kai lishu sung do echo moe_${FAMILY}.ttf -twmoe-${FAMILY}-medium-r-normal--0-0-0-0-c-0-big5-0 >> fonts.dir @@ -21,7 +28,6 @@ echo ai=0.3:moe_${FAMILY}.ttf -twmoe-${FAMILY}-medium-i-normal--0-0-0-0-c-0-big5-0 >> fonts.dir echo ab=y:ai=0.3:moe_${FAMILY}.ttf -twmoe-${FAMILY}-bold-i-normal--0-0-0-0-c-0-big5-0 >> fonts.dir done -rm -f fonts.dir.tmp # Update fonts.alias, font size ranges from 8 to 128. SIZE=8 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 1:11:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from dpnegoro.bit.net.id (ns2.bit.net.id [202.147.252.3]) by hub.freebsd.org (Postfix) with ESMTP id A697B14D8C for ; Mon, 18 Oct 1999 01:10:56 -0700 (PDT) (envelope-from wusman@bit.net.id) Received: (from wusman@localhost) by dpnegoro.bit.net.id (8.8.5/BITNET5) id IAA22323; Mon, 18 Oct 1999 08:16:04 GMT Date: Mon, 18 Oct 1999 15:16:03 +0700 (WIB) From: Wildan Usman To: ports@freebsd.org Subject: Error message Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear Sir, I have found this message when accessing mysqlclient : ========= Sources for ports/databases/mysql322-client Sorry, did not find the sources for ports/databases/mysql322-client ========= Thank you. Wildan Usman mailto:wusman@bit.net.id To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 1:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D3B7214DDC for ; Mon, 18 Oct 1999 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA86892; Mon, 18 Oct 1999 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from out.gcn.net.tw (out.gcn.net.tw [203.77.2.144]) by hub.freebsd.org (Postfix) with ESMTP id 3798214D8C for ; Mon, 18 Oct 1999 01:19:25 -0700 (PDT) (envelope-from jtjang@gcn.net.tw) Received: from phantom.at.home (host246.21062207.gcn.net.tw [210.62.207.246]) by out.gcn.net.tw (8.8.8/8.8.8) with ESMTP id IAA36548 for ; Mon, 18 Oct 1999 08:19:18 GMT Received: (from keith@localhost) by phantom.at.home (8.9.3/8.9.3) id QAA01204; Mon, 18 Oct 1999 16:18:12 GMT (envelope-from keith) Message-Id: <199910181618.QAA01204@phantom.at.home> Date: Mon, 18 Oct 1999 16:18:12 GMT From: jtjang@gcn.net.tw Reply-To: jtjang@gcn.net.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14393: New port: chinese/arphicttf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14393 >Category: ports >Synopsis: Free-distributable Chinese Big5/GB TTFs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 01:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Keith Jang >Release: FreeBSD 4.0-CURRENT i386 >Organization: End user >Environment: FreeBSD 4.0-CURRENT #0: Mon Oct 18 14:57:45 GMT 1999 root@phantom.at.home:/usr/src/sys/compile/phantom i386 >Description: This port installs four Chinese Big5/GB TrueType fonts, includes Kaiti/Mingti(Big5) and Kaiti/Sungti(GB). It then can be used along with X Window System or typesetting software like CJK. Thanks to Arphic Technology, you may freely distribute these high-quality fonts under a GPL-based license. See ARPHIC_*.TXT for details. >How-To-Repeat: >Fix: Please commit the following port, thanks. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # arphicttf # arphicttf/files # arphicttf/files/md5 # arphicttf/pkg # arphicttf/pkg/COMMENT # arphicttf/pkg/DEINSTALL # arphicttf/pkg/DESCR # arphicttf/pkg/INSTALL # arphicttf/pkg/PLIST # arphicttf/Makefile # echo c - arphicttf mkdir -p arphicttf > /dev/null 2>&1 echo c - arphicttf/files mkdir -p arphicttf/files > /dev/null 2>&1 echo x - arphicttf/files/md5 sed 's/^X//' >arphicttf/files/md5 << 'END-of-arphicttf/files/md5' XMD5 (zh-arphicttf-1.0.tar.gz) = 46301301c4a8b201189f923fcd29e7b1 END-of-arphicttf/files/md5 echo c - arphicttf/pkg mkdir -p arphicttf/pkg > /dev/null 2>&1 echo x - arphicttf/pkg/COMMENT sed 's/^X//' >arphicttf/pkg/COMMENT << 'END-of-arphicttf/pkg/COMMENT' XFour Chinese Big5/GB TrueType fonts made by Arphic Technology. END-of-arphicttf/pkg/COMMENT echo x - arphicttf/pkg/DEINSTALL sed 's/^X//' >arphicttf/pkg/DEINSTALL << 'END-of-arphicttf/pkg/DEINSTALL' X#!/bin/sh Xif [ "$2" != "DEINSTALL" ]; then X exit 0 Xfi XFONTDIR=${PKG_PREFIX}/lib/X11/fonts/TrueType Xcd ${FONTDIR} X X# Restore fonts.dir Xsed -e '/ -ar-/d' -e '/ -arphic-/d' fonts.dir > fonts.dir.tmp Xnumfonts=$(echo $(cat fonts.dir.tmp | wc -l) - 1 | bc) Xecho ${numfonts} > fonts.dir Xsed -e 1d fonts.dir.tmp >> fonts.dir Xrm -f fonts.dir.tmp X X# Restore fonts.alias Xsed -e '/^-ar-/d' -e '/^-arphic-/d' fonts.alias > fonts.alias.tmp Xmv -f fonts.alias.tmp fonts.alias END-of-arphicttf/pkg/DEINSTALL echo x - arphicttf/pkg/DESCR sed 's/^X//' >arphicttf/pkg/DESCR << 'END-of-arphicttf/pkg/DESCR' XThis port installs four Chinese Big5/GB TrueType fonts, includes XKaiti/Mingti(Big5) and Kaiti/Sungti(GB). It then can be used along Xwith X Window System or typesetting software like CJK. Thanks to XArphic Technology, you may freely distribute these high-quality Xfonts under a GPL-based license. See ARPHIC_*.TXT for details. END-of-arphicttf/pkg/DESCR echo x - arphicttf/pkg/INSTALL sed 's/^X//' >arphicttf/pkg/INSTALL << 'END-of-arphicttf/pkg/INSTALL' X#!/bin/sh XFONTDIR=${PKG_PREFIX}/lib/X11/fonts/TrueType Xif [ "$2" = "PRE-INSTALL" ]; then X echo "Please add ${FONTDIR} to your /etc/XF86Config file" X exit 0 Xfi Xcd ${FONTDIR} X Xecho "Updating fonts.dir & fonts.alias. This may take a while..." X# Update fonts.dir Xtouch fonts.dir Xsed -e '/ -ar-/d' -e '/ -arphic-/d' fonts.dir > fonts.dir.tmp X# Add 16 new fonts Xnumfonts=$(echo $(cat fonts.dir.tmp |wc -l) - 1 + 16 |bc) Xif [ ${numfonts} -le 16 ]; then # fonts.dir.tmp is empty X echo 16 > fonts.dir Xelse X echo ${numfonts} > fonts.dir X sed -e 1d fonts.dir.tmp >> fonts.dir Xfi Xrm -f fonts.dir.tmp X X# The TTF filenames are so diverse that we can only iterate one X# by one, instead of a generic for loop. X X# bkai00mp.ttf (Big5) Xecho bkai00mp.ttf -ar-kai-medium-r-normal--0-0-0-0-c-0-big5-0 >> fonts.dir Xecho ab=y:bkai00mp.ttf -ar-kai-bold-r-normal--0-0-0-0-c-0-big5-0 >> fonts.dir Xecho ai=0.3:bkai00mp.ttf -ar-kai-medium-i-normal--0-0-0-0-c-0-big5-0 >> fonts.dir Xecho ab=y:ai=0.3:bkai00mp.ttf -ar-kai-bold-i-normal--0-0-0-0-c-0-big5-0 >> fonts.dir X X# bsmi00lp.ttf (Big5) Xecho bsmi00lp.ttf -ar-ming-medium-r-normal--0-0-0-0-c-0-big5-0 >> fonts.dir Xecho ab=y:bsmi00lp.ttf -ar-ming-bold-r-normal--0-0-0-0-c-0-big5-0 >> fonts.dir Xecho ai=0.3:bsmi00lp.ttf -ar-ming-medium-i-normal--0-0-0-0-c-0-big5-0 >> fonts.dir Xecho ab=y:ai=0.3:bsmi00lp.ttf -ar-ming-bold-i-normal--0-0-0-0-c-0-big5-0 >> fonts.dir X X# gbsn00lp.ttf (GB) Xecho gbsn00lp.ttf -ar-sung-medium-r-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir Xecho ab=y:gbsn00lp.ttf -ar-sung-bold-r-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir Xecho ai=0.3:gbsn00lp.ttf -ar-sung-medium-i-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir Xecho ab=y:ai=0.3:gbsn00lp.ttf -ar-sung-bold-i-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir X X# gkai00mp.ttf (GB) Xecho bkai00mp.ttf -ar-kai-medium-r-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir Xecho ab=y:bkai00mp.ttf -ar-kai-bold-r-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir Xecho ai=0.3:bkai00mp.ttf -ar-kai-medium-i-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir Xecho ab=y:ai=0.3:bkai00mp.ttf -ar-kai-bold-i-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir X X X# Update fonts.alias, font size ranges from 8 to 128. Xtouch fonts.alias Xsed -e '/^-ar-/d' -e '/^-arphic-/d' fonts.alias > fonts.alias.tmp Xmv -f fonts.alias.tmp fonts.alias X X# Iterate four fonts, same as in fonts.dir. X X# bkai00mp.ttf (Big5) XSIZE=8 Xwhile [ ${SIZE} -le 128 ] Xdo X echo -arphic-kai-medium-r-normal--${SIZE}-`expr ${SIZE} \* 10`-0-0-c-`expr ${SIZE} \* 10`-big5-0 -ar-kai-medium-r-normal--${SIZE}-`expr ${SIZE} \* 10`-0-0-c-`expr ${SIZE} \* 10`-big5-0 >> fonts.alias; X SIZE=`expr ${SIZE} + 1`; Xdone X X# bsmi00lp.ttf (Big5) XSIZE=8 Xwhile [ ${SIZE} -le 128 ] Xdo X echo -arphic-ming-medium-r-normal--${SIZE}-`expr ${SIZE} \* 10`-0-0-c-`expr ${SIZE} \* 10`-big5-0 -ar-ming-medium-r-normal--${SIZE}-`expr ${SIZE} \* 10`-0-0-c-`expr ${SIZE} \* 10`-big5-0 >> fonts.alias; X SIZE=`expr ${SIZE} + 1`; Xdone X X# gbsn00lp.ttf (GB) XSIZE=8 Xwhile [ ${SIZE} -le 128 ] Xdo X echo -arphic-sung-medium-r-normal--${SIZE}-`expr ${SIZE} \* 10`-0-0-c-`expr ${SIZE} \* 10`-gb2312.1980-0 -ar-sung-medium-r-normal--${SIZE}-`expr ${SIZE} \* 10`-0-0-c-`expr ${SIZE} \* 10`-gb2312.1980-0 >> fonts.alias; X SIZE=`expr ${SIZE} + 1`; Xdone X X# gkai00mp.ttf (GB) XSIZE=8 Xwhile [ ${SIZE} -le 128 ] Xdo X echo -arphic-kai-medium-r-normal--${SIZE}-`expr ${SIZE} \* 10`-0-0-c-`expr ${SIZE} \* 10`-gb2312.1980-0 -ar-kai-medium-r-normal--${SIZE}-`expr ${SIZE} \* 10`-0-0-c-`expr ${SIZE} \* 10`-gb2312.1980-0 >> fonts.alias; X SIZE=`expr ${SIZE} + 1`; Xdone END-of-arphicttf/pkg/INSTALL echo x - arphicttf/pkg/PLIST sed 's/^X//' >arphicttf/pkg/PLIST << 'END-of-arphicttf/pkg/PLIST' Xlib/X11/fonts/TrueType/ARPHICPL_Big5.TXT Xlib/X11/fonts/TrueType/ARPHICPL_Eng.TXT Xlib/X11/fonts/TrueType/ARPHICPL_GB.TXT Xlib/X11/fonts/TrueType/bkai00mp.ttf Xlib/X11/fonts/TrueType/bsmi00lp.ttf Xlib/X11/fonts/TrueType/gbsn00lp.ttf Xlib/X11/fonts/TrueType/gkai00mp.ttf X@unexec rmdir %D/lib/X11/fonts/TrueType 2>/dev/null || true END-of-arphicttf/pkg/PLIST echo x - arphicttf/Makefile sed 's/^X//' >arphicttf/Makefile << 'END-of-arphicttf/Makefile' X# New ports collection makefile for: Arphic Chinese TrueType fonts X# Version required: 1.0 X# Date created: 13 Oct 1999 X# Whom: Keith Jang X# X# $FreeBSD$ X# X XDISTNAME= zh-arphicttf-1.0 XCATEGORIES= chinese x11-fonts XMASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/keith/ X XMAINTAINER= jtjang@gcn.net.tw X XLIB_DEPENDS= font.1:${PORTSDIR}/x11-servers/XttXF86srv-common X XUSE_X_PREFIX= yes X XNO_BUILD= yes XSHAREMODE= 644 XFONTDIR= ${PREFIX}/lib/X11/fonts/TrueType X X.include X Xdo-install: X.if !exists(${FONTDIR}) X @${ECHO} "=========================================================" X @${ECHO} "Please add ${FONTDIR} to your font path" X @${ECHO} "in /etc/XF86Config." X @${ECHO} "=========================================================" X @${MKDIR} ${FONTDIR} X.endif X @${INSTALL_DATA} ${WRKDIR}/bkai00mp.ttf ${FONTDIR} X @${INSTALL_DATA} ${WRKDIR}/bsmi00lp.ttf ${FONTDIR} X @${INSTALL_DATA} ${WRKDIR}/gbsn00lp.ttf ${FONTDIR} X @${INSTALL_DATA} ${WRKDIR}/gkai00mp.ttf ${FONTDIR} X @${INSTALL_DATA} ${WRKDIR}/ARPHICPL_Big5.TXT ${FONTDIR} X @${INSTALL_DATA} ${WRKDIR}/ARPHICPL_Eng.TXT ${FONTDIR} X @${INSTALL_DATA} ${WRKDIR}/ARPHICPL_GB.TXT ${FONTDIR} X @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL X X.include END-of-arphicttf/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 3:46:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DABF14E1A; Mon, 18 Oct 1999 03:46:36 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA99817; Mon, 18 Oct 1999 03:46:36 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Date: Mon, 18 Oct 1999 03:46:36 -0700 (PDT) From: Message-Id: <199910181046.DAA99817@freefall.freebsd.org> To: foxfair@FreeBSD.org, freebsd-ports@FreeBSD.org, foxfair@FreeBSD.org Subject: Re: ports/14391: Upgrade chinese/xcin25 to the latest release. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade chinese/xcin25 to the latest release. Responsible-Changed-From-To: freebsd-ports->foxfair Responsible-Changed-By: foxfair Responsible-Changed-When: Mon Oct 18 03:45:26 PDT 1999 Responsible-Changed-Why: I'll do it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 3:47:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A0C2A14FB1; Mon, 18 Oct 1999 03:47:20 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA99910; Mon, 18 Oct 1999 03:47:20 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Date: Mon, 18 Oct 1999 03:47:20 -0700 (PDT) From: Message-Id: <199910181047.DAA99910@freefall.freebsd.org> To: foxfair@FreeBSD.org, freebsd-ports@FreeBSD.org, foxfair@FreeBSD.org Subject: Re: ports/14392: chinese/moettf has a bug when writing fonts.dir Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: chinese/moettf has a bug when writing fonts.dir Responsible-Changed-From-To: freebsd-ports->foxfair Responsible-Changed-By: foxfair Responsible-Changed-When: Mon Oct 18 03:46:42 PDT 1999 Responsible-Changed-Why: I'll do it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 3:48:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 926FC14CF7; Mon, 18 Oct 1999 03:48:39 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA00206; Mon, 18 Oct 1999 03:48:39 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Date: Mon, 18 Oct 1999 03:48:39 -0700 (PDT) From: Message-Id: <199910181048.DAA00206@freefall.freebsd.org> To: foxfair@FreeBSD.org, freebsd-ports@FreeBSD.org, foxfair@FreeBSD.org Subject: Re: ports/14393: Free-distributable Chinese Big5/GB TTFs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Free-distributable Chinese Big5/GB TTFs Responsible-Changed-From-To: freebsd-ports->foxfair Responsible-Changed-By: foxfair Responsible-Changed-When: Mon Oct 18 03:47:26 PDT 1999 Responsible-Changed-Why: I'll do it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 4:10: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B0CA14CF7 for ; Mon, 18 Oct 1999 04:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA04228; Mon, 18 Oct 1999 04:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bbcon.com.au (firewall.bbcon.com.au [203.28.19.210]) by hub.freebsd.org (Postfix) with ESMTP id 1950E14CF7 for ; Mon, 18 Oct 1999 04:09:15 -0700 (PDT) (envelope-from jsutton@bbcon.com.au) Received: from office.bbcon.com.au (stargate [10.0.0.1]) by bbcon.com.au (8.9.2/8.9.2) with ESMTP id VAA19988 for ; Mon, 18 Oct 1999 21:09:57 +1000 (EST) (envelope-from jsutton@bbcon.com.au) Received: from localhost (jsutton@localhost) by office.bbcon.com.au (8.9.2/8.9.2) with ESMTP id VAA14470 for ; Mon, 18 Oct 1999 21:16:42 +1000 (EST) (envelope-from jsutton@bbcon.com.au) Message-Id: Date: Mon, 18 Oct 1999 21:16:42 +1000 (EST) From: Joel Sutton To: FreeBSD-gnats-submit@freebsd.org In-Reply-To: <199910181113.VAA14461@office.bbcon.com.au> Subject: ports/14395: change of email address for games/connect4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14395 >Category: ports >Synopsis: change of email address for games/connect4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 04:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Joel Sutton >Release: FreeBSD 3.1-RELEASE i386 >Organization: Busy Bee Consulting >Environment: FreeBSD stargate.home 3.1-RELEASE FreeBSD 3.1-RELEASE #1: Wed Aug 11 14:46:10 EST 1999 root@stargate.home:/usr/src/sys/compile/NFSSERV i386 >Description: My email address has changed. Easy fixed. Thanks, Joel... >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /usr/home/cvs//ports/games/connect4/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 1999/08/25 06:03:06 1.3 +++ Makefile 1999/10/18 10:43:37 @@ -1,10 +1,10 @@ # New ports collection makefile for: connect4 # Version required: 3.2 # Date created: Thu May 8 16:41:01 EST 1997 -# Whom: Joel Sutton +# Whom: Joel Sutton # FreeBSD Version: 2.1.5-RELEASE # -# $FreeBSD: /ports/games/connect4/Makefile,v 1.3 1999/08/25 06:03:06 obrien Exp $ +# $FreeBSD: ports/games/connect4/Makefile,v 1.3 1999/08/25 06:03:06 obrien Exp $ # DISTNAME= connect4 @@ -14,7 +14,7 @@ ftp://scitsc.wlv.ac.uk/pub/infomagic/usenet/games/volume6/ EXTRACT_SUFX= "" -MAINTAINER= sutton@aardvark.apana.org.au +MAINTAINER= jsutton@bbcon.com.au BUILD_DEPENDS= gunshar:${PORTSDIR}/archivers/gshar+gunshar >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 5:24:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sparenix.metronet.com (sparenix.metronet.com [207.170.106.3]) by hub.freebsd.org (Postfix) with SMTP id 87F4814BCD for ; Mon, 18 Oct 1999 05:24:36 -0700 (PDT) (envelope-from jmanley@metronet.com) Received: (qmail 12134 invoked by uid 7770); 18 Oct 1999 12:43:29 -0000 Received: from fcn105-47.tmi.net (HELO win) (207.170.105.47) by sparenix.metronet.com with SMTP; 18 Oct 1999 12:43:29 -0000 Message-Id: <4.1.19991018072513.009111d0@mail.metronet.com> X-Sender: jmanley@mail.metronet.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Date: Mon, 18 Oct 1999 07:25:43 -0500 To: mharo@area51.fremont.ca.us From: Jim Manley Subject: Re: linux_base won't install Cc: FreeBSD Ports Team In-Reply-To: <19991018002641.A38900@area51.fremont.ca.us> References: <4.1.19991018003813.00975500@mail.metronet.com> <4.1.19991018003813.00975500@mail.metronet.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org That fixed it. Thanks, Jim At 12:26 AM 10/18/99 -0700, Michael Haro wrote: >Looks like you updated the port but not the files in /usr/ports/Mk >Update /usr/ports/Mk and let me know if that fixes the problem. > >Michael > >On Mon, Oct 18, 1999 at 12:38:50AM -0500, Jim Manley wrote: >> Just learned this is the more appropriate place for this questions. >> >> > >> > Date: Mon, 18 Oct 1999 00:31:06 -0500 >> > To: freebsd-stable@freebsd.org >> > From: Jim Manley >> > Subject: linux_base won't install >> > >> > My apologies if this isn't the correct forum for this question. >> > >> > I'm trying to get the most recent linux_base port to install but the 'make >> > install' dies >> > a horrible death. The 'make' went just fine. >> > darkstar# make install >> > ===> Installing for linux_base-5.2 >> > ===> linux_base-5.2 depends on executable: rpm - found >> > 666:No such file or directory >> > *** Error code 1 >> > >> > Stop. >> > *** Error code 1 >> > >> > Stop. >> > *** Error code 1 >> > >> > Stop. >> > Running 'make -dd install' yields: >> > Searching for .depend...failed. >> > Searching for .depend.../usr/share/mk...failed. >> > 666:No such file or directory >> > *** Error code 1 >> > >> > Stop. >> > *** Error code 1 >> > >> > Stop. >> > *** Error code 1 >> > >> > Stop. >> > Apparently there's a .depend file missing. Any ideas? >> > >> > Regards, >> > >> > Jim >> >> >> >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 5:56:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from warbird.metronet.co.uk (warbird.metronet.co.uk [195.166.51.57]) by hub.freebsd.org (Postfix) with ESMTP id 312A014BDD for ; Mon, 18 Oct 1999 05:56:25 -0700 (PDT) (envelope-from andrew@dairylogic.co.uk) Received: from intrepid (intrepid.metronet.co.uk [195.166.51.14]) by warbird.metronet.co.uk (8.9.1/8.9.1) with SMTP id NAA10831 for ; Mon, 18 Oct 1999 13:45:49 +0100 (BST) Reply-To: From: "Andrew Clark" To: Subject: Broken link in ports - mail/cyrus Date: Mon, 18 Oct 1999 13:54:04 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It appears the link to the description secion of the port cyrus-1.5.19 (in section mail) at www.freebsd.org (URL http://www.freebsd.org/cgi/ports.cgi?query=cyrus&stype=all to see link) is broken. It gives a file-not-found error. Cheers, Andy Clark. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 6: 0:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sparenix.metronet.com (sparenix.metronet.com [207.170.106.3]) by hub.freebsd.org (Postfix) with SMTP id D60D414CF4 for ; Mon, 18 Oct 1999 06:00:37 -0700 (PDT) (envelope-from jmanley@metronet.com) Received: (qmail 12327 invoked by uid 7770); 18 Oct 1999 13:19:31 -0000 Received: from fcn105-47.tmi.net (HELO win) (207.170.105.47) by sparenix.metronet.com with SMTP; 18 Oct 1999 13:19:31 -0000 Message-Id: <4.1.19991018075456.0096a9e0@mail.metronet.com> X-Sender: jmanley@mail.metronet.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Date: Mon, 18 Oct 1999 07:56:46 -0500 To: freebsd-ports@freebsd.org From: Jim Manley Subject: StarOffice 5.1 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there any plan to update the ports/editors collection for StarOffice 5.1? Regards, Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 7:10: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A872515136 for ; Mon, 18 Oct 1999 07:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA71626; Mon, 18 Oct 1999 07:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from modemcable156.106-200-24.mtl.mc.videotron.net (modemcable156.106-200-24.mtl.mc.videotron.net [24.200.106.156]) by hub.freebsd.org (Postfix) with SMTP id 5EAC115007 for ; Mon, 18 Oct 1999 07:02:49 -0700 (PDT) (envelope-from patrick@jacuzzi.local.mindstep.com) Received: (qmail 633 invoked by uid 0); 18 Oct 1999 14:02:42 -0000 Message-Id: <19991018140242.632.qmail@jacuzzi.local.mindstep.com> Date: 18 Oct 1999 14:02:42 -0000 From: patrick@mindstep.com Reply-To: patrick@mindstep.com To: FreeBSD-gnats-submit@freebsd.org Cc: patrick@mindstep.com X-Send-Pr-Version: 3.2 Subject: ports/14397: Apple's RTSP proxy does not connect UDP properly Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14397 >Category: ports >Synopsis: Apple's RTSP proxy does not connect UDP properly >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 07:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Patrick Bihan-Faou >Release: FreeBSD 3.2-STABLE i386 >Organization: MindStep Corporation >Environment: FreeBSD 3.2-Stable. Ports updated on October 14, 1999. Apple RTSP proxy distribution "1.0.1" >Description: The rtsp_proxy daemon needs to establish UDP connections with both the client and the server. In order to do so it opens a UDP socket. However the source address is incorrect (127.0.0.1) and no traffic can be exchanged with the rest of the world. This only happens if one is running "ipfw" and blocking traffic to the loopback interface. The fix consist in removing the call that gets the source IP address for the proxy (which will always return 127.0.0.1) and to not specify a source address when creating the UDP sockets. >How-To-Repeat: ipfw add deny from any to 127.0.0.0/8 cd /usr/ports/net/rtsp_proxy make install try to connect to a streaming server using the QuickTime 4 player no connection happens, the player eventually times out. >Fix: diff -urN rtsp_proxy.orig/patches/patch-ac rtsp_proxy/patches/patch-ac --- rtsp_proxy.orig/patches/patch-ac Wed Dec 31 19:00:00 1969 +++ rtsp_proxy/patches/patch-ac Sat Oct 16 10:46:23 1999 @@ -0,0 +1,30 @@ +--- ../proxy.c.orig Sat Oct 16 10:29:52 1999 ++++ ../proxy.c Sat Oct 16 10:30:01 1999 +@@ -127,7 +127,9 @@ + //int gUDPPortMin = 4000; + //int gUDPPortMax = 65535; + +-int gProxyIP = -1; ++#define ANY_ADDRESS -1 ++ ++int gProxyIP = ANY_ADDRESS; + int gMaxPorts = 0; + + unsigned long gBytesReceived = 0; +@@ -137,7 +139,6 @@ + unsigned long gLastPacketsReceived = 0; + unsigned long gLastPacketsSent = 0; + +-#define ANY_ADDRESS -1 + + /**********************************************/ + #if defined(unix) +@@ -243,7 +244,7 @@ + add_rtsp_port_listener(listening_port); + + // +- gProxyIP = get_local_ip_address(); ++ //gProxyIP = get_local_ip_address(); + + // + // compile regular expressions for RTSP >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 7:10: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 18A1A15169 for ; Mon, 18 Oct 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA71635; Mon, 18 Oct 1999 07:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from modemcable156.106-200-24.mtl.mc.videotron.net (modemcable156.106-200-24.mtl.mc.videotron.net [24.200.106.156]) by hub.freebsd.org (Postfix) with SMTP id 1F46E1514B for ; Mon, 18 Oct 1999 07:05:54 -0700 (PDT) (envelope-from patrick@jacuzzi.local.mindstep.com) Received: (qmail 756 invoked by uid 0); 18 Oct 1999 14:05:54 -0000 Message-Id: <19991018140554.755.qmail@jacuzzi.local.mindstep.com> Date: 18 Oct 1999 14:05:54 -0000 From: patrick@mindstep.com Reply-To: patrick@mindstep.com To: FreeBSD-gnats-submit@freebsd.org Cc: patrick@mindstep.com X-Send-Pr-Version: 3.2 Subject: ports/14398: NEW PORT: mod_dav module for Apache Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14398 >Category: ports >Synopsis: NEW PORT: mod_dav module for Apache >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 07:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Patrick Bihan-Faou >Release: FreeBSD 3.2-STABLE i386 >Organization: MindStep Corporation >Environment: FreeBSD 3.2-Stable Ports updated on October 14, 1999 >Description: This port installs the mod_dav module for Apache. It requires that Apache version 1.3.6 or later be installed before. This port will not install Apache by itself. Mod_dav implements DAV support for Apache. >How-To-Repeat: n/a >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mod_dav/ # mod_dav/files # mod_dav/files/md5 # mod_dav/files/apache.conf.mod_dav # mod_dav/pkg # mod_dav/pkg/COMMENT # mod_dav/pkg/DESCR # mod_dav/pkg/PLIST # mod_dav/Makefile # echo c - mod_dav/ mkdir -p mod_dav/ > /dev/null 2>&1 echo c - mod_dav/files mkdir -p mod_dav/files > /dev/null 2>&1 echo x - mod_dav/files/md5 sed 's/^X//' >mod_dav/files/md5 << 'END-of-mod_dav/files/md5' XMD5 (mod_dav-0.9.12-1.3.6.tar.gz) = bcad3b1b621de180acee9a6501696b4d END-of-mod_dav/files/md5 echo x - mod_dav/files/apache.conf.mod_dav sed 's/^X//' >mod_dav/files/apache.conf.mod_dav << 'END-of-mod_dav/files/apache.conf.mod_dav' X### X### This file provides quick and dirty indications on how X### to set up the mod_dav module with apache. X### X### Please refer to the main web site for more information X### http://www.webdav.org/mod_dav/ X### X X X### X### This goes in the Global Environment section (Section 1) X### X### This should have been added automatically during the install process X### X XLoadModule dav_module libexec/apache/libdav.so X XAddModule mod_dav.c X X X X X### X### This goes in the main server configuration section (section 2) X### X### The lock database will have to be created in the /var/db directory X### to do so, just do (as root): X### # touch /var/db/DAVLock.dir X### # touch /var/db/DAVLock.pag X### # chown nobody.nobody /var/db/DAVLock.* X### # chmod 640 /var/db/DAVLock.* X### X XDAVLockDB /var/db/DAVLock XDAVMinTimeout 600 X X X X### X### This is an example of per location/directory configuration X### X X X DAV On X AuthType Basic X AuthName DAV X AuthUserFile dav.passwd X X require user webadmin X X X END-of-mod_dav/files/apache.conf.mod_dav echo c - mod_dav/pkg mkdir -p mod_dav/pkg > /dev/null 2>&1 echo x - mod_dav/pkg/COMMENT sed 's/^X//' >mod_dav/pkg/COMMENT << 'END-of-mod_dav/pkg/COMMENT' Xmod_dav: an Apache module that provides DAV capabilities END-of-mod_dav/pkg/COMMENT echo x - mod_dav/pkg/DESCR sed 's/^X//' >mod_dav/pkg/DESCR << 'END-of-mod_dav/pkg/DESCR' Xmod_dav: a DAV module for Apache X Xmod_dav is an Apache module that provides DAV capabilities Xfor your Apache web server. X Xmod_dav is made by Greg Stein. X XIt is an Open Source module, provided under an Apache-style license. X X Xmod_dav requires that Apache 1.3.6 or later be already installed Xon your system. If this is not the case please select your Xpreferred Apache configuration from the ports distribution. X X XMore information about mod_dav can be found on the web site. X XWEB: http://www.webdav.org/mod_dav/ X X-- XPatrick Bihan-Faou Xwww.mindstep.com END-of-mod_dav/pkg/DESCR echo x - mod_dav/pkg/PLIST sed 's/^X//' >mod_dav/pkg/PLIST << 'END-of-mod_dav/pkg/PLIST' Xlibexec/apache/libdav.so Xetc/apache/apache.conf.mod_dav END-of-mod_dav/pkg/PLIST echo x - mod_dav/Makefile sed 's/^X//' >mod_dav/Makefile << 'END-of-mod_dav/Makefile' X# New ports collection makefile for: mod_dav (apache) X# Version required: 0.9.12 X# Date created: Sun Oct 17, 1999 X# Whom: patrick@mindstep.com X# X# $FreeBSD$ X# X XDISTNAME= mod_dav-${DAV_VERSION}-${APACHE_VERSION} XPKGNAME= mod_dav-${DAV_VERSION} XCATEGORIES= www XMASTER_SITES= http://www.webdav.org/mod_dav/ X XMAINTAINER= patrick@mindstep.com X X#BUILD_DEPENDS= ${PREFIX}/sbin/apxs:${PORTSDIR}/www/apache13 X XAPACHE_VERSION= 1.3.6 XDAV_VERSION= 0.9.12 X XHAS_CONFIGURE= yes XCONFIGURE_ARGS= --prefix=${PREFIX} \ X --bindir=${PREFIX}/bin \ X --sbindir=${PREFIX}/sbin \ X --libexecdir=${PREFIX}/libexec/apache \ X --mandir=${PREFIX}/man \ X --sysconfdir=${PREFIX}/etc/apache \ X --datadir=${PREFIX}/share/apache \ X --includedir=${PREFIX}/include/apache \ X --with-apxs=${PREFIX}/sbin/apxs X XCONFIGURE_ENV= CFLAGS='${CFLAGS}' \ X PATH="${PREFIX}/bin:${PREFIX}/sbin:${PATH}" X Xpre-configure: X @ [ -x ${PREFIX}/sbin/apxs ] \ X || (${ECHO_MSG} "********************************************************" \ X && ${ECHO_MSG} "* MOD_DAV requires apache version ${APACHE_VERSION}" \ X && ${ECHO_MSG} "* or better. Please install your preferred Apache" \ X && ${ECHO_MSG} "* configuration from the ports directory."\ X && ${ECHO_MSG} "* "\ X && ${ECHO_MSG} "* ${PORTSDIR}/www/apache13 basic Apache" \ X && ${ECHO_MSG} "* or"\ X && ${ECHO_MSG} "* ${PORTSDIR}/www/apache13-* Apache with some modules" \ X && ${ECHO_MSG} "* "\ X && ${ECHO_MSG} "********************************************************" \ X && false) X Xpost-install: X ${INSTALL_DATA} ${FILESDIR}/apache.conf.mod_dav ${PREFIX}/etc/apache X @${ECHO_MSG} "*******************************************************" X @${ECHO_MSG} "* Please review the mod_dav configuration in the main" X @${ECHO_MSG} "* Apache configuration file." X @${ECHO_MSG} "* ${PREFIX}/etc/apache/apache.conf" X @${ECHO_MSG} "*" X @${ECHO_MSG} "* Look at the file ${PREFIX}/etc/apache/apache.conf.mod_dav" X @${ECHO_MSG} "* for indications on what to do." X @${ECHO_MSG} "*" X @${ECHO_MSG} "*******************************************************" X X.include END-of-mod_dav/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 8: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A9CF914DBC for ; Mon, 18 Oct 1999 08:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA76282; Mon, 18 Oct 1999 08:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (Postfix) with ESMTP id 696FD14DBC for ; Mon, 18 Oct 1999 07:58:07 -0700 (PDT) (envelope-from dr@domix.de) Received: from lamest.domix.de (dial-ra-nc2-172.netcologne.de [195.14.244.172]) by mail2.netcologne.de (8.9.3/8.9.3) with ESMTP id QAA02860 for ; Mon, 18 Oct 1999 16:58:01 +0200 (MET DST) Received: from domix.de (speed.localnet.lan [192.168.1.2]) by lamest.domix.de (8.9.3/8.9.3) with ESMTP id QAA05829 for ; Mon, 18 Oct 1999 16:50:22 +0200 (CEST) (envelope-from dr@domix.de) Received: (from dr@localhost) by domix.de (8.9.3/8.9.3) id QAA01951; Mon, 18 Oct 1999 16:56:23 +0200 (CEST) (envelope-from dr) Message-Id: <199910181456.QAA01951@domix.de> Date: Mon, 18 Oct 1999 16:56:23 +0200 (CEST) From: Dominik Rothert Reply-To: Dominik Rothert To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14399: update port: net/iplog Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14399 >Category: ports >Synopsis: update port: net/iplog >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 08:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dominik Rothert >Release: FreeBSD 4.0-CURRENT i386 >Organization: Am I organized? >Environment: FreeBSD speed.localnet.lan 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Tue Oct 12 10:39:15 CEST 1999 root@speed.localnet.lan:/usr/src/sys/compile/SPEED i386 >Description: iplog is a TCP/IP traffic logger. Currently, it is capable of logging TCP, UDP and ICMP traffic, though adding support for other protocols should be relatively easy. iplog contains a built-in packet filter, allowing for logging or excluding packets that fit a given set of criteria. This version fixes some bugs. CATEGORIES was set to a wrong value since you moved it from security to net. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # iplog/ # iplog/files # iplog/files/md5 # iplog/pkg # iplog/pkg/PLIST # iplog/pkg/DESCR # iplog/pkg/COMMENT # iplog/Makefile # echo c - iplog/ mkdir -p iplog/ > /dev/null 2>&1 echo c - iplog/files mkdir -p iplog/files > /dev/null 2>&1 echo x - iplog/files/md5 sed 's/^X//' >iplog/files/md5 << 'END-of-iplog/files/md5' XMD5 (iplog-2.0-1017.tar.gz) = 6a2cda10b32e7bf7a46bcdfe1d551c9f END-of-iplog/files/md5 echo c - iplog/pkg mkdir -p iplog/pkg > /dev/null 2>&1 echo x - iplog/pkg/PLIST sed 's/^X//' >iplog/pkg/PLIST << 'END-of-iplog/pkg/PLIST' Xsbin/iplog Xetc/iplog.rules.sample END-of-iplog/pkg/PLIST echo x - iplog/pkg/DESCR sed 's/^X//' >iplog/pkg/DESCR << 'END-of-iplog/pkg/DESCR' Xiplog is a TCP/IP traffic logger. Currently, it is capable of logging XTCP, UDP and ICMP traffic, though adding support for other protocols Xshould be relatively easy. iplog contains a built-in packet filter, Xallowing for logging or excluding packets that fit a given set of Xcriteria. END-of-iplog/pkg/DESCR echo x - iplog/pkg/COMMENT sed 's/^X//' >iplog/pkg/COMMENT << 'END-of-iplog/pkg/COMMENT' XTCP/IP traffic logging tool END-of-iplog/pkg/COMMENT echo x - iplog/Makefile sed 's/^X//' >iplog/Makefile << 'END-of-iplog/Makefile' X# New ports collection makefile for: iplog X# Version required: 2.0 X# Date created: 18 Oct 1999 X# Whom: Dominik Rothert X# X# $FreeBSD$ X# X XDISTNAME= iplog-2.0-1017 XCATEGORIES= net XMASTER_SITES= http://www.numb.org/~odin/stuff/ X XMAINTAINER= dr@domix.de X XGNU_CONFIGURE= yes XMAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX}" XUSE_GMAKE= yes X XMAN8= iplog.8 X Xpost-install: X strip ${PREFIX}/sbin/iplog X ${CP} ${WRKSRC}/example-iplog.rules ${PREFIX}/etc/iplog.rules.sample X ${CP} ${WRKSRC}/example-iplog.rules ${PREFIX}/etc/iplog.rules X X.include END-of-iplog/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 9: 6:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from titanium.yy.ics.keio.ac.jp (titanium.yy.ics.keio.ac.jp [131.113.47.73]) by hub.freebsd.org (Postfix) with ESMTP id 9511214CA1 for ; Mon, 18 Oct 1999 09:06:02 -0700 (PDT) (envelope-from sanpei@sanpei.org) Received: from lavender.yy.cs.keio.ac.jp (ppp106.dialup.st.keio.ac.jp [131.113.27.106]) by titanium.yy.ics.keio.ac.jp (8.9.3+3.2W/3.7W) with ESMTP id BAA16828; Tue, 19 Oct 1999 01:05:17 +0900 (JST) (envelope-from sanpei@sanpei.org) Received: (from sanpei@localhost) by lavender.yy.cs.keio.ac.jp (8.9.3/3.7W) id AAA09006; Tue, 19 Oct 1999 00:32:56 +0900 (JST) Message-Id: <199910181532.AAA09006@lavender.yy.cs.keio.ac.jp> To: ambrisko@whistle.com Cc: freebsd-ports@freebsd.org Subject: Re: FreeBSD Port: etherboot-4.1p9 X-Mailer: Mew version 1.70 on Emacs 19.34.1 / Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Tue, 19 Oct 1999 00:32:56 +0900 From: MIHIRA Sanpei Yoshiro Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Using etherboot with FreeBSD 3.1, The etherboot can load kernel but = >cannot mount root even I already exported in /etc/exports : > >/usr/diskless/tftpboot/192.168.0.4 -maproot=3D0:0 192.168.0.4 > >What should I do ? Did you use etherboot? I use 3.1-RELEASE and etherboot-4.1p9. I can boot from network and mount / partition(yes, I can use diskless). Did you add below options to diskless kernel configuration? options NFS #Network File System options NFS_ROOT #NFS usable as root device options BOOTP # Use BOOTP to obtain IP address/hostname options BOOTP_NFSROOT # NFS mount root filesystem using BOOTP info options BOOTP_NFSV3 # Use NFS v3 to NFS mount root options BOOTP_COMPAT # Workaround for broken bootp daemons. options BOOTP_WIRED_TO=fxp0 # Use interface fxp0 for BOOTP ~~~~ your bootp interface name Cheers. MIHIRA Sanpei Yoshiro Yokohama, Japan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 9:24:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (Postfix) with ESMTP id 7842314BC5 for ; Mon, 18 Oct 1999 09:24:23 -0700 (PDT) (envelope-from ambrisko@whistle.com) Received: from whistle.com (crab.whistle.com [207.76.205.112]) by alpo.whistle.com (8.9.1a/8.9.1) with ESMTP id JAA75257; Mon, 18 Oct 1999 09:24:22 -0700 (PDT) Received: (from ambrisko@localhost) by whistle.com (8.9.1/8.9.1) id JAA03628; Mon, 18 Oct 1999 09:23:39 -0700 (PDT) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <199910181623.JAA03628@whistle.com> Subject: Re: FreeBSD Port: etherboot-4.1p9 In-Reply-To: <199910181532.AAA09006@lavender.yy.cs.keio.ac.jp> from MIHIRA Sanpei Yoshiro at "Oct 19, 99 00:32:56 am" To: sanpei@sanpei.org (MIHIRA Sanpei Yoshiro) Date: Mon, 18 Oct 1999 09:23:39 -0700 (PDT) Cc: ambrisko@whistle.com, freebsd-ports@freebsd.org X-Mailer: ELM [version 2.4ME+ PL29 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org MIHIRA Sanpei Yoshiro writes: | >Using etherboot with FreeBSD 3.1, The etherboot can load kernel but = | >cannot mount root even I already exported in /etc/exports : | > | >/usr/diskless/tftpboot/192.168.0.4 -maproot=3D0:0 192.168.0.4 | > | >What should I do ? | | Did you use etherboot? I use 3.1-RELEASE and etherboot-4.1p9. I | can boot from network and mount / partition(yes, I can use | diskless). | | Did you add below options to diskless kernel configuration? | | options NFS #Network File System | options NFS_ROOT #NFS usable as root device | options BOOTP # Use BOOTP to obtain IP address/hostname | options BOOTP_NFSROOT # NFS mount root filesystem using BOOTP info | options BOOTP_NFSV3 # Use NFS v3 to NFS mount root | options BOOTP_COMPAT # Workaround for broken bootp daemons. | options BOOTP_WIRED_TO=fxp0 # Use interface fxp0 for BOOTP | ~~~~ your bootp interface name Can you give us the last few lines of the kernel boot messages, they should look like: bootpc_init: using network interface 'fxp0' Bootpc testing starting bootpc hw address is 0:a0:c9:c7:e1:6f My ip address is 192.168.2.3 Server ip address is 192.168.2.254 Gateway ip address is 0.0.0.0 Subnet mask is 255.255.255.0 rootfs is 192.168.2.254:/usr/home/ambrisko/current Ignoring field type 28 swapfs is 192.168.2.254:/usr/home/ambrisko/current Truncated fieldmd_lookup_swap: Swap size is 128 KB NFS ROOT: 192.168.2.254:/usr/home/ambrisko/current NFS SWAP: 192.168.2.254:/usr/home/ambrisko/current My export line is: /usr -alldirs -maproot=root So I don't have to worry about export the exact directory. When you get it working then you can try to tune to only the directory you want. FYI, you don't need the "BOOTP_WIRED_TO" options unless you have multiple NICs and the first one is not the netbooted one. I submited that feature because I have several netboot machines with multiple NICs. Doug A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 9:38:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from titanium.yy.ics.keio.ac.jp (titanium.yy.ics.keio.ac.jp [131.113.47.73]) by hub.freebsd.org (Postfix) with ESMTP id 2AF6814F84 for ; Mon, 18 Oct 1999 09:38:39 -0700 (PDT) (envelope-from sanpei@sanpei.org) Received: from lavender.yy.cs.keio.ac.jp (ppp106.dialup.st.keio.ac.jp [131.113.27.106]) by titanium.yy.ics.keio.ac.jp (8.9.3+3.2W/3.7W) with ESMTP id BAA17971; Tue, 19 Oct 1999 01:38:37 +0900 (JST) (envelope-from sanpei@sanpei.org) Received: (from sanpei@localhost) by lavender.yy.cs.keio.ac.jp (8.9.3/3.7W) id BAA09347; Tue, 19 Oct 1999 01:38:35 +0900 (JST) Message-Id: <199910181638.BAA09347@lavender.yy.cs.keio.ac.jp> To: ambrisko@whistle.com Cc: freebsd-ports@freebsd.org Subject: Re: FreeBSD Port: etherboot-4.1p9 In-Reply-To: Your message of "Mon, 18 Oct 1999 09:23:39 -0700 (PDT)" References: <199910181623.JAA03628@whistle.com> X-Mailer: Mew version 1.70 on Emacs 19.34.1 / Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Tue, 19 Oct 1999 01:38:34 +0900 From: MIHIRA Sanpei Yoshiro Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Can you give us the last few lines of the kernel boot messages, they should >look like: bootpc_init: wired to interface 'ep0' bootpc_init: using network interface 'ep0' Bootpc testing starting bootpc hw address is xx:xx:xx:xx:xx:xx My ip address is 192.168.3.155 Server ip address is 192.168.3.1 Gateway ip address is 0.0.0.0 Server name is 192.168.3.1 boot file is kernel.apricot Subnet mask is 255.255.255.0 Router is 192.168.3.1 rootfs is 192.168.3.1:/mnt/usr/apricot NFS ROOT: 192.168.3.1:/mnt/usr/apricot and exported with below /etc/exports on NFS server[192.168.3.1] /mnt/usr -alldirs -maproot=0:0 -network 192.168.3.0 -mask 255.255.255.0 >FYI, you don't need the "BOOTP_WIRED_TO" options unless you have multiple >NICs and the first one is not the netbooted one. I submited that feature >because I have several netboot machines with multiple NICs. Huum. I will test it. Thank you. MIHIRA Yoshiro To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 9:40: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AD8A14E1C for ; Mon, 18 Oct 1999 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA84931; Mon, 18 Oct 1999 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from M-Relay.HcRC.edu.tw (m-relay.HcRC.edu.tw [163.28.64.11]) by hub.freebsd.org (Postfix) with ESMTP id E68E314F31 for ; Mon, 18 Oct 1999 09:35:20 -0700 (PDT) (envelope-from ijliao@Terry.Dorm8.NCTU.edu.tw) Received: from Terry.Dorm8.NCTU.edu.tw (IDENT:root@Terry.Dorm8.NCTU.edu.tw [140.113.93.99]) by M-Relay.HcRC.edu.tw (8.9.3/8.9.3) with ESMTP id AAA39447 for ; Tue, 19 Oct 1999 00:34:59 +0800 (CST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.9.3/8.9.3) id AAA76892; Tue, 19 Oct 1999 00:34:58 +0800 (CST) (envelope-from ijliao) Message-Id: <199910181634.AAA76892@Terry.Dorm8.NCTU.edu.tw> Date: Tue, 19 Oct 1999 00:34:58 +0800 (CST) From: Ying-Chieh Liao Reply-To: ijliao@Terry.Dorm8.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14400: update ports: t1lib to 0.9.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14400 >Category: ports >Synopsis: update ports: t1lib to 0.9.2 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 09:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 4.0-CURRENT i386 >Organization: NCTU CSIE >Environment: FreeBSD Terry.Dorm8.NCTU.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #5: Sat Oct 2 01:15:12 CST 1999 root@Terry.Dorm8.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: update ports: devel/t1lib from 0.9.1 to 0.9.2 >How-To-Repeat: >Fix: diff -ruN /usr/ports/devel/t1lib/Makefile t1lib/Makefile --- /usr/ports/devel/t1lib/Makefile Sun Sep 26 16:12:16 1999 +++ t1lib/Makefile Tue Oct 19 00:20:40 1999 @@ -6,16 +6,14 @@ # $FreeBSD: ports/devel/t1lib/Makefile,v 1.5 1999/09/25 01:39:21 obrien Exp $ # -DISTNAME= t1lib-0.9.1 +DISTNAME= t1lib-0.9.2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= libs/graphics MAINTAINER= ijliao@csie.nctu.edu.tw -BROKEN='fetch fails' - -WRKSRC= ${WRKDIR}/T1-0.9.1 +WRKSRC= ${WRKDIR}/T1-0.9.2 GNU_CONFIGURE= yes USE_GMAKE= yes diff -ruN /usr/ports/devel/t1lib/files/md5 t1lib/files/md5 --- /usr/ports/devel/t1lib/files/md5 Sun Aug 1 10:48:48 1999 +++ t1lib/files/md5 Tue Oct 19 00:21:12 1999 @@ -1 +1 @@ -MD5 (t1lib-0.9.1.tar.gz) = 11c13904a5c7f1311111181826348c9d +MD5 (t1lib-0.9.2.tar.gz) = 31c85ba473ca9cfbd9c3948d556236e7 diff -ruN /usr/ports/devel/t1lib/pkg/PLIST t1lib/pkg/PLIST --- /usr/ports/devel/t1lib/pkg/PLIST Mon Jun 7 01:33:50 1999 +++ t1lib/pkg/PLIST Tue Oct 19 00:32:37 1999 @@ -6,5 +6,9 @@ lib/libt1.la lib/libt1x.a lib/libt1x.la +lib/libt1.so +lib/libt1.so.9 +lib/libt1x.so +lib/libt1x.so.9 share/t1lib-0.9/t1lib.config @dirrm share/t1lib-0.9 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 9:50:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from thelab.hub.org (nat203.183.mpoweredpc.net [142.177.203.183]) by hub.freebsd.org (Postfix) with ESMTP id 00C7914DC5; Mon, 18 Oct 1999 09:49:40 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.9.3/8.9.1) with ESMTP id NAA44556; Mon, 18 Oct 1999 13:50:02 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Mon, 18 Oct 1999 13:49:58 -0300 (ADT) From: The Hermit Hacker To: freebsd-emulation@freebsd.org Cc: freebsd-ports@freebsd.org Subject: binutils-2.9.1.0.15-1.i386.rpm cannot be installed? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've tried several times, allto no avail...just re-cvsup'd the ports collection to make sure I was up to date, and its a 3.3-STABLE machine... ===> Installing for staroffice-3.1 ===> staroffice-3.1 depends on file: /compat/linux/usr/i486-linux-libc5/lib/libc.so.5 - not found ===> Verifying reinstall for /compat/linux/usr/i486-linux-libc5/lib/libc.so.5 in /usr/ports/emulators/linux_base ===> Installing for linux_base-5.2 ===> linux_base-5.2 depends on executable: rpm - found setup-1.9.2-1.noarch.rpm filesystem-1.3.2-3.noarch.rpm basesystem-4.9-3.noarch.rpm ldconfig-1.9.5-8.i386.rpm glibc-2.0.7-29.i386.rpm termcap-9.12.6-11.noarch.rpm libtermcap-2.0.8-10.i386.rpm bash-1.14.7-13.i386.rpm ncurses-4.2-10.i386.rpm zlib-1.1.3-2.i386.rpm info-3.12-9.i386.rpm fileutils-3.16-10.i386.rpm grep-2.2-2.i386.rpm binutils-2.9.1.0.15-1.i386.rpm error: /usr/ports/distfiles/rpm/binutils-2.9.1.0.15-1.i386.rpm cannot be installed *** Error code 1 Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 10:10: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FD1C15129 for ; Mon, 18 Oct 1999 10:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA87837; Mon, 18 Oct 1999 10:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 18 Oct 1999 10:10:03 -0700 (PDT) Message-Id: <199910181710.KAA87837@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Ade Lovett Subject: Re: ports/14286: Clean up print/pkfonts* and japanese/vfxdvi* Reply-To: Ade Lovett Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14286; it has been noted by GNATS. From: Ade Lovett To: MIHIRA Sanpei Yoshiro Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/14286: Clean up print/pkfonts* and japanese/vfxdvi* Date: Mon, 18 Oct 1999 12:08:10 -0500 On Mon, Oct 18, 1999 at 01:05:28PM +0900, MIHIRA Sanpei Yoshiro wrote: > >--- Makefile.orig Sun Oct 17 16:32:41 1999 > >+++ Makefile Sun Oct 17 16:33:32 1999 > >@@ -9,8 +9,8 @@ > > DISTNAME= pkfonts > > PKGNAME= pkfonts${RESOLUTION}-1.0 > > CATEGORIES= print > >-MASTER_SITES= ftp://ftp.univ-evry.fr/.04/system/OpenBSD/distfiles/pkfonts/ \ > >- ${MASTER_SITE_PORTS_JP}/pkfonts/ > >+MASTER_SITES= ${MASTER_SITE_PORTS_JP} > >+MASTER_SITE_SUBDIR= pkfonts > > DISTFILES= pk${RESOLUTION}.tar.gz > > # see below for RESOLUTION definition > > > >That will need to be committed before the distfile survey results will > >be accurate for the pkfonts* ports. > > Yes, that's right. I hope to **commit** above change. Ok. Can we have this committed, close the PR, and then wait for the next distfile survey to clean up any remaining issues. Thanks, -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 10:20:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 518691503D for ; Mon, 18 Oct 1999 10:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA88731; Mon, 18 Oct 1999 10:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4682414A2D; Mon, 18 Oct 1999 10:18:24 -0700 (PDT) Message-Id: <19991018171824.4682414A2D@hub.freebsd.org> Date: Mon, 18 Oct 1999 10:18:24 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14403: Update port: graphics/netpbm to 8.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14403 >Category: ports >Synopsis: Update port: graphics/netpbm to 8.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 10:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 3.3-RELEASE i386 >Organization: >Environment: >Description: * Updated version 94.3.1(1mar1994) to 8.0(23sep1999) * Fixed MASTER_SITES New file: patches/patch-an patches/patch-ao patches/patch-ap patches/patch-aq patches/patch-ar patches/patch-as patches/patch-at patches/patch-au patches/patch-av patches/patch-aw patches/patch-ax Remove file: patches/patch-ad patches/patch-ae patches/patch-ai patches/patch-al scripts/configure >How-To-Repeat: >Fix: begin 644 netpbm.patch.gz M'XL(""/^"3@"`VYE='!B;2YP871C:`#L/&MWXL:2G_&OZ.MQSH#%2P+QD./L M^($GW/AUP-[<[,Z>N4(2H(R0B"3\R,SL;]^J?D@MD`';D[M[-N%@U(_JZNJJ MZNJJ[I9M=SPFE45X26J+**S-@S".:I/0G$]=*ZKY3CP?S6H7YB=G['H.>:IB MIU*I;(.@<+-PR-"9$](FFFJH3:/1)&JWV]U1%.5)[(6A&9,K*R9JBZBJH6N& MWF:MWKTC%;6L-8@"OTWR[MT.>4,NG7M"R2!6X'F.%;N!3V9B".,@-`JL@YW* M&_+O3AAA?>C\MG!#QS8*ZLP,`7ES1\FK[53KV,>I&3O$"AUX0&'AW[#LYVDP M@W3AU]GOI!B$[L3U3:\$-5BY=Q8ZSO'PU"#K.52^(VI5J]/AU>KPA9'6C:9N M:"T2QY43OO#F\NCB]YA,J+KG][+!95NL]JHJCO*,F2%#N3D MZ*;W_FK0[PT/"X*BG&[4:_%8?JD$XJ0UT*_#CT!W5 M6/]G_7,$XV@%]ZJQ&58GO^\H661[GZ7\Q^'M)3Z_9J"@]/BT/S@LF/.YQ"?H M],X)8Q@UN3CJ7][`7P^`*#??<>8B?=>_R=*@<%F)0\6K3V/M\ M?36X&0+JKRE6K%N&_W7N3*K=?'BLVU$D^,WHR8<=I;`9*=E1?A[\-!R<'!:` M2Y"D,%RLY';8^]B_./H)Y/?H1#L*,N%2!1[YCW$P]V=5E9B1Y;J0F=!,_`F2 M(TR.W"`T;5$QFLTA..!.IQ))I/&J)^XB2@ MB&CBC@7T)%AXMNADZLZ3QM.YE92[J$1)>YS'>KVL$T57RQTZCPL/][;`^#A* M^GI;;AQ(Y)+H^UNOZJ-YU6EU3MT>=<;W3:3:;#5WK:/9X M!-9!0@!V2VJKFF:GXXSJMCKNM$9ZN]L8VTZ]H;:MKN[8K<[.,1CA\)%0DM>Q M0L8^^9V8ODTV@*"0G'`[65'=`9[19\4TR2:`39);AB^VB*,NPZ*(T]_?W25\LIU5G1^]'Y:( M\`TBNA)N;#8ALRI^U,*\8XDK9V<+SR`B92(*Q8"+X;F`CG=BI M[C[%*?SK@4_P&$^!^UN+:^",OJ'`UO%Q2[G]GQ0*Y]+S)?+&'9.^#_/1\_K) MP(@HNEAXL0M8SCQS$A7G?#F*O!>8B*4DT[\\P3S4]B^'-Y!CXRPQN\+, M`R;7F(="M?:'V8:"S+_".FNP!"GD4'C.Q"^LF?&%]5I56*=.A5P]VDQQFMEF M`ASX[_X4LVSB]"O\K\TK)K-=L<4!"]"+ZMU=",4\L:&=KY#^C^:=V(V2L779A2= MG`*;)G1,Y.W):>_X]CVE]'"O*.5*;Z$9D(XM+]O8R4#@#\DR1\HTMT4O" M*FM3H&,],ZRR:%AU&=P13<^$51D'`8S"+!@>E5!/RB$!Q8Z`DM9/Z!KU?T4%:9( M)DX<%6%VCTF)_.V07-Z>GQ/J.!40_^D54 ME!SI@=C5** MR@8AOL22VIMLF_U,2VHG>T0DN\/8WL:2VM2\X?XDMNXFK=MU;DE5U*%ZF7J6 M=,Y7:^"XU61/%AS9A4^WR(@.H:/1:!O-)G-D*TC"4HLKE-%/J+ M79(5WY/:F9/;P:!W>7/>/T:WWY[VA@205OK5*OS091G78Y9^+Z6O MTS3VC!DT1:]&Q!T`89JEUM$:262*Q08C`WSI&JQ-)Y]B/0\285F%(MT M-'$A^4%J'[FAJ'RXM]-*;,6(L0BT2I)N*)+)086CJ:.&:8],88.!R<8CA*9:>3J^._(T?1,)R#)@4V`[9$S;S+R[+AQB'S<(GXQ#)*<'$96Z,XIN:YO.P]2?F:&$UAITX)H%@3Q5!1P!JFM M3KD+*SA],&,HMN*X8121@>DO3"\"^[,4*D!%$2.F2[7T1)@`=9BOS4Q?+:U! MT-@"06,=`GT+!#I:OE4$P\5X_(QAE-5-:+8:3+FQ"@+>P)*FO)&LR3!NN';>QZ]`RGWDYIH>E$Q3QCP M71*&@%Z61,M094FTJ23:B23L6,K]FJ9_ M"V,97VC>IW7A9-1(#.U09>DDRH*:8+L1"/T1HAEW9DX<,GHD)N@+C"_$ M@TVMC%$L>W`MMAK07(N@CE?ND MM!+BC5R-;TTF8(S!L=RZ^>$#B`+D%X64TA;7"B6*R M\-W?8#V8A^!_/6R>9_#\;6'ZL<@4J8>2F42Y(!3MT>W-CU<#R!R;$1`#&@5& MNG=Y3N@%0=6Q%S\@F>?. M;.YXE?]P[^A9=^A$]+V+D<"\*TIWJ_ST$U85^`/G(IZ*LU*ZCNFD#C%.T]!E MOS0+3;5?7&EI&EJ=WU=M/14V%Z@)I@N*6)#8\1V01][NOS5P,:`E(>X_P\\^ M"352PV.8.]-K'"3U$ZR?8/TDMWZ$]2.L'V7K%0E_<>%'[L1W[%)N5XK450J: MUZF2=BKAS.M^`PM.@04O<8?&FQR4\3/=H3&[R;[PZ0;*<\^9QDNGE3!+55T^ ML:='E66UL^0/B<,(>CZ:C9$:N(?#CCR;LD>4-LE0K.(FCMIF%`N?J)7Z1(JD M^VF7+MN$HRH-:J^!83'TNG1+:ZG'I5$VN2'B9[(Z/8I5\*&G)[(W@U^*NV+/ M>;><;#]_G,'23H\A92B7OJS#P%A:P)$,W-2-8O#"&2#/)!B594A'`G1^R\?H M>V#3><\L_01<`*LR!\-D`I7I=6[:#`82^7CF)M`B8""9#\4VZ!D82^?#1>!8 M<3":S.3G4)C,YQC;K>=@-)V/+79%EYAZ`H:>=W`HFGX*#GUI`8=I`?<2 M\S#9-&$GSS0/;,FFZX2&]V0TC9N'[C;F8;(T<;2VH74RYJ&]9![D]WW25R6$ MX]4T\&T)V4&7X9-W)35P%SJ&WN8OUW3X"70'[0+\LON4X"3MD^-'ZCW=FX_@ M"`8+,EN`2S`U[\!KB(GGX*G4'7^C4:LVT0_CUR*KA/3,T'.=D"'B4!%S^OT` MO/\@_%1EYF=U4/(5T092VI2OB&8&A7:*14R7]F+@1N#8!.!:PVN^:$>1W@<1X&D#`X3Q0!X&`@^E"3RZ`W)MA M"*[+8Q5G&5[G46K[Z!KND\L@=@S2QWL;_@0]*3`I]"4A^N9/%,R<]&9KA'[6 M(F*>J+B-Z9 MJ,7]F0PMMN3!9O1>X9)_?#V[*S_#WP?:TXO)>*M MG9.KR[/^^]M!SQ#7&-]&)%K,<:)B($A/[/F+6>SF9"3"2(]N&SW2ZSY,"8;F M#'S$\=AS0L!"6PZ#<0P"!F<7`E`,,2HD8.!=0Y*9EH?*X/@M1H1CFQ$T`WJ@_=B<+Z$;ELL\,$ MT>""(.G-YLSN)9=B\J8"291@9;.,SF\:#F@Z6_>E5O#--?S(1D@\^HJA2&*($"1">C[%CL:E3&P0KD7?L5@J2<.E^U,@*XH=S(3 M#&HM*0O5-F4A3`M531FK::RTSDM3Q@(.X"V(Z/J2WCBJ\1=_S3P&"PM,U9YV M1)4_;^*Q2_Z.;SUR,Y4ED^HWQ(ZZI,1JH\L*U64U!F2<3O;(HXW!).2UZ2EY MNYU''GS2K6QV%(W:2L7&(EOJ-*BZ/,54%F&H>C+)^(==U4(T]`Q;JK@4%7ZF M@E\,2\_8*<&=)EYQ5CHZ=XP$I?AA5]*@`0X?WW.7*]Z+BLE,7!!@-P3:'9G\ M-KXQ#H5-_N+XLOGE3+@.`W#O9E'1@^"A#.8_+M-]E1)9]WGW[L,.$5;.,`@V M)J_Z,(P%O%T/'"KBS;SA#2HHDE1Z-BJE4DC?;WLE597".Q;.[WUFKRU\?8N. MS?Y_NO^U7X+%(R:**D$"T7LN_)P0"R;9,5X`/D!7KO<:^8O>!:2DM8MO0\HOGE7)7Z3H(8A16V M66%]V0C_*>P$$U*W#,&D@JNFIC$F_#$S@JM_AN8:G0T?-N%@YZU'Y^T7$*6/TN2&:'5N^4&"%L3T3A3`56GI6HG68I2UE(/M7'"+*E+6R#(KQSB-9>I9,,VZMUD:-Y[2+# MT;Q6<3F:5&D_O(@IA0OZ;Y7^2=^00T7]0JP%(!RKI&)7__DT6M'^B;GRF>+] MNO\D@K2]/&%8#D)R_DXB4O1A;7OR9-]55+0M^C^YNK@>](9X+>3DXK2T'E\R MUNNA[4:+:R]X/P MQ!M6T.IT9;=;[>`U@WI;VNU.@),3LZ4[3&VQJ0)^"SJ76KG)#V2_`@:T/NZX M2$9N;`4+/R:'A_CZ:XEXCA].1H=U=E`ID<7^4YCU#-IXBPT$-O0Z$MB`2+HI M[K4A;:1H';OQ24I$$80491^)Y2 M`_UX1-_5^(85'1;%7QSANU"SC\`#UW?CXGA>)KOA;JF$_16/^S?_T]Z5/D5R M*_G/S%\AL^\]TV0W=/4!#3.>>&!C/+%FA@![WXN==1!]%%#KOJ8/&L+F?]], M'5622G6WOVP,1/15.E)2*@])^=/M+S<79SA)F[4DDHB*/_@&M*2MX?']Z%R[[/S-V3E:O^9 MC6?3!YQ33V)_>H<:N">*KK%+?W7^LO*QF37Y^"']\2+]\72`WQE\Q]J*7M&K MBV'8K0N_/]H;U%G8;77VCR?1OPU/M'_G^OKJ[NSV]L/EQ[U];!ZFP@ MJ^$]R5\H6(#SANBRPB/(>&?S-4Q:2T2FZ."D:'GJF,(K;T+8JL4P;%:,Q)O/ M3[_5V25_/[57\P]MGP<<6SD4S8OXD^ M7D8?SVN\?U5)@[FBH&J1>FNE1RB.,T"KV].%J-+@MA@VI7"8[`_ML_H+&0M[ M=;,(5N@7#F@6BVZ\06.Q?DDOY_C")YG*^*HD,K:;^(?+8BX:=,JD0B`YYK%W M[ZB3>"DV\4[U48'P)OW'Z=U)[ZF(_XMVBYPC_$-"FR$BP-G:O)6'3=/GI=90 M.75Y(3R5]0/UA-B"/^+K*:V3-EI",9Y*E.Z;!.F>.EJ&G-2&),8(JLX[?8_/12RWIHGA6)&N:E(;I#J2M MG9&K0OW,*Y/Z&'6QTL-*-=([#1RJ0E2!Y]3D'%DY`R3D#TGE)D'TA\;!6V5X MMLC7Z;0\1;OZ$R9"F$.:"KPK4*FC)3^?OT7KA_RU)9O["V53'&IED/8W<%6D M@,=LT_5DX//#XZCHT8CQ"83_4V)[&GW#%]JMM5$%EB M<%(ILPU=,=@2A$HM]$`>U[M&ZQ;9-YL%" M!EF$1[=F=##HZKHAC]83EI?<2#%+6CUBEF%_^NV*C7RTB>B`%-OCZT^TV#8= M^C6V7E+VMM7B`R=)2]]'W3=3E2W#"K3B[?+,@D3AS"@P+&WS&`P?K>*\.NO( M"`&]G%XJO6;:\%`Z'>VJ8]7]T?_2<;C^<+7&:NCP2L119K%F07TZ)3,>SS9+ M:L$]`2?02/P^Q5_8P%^A<8$"X>>+L]L+MO+'8S;QOS%*.-2^+;%YPT=2%TF: MB*\XMD[M7]JG#FTE>*WC4J#JI+992C=6[E'LE^/DFGJY:K(4,LK_B;]<]A_\ MO=U?.9O\?61U^&Y=,VN3[5,ZUO2(GJ"_T(4;%V;6[T]2GR'F&,)!0>*E,XQ)Z7C1:=3$_[LEH"=@"^9D#6!?/2[ M_S*AEE:RV)VMMY:BU MMZU*.P4JM5KJE:W3PSIS5NE9[7SK&'IAQ7$^Z1W7VQ3=T#NI]UHFHZ`Z_E$< MO*3#O22N>:D4LFN*5%V^4)30>D4R)DQ\<+!;,R?W$QFEF$LD]L4B0[!<[6FV MU9);D?@:SHDR&%'%+,79KY[\BFVK296=B-GQ.D9Y",9$Q8D-NQZBUC= M!N5+P%2LFWJ7%X?5^XL%>@F[J]D,*YF^2!'"&FRU>&&C&9'?9]^J6#&4\-_N MIKA^6K<:8Z/W"RH)60DWB7:5R9IE1WV<;1CW)XAE*&!0=2M)*W%HM3]'XV.^ MH!@Z"EDS\X>CD*C#J0=%9!1[CS.YF^53ZJV2^8(E/U2/F;$+S9C:A4^!'R$_ M+'=K2:YHTDH,0)#'U9>DT":`V88\SON-/_H<_$9'`)4GA#R%OQQP(FIO4[)> M+M#\,S)?YL]\/E[[1M[S[+RNM00A@\HU.=Q/<+<=>8C&547/Y>P*N]#+TH5& M7627>5ZXS%=[^2]:V>#RWE[TUEE]]H3F'2HZRTR;*J.2N&624<]1$$55<-%%"+X$Z];R2 M0R:**.>*\;R'^L+4-\+_BO@VS6F76T6&YZ8MC87^6OBE+;_L1.Z9^"H=I3!A M5\]UI'\Y-HOHN8IX-1?<(J8LHP%%3DWWA9TF>LS2=^X97U*YA?,_7:&92YNV M]M(7*[.5$T^61Q'QA#F4CK8FJB2+@Y["FL.FL["6L.@OK!&6%@^4/PS?%R%1JRT-U>S<&N/*#!$+/(4)KW'1D?&+J:) M+%G#^"M"B^8#%*$H,D^3Z2JTR"&/*1^A*]JFF*N6O4X1+>(N5R-T?^1:AT-! MF_:_8W'8X;&Y\]BKP@['K8Z,7!=&2YV;&27#>L=9YX[&!4\YC:,8>H_?0-:1 MN#>YPGK'F>C2)]8A)RSC65U)Z-ZY;TI<-+5S;^0(P?I9E_#3D>#VL1;9ZWE' M/"`'W^3=``("2`;E>DVU#&-",NP8>\ILB9)V>B\@P=&)EQL,X2HV1PQA?R1+G9'457PY.GA@7,K8)D:9U M%,>O:$.PLMV0R05$]\O2MMI1FGY1DR7^%B%PBD0 M9(ZV()"YY_V1^K!<^>(CASV0P-T!__0_-A:UIV%1>R$6M:=A47L1%K47PZ+V M(BQJ+P13#N\ZC8%3>Q$XM1>!4WM,NY]4OWE4JTZ`4WL:.+47@5.'";4K7$,, M9D^#7_8TY&7*!`GCIB.`<-01KV,A@&A`O#:;-/5+&4QP>XC#Z<)6P.WAKP"W MAVV!V\,6P>TA#=P>4L#M(3^XO8A%YX":G3#X6#+B_3B8B^0".27Z3,:^%X&T M"`93$Y6CIXC'.2=ME#EDV&@>9T]@'LZXDS2/W1-8GZ@R?['YJDW4J'[7?,V> MJ/(T>B'Z=1/`"Y)(^[)5%VO4$1CCS')]79E=^Q+.Y6XUH"O<*VX%[A>W`O<)VX%X3!RY" ML"AC3$VSS)MI06-JFFS8YS"FIH:6;)VV3DZ[)Y$Q10X!@?UT(UBN05PG&\`X MK:8T]+O114ENG2QJ:^K(.!8HW=?)\W7RZ-PZRV+G6<'),ZLT>686.Z,YVFJF M3IZ'5(,6W:"N1*Y7D^?*TK76>Q)PT$J.-18?2T#DZUS+#3/L9H^!A8H'PL;#A4RX%`A M`PX5,N!0(3\<*KCA4)VU:GBH+!T0-:L3R@*B?LGBCB\%>?%+)5[\8O#&$;_< MIQ7C11%_!BJH*4N,*Z!Q4#%-;C'.:VNU=4ZT[HOX*LC__PIR<-T74?CVX3+W M1<"6[XN`*O=%++)FZ**@/%A4D@<+2U=TV^&*KZZ;3'F0)QXS[@T M5L"8X5M/::0HKAIHK9_?N)H5'0Y`B65.&6DF4]-6J$A(!?+RR@S?,JM#EP6' M;UEI^)9VQW9<5OEQ;/CRQ[ACDCG5L[Y4;0N*"ZUZVW4`]17'Y'RJ4=^R@TA2WAS^$FE_Q[ M%B07#]Y/:*6DVXRC!HJCAAP14L#/5(`C>%\0F9F_(2MW1(%#>O`^I`?O0WKP M/MCA5H+>HG'CD!&\#_S<`X!X$<'[`+++"H\@#]ZG5V.L>-0^V%'[LCUYXM/+ MC+9KO"*V3(YO#P?E\29!0H#IU`+,"0YG'>J'TY="P:JI1611UCD:$& MGT?MTT7;^XS0A=B2SJ5O?$8M9'TVD98"G5SK,")Y>2"2'Y92&ZLL0;XJJ#96 ME=3&RO80NZ%=GJSUU9U$+HVA+B4"#=5`7DFDU=();0N(7TD$V[F2",(KB<"^ M*@6V#_F@/L`!]9%N1DG<;`4Y;(:KBH,^F@BVD#Q<(!LU;EG)!K<&+P/;A18S6XC<],OQ)WR%U!5&+$Q9=CCT.]-YJ1Z.6$%07 M/4RPC:7ZSH5F`EID"%1%,P$M/("`_S-@2R"&EB#,J1CQ3A.]`N$*\L.@-PO- M1+,+BG:+M!WXAZ2NB`APMC9OY6'3='M%:Z@)7@(VFHGT;NG*!LF;O4Z]Q:\6 MZR4!41)'W##!$W@PFP')JV&RA`:X`@P@CR`*."(Q(%T M0)3$/LA"XBC9RPE$)$[Q$H`HZ79Y49^G^F@6]UP:HTU98$ MQV]8+/HO2T8WQ:RG`F)YQ/-3/E.3EP=>@8K`*QDV0SH00%J"Y[2'+_K#)/@6 MR(1O@6W!MX"9T33-+%KY:I4B]B;MX67:PW-ZJ`N^0O`PD`<>QM"!*9%FAM2F MF;$U>!C8%CP,;`L>!K8$#P/I\##Z8S-ME6A$J`P/`T9H.3CA8=QZ684;0@P> M!I+A82`)M`5B\#`0@X>!&#P,),/#Y*C),D^*1$[QJ\4JP,.D9*:+OTIG1GN< MBZE85B7LE9R7[E_7.ZY[!%'3/#+NV(QCQ^SO$Q2'E%'Y<&R@*HX-;!O'!O+B MV'`_)"DMP9&DE47A;&_3=5'6<^%)IZ/B0`(J3DX'WM(_8:2EK?HB4`Y"+%%\ M(R)JNNTC=<]+#ER=?WWX^-:1,`?N"PZLA'W)4X\8PJXO=`"?P> MJ(K?`\7Q>Z`B?@\4QN]Q:JP0`.9D%"%"WWND0"%"G?M*, MG^O)"0@$Q0"!8*N`0)`."`0)@$"AYY:/Y"T!`ED^6"8@$&P+$`AR`@)!44"@ M5,NY!!P"N`&!DJRV.$!"^II*=`O``1*[[I7L;9'(F<+@$!0'1`(J@,"065`($@"!!(/U/-*+G@%0""0 MV#;:PJP`!-+X-FV91IY",7QU;6DX]-!U0"`P`8%`1_,!'1`(=$`@T`&!P`0$ MBA?Q:BXX1TQ91@/:@$!1I[D`@1)F?$GE%L[_=(5F+NW;VDM?K,]63GD!@2`G M()"^)Z`DBX.>PIJC*B`05`0$*`H(!"F`0/'-SF*TE`,$@DQ`("@& M"&2[.6?\JO95'37&ZMLE7147K`[,Y>8DA"`H@1`$91&"(!="D-$ZZN'Q;*G( M+@D@])1U1.>IX(&@ITH'@I[LDVO'IYV3'.?C5K,'`D,0YX'HGC;"!/):_#Q0 M[[3==)T'XCGB];7U.)DNOX._;K+S]]NL$O MH4F`.NCBX_>??F"#%_9#_RD8L9O99NR_L'>3A_YB%/QSTU^-ALOU`;[["YS3 M!_YH_9[(_!FM+G_<^._@B9&+C`J&\('80)6\JW[=/2C%>YLL;M@4Y+U-)=[; MV+QP=-KNY.*]8+A0O!<_B]9S\1[/$:_/B!;L\5.:O?"4)AD7TM3%_@\FM(", M8]I'8F+\V,\=W_5/R5&F=Y+\:88CS[0&C/[ MDRGZ6&,3_MK`;VB)2?FF6#%O)G9P'TCV//_U\E9.HS(<\YPUAL\%.>:Y$L<\ M&R-X?-I":14_OM@+&48B;*D0'L*GNJ)M`8]XI=LY[70IB"7Y,!WJ20(1M?BFP8DB8N/-P3[0?\0.H\8UW_P?@:^H %3Z_%``#D ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 10:20:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 092A014F80 for ; Mon, 18 Oct 1999 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA88722; Mon, 18 Oct 1999 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2E68214A1B; Mon, 18 Oct 1999 10:15:11 -0700 (PDT) Message-Id: <19991018171511.2E68214A1B@hub.freebsd.org> Date: Mon, 18 Oct 1999 10:15:11 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14402: Update port: devel/gide to 0.1.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14402 >Category: ports >Synopsis: Update port: devel/gide to 0.1.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 10:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 3.3-RELEASE i386 >Organization: >Environment: >Description: * Updated version 0.1.2 to 0.1.5 New file: patches/patch-aj patches/patch-ak patches/patch-al patches/patch-am patches/patch-an patches/patch-ao patches/patch-ap patches/patch-aq patches/patch-ar patches/patch-as patches/patch-at Remove file: patches/patch-ac >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/gide/Makefile devel/gide/Makefile --- /usr/ports/devel/gide/Makefile Wed Aug 25 21:15:08 1999 +++ devel/gide/Makefile Tue Oct 19 01:59:54 1999 @@ -1,20 +1,20 @@ # New ports collection makefile for: gIDE -# Version required: 0.1.2 +# Version required: 0.1.5 # Date created: 29 Jul 1998 # Whom: rom # # $FreeBSD: ports/devel/gide/Makefile,v 1.27 1999/08/25 05:48:03 obrien Exp $ # -DISTNAME= gIDE-0.1.2 -PKGNAME= gide-0.1.2 +DISTNAME= gIDE-0.1.5 +PKGNAME= gide-0.1.5 CATEGORIES= devel gnome MASTER_SITES= http://gide.gdev.net/ \ http://gide.pn.org/ MAINTAINER= ports@FreeBSD.org -LIB_DEPENDS= gnomeui.2:${PORTSDIR}/x11/gnomelibs \ +LIB_DEPENDS= gnomeui.3:${PORTSDIR}/x11/gnomelibs \ guile.4:${PORTSDIR}/lang/guile GTK_CONFIG?= ${X11BASE}/bin/gtk12-config @@ -22,18 +22,22 @@ FETCH_BEFORE_ARGS= -b USE_X_PREFIX= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome \ - --with-gnome=${PREFIX} +USE_GMAKE= yes +USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ GTK_CONFIG="${GTK_CONFIG}" \ LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ + --datadir=${PREFIX}/share/gnome \ + --with-gnome=${PREFIX} MAN1= gide.1 gdbio.1 -pre-install: - @${MKDIR} ${PREFIX}/share/gnome/gIDE/extra +post-patch: + @${PERL} -pi -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/src/*.c + @${PERL} -pi -e 's|%%X11BASE%%|${X11BASE}|g' ${WRKSRC}/src/*.c + +post-install: + ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib .include diff -urN /usr/ports/devel/gide/files/md5 devel/gide/files/md5 --- /usr/ports/devel/gide/files/md5 Thu Jun 24 21:35:14 1999 +++ devel/gide/files/md5 Fri Oct 15 20:30:28 1999 @@ -1 +1 @@ -MD5 (gIDE-0.1.2.tar.gz) = adc38514d2a925b7d053f29917d9028d +MD5 (gIDE-0.1.5.tar.gz) = 6b545ee64c5d12b163d3c994de6b4d3f diff -urN /usr/ports/devel/gide/patches/patch-ac devel/gide/patches/patch-ac --- /usr/ports/devel/gide/patches/patch-ac Thu Jun 24 21:35:14 1999 +++ devel/gide/patches/patch-ac Thu Jan 1 09:00:00 1970 @@ -1,25 +0,0 @@ ---- gide.c.orig Thu Apr 22 09:56:05 1999 -+++ gide.c Wed Jun 23 16:11:39 1999 -@@ -256,17 +256,17 @@ - #endif - - cfg->tab_width = 4; -- cfg->incpath = (gchar *) realloc( cfg->incpath, 40 ); -- strcpy( cfg->incpath, "/usr/include:/usr/local/include" ); -+ cfg->incpath = (gchar *) realloc( cfg->incpath, 60 ); -+ strcpy( cfg->incpath, "/usr/include:/usr/local/include:/usr/X11R6/include" ); - cfg->ccopt = (gchar *) realloc( cfg->ccopt, 2 ); - strcpy( cfg->ccopt, "" ); -- cfg->libpath = (gchar *) realloc( cfg->libpath, 40 ); -- strcpy( cfg->libpath, "/lib:/usr/lib:/usr/local/lib" ); -+ cfg->libpath = (gchar *) realloc( cfg->libpath, 60 ); -+ strcpy( cfg->libpath, "/usr/lib:/usr/local/lib:/usr/X11R6/lib" ); - cfg->ldopt = (gchar *) realloc( cfg->ldopt, 2 ); - strcpy( cfg->ldopt, "" ); - - cfg->bash = (gchar *) realloc( cfg->bash, 20 ); -- strcpy( cfg->bash, "/bin/bash" ); -+ strcpy( cfg->bash, "/bin/sh" ); - - cfg->xterm = (gchar *) realloc( cfg->xterm, 10 ); - strcpy( cfg->xterm, "xterm" ); diff -urN /usr/ports/devel/gide/patches/patch-ai devel/gide/patches/patch-ai --- /usr/ports/devel/gide/patches/patch-ai Thu Sep 9 21:06:12 1999 +++ devel/gide/patches/patch-ai Mon Oct 18 22:06:48 1999 @@ -1,23 +1,18 @@ ---- Makefile.in.orig Sat Jun 19 11:10:33 1999 -+++ Makefile.in Wed Sep 8 15:40:09 1999 -@@ -190,7 +190,7 @@ - $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) - cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile - --Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) -+Makefile: $(top_builddir)/config.status $(BUILT_SOURCES) - cd $(top_builddir) \ +--- Makefile.in.orig Fri Oct 8 00:40:37 1999 ++++ Makefile.in Mon Oct 18 22:06:39 1999 +@@ -151,10 +151,9 @@ && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status -@@ -198,7 +198,6 @@ - cd $(srcdir) && $(ACLOCAL) + $(ACLOCAL_M4): configure.in acinclude.m4 +- cd $(srcdir) && $(ACLOCAL) config.status: $(srcdir)/configure - $(SHELL) ./config.status --recheck ++ $(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) cd $(srcdir) && $(AUTOCONF) -@@ -330,8 +329,8 @@ +@@ -277,8 +276,8 @@ distcheck: dist -rm -rf $(distdir) GZIP=$(GZIP) $(TAR) zxf $(distdir).tar.gz @@ -28,7 +23,7 @@ dc_install_base=`cd $(distdir)/=inst && pwd`; \ cd $(distdir)/=build \ && ../configure --srcdir=.. --prefix=$$dc_install_base \ -@@ -355,7 +354,7 @@ +@@ -302,7 +301,7 @@ -rm -rf $(distdir) distdir: $(DISTFILES) -rm -rf $(distdir) @@ -37,19 +32,19 @@ -chmod 777 $(distdir) here=`cd $(top_builddir) && pwd`; \ top_distdir=`cd $(distdir) && pwd`; \ -@@ -370,7 +369,7 @@ - || cp -p $$d/$$file $(distdir)/$$file; \ +@@ -318,7 +317,7 @@ done - --DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :) -+DEPS_MAGIC := $(shell mkdir -p .deps > /dev/null 2>&1 || :) - - -include $(DEP_FILES) - -@@ -464,12 +463,12 @@ - LIBS += $(GTK_LIBS) $(X_LIBS) + for subdir in $(SUBDIRS); do \ + test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ || mkdir -p $(distdir)/$$subdir \ + || exit 1; \ + chmod 777 $(distdir)/$$subdir; \ + (cd $$subdir && $(MAKE) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \ +@@ -404,12 +403,12 @@ install-pkgdataDATA: + rm -rf $(pkgdatadir) - mkdir $(pkgdatadir) - mkdir $(pkgdatadir)/extra + mkdir -p $(pkgdatadir) diff -urN /usr/ports/devel/gide/patches/patch-aj devel/gide/patches/patch-aj --- /usr/ports/devel/gide/patches/patch-aj Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-aj Mon Oct 18 20:19:50 1999 @@ -0,0 +1,13 @@ +--- src/gI_document.c.orig Mon Oct 18 19:48:54 1999 ++++ src/gI_document.c Mon Oct 18 19:56:06 1999 +@@ -41,8 +41,8 @@ + #include "gI_menus.h" + + #ifdef HAVE_GTKTEXT_PATCH +-#include +-#include ++#include "GtkSCText/gtksctext.h" ++#include "GtkEditor/gtkeditor/gtkeditor.h" + #endif + + /* externs */ diff -urN /usr/ports/devel/gide/patches/patch-ak devel/gide/patches/patch-ak --- /usr/ports/devel/gide/patches/patch-ak Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-ak Mon Oct 18 20:01:23 1999 @@ -0,0 +1,13 @@ +--- src/gI_file.c.orig Mon Oct 18 19:48:54 1999 ++++ src/gI_file.c Mon Oct 18 19:57:47 1999 +@@ -38,8 +38,8 @@ + #include "gI_project.h" + + #ifdef HAVE_GTKTEXT_PATCH +-#include +-#include ++#include "GtkSCText/gtksctext.h" ++#include "GtkEditor/gtkeditor/gtkeditor.h" + #include "gI_globpatterns.h" + #endif + diff -urN /usr/ports/devel/gide/patches/patch-al devel/gide/patches/patch-al --- /usr/ports/devel/gide/patches/patch-al Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-al Mon Oct 18 20:01:33 1999 @@ -0,0 +1,11 @@ +--- src/gI_globpatterns.h.orig Thu Jul 1 04:11:42 1999 ++++ src/gI_globpatterns.h Mon Oct 18 19:58:28 1999 +@@ -21,7 +21,7 @@ + #ifndef GLOB_PATTERNS_H + #define GLOB_PATTERNS_H + +-#include ++#include "GtkEditor/gtkeditor/gtkeditor.h" + #include "gI_hilite.h" + + /* gI_globpatterns -- used for associating filenames with highlight diff -urN /usr/ports/devel/gide/patches/patch-am devel/gide/patches/patch-am --- /usr/ports/devel/gide/patches/patch-am Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-am Mon Oct 18 21:12:56 1999 @@ -0,0 +1,11 @@ +--- src/gI_guilesupport.c.orig Mon Oct 18 20:23:57 1999 ++++ src/gI_guilesupport.c Mon Oct 18 21:12:27 1999 +@@ -20,7 +20,7 @@ + #ifdef HAVE_LIBGUILE + + #include +-#include ++#include "GtkEditor/gtkeditor/gtkeditor.h" + + #include + #include diff -urN /usr/ports/devel/gide/patches/patch-an devel/gide/patches/patch-an --- /usr/ports/devel/gide/patches/patch-an Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-an Mon Oct 18 20:01:42 1999 @@ -0,0 +1,11 @@ +--- src/gI_hilite.c.orig Mon Oct 18 19:48:54 1999 ++++ src/gI_hilite.c Mon Oct 18 19:59:13 1999 +@@ -21,7 +21,7 @@ + + #include + #include +-#include ++#include "GtkEditor/gtkeditor/gtkeditor.h" + + #include + #include diff -urN /usr/ports/devel/gide/patches/patch-ao devel/gide/patches/patch-ao --- /usr/ports/devel/gide/patches/patch-ao Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-ao Mon Oct 18 20:01:53 1999 @@ -0,0 +1,11 @@ +--- src/gI_hilite.h.orig Mon Jul 5 00:58:27 1999 ++++ src/gI_hilite.h Mon Oct 18 19:59:58 1999 +@@ -24,7 +24,7 @@ + + #include + #include +-#include ++#include "GtkEditor/gtkeditor/gtkeditor.h" + + typedef struct _gI_HilitePattern gI_HilitePattern; + struct _gI_HilitePattern diff -urN /usr/ports/devel/gide/patches/patch-ap devel/gide/patches/patch-ap --- /usr/ports/devel/gide/patches/patch-ap Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-ap Mon Oct 18 20:59:32 1999 @@ -0,0 +1,11 @@ +--- src/gI_prefs.c.orig Mon Oct 18 20:23:57 1999 ++++ src/gI_prefs.c Mon Oct 18 20:58:04 1999 +@@ -39,7 +39,7 @@ + #endif + + #ifdef HAVE_GTKTEXT_PATCH +-#include ++#include "GtkSCText/gtksctext.h" + #include "gI_hilite.h" + #endif + diff -urN /usr/ports/devel/gide/patches/patch-aq devel/gide/patches/patch-aq --- /usr/ports/devel/gide/patches/patch-aq Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-aq Mon Oct 18 21:13:49 1999 @@ -0,0 +1,11 @@ +--- src/gI_search.c.orig Mon Oct 18 20:23:58 1999 ++++ src/gI_search.c Mon Oct 18 21:03:23 1999 +@@ -32,7 +32,7 @@ + #include "regex.h" + #endif + #ifdef HAVE_GTKTEXT_PATCH +-#include ++#include "GtkSCText/gtksctext.h" + #endif + + #include "structs.h" diff -urN /usr/ports/devel/gide/patches/patch-ar devel/gide/patches/patch-ar --- /usr/ports/devel/gide/patches/patch-ar Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-ar Mon Oct 18 20:22:22 1999 @@ -0,0 +1,25 @@ +--- src/gide.c.orig Tue Aug 17 00:06:24 1999 ++++ src/gide.c Mon Oct 18 20:17:29 1999 +@@ -292,17 +292,17 @@ + #endif + + cfg->tab_width = 4; +- cfg->incpath = (gchar *) realloc( cfg->incpath, 40 ); +- strcpy( cfg->incpath, "/usr/include:/usr/local/include" ); ++ cfg->incpath = (gchar *) realloc( cfg->incpath, 60 ); ++ strcpy( cfg->incpath, "/usr/include:%%LOCALBASE%%/include:%%X11BASE%%/include" ); + cfg->ccopt = (gchar *) realloc( cfg->ccopt, 2 ); + strcpy( cfg->ccopt, "" ); +- cfg->libpath = (gchar *) realloc( cfg->libpath, 40 ); +- strcpy( cfg->libpath, "/lib:/usr/lib:/usr/local/lib" ); ++ cfg->libpath = (gchar *) realloc( cfg->libpath, 60 ); ++ strcpy( cfg->libpath, "/usr/lib:%%LOCALBASE%%/lib:%%X11BASE%%/lib" ); + cfg->ldopt = (gchar *) realloc( cfg->ldopt, 2 ); + strcpy( cfg->ldopt, "" ); + + cfg->bash = (gchar *) realloc( cfg->bash, 20 ); +- strcpy( cfg->bash, "/bin/bash" ); ++ strcpy( cfg->bash, "/bin/sh" ); + + cfg->xterm = (gchar *) realloc( cfg->xterm, 10 ); + strcpy( cfg->xterm, "xterm" ); diff -urN /usr/ports/devel/gide/patches/patch-as devel/gide/patches/patch-as --- /usr/ports/devel/gide/patches/patch-as Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-as Mon Oct 18 20:02:08 1999 @@ -0,0 +1,11 @@ +--- src/structs.h.orig Mon Jul 5 00:58:27 1999 ++++ src/structs.h Mon Oct 18 20:00:32 1999 +@@ -26,7 +26,7 @@ + /* Structs for gIDE */ + + #ifdef HAVE_GTKTEXT_PATCH +-#include ++#include "GtkEditor/gtkeditor/gtkeditor.h" + #endif + + /* defines */ diff -urN /usr/ports/devel/gide/patches/patch-at devel/gide/patches/patch-at --- /usr/ports/devel/gide/patches/patch-at Thu Jan 1 09:00:00 1970 +++ devel/gide/patches/patch-at Mon Oct 18 20:43:35 1999 @@ -0,0 +1,11 @@ +--- src/GtkEditor/gtkeditor/gtkeditor.h.orig Fri Jun 4 15:53:30 1999 ++++ src/GtkEditor/gtkeditor/gtkeditor.h Mon Oct 18 20:42:55 1999 +@@ -23,7 +23,7 @@ + #define __GTK_EDITOR_H__ + + #include +-#include ++#include "../../GtkSCText/gtksctext.h" + + + #ifdef __cplusplus diff -urN /usr/ports/devel/gide/pkg/PLIST devel/gide/pkg/PLIST --- /usr/ports/devel/gide/pkg/PLIST Mon Jun 7 21:09:50 1999 +++ devel/gide/pkg/PLIST Mon Oct 18 21:36:23 1999 @@ -1,5 +1,19 @@ bin/gdbio bin/gide +include/gtksctext.h +include/gtkeditor/gtkeditor.h +include/gtkeditor/gtkhint.h +lib/libgtkeditor.a +lib/libgtkeditor.so +lib/libgtkeditor.so.0 +lib/libgtksctext.a +lib/libgtksctext.so +lib/libgtksctext.so.0 +lib/libregex.a +lib/libregex.so +lib/libregex.so.0 +@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B +@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R share/gnome/gIDE/extra/README share/gnome/gIDE/extra/compile_sets share/gnome/gIDE/extra/functions.highlight >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 10:23:52 1999 Delivered-To: freebsd-ports@freebsd.org Received: from kleopatra.acc.umu.se (kleopatra.acc.umu.se [130.239.18.150]) by hub.freebsd.org (Postfix) with ESMTP id F0D8B14C33 for ; Mon, 18 Oct 1999 10:23:43 -0700 (PDT) (envelope-from saska@acc.umu.se) Received: from shaka.acc.umu.se (saska@shaka-fddi.acc.umu.se [192.168.18.148]) by kleopatra.acc.umu.se (8.9.3/8.9.3) with ESMTP id TAA16748 for ; Mon, 18 Oct 1999 19:23:42 +0200 Received: (from saska@localhost) by shaka.acc.umu.se (8.9.3/8.9.3) id TAA04497 for freebsd-ports@freebsd.org; Mon, 18 Oct 1999 19:23:41 +0200 (MET DST) Date: Mon, 18 Oct 1999 19:23:41 +0200 From: Markus Holmberg To: freebsd-ports@freebsd.org Subject: postfix not installing startup script in ${PREFIX}/etc/rc.d ? Message-ID: <19991018192340.A4466@shaka.acc.umu.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.7i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It seems like the postfix port doesn't install any startup script in ${PREFIX}/etc/rc.d, which means it has to be brought up manually with "postfix start" each time you reboot (unless you make your own script of course :)). The reason I'm asking is because this port is so "big" (as in widely used) that this seems quite unlikely to be the case, so I'd just like to know what I missed :). (Mailing list searches gave no results.) Just wondering, did I miss something? Shouldn't the port throw this kind of script in? (into /usr/local/etc/rc.d) For example: #!/bin/sh [ -x /usr/local/sbin/postfix ] && /usr/local/sbin/postfix && echo -n ' postfix' Regards, Markus. -- Markus Holmberg | Give me UNIX or give me a typewriter. saska@acc.umu.se | http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 10:30: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 163C314E13 for ; Mon, 18 Oct 1999 10:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA89454; Mon, 18 Oct 1999 10:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7654B14A2D; Mon, 18 Oct 1999 10:28:20 -0700 (PDT) Message-Id: <19991018172820.7654B14A2D@hub.freebsd.org> Date: Mon, 18 Oct 1999 10:28:20 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14404: Update port: japanese/k12 to 1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14404 >Category: ports >Synopsis: Update port: japanese/k12 to 1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 10:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 3.3-RELEASE i386 >Organization: >Environment: >Description: * Updated version 1.0 to 1.1 NOTE: I have given permission to send this PR from maintainer. >How-To-Repeat: >Fix: diff -urN /usr/ports/japanese/k12/Makefile japanese/k12/Makefile --- /usr/ports/japanese/k12/Makefile Wed Aug 25 21:17:38 1999 +++ japanese/k12/Makefile Mon Oct 18 19:30:46 1999 @@ -1,5 +1,5 @@ # New ports collection makefile for: k12font -# Version required: 1.0 +# Version required: 1.1 # Date created: 24 June 1996 # Whom: Mita Yoshio # @@ -7,19 +7,26 @@ # DISTNAME= kaname_k12_bdf -PKGNAME= ja-kaname12-1.0 +PKGNAME= ja-kaname12-1.1 CATEGORIES= japanese x11-fonts -MASTER_SITES= ${MASTER_SITE_PORTS_JP} +MASTER_SITES= ${MASTER_SITE_PORTS_JP} \ + http://www.din.or.jp/~storm/fonts/ +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} knm_new_linux.tar.gz MAINTAINER= mita@jp.FreeBSD.org USE_X_PREFIX= yes -NO_WRKSUBDIR= yes + +WRKSRC= ${WRKDIR}/fonts +EXTRACT_ONLY= knm_new_linux.tar.gz FONTSDIR= lib/X11/fonts/local MAKE_ENV= FONTSDIR=${FONTSDIR} PLIST_SUB= FONTSDIR=${FONTSDIR} +post-extract: + @${TAR} -C ${WRKSRC} -xzf ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} + pre-install: @${SETENV} PKG_PREFIX=${PREFIX} \ ${SH} ${PKGDIR}/REQ ${PKGNAME} INSTALL @@ -28,8 +35,9 @@ @(cd ${PREFIX}/${FONTSDIR} ; mkfontdir) .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/k12 - @${CP} ${WRKSRC}/readme.kaname_bdf ${PREFIX}/share/doc/k12 - @${CP} ${WRKSRC}/doc.orig/* ${PREFIX}/share/doc/k12 + @${INSTALL_DATA} ${WRKSRC}/readme ${PREFIX}/share/doc/k12 + @${INSTALL_DATA} ${WRKSRC}/readme.kaname_bdf ${PREFIX}/share/doc/k12 + @${INSTALL_DATA} ${WRKSRC}/doc.orig/* ${PREFIX}/share/doc/k12 .endif .include diff -urN /usr/ports/japanese/k12/files/md5 japanese/k12/files/md5 --- /usr/ports/japanese/k12/files/md5 Tue Apr 1 00:00:00 1997 +++ japanese/k12/files/md5 Mon Oct 18 04:33:48 1999 @@ -1 +1,2 @@ MD5 (kaname_k12_bdf.tar.gz) = e0a103ceeffe0aa1c5670458f47452b3 +MD5 (knm_new_linux.tar.gz) = bc07cc6e93046ae4f53c3da3b49f5971 diff -urN /usr/ports/japanese/k12/patches/patch-aa japanese/k12/patches/patch-aa --- /usr/ports/japanese/k12/patches/patch-aa Fri Nov 20 23:26:00 1998 +++ japanese/k12/patches/patch-aa Mon Oct 18 19:38:24 1999 @@ -1,13 +1,17 @@ -*** /dev/null Sat Jul 6 10:38:40 1996 ---- Makefile Sat Jul 6 12:25:35 1996 +*** /dev/null Wed Oct 13 00:00:00 1999 +--- Makefile Wed Oct 13 00:00:00 1999 *************** *** 0 **** ---- 1,8 ---- +--- 1,12 ---- + all: + bdftopcf knmhn12x.bdf > knmhn12x.pcf -+ bdftopcf knmzn12x.bdf > knmzn12x.pcf -+ gzip *.pcf ++ gzip -9 -nf knmhn12x.pcf + install: + if [ ! -d ${PREFIX}/${FONTSDIR} ] ; then \ -+ mkdir -p ${PREFIX}/X11R6/${FONTSDIR} ; fi -+ cp knmhn12x.pcf.gz knmzn12x.pcf.gz ${PREFIX}/${FONTSDIR} ++ ${MKDIR} ${PREFIX}/${FONTSDIR} ; fi ++ ${BSD_INSTALL_DATA} kaname-latin1.pcf.gz ${PREFIX}/${FONTSDIR} ++ ${BSD_INSTALL_DATA} knm12p.pcf.gz ${PREFIX}/${FONTSDIR} ++ ${BSD_INSTALL_DATA} knm12pb.pcf.gz ${PREFIX}/${FONTSDIR} ++ ${BSD_INSTALL_DATA} knmhn12x.pcf.gz ${PREFIX}/${FONTSDIR} ++ ${BSD_INSTALL_DATA} knmzn12x.pcf.gz ${PREFIX}/${FONTSDIR} ++ ${BSD_INSTALL_DATA} knmzn12xb.pcf.gz ${PREFIX}/${FONTSDIR} diff -urN /usr/ports/japanese/k12/pkg/DESCR japanese/k12/pkg/DESCR --- /usr/ports/japanese/k12/pkg/DESCR Fri Nov 20 23:26:00 1998 +++ japanese/k12/pkg/DESCR Mon Oct 18 04:40:47 1999 @@ -1,12 +1,22 @@ Japanese 12 dot font named `kanamecho'. +kaname-latin1.pcf:-MNKANAME-Fixed-Medium-R-Normal--12-110-75-75-C-60-\ +ISO8859-1 knmhn12x.pcf:-MNKANAME-Fixed-Medium-R-Normal--12-110-75-75-C-60-\ JISX0201.1976-0 +knm12p.pcf:-MNKANAME-Fixed-Medium-R-Normal--12-110-75-75-P-120-\ +JISX0208.1983-0 +knm12pb.pcf:-MNKANAME-Fixed-Bold-R-Normal--12-110-75-75-P-120-\ +JISX0208.1983-0 knmzn12x.pcf:-MNKANAME-Fixed-Medium-R-Normal--12-110-75-75-C-120-\ JISX0208.1983-0 +knmzn12xb.pcf:-MNKANAME-Fixed-Bold-R-Normal--12-110-75-75-C-120-\ +JISX0208.1983-0 -You can also use 'k12' as an alias for knmzn12x.pcf, -and 'r12' for knmhn12x.pcf. +You can also use 'k12' as an alias for knmzn12x.pcf, 'k12b' for knmzn12xb.pcf, +'r12' for knmhn12x.pcf, and 'a12' for kaname-latin1.pcf. Simple usage: - % kterm -fn r12 -fk k12 -fl r12 - % mule -fn r12 + % kterm -fn a12 -fk k12 -fl r12 + % mule -fn r12 + +WWW: http://www.din.or.jp/~storm/fonts/ diff -urN /usr/ports/japanese/k12/pkg/PLIST japanese/k12/pkg/PLIST --- /usr/ports/japanese/k12/pkg/PLIST Fri Nov 20 23:26:00 1998 +++ japanese/k12/pkg/PLIST Mon Oct 18 04:42:17 1999 @@ -1,7 +1,12 @@ +%%FONTSDIR%%/kaname-latin1.pcf.gz +%%FONTSDIR%%/knm12p.pcf.gz +%%FONTSDIR%%/knm12pb.pcf.gz %%FONTSDIR%%/knmhn12x.pcf.gz %%FONTSDIR%%/knmzn12x.pcf.gz +%%FONTSDIR%%/knmzn12xb.pcf.gz share/doc/k12/gijutsu-siryou.doc share/doc/k12/kaname.doc +share/doc/k12/readme share/doc/k12/readme.kaname_bdf share/doc/k12/readme.knm @exec cd %D/%%FONTSDIR%% ; %D/bin/mkfontdir diff -urN /usr/ports/japanese/k12/pkg/REQ japanese/k12/pkg/REQ --- /usr/ports/japanese/k12/pkg/REQ Fri Nov 20 23:26:00 1998 +++ japanese/k12/pkg/REQ Mon Oct 18 19:41:22 1999 @@ -23,7 +23,9 @@ TMPFILE=/tmp/install-fonts-alias-$$ cat << EOF > ${TMPFILE} k12 -mnkaname-fixed-medium-r-normal--12-110-75-75-c-120-jisx0208.1983-0 +k12b -mnkaname-fixed-bold-r-normal--12-110-75-75-c-120-jisx0208.1983-0 r12 -mnkaname-fixed-medium-r-normal--12-110-75-75-c-60-jisx0201.1976-0 +a12 -mnkaname-fixed-medium-r-normal--12-110-75-75-c-60-iso8859-1 EOF echo "Updating ${FONTDIR}/fonts.alias" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 10:40: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC62514F94 for ; Mon, 18 Oct 1999 10:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA90123; Mon, 18 Oct 1999 10:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 77E9814CF7; Mon, 18 Oct 1999 10:34:00 -0700 (PDT) Message-Id: <19991018173400.77E9814CF7@hub.freebsd.org> Date: Mon, 18 Oct 1999 10:34:00 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14405: Update port: lang/cim Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14405 >Category: ports >Synopsis: Update port: lang/cim >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 10:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 3.3-RELEASE i386 >Organization: >Environment: >Description: * Removed outdated master sites * Added WWW: line into pkg/DESCR >How-To-Repeat: >Fix: diff -urN /usr/ports/lang/cim/Makefile lang/cim/Makefile --- /usr/ports/lang/cim/Makefile Tue Aug 31 21:08:26 1999 +++ lang/cim/Makefile Tue Oct 19 02:31:26 1999 @@ -1,5 +1,5 @@ -# New ports collection makefile for: cim -# Version required: 2.10 +# New ports collection makefile for: cim +# Version required: 3.29 # Date created: 21 Sept 1996 # Whom: giffunip # @@ -8,10 +8,7 @@ DISTNAME= cim-3.29 CATEGORIES= lang -MASTER_SITES= ftp://ftp.ifi.uio.no/pub/cim/ \ - ftp://ftp.fenk.wau.nl/pub/lang/simula/compilers/cim/ \ - ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= devel/lang/simula +MASTER_SITES= ftp://ftp.ifi.uio.no/pub/cim/ MAINTAINER= ports@FreeBSD.org diff -urN /usr/ports/lang/cim/pkg/DESCR lang/cim/pkg/DESCR --- /usr/ports/lang/cim/pkg/DESCR Wed Dec 4 00:00:00 1996 +++ lang/cim/pkg/DESCR Mon Oct 18 23:13:47 1999 @@ -11,3 +11,5 @@ Jan Rune Holmevik E-mail: jan@utri.no + +WWW: http://www.ifi.uio.no/~cim/cim.html >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 10:42:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from saturn.psn.net (saturn.psn.net [207.211.58.15]) by hub.freebsd.org (Postfix) with ESMTP id 538B414E40 for ; Mon, 18 Oct 1999 10:42:45 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from shadow.blackdawn.com (5042-243.008.popsite.net [209.224.140.243]) by saturn.psn.net (8.9.3/8.9.3) with ESMTP id KAA03646; Mon, 18 Oct 1999 10:54:54 -0700 (MST) Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id NAA79081; Mon, 18 Oct 1999 13:42:37 -0400 (EDT) (envelope-from will) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <4.1.19991018075456.0096a9e0@mail.metronet.com> Date: Mon, 18 Oct 1999 13:42:37 -0400 (EDT) Reply-To: Will Andrews From: Will Andrews To: Jim Manley Subject: RE: StarOffice 5.1 Cc: freebsd-ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18-Oct-99 Jim Manley wrote: > Is there any plan to update the ports/editors collection for StarOffice 5.1? Maybe if they give out the source. Else, I don't think so. -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 11: 0:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DD53614CC7 for ; Mon, 18 Oct 1999 11:00:14 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA91598 for freebsd-ports@freebsd.org; Mon, 18 Oct 1999 11:00:14 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 18 Oct 1999 11:00:14 -0700 (PDT) Message-Id: <199910181800.LAA91598@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1999/10/14] ports/14343ports [patch] wget-1.5.3 failed to continue ret 1 problem total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1999/03/18] ports/10665ports ports/graphics/sane needs access to /dev/ f [1999/04/07] ports/11003ports wmcdplay is not capable of playing an AUD o [1999/06/01] ports/11977ports Eterm port is unable to access .Xauthorit o [1999/06/15] ports/12234ports imlib-1.9.4/gdk_imlib/rend.c has syntax e o [1999/07/06] ports/12541ports gtk installs itself where it can't be fou o [1999/07/14] ports/12637ports patch to help multi-byte support in windo o [1999/07/20] ports/12714ports dylan port doesn't compile o [1999/08/03] ports/12949ports Fix for rtsp_proxy port. Patches from Jon o [1999/08/15] ports/13170ports new port: UW-Imap with maildir and qmail o [1999/08/26] ports/13396ports Diskusage-1.00 Port o [1999/08/30] ports/13471ports New port for UdmSearch www search engine o [1999/09/12] ports/13714ports netatalk-1.4b2+asun2.1.3 fails chmod g+s o [1999/09/24] ports/13931ports socks5 port is out of sync. 1.0r9 is no l o [1999/09/30] ports/14045ports Upgraded Xmms to version 0.9.5.1 o [1999/10/08] ports/14213ports opendx port does not run o [1999/10/12] ports/14283ports apache13 htpasswd dumps core o [1999/10/12] ports/14292ports tkfont does not work with XiG X-server o [1999/10/14] ports/14328ports update pipsecd port to version 19991014 o [1999/10/14] ports/14340ports update ports: gd 1.6.3 -> 1.7.3 o [1999/10/17] ports/14386ports new ports o [1999/10/17] ports/14387ports new ports o [1999/10/17] ports/14388ports new ports o [1999/10/18] ports/14397ports Apple's RTSP proxy does not connect UDP p o [1999/10/18] ports/14398ports NEW PORT: mod_dav module for Apache o [1999/10/18] ports/14400ports update ports: t1lib to 0.9.2 26 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac a [1998/11/25] ports/8864 ports useradd - system V compatible implementat a [1999/01/24] ports/9657 ports Progressive Networks' RealAudio proxy por o [1999/02/07] ports/9954 ports new port devel/ACE o [1999/02/10] ports/10007ports Port of the mercury compiler version 0.8 o [1999/02/16] ports/10124ports UNIX|STAT pr submission failed to include o [1999/03/07] ports/10477ports The fakemail in lib-src fails to link (ne o [1999/03/10] ports/10532ports Port of GNU Pascal o [1999/03/16] ports/10634ports Update the hylafax port to do a client in o [1999/03/26] ports/10813ports crossgo32 brokeness f [1999/03/28] ports/10844ports New port: adagdb o [1999/04/02] ports/10916ports new port biology/molmol again o [1999/04/08] ports/11029ports Configure scripts for non ported applicat o [1999/04/08] ports/11034ports New ports of crazywwwboardle o [1999/05/11] ports/11652ports New port (net/dictd) o [1999/05/24] ports/11879ports dclock's "-miltime" option and "*miltime" o [1999/05/31] ports/11963ports should update the ocaml-tk module and ins o [1999/06/02] ports/12001ports wmcdplay 1.0Beta1 05/09/1998 sometimes sk o [1999/06/13] ports/12188ports new port: pbs-2.1.11 (misc/PBS) a batch s o [1999/06/13] ports/12195ports submission of new port pgpenvelope o [1999/06/18] ports/12271ports fix pkg_add with error message and add ne o [1999/06/23] ports/12368ports Pilot-link installs to ${PREFIX} = ${LOCA o [1999/06/26] ports/12403ports ssh port has undocumented X11 dependency f [1999/06/26] ports/12406ports New port for the LAM implementation of th o [1999/07/02] ports/12490ports package xmine exits 1 with XawAsciiSource o [1999/07/02] ports/12492ports port misc/diction should be moved to text o [1999/07/03] ports/12503ports New Port: Willows toolkit (developers rel o [1999/07/05] ports/12518ports new port: ifmail-os-2.14.7 o [1999/07/05] ports/12522ports New port: cos o [1999/07/05] ports/12523ports New port: jdbcpool o [1999/07/06] ports/12536ports New port: lang/cu-prolog o [1999/07/07] ports/12549ports imap-uw port doesn't use pw_expire to che o [1999/07/09] ports/12571ports Xfig port doesn't have Ghostscript suppor o [1999/07/13] ports/12624ports New version of mxv which also works with o [1999/07/15] ports/12656ports new port - gnujsp o [1999/07/18] ports/12699ports new port: gnofin-0.5.10 o [1999/07/20] ports/12722ports new port: AT&T's DjVu library for scanned o [1999/07/21] ports/12735ports New ports: lang/ghc o [1999/07/21] ports/12739ports port for the AT&T's DjVu Netscape plug-in o [1999/07/31] ports/12899ports New port: wmnet-new o [1999/07/31] ports/12903ports new ports/database/p5-* o [1999/08/01] ports/12915ports Add elm 2.5 to ports o [1999/08/03] ports/12941ports New port: Hyperlatex (print/hyperlatex) o [1999/08/11] ports/13085ports new port: p5-SQL-Statement o [1999/08/13] ports/13124ports New port, LinAlg; request for local hosti o [1999/08/14] ports/13136ports new port: guiTAR 0.1.4 o [1999/08/14] ports/13149ports New port : math/topaz o [1999/08/15] ports/13159ports New port: java/collections o [1999/08/15] ports/13160ports New port: java/jaf o [1999/08/15] ports/13162ports New port: java/infobus o [1999/08/15] ports/13163ports New port: java/javamail o [1999/08/15] ports/13167ports [PATCH] security/ssh package keygen fails o [1999/08/17] ports/13201ports new port: xmess (X11 emulator for game co o [1999/08/21] ports/13297ports [NEW PORT] PyOpenGL - An OpenGL interface o [1999/08/21] ports/13312ports new port dhid o [1999/08/22] ports/13320ports New port: cfingerd o [1999/08/22] ports/13324ports New port: zope-2.0.0b5 o [1999/08/23] ports/13343ports new port: znibbles o [1999/08/24] ports/13351ports ports: pgp: installing into $prefix/lib i o [1999/08/24] ports/13361ports TCL interface to MySQL port added f [1999/08/25] ports/13385ports Installing certain Kde packages(ksamba) p o [1999/08/27] ports/13430ports ifhp-3.3.8 port o [1999/08/31] ports/13514ports another TCL interface to MySQL port o [1999/09/01] ports/13516ports ported picprog-1.0 from LinuX to FreeBSD f [1999/09/02] ports/13556ports Wrong patch on irc/bitchx o [1999/09/05] ports/13583ports new port: databases/py-MySQL o [1999/09/05] ports/13586ports New port: www/cgi-lib (cgi-lib-2.18) o [1999/09/07] ports/13614ports xdm and wdm do not set environment variab o [1999/09/07] ports/13619ports www/p5-libwww incorrect dependency orderi o [1999/09/07] ports/13633ports Better location for samba's private direc o [1999/09/09] ports/13677ports Misc. Ports fix ups. o [1999/09/10] ports/13684ports Just a port submission o [1999/09/11] ports/13694ports Y2K patch for slurp port o [1999/09/11] ports/13700ports security/stunnel patch so configure can l o [1999/09/11] ports/13701ports The qtarch-site has moved o [1999/09/11] ports/13704ports net/gnome-icu/patches/patch-ae broken zh_ o [1999/09/11] ports/13705ports p5-Apache port is outdated and too comple o [1999/09/13] ports/13716ports tac_plus.F4.0.2 port for FreeBSD o [1999/09/13] ports/13723ports upgrade russian/apache port to 1.3.9 o [1999/09/13] ports/13727ports new port: www/netscape-remote o [1999/09/13] ports/13743ports New Port: net/priss o [1999/09/14] ports/13745ports [NEW PORT] wamcc - prolog-to-c compiler o [1999/09/14] ports/13753ports Nonexisting file in PLIST o [1999/09/14] ports/13754ports ports:devel/yacl - fix for new gcc/egcs o [1999/09/15] ports/13756ports New port: mail/minimalist o [1999/09/15] ports/13760ports new port: www/udmsearch o [1999/09/15] ports/13761ports Just an upgrade to the X-Files port o [1999/09/15] ports/13762ports Additional patches for editors/elvis o [1999/09/16] ports/13784ports xfig docs not in a share hierarchy o [1999/09/17] ports/13786ports New port for GHC-4.04 o [1999/09/17] ports/13788ports aclgen port o [1999/09/17] ports/13789ports update to www/fcgi-devkit port to include o [1999/09/18] ports/13808ports linux-rvplayer port improved a'la netscap o [1999/09/18] ports/13809ports new port: sysutils/wmbattery o [1999/09/19] ports/13823ports stat port not formatting device node o [1999/09/19] ports/13826ports gpasman update 1.1.3 -> 1.3.0 o [1999/09/20] ports/13856ports New ports: fujiplay-1.33(graphics/fujipla o [1999/09/20] ports/13861ports New port submission - ddup-2.0.4 o [1999/09/21] ports/13874ports ports update to openldap-1.2.7 o [1999/09/22] ports/13896ports new port: misc/dictd-client o [1999/09/22] ports/13898ports new port: misc/dictd o [1999/09/22] ports/13899ports port submission: xmsg-1.0 o [1999/09/22] ports/13906ports port submission: biffer-1.0 o [1999/09/23] ports/13925ports Brand new port for xcut-0.2. o [1999/09/25] ports/13952ports update emulators/wine to 990923 (supersed o [1999/09/26] ports/13986ports new port: sysutils/gnometoaster o [1999/09/28] ports/14012ports port submission: iconv o [1999/09/28] ports/14016ports Update ports: japanese/dbskkd-cdb o [1999/09/28] ports/14032ports new port of gpart o [1999/09/29] ports/14036ports Update: korean/baekmuk-bdf o [1999/09/29] ports/14037ports Ports Update: korean/ami o [1999/09/30] ports/14047ports /usr/ports/x11-clocks/emiclock replacemen o [1999/09/30] ports/14052ports fvwm95-i18n - missing dependence to fbsd- o [1999/09/30] ports/14055ports New Port: newmail o [1999/09/30] ports/14070ports g2c libraries and compatibility for DJGPP o [1999/10/01] ports/14077ports Multicast not available on multicast enab o [1999/10/01] ports/14079ports ssh2 port won't install if automake is in o [1999/10/02] ports/14084ports new port: www/adzapper o [1999/10/02] ports/14088ports port of new fvwm 2.3 beta (2.3.8) o [1999/10/04] ports/14124ports Update port: graphics/tiff to 3.5.2 o [1999/10/04] ports/14137ports [NEW PORT] security/p5-Authen-PAM o [1999/10/06] ports/14160ports New port: japanese/makejvf o [1999/10/06] ports/14161ports New port: japanese/vfxdvik o [1999/10/06] ports/14164ports distfiles for archivers/unzip.with_encryp o [1999/10/06] ports/14172ports New port: net/elsa o [1999/10/07] ports/14185ports ports/x11-wm/fvwm2 updated from 2.2.2 to o [1999/10/07] ports/14188ports kdm bug and workaround o [1999/10/08] ports/14209ports Update port: graphics/giflib to libungif- o [1999/10/08] ports/14218ports make sysutils/pkg_version use nik's patch o [1999/10/08] ports/14222ports close to impossible to fetch xpdf decrypt o [1999/10/08] ports/14224ports ports/x11-clocks/emiclock, move MASTER_SI o [1999/10/11] ports/14260ports WODA - A Web Oriented Database System o [1999/10/11] ports/14262ports devel/boehm-gc ignores CFLAGS o [1999/10/11] ports/14271ports Yorick builds without X support o [1999/10/11] ports/14272ports bringing mozilla port up to M10 o [1999/10/11] ports/14276ports new port-tkdiff-3.04 o [1999/10/12] ports/14286ports Clean up print/pkfonts* and japanese/vfxd o [1999/10/12] ports/14288ports Kill palm/prc-tools o [1999/10/12] ports/14294ports gimp1 upgrade: 1.1.5 --> 1.1.10 o [1999/10/13] ports/14309ports Update graphics/gd to 1.7.5 o [1999/10/13] ports/14311ports new port: www/gnuinfo o [1999/10/13] ports/14312ports New port: wmmatrix-0.2 o [1999/10/14] ports/14337ports xdm and Eterm: tty allocation problem? o [1999/10/15] ports/14351ports cocoon port update to 1.4 from 1.3.1 o [1999/10/15] ports/14353ports cvslines port has bad path to perl and rc o [1999/10/15] ports/14358ports new port -- fb a binary file viewer and e o [1999/10/15] ports/14359ports Update port: mail/imap-uw o [1999/10/16] ports/14360ports xmms core dumps when trying to play strea o [1999/10/16] ports/14362ports Update port: sysutils/wmhm o [1999/10/16] ports/14363ports o [1999/10/16] ports/14364ports the master site for port ucspi-tcp has mo o [1999/10/16] ports/14365ports update port: misc/bidwatcher; from 0.9.11 o [1999/10/17] ports/14366ports wdm doesn't call setlogin() properly--act o [1999/10/17] ports/14367ports Update port: sysutils/consolehm o [1999/10/17] ports/14370ports Update port: ftp/lftp o [1999/10/17] ports/14375ports update port: misc/bidwatcher; from 0.9.11 o [1999/10/17] ports/14376ports [PATCH] shells/zsh-devel - fix zshall(1) o [1999/10/17] ports/14377ports [PATCH] shells/zsh - fix zshall(1) o [1999/10/17] ports/14378ports New Port: graphics/mpeg o [1999/10/17] ports/14379ports New Port: graphics/xmrm o [1999/10/17] ports/14381ports New port: games/x3eyes o [1999/10/17] ports/14382ports New port for tkrat version 2.0b3 o [1999/10/17] ports/14384ports update olirc to 0.0.37 o [1999/10/17] ports/14385ports Update port: sysutils/wmhm o [1999/10/17] ports/14389ports XScreensaver port does not properly detec o [1999/10/18] ports/14395ports change of email address for games/connect o [1999/10/18] ports/14399ports update port: net/iplog o [1999/10/18] ports/14402ports Update port: devel/gide to 0.1.5 o [1999/10/18] ports/14403ports Update port: graphics/netpbm to 8.0 o [1999/10/18] ports/14404ports Update port: japanese/k12 to 1.1 o [1999/10/18] ports/14405ports Update port: lang/cim 171 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 11: 9:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4EAEB15168; Mon, 18 Oct 1999 11:09:40 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA92898; Mon, 18 Oct 1999 11:09:39 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Mon, 18 Oct 1999 11:09:39 -0700 (PDT) From: Message-Id: <199910181809.LAA92898@freefall.freebsd.org> To: ade@lovett.com, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14286: Clean up print/pkfonts* and japanese/vfxdvi* Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Clean up print/pkfonts* and japanese/vfxdvi* State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Mon Oct 18 11:09:17 PDT 1999 State-Changed-Why: Patch applied to pkfonts300/Makefile, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 11:23: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D46E14BC3; Mon, 18 Oct 1999 11:22:57 -0700 (PDT) (envelope-from mph@FreeBSD.org) Received: (from mph@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA93751; Mon, 18 Oct 1999 11:22:56 -0700 (PDT) (envelope-from mph@FreeBSD.org) Date: Mon, 18 Oct 1999 11:22:56 -0700 (PDT) From: Message-Id: <199910181822.LAA93751@freefall.freebsd.org> To: andrews@technologist.com, mph@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14375: update port: misc/bidwatcher; from 0.9.11 -> 1.0.0b Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: misc/bidwatcher; from 0.9.11 -> 1.0.0b State-Changed-From-To: open->closed State-Changed-By: mph State-Changed-When: Mon Oct 18 14:22:42 EDT 1999 State-Changed-Why: Duplicate of 14365. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 11:23:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A01971525B; Mon, 18 Oct 1999 11:23:21 -0700 (PDT) (envelope-from mph@FreeBSD.org) Received: (from mph@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA93852; Mon, 18 Oct 1999 11:23:21 -0700 (PDT) (envelope-from mph@FreeBSD.org) Date: Mon, 18 Oct 1999 11:23:21 -0700 (PDT) From: Message-Id: <199910181823.LAA93852@freefall.freebsd.org> To: mph@FreeBSD.org, freebsd-ports@FreeBSD.org, mph@FreeBSD.org Subject: Re: ports/14365: update port: misc/bidwatcher; from 0.9.11 -> 1.0.0b Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: misc/bidwatcher; from 0.9.11 -> 1.0.0b Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Mon Oct 18 14:23:01 EDT 1999 Responsible-Changed-Why: Bidwatcher is cool. I like bidwatcher. I'll do this soon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 12: 2:49 1999 Delivered-To: freebsd-ports@freebsd.org Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id A508D14BCA for ; Mon, 18 Oct 1999 12:02:46 -0700 (PDT) (envelope-from cdf.lists@fxp.org) Received: by pawn.primelocation.net (Postfix, from userid 1016) id ED6039B22; Mon, 18 Oct 1999 15:02:45 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by pawn.primelocation.net (Postfix) with ESMTP id DF2B9BA1C; Mon, 18 Oct 1999 15:02:45 -0400 (EDT) Date: Mon, 18 Oct 1999 15:02:45 -0400 (EDT) From: "Chris D. Faulhaber" X-Sender: cdf.lists@pawn.primelocation.net To: Markus Holmberg Cc: freebsd-ports@freebsd.org Subject: Re: postfix not installing startup script in ${PREFIX}/etc/rc.d ? In-Reply-To: <19991018192340.A4466@shaka.acc.umu.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 18 Oct 1999, Markus Holmberg wrote: > > It seems like the postfix port doesn't install any startup script in ${PREFIX}/etc/rc.d, which means it has to be brought up manually with "postfix start" each time you reboot (unless you make your own script of course :)). > > The reason I'm asking is because this port is so "big" (as in widely used) that this seems quite unlikely to be the case, so I'd just like to know what I missed :). (Mailing list searches gave no results.) > > Just wondering, did I miss something? Shouldn't the port throw this kind of script in? (into /usr/local/etc/rc.d) > If you 'make replace', /usr/sbin/sendmail is replaced with Postfix's sendmail, the "Postfix to Sendmail compatibility interface". In other words, your existing sendmail startup commands in /etc/rc* (/usr/sbin/sendmail -bd -q30m) should still work, starting Postfix instead of sendmail. ----- Chris D. Faulhaber | All the true gurus I've met never System/Network Administrator, | claimed they were one, and always Reality Check Information, Inc. | pointed to someone better. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 12:59:52 1999 Delivered-To: freebsd-ports@freebsd.org Received: from misha.cisco.com (misha.cisco.com [171.69.206.50]) by hub.freebsd.org (Postfix) with ESMTP id 69D16150E9; Mon, 18 Oct 1999 12:59:41 -0700 (PDT) (envelope-from mi@misha.cisco.com) Received: (from root@localhost) by misha.cisco.com (8.9.3/8.9.1) id PAA07208; Mon, 18 Oct 1999 15:59:40 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin Message-Id: <199910181959.PAA07208@misha.cisco.com> Subject: libgtop-1.1.0 does not build on -stable To: nakai@freebsd.org Date: Mon, 18 Oct 1999 15:59:40 -0400 (EDT) Cc: ports@freebsd.org Reply-To: mi@aldan.algebra.com X-Mailer: ELM [version 2.4ME+ PL60 (25)] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary=ELM940276780-7202-0_ Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --ELM940276780-7202-0_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit And for a good reason. Please, diff the attached patches/patch-ag with what's in the tree... -mi --ELM940276780-7202-0_ Content-Type: text/plain; charset=KOI8-R Content-Disposition: attachment; filename=patch-ag Content-Description: fixed version of the procsignal.c-patch Content-Transfer-Encoding: 7bit --- sysdeps/freebsd/procsignal.c.orig Sat Oct 16 10:57:29 1999 +++ sysdeps/freebsd/procsignal.c Sat Oct 16 11:23:43 1999 @@ -26,6 +26,7 @@ #include #include +#include static const unsigned long _glibtop_sysdeps_proc_signal = (1L << GLIBTOP_PROC_SIGNAL_SIGNAL) + @@ -66,7 +67,7 @@ /* signal: mask of pending signals. * pinfo [0].kp_proc.p_siglist */ -#if defined(__NetBSD__) && (NSIG > 32) +#if (defined(__NetBSD__) && (NSIG > 32)) || (__FreeBSD_version >= 400011) buf->signal [0] = pinfo [0].kp_proc.p_siglist.__bits[0]; #else buf->signal [0] = pinfo [0].kp_proc.p_siglist; @@ -75,7 +76,7 @@ /* blocked: mask of blocked signals. * pinfo [0].kp_proc.p_sigmask */ -#if defined(__NetBSD__) && (NSIG > 32) +#if (defined(__NetBSD__) && (NSIG > 32)) || (__FreeBSD_version >= 400011) buf->blocked [0] = pinfo [0].kp_proc.p_sigmask.__bits[0]; #else buf->blocked [0] = pinfo [0].kp_proc.p_sigmask; @@ -84,16 +85,16 @@ /* sigignore: mask of ignored signals. * pinfo [0].kp_proc.p_sigignore */ -#if defined(__NetBSD__) && (NSIG > 32) +#if (defined(__NetBSD__) && (NSIG > 32)) || (__FreeBSD_version >= 400011) buf->sigignore [0] = pinfo [0].kp_proc.p_sigignore.__bits[0]; #else buf->sigignore [0] = pinfo [0].kp_proc.p_sigignore; #endif /* sigcatch: mask of caught signals. * pinfo [0].kp_proc.p_sigcatch */ -#if defined(__NetBSD__) && (NSIG > 32) +#if (defined(__NetBSD__) && (NSIG > 32)) || (__FreeBSD_version >= 400011) buf->sigcatch [0] = pinfo [0].kp_proc.p_sigcatch.__bits[0]; #else buf->sigcatch [0] = pinfo [0].kp_proc.p_sigcatch; --ELM940276780-7202-0_-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 16:24:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from cornflake.nickelkid.com (cornflake.nickelkid.com [216.116.135.26]) by hub.freebsd.org (Postfix) with ESMTP id 827B614F72 for ; Mon, 18 Oct 1999 16:24:17 -0700 (PDT) (envelope-from jooji@cornflake.nickelkid.com) Received: from localhost (jooji@localhost) by cornflake.nickelkid.com (8.9.3/8.9.3) with ESMTP id TAA06883; Mon, 18 Oct 1999 19:24:13 -0400 (EDT) (envelope-from jooji@cornflake.nickelkid.com) Date: Mon, 18 Oct 1999 19:24:13 -0400 (EDT) From: "Jasper O'Malley" To: Will Andrews Cc: Jim Manley , freebsd-ports@FreeBSD.ORG Subject: RE: StarOffice 5.1 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 18 Oct 1999, Will Andrews wrote: > On 18-Oct-99 Jim Manley wrote: > > Is there any plan to update the ports/editors collection for StarOffice 5.1? > > Maybe if they give out the source. Else, I don't think so. Availability of the source shouldn't have anything to do with it, AFAIK. The Netscape meta-ports don't pull any source for compilation, they download the binaries from Netscape and put them in the right place. Cheers, Mick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 17:10:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9502F153C1 for ; Mon, 18 Oct 1999 17:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA21875; Mon, 18 Oct 1999 17:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BFBF11536B; Mon, 18 Oct 1999 17:04:15 -0700 (PDT) Message-Id: <19991019000415.BFBF11536B@hub.freebsd.org> Date: Mon, 18 Oct 1999 17:04:15 -0700 (PDT) From: watanabe@zlab.phys.nagoya-u.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14408: Update port: ja-dvipsk-* (japanese/dvipsk-*) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14408 >Category: ports >Synopsis: Update port: ja-dvipsk-* (japanese/dvipsk-*) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 17:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Makoto WATANABE >Release: FreeBSD 3.2-RELEASE i386 >Organization: Z lab. Division of Particle and Astrophysical Science, Nagoya University, JAPAN >Environment: >Description: I have updated the 'ja-dvipsk-*' port with new jananese patch. Also this update is correspond with updated 'ja-ptex' port. Instead of the old 'ja-ptex' port, the updated 'ja-dvipsk' port install good dvips/*.pro files. Because the old 'ja-dvipsk' port lost dvips/*.pro, the old port don't work well. I put the patches for 'japanese/dvipsk' and 'japanese/dvipsk-vflib' below "Fix:" Changed files are dvipsk/Makefile dvipsk/files/md5 dvipsk/patches/patch-aa dvipsk/pkg/INSTALL dvipsk/pkg/PLIST dvipsk-vflib/Makefile dvipsk-vflib/files/md5 dvipsk-vflib/patches/patch-aa dvipsk-vflib/patches/patch-ad dvipsk-vflib/pkg/INSTALL dvipsk-vflib/pkg/PLIST Added file is dvipsk/scripts/post-configure dvipsk-vflib/scripts/post-configure - Makoto WATANABE watanabe@zlab.phys.nagoya-u.ac.jp >How-To-Repeat: >Fix: diff -ruN dvipsk.orig/Makefile dvipsk/Makefile --- dvipsk.orig/Makefile Wed Aug 25 21:17:26 1999 +++ dvipsk/Makefile Tue Oct 19 07:44:20 1999 @@ -1,5 +1,5 @@ # New ports collection makefile for: dvipsk + jpatch -# Version required: 5.78a + p1.4 +# Version required: 5.78a + p1.4c # Date created: 25 Aug 1997 # Whom: Makoto WATANABE # @@ -13,27 +13,26 @@ ftp://ftp.center.osaka-u.ac.jp/CTAN/dviware/dvipsk/ \ ftp://ftp.riken.go.jp/pub/CTAN/dviware/dvipsk/ \ ftp://ftp.u-aizu.ac.jp/pub/tex/CTAN/dviware/dvipsk/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} dvipsk-jpatch-p1.4.tar.gz +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} dvipsk-jpatch-p1.4c.tar.gz MAINTAINER= watanabe@zlab.phys.nagoya-u.ac.jp RUN_DEPENDS= ptex-common:${PORTSDIR}/japanese/ptex-common \ - ${PREFIX}/share/fonts/vf-a2bk:${PORTSDIR}/japanese/vftool + ${LOCALBASE}/share/fonts/vf-a2bk:${PORTSDIR}/japanese/vftool MANUAL_PACKAGE_BUILD= incompatible with other versions of dvipsk-* USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_path_install="${INSTALL} -c -o ${BINOWN} -g ${BINGRP}" +SCRIPTS_ENV= MV=${MV} SED=${SED} MAN1= dvips.1 afm2tfm.1 TEXMF= ${PREFIX}/share/texmf DVIPSDIR= ${TEXMF}/dvips TEXDIR= ${TEXMF}/tex BINARIES= dvips afm2tfm -BACKUP_FILES= base/asex.enc base/psfonts.map config/config.ps -BASE_FILES= cmfonts.map cyrfonts.map eufonts.map lafonts.map \ - reencode/asex.enc +BASE_FILES= config.ps cmfonts.map cyrfonts.map eufonts.map lafonts.map CONTRIB_DIRS= afm-extra bbfig configs psfig volker CONTRIB_FILES= MakeTeXPK.pl PSTricks colorsep.pro config.proto crop.lpr \ timesmat.sty whichinpath afm-extra/*.ed bbfig/bb* \ @@ -52,18 +51,10 @@ ../squeeze < colorsep.lpro > colorsep.pro \ ) -pre-install: - @for i in ${BACKUP_FILES} ; do \ - if [ -f ${DVIPSDIR}/$$i ] ; then \ - ${MV} ${DVIPSDIR}/$$i ${DVIPSDIR}/$$i.bak ; \ - fi ; \ - done - post-install: @for i in ${BINARIES} ; do \ strip ${PREFIX}/bin/$$i ; \ done - @${MKDIR} ${DVIPSDIR}/config @for i in ${CONTRIB_DIRS} ; do \ ${MKDIR} ${DVIPSDIR}/contrib/$$i ; \ done @@ -73,7 +64,6 @@ for i in ${BASE_FILES} ; do \ ${INSTALL_DATA} $$i ${DVIPSDIR}/base ; \ done ; \ - ${INSTALL_DATA} config.ps ${DVIPSDIR}/config ; \ cd ${WRKSRC}/dvipsk/contrib ; \ for i in ${CONTRIB_FILES} ; do \ ${INSTALL_DATA} $$i ${DVIPSDIR}/contrib/$$i ; \ diff -ruN dvipsk.orig/files/md5 dvipsk/files/md5 --- dvipsk.orig/files/md5 Mon Jul 20 00:00:00 1998 +++ dvipsk/files/md5 Sun Oct 17 03:41:28 1999 @@ -1,2 +1,2 @@ MD5 (dvipsk-5.78a.tar.gz) = 7731c81a2614f62ff892b296d257c4d0 -MD5 (dvipsk-jpatch-p1.4.tar.gz) = 20b10a562e0f931768e258118ea773ba +MD5 (dvipsk-jpatch-p1.4c.tar.gz) = 3113913f6f82f16f467d82e07fe303a9 diff -ruN dvipsk.orig/patches/patch-aa dvipsk/patches/patch-aa --- dvipsk.orig/patches/patch-aa Mon Jul 20 00:00:00 1998 +++ dvipsk/patches/patch-aa Sun Oct 17 03:41:28 1999 @@ -11,19 +11,6 @@ # Other standard targets for everything. --- dvipsk/Makefile.in.orig Tue Mar 3 23:47:43 1998 +++ dvipsk/Makefile.in Wed Jul 1 15:41:44 1998 -@@ -80,9 +80,9 @@ - install-data: $(program).info - $(SHELL) $(top_srcdir)/../mkinstalldirs $(mandir) $(infodir) $(psheaderdir)/base $(dvips_plain_macrodir) - # PostScript prologues and encodings. -- for h in $(prologues); do $(INSTALL_DATA) $$h $(psheaderdir)/base/$$h; done -- cd $(srcdir)/reencode && \ -- for e in *.enc; do $(INSTALL_DATA) $$e $(psheaderdir)/base/$$e; done -+# for h in $(prologues); do $(INSTALL_DATA) $$h $(psheaderdir)/base/$$h; done -+# cd $(srcdir)/reencode && \ -+# for e in *.enc; do $(INSTALL_DATA) $$e $(psheaderdir)/base/$$e; done - # config.ps. Any one config.ps will be wrong for most people, so don't - # install anything by default. - # if test ! -r $(psheaderdir)/base/config.ps \ @@ -103,8 +103,8 @@ $(INSTALL_DATA) $(srcdir)/dvips.1 $(mandir)/dvips.$(manext) $(INSTALL_DATA) $(srcdir)/afm2tfm.1 $(mandir)/afm2tfm.$(manext) diff -ruN dvipsk.orig/pkg/INSTALL dvipsk/pkg/INSTALL --- dvipsk.orig/pkg/INSTALL Wed Jun 23 21:12:08 1999 +++ dvipsk/pkg/INSTALL Sun Oct 17 03:41:28 1999 @@ -6,7 +6,7 @@ web2cdir=${PKG_PREFIX}/share/texmf/web2c pkfonts_path=${PKG_PREFIX}/lib/fonts/pk300 -pkfonts="cmr5.300pk" +pkfonts="cmr5.118pk cmr5.240pk cmr5.300pk cmr5.360pk cmr5.400pk cmr5.600pk" a2bkfonts_path=${PKG_PREFIX}/share/fonts/vf-a2bk a2bkfonts="min5.vf rml.tfm" diff -ruN dvipsk.orig/pkg/PLIST dvipsk/pkg/PLIST --- dvipsk.orig/pkg/PLIST Sun Jun 6 21:11:36 1999 +++ dvipsk/pkg/PLIST Sun Oct 17 03:41:28 1999 @@ -7,15 +7,36 @@ info/dvips.info-3 info/dvips.info-4 @exec install-info %D/info/dvips.info %D/info/dir -@exec for i in base/asex.enc base/psfonts.map config/config.ps ; do if [ -f %D/share/texmf/dvips/$i ] ; then mv %D/share/texmf/dvips/$i %D/share/texmf/dvips/$i.bak ; fi ; done +share/texmf/dvips/base/color.pro +share/texmf/dvips/base/crop.pro +share/texmf/dvips/base/finclude.pro +share/texmf/dvips/base/hps.pro +share/texmf/dvips/base/special.pro +share/texmf/dvips/base/tex.pro +share/texmf/dvips/base/texc.pro +share/texmf/dvips/base/texps.pro +share/texmf/dvips/base/8a.enc +share/texmf/dvips/base/8r.enc +share/texmf/dvips/base/EC.enc +share/texmf/dvips/base/ad.enc share/texmf/dvips/base/asex.enc +share/texmf/dvips/base/asexp.enc +share/texmf/dvips/base/cork.enc +share/texmf/dvips/base/dc.enc +share/texmf/dvips/base/dvips.enc +share/texmf/dvips/base/extex.enc +share/texmf/dvips/base/funky.enc +share/texmf/dvips/base/texmext.enc +share/texmf/dvips/base/texmital.enc +share/texmf/dvips/base/texmsym.enc +share/texmf/dvips/base/xl2.enc +share/texmf/dvips/base/xt2.enc share/texmf/dvips/base/cmfonts.map share/texmf/dvips/base/cyrfonts.map share/texmf/dvips/base/eufonts.map share/texmf/dvips/base/lafonts.map share/texmf/dvips/base/psfonts.map -share/texmf/dvips/config/config.ps -@unexec for i in base/asex.enc base/psfonts.map config/config.ps ; do if [ -f %D/share/texmf/dvips/$i.bak ] ; then mv %D/share/texmf/dvips/$i.bak %D/share/texmf/dvips/$i ; fi ; done +share/texmf/dvips/base/config.ps share/texmf/dvips/contrib/MakeTeXPK.pl share/texmf/dvips/contrib/PSTricks share/texmf/dvips/contrib/colorsep.pro @@ -86,12 +107,15 @@ share/doc/dvips/dvips.help @exec ln -fs %D/share/texmf/dvips/contrib %D/share/doc/dvips/contrib @unexec rm %D/share/doc/dvips/contrib +@dirrm share/texmf/dvips/base @dirrm share/texmf/dvips/contrib/afm-extra @dirrm share/texmf/dvips/contrib/bbfig @dirrm share/texmf/dvips/contrib/configs @dirrm share/texmf/dvips/contrib/psfig @dirrm share/texmf/dvips/contrib/volker @dirrm share/texmf/dvips/contrib +@dirrm share/texmf/dvips @dirrm share/texmf/tex/latex209/dvips +@dirrm share/texmf/tex/latex209 @dirrm share/doc/dvips @unexec if [ -f %D/share/texmf/web2c/texmf.cnf.bak ] ; then rm -f %D/share/texmf/web2c/texmf.cnf ; mv %D/share/texmf/web2c/texmf.cnf.bak %D/share/texmf/web2c/texmf.cnf ; fi diff -ruN dvipsk.orig/scripts/post-configure dvipsk/scripts/post-configure --- dvipsk.orig/scripts/post-configure Thu Jan 1 09:00:00 1970 +++ dvipsk/scripts/post-configure Sun Oct 17 03:41:28 1999 @@ -0,0 +1,13 @@ +#!/bin/sh + +chgdirs=". kpathsea dvipsk" + +cd ${WRKSRC} + +for dir in ${chgdirs}; do + ${MV} -f ${dir}/Makefile ${dir}/Makefile.bak + ${SED} \ + -e 's@^prefix[ ]*=.*$@prefix=${PREFIX}@' \ + -e 's@^texmf[ ]*=.*$@texmf=${PREFIX}/share/texmf@' \ + < ${dir}/Makefile.bak > ${dir}/Makefile +done diff -ruN dvipsk-vflib.orig/Makefile dvipsk-vflib/Makefile --- dvipsk-vflib.orig/Makefile Wed Aug 25 21:17:26 1999 +++ dvipsk-vflib/Makefile Tue Oct 19 07:44:53 1999 @@ -1,5 +1,5 @@ # New ports collection makefile for: dvipsk + jpatch + vflib-patch -# Version required: 5.78a + p1.4 + 1.1alpha +# Version required: 5.78a + p1.4c + 1.1alpha # Date created: 25 Aug 1997 # Whom: Makoto WATANABE # @@ -14,13 +14,13 @@ ftp://ftp.riken.go.jp/pub/CTAN/dviware/dvipsk/ \ ftp://ftp.u-aizu.ac.jp/pub/tex/CTAN/dviware/dvipsk/ \ http://math.shinshu-u.ac.jp/~nakayama/howto/tex/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} dvipsk-jpatch-p1.4.tar.gz \ +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} dvipsk-jpatch-p1.4c.tar.gz \ dvipsk-vflib-1.1alpha.patch.tgz MAINTAINER= watanabe@zlab.phys.nagoya-u.ac.jp RUN_DEPENDS= ptex-common:${PORTSDIR}/japanese/ptex-common \ - ${PREFIX}/share/fonts/vf-a2bk:${PORTSDIR}/japanese/vftool + ${LOCALBASE}/share/fonts/vf-a2bk:${PORTSDIR}/japanese/vftool LIB_DEPENDS= VFlib2.24:${PORTSDIR}/japanese/vflib MANUAL_PACKAGE_BUILD= incompatible with other versions of dvipsk-* @@ -29,15 +29,14 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_path_install="${INSTALL} -c -o ${BINOWN} -g ${BINGRP}" MAKE_FLAGS= XCFLAGS="-I${PREFIX}/include" XLOADLIBES="-L${PREFIX}/lib" +SCRIPTS_ENV= MV=${MV} SED=${SED} MAN1= dvips.1 afm2tfm.1 TEXMF= ${PREFIX}/share/texmf DVIPSDIR= ${TEXMF}/dvips TEXDIR= ${TEXMF}/tex BINARIES= dvips afm2tfm -BACKUP_FILES= base/asex.enc base/psfonts.map config/config.ps -BASE_FILES= vffonts.pro cmfonts.map cyrfonts.map eufonts.map lafonts.map \ - reencode/asex.enc +BASE_FILES= config.ps cmfonts.map cyrfonts.map eufonts.map lafonts.map CONTRIB_DIRS= afm-extra bbfig configs psfig volker CONTRIB_FILES= MakeTeXPK.pl PSTricks colorsep.pro config.proto crop.lpr \ timesmat.sty whichinpath afm-extra/*.ed bbfig/bb* \ @@ -57,18 +56,10 @@ ../squeeze < colorsep.lpro > colorsep.pro \ ) -pre-install: - @for i in ${BACKUP_FILES} ; do \ - if [ -f ${DVIPSDIR}/$$i ] ; then \ - ${MV} ${DVIPSDIR}/$$i ${DVIPSDIR}/$$i.bak ; \ - fi ; \ - done - post-install: @for i in ${BINARIES} ; do \ strip ${PREFIX}/bin/$$i ; \ done - @${MKDIR} ${DVIPSDIR}/config @for i in ${CONTRIB_DIRS} ; do \ ${MKDIR} ${DVIPSDIR}/contrib/$$i ; \ done @@ -78,7 +69,6 @@ for i in ${BASE_FILES} ; do \ ${INSTALL_DATA} $$i ${DVIPSDIR}/base ; \ done ; \ - ${INSTALL_DATA} config.ps ${DVIPSDIR}/config ; \ cd ${WRKSRC}/dvipsk/contrib ; \ for i in ${CONTRIB_FILES} ; do \ ${INSTALL_DATA} $$i ${DVIPSDIR}/contrib/$$i ; \ @@ -98,8 +88,8 @@ @${LN} -fs ${DVIPSDIR}/contrib ${PREFIX}/share/doc/dvips/contrib .endif .if defined(BATCH) - @${SETENV} PKG_PREFIX=${PREFIX} \ - ${SH} ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL BATCH + @${SETENV} PKG_PREFIX=${PREFIX} BATCH=yes \ + ${SH} ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL .else @${SETENV} PKG_PREFIX=${PREFIX} \ ${SH} ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL diff -ruN dvipsk-vflib.orig/files/md5 dvipsk-vflib/files/md5 --- dvipsk-vflib.orig/files/md5 Mon Jul 20 00:00:00 1998 +++ dvipsk-vflib/files/md5 Sun Oct 17 03:41:28 1999 @@ -1,3 +1,3 @@ MD5 (dvipsk-5.78a.tar.gz) = 7731c81a2614f62ff892b296d257c4d0 -MD5 (dvipsk-jpatch-p1.4.tar.gz) = 20b10a562e0f931768e258118ea773ba +MD5 (dvipsk-jpatch-p1.4c.tar.gz) = 3113913f6f82f16f467d82e07fe303a9 MD5 (dvipsk-vflib-1.1alpha.patch.tgz) = f2eff40c3b2afe732c6e2a0b8469c2db diff -ruN dvipsk-vflib.orig/patches/patch-aa dvipsk-vflib/patches/patch-aa --- dvipsk-vflib.orig/patches/patch-aa Mon Jul 20 00:00:00 1998 +++ dvipsk-vflib/patches/patch-aa Sun Oct 17 03:41:28 1999 @@ -11,19 +11,6 @@ # Other standard targets for everything. --- dvipsk/Makefile.in.orig Sat Jul 4 15:27:03 1998 +++ dvipsk/Makefile.in Sat Jul 4 15:29:46 1998 -@@ -81,9 +81,9 @@ - install-data: $(program).info - $(SHELL) $(top_srcdir)/../mkinstalldirs $(mandir) $(infodir) $(psheaderdir)/base $(dvips_plain_macrodir) - # PostScript prologues and encodings. -- for h in $(prologues); do $(INSTALL_DATA) $$h $(psheaderdir)/base/$$h; done -- cd $(srcdir)/reencode && \ -- for e in *.enc; do $(INSTALL_DATA) $$e $(psheaderdir)/base/$$e; done -+# for h in $(prologues); do $(INSTALL_DATA) $$h $(psheaderdir)/base/$$h; done -+# cd $(srcdir)/reencode && \ -+# for e in *.enc; do $(INSTALL_DATA) $$e $(psheaderdir)/base/$$e; done - # config.ps. Any one config.ps will be wrong for most people, so don't - # install anything by default. - # if test ! -r $(psheaderdir)/base/config.ps \ @@ -104,8 +104,8 @@ $(INSTALL_DATA) $(srcdir)/dvips.1 $(mandir)/dvips.$(manext) $(INSTALL_DATA) $(srcdir)/afm2tfm.1 $(mandir)/afm2tfm.$(manext) diff -ruN dvipsk-vflib.orig/patches/patch-ad dvipsk-vflib/patches/patch-ad --- dvipsk-vflib.orig/patches/patch-ad Mon Jul 20 00:00:00 1998 +++ dvipsk-vflib/patches/patch-ad Sun Oct 17 03:41:28 1999 @@ -8,10 +8,10 @@ -rmlv Ryumin-Light-V -gbm GothicBBB-Medium-H -gbmv GothicBBB-Medium-V -+rml Ryumin-Light-H <`r-watanabe-mincho -+gbm GothicBBB-Medium-H <`r-watanabe-mincho -+rmlv Ryumin-Light-V <`r-watanabe-mincho -+gbmv GothicBBB-Medium-V <`r-watanabe-mincho ++rml Ryumin-Light-H <`min ++gbm GothicBBB-Medium-H <`goth ++rmlv Ryumin-Light-V <`min ++gbmv GothicBBB-Medium-V <`goth % % Local variables: diff -ruN dvipsk-vflib.orig/pkg/INSTALL dvipsk-vflib/pkg/INSTALL --- dvipsk-vflib.orig/pkg/INSTALL Mon Jul 20 00:00:00 1998 +++ dvipsk-vflib/pkg/INSTALL Sun Oct 17 03:41:28 1999 @@ -6,7 +6,7 @@ web2cdir=${PKG_PREFIX}/share/texmf/web2c pkfonts_path=${PKG_PREFIX}/lib/fonts/pk300 -pkfonts="cmr5.300pk" +pkfonts="cmr5.118pk cmr5.240pk cmr5.300pk cmr5.360pk cmr5.400pk cmr5.600pk" a2bkfonts_path=${PKG_PREFIX}/share/fonts/vf-a2bk a2bkfonts="min5.vf rml.tfm" @@ -26,7 +26,7 @@ echo "******************************************************************************" -if [ "x$3" != "xBATCH" ]; then +if [ "X${BATCH}" = "X" ]; then echo "You have to set some variables in the path configuration file for" echo "kpathsea ${web2cdir}/texmf.cnf so that the program" echo "can find PK fonts, Japanese Virtual fonts (\"a2bk\" type)." diff -ruN dvipsk-vflib.orig/pkg/PLIST dvipsk-vflib/pkg/PLIST --- dvipsk-vflib.orig/pkg/PLIST Sun Jun 6 21:11:36 1999 +++ dvipsk-vflib/pkg/PLIST Sun Oct 17 03:41:28 1999 @@ -7,16 +7,37 @@ info/dvips.info-3 info/dvips.info-4 @exec install-info %D/info/dvips.info %D/info/dir -@exec for i in base/asex.enc base/psfonts.map config/config.ps ; do if [ -f %D/share/texmf/dvips/$i ] ; then mv %D/share/texmf/dvips/$i %D/share/texmf/dvips/$i.bak ; fi ; done +share/texmf/dvips/base/color.pro +share/texmf/dvips/base/crop.pro +share/texmf/dvips/base/finclude.pro +share/texmf/dvips/base/hps.pro +share/texmf/dvips/base/special.pro +share/texmf/dvips/base/tex.pro +share/texmf/dvips/base/texc.pro +share/texmf/dvips/base/texps.pro share/texmf/dvips/base/vffonts.pro +share/texmf/dvips/base/8a.enc +share/texmf/dvips/base/8r.enc +share/texmf/dvips/base/EC.enc +share/texmf/dvips/base/ad.enc share/texmf/dvips/base/asex.enc +share/texmf/dvips/base/asexp.enc +share/texmf/dvips/base/cork.enc +share/texmf/dvips/base/dc.enc +share/texmf/dvips/base/dvips.enc +share/texmf/dvips/base/extex.enc +share/texmf/dvips/base/funky.enc +share/texmf/dvips/base/texmext.enc +share/texmf/dvips/base/texmital.enc +share/texmf/dvips/base/texmsym.enc +share/texmf/dvips/base/xl2.enc +share/texmf/dvips/base/xt2.enc share/texmf/dvips/base/cmfonts.map share/texmf/dvips/base/cyrfonts.map share/texmf/dvips/base/eufonts.map share/texmf/dvips/base/lafonts.map share/texmf/dvips/base/psfonts.map -share/texmf/dvips/config/config.ps -@unexec for i in base/asex.enc base/psfonts.map config/config.ps ; do if [ -f %D/share/texmf/dvips/$i.bak ] ; then mv %D/share/texmf/dvips/$i.bak %D/share/texmf/dvips/$i ; fi ; done +share/texmf/dvips/base/config.ps share/texmf/dvips/contrib/MakeTeXPK.pl share/texmf/dvips/contrib/PSTricks share/texmf/dvips/contrib/colorsep.pro @@ -88,12 +109,15 @@ share/doc/dvips/dvips.help @exec ln -fs %D/share/texmf/dvips/contrib %D/share/doc/dvips/contrib @unexec rm %D/share/doc/dvips/contrib +@dirrm share/texmf/dvips/base @dirrm share/texmf/dvips/contrib/afm-extra @dirrm share/texmf/dvips/contrib/bbfig @dirrm share/texmf/dvips/contrib/configs @dirrm share/texmf/dvips/contrib/psfig @dirrm share/texmf/dvips/contrib/volker @dirrm share/texmf/dvips/contrib +@dirrm share/texmf/dvips @dirrm share/texmf/tex/latex209/dvips +@dirrm share/texmf/tex/latex209 @dirrm share/doc/dvips @unexec if [ -f %D/share/texmf/web2c/texmf.cnf.bak ] ; then rm -f %D/share/texmf/web2c/texmf.cnf ; mv %D/share/texmf/web2c/texmf.cnf.bak %D/share/texmf/web2c/texmf.cnf ; fi diff -ruN dvipsk-vflib.orig/scripts/post-configure dvipsk-vflib/scripts/post-configure --- dvipsk-vflib.orig/scripts/post-configure Thu Jan 1 09:00:00 1970 +++ dvipsk-vflib/scripts/post-configure Sun Oct 17 03:41:28 1999 @@ -0,0 +1,13 @@ +#!/bin/sh + +chgdirs=". kpathsea dvipsk" + +cd ${WRKSRC} + +for dir in ${chgdirs}; do + ${MV} -f ${dir}/Makefile ${dir}/Makefile.bak + ${SED} \ + -e 's@^prefix[ ]*=.*$@prefix=${PREFIX}@' \ + -e 's@^texmf[ ]*=.*$@texmf=${PREFIX}/share/texmf@' \ + < ${dir}/Makefile.bak > ${dir}/Makefile +done >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 17:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ABA9215454 for ; Mon, 18 Oct 1999 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA22795; Mon, 18 Oct 1999 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 96F8B15452 for ; Mon, 18 Oct 1999 17:19:55 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id 5EBE09B22; Mon, 18 Oct 1999 20:19:51 -0400 (EDT) Message-Id: <19991019001951.5EBE09B22@pawn.primelocation.net> Date: Mon, 18 Oct 1999 20:19:51 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14409: New port: www/webfs-0.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14409 >Category: ports >Synopsis: New port: www/webfs-0.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 17:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD earth.fxp 4.0-CURRENT FreeBSD 4.0-CURRENT #75: Fri Oct 15 10:13:22 EDT 1999 >Description: New port: www/webfs-0.5 This is a simple http server for purely static content. You can use it to serve the content of a ftp server via http for example. It is also nice to export some files quickly by starting an http server in a few seconds without editing a config file first. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # webfs # webfs/Makefile # webfs/files # webfs/files/md5 # webfs/pkg # webfs/pkg/PLIST # webfs/pkg/COMMENT # webfs/pkg/DESCR # webfs/patches # webfs/patches/patch-aa # echo c - webfs mkdir -p webfs > /dev/null 2>&1 echo x - webfs/Makefile sed 's/^X//' >webfs/Makefile << 'END-of-webfs/Makefile' X# New ports collection makefile for: webfs X# Version required: 0.5 X# Date created: 18 October 1999 X# Whom: Chris D. Faulhaber X# X# $FreeBSD$ X# X XDISTNAME= webfs-0.5 XCATEGORIES= www XMASTER_SITES= http://www.IN-Berlin.DE/User/kraxel/dl/ X XMAINTAINER= jedgar@fxp.org X XMAN1= webfsd.1 X Xdo-configure: X @${CP} ${WRKSRC}/webfsd.man ${WRKSRC}/webfsd.1 X @${MV} ${WRKSRC}/mime.c ${WRKSRC}/mime.c.orig X @${SED} -e 's|/etc/mime.types|${PREFIX}/etc/webfsd/mime.types|' \ X < ${WRKSRC}/mime.c.orig > ${WRKSRC}/mime.c X Xdo-install: X @${INSTALL_PROGRAM} ${WRKSRC}/webfsd ${PREFIX}/sbin X @${INSTALL_MAN} ${WRKSRC}/webfsd.1 ${PREFIX}/man/man1 X @${MKDIR} ${PREFIX}/etc/webfsd X @${ECHO} "# Insert mime types here" > ${PREFIX}/etc/webfsd/mime.types X X.include END-of-webfs/Makefile echo c - webfs/files mkdir -p webfs/files > /dev/null 2>&1 echo x - webfs/files/md5 sed 's/^X//' >webfs/files/md5 << 'END-of-webfs/files/md5' XMD5 (webfs-0.5.tar.gz) = e0776bd482c67fdbd7c5582de9d9a768 END-of-webfs/files/md5 echo c - webfs/pkg mkdir -p webfs/pkg > /dev/null 2>&1 echo x - webfs/pkg/PLIST sed 's/^X//' >webfs/pkg/PLIST << 'END-of-webfs/pkg/PLIST' Xsbin/webfsd Xetc/webfsd/mime.types X@dirrm etc/webfsd END-of-webfs/pkg/PLIST echo x - webfs/pkg/COMMENT sed 's/^X//' >webfs/pkg/COMMENT << 'END-of-webfs/pkg/COMMENT' XA simple http server for static content END-of-webfs/pkg/COMMENT echo x - webfs/pkg/DESCR sed 's/^X//' >webfs/pkg/DESCR << 'END-of-webfs/pkg/DESCR' XThis is a simple http server for purely static content. You can Xuse it to serve the content of a ftp server via http for example. XIt is also nice to export some files quickly by starting an http Xserver in a few seconds without editing a config file first. X XFeatures/Design: X================ X * single process: select() + non-blocking I/O X * automatically generates directory listings when asked for a X directory (check for index.html available as option), caches X the listings. X * no config file, just a few switches. Try "webfsd -h" for a X list. X * Uses ${PREFIX}/etc/webfsd/mime.types to map file extentions X to mime/types (not included). X * supports keep-alive and pipelined requests. X * serves byte ranges. X * optional logging in common log file format. X XWWW: http://www.IN-Berlin.DE/User/kraxel/webfs.html X X- Chris D. Faulhaber Xjedgar@fxp.org END-of-webfs/pkg/DESCR echo c - webfs/patches mkdir -p webfs/patches > /dev/null 2>&1 echo x - webfs/patches/patch-aa sed 's/^X//' >webfs/patches/patch-aa << 'END-of-webfs/patches/patch-aa' X--- Makefile.orig Fri Oct 15 15:46:00 1999 X+++ Makefile Mon Oct 18 19:28:49 1999 X@@ -2,8 +2,8 @@ X bindir=$(prefix)/bin X mandir=$(prefix)/man/man1 X X-CC=gcc X-CFLAGS=-Wall -g -O2 X+#CC=gcc X+#CFLAGS=-Wall -g -O2 X X PROG=webfsd X OBJS=main.o request.o response.o ls.o mime.o END-of-webfs/patches/patch-aa exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 19:49:17 1999 Delivered-To: freebsd-ports@freebsd.org Received: from tokyonet-entrance.astec.co.jp (tokyonet-entrance.astec.co.jp [202.239.16.2]) by hub.freebsd.org (Postfix) with ESMTP id 513D21594D for ; Mon, 18 Oct 1999 19:49:10 -0700 (PDT) (envelope-from nakai@internetsolutions.co.jp) Received: from amont.astec.co.jp (amont.astec.co.jp [172.20.10.1]) by tokyonet-entrance.astec.co.jp (8.9.1+3.0W/3.7W-astecMX2.3) with ESMTP id LAA29015; Tue, 19 Oct 1999 11:49:04 +0900 (JST) Received: from internetsolutions.co.jp (isg29.astec.co.jp [172.20.70.229]) by amont.astec.co.jp (8.7.6/3.6W-astecMX2.4) with ESMTP id LAA21407; Tue, 19 Oct 1999 11:49:03 +0900 (JST) Message-ID: <380BDC0D.64B03250@internetsolutions.co.jp> Date: Tue, 19 Oct 1999 11:48:45 +0900 From: Yukihiro Nakai Organization: InternetSolutions, Inc. X-Mailer: Mozilla 4.5 [ja] (Win98; I) X-Accept-Language: ja MIME-Version: 1.0 To: mi@aldan.algebra.com, Konstantin Chuguev Cc: ports@freebsd.org Subject: Re: libgtop-1.1.0 does not build on -stable References: <199910181959.PAA07208@misha.cisco.com> Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mikhail Teterin wrote: > > And for a good reason. Please, diff the attached > patches/patch-ag > with what's in the tree... > > -mi Commited, thanks. Please cvs-up and try again... Mikhail's and Konstantin's fix are same. -------------- Yukihiro Nakai To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 21:56:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 217EF15E7E; Mon, 18 Oct 1999 21:56:44 -0700 (PDT) (envelope-from dan@FreeBSD.org) Received: (from dan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA47570; Mon, 18 Oct 1999 21:56:44 -0700 (PDT) (envelope-from dan@FreeBSD.org) Date: Mon, 18 Oct 1999 21:56:44 -0700 (PDT) From: Message-Id: <199910190456.VAA47570@freefall.freebsd.org> To: patrick@mindstep.com, dan@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14328: update pipsecd port to version 19991014 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update pipsecd port to version 19991014 State-Changed-From-To: open->closed State-Changed-By: dan State-Changed-When: Mon Oct 18 21:40:58 PDT 1999 State-Changed-Why: Update committed, thanks! Also, please run your port through portlint before submitting any more changes. You can find this in ports/devel. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 22:10:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 624E115DCE for ; Mon, 18 Oct 1999 22:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA48801; Mon, 18 Oct 1999 22:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id DA0C915D9A for ; Mon, 18 Oct 1999 22:01:56 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11dF36-0003tR-00; Mon, 18 Oct 1999 08:50:12 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id LAA72918; Mon, 18 Oct 1999 11:50:09 -0400 (EDT) (envelope-from will) Message-Id: <199910181550.LAA72918@shadow.blackdawn.com> Date: Mon, 18 Oct 1999 11:50:09 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14410: new port: x11/rxvt-devel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14410 >Category: ports >Synopsis: new port: x11/rxvt-devel >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 22:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: This is the development version of rxvt, which now seems to be getting more work on these days (as opposed to rxvt-2.6.1). This version of rxvt (2.7.1) supports non-English charsets better than the older version (mostly thanks to MANTANI Nobutaka , who should take my tarball and make a japanese version of this port, especially with the --enable-xim and --enable-languages configure args.) as well as several other improvements and bugfixes. I've been using this version of rxvt (built through the port) since October 1, and I find it very stable. So, please, no stability concerns. Also, I could not find any reason to not use the same patches that the original rxvt port does, as all such patches fix problems related to UTMP/WTMP breaks. Perhaps I will talk to the maintainer of rxvt (Geoff Wing ) about getting these auto-detected in rxvt's configure.in, etc. One additional note: it may still be worth keeping x11/rxvt as Geoff appears to be updating it with "stable" features from the development version. Additionally, some people's systems may not work with this version of rxvt, for whatever reason. Regrets only to David O'Brien - I don't think rclock has changed a single bit to bother porting rclock-devel. ;-) >How-To-Repeat: Use the shar below to import the rxvt-devel port into the tree. >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rxvt-devel # rxvt-devel/files # rxvt-devel/files/md5 # rxvt-devel/patches # rxvt-devel/patches/patch-aa # rxvt-devel/patches/patch-ab # rxvt-devel/patches/patch-ac # rxvt-devel/patches/patch-ad # rxvt-devel/pkg # rxvt-devel/pkg/COMMENT # rxvt-devel/pkg/DESCR # rxvt-devel/pkg/PLIST # rxvt-devel/Makefile # echo c - rxvt-devel mkdir -p rxvt-devel > /dev/null 2>&1 echo c - rxvt-devel/files mkdir -p rxvt-devel/files > /dev/null 2>&1 echo x - rxvt-devel/files/md5 sed 's/^X//' >rxvt-devel/files/md5 << 'END-of-rxvt-devel/files/md5' XMD5 (rxvt-2.7.1.tar.bz2) = 56fd0320b09c5bad674c7ce570af74bb END-of-rxvt-devel/files/md5 echo c - rxvt-devel/patches mkdir -p rxvt-devel/patches > /dev/null 2>&1 echo x - rxvt-devel/patches/patch-aa sed 's/^X//' >rxvt-devel/patches/patch-aa << 'END-of-rxvt-devel/patches/patch-aa' X--- Makefile.in.orig Sun Mar 28 21:31:37 1999 X+++ Makefile.in Tue Jun 8 11:07:52 1999 X@@ -10,6 +10,7 @@ X dummy: X X subdirs = src doc rclock src/graphics X+subdirs = src doc # rclock src/graphics X X DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog X END-of-rxvt-devel/patches/patch-aa echo x - rxvt-devel/patches/patch-ab sed 's/^X//' >rxvt-devel/patches/patch-ab << 'END-of-rxvt-devel/patches/patch-ab' X--- src/command.c.orig Thu Jun 3 06:17:09 1999 X+++ src/command.c Tue Jun 8 11:11:25 1999 X@@ -316,7 +316,7 @@ X ttydev = tty_name; X X # define PTYCHAR1 "pqrstuvwxyz" X-# define PTYCHAR2 "0123456789abcdef" X+# define PTYCHAR2 "0123456789abcdefhijklmnopqrstuv" X for (c1 = PTYCHAR1; *c1; c1++) { X ptydev[len] = ttydev[len] = *c1; X for (c2 = PTYCHAR2; *c2; c2++) { END-of-rxvt-devel/patches/patch-ab echo x - rxvt-devel/patches/patch-ac sed 's/^X//' >rxvt-devel/patches/patch-ac << 'END-of-rxvt-devel/patches/patch-ac' X--- doc/Makefile.in.orig Tue Jun 8 02:53:55 1999 X+++ doc/Makefile.in Tue Jun 8 11:12:40 1999 X@@ -66,8 +66,8 @@ X rxvt.tbl: yodl/rxvt.yo $(YODL_RXVT) yodl/versioninfo.yo yodl/masonyodl.yo X yodl2man -orxvt.tbl yodl/rxvt.yo X X-rxvt.1: rxvt.tbl Makefile X- @if test x$(TBL) = x; then : ; else echo "Making rxvt.1"; $(TBL) $(srcdir)/rxvt.tbl > rxvt.1 ; fi X+#rxvt.1: rxvt.tbl Makefile X+# @if test x$(TBL) = x; then : ; else echo "Making rxvt.1"; $(TBL) $(srcdir)/rxvt.tbl > rxvt.1 ; fi X X rxvt.html: yodl/rxvt.yo $(YODL_RXVT) yodl/versioninfo.yo yodl/masonyodl.yo X yodl2html -o$@ yodl/rxvt.yo END-of-rxvt-devel/patches/patch-ac echo x - rxvt-devel/patches/patch-ad sed 's/^X//' >rxvt-devel/patches/patch-ad << 'END-of-rxvt-devel/patches/patch-ad' X--- autoconf/config.h.in.orig Mon Aug 16 23:55:41 1999 X+++ autoconf/config.h.in Sun Aug 22 21:32:25 1999 X@@ -161,7 +161,7 @@ X #undef HAVE_UTMP_HOST X X /* Define location of utmp */ X-#undef RXVT_UTMP_FILE X+#define RXVT_UTMP_FILE "/var/run/utmp" X X /* Define in utmpx.h has struct utmpx */ X #undef HAVE_STRUCT_UTMPX X@@ -173,7 +173,7 @@ X #undef RXVT_UTMPX_FILE X X /* Define location of wtmp */ X-#undef RXVT_WTMP_FILE X+#define RXVT_WTMP_FILE "/var/log/wtmp" X X /* Define location of wtmpx */ X #undef RXVT_WTMPX_FILE END-of-rxvt-devel/patches/patch-ad echo c - rxvt-devel/pkg mkdir -p rxvt-devel/pkg > /dev/null 2>&1 echo x - rxvt-devel/pkg/COMMENT sed 's/^X//' >rxvt-devel/pkg/COMMENT << 'END-of-rxvt-devel/pkg/COMMENT' XA low memory usage xterm replacement that supports color END-of-rxvt-devel/pkg/COMMENT echo x - rxvt-devel/pkg/DESCR sed 's/^X//' >rxvt-devel/pkg/DESCR << 'END-of-rxvt-devel/pkg/DESCR' XThis port (rxvt-devel) is a port of the newer branch of rxvt Xthat is actively being worked on (v2.7.x). X XBetter support for non-English languages is included in this Xbranch, along with many fixes and additional smallish features. X XWWW: http://www.rxvt.org/ END-of-rxvt-devel/pkg/DESCR echo x - rxvt-devel/pkg/PLIST sed 's/^X//' >rxvt-devel/pkg/PLIST << 'END-of-rxvt-devel/pkg/PLIST' Xbin/rxvt END-of-rxvt-devel/pkg/PLIST echo x - rxvt-devel/Makefile sed 's/^X//' >rxvt-devel/Makefile << 'END-of-rxvt-devel/Makefile' X# New ports collection Makefile for: rxvt-devel X# Version required: 2.7.1 X# Date created: 01 Oct 1999 X# Whom: Will Andrews X# X# $FreeBSD$ X# X XDISTNAME= rxvt-2.7.1 XCATEGORIES= x11 XMASTER_SITES= ftp://ftp.rxvt.org/pub/rxvt/ \ X ftp://mason.primenet.com.au/pub/rxvt/ \ X ${MASTER_SITE_SUNSITE} XMASTER_SITE_SUBDIR= X11/terms XEXTRACT_SUFX= .tar.bz2 X XMAINTAINER= andrews@technologist.com X XLIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm X XUSE_X_PREFIX= yes XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --enable-utmp --enable-wtmp --with-xpm \ X --enable-xpm-background --enable-transparency XUSE_BZIP2= yes XMAN1= rxvt.1 X Xpost-install: X @${CHMOD} 4711 ${PREFIX}/bin/rxvt X X.include END-of-rxvt-devel/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 18 23:40:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DCA315F78 for ; Mon, 18 Oct 1999 23:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA55793; Mon, 18 Oct 1999 23:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.dinoex.sub.org (mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (Postfix) with ESMTP id D549615F39 for ; Mon, 18 Oct 1999 23:29:43 -0700 (PDT) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.9.3/8.9.3) with UUCP id IAA11727 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Oct 1999 08:27:26 +0200 (CEST) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id GAA19769 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Oct 1999 06:36:35 +0200 (CEST) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id FAA28212; Tue, 19 Oct 1999 05:51:58 +0200 (CEST) Message-Id: <199910190351.FAA28212@home.dinoex.sub.org> Date: Tue, 19 Oct 1999 05:51:58 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14411: news/ifmail deinstallation Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14411 >Category: ports >Synopsis: news/ifmail deinstallation >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 18 23:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.3-RELEASE i386 >Organization: privat >Environment: >Description: After the deinstallation of ifmail you find left over files in /usr/share/examples/ifmail PLIST was incomplete >How-To-Repeat: install, and deinstall >Fix: Apply this patch diff ifmail/pkg/PLIST ifmail-2.15-dinoex/pkg/PLIST --- ifmail/pkg/PLIST Wed Aug 19 20:38:05 1998 +++ ifmail-2.15-dinoex/pkg/PLIST Tue Oct 19 05:47:24 1999 @@ -24,6 +24,9 @@ share/examples/ifmail/cnews/sys share/examples/ifmail/config share/examples/ifmail/contrib/README +share/examples/ifmail/contrib/abbs2nf/AREAS.BBS +share/examples/ifmail/contrib/abbs2nf/Areas +share/examples/ifmail/contrib/abbs2nf/abbs2nf.pl share/examples/ifmail/contrib/a2dbm share/examples/ifmail/contrib/areafix-0.5.07/HISTORY share/examples/ifmail/contrib/areafix-0.5.07/README @@ -34,8 +37,11 @@ share/examples/ifmail/contrib/areafix-0.5.07/passwords share/examples/ifmail/contrib/areafix-0.5.07/restricted share/examples/ifmail/contrib/areafix-0.5.07/uplinks +share/examples/ifmail/contrib/areafix-0.5.07-jv10/areafix.pl +share/examples/ifmail/contrib/areafix-0.6.02/areafix share/examples/ifmail/contrib/cnews-msgids share/examples/ifmail/contrib/edalias +share/examples/ifmail/contrib/edalias.cgi share/examples/ifmail/contrib/fdpass/NOTICE share/examples/ifmail/contrib/fdpass/fdpass.c share/examples/ifmail/contrib/fdpass/session.h @@ -50,6 +56,7 @@ share/examples/ifmail/contrib/iftelnetd/iftelnetd.c share/examples/ifmail/contrib/iftelnetd/inetd.conf share/examples/ifmail/contrib/iftelnetd/services +share/examples/ifmail/contrib/install.russian.koi8 share/examples/ifmail/contrib/ldbm share/examples/ifmail/contrib/lmsgid share/examples/ifmail/contrib/mmdf/Makefile @@ -111,6 +118,7 @@ share/examples/ifmail/contrib/u-tic/u-fix.pl share/examples/ifmail/contrib/u-tic/u-tic.pl share/examples/ifmail/contrib/u-tic/xfutil.pl +share/examples/ifmail/exim/exim.template share/examples/ifmail/getnodelist share/examples/ifmail/ifmail.gif share/examples/ifmail/inn/newsfeeds @@ -128,6 +136,9 @@ share/examples/ifmail/sendmail/ifmail.m4-bosman share/examples/ifmail/sendmail/ifmail.m4-butler share/examples/ifmail/sendmail/ifmail.m4-selig +share/examples/ifmail/sendmail/ifmail.m4-srtxg/README +share/examples/ifmail/sendmail/ifmail.m4-srtxg/ifmail.mc +share/examples/ifmail/sendmail/ifmail.m4-srtxg/fnet.m4 share/examples/ifmail/sendmail/sendmail.cf-1 share/examples/ifmail/sendmail/sendmail.cf-2 share/examples/ifmail/smail/ftnpaths @@ -138,12 +149,11 @@ share/examples/ifmail/zmailer/routes share/examples/ifmail/zmailer/scheduler.conf share/examples/ifmail/zmailer/sm.conf -@dirrm share/examples/ifmail/inn -@dirrm share/examples/ifmail/tcp -@dirrm share/examples/ifmail/smail -@dirrm share/examples/ifmail/sendmail -@dirrm share/examples/ifmail/zmailer @dirrm share/examples/ifmail/cnews +@dirrm share/examples/ifmail/contrib/abbs2nf +@dirrm share/examples/ifmail/contrib/areafix-0.5.07 +@dirrm share/examples/ifmail/contrib/areafix-0.5.07-jv10 +@dirrm share/examples/ifmail/contrib/areafix-0.6.02 @dirrm share/examples/ifmail/contrib/mmdf @dirrm share/examples/ifmail/contrib/tic/config @dirrm share/examples/ifmail/contrib/tic @@ -151,7 +161,13 @@ @dirrm share/examples/ifmail/contrib/news_via_mail @dirrm share/examples/ifmail/contrib/fdpass @dirrm share/examples/ifmail/contrib/iftelnetd -@dirrm share/examples/ifmail/contrib/areafix-0.5.07 @dirrm share/examples/ifmail/contrib +@dirrm share/examples/ifmail/exim +@dirrm share/examples/ifmail/inn @dirrm share/examples/ifmail/inouttabs +@dirrm share/examples/ifmail/sendmail/ifmail.m4-srtxg +@dirrm share/examples/ifmail/sendmail +@dirrm share/examples/ifmail/smail +@dirrm share/examples/ifmail/tcp +@dirrm share/examples/ifmail/zmailer @dirrm share/examples/ifmail >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 3:57: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.rp-plus.de (clubserv.rp-online.de [149.221.232.11]) by hub.freebsd.org (Postfix) with ESMTP id 2CD0216576 for ; Tue, 19 Oct 1999 03:56:56 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from neutron.cichlids.com (as7-029.rp-plus.de [149.221.239.29]) by mail.rp-plus.de (8.9.1a/8.9.1) with ESMTP id MAA19208 for ; Tue, 19 Oct 1999 12:56:55 +0200 (METDST) Received: from cichlids.cichlids.com (root@cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (8.9.3/8.9.1) with ESMTP id MAA30487 for ; Tue, 19 Oct 1999 12:56:48 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id MAA21366 for ports@freebsd.org; Tue, 19 Oct 1999 12:59:10 +0200 (CEST) (envelope-from alex) From: Alexander Langer Date: Tue, 19 Oct 1999 12:59:10 +0200 To: ports@freebsd.org Subject: www/apache13-php3 without httpd.conf Message-ID: <19991019125910.A21354@cichlids.cichlids.com> Mail-Followup-To: ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! The apache13-* ports do not have a httpd.conf, but an apache.conf instead. apache13 has a httpd.conf webglimpse wants a /usr/local/etc/apache/httpd.conf, it's not there, when I install one of the apache13-* ports, so it wants to install apache13 without anything. There is no need for this behaviour, imo, because apache13 already is installed. Shall I file a PR? Or is there a reason for this behaviour? Alex -- I doubt, therefore I might be. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 4: 8:36 1999 Delivered-To: freebsd-ports@freebsd.org Received: from home.ab.net.tw (home.ab.net.tw [210.66.66.2]) by hub.freebsd.org (Postfix) with ESMTP id 62332166F0; Tue, 19 Oct 1999 04:08:28 -0700 (PDT) (envelope-from ) Received: from pc01 ([203.75.102.224]) by home.ab.net.tw (8.8.7/8.8.7) with SMTP id QAA16859; Tue, 19 Oct 1999 16:12:12 +0800 To: bang@mail.bang.com.tw From: Hi-Life¥Í¬¡¸ê°Tºô@home.ab.net.tw Subject: ±z¦n¡G Date: Tue, 19 Oct 1999 16:36:58 +0800 Message-Id: <36452.692347222218800.10143@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ¾_¨a¡I»¬¨a¡I ¦ù¥X±zÂù¤â¡E¤j®aÀ°À°¦£--±Ï´©¦æ°Ê»Ý­n±z Hi-Life¥Í¬¡¸ê°Tºô¬°´©§U¦¹¦¸¾_¨a¡A¯S»P§õ®õ²»¥ý¥Í¦X§@µo¦æ»¬¨aCD¡A ¦Ó«á©Ò±o±N²¾§@921¤j¦a¾_­««Ø°òª÷¡C CD¼Ö¦±¥Ñ§õ®õ²»¥ý¥Í§@¦±¡A¦Ó¥Ø«e¤½¶}¼x¨Dºqµü¡AºI¤î¤é´Á¦Ü88¦~10¤ë20¤é ¦p¦³¿³½ì°Ñ»PªÌ¡A½Ð±N±zªº³Ð§@µü E-Mail:lee-tai-hsiang@mail.art-corridor.com.tw ©ÎªÌ¶Ç¯u04-2528407 ¡» ºô¸ô¥þ¥Á¶}Á¿ ¡X¥»¶g¥DÃD¡GªÀ·|°ÝÃD¡A¼h¥X¤£½a http://www.art-corridor.com.tw/chatgo/index.htm ¡» ¼ö½u°Q½×°Ï ¡X¥»¶g¥DÃD¡G¹ª»R¥xÆW¡E¨«¥X´d¶Ë http://www.art-corridor.com.tw/board/index.htm ¡»Hi-Life¥Í¬¡¸ê°Tºô http://www.bang.com.tw/week.htm ¡»¤Ñ¡B¦a¡B¤H¤T³¡¦±¡A¥¿©Û¶Ò¤G³¡¦±¤¤ http://www.art-corridor.com.tw/tain-di-ren/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 4:50: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D593F168C4 for ; Tue, 19 Oct 1999 04:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA89866; Tue, 19 Oct 1999 04:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bulls.mei.co.jp (bulls.mei.co.jp [202.224.189.102]) by hub.freebsd.org (Postfix) with ESMTP id 2C734167FC for ; Tue, 19 Oct 1999 04:45:25 -0700 (PDT) (envelope-from takamune@avrl.mei.co.jp) Received: by bulls.mei.co.jp (8.9.3/3.7W) with ESMTP id UAA11256 for ; Tue, 19 Oct 1999 20:45:24 +0900 (JST) Received: by dodgers.mei.co.jp (8.9.1/3.7W) with SMTP id UAA27373 for ; Tue, 19 Oct 1999 20:45:24 +0900 (JST) Received: by avrlgate1.avrl.mei.co.jp (8.6.10+2.4W/3.3W3-avrl3.0) id UAA27185; Tue, 19 Oct 1999 20:45:23 +0900 Received: by dream.avrl.mei.co.jp (8.9.3/3.6W-03/04/98-dream) id UAA05520; Tue, 19 Oct 1999 20:45:23 +0900 (JST) Message-Id: <199910191145.UAA05520@dream.avrl.mei.co.jp> Date: Tue, 19 Oct 1999 20:45:23 +0900 (JST) From: takamune@avrl.mei.co.jp Reply-To: takamune@avrl.mei.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14413: Update: japanese/{bookview,eb,epwutil,ndtpd} Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14413 >Category: ports >Synopsis: Update: japanese/{bookview,eb,epwutil,ndtpd} >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 04:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Kazutoki TAKAMUNE >Release: FreeBSD 3.3-STABLE i386 >Organization: Matsushita Electric Industrial Co., Ltd. >Environment: FreeBSD 3.3-STABLE(Mon Oct 18 13:20:31 JST 1999) ports/Mk/bsd.port.mk,v 1.323 1999/10/10 17:19:49 >Description: I'm the maintainer of these 4 ports. Please apply this patch to fix MASTER_SITES and DISTFILES. Changes: - No files have been added or removed. - */Makefile o Delete 'ftp://ftp.mei.co.jp/'. It has stopped anonymous FTP service. o Delete directories '*/old/'. Easy to see distfiles survey. ;-P - japanse/eb/Makefile o Move 'appendix' distfiles into subdirectory. >How-To-Repeat: >Fix: diff -x CVS -ur /usr/ports/japanese/bookview/Makefile japanese/bookview/Makefile --- /usr/ports/japanese/bookview/Makefile Thu Aug 26 10:17:02 1999 +++ japanese/bookview/Makefile Tue Oct 19 20:04:22 1999 @@ -9,9 +9,7 @@ DISTNAME= bookview-2.4.4 PKGNAME= ja-bookview-2.4.4 CATEGORIES= japanese -MASTER_SITES= ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/ \ - ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/old/ \ - ftp://ftp.mei.co.jp/free/others/Dictionary/ndtp/bookview/ +MASTER_SITES= ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/ MAINTAINER= takamune@avrl.mei.co.jp diff -x CVS -ur /usr/ports/japanese/eb/Makefile japanese/eb/Makefile --- /usr/ports/japanese/eb/Makefile Tue Sep 21 10:38:09 1999 +++ japanese/eb/Makefile Tue Oct 19 19:37:14 1999 @@ -9,13 +9,8 @@ DISTNAME= eb-2.3.3 PKGNAME= ja-eb-2.3.3 CATEGORIES= japanese -MASTER_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/appendix/ \ - ftp://ftp.sra.co.jp/pub/misc/eb/appendix/old/ \ - ftp://ftp.sra.co.jp/pub/misc/eb/ \ - ftp://ftp.sra.co.jp/pub/misc/eb/old/ \ - ftp://ftp.mei.co.jp/free/others/Dictionary/eb/appendix/ \ - ftp://ftp.mei.co.jp/free/others/Dictionary/eb/ -DISTFILES= ${EBFILES} ${APPENDIXFILES} +MASTER_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/ +DISTFILES= ${EBFILES} ${APPENDIXFILES:S,^,appendix/,} MAINTAINER= takamune@avrl.mei.co.jp diff -x CVS -ur /usr/ports/japanese/epwutil/Makefile japanese/epwutil/Makefile --- /usr/ports/japanese/epwutil/Makefile Tue Sep 7 10:32:11 1999 +++ japanese/epwutil/Makefile Tue Oct 19 19:53:57 1999 @@ -9,8 +9,7 @@ DISTNAME= epwutil-1.0 PKGNAME= ja-epwutil-1.0 CATEGORIES= japanese -MASTER_SITES= ftp://ftp.nerimadors.or.jp/pub/epwutil/ \ - ftp://ftp.mei.co.jp/free/others/Dictionary/epwutil/ +MASTER_SITES= ftp://ftp.nerimadors.or.jp/pub/epwutil/ MAINTAINER= takamune@avrl.mei.co.jp diff -x CVS -ur /usr/ports/japanese/ndtpd/Makefile japanese/ndtpd/Makefile --- /usr/ports/japanese/ndtpd/Makefile Tue Sep 21 10:38:11 1999 +++ japanese/ndtpd/Makefile Tue Oct 19 19:39:10 1999 @@ -9,9 +9,7 @@ DISTNAME= ndtpd-2.3.3 PKGNAME= ja-ndtpd-2.3.3 CATEGORIES= japanese -MASTER_SITES= ftp://ftp.sra.co.jp/pub/net/ndtp/ndtpd/ \ - ftp://ftp.sra.co.jp/pub/net/ndtp/ndtpd/old/ \ - ftp://ftp.mei.co.jp/free/others/Dictionary/ndtp/ndtpd/ +MASTER_SITES= ftp://ftp.sra.co.jp/pub/net/ndtp/ndtpd/ MAINTAINER= takamune@avrl.mei.co.jp >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 7:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 39C9A172B3 for ; Tue, 19 Oct 1999 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA53949; Tue, 19 Oct 1999 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id E93F114EC2 for ; Tue, 19 Oct 1999 07:38:20 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id 831B59B22; Tue, 19 Oct 1999 10:38:19 -0400 (EDT) Message-Id: <19991019143819.831B59B22@pawn.primelocation.net> Date: Tue, 19 Oct 1999 10:38:19 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14414: Update port: sysutils/lmmon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14414 >Category: ports >Synopsis: Update port: sysutils/lmmon >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 07:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users of Orlando >Environment: FreeBSD earth.fxp 4.0-CURRENT FreeBSD 4.0-CURRENT #5: Fri Oct 15 10:13:22 EDT 1999 >Description: Update port: sysutils/lmmon lmmon now uses either /dev/smb* or /dev/io. Tested under FreeBSD 4.0-CURRENT and FreeBSD 3.2-STABLE >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/lmmon/Makefile,v retrieving revision 1.4 diff -u -u -r1.4 Makefile --- Makefile 1999/10/10 22:16:26 1.4 +++ Makefile 1999/10/19 14:22:02 @@ -1,12 +1,12 @@ # New ports collection makefile for: lmmon -# Version required: 0.52 +# Version required: 0.55 # Date created: 24 September 1999 # Whom: Chris D. Faulhaber # # $FreeBSD: ports/sysutils/lmmon/Makefile,v 1.4 1999/10/10 22:16:26 cpiazza Exp $ # -DISTNAME= lmmon-0.52 +DISTNAME= lmmon-0.55 CATEGORIES= sysutils MASTER_SITES= http://www.fxp.org/~jedgar/ @@ -15,10 +15,4 @@ MAN8= lmmon.8 MANCOMPRESSED= yes -.include - -.if ${OSVERSION} < 400000 -FORBIDDEN= "This port uses the intpm controller which is only available in FreeBSD 4.0+" -.endif - -.include +.include Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/sysutils/lmmon/files/md5,v retrieving revision 1.2 diff -u -u -r1.2 md5 --- md5 1999/09/28 19:24:43 1.2 +++ md5 1999/10/19 14:22:02 @@ -1 +1 @@ -MD5 (lmmon-0.52.tar.gz) = 6c642fe27353873b1b232cbf399be7fd +MD5 (lmmon-0.55.tar.gz) = 97fa9b0e26dea53923a6fa194a7128a4 Index: pkg/COMMENT =================================================================== RCS file: /home/ncvs/ports/sysutils/lmmon/pkg/COMMENT,v retrieving revision 1.1.1.1 diff -u -u -r1.1.1.1 COMMENT --- COMMENT 1999/09/27 17:18:48 1.1.1.1 +++ COMMENT 1999/10/19 14:22:02 @@ -1 +1 @@ -Display information gathered from LM78/79 chipsets +Display info gathered from MB power management controllers Index: pkg/DESCR =================================================================== RCS file: /home/ncvs/ports/sysutils/lmmon/pkg/DESCR,v retrieving revision 1.2 diff -u -u -r1.2 DESCR --- DESCR 1999/09/28 19:24:43 1.2 +++ DESCR 1999/10/19 14:22:02 @@ -1,6 +1,16 @@ lmmon -This program displays information gathered from LM78/79 chipsets -onboard many motherboard. Displayed values include fan speeds, -motherboard temperature, and various voltages. Currently, this -is only supported in FreeBSD 4.0. +This program displays information gathered from a motherboard +power management controller (e.g. LM78/79). Displayed values +include fan speeds, motherboard temperature, and various +voltages. By default it cycles once per second using a curses- +based display. + +Currently, the /dev/smb0 interface is only supported in FreeBSD +4.0; however, the /dev/io interface may work with many +motherboards in FreeBSD 3.x and some non-LM78/79 motherboards. + +WWW: http://www.fxp.org/~jedgar/ + +- Chris D. Faulhaber +jedgar@fxp.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 8:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F293173C0 for ; Tue, 19 Oct 1999 08:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA56779; Tue, 19 Oct 1999 08:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kronos.alcnet.com (kronos.alcnet.com [63.69.28.22]) by hub.freebsd.org (Postfix) with ESMTP id 7F74F17367 for ; Tue, 19 Oct 1999 08:00:16 -0700 (PDT) (envelope-from kbyanc@kronos.alcnet.com) Received: (from kbyanc@localhost) by kronos.alcnet.com (8.9.3/8.9.3/antispam) id LAA03032; Tue, 19 Oct 1999 11:00:16 -0400 (EDT) Message-Id: <199910191500.LAA03032@kronos.alcnet.com> Date: Tue, 19 Oct 1999 11:00:16 -0400 (EDT) From: kbyanc@posi.net Reply-To: kbyanc@posi.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14415: updated port: udmsearch-2.1.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14415 >Category: ports >Synopsis: updated udmsearch port to version 2.1.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 08:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Kelly Yancey >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: >Description: Below is a recursive diff to the udmsearch port which updates it to the latest (2.1.5) version. - Kelly >How-To-Repeat: >Fix: diff -ur udmsearch.orig/Makefile udmsearch/Makefile --- udmsearch.orig/Makefile Tue Oct 19 10:36:19 1999 +++ udmsearch/Makefile Tue Oct 19 10:38:00 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: udmsearch -# Version required: 2.1.1 -# Date created: 09/15/1999 +# Version required: 2.1.5 +# Date created: 10/19/1999 # Whom: Kelly Yancey # # $FreeBSD$ # -DISTNAME= udmsearch-2.1.1 +DISTNAME= udmsearch-2.1.5 CATEGORIES= www databases MASTER_SITES= http://search.udm.net/about/Download/ \ http://mysearch.udm.net/Download/ \ @@ -31,7 +31,7 @@ ${MKDIR} ${PREFIX}/etc/udmsearch post-install: - @cp -R ${WRKDIR}/udmsearch-2.1.1/create ${PREFIX}/etc/udmsearch + @cp -R ${WRKDIR}/${DISTNAME}/create ${PREFIX}/etc/udmsearch @strip ${PREFIX}/sbin/indexer @strip ${PREFIX}/bin/udmsearch/search.cgi @echo diff -ur udmsearch.orig/files/md5 udmsearch/files/md5 --- udmsearch.orig/files/md5 Tue Oct 19 10:36:19 1999 +++ udmsearch/files/md5 Tue Oct 19 10:42:33 1999 @@ -1 +1 @@ -MD5 (udmsearch-2.1.1.tar.gz) = 343b0f8f4a20b5e2fbd93b2c22d6748e +MD5 (udmsearch-2.1.5.tar.gz) = 35adb0c32a1e9af078130e63bfe7be25 Only in udmsearch.orig: patches >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 8:10: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BA9F0173B1 for ; Tue, 19 Oct 1999 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA56786; Tue, 19 Oct 1999 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 19 Oct 1999 08:10:02 -0700 (PDT) Message-Id: <199910191510.IAA56786@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Chris D. Faulhaber" Subject: Re: ports/14414: Update port: sysutils/lmmon Reply-To: "Chris D. Faulhaber" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14414; it has been noted by GNATS. From: "Chris D. Faulhaber" To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/14414: Update port: sysutils/lmmon Date: Tue, 19 Oct 1999 11:01:45 -0400 (EDT) Ooops...here is the correct diff... Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/lmmon/Makefile,v retrieving revision 1.4 diff -u -u -r1.4 Makefile --- Makefile 1999/10/10 22:16:26 1.4 +++ Makefile 1999/10/19 14:51:21 @@ -1,12 +1,12 @@ # New ports collection makefile for: lmmon -# Version required: 0.52 +# Version required: 0.55 # Date created: 24 September 1999 # Whom: Chris D. Faulhaber # # $FreeBSD: ports/sysutils/lmmon/Makefile,v 1.4 1999/10/10 22:16:26 cpiazza Exp $ # -DISTNAME= lmmon-0.52 +DISTNAME= lmmon-0.55 CATEGORIES= sysutils MASTER_SITES= http://www.fxp.org/~jedgar/ @@ -15,10 +15,16 @@ MAN8= lmmon.8 MANCOMPRESSED= yes -.include - -.if ${OSVERSION} < 400000 -FORBIDDEN= "This port uses the intpm controller which is only available in FreeBSD 4.0+" +pre-configure: +.if !defined (IO_ONLY) + @${ECHO} + @${ECHO} "Define IO_ONLY (make IO_ONLY=yes) to build with" + @${ECHO} "/dev/io support only." + @${ECHO} +.else + @${ECHO} + @${ECHO} "Building with only /dev/io interface support. + @${ECHO} .endif -.include +.include Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/sysutils/lmmon/files/md5,v retrieving revision 1.2 diff -u -u -r1.2 md5 --- md5 1999/09/28 19:24:43 1.2 +++ md5 1999/10/19 14:51:21 @@ -1 +1 @@ -MD5 (lmmon-0.52.tar.gz) = 6c642fe27353873b1b232cbf399be7fd +MD5 (lmmon-0.55.tar.gz) = 97fa9b0e26dea53923a6fa194a7128a4 Index: pkg/COMMENT =================================================================== RCS file: /home/ncvs/ports/sysutils/lmmon/pkg/COMMENT,v retrieving revision 1.1.1.1 diff -u -u -r1.1.1.1 COMMENT --- COMMENT 1999/09/27 17:18:48 1.1.1.1 +++ COMMENT 1999/10/19 14:51:21 @@ -1 +1 @@ -Display information gathered from LM78/79 chipsets +Display information gathered from MB power management controller Index: pkg/DESCR =================================================================== RCS file: /home/ncvs/ports/sysutils/lmmon/pkg/DESCR,v retrieving revision 1.2 diff -u -u -r1.2 DESCR --- DESCR 1999/09/28 19:24:43 1.2 +++ DESCR 1999/10/19 14:51:21 @@ -1,6 +1,16 @@ lmmon -This program displays information gathered from LM78/79 chipsets -onboard many motherboard. Displayed values include fan speeds, -motherboard temperature, and various voltages. Currently, this -is only supported in FreeBSD 4.0. +This program displays information gathered from a motherboard +power management controller (e.g. LM78/79). Displayed values +include fan speeds, motherboard temperature, and various +voltages. By default it cycles once per second using a curses- +based display. + +Currently, the /dev/smb0 interface is only supported in FreeBSD +4.0; however, the /dev/io interface may work with many +motherboards in FreeBSD 3.x and some non-LM78/79 motherboards. + +WWW: http://www.fxp.org/~jedgar/ + +- Chris D. Faulhaber +jedgar@fxp.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 8:10:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F1151173C4 for ; Tue, 19 Oct 1999 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA56795; Tue, 19 Oct 1999 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 5C35017377 for ; Tue, 19 Oct 1999 08:02:29 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id AE2DA9B22; Tue, 19 Oct 1999 11:02:28 -0400 (EDT) Message-Id: <19991019150228.AE2DA9B22@pawn.primelocation.net> Date: Tue, 19 Oct 1999 11:02:28 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14416: Update port: sysutils/wmlmmon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14416 >Category: ports >Synopsis: Update port: sysutils/wmlmmon >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 08:10:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users of Orlando >Environment: FreeBSD earth.fxp 4.0-CURRENT FreeBSD 4.0-CURRENT #5: Fri Oct 15 10:13:22 EDT 1999 >Description: Update port: sysutils/wmlmmon wmlmmon now uses either /dev/smb* or /dev/io. Tested under FreeBSD 4.0-CURRENT and FreeBSD 3.2-STABLE >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/wmlmmon/Makefile,v retrieving revision 1.5 diff -u -u -r1.5 Makefile --- Makefile 1999/10/10 22:16:27 1.5 +++ Makefile 1999/10/19 14:49:36 @@ -1,12 +1,12 @@ # New ports collection makefile for: wmlmmon -# Version required: 0.52 +# Version required: 0.55 # Date created: 24 September 1999 # Whom: Chris D. Faulhaber # # $FreeBSD: ports/sysutils/wmlmmon/Makefile,v 1.5 1999/10/10 22:16:27 cpiazza Exp $ # -DISTNAME= wmlmmon-0.52 +DISTNAME= wmlmmon-0.55 CATEGORIES= sysutils windowmaker MASTER_SITES= http://www.fxp.org/~jedgar/ @@ -19,10 +19,16 @@ MAN8= wmlmmon.8 MANCOMPRESSED= yes -.include - -.if ${OSVERSION} < 400000 -FORBIDDEN= "This port uses the intpm controller which is only available in FreeBSD 4.0+" +pre-configure: +.if !defined (IO_ONLY) + @${ECHO} + @${ECHO} "Define IO_ONLY (make IO_ONLY=yes) to build with" + @${ECHO} "/dev/io support only." + @${ECHO} +.else + @${ECHO} + @${ECHO} "Building with only /dev/io interface support. + @${ECHO} .endif -.include +.include Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/sysutils/wmlmmon/files/md5,v retrieving revision 1.2 diff -u -u -r1.2 md5 --- md5 1999/09/28 19:31:43 1.2 +++ md5 1999/10/19 14:49:36 @@ -1 +1 @@ -MD5 (wmlmmon-0.52.tar.gz) = ae7e52cf36abe3624a95b267ca52ef38 +MD5 (wmlmmon-0.55.tar.gz) = 9e4b640f1fc40084739abfa75f1ff5ce Index: pkg/COMMENT =================================================================== RCS file: /home/ncvs/ports/sysutils/wmlmmon/pkg/COMMENT,v retrieving revision 1.1.1.1 diff -u -u -r1.1.1.1 COMMENT --- COMMENT 1999/09/27 17:20:05 1.1.1.1 +++ COMMENT 1999/10/19 14:49:36 @@ -1 +1 @@ -WindowMaker dock app to display LM78/79 information +WM dock app to display info from MB power management controllers Index: pkg/DESCR =================================================================== RCS file: /home/ncvs/ports/sysutils/wmlmmon/pkg/DESCR,v retrieving revision 1.2 diff -u -u -r1.2 DESCR --- DESCR 1999/09/28 19:31:44 1.2 +++ DESCR 1999/10/19 14:49:36 @@ -1,7 +1,15 @@ wmlmmon -This program displays information gathered from LM78/79 chipsets -onboard many motherboards onto a [standard] WindowMaker dock app. -Displayed values include fan speeds, motherboard temperature, -and various voltages. Currently, this is only supported in -FreeBSD 4.0. +This program displays information gathered from a motherboard +power management controller (e.g. LM78/79) onto a [standard] +WindowMaker dock app. Displayed values include fan speeds, +motherboard temperature, and various voltages. + +Currently, the /dev/smb0 interface is only supported in FreeBSD +4.0; however, the /dev/io interface may work with many +motherboards in FreeBSD 3.x and some non-LM78/79 motherboards. + +WWW: http://www.fxp.org/~jedgar/ + +- Chris D. Faulhaber +jedgar@fxp.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 10: 0: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BBA2A176EC for ; Tue, 19 Oct 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA67865; Tue, 19 Oct 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.dinoex.sub.org (mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (Postfix) with ESMTP id 6CEEC1502C for ; Tue, 19 Oct 1999 09:53:49 -0700 (PDT) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.9.3/8.9.3) with UUCP id SAA13986 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Oct 1999 18:53:20 +0200 (CEST) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id QAA26646 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Oct 1999 16:36:49 +0200 (CEST) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id PAA71533; Tue, 19 Oct 1999 15:44:54 +0200 (CEST) Message-Id: <199910191344.PAA71533@home.dinoex.sub.org> Date: Tue, 19 Oct 1999 15:44:54 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14420: news/cnews is broken with awk 3.0.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14420 >Category: ports >Synopsis: news/cnews is broken with awk 3.0.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 10:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.3-RELEASE i386 >Organization: privat >Environment: FreeBSD 3.2 FreeBSD 3.3 system awk (gawk 3.0.3) >Description: Regression check fails (make r) News system crash, cause awk corrupts output >How-To-Repeat: >Fix: use akw 2.15 or awk 3.0.4 and apply this patches diff cnews/Makefile cnews-cr.g/Makefile --- cnews/Makefile Sat Oct 2 06:06:49 1999 +++ cnews-cr.g/Makefile Tue Oct 19 15:39:36 1999 @@ -44,6 +44,7 @@ mkhistory.8cn newsaux.8cn newsbatch.8cn newsmail.8cn \ newsmaint.8cn newsoverview.8 relaynews.8cn report.8cn \ rnews.8cn +PLIST= ${WRKDIR}/.PLIST.sed MODIFY= conf/quiz.def \ conf/substitutions \ @@ -55,6 +56,13 @@ NEWSOV?= /var/news/over.view PGPVERIFY?= pgpverify-1.12 +.include + +.if ${OSVERSION} < 300000 +.else +BROKEN= gawk need to be updated to 3.0.4 +.endif + pre-patch: @${CP} ${DISTDIR}/${DIST_SUBDIR}/${PGPVERIFY} ${WRKSRC}/${PGPVERIFY} @@ -70,6 +78,10 @@ -e "s=/usr/local/bin=${PREFIX}/bin=" \ ${WRKSRC}/${i}.sed >${WRKSRC}/${i} .endfor + @${SED} \ + -e "s=news/cnewsbin=${NEWSBIN:S=${PREFIX}/==}=" \ + -e "s=news/lib=${NEWSCTL:S=${PREFIX}/==}=" \ + ${PKGDIR}/PLIST >${PLIST} do-install: ${RM} -f ${PREFIX}/bin/inews @@ -106,4 +118,4 @@ @${ECHO} "!!!!!!!!" @${ECHO} "" -.include +.include diff cnews/pkg/PLIST cnews-cr.g/pkg/PLIST --- cnews/pkg/PLIST Sat Oct 2 06:06:49 1999 +++ cnews-cr.g/pkg/PLIST Tue Oct 19 15:18:42 1999 @@ -150,5 +150,7 @@ @dirrm news/cnewsbin/maint @dirrm news/cnewsbin/nov @dirrm news/cnewsbin/relay -@dirrm news/lib/bin @dirrm news/cnewsbin +@dirrm news/lib/bin +@dirrm news/lib +@dirrm news >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 10: 0:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 157A4176EE for ; Tue, 19 Oct 1999 10:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA67874; Tue, 19 Oct 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.dinoex.sub.org (mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (Postfix) with ESMTP id 4266117519 for ; Tue, 19 Oct 1999 09:53:52 -0700 (PDT) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.9.3/8.9.3) with UUCP id SAA13987 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Oct 1999 18:53:21 +0200 (CEST) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id QAA26655 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Oct 1999 16:36:50 +0200 (CEST) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id PAA71424; Tue, 19 Oct 1999 15:44:48 +0200 (CEST) Message-Id: <199910191344.PAA71424@home.dinoex.sub.org> Date: Tue, 19 Oct 1999 15:44:48 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14421: news/nntp honor PREFIX Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14421 >Category: ports >Synopsis: news/cnews honor PREFIX >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 10:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.3-RELEASE i386 >Organization: privat >Environment: ports/news/cnews installed >Description: New rework of configuration >How-To-Repeat: >Fix: apply this patches diff nntp/Makefile nntp-1.5.11.5/Makefile --- nntp/Makefile Sat Oct 2 06:06:56 1999 +++ nntp-1.5.11.5/Makefile Tue Oct 19 14:56:13 1999 @@ -14,12 +14,36 @@ MAINTAINER= adam@veda.is -BUILD_DEPENDS= ${PREFIX}/lib/libcnews.a:${PORTSDIR}/news/cnews +BUILD_DEPENDS= ${LOCALBASE}/lib/libcnews.a:${PORTSDIR}/news/cnews MAN1= nntpxmit.1 MAN8= nntpd.8c mkgrdates.8c +PLIST= ${WRKDIR}/.PLIST.sed + +MODIFY= conf.h xfer/Makefile xmit/Makefile + +NEWSBIN?= ${PREFIX}/news/cnewsbin +NEWSCTL?= ${PREFIX}/news/lib +NEWSARTS?= /var/news +NEWSOV?= /var/news/over.view post-extract: @${CP} ${WRKSRC}/conf.h.dist ${WRKSRC}/conf.h + +pre-configure: +.for i in ${MODIFY} + @${MV} ${WRKSRC}/${i} ${WRKSRC}/${i}.sed + ${SED} \ + -e "s=/usr/local/news/lib/bin/config=${NEWSBIN}/config=" \ + -e "s=/usr/local/news/cnewsbin=${NEWSBIN}=" \ + -e "s=/usr/local/news/lib=${NEWSCTL}=" \ + -e "s=/var/news/over.view=${NEWSOV}=" \ + -e "s=/var/news=${NEWSARTS}=" \ + -e "s=/usr/local/bin=${PREFIX}/bin=" \ + ${WRKSRC}/${i}.sed >${WRKSRC}/${i} +.endfor + @${SED} \ + -e "s=news/cnewsbin=${NEWSBIN:S=${PREFIX}/==}=" \ + ${PKGDIR}/PLIST >${PLIST} .include diff nntp/patches/patch-ae nntp-1.5.11.5/patches/patch-ae --- nntp/patches/patch-ae Thu Jan 1 01:00:00 1970 +++ nntp-1.5.11.5/patches/patch-ae Tue Oct 19 14:21:44 1999 @@ -0,0 +1,20 @@ +--- conf.h.orig Tue Oct 19 14:19:21 1999 ++++ conf.h Tue Oct 19 14:21:08 1999 +@@ -267,7 +267,7 @@ + /* + * This file is where access information is stored + */ +-#define ACCESS_FILE "/usr/local/news/lib/nntp_access" ++#define ACCESS_FILE "/usr/local/etc/nntp_access" + + /* + * But if you don't have C News or INN, you can run acttimes (see the support +@@ -285,7 +285,7 @@ + #define NEWSGROUPS_FILE "/usr/local/news/lib/newsgroups" + #define HISTORY_FILE "/usr/local/news/lib/history" + #define SPOOLDIR "/var/news" +-#define INEWS "/usr/local/news/lib/inews" ++#define INEWS "/usr/local/bin/inews" + #define RNEWS "/usr/local/bin/rnews" /* Link to inews? */ + + /* >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 10: 0:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 69CE4176EA for ; Tue, 19 Oct 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA67856; Tue, 19 Oct 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.dinoex.sub.org (mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (Postfix) with ESMTP id 00ADE17519 for ; Tue, 19 Oct 1999 09:53:41 -0700 (PDT) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.9.3/8.9.3) with UUCP id SAA13981 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Oct 1999 18:52:51 +0200 (CEST) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id OAA04371 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Oct 1999 14:36:42 +0200 (CEST) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id NAA46752; Tue, 19 Oct 1999 13:48:30 +0200 (CEST) Message-Id: <199910191148.NAA46752@home.dinoex.sub.org> Date: Tue, 19 Oct 1999 13:48:30 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14419: news/fidogate fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14419 >Category: ports >Synopsis: news/fidogate fix for LOCALBASE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 10:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.2-RELEASE i386 >Organization: privat >Environment: testing port fidogate >Description: portlint suggest to use LOCALBASE >How-To-Repeat: >Fix: diff fidogate/Makefile fidogate-4.2.9-dinoex/Makefile --- fidogate/Makefile Sat Oct 2 06:06:51 1999 +++ fidogate-4.2.9-dinoex/Makefile Tue Oct 19 13:28:18 1999 @@ -15,7 +15,7 @@ MAINTAINER= dirk.meyer@dinoex.sub.org # you may commet out this line if you have another transfer-agent -RUN_DEPENDS= ${PREFIX}/libexec/ifmail/ifcico:${PORTSDIR}/news/ifmail +RUN_DEPENDS= ${LOCALBASE}/libexec/ifmail/ifcico:${PORTSDIR}/news/ifmail .if defined(PARALLEL_PACKAGE_BUILD) FORBIDDEN= indefinite hang >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 10:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B50CF17723 for ; Tue, 19 Oct 1999 10:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA68585; Tue, 19 Oct 1999 10:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nohow.demon.co.uk (nohow.demon.co.uk [212.228.18.189]) by hub.freebsd.org (Postfix) with ESMTP id 86F92176F0 for ; Tue, 19 Oct 1999 10:01:54 -0700 (PDT) (envelope-from noway@nohow.demon.co.uk) Received: (from noway@localhost) by nohow.demon.co.uk (8.9.3/8.9.3) id OAA73731; Tue, 19 Oct 1999 14:45:43 +0100 (BST) (envelope-from noway) Message-Id: <199910191345.OAA73731@nohow.demon.co.uk> Date: Tue, 19 Oct 1999 14:45:43 +0100 (BST) From: Jose Marques Reply-To: noway@nohow.demon.co.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14422: New port: graphics/py-imaging-handbook Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14422 >Category: ports >Synopsis: New port: graphics/py-imaging-handbook >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 10:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jose Marques >Release: FreeBSD 3.3-STABLE i386 >Organization: >Environment: >Description: This port installs a local copy of the Python Imaging Library Handbook. The handbook documents the Python Imaging Library that is installed by the graphics/py-imaging port. >How-To-Repeat: >Fix: Unshar the following in a suitable directory. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-imaging-handbook/ # py-imaging-handbook/pkg # py-imaging-handbook/pkg/COMMENT # py-imaging-handbook/pkg/DESCR # py-imaging-handbook/pkg/PLIST # py-imaging-handbook/files # py-imaging-handbook/files/md5 # py-imaging-handbook/Makefile # echo c - py-imaging-handbook/ mkdir -p py-imaging-handbook/ > /dev/null 2>&1 echo c - py-imaging-handbook/pkg mkdir -p py-imaging-handbook/pkg > /dev/null 2>&1 echo x - py-imaging-handbook/pkg/COMMENT sed 's/^X//' >py-imaging-handbook/pkg/COMMENT << 'END-of-py-imaging-handbook/pkg/COMMENT' XThe Python Imaging Library Handbook END-of-py-imaging-handbook/pkg/COMMENT echo x - py-imaging-handbook/pkg/DESCR sed 's/^X//' >py-imaging-handbook/pkg/DESCR << 'END-of-py-imaging-handbook/pkg/DESCR' XThe handbook for the Python Imaging Library as available from the Xfollowing URL: X X http://www.pythonware.com/library/pil/handbook/index.htm END-of-py-imaging-handbook/pkg/DESCR echo x - py-imaging-handbook/pkg/PLIST sed 's/^X//' >py-imaging-handbook/pkg/PLIST << 'END-of-py-imaging-handbook/pkg/PLIST' Xshare/doc/PIL/handbook/labdoc.css Xshare/doc/PIL/handbook/index.htm Xshare/doc/PIL/handbook/overview.htm Xshare/doc/PIL/handbook/concepts.htm Xshare/doc/PIL/handbook/intro01.htm Xshare/doc/PIL/handbook/support.htm Xshare/doc/PIL/handbook/license.htm Xshare/doc/PIL/handbook/image.htm Xshare/doc/PIL/handbook/imagechops.htm Xshare/doc/PIL/handbook/imagedraw.htm Xshare/doc/PIL/handbook/imageenhance.htm Xshare/doc/PIL/handbook/imagefilter.htm Xshare/doc/PIL/handbook/imagefileio.htm Xshare/doc/PIL/handbook/imagefont.htm Xshare/doc/PIL/handbook/imagepalette.htm Xshare/doc/PIL/handbook/imagesequence.htm Xshare/doc/PIL/handbook/imagestat.htm Xshare/doc/PIL/handbook/imagetk.htm Xshare/doc/PIL/handbook/imagewin.htm Xshare/doc/PIL/handbook/psdraw.htm Xshare/doc/PIL/handbook/pilconvert.htm Xshare/doc/PIL/handbook/pildriver.htm Xshare/doc/PIL/handbook/pilfile.htm Xshare/doc/PIL/handbook/pilfont.htm Xshare/doc/PIL/handbook/pilprint.htm Xshare/doc/PIL/handbook/formats.htm Xshare/doc/PIL/handbook/decoder.htm X@dirrm share/doc/PIL/handbook END-of-py-imaging-handbook/pkg/PLIST echo c - py-imaging-handbook/files mkdir -p py-imaging-handbook/files > /dev/null 2>&1 echo x - py-imaging-handbook/files/md5 sed 's/^X//' >py-imaging-handbook/files/md5 << 'END-of-py-imaging-handbook/files/md5' XMD5 (pil/labdoc.css) = 6dfe81cd5838bb2aba073f2d45146fff XMD5 (pil/index.htm) = 3a9236e87bdaa2f4f16c0f8222809bbd XMD5 (pil/overview.htm) = 7a7798997e1d5510b2ef7c10868e6021 XMD5 (pil/concepts.htm) = 21ca6aebcc8bba35097da993eab13d6f XMD5 (pil/intro01.htm) = 51bad93ffc2d376e8f7c39acf0fa037c XMD5 (pil/support.htm) = 5f61a3ee4c6899464fcd574456bd3a38 XMD5 (pil/license.htm) = 46da0e1aa87228f4c7529374faca7fed XMD5 (pil/image.htm) = ce97655f2cecc8173d154b4299862d7f XMD5 (pil/imagechops.htm) = ad88d5219f2d434c034eaa00d3d9a24b XMD5 (pil/imagedraw.htm) = 5fa309d9962ac0f9233a980937c652f4 XMD5 (pil/imageenhance.htm) = 6aaf99832094d778a22694d4dc369c78 XMD5 (pil/imagefilter.htm) = aa2f591e09f5c17c3f6eca18d55ad1f8 XMD5 (pil/imagefileio.htm) = 9bde9cd39ba0e34b0507a3a820860313 XMD5 (pil/imagefont.htm) = bcd2c82e98d32626cc30ab2f57b55c34 XMD5 (pil/imagepalette.htm) = 4d1dfc9465e5c5768b0297737ef9e672 XMD5 (pil/imagesequence.htm) = 2057055a48e3b5d35d159a3af5611837 XMD5 (pil/imagestat.htm) = 1d05f72402ba15dd030d7040147acd6f XMD5 (pil/imagetk.htm) = 1a6e0d19fa224fcd974da6334b8a8f3a XMD5 (pil/imagewin.htm) = 1d9d424a61151cc8fb8bea70aacd6caa XMD5 (pil/psdraw.htm) = 2901a52597e8432fb310cce476b586a1 XMD5 (pil/pilconvert.htm) = 34ab8e14ccafdf319f90b19dd3fae861 XMD5 (pil/pildriver.htm) = c5c02d2ddf3f86ffe048de420d1225ce XMD5 (pil/pilfile.htm) = ac79df4694a3e95bce27474d5b839654 XMD5 (pil/pilfont.htm) = e6e5f0d21a2158a84d1f91a2c0bef4e9 XMD5 (pil/pilprint.htm) = 8e630d6972161083162a262a8512bcb8 XMD5 (pil/formats.htm) = 97232bc839893a3b814a5d9af5ee7d42 XMD5 (pil/decoder.htm) = b64f00170a7160a7197e2de0355d2acb END-of-py-imaging-handbook/files/md5 echo x - py-imaging-handbook/Makefile sed 's/^X//' >py-imaging-handbook/Makefile << 'END-of-py-imaging-handbook/Makefile' X# New ports collection makefile for: PIL handbook X# Version required: 1.0 X# Date created: 18th October 1999 X# Whom: Jose Marques X# X# $FreeBSD:$ X# X XDISTNAME= py-imaging-handbook-1.0 XCATEGORIES= graphics XMASTER_SITES= http://www.pythonware.com/library/pil/handbook/ XDISTFILES= labdoc.css index.htm overview.htm concepts.htm \ X intro01.htm support.htm license.htm image.htm \ X imagechops.htm imagedraw.htm imageenhance.htm \ X imagefilter.htm imagefileio.htm imagefont.htm \ X imagepalette.htm imagesequence.htm imagestat.htm \ X imagetk.htm imagewin.htm psdraw.htm pilconvert.htm \ X pildriver.htm pilfile.htm pilfont.htm pilprint.htm \ X formats.htm decoder.htm X XMAINTAINER= ports@freebsd.org X X# The following is my pathetic attempt to make this port depend on the X# py-imaging port. Is there a better way to make a documentation port X# depend on the port it documents? XDEPENDS= ${PORTSDIR}/graphics/py-imaging:describe X XDIST_SUBDIR= pil XEXTRACT_ONLY= XNO_BUILD= yes X Xdo-install: X @${MKDIR} ${PREFIX}/share/doc/PIL/handbook X ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/*.css ${PREFIX}/share/doc/PIL/handbook X ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/*.htm ${PREFIX}/share/doc/PIL/handbook X X.include END-of-py-imaging-handbook/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 10:52: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ciam.comtel.ru (ciam.comtel.ru [195.208.64.247]) by hub.freebsd.org (Postfix) with ESMTP id E4A0317813; Tue, 19 Oct 1999 10:51:26 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from sem.ciam.ru ([192.168.45.205] helo=ciam.ru) by ciam.comtel.ru with esmtp (Exim 2.12 #1) id 11ddPp-00033B-00; Tue, 19 Oct 1999 21:51:17 +0400 Message-ID: <380CAF94.C7AFF359@ciam.ru> Date: Tue, 19 Oct 1999 21:51:16 +0400 From: Sergey Matveychuk Organization: CIAM X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: ru,en MIME-Version: 1.0 To: jseger@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: git-4.3.17 Content-Type: multipart/mixed; boundary="------------D5ADA204F73DF076AFA9C903" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------D5ADA204F73DF076AFA9C903 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Hello! I'v updraged port GIT for myself to last release - 4.3.19. It seems working. Test it please once more. That is. -- Sem. --------------------------------------------------------------- Sergey Matveychuk | Institute Of Aviation Motors | Moscow, Russia E-Mail: sem@ciam.ru | http://www.ciam.ru/~sem Tel: +7-095-362-93-43 | UIN: 3317990 --------------------------------------------------------------- --------------D5ADA204F73DF076AFA9C903 Content-Type: application/x-tar; name="git.tar" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="git.tar" Z2l0LwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA0MDc1NSAA ICAgICAwIAAgICAzMTcgACAgICAgICAgICAwICA3MDAzMTI3MTUwICAgNjc2NQAgNQAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhciAgAHJvb3QA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnaXQvZmlsZXMvAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAIDQwNzU1IAAgICAgIDAgACAgIDMxNyAAICAgICAgICAgIDAg IDY1MjMxNjcxMDUgIDEwMTAxACA1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAHVzdGFyICAAcm9vdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGdp dC9maWxlcy9tZDUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxMDA2NDQgACAg ICAgMCAAICAgMzE3IAAgICAgICAgICA3MyAgNzAwMzEyMDI3NCAgMTA1MzQAIDAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIgIAByb290AAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATUQ1IChnaXQtNC4zLjE5LnRhci5neikgPSA0M2I2 MjY4MDdiODBiN2E1NDBiOTYxNTQ1OTRjMDlkMgoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnaXQv cGF0Y2hlcy8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDQwNzU1IAAgICAg IDAgACAgIDMxNyAAICAgICAgICAgIDAgIDcwMDMxMjA3MTUgIDEwNDE0ACA1AAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHVzdGFyICAAcm9vdAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGdpdC9wYXRjaGVzL3BhdGNoLWFhAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAxMDA2NDQgACAgICAgMCAAICAgMzE3IAAgICAgICAgMjIxNSAgNzAw MzEyMDY3NCAgMTIxMTYAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAdXN0YXIgIAByb290AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALS0tIHRl cm0vTWFrZWZpbGUuaW4ub3JpZwlUdWUgT2N0IDE5IDIwOjUwOjM2IDE5OTkKKysrIHRlcm0v TWFrZWZpbGUuaW4JVHVlIE9jdCAxOSAyMDo1MToxOCAxOTk5CkBAIC04MCw5ICs4MCw5IEBA CiBQUk9EVUNUID0gQFBST0RVQ1RACiBWRVJTSU9OID0gQFZFUlNJT05ACiAKLUVYVFJBX0RJ U1QgPSAuZ2l0cmMuYWl4dGVybSAuZ2l0cmMuYW5zaSAuZ2l0cmMuY29tbW9uLmluIAkgICAg IC5naXRyYy5nZW5lcmljIC5naXRyYy5oZnQgLmdpdHJjLmhwdGVybSAuZ2l0cmMubGludXgg CSAgICAgLmdpdHJjLm1hY2ggLmdpdHJjLm1pbml4IC5naXRyYy50aGl4IC5naXRyYy52dDEw MCAJICAgICAuZ2l0cmMudnQxMDIgLmdpdHJjLnh0ZXJtIC5naXRyYy54dGVybS1jb2xvcgor RVhUUkFfRElTVCA9IC5naXRyYy5haXh0ZXJtIC5naXRyYy5hbnNpIC5naXRyYy5jb21tb24u aW4gCSAgICAgLmdpdHJjLmdlbmVyaWMgLmdpdHJjLmhmdCAuZ2l0cmMuaHB0ZXJtIC5naXRy Yy5saW51eCAJICAgICAuZ2l0cmMubWFjaCAuZ2l0cmMubWluaXggLmdpdHJjLnRoaXggLmdp dHJjLnZ0MTAwIAkgICAgIC5naXRyYy52dDEwMiAuZ2l0cmMueHRlcm0gLmdpdHJjLnh0ZXJt LWNvbG9yIC5naXRyYy5jb25zMjUKIAotcGtnZGF0YV9EQVRBID0gLmdpdHJjLmFpeHRlcm0g LmdpdHJjLmFuc2kgLmdpdHJjLmNvbW1vbiAJICAgICAgIC5naXRyYy5nZW5lcmljIC5naXRy Yy5oZnQgLmdpdHJjLmhwdGVybSAuZ2l0cmMubGludXggCSAgICAgICAuZ2l0cmMubWFjaCAu Z2l0cmMubWluaXggLmdpdHJjLnRoaXggLmdpdHJjLnZ0MTAwIAkgICAgICAgLmdpdHJjLnZ0 MTAyIC5naXRyYy54dGVybSAuZ2l0cmMueHRlcm0tY29sb3IKK3BrZ2RhdGFfREFUQSA9IC5n aXRyYy5haXh0ZXJtIC5naXRyYy5hbnNpIC5naXRyYy5jb21tb24gCSAgICAgICAuZ2l0cmMu Z2VuZXJpYyAuZ2l0cmMuaGZ0IC5naXRyYy5ocHRlcm0gLmdpdHJjLmxpbnV4IAkgICAgICAg LmdpdHJjLm1hY2ggLmdpdHJjLm1pbml4IC5naXRyYy50aGl4IC5naXRyYy52dDEwMCAJICAg ICAgIC5naXRyYy52dDEwMiAuZ2l0cmMueHRlcm0gLmdpdHJjLnh0ZXJtLWNvbG9yIC5naXRy Yy5jb25zMjUKIAogCiBHSVRfR0VORVJJQ1MgPSAuZ2l0cmMuc3VuIC5naXRyYy5zdW4tY21k IC5naXRyYy5ldGVybSAuZ2l0cmMucGMzCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAZ2l0L3BhdGNoZXMvcGF0Y2gtYWIAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAADEwMDY0NCAAICAgICAwIAAgICAzMTcgACAgICAgICAgNTQ1ICA3MDAzMTE0 MTE1ICAxMjA3NAAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAB1c3RhciAgAHJvb3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtLS0gdGVybS8u Z2l0cmMuY29uczI1Lm9yaWcJVHVlIE9jdCAxOSAxOTo0MzoxNyAxOTk5CisrKyB0ZXJtLy5n aXRyYy5jb25zMjUJVHVlIE9jdCAxOSAyMDowMToxNyAxOTk5CkBAIC0yNCw3ICsyNCw3IEBA CiAKIFtTZXR1cF0KIEFuc2lDb2xvcnMJCT0gT04JIyBlbXB0eSBtZWFucyBPRkYKLVVzZUxh c3RTY3JlZW5DaGFyCT0gT0ZGCSMgdXNlIHRoZSBsYXN0IGNoYXJhY3RlciBvbiB0aGUgc2Ny ZWVuCitVc2VMYXN0U2NyZWVuQ2hhcgk9IE9OCSMgdXNlIHRoZSBsYXN0IGNoYXJhY3RlciBv biB0aGUgc2NyZWVuCiBTdGFydHVwU2Nyb2xsU3RlcAk9CSMgZW1wdHkgbWVhbnMgaGFsZiB0 aGUgbnVtYmVyIG9mIGxpbmVzCiAKIAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAGdpdC9NYWtlZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAxMDA2NDQgACAgICAgMCAAICAgMzE3IAAgICAgICAgMTAwNyAgNzAwMzEyMTYy MSAgMTA1MTUAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAdXN0YXIgIAByb290AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIyBOZXcgcG9ydHMg Y29sbGVjdGlvbiBtYWtlZmlsZSBmb3I6CWdpdAojIFZlcnNpb24gcmVxdWlyZWQ6CTQuMy4x OQojIERhdGUgY3JlYXRlZDoJCTE5IE9jdCAxOTk5CiMgV2hvbToJCQl0b3JzdGVuYkBGcmVl QlNELm9yZwojCiMgJEZyZWVCU0Q6IHBvcnRzL21pc2MvZ2l0L01ha2VmaWxlLHYgMS4xMyAx OTk5LzA4LzMxIDA2OjQ4OjE3IG1oYXJvIEV4cCAkCiMKCkRJU1ROQU1FPQlnaXQtNC4zLjE5 CkNBVEVHT1JJRVM9CW1pc2MKTUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX0dOVX0KTUFT VEVSX1NJVEVfU1VCRElSPQlnaXQKCk1BSU5UQUlORVI9CWpzZWdlckBGcmVlQlNELm9yZwoK R05VX0NPTkZJR1VSRT0JWUVTCk1BTjE9CQlnaXQuMSBnaXRhY3Rpb24uMSBnaXRrZXlzLjEg Z2l0bW91bnQuMSBcCgkJZ2l0cmdyZXAuMQoKcHJlLXBhdGNoOgoJJHtDUH0gJHtXUktTUkN9 L3Rlcm0vLmdpdHJjLmFuc2kgXAoJCSR7V1JLU1JDfS90ZXJtLy5naXRyYy5jb25zMjUKCi5p bmNsdWRlIDxic2QucG9ydC5taz4KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGdpdC9wa2cvAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgNDA3NTUgACAgICAgMCAAICAgMzE3 IAAgICAgICAgICAgMCAgNjU2NjQwMjEwMCAgIDc1NTIAIDUAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIgIAByb290AAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAZ2l0L3BrZy9DT01NRU5UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAADEwMDY0NCAAICAgICAwIAAgICAzMTcgACAgICAgICAgIDc3ICA2MDAyMDQ3MjYyICAx MDYzNwAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1 c3RhciAgAHJvb3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHTlUgSW50ZXJhY3RpdmUg VG9vbHMgLSBhIGZpbGUgc3lzdGVtIGJyb3dzZXIgZm9yIFVOSVggc3lzdGVtcwoAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAGdpdC9wa2cvREVTQ1IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAxMDA2NDQgACAgICAgMCAAICAgMzE3IAAgICAgICAgIDI3NyAgNjAwMjA0NzI2MiAgMTA0 MTcAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0 YXIgIAByb290AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR0lUIGlzIGEgZmlsZSBzeXN0 ZW0gYnJvd3NlciBmb3IgVU5JWCBzeXN0ZW1zLgpBbiBpbnRlcmFjdGl2ZSBwcm9jZXNzIHZp ZXdlci9raWxsZXIsIGEgaGV4L2FzY2lpIGZpbGUgdmlld2VyLCBhbiBhdXRvLW1vdW50CnNo ZWxsIHNjcmlwdCBhbmQgYSBwZXIgZmlsZSB0eXBlIGFjdGlvbiBzY3JpcHQgYXJlIGFsc28g YXZhaWxhYmxlLgoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAABnaXQvcGtnL1BMSVNUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA MTAwNjQ0IAAgICAgIDAgACAgIDMxNyAAICAgICAgIDIyMDAgIDcwMDMxMjY0NTQgIDEwNDYx ACAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHVzdGFy ICAAcm9vdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGJpbi9naXQKYmluL2dpdHBzCmJp bi9naXR2aWV3CmJpbi9naXRrZXlzCmJpbi9naXR3aXBlCmJpbi9naXRtb3VudApiaW4vZ2l0 YWN0aW9uCmJpbi9naXRta2RpcnMKYmluL2dpdHVucGFjawpiaW4vZ2l0cmdyZXAKYmluL2dp dHhncmVwCmJpbi8uZ2l0YWN0aW9uCmluZm8vZ2l0LmluZm8KaW5mby9naXQuaW5mby0xCmlu Zm8vZ2l0LmluZm8tMgppbmZvL2dpdC5pbmZvLTMKZG9jL2dpdC00LjMuMTkvZ2l0Lmh0bWwK QGRpcnJtIGRvYy9naXQtNC4zLjE5CnNoYXJlL2dpdC8uZ2l0cmMuYWl4dGVybQpzaGFyZS9n aXQvLmdpdHJjLmFuc2kKc2hhcmUvZ2l0Ly5naXRyYy5jb21tb24Kc2hhcmUvZ2l0Ly5naXRy Yy5jb25zMjUKc2hhcmUvZ2l0Ly5naXRyYy5jb25zb2xlCnNoYXJlL2dpdC8uZ2l0cmMuZHR0 ZXJtCnNoYXJlL2dpdC8uZ2l0cmMuZXRlcm0Kc2hhcmUvZ2l0Ly5naXRyYy5nZW5lcmljCnNo YXJlL2dpdC8uZ2l0cmMuaGZ0CnNoYXJlL2dpdC8uZ2l0cmMuaHAKc2hhcmUvZ2l0Ly5naXRy Yy5ocHRlcm0Kc2hhcmUvZ2l0Ly5naXRyYy5pcmlzLWFuc2kKc2hhcmUvZ2l0Ly5naXRyYy5p cmlzLWFuc2ktbmV0CnNoYXJlL2dpdC8uZ2l0cmMubGludXgKc2hhcmUvZ2l0Ly5naXRyYy5t YWNoCnNoYXJlL2dpdC8uZ2l0cmMubWluaXgKc2hhcmUvZ2l0Ly5naXRyYy5wYzMKc2hhcmUv Z2l0Ly5naXRyYy5zY3JlZW4Kc2hhcmUvZ2l0Ly5naXRyYy5zdW4Kc2hhcmUvZ2l0Ly5naXRy Yy5zdW4tY21kCnNoYXJlL2dpdC8uZ2l0cmMudGhpeApzaGFyZS9naXQvLmdpdHJjLnZ0MTAw CnNoYXJlL2dpdC8uZ2l0cmMudnQxMDIKc2hhcmUvZ2l0Ly5naXRyYy52dDEyNQpzaGFyZS9n aXQvLmdpdHJjLnZ0MjAwCnNoYXJlL2dpdC8uZ2l0cmMudnQyMDEKc2hhcmUvZ2l0Ly5naXRy Yy52dDIyMApzaGFyZS9naXQvLmdpdHJjLnZ0MjQwCnNoYXJlL2dpdC8uZ2l0cmMudnQzMDAK c2hhcmUvZ2l0Ly5naXRyYy52dDMyMApzaGFyZS9naXQvLmdpdHJjLnZ0NDAwCnNoYXJlL2dp dC8uZ2l0cmMudnQ0MjAKc2hhcmUvZ2l0Ly5naXRyYy54dGVybQpzaGFyZS9naXQvLmdpdHJj Lnh0ZXJtLWNvbG9yCnNoYXJlL2dpdC8uZ2l0cmMueHRlcm0tZGViaWFuCnNoYXJlL2dpdC8u Z2l0cmMucnh2dApzaGFyZS9naXQvLmdpdHJjLnh0ZXJtcwpAZGlycm0gc2hhcmUvZ2l0CgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAA= --------------D5ADA204F73DF076AFA9C903-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 11: 0: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BEA8717822 for ; Tue, 19 Oct 1999 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA72569; Tue, 19 Oct 1999 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 19 Oct 1999 11:00:01 -0700 (PDT) Message-Id: <199910191800.LAA72569@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Chris D. Faulhaber" Subject: Re: ports/14416: Update port: sysutils/wmlmmon Reply-To: "Chris D. Faulhaber" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14416; it has been noted by GNATS. From: "Chris D. Faulhaber" To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/14416: Update port: sysutils/wmlmmon Date: Tue, 19 Oct 1999 13:59:13 -0400 (EDT) Well, I'm 0 for 2 today... here is the correct MD5: MD5 (wmlmmon-0.55.tar.gz) = 5156df4822bcc861868d0c1cd24a1c62 ----- Chris D. Faulhaber | All the true gurus I've met never System/Network Administrator, | claimed they were one and always Reality Check Information, Inc. | pointed to someone better. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 11:30: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC13C178A9 for ; Tue, 19 Oct 1999 11:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA94140; Tue, 19 Oct 1999 11:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from guypc.scl.ameslab.gov (guypc.scl.ameslab.gov [147.155.137.145]) by hub.freebsd.org (Postfix) with ESMTP id 9826B1789C for ; Tue, 19 Oct 1999 11:27:31 -0700 (PDT) (envelope-from ghelmer@guypc.scl.ameslab.gov) Received: (from ghelmer@localhost) by guypc.scl.ameslab.gov (8.9.3/8.8.8) id NAA66408; Tue, 19 Oct 1999 13:27:30 -0500 (CDT) (envelope-from ghelmer) Message-Id: <199910191827.NAA66408@guypc.scl.ameslab.gov> Date: Tue, 19 Oct 1999 13:27:30 -0500 (CDT) From: ghelmer@scl.ameslab.gov Reply-To: ghelmer@scl.ameslab.gov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14423: lsof fails since "struct namecache" moved in -current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14423 >Category: ports >Synopsis: Build of lsof fails since 'struct namecache' moved from /sys/sys/namei.h to /sys/kern/vfs_cache.c >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 11:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Guy Helmer >Release: FreeBSD 4.0-CURRENT i386 >Organization: Ames Laboratory >Environment: FreeBSD 4.0-CURRENT (GUYPC) #4: Tue Oct 12 13:37:45 CDT 1999 >Description: Build fails because 'struct namecache' is no longer defined in sys/namei.h: ===> Building for lsof-4.45 (cd lib; make DEBUG="-O") [...] cc -DFREEBSDV=400 -DHASFDESCFS -DHASPROCFS -DHAS9660FS -DLSOF_VSTR=\"4.0-CURRENT\" -I/usr/include -I/usr/src/sys -O -c rnmh.c rnmh.c: In function `ncache_load': rnmh.c:285: storage size of `c' isn't known rnmh.c:428: dereferencing pointer to incomplete type *** Error code 1 Stop in /usr/ports/sysutils/lsof/work/lsof_4.45/lib. >How-To-Repeat: cd /usr/ports/sysutils/lsof && make >Fix: One possible fix is to replace patches/patch-aa with this patch to disable lsof's use of the name cache: --- dialects/freebsd/machine.h.orig Thu Jul 8 14:50:16 1999 +++ dialects/freebsd/machine.h Tue Oct 19 13:24:56 1999 @@ -217,7 +217,7 @@ * cache whose cache and vnodes are linked by a capability ID. */ -#define HASNCACHE 1 +/* #define HASNCACHE 1 */ #define HASNCAPID 1 @@ -355,7 +355,7 @@ * (the one that its user logged on with) of the lsof process. */ -/* #define HASSECURITY 1 */ +#define HASSECURITY 1 /* >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 12:30:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C7BAE17890 for ; Tue, 19 Oct 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA04371; Tue, 19 Oct 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from M-Relay.HcRC.edu.tw (m-relay.HcRC.edu.tw [163.28.64.11]) by hub.freebsd.org (Postfix) with ESMTP id 3369917A33 for ; Tue, 19 Oct 1999 12:23:25 -0700 (PDT) (envelope-from ijliao@Terry.Dorm8.NCTU.edu.tw) Received: from Terry.Dorm8.NCTU.edu.tw (IDENT:root@Terry.Dorm8.NCTU.edu.tw [140.113.93.99]) by M-Relay.HcRC.edu.tw (8.9.3/8.9.3) with ESMTP id DAA71530 for ; Wed, 20 Oct 1999 03:23:24 +0800 (CST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.9.3/8.9.3) id DAA13717; Wed, 20 Oct 1999 03:23:19 +0800 (CST) (envelope-from ijliao) Message-Id: <199910191923.DAA13717@Terry.Dorm8.NCTU.edu.tw> Date: Wed, 20 Oct 1999 03:23:19 +0800 (CST) From: Ying-Chieh Liao Reply-To: ijliao@Terry.Dorm8.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14424: update ports: ftp/download to 1.06 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14424 >Category: ports >Synopsis: update ports: ftp/download to 1.06 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 12:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 4.0-CURRENT i386 >Organization: NCTU CSIE >Environment: FreeBSD Terry.Dorm8.NCTU.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #6: Mon Oct 18 23:07:37 CST 1999 root@Terry.Dorm8.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: update ftp/download from 1.0beta5 to 1.0.6 >How-To-Repeat: >Fix: diff -ruN /usr/ports/ftp/downloader/Makefile downloader/Makefile --- /usr/ports/ftp/downloader/Makefile Tue Oct 5 21:16:41 1999 +++ downloader/Makefile Tue Oct 19 12:16:30 1999 @@ -6,8 +6,8 @@ # $FreeBSD: ports/ftp/downloader/Makefile,v 1.7 1999/10/02 16:52:48 cpiazza Exp $ # -DISTNAME= nt-1.05-BETA -PKGNAME= downloader-1.0b5 +DISTNAME= nt-1.06 +PKGNAME= downloader-1.06 CATEGORIES= ftp MASTER_SITES= http://www.krasu.ru/soft/chuchelo/ diff -ruN /usr/ports/ftp/downloader/files/md5 downloader/files/md5 --- /usr/ports/ftp/downloader/files/md5 Tue Oct 5 21:16:41 1999 +++ downloader/files/md5 Tue Oct 19 12:16:54 1999 @@ -1 +1 @@ -MD5 (nt-1.05-BETA.tar.gz) = d2d9a71bf103f4e9d6336ee1e0904557 +MD5 (nt-1.06.tar.gz) = 8cda42fd02b074bc5af601b0b803059b diff -ruN /usr/ports/ftp/downloader/patches/patch-ac downloader/patches/patch-ac --- /usr/ports/ftp/downloader/patches/patch-ac Fri Aug 27 07:08:22 1999 +++ downloader/patches/patch-ac Wed Oct 20 03:14:49 1999 @@ -1,11 +1,26 @@ ---- main.cc.orig Sat Aug 21 11:46:05 1999 -+++ main.cc Wed Aug 25 10:48:22 1999 -@@ -16,7 +16,7 @@ - #include - #include +--- main.cc.orig Wed Oct 20 03:12:39 1999 ++++ main.cc Wed Oct 20 03:14:32 1999 +@@ -12,8 +12,8 @@ + #include + #include #include -#include +-#include +#include - #include ++#include + #include + #include + #include +@@ -861,9 +861,9 @@ + }; + + unsigned int tMain::get_precise_time(){ +- struct timeb tp; +- ftime(&tp); +- return(tp.time*1000+tp.millitm); ++ struct timeval tp; ++ gettimeofday(&tp, NULL); ++ return(tp.tv_sec*1000+tp.tv_usec); + }; - #include "var.h" + void tMain::speed() { diff -ruN /usr/ports/ftp/downloader/patches/patch-ad downloader/patches/patch-ad --- /usr/ports/ftp/downloader/patches/patch-ad Tue Oct 5 21:16:41 1999 +++ downloader/patches/patch-ad Wed Oct 20 02:45:17 1999 @@ -1,23 +1,23 @@ ---- socket.cc.orig Tue Sep 28 22:44:21 1999 -+++ socket.cc Tue Sep 28 22:45:20 1999 +--- socket.cc.orig Wed Oct 20 02:44:18 1999 ++++ socket.cc Wed Oct 20 02:45:01 1999 @@ -36,6 +36,7 @@ - char buff[MAX_LEN]; - hostent *hpr; - int rval; + char buff[MAX_LEN]; + hostent *hpr; + int rval; +/* #ifdef __sparc__ gethostbyname_r(host,hpr,buff,MAX_LEN,&rval); #else @@ -43,11 +44,10 @@ #endif - if (rval) return -1; - memcpy((char *)&info.sin_addr,(char *)hpr->h_addr,hpr->h_length); -- /* + if (rval) return -1; + memcpy((char *)&info.sin_addr,(char *)hpr->h_addr,hpr->h_length); +- /* +*/ - hostent *hp=gethostbyname(host); - if (!hp) return -1; - memcpy((char *)&info.sin_addr,(char *)hp->h_addr,hp->h_length); -- */ - } else info.sin_addr.s_addr=INADDR_ANY; - info.sin_port=htons(port); - return sizeof(info); + hostent *hp=gethostbyname(host); + if (!hp) return -1; + memcpy((char *)&info.sin_addr,(char *)hp->h_addr,hp->h_length); +- */ + } else info.sin_addr.s_addr=INADDR_ANY; + info.sin_port=htons(port); + return sizeof(info); diff -ruN /usr/ports/ftp/downloader/patches/patch-ae downloader/patches/patch-ae --- /usr/ports/ftp/downloader/patches/patch-ae Tue Oct 5 21:16:41 1999 +++ downloader/patches/patch-ae Wed Oct 20 02:54:03 1999 @@ -1,9 +1,10 @@ ---- face/Makefile.orig Tue Sep 28 22:47:01 1999 -+++ face/Makefile Tue Sep 28 22:47:40 1999 -@@ -1,7 +1,7 @@ +--- face/Makefile.orig Wed Oct 20 02:46:13 1999 ++++ face/Makefile Wed Oct 20 02:46:50 1999 +@@ -1,8 +1,8 @@ -CCPLUS = c++ +CCPLUS = ${CXX} - EXECC=$(CCPLUS) $(NLS) + CFLAGS=-Wall -O2 -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS + EXECC=$(CCPLUS) $(CFLAGS) $(GTKFLAGS) $(NLS) -DLOCALE=\"${LOCALEDIR}\" -GTKFLAGS=`gtk-config --cflags` -GTKLIBS=`gtk-config --libs` +GTKFLAGS=`gtk12-config --cflags` diff -ruN /usr/ports/ftp/downloader/patches/patch-af downloader/patches/patch-af --- /usr/ports/ftp/downloader/patches/patch-af Tue Oct 5 21:16:41 1999 +++ downloader/patches/patch-af Wed Oct 20 02:53:27 1999 @@ -1,54 +1,45 @@ ---- face/lmenu.cc.orig Tue Sep 28 22:50:35 1999 -+++ face/lmenu.cc Tue Sep 28 22:54:43 1999 +--- face/lmenu.cc.orig Wed Oct 20 02:49:13 1999 ++++ face/lmenu.cc Wed Oct 20 02:52:39 1999 @@ -66,7 +66,7 @@ - ListMenu=gtk_menu_new(); - pixmap=make_pixmap_from_xpm(&bitmap,logmini_xpm); -- menu_item=make_menu_item(_("View log"),NULL,pixmap,bitmap); -+ menu_item=make_menu_item(_("View log"),(char*)NULL,pixmap,bitmap); - gtk_menu_append(GTK_MENU(ListMenu),menu_item); - ListMenuArray[LM_LOG]=menu_item; - gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(open_log_for_selected),NULL); + ListMenu=gtk_menu_new(); + pixmap=make_pixmap_from_xpm(&bitmap,logmini_xpm); +- menu_item=make_menu_item(_("View log"),NULL,pixmap,bitmap); ++ menu_item=make_menu_item(_("View log"),(char*)NULL,pixmap,bitmap); + gtk_menu_append(GTK_MENU(ListMenu),menu_item); + ListMenuArray[LM_LOG]=menu_item; + gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(open_log_for_selected),NULL); @@ -79,7 +79,7 @@ - gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(stop_downloads),NULL); + gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(stop_downloads),NULL); - pixmap=make_pixmap_from_xpm(&bitmap,runmini_xpm); -- menu_item=make_menu_item(_("Continue downloads"),NULL,pixmap,bitmap); -+ menu_item=make_menu_item(_("Continue downloads"),(char*)NULL,pixmap,bitmap); - gtk_menu_append(GTK_MENU(ListMenu),menu_item); - ListMenuArray[LM_CONTINUE]=menu_item; - gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(continue_downloads),NULL); -@@ -88,7 +88,7 @@ - gtk_widget_set_sensitive(menu_item,FALSE); - gtk_menu_append(GTK_MENU(ListMenu),menu_item); - -- menu_item=make_menu_item(_("Properties"),"Alt+E",NULL,NULL); -+ menu_item=make_menu_item(_("Properties"),"Alt+E",(GdkPixmap*)NULL,(GdkBitmap*)NULL); - gtk_menu_append(GTK_MENU(ListMenu),menu_item); - ListMenuArray[LM_EDIT]=menu_item; - gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(open_edit_for_selected),NULL); + pixmap=make_pixmap_from_xpm(&bitmap,runmini_xpm); +- menu_item=make_menu_item(_("Continue downloads"),NULL,pixmap,bitmap); ++ menu_item=make_menu_item(_("Continue downloads"),(char*)NULL,pixmap,bitmap); + gtk_menu_append(GTK_MENU(ListMenu),menu_item); + ListMenuArray[LM_CONTINUE]=menu_item; + gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(continue_downloads),NULL); @@ -100,13 +100,13 @@ - gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(ask_delete_download),NULL); + gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(ask_delete_download),NULL); - pixmap=make_pixmap_from_xpm(&bitmap,delcommini_xpm); -- menu_item=make_menu_item(_("Delete completed"),NULL,pixmap,bitmap); -+ menu_item=make_menu_item(_("Delete completed"),(char*)NULL,pixmap,bitmap); - gtk_menu_append(GTK_MENU(ListMenu),menu_item); - ListMenuArray[LM_DELC]=menu_item; - gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(ask_delete_completed_downloads),NULL); + pixmap=make_pixmap_from_xpm(&bitmap,delcommini_xpm); +- menu_item=make_menu_item(_("Delete completed"),NULL,pixmap,bitmap); ++ menu_item=make_menu_item(_("Delete completed"),(char*)NULL,pixmap,bitmap); + gtk_menu_append(GTK_MENU(ListMenu),menu_item); + ListMenuArray[LM_DELC]=menu_item; + gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(ask_delete_completed_downloads),NULL); -- menu_item=make_menu_item(_("Delete failed"),NULL,NULL,NULL); -+ menu_item=make_menu_item(_("Delete failed"),(char*)NULL,(GdkPixmap*)NULL,(GdkBitmap*)NULL); - gtk_menu_append(GTK_MENU(ListMenu),menu_item); - ListMenuArray[LM_DELF]=menu_item; - gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(ask_delete_fataled_downloads),NULL); +- menu_item=make_menu_item(_("Delete failed"),NULL,NULL,NULL); ++ menu_item=make_menu_item(_("Delete failed"),(char*)NULL,(GdkPixmap*)NULL,(GdkBitmap*)NULL); + gtk_menu_append(GTK_MENU(ListMenu),menu_item); + ListMenuArray[LM_DELF]=menu_item; + gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(ask_delete_fataled_downloads),NULL); @@ -128,7 +128,7 @@ - ListMenuArray[LM_MOVEDOWN]=menu_item; - gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(move_download_down),NULL); + ListMenuArray[LM_MOVEDOWN]=menu_item; + gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(move_download_down),NULL); -- menu_item=make_menu_item(_("Set limitation"),NULL,NULL,NULL); -+ menu_item=make_menu_item(_("Set limitation"),(char*)NULL,(GdkPixmap*)NULL,(GdkBitmap*)NULL); - gtk_menu_append(GTK_MENU(ListMenu),menu_item); - ListMenuArray[LM_SET_LIMIT]=menu_item; - gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(set_limit_to_download),NULL); +- menu_item=make_menu_item(_("Set limitation"),NULL,NULL,NULL); ++ menu_item=make_menu_item(_("Set limitation"),(char*)NULL,(GdkPixmap*)NULL,(GdkBitmap*)NULL); + gtk_menu_append(GTK_MENU(ListMenu),menu_item); + ListMenuArray[LM_SET_LIMIT]=menu_item; + gtk_signal_connect(GTK_OBJECT(menu_item),"activate",GTK_SIGNAL_FUNC(set_limit_to_download),NULL); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 12:50: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 753AA17AEA for ; Tue, 19 Oct 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA06218; Tue, 19 Oct 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wproxy2.nctu.edu.tw (w3-cache2.NCTU.edu.tw [163.28.64.112]) by hub.freebsd.org (Postfix) with ESMTP id 5167714F2A for ; Tue, 19 Oct 1999 12:44:45 -0700 (PDT) (envelope-from ijliao@Terry.Dorm8.NCTU.edu.tw) Received: from Terry.Dorm8.NCTU.edu.tw (IDENT:root@Terry.Dorm8.NCTU.edu.tw [140.113.93.99]) by wproxy2.nctu.edu.tw (8.9.3/8.9.3) with ESMTP id DAA53394 for ; Wed, 20 Oct 1999 03:44:46 +0800 (CST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.9.3/8.9.3) id DAA14878; Wed, 20 Oct 1999 03:44:44 +0800 (CST) (envelope-from ijliao) Message-Id: <199910191944.DAA14878@Terry.Dorm8.NCTU.edu.tw> Date: Wed, 20 Oct 1999 03:44:44 +0800 (CST) From: Ying-Chieh Liao Reply-To: ijliao@Terry.Dorm8.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14425: update ports: devel/gtksheet to 8.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14425 >Category: ports >Synopsis: update ports: devel/gtksheet to 8.0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 12:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 4.0-CURRENT i386 >Organization: NCTU CSIE >Environment: FreeBSD Terry.Dorm8.NCTU.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #6: Mon Oct 18 23:07:37 CST 1999 root@Terry.Dorm8.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: update devel/gtksheet from 7.10 to 8.0 >How-To-Repeat: >Fix: diff -ruN /usr/ports/devel/gtksheet/Makefile gtksheet/Makefile --- /usr/ports/devel/gtksheet/Makefile Tue Oct 5 21:16:39 1999 +++ gtksheet/Makefile Wed Oct 20 03:32:03 1999 @@ -6,7 +6,7 @@ # $FreeBSD: ports/devel/gtksheet/Makefile,v 1.5 1999/10/03 00:05:16 cpiazza Exp $ # -DISTNAME= gtksheet-7.10 +DISTNAME= gtksheet-8.0 CATEGORIES= devel MASTER_SITES= ftp://ripley.ifir.edu.ar/pub/gtk/gtksheet/ diff -ruN /usr/ports/devel/gtksheet/files/md5 gtksheet/files/md5 --- /usr/ports/devel/gtksheet/files/md5 Tue Oct 5 21:16:39 1999 +++ gtksheet/files/md5 Wed Oct 20 03:39:32 1999 @@ -1 +1 @@ -MD5 (gtksheet-7.10.tar.gz) = cfb6162a5bbe6aecd91f7591bed18a06 +MD5 (gtksheet-8.0.tar.gz) = 41d607098ba9e65de20b56611864a2d4 diff -ruN /usr/ports/devel/gtksheet/pkg/PLIST gtksheet/pkg/PLIST --- /usr/ports/devel/gtksheet/pkg/PLIST Tue Jun 29 01:15:38 1999 +++ gtksheet/pkg/PLIST Wed Oct 20 03:42:50 1999 @@ -1,7 +1,8 @@ lib/libgtksheet.a include/gtksheet/gtksheet.h -include/gtksheet/gtksheetentry.h include/gtksheet/gtkbordercombo.h include/gtksheet/gtkcolorcombo.h include/gtksheet/gtkcombobox.h +include/gtksheet/gtkitementry.h +include/gtksheet/icons.h @dirrm include/gtksheet >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 19:10:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from transbay.net (dns1.transbay.net [209.133.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 1504118557 for ; Tue, 19 Oct 1999 19:10:36 -0700 (PDT) (envelope-from ecsd@ecsd.com) Received: from ecsd.com (station36.transbay.net [209.133.53.236]) by transbay.net (8.9.3/8.9.3) with ESMTP id TAA04707 for ; Tue, 19 Oct 1999 19:10:36 -0700 (PDT) Message-ID: <380D24C3.681A13EF@ecsd.com> Date: Tue, 19 Oct 1999 19:11:16 -0700 From: safe user X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: xpdf and the wholesale destruction of X-Windows Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Let me clarify, then. I do a "make clean" in xpdf, and it does a clean in X11.6 also. Did it kill X itself? No. But for whatever reason, suddenly the following commands failed with "ld.so: can't locate xxxx.so.n.mm" messages: xv identify (ImageMagick) gimp basically, anything using a shared library (libjpeg, etc.) The installation was 3.2-RELEASE, I never asked for a.out style anything. xpdf complained about not being able to find, I think, libXpm.so.4.11 and that's when I tried to reinstall xpdf. Doing a make clean in xpdf broke xv, et. al. with similar "ld.so can't find" messages. Remember, the ports were installed as packages at the same time the release was installed. If the packages were a.out, well, throw me down a hole or something. (e.g. blame the victim, go ahead.) I made enough space to reinstall X, did so, and the problems went away. Proof? Not enough time to generate proof. If it rings anyone's mental bells what I'm talking about, good. If I'm right the make clean is unwarrantedly overzealous, then the bell-rung person can maybe patch that up. As far as making a comparison to Microsoft, well, that's the best way to piss people off and make them take notice. May FreeBSD cover the Earth ... that's why I get irritable if things are gratuitously busted. (c) ecsd 1999 - The International Standard for Poor Programming Practice (SUXIX?) is embodied in the methodologies used at Microsoft. Let's all give Microsoft a hand for establishing such a valuable benchmark. Let Microsoft = 1.0, then measure the goodness of your code in relation to that - e.g. Solaris = 8.0, Linux = 9.0, FreeBSD = 10.0. Satisfied? -ecsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 19:48:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id B61951A78E for ; Tue, 19 Oct 1999 19:48:28 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (localhost [127.0.0.1]) by picnic.mat.net (8.9.3/8.9.3) with ESMTP id WAA30002; Tue, 19 Oct 1999 22:47:44 -0400 (EDT) (envelope-from chuckr@picnic.mat.net) Date: Tue, 19 Oct 1999 22:47:42 -0400 (EDT) From: Chuck Robey To: safe user Cc: freebsd-ports@FreeBSD.ORG Subject: Re: xpdf and the wholesale destruction of X-Windows In-Reply-To: <380D24C3.681A13EF@ecsd.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 19 Oct 1999, safe user wrote: > Let me clarify, then. > > I do a "make clean" in xpdf, and it does a clean in X11.6 also. > Did it kill X itself? No. But for whatever reason, suddenly > the following commands failed with "ld.so: can't locate xxxx.so.n.mm" > messages: Dear safe user, the reason he gave you that response is because no one else has had that experience. Is your X stuff in /usr/X11R6? Did libraries in /usr/X11R6/lib disappear? This would mean, generally, that something is *tremendously* broken in your entire installation, which is the reason that we're maybe wondering if it was only a head-space problem. See? What's this "X11.6" thing you're talking about, please give the entire pathname, ok? > > xv > identify (ImageMagick) > gimp > > basically, anything using a shared library (libjpeg, etc.) > > The installation was 3.2-RELEASE, I never asked for a.out style > anything. xpdf complained about not being able to find, I think, > libXpm.so.4.11 and that's when I tried to reinstall xpdf. Doing a > make clean in xpdf broke xv, et. al. with similar "ld.so can't find" > messages. Remember, the ports were installed as packages at the same > time the release was installed. If the packages were a.out, well, throw > me down a hole or something. (e.g. blame the victim, go ahead.) > > I made enough space to reinstall X, did so, and the problems went > away. > > Proof? Not enough time to generate proof. If it rings anyone's > mental bells what I'm talking about, good. If I'm right the make clean > is unwarrantedly overzealous, then the bell-rung person can maybe > patch that up. > > As far as making a comparison to Microsoft, well, that's the best way > to piss people off and make them take notice. May FreeBSD cover the > Earth ... that's why I get irritable if things are gratuitously busted. > (c) ecsd 1999 - The International Standard for Poor Programming > Practice (SUXIX?) is embodied in the methodologies used at Microsoft. > Let's all give Microsoft a hand for establishing such a valuable > benchmark. > Let Microsoft = 1.0, then measure the goodness of your code in relation > to that - e.g. Solaris = 8.0, Linux = 9.0, FreeBSD = 10.0. Satisfied? > > -ecsd > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > ---------------------------------------------------------------------------- Chuck Robey | Interests include C programming, Electronics, 213 Lakeside Dr. Apt. T-1 | communications, and signal processing. Greenbelt, MD 20770 | I run picnic.mat.net: FreeBSD-current(i386) and (301) 220-2114 | jaunt.mat.net : FreeBSD-current(Alpha) ---------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 22:20: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 146691AC1D for ; Tue, 19 Oct 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA46981; Tue, 19 Oct 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2EB051ABD9; Tue, 19 Oct 1999 22:11:52 -0700 (PDT) Message-Id: <19991020051152.2EB051ABD9@hub.freebsd.org> Date: Tue, 19 Oct 1999 22:11:52 -0700 (PDT) From: pfgiffun@bachue.usc.unal.edu.co To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14427: Minor update to the GNU ghostscript port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14427 >Category: ports >Synopsis: Minor update to the GNU ghostscript port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 22:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 3.2-R >Organization: U. Nacional de Colombia >Environment: >Description: Minimal update of the hpdj driver to change and cahnge of the ftp site. >How-To-Repeat: >Fix: diff -ru ghostscript5.old/Makefile ghostscript5/Makefile --- ghostscript5.old/Makefile Mon Oct 18 14:28:25 1999 +++ ghostscript5/Makefile Tue Oct 19 15:07:44 1999 @@ -10,7 +10,7 @@ CATEGORIES= print MASTER_SITES= ${MASTER_SITE_GNU} \ ftp://ftp.cs.wisc.edu/ghost/gnu/gs510/ \ - ftp://ftp.pdb.sni.de/pub/utilities/misc/ + ftp://ftp.sbs.de/pub/graphics/ghostscript/pcl3/ MASTER_SITE_SUBDIR= ghostscript DISTFILES= ${GS_SOURCES} ${PCL3_DRV} @@ -32,14 +32,14 @@ GS_SOURCES= ghostscript-5.10.tar.gz # Additional driver for HP PCL3 Printers -PCL3_DRV= hpdj-2.5.tar.gz +PCL3_DRV= hpdj-2.6.tar.gz post-extract: ${LN} -s ${WRKDIRPREFIX}${.CURDIR}/../../graphics/jpeg/work/jpeg-6b ${WRKSRC}/jpeg ${LN} -s ${WRKDIRPREFIX}${.CURDIR}/../../graphics/png/work/libpng-1.0.3 ${WRKSRC}/libpng # additional PCL3 driver - @${TAR} -xf ${WRKDIR}/hpdj-2.5/hpdj.tar -C ${WRKSRC} - @${PATCH} -d ${WRKSRC} --forward --quiet -E < ${WRKSRC}/devs.mak-5.10.diff + @${TAR} -xf ${WRKDIR}/hpdj-2.6/hpdj.tar -C ${WRKSRC} + @cat ${WRKSRC}/devs.mak-5.10.add >> ${WRKSRC}/devs.mak @${PATCH} -d ${WRKSRC} --forward --quiet -E < ${WRKSRC}/zmedia2.c-5.10.diff do-configure: diff -ru ghostscript5.old/files/md5 ghostscript5/files/md5 --- ghostscript5.old/files/md5 Mon Oct 18 14:28:24 1999 +++ ghostscript5/files/md5 Tue Oct 19 15:02:19 1999 @@ -1,3 +1,3 @@ -MD5 (hpdj-2.5.tar.gz) = cbe6b6c6cd00af9177a025870fc1a90a -MD5 (pdf_sec.ps) = 92cd6af5b4d7219e91e61b8351f0f7c4 MD5 (ghostscript-5.10.tar.gz) = b8dbc2595c06305f452a9c38bd0effef +MD5 (hpdj-2.6.tar.gz) = dcc402281f36afd2041144e0e97917be +MD5 (pdf_sec.ps) = 92cd6af5b4d7219e91e61b8351f0f7c4 diff -ru ghostscript5.old/pkg/DESCR ghostscript5/pkg/DESCR --- ghostscript5.old/pkg/DESCR Mon Oct 18 14:28:25 1999 +++ ghostscript5/pkg/DESCR Tue Oct 19 00:47:57 1999 @@ -8,7 +8,7 @@ GNU Ghostscript comes with NO WARRANTY and NO SUPPORT. -Also included with this package is the hpdj driver written by Martin +Also included with this package is the PCL3 driver written by Martin Lottermoser with defaults for a Deskjet 560C. See the man page for gs-hpdj(1) for details. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 22:24: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from silver.sdsmt.edu (silver.sdsmt.edu [151.159.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 768C21AC41 for ; Tue, 19 Oct 1999 22:23:59 -0700 (PDT) (envelope-from get6641@silver.sdsmt.edu) Received: from palm059 ([151.159.70.80]) by silver.sdsmt.edu (8.9.3/8.9.2) with SMTP id XAA15140 for ; Tue, 19 Oct 1999 23:23:53 -0600 Message-ID: <000c01bf1abb$4ea4e860$50469f97@sdsmt.edu> From: "Gary Townsend" To: Subject: parsing Date: Tue, 19 Oct 1999 23:23:51 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01BF1A89.00C33CA0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0009_01BF1A89.00C33CA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I'm trying to compile Amylaar driver (mud driver) but I'm getting a = error on lang.y (my parser) Currently it shows that I have the Yacc parser, but what I need is the = Byacc parser... when I do anything with byacc it redirects me to yacc = and I can not compile it.. is there a port that I can download to allow me to use byacc to parse = amylaar so I can compile it? Gary ------=_NextPart_000_0009_01BF1A89.00C33CA0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I'm trying to compile Amylaar driver (mud driver) = but I'm=20 getting a error on lang.y (my parser)
 
Currently it shows that I have the Yacc parser, but = what I=20 need is the Byacc parser... when I do anything with byacc it redirects = me to=20 yacc and I can not compile it..
 
is there a port that I can download to allow me to = use byacc=20 to parse amylaar so I can compile it?
 
Gary
------=_NextPart_000_0009_01BF1A89.00C33CA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 19 23:50: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D66FC1AEB5 for ; Tue, 19 Oct 1999 23:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA53184; Tue, 19 Oct 1999 23:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from localhost.primenet.com (208-48-172-22.nas-2.scf.primenet.com [208.48.172.22]) by hub.freebsd.org (Postfix) with ESMTP id 063D71AE98 for ; Tue, 19 Oct 1999 23:47:26 -0700 (PDT) (envelope-from jreynold@primenet.com) Received: (from jreynold@localhost) by localhost.primenet.com (8.9.3/8.9.3) id XAA01393; Tue, 19 Oct 1999 23:49:55 -0700 (MST) (envelope-from jreynold) Message-Id: <199910200649.XAA01393@localhost.primenet.com> Date: Tue, 19 Oct 1999 23:49:55 -0700 (MST) From: John Reynolds Reply-To: John Reynolds To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14429: port update: flexbackup-0.9.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14429 >Category: ports >Synopsis: Update to flexbackup port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 23:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: John Reynolds >Release: FreeBSD 3.3-STABLE i386 >Organization: >Environment: N/A >Description: I have just updated the port for "flexbackup" in sysutils to version 0.9.7. The diff's are attached which apply successfully to the 0.9.6 version (from within the sysutils directory). This version (0.9.7) has gone through portlint successfully. >How-To-Repeat: N/A >Fix: diff -urN flexbackup/Makefile flexbackup.new/Makefile --- flexbackup/Makefile Wed Oct 6 21:22:30 1999 +++ flexbackup.new/Makefile Tue Oct 19 22:46:44 1999 @@ -1,15 +1,16 @@ # New ports collection makefile for: flexbackup -# Version required: 0.9.6 -# Date created: Mon Sep 27 21:35:45 MST 1999 +# Version required: 0.9.7 +# Date created: Tue Oct 19 22:46:36 MST 1999 # Whom: John Reynolds # -# $FreeBSD: ports/sysutils/flexbackup/Makefile,v 1.1.1.1 1999/10/07 04:22:30 cpiazza Exp $ +# $FreeBSD$ # -DISTNAME= flexbackup-0.9.6 +DISTNAME= flexbackup-0.9.7 CATEGORIES= sysutils -MASTER_SITES= http://members.home.com/edwinh/flexbackup/tarball/ \ - http://metalab.unc.edu/pub/linux/system/backup/ +MASTER_SITES= http://www.bluecherry.net/~edwinh/flexbackup/ \ + http://metalab.unc.edu/pub/linux/system/backup/ \ + http://members.home.com/edwinh/flexbackup/ MAINTAINER= jreynold@primenet.com @@ -20,8 +21,8 @@ USE_PERL5 = yes post-configure: - @${INSTALL_DATA} ${WRKSRC}/flexbackup.conf ${WRKSRC}/flexbackup.conf.sample - @${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/flexbackup.README + @cp ${WRKSRC}/flexbackup.conf ${WRKSRC}/flexbackup.conf.sample + @cp ${WRKSRC}/README ${WRKSRC}/flexbackup.README do-install: ${INSTALL_SCRIPT} ${WRKSRC}/flexbackup ${PREFIX}/bin @@ -30,6 +31,6 @@ ${INSTALL_DATA} ${WRKSRC}/flexbackup.README ${PREFIX}/share/flexbackup post-install: - @${CAT} ${PKGDIR}/MESSAGE + @cat ${PKGDIR}/MESSAGE .include diff -urN flexbackup/files/md5 flexbackup.new/files/md5 --- flexbackup/files/md5 Wed Oct 6 21:22:30 1999 +++ flexbackup.new/files/md5 Tue Oct 19 22:30:22 1999 @@ -1 +1 @@ -MD5 (flexbackup-0.9.6.tar.gz) = aba52f1c03f9bfeb44c6c81129461469 +MD5 (flexbackup-0.9.7.tar.gz) = 3cf9e7e78635a5a2f4a00e0e5499cf47 diff -urN flexbackup/pkg/COMMENT flexbackup.new/pkg/COMMENT --- flexbackup/pkg/COMMENT Wed Oct 6 21:22:30 1999 +++ flexbackup.new/pkg/COMMENT Thu Sep 30 00:13:52 1999 @@ -1 +1 @@ -A perl-based, flexible tape backup system. Uses dump, cpio, or afio +A perl-based, flexible tape backup system. Uses dump, cpio, or afio. diff -urN flexbackup/pkg/DESCR flexbackup.new/pkg/DESCR --- flexbackup/pkg/DESCR Wed Oct 6 21:22:30 1999 +++ flexbackup.new/pkg/DESCR Tue Oct 19 22:36:43 1999 @@ -4,14 +4,14 @@ o Easy to configure. o Uses dump, afio, tar, or cpio with the flick of a switch. o Backup, extract, compare, list modes. + o On-disk database support for TOC on tapes. o Compression and buffering options for all backup types. o Full (0) and 1-9 levels of incremental backup (ala "dump"). - o Filesystem-oriented (won't traverse devices). + o Filesystem-oriented (won't traverse devices by default). o Does remote filesystems (over rsh/ssh; no special service). o Works with IDE/SCSI tapes or Linux ftape (allows table of contents support) or archive to normal files rather than device o Nice log files. - WWW: http://members.home.com/edwinh/flexbackup/ diff -urN flexbackup/pkg/MESSAGE flexbackup.new/pkg/MESSAGE --- flexbackup/pkg/MESSAGE Wed Oct 6 21:22:30 1999 +++ flexbackup.new/pkg/MESSAGE Tue Oct 19 22:40:26 1999 @@ -1,5 +1,4 @@ - ------------------- Flexbackup Configuration Information ----------------- +--------------------- Flexbackup Configuration Information -------------------- Flexbackup needs to have its configuration file placed in /etc. A template copy of this configuration file has been installed into @@ -10,12 +9,13 @@ /etc/flexbackup.conf -and edit appropriately for your site. +and edit appropriately for your site configuration. + **************************************************************** ** Changes have occurred in this file since previous versions ** + **************************************************************** Also see ${PREFIX}/share/flexbackup/flexbackup.README for more information on how to use flexbackup (until the man pages are written :). -------------------------------------------------------------------------- - +------------------------------------------------------------------------------- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 0:11:43 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rztsun.rz.tu-harburg.de (rztsun.rz.tu-harburg.de [134.28.200.14]) by hub.freebsd.org (Postfix) with ESMTP id 15EC01AA99 for ; Wed, 20 Oct 1999 00:11:36 -0700 (PDT) (envelope-from reimers@tu-harburg.de) Received: from tu-harburg.de (data.et8.tu-harburg.de [134.28.45.64]) by rztsun.rz.tu-harburg.de (8.9.0/8.8.8) with ESMTP id JAA14592 for ; Wed, 20 Oct 1999 09:11:34 +0200 (MET DST) Message-ID: <380D6B26.458E354E@tu-harburg.de> Date: Wed, 20 Oct 1999 09:11:34 +0200 From: Sven Reimers X-Mailer: Mozilla 4.6 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.org Subject: Java ports Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, During the process of redoing the Java-WWW pages for FreeBSD we want to add a section about how to do such ports. Are there up to know any conventions for port sof java things, that is where to put jar-files, class files, belonging scripts etc? I had a look at what is in the ports up to know regarding java, but the there are only very few so I am not sure what to make out of it. Hope this is the right place to ask. Sven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 0:20: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1109D1AFC9 for ; Wed, 20 Oct 1999 00:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA56318; Wed, 20 Oct 1999 00:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from M-Relay.HcRC.edu.tw (m-relay.HcRC.edu.tw [163.28.64.11]) by hub.freebsd.org (Postfix) with ESMTP id B47EC1AF01 for ; Wed, 20 Oct 1999 00:16:42 -0700 (PDT) (envelope-from ijliao@Terry.Dorm8.NCTU.edu.tw) Received: from Terry.Dorm8.NCTU.edu.tw (IDENT:root@Terry.Dorm8.NCTU.edu.tw [140.113.93.99]) by M-Relay.HcRC.edu.tw (8.9.3/8.9.3) with ESMTP id PAA87533 for ; Wed, 20 Oct 1999 15:16:41 +0800 (CST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.9.3/8.9.3) id PAA19042; Wed, 20 Oct 1999 15:16:40 +0800 (CST) (envelope-from ijliao) Message-Id: <199910200716.PAA19042@Terry.Dorm8.NCTU.edu.tw> Date: Wed, 20 Oct 1999 15:16:40 +0800 (CST) From: Ying-Chieh Liao Reply-To: ijliao@Terry.Dorm8.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14430: update ports: games/bnetd to 0.4.19 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14430 >Category: ports >Synopsis: update ports: games/bnetd to 0.4.19 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 00:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 4.0-CURRENT i386 >Organization: NCTU CSIE >Environment: FreeBSD Terry.Dorm8.NCTU.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #6: Mon Oct 18 23:07:37 CST 1999 root@Terry.Dorm8.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: update games/bnetd from 0.4.18 to 0.4.19 >How-To-Repeat: >Fix: diff -ruN /usr/ports/games/bnetd/Makefile bnetd/Makefile --- /usr/ports/games/bnetd/Makefile Mon Oct 18 19:10:29 1999 +++ bnetd/Makefile Wed Oct 20 14:50:05 1999 @@ -6,7 +6,7 @@ # $FreeBSD: ports/games/bnetd/Makefile,v 1.10 1999/10/16 03:41:32 cpiazza Exp $ # -DISTNAME= bnetd-0.4.18 +DISTNAME= bnetd-0.4.19 CATEGORIES= games net MASTER_SITES= http://www.bnetd.org/files/ diff -ruN /usr/ports/games/bnetd/files/md5 bnetd/files/md5 --- /usr/ports/games/bnetd/files/md5 Mon Oct 18 19:10:29 1999 +++ bnetd/files/md5 Wed Oct 20 15:09:41 1999 @@ -1 +1 @@ -MD5 (bnetd-0.4.18.tar.gz) = 930ff26ada5b115920afc72022a35368 +MD5 (bnetd-0.4.19.tar.gz) = c18118c89ec30bdb95dda8fa19b62f47 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 0:34:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from penguin.wise.edt.ericsson.se (penguin-ext.wise.edt.ericsson.se [194.237.142.110]) by hub.freebsd.org (Postfix) with ESMTP id B28B31AF89; Wed, 20 Oct 1999 00:34:06 -0700 (PDT) (envelope-from Daniel.Stenberg@haxx.nu) Received: from dirac.eral.ericsson.se (dirac.eral.ericsson.se [147.214.90.10]) by penguin.wise.edt.ericsson.se (8.9.3/8.9.3/WIREfire-1.3) with ESMTP id JAA11030; Wed, 20 Oct 1999 09:34:04 +0200 (MET DST) Received: from stanley.eral.ericsson.se (stanley [147.214.227.185]) by dirac.eral.ericsson.se (8.9.2/8.9.2/eri-0.9+) with ESMTP id JAA28656; Wed, 20 Oct 1999 09:34:02 +0200 (MET DST) Received: from localhost (qradlsg@localhost) by stanley.eral.ericsson.se (8.9.1/8.9.1/client-0.9) with ESMTP id JAA15997; Wed, 20 Oct 1999 09:34:02 +0200 (MET DST) X-Authentication-Warning: stanley.eral.ericsson.se: qradlsg owned process doing -bs Date: Wed, 20 Oct 1999 09:34:01 +0200 (MET DST) From: Daniel Stenberg X-Sender: qradlsg@stanley To: kris@FreeBSD.org Cc: ports@FreeBSD.org Subject: porting curl-6.1 to FreeBSD ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi I am the maintainer of curl. I've noticed that your ports section on www.freebsd.org only mentions the rather old curl 5.9 and I just recently got a bug report from a guy who tried to compile and build curl 6.0 on a recent FreeBSD version. Could you help me with details in how to make curl 6.1 compile and build on the latest FreeBSD versions? -- Daniel Stenberg -- http://curl.haxx.nu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 1:29: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 710941AE78; Wed, 20 Oct 1999 01:28:56 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA65573; Wed, 20 Oct 1999 01:28:56 -0700 (PDT) (envelope-from tg@FreeBSD.org) Date: Wed, 20 Oct 1999 01:28:56 -0700 (PDT) From: Message-Id: <199910200828.BAA65573@freefall.freebsd.org> To: noway@nohow.demon.co.uk, tg@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14422: New port: graphics/py-imaging-handbook Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: graphics/py-imaging-handbook State-Changed-From-To: open->closed State-Changed-By: tg State-Changed-When: Wed Oct 20 01:27:11 PDT 1999 State-Changed-Why: Committed, thanks. I took out the dependency on py-imaging, we don't have that in other doc ports either. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 3:45:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ecsd.transbay.net (ecsd.transbay.net [209.133.53.31]) by hub.freebsd.org (Postfix) with ESMTP id A2D4D1B157; Wed, 20 Oct 1999 03:45:15 -0700 (PDT) (envelope-from root@ecsd.transbay.net) Received: (from root@localhost) by ecsd.transbay.net (8.9.3/8.9.3) id DAA50361; Wed, 20 Oct 1999 03:46:59 -0700 (PDT) (envelope-from root) Date: Wed, 20 Oct 1999 03:46:59 -0700 (PDT) From: Jack Sysad Message-Id: <199910201046.DAA50361@ecsd.transbay.net> To: andreas@freebsd.org Subject: apsfilter death Cc: freebsd-ports@freebsd.org, jgrosch@mooseriver.com, tom@berkeleyinternet.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am using ghostscript 5.5, your latest apsfilter, FreeBSD 3.2. Machine is a pentium3/450, 128mb ram. I set up for epsonc printer, 720x720, letter, parallel=/dev/lpt0, 24bpp. The last time I looked at apsfilter I thought it gave me several new choices for current epson printers (like 440, 500, etc.) - not anymore. But when I try to test (or print) I get the following crash ... if I lpr, the crash report is printed in ascii. Otherwise it comes out of the screen like this session shows: If this test produces unacceptable results, then please choose another driver or try another (perhaps lower) print resolution, because it might be a memory problem. Only use print resolution that are supported by your printer, consult the printers manual ! Creating the test output might last some time, please be patient. T) Print a test page *) Back to main menue Your choice ? T Printing Test page using: cat /usr/local/apsfilter/setup/test.ps | gs -q -r720x720 -dBitsPerPixel=24 -sDEVICE=epsonc -sPAPERSIZE=letter -dNOPAUSE -dSAFER -sOutputFile=/tmp/test.out redir_gs_msg.ps - Ok, to print testpage ? [y/n] y Creating test page... Unrecoverable error: rangecheck in .putdeviceprops Unexpected interpreter error -15. Error object: .putdeviceprops(1488)op_array(586)0x81b9410: Execution stack at 0x81a49cc: 0x81c49fc: 0x0f oper --F---e-- 0x0000 0x0807defc = %interp_exit 0x81c4a04: 0x03 file --G-rxe-- 0x0001 0x081b9bc8 0x81c4a0c: 0x0e null --F---e-- 0x0000 0x0807f974 0x81c4a14: 0x0b int --F------ 0x0552 0x00000006 = 6 0x81c4a1c: 0x0b int --F------ 0x0007 0x00000004 = 4 0x81c4a24: 0x0f oper --F---e-- 0x0000 0x0807f960 = %oparray_pop 0x81c4a2c: 0x05 mpry --G-rxe-- 0x0002 0x08215854 0x81c4a34: 0x0e null --F---e-- 0x0000 0x0807f974 0x81c4a3c: 0x0b int --F------ 0x0001 0x00000006 = 6 0x81c4a44: 0x0b int --F------ 0x0000 0x00000004 = 4 0x81c4a4c: 0x0f oper --F---e-- 0x0000 0x0807f960 = %oparray_pop 0x81c4a54: 0x05 mpry --G-rxe-- 0x0039 0x082162d6 Dictionary stack at 0x81a4a28: 0x81c522c: 0x02 dict --Gwrx--- 0x0814 0x081b6034 0x81c5234: 0x02 dict --Gwrx--- 0xbfbf 0x08226938 0x81c523c: 0x02 dict --Lwrx--- 0x0000 0x081befc8 0x81c5244: 0x02 dict --Gwrx--- 0x0814 0x081b6034 time: command terminated abnormally 0.23 real 0.00 user 0.00 sys Printing test page... ls: test.out: No such file or directory cat: /tmp/test.out: No such file or directory 0.00 real 0.00 user 0.00 sys [ press RETURN to continue ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 7:33:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mailgw02.execpc.com (mailgw02.execpc.com [169.207.3.78]) by hub.freebsd.org (Postfix) with ESMTP id CBD511BA7A for ; Wed, 20 Oct 1999 07:33:25 -0700 (PDT) (envelope-from hamilton@pobox.com) Received: from woodstock.monkey.net (rampa-2-16.mdm.mkt.execpc.com [169.207.120.144]) by mailgw02.execpc.com (8.9.1) id JAA24968; Wed, 20 Oct 1999 09:31:26 -0500 Received: from pobox.com (localhost [127.0.0.1]) by woodstock.monkey.net (Postfix) with ESMTP id 830526D; Wed, 20 Oct 1999 09:35:04 -0500 (CDT) X-Mailer: exmh version 2.1.1 10/16/1999 To: Chuck Robey Cc: safe user , freebsd-ports@FreeBSD.ORG Subject: Re: xpdf and the wholesale destruction of X-Windows In-reply-to: Your message of "Tue, 19 Oct 1999 22:47:42 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 20 Oct 1999 09:35:04 -0500 From: Jon Hamilton Message-Id: <19991020143504.830526D@woodstock.monkey.net> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message , Chuck Rob ey wrote: } On Tue, 19 Oct 1999, safe user wrote: } } > Let me clarify, then. } > } > I do a "make clean" in xpdf, and it does a clean in X11.6 also. } > Did it kill X itself? No. But for whatever reason, suddenly } > the following commands failed with "ld.so: can't locate xxxx.so.n.mm" } > messages: } } Dear safe user, the reason he gave you that response is because no one } else has had that experience. } } Is your X stuff in /usr/X11R6? Did libraries in /usr/X11R6/lib disappear? } This would mean, generally, that something is *tremendously* broken in } your entire installation, which is the reason that we're maybe wondering } if it was only a head-space problem. See? He said elsewhere that this was a 3.2 thing, and I don't have anything around from that vintage, so can't check, but it almost sounds to me like one of the ports has done an ldconfig at some point with the wrong directories. -- Jon Hamilton hamilton@pobox.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 9: 0: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AC6414D7D for ; Wed, 20 Oct 1999 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA57189; Wed, 20 Oct 1999 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 20 Oct 1999 09:00:01 -0700 (PDT) Message-Id: <199910201600.JAA57189@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: John and Jennifer Reynolds Subject: Re: ports/14429: Update to flexbackup port Reply-To: John and Jennifer Reynolds Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14429; it has been noted by GNATS. From: John and Jennifer Reynolds To: freebsd-gnats-submit@freebsd.org Cc: jreynold@sedona.ch.intel.com, jreynold@primenet.com Subject: Re: ports/14429: Update to flexbackup port Date: Wed, 20 Oct 1999 09:00:06 -0700 (MST) Please excuse my midnight debugging skills ... the location of two of the tar file mirrors in my Makefile had changed and I didn't realize it before sending in the diff to this port. The following diff is the correct one. Please apply that. diff -urN flexbackup/Makefile flexbackup.new/Makefile --- flexbackup/Makefile Wed Oct 6 21:22:30 1999 +++ flexbackup.new/Makefile Wed Oct 20 07:12:01 1999 @@ -1,14 +1,15 @@ # New ports collection makefile for: flexbackup -# Version required: 0.9.6 -# Date created: Mon Sep 27 21:35:45 MST 1999 +# Version required: 0.9.7 +# Date created: Tue Oct 19 22:46:36 MST 1999 # Whom: John Reynolds # -# $FreeBSD: ports/sysutils/flexbackup/Makefile,v 1.1.1.1 1999/10/07 04:22:30 cpiazza Exp $ +# $FreeBSD$ # -DISTNAME= flexbackup-0.9.6 +DISTNAME= flexbackup-0.9.7 CATEGORIES= sysutils -MASTER_SITES= http://members.home.com/edwinh/flexbackup/tarball/ \ +MASTER_SITES= http://www.bluecherry.net/~edwinh/flexbackup/tarball/ \ + http://members.home.com/edwinh/flexbackup/tarball/ \ http://metalab.unc.edu/pub/linux/system/backup/ MAINTAINER= jreynold@primenet.com @@ -20,8 +21,8 @@ USE_PERL5 = yes post-configure: - @${INSTALL_DATA} ${WRKSRC}/flexbackup.conf ${WRKSRC}/flexbackup.conf.sample - @${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/flexbackup.README + @cp ${WRKSRC}/flexbackup.conf ${WRKSRC}/flexbackup.conf.sample + @cp ${WRKSRC}/README ${WRKSRC}/flexbackup.README do-install: ${INSTALL_SCRIPT} ${WRKSRC}/flexbackup ${PREFIX}/bin @@ -30,6 +31,6 @@ ${INSTALL_DATA} ${WRKSRC}/flexbackup.README ${PREFIX}/share/flexbackup post-install: - @${CAT} ${PKGDIR}/MESSAGE + @cat ${PKGDIR}/MESSAGE .include diff -urN flexbackup/files/md5 flexbackup.new/files/md5 --- flexbackup/files/md5 Wed Oct 6 21:22:30 1999 +++ flexbackup.new/files/md5 Tue Oct 19 22:30:22 1999 @@ -1 +1 @@ -MD5 (flexbackup-0.9.6.tar.gz) = aba52f1c03f9bfeb44c6c81129461469 +MD5 (flexbackup-0.9.7.tar.gz) = 3cf9e7e78635a5a2f4a00e0e5499cf47 diff -urN flexbackup/pkg/COMMENT flexbackup.new/pkg/COMMENT --- flexbackup/pkg/COMMENT Wed Oct 6 21:22:30 1999 +++ flexbackup.new/pkg/COMMENT Thu Sep 30 00:13:52 1999 @@ -1 +1 @@ -A perl-based, flexible tape backup system. Uses dump, cpio, or afio +A perl-based, flexible tape backup system. Uses dump, cpio, or afio. diff -urN flexbackup/pkg/DESCR flexbackup.new/pkg/DESCR --- flexbackup/pkg/DESCR Wed Oct 6 21:22:30 1999 +++ flexbackup.new/pkg/DESCR Tue Oct 19 22:36:43 1999 @@ -4,14 +4,14 @@ o Easy to configure. o Uses dump, afio, tar, or cpio with the flick of a switch. o Backup, extract, compare, list modes. + o On-disk database support for TOC on tapes. o Compression and buffering options for all backup types. o Full (0) and 1-9 levels of incremental backup (ala "dump"). - o Filesystem-oriented (won't traverse devices). + o Filesystem-oriented (won't traverse devices by default). o Does remote filesystems (over rsh/ssh; no special service). o Works with IDE/SCSI tapes or Linux ftape (allows table of contents support) or archive to normal files rather than device o Nice log files. - WWW: http://members.home.com/edwinh/flexbackup/ diff -urN flexbackup/pkg/MESSAGE flexbackup.new/pkg/MESSAGE --- flexbackup/pkg/MESSAGE Wed Oct 6 21:22:30 1999 +++ flexbackup.new/pkg/MESSAGE Tue Oct 19 22:40:26 1999 @@ -1,5 +1,4 @@ - ------------------- Flexbackup Configuration Information ----------------- +--------------------- Flexbackup Configuration Information -------------------- Flexbackup needs to have its configuration file placed in /etc. A template copy of this configuration file has been installed into @@ -10,12 +9,13 @@ /etc/flexbackup.conf -and edit appropriately for your site. +and edit appropriately for your site configuration. + **************************************************************** ** Changes have occurred in this file since previous versions ** + **************************************************************** Also see ${PREFIX}/share/flexbackup/flexbackup.README for more information on how to use flexbackup (until the man pages are written :). -------------------------------------------------------------------------- - +------------------------------------------------------------------------------- -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jreynold@primenet.com FreeBSD 3.3-STABLE. FreeBSD: The Power to Serve. http://www.primenet.com/~jreynold/ Come join us!!! @ http://www.FreeBSD.org/ =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 10: 3:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 62B6914A17; Wed, 20 Oct 1999 10:03:31 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 52C981CD438; Wed, 20 Oct 1999 10:03:31 -0700 (PDT) (envelope-from kris@hub.freebsd.org) Date: Wed, 20 Oct 1999 10:03:31 -0700 (PDT) From: Kris Kennaway To: Daniel Stenberg Cc: ports@FreeBSD.org Subject: Re: porting curl-6.1 to FreeBSD ? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Daniel, Thanks for your message. It's on my to-do list about updating the FreeBSD curl port - but my PC isn't on the net at the moment, and I've been fairly busy with other things. I'll try and look at it soon though, and will let you know anything I find out. Cheers, Kris ---- XOR for AES -- join the campaign! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 10:10: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C959E14A20 for ; Wed, 20 Oct 1999 10:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA70242; Wed, 20 Oct 1999 10:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C87C214C0D; Wed, 20 Oct 1999 10:08:01 -0700 (PDT) Message-Id: <19991020170801.C87C214C0D@hub.freebsd.org> Date: Wed, 20 Oct 1999 10:08:01 -0700 (PDT) From: esu@yk.rim.or.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14433: update ports :games/actx (0.99.1 -> 0.99.2) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14433 >Category: ports >Synopsis: update ports :games/actx (0.99.1 -> 0.99.2) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 10:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Shinya Esu >Release: FreeBSD 3.3-STABLE >Organization: >Environment: FreeBSD colard.yk.rim.or.jp 3.3-STABLE FreeBSD 3.3-STABLE #10: Mon Sep 20 21:17:15 JST 1999 esu@colard.yk.rim.or.jp:/usr/src/sys/compile/MOON i386 >Description: update of games/actx >How-To-Repeat: >Fix: begin 644 actx-0.99.1_0.99.2.diff.gz M'XL("$ST#3@``V%C='@M,"XY.2XQ7S`N.3DN,BYD:69F`.U7W6[B1A2^3I[B MH&ZD%O#/&!N#U50A@6S3-C\*J,W=:H('\.(?UAXOI!=]ETI[T;NJ%WO?OD5O M^R:=&1LPQL%DFTI151)A//.=,^=\YYS/LNV,1B#-0L!#NE`N\92,')>(NS<^ MF:]6#JO5ZB;FX#+PX7I(`2%0=4O7+0T!:K?;AY(D;3LX&$QB`66G/W'\ M!PR]*(8O212?/$SET/'D()3?SK[B9L+TU7E(R&F_:R4Q*V/LD4C9X*[^'I#< M$*_X@'N2TGPJ5U24A/V0GK4DVG^L)%IQ2;1G+XF],;@\@TCQ;&,] M>*NE]>BNE@IFMU$PNVM\;GA;EMK8,;S)Y%;@LFO`YYF^E"D.Y?&/7\`QF!K1 M1C8BS9%MZ$,;F[IYKZJ&:MNJJ;8(2EHNZ;[&V994E$%E)WDUA'S26/ MW*WC1Q2[KLS=AT/6X&.`\]`1#J'%J])H6PT]<5B!6JV6,TGF9=-$5RW1Z,+D MY`2D5IWE5!/?)R=LC;@,3G'$Y#9SRAT"W1T>I@ MOG^/W2#PSP.?6B!5I9&S(+;D$=N)/2F4_"#TL"M)2)>JRZ,KPB[R[4?.OE/F M^#T_?Q.8"2`%B"!6H#,N/QEO]X[/<3,7/X#T#HXB89%(9:.Y;%U>R^W:Y0>J MS1Z(RSIL5SO7.:IF,6U,T;G>23C+%.N;M%@__P$??_OPZ\=??O_KPY_L+@V- ME5I?MEF2[]/+SLRRJ/]JPKI,2(>%-JGS'>7//]LS@+2[+R$Y)Q M&,0^>\Y]'=`;QY^FE4#-NJ;E2_&(9<=UAN34CLI_$F*/_ M4V,LF+=/BVVGPMN/"K+]J,+;!0JOERN\G9M3)LBJOK_"1]B;\>=MRC#HO MES(ZOUPJ$/AFD<"O\)L#J&E6PRQ4=H@F."0*6:1C+(X-8\\1DRPB,>LHG3A^ M%KLSEJ_51;9D;5P,\)P(3W%@)T0OAQ@"LI-_M1R"RB%:.:11#M'+ M(;LRHN49T?*,:'E&M#PCKSP6KSP6KSP6;^]8=K'KE;.;0IKE$+,@ G;A]ZT8XQ8:.O[MXNL4XJ<^V[#^S]68BX!?,@G![^#1+,G%_E%@`` ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 10:12:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from loki.ideaglobal.com (loki.ideaglobal.com [194.36.20.54]) by hub.freebsd.org (Postfix) with ESMTP id 0378514A17 for ; Wed, 20 Oct 1999 10:12:18 -0700 (PDT) (envelope-from kiril@loki.ideaglobal.com) Received: (from kiril@localhost) by loki.ideaglobal.com (8.9.3/8.9.2) id RAA29865 for freebsd-ports@freebsd.org; Wed, 20 Oct 1999 17:12:21 GMT (envelope-from kiril) From: Kiril Mitev Message-Id: <199910201712.RAA29865@loki.ideaglobal.com> Subject: ftp ports broken ? To: freebsd-ports@freebsd.org Date: Wed, 20 Oct 1999 17:12:21 +0000 (GMT) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Basically: 1. NO Makefile's in /usr/ports/net/*ftp* 2. NO README.html's in /usr/ports/ftp/* is this a temporary situation or a permanent f'up ? (please CC on replies) -- Kiril Mitev, IT Operations Mgr, London IDEAglobal.com Standard Corporate Disclaimer applies, see http://www.ideaglobal.com/email-disclaimer.html for details. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 10:36:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from nohow.demon.co.uk (nohow.demon.co.uk [212.228.18.189]) by hub.freebsd.org (Postfix) with ESMTP id 5D03814BC4 for ; Wed, 20 Oct 1999 10:36:30 -0700 (PDT) (envelope-from noway@nohow.demon.co.uk) Received: from localhost (noway@localhost) by nohow.demon.co.uk (8.9.3/8.9.3) with ESMTP id SAA79598; Wed, 20 Oct 1999 18:36:09 +0100 (BST) (envelope-from noway@nohow.demon.co.uk) Date: Wed, 20 Oct 1999 18:36:08 +0100 (BST) From: Jose Marques To: Sven Reimers Cc: ports@FreeBSD.org Subject: Re: Java ports In-Reply-To: <380D6B26.458E354E@tu-harburg.de> Message-ID: X-No-Archive: yes MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 20 Oct 1999, Sven Reimers wrote: > Are there up to know any conventions > for port sof java things, that is where > to put jar-files, class files, belonging > scripts etc? You might try asking on freebsd-java. I've done a few java ports - mostly for my own use. I use the following conventions. 1) If it's a library then jar files go into: /usr/local/share/java/classes/ 2) If it's a stand-alone application then jar files go into: /usr/local/share/java// and scripts to run it go into: /usr/local/bin/ 3) Documentation goes into: /usr/local/share/java// I have six open PRs for Java ports than you may like to look at. ports/12522: New port: cos ports/12523: New port: jdbcpool ports/13160: New port: java/jaf ports/13159: New port: java/collections ports/13162: New port: java/infobus ports/13163: New port: java/javamail -- Jose Marques To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 10:39: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F40114BE7; Wed, 20 Oct 1999 10:39:01 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA75485; Wed, 20 Oct 1999 10:39:01 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Wed, 20 Oct 1999 10:39:01 -0700 (PDT) From: Message-Id: <199910201739.KAA75485@freefall.freebsd.org> To: esu@yk.rim.or.jp, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14433: update ports :games/actx (0.99.1 -> 0.99.2) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports :games/actx (0.99.1 -> 0.99.2) State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Wed Oct 20 10:38:50 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 10:40:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CCAE714C0B for ; Wed, 20 Oct 1999 10:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA75701; Wed, 20 Oct 1999 10:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from M-Relay.HcRC.edu.tw (m-relay.HcRC.edu.tw [163.28.64.11]) by hub.freebsd.org (Postfix) with ESMTP id 6264D14C04 for ; Wed, 20 Oct 1999 10:38:22 -0700 (PDT) (envelope-from ijliao@Terry.Dorm8.NCTU.edu.tw) Received: from Terry.Dorm8.NCTU.edu.tw (IDENT:root@Terry.Dorm8.NCTU.edu.tw [140.113.93.99]) by M-Relay.HcRC.edu.tw (8.9.3/8.9.3) with ESMTP id BAA08828 for ; Thu, 21 Oct 1999 01:38:22 +0800 (CST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.9.3/8.9.3) id BAA29183; Thu, 21 Oct 1999 01:38:21 +0800 (CST) (envelope-from ijliao) Message-Id: <199910201738.BAA29183@Terry.Dorm8.NCTU.edu.tw> Date: Thu, 21 Oct 1999 01:38:21 +0800 (CST) From: Ying-Chieh Liao Reply-To: ijliao@Terry.Dorm8.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14434: update ports: ftp/wu-ftpd to 2.6.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14434 >Category: ports >Synopsis: update ports: ftp/wu-ftpd to 2.6.0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 10:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 4.0-CURRENT i386 >Organization: NCTU CSIE >Environment: FreeBSD Terry.Dorm8.NCTU.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #6: Mon Oct 18 23:07:37 CST 1999 root@Terry.Dorm8.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: update ftp/wu-ftpd from 2.5.0 to 2.6.0 >How-To-Repeat: >Fix: diff -ruN /usr/ports/ftp/wu-ftpd/Makefile wu-ftpd/Makefile --- /usr/ports/ftp/wu-ftpd/Makefile Sat Sep 4 01:27:24 1999 +++ wu-ftpd/Makefile Thu Oct 21 01:34:44 1999 @@ -8,25 +8,19 @@ # REMINDER: to use ftpaccess(5) you need to specify -a in command line, # it is changed from previous versions -DISTNAME= wu-ftpd-2.5.0 +DISTNAME= wu-ftpd-2.6.0 CATEGORIES= ftp -MASTER_SITES= ftp://ftp.vr.net/pub/wu-ftpd/wu-ftpd/ - -PATCH_SITES= ftp://ftp.wu-ftpd.org/pub/wu-ftpd/quickfixes/apply_to_2.5.0/ -PATCHFILES= \ - data-limit.patch \ - deny.not.nameserved.patch \ - mapped.path.overrun.patch \ - not.in.class.patch \ - rfc931.timeout.patch +MASTER_SITES= ftp://ftp.wu-ftpd.org/pub/wu-ftpd/ MAINTAINER= ache@FreeBSD.org Y2K= http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html#QA35 +HAS_CONFIGURE= yes + MAN1= ftpcount.1 ftpwho.1 MAN5= ftpaccess.5 ftphosts.5 ftpconversions.5 xferlog.5 -MAN8= ftpd.8 ftpshut.8 +MAN8= ftpd.8 ftpshut.8 privatepw.8 ftprestart.8 do-build: cd ${WRKSRC} && ./build fbs diff -ruN /usr/ports/ftp/wu-ftpd/files/md5 wu-ftpd/files/md5 --- /usr/ports/ftp/wu-ftpd/files/md5 Sat Sep 4 01:27:31 1999 +++ wu-ftpd/files/md5 Thu Oct 21 01:01:36 1999 @@ -1,6 +1 @@ -MD5 (wu-ftpd-2.5.0.tar.gz) = 98f9c8490e0d1ca2c3c57e60e65803b7 -MD5 (data-limit.patch) = 1a3868e8533ab13c88ec572fff55957a -MD5 (deny.not.nameserved.patch) = 5f5158c26caa9db10c02e92b258c5a1f -MD5 (mapped.path.overrun.patch) = b01b65652eb3816f0ab11971ac52424d -MD5 (not.in.class.patch) = 5f1eb9b3c8ab07c3005c5cb7c1c6091c -MD5 (rfc931.timeout.patch) = 0eae85226fb40f4d717693472de19c46 +MD5 (wu-ftpd-2.6.0.tar.gz) = 652cfe4b59e0468eded736e7c281d16f diff -ruN /usr/ports/ftp/wu-ftpd/patches/patch-aa wu-ftpd/patches/patch-aa --- /usr/ports/ftp/wu-ftpd/patches/patch-aa Thu Dec 25 01:45:43 1997 +++ wu-ftpd/patches/patch-aa Thu Oct 21 01:04:18 1999 @@ -1,19 +1,11 @@ -*** src/config/config.fbs.bak Fri Dec 12 18:17:19 1997 ---- src/config/config.fbs Wed Dec 24 20:39:50 1997 -*************** -*** 29,35 **** - #define VIRTUAL - # if defined(__FreeBSD__) - # undef SPT_TYPE -! # if __FreeBSD__ == 2 - # include /* and this works */ - # if __FreeBSD_version >= 199512 /* 2.2-current right now */ - # define SPT_TYPE SPT_BUILTIN ---- 29,35 ---- - #define VIRTUAL - # if defined(__FreeBSD__) - # undef SPT_TYPE -! # if __FreeBSD__ >= 2 - # include /* and this works */ - # if __FreeBSD_version >= 199512 /* 2.2-current right now */ - # define SPT_TYPE SPT_BUILTIN +--- src/config/config.fbs.orig Thu Oct 21 01:02:40 1999 ++++ src/config/config.fbs Thu Oct 21 01:03:26 1999 +@@ -57,7 +57,7 @@ + #define VIRTUAL + #if defined(__FreeBSD__) + #undef SPT_TYPE +-#if __FreeBSD__ >= 2 ++#if __FreeBSD__ == 2 + #include /* and this works */ + #if __FreeBSD_version >= 199512 /* 2.2-current right now */ + #define SPT_TYPE SPT_BUILTIN diff -ruN /usr/ports/ftp/wu-ftpd/patches/patch-ab wu-ftpd/patches/patch-ab --- /usr/ports/ftp/wu-ftpd/patches/patch-ab Wed Apr 7 19:08:53 1999 +++ wu-ftpd/patches/patch-ab Thu Oct 21 01:11:39 1999 @@ -1,15 +1,17 @@ ---- makefiles/Makefile.fbs.orig Tue Mar 30 05:31:40 1999 -+++ makefiles/Makefile.fbs Wed Apr 7 14:58:44 1999 -@@ -1,5 +1,7 @@ +--- makefiles/Makefile.fbs.orig Thu Oct 21 01:05:27 1999 ++++ makefiles/Makefile.fbs Thu Oct 21 01:10:55 1999 +@@ -24,7 +24,9 @@ + # + DESTDIR= -PREFIX= /usr/local -+PREFIX?= /usr/local ++PREFIX?= /usr/local + -+ETCDIR= ${DESTDIR}${PREFIX}/etc ++ETCDIR= ${DESTDIR}${PREFIX}/etc BINDIR= ${DESTDIR}${PREFIX}/bin BINOWN= bin -@@ -27,12 +29,18 @@ +@@ -52,14 +54,17 @@ @if [ ! -e ${SBINDIR} ]; then \ ${INSTALL} -o ${SBINOWN} -g ${SBINGRP} -m 755 -d ${SBINDIR} ; \ fi @@ -17,24 +19,23 @@ - @( cd ${SBINDIR} ; ln -s -f in.ftpd wu.ftpd ; chown ${SBINOWN}.${SBINGRP} wu.ftpd ) - @( cd ${SBINDIR} ; ln -s -f in.ftpd in.wuftpd ; chown ${SBINOWN}.${SBINGRP} in.wuftpd ) + ${INSTALL} -c -o ${SBINOWN} -g ${SBINGRP} -m 110 bin/ftpd ${SBINDIR}/ftpd -+# ${INSTALL} -c -o ${SBINOWN} -g ${SBINGRP} -m 110 bin/ftpd ${SBINDIR}/in.ftpd -+# @( cd ${SBINDIR} ; ln -s -f in.ftpd wu.ftpd ; chown ${SBINOWN}.${SBINGRP} wu.ftpd ) -+# @( cd ${SBINDIR} ; ln -s -f in.ftpd in.wuftpd ; chown ${SBINOWN}.${SBINGRP} in.wuftpd ) ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 111 bin/ftpshut ${BINDIR}/ftpshut + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 111 bin/ftprestart ${BINDIR}/ftprestart ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 111 bin/ftpcount ${BINDIR}/ftpcount ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 111 bin/ftpwho ${BINDIR}/ftpwho -+ $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftpaccess ${ETCDIR}/ftpaccess.example -+ $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftpusers ${ETCDIR}/ftpusers.example -+ $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftpconversions ${ETCDIR}/ftpconversions.example -+ $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftphosts ${ETCDIR}/ftphosts.example -+ $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftpgroups ${ETCDIR}/ftpgroups.example + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 111 bin/privatepw ${BINDIR}/privatepw ++ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftpaccess ${ETCDIR}/ftpaccess.example ++ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftpusers ${ETCDIR}/ftpusers.example ++ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftpconversions ${ETCDIR}/ftpconversions.example ++ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftphosts ${ETCDIR}/ftphosts.example ++ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 doc/examples/ftpgroups ${ETCDIR}/ftpgroups.example @echo installing manpages. @if [ ! -e ${MANDIR}/man1 ]; then \ ${INSTALL} -o ${MANOWN} -g ${MANGRP} -m 755 -d ${MANDIR}/man1 ; \ -@@ -51,12 +59,12 @@ - fi - ${INSTALL} -c -o ${MANOWN} -g ${MANGRP} -m 444 doc/ftpd.8 ${MANDIR}/man8/ftpd.8 +@@ -80,14 +85,3 @@ ${INSTALL} -c -o ${MANOWN} -g ${MANGRP} -m 444 doc/ftpshut.8 ${MANDIR}/man8/ftpshut.8 + ${INSTALL} -c -o ${MANOWN} -g ${MANGRP} -m 444 doc/ftprestart.8 ${MANDIR}/man8/ftprestart.8 + ${INSTALL} -c -o ${MANOWN} -g ${MANGRP} -m 444 util/privatepw/privatepw.8 ${MANDIR}/man8/privatepw.8 - @echo Compressing manpages - gzip -f -9 ${MANDIR}/man1/ftpcount.1 - gzip -f -9 ${MANDIR}/man1/ftpwho.1 @@ -44,12 +45,5 @@ - gzip -f -9 ${MANDIR}/man5/xferlog.5 - gzip -f -9 ${MANDIR}/man8/ftpd.8 - gzip -f -9 ${MANDIR}/man8/ftpshut.8 -+# @echo Compressing manpages -+# gzip -f -9 ${MANDIR}/man1/ftpcount.1 -+# gzip -f -9 ${MANDIR}/man1/ftpwho.1 -+# gzip -f -9 ${MANDIR}/man5/ftpaccess.5 -+# gzip -f -9 ${MANDIR}/man5/ftpconversions.5 -+# gzip -f -9 ${MANDIR}/man5/ftphosts.5 -+# gzip -f -9 ${MANDIR}/man5/xferlog.5 -+# gzip -f -9 ${MANDIR}/man8/ftpd.8 -+# gzip -f -9 ${MANDIR}/man8/ftpshut.8 +- gzip -f -9 ${MANDIR}/man8/ftprestart.8 +- gzip -f -9 ${MANDIR}/man8/privatepw.8 diff -ruN /usr/ports/ftp/wu-ftpd/patches/patch-ac wu-ftpd/patches/patch-ac --- /usr/ports/ftp/wu-ftpd/patches/patch-ac Fri Jan 31 01:00:45 1997 +++ wu-ftpd/patches/patch-ac Thu Jan 1 08:00:00 1970 @@ -1,42 +0,0 @@ -*** src/pathnames.h.bak Mon Jan 20 06:21:45 1997 ---- src/pathnames.h Thu Jan 30 15:42:24 1997 -*************** -*** 45,54 **** - #define _PATH_CVT "/etc/ftpd/ftpconversions" - #define _PATH_PRIVATE "/etc/ftpd/ftpgroups" - #else -! #define _PATH_FTPUSERS "/usr/local/lib/ftpd/ftpusers" -! #define _PATH_FTPACCESS "/usr/local/lib/ftpd/ftpaccess" -! #define _PATH_CVT "/usr/local/lib/ftpd/ftpconversions" -! #define _PATH_PRIVATE "/usr/local/lib/ftpd/ftpgroups" - #endif - #endif - ---- 45,54 ---- - #define _PATH_CVT "/etc/ftpd/ftpconversions" - #define _PATH_PRIVATE "/etc/ftpd/ftpgroups" - #else -! #define _PATH_FTPUSERS "!!PREFIX!!/etc/ftpusers" -! #define _PATH_FTPACCESS "!!PREFIX!!/etc/ftpaccess" -! #define _PATH_CVT "!!PREFIX!!/etc/ftpconversions" -! #define _PATH_PRIVATE "!!PREFIX!!/etc/ftpgroups" - #endif - #endif - -*************** -*** 109,115 **** - #ifdef USE_ETC_FTPD - #define _PATH_FTPHOSTS "/etc/ftpd/ftphosts" - #else -! #define _PATH_FTPHOSTS "/usr/local/lib/ftpd/ftphosts" - #endif - #endif - #endif ---- 109,115 ---- - #ifdef USE_ETC_FTPD - #define _PATH_FTPHOSTS "/etc/ftpd/ftphosts" - #else -! #define _PATH_FTPHOSTS "!!PREFIX!!/etc/ftphosts" - #endif - #endif - #endif diff -ruN /usr/ports/ftp/wu-ftpd/patches/patch-ai wu-ftpd/patches/patch-ai --- /usr/ports/ftp/wu-ftpd/patches/patch-ai Tue Mar 9 21:54:45 1999 +++ wu-ftpd/patches/patch-ai Thu Oct 21 01:21:05 1999 @@ -1,6 +1,6 @@ ---- config.h.orig Thu Mar 4 09:45:57 1999 -+++ config.h Tue Mar 9 16:33:39 1999 -@@ -74,7 +74,7 @@ +--- config.h.in.orig Thu Oct 21 01:18:55 1999 ++++ config.h.in Thu Oct 21 01:20:41 1999 +@@ -99,7 +99,7 @@ * See FIXES-2.4-HOBBIT for more information on this option. */ @@ -9,21 +9,12 @@ /* * OPIE -@@ -203,7 +203,7 @@ - * Undefine this to let NOOP reset the idle timeout. +@@ -131,7 +131,7 @@ + * the logging at the cost of a possible slight delay in connection. */ - --#define IGNORE_NOOP -+#undef IGNORE_NOOP - - /* - * XFERLOG_REALPATH -@@ -257,7 +257,7 @@ - * the risk of PASV port race stealing the connection. It also is non-RFC - * compliant, so it may cause problems for some client sites. - */ --#define FIGHT_PASV_PORT_RACE -+#undef FIGHT_PASV_PORT_RACE - + #undef USE_RFC931 +- ++ /* - * Define this to completely disable anonymous FTP access. + * BUFFER_SIZE + * You can specify the buffer size for binary transfers; the defaults diff -ruN /usr/ports/ftp/wu-ftpd/patches/patch-al wu-ftpd/patches/patch-al --- /usr/ports/ftp/wu-ftpd/patches/patch-al Mon Apr 28 05:48:53 1997 +++ wu-ftpd/patches/patch-al Thu Oct 21 01:23:45 1999 @@ -1,19 +1,11 @@ -*** support/makefiles/Makefile.fbs.bak Mon Mar 3 12:11:54 1997 ---- support/makefiles/Makefile.fbs Sun Apr 27 21:13:35 1997 -*************** -*** 8,14 **** - LIBC = /usr/lib/libc.a - IFLAGS = - LFLAGS = -! CFLAGS = -O ${IFLAGS} ${LFLAGS} -DNO_MALLOC_PROTO - - SRCS = strcasestr.c authuser.c ftw.c - OBJS = strcasestr.o authuser.o ftw.o ---- 8,14 ---- - LIBC = /usr/lib/libc.a - IFLAGS = - LFLAGS = -! CFLAGS += ${IFLAGS} ${LFLAGS} -DNO_MALLOC_PROTO - - SRCS = strcasestr.c authuser.c ftw.c - OBJS = strcasestr.o authuser.o ftw.o +--- support/makefiles/Makefile.fbs.orig Thu Oct 21 01:21:51 1999 ++++ support/makefiles/Makefile.fbs Thu Oct 21 01:22:55 1999 +@@ -33,7 +33,7 @@ + LIBC = /usr/lib/libc.a + IFLAGS = + LFLAGS = +-CFLAGS = -O ${IFLAGS} ${LFLAGS} ++CFLAGS += ${IFLAGS} ${LFLAGS} -DNO_MALLOC_PROTO + + SRCS = strcasestr.c authuser.c ftw.c + OBJS = strcasestr.o authuser.o ftw.o diff -ruN /usr/ports/ftp/wu-ftpd/patches/patch-am wu-ftpd/patches/patch-am --- /usr/ports/ftp/wu-ftpd/patches/patch-am Wed Feb 10 20:48:09 1999 +++ wu-ftpd/patches/patch-am Thu Oct 21 01:27:56 1999 @@ -1,11 +1,11 @@ ---- src/makefiles/Makefile.fbs.orig Sat Oct 31 18:58:15 1998 -+++ src/makefiles/Makefile.fbs Wed Feb 10 11:54:57 1999 -@@ -4,7 +4,7 @@ +--- src/makefiles/Makefile.fbs.orig Thu Oct 21 01:26:35 1999 ++++ src/makefiles/Makefile.fbs Thu Oct 21 01:27:24 1999 +@@ -30,7 +30,7 @@ #CC = cc IFLAGS = -I.. -I../support LFLAGS = -L../support -s --CFLAGS = -O ${IFLAGS} ${LFLAGS} -+CFLAGS += ${IFLAGS} ${LFLAGS} +-CFLAGS = -O ${IFLAGS} ${LFLAGS} -DNO_CRYPT_PROTO ++CFLAGS += ${IFLAGS} ${LFLAGS} -DNO_CRYPT_PROTO XOBJS = LIBES = -lsupport -lutil -lskey -lmd -lcrypt LIBC = /usr/lib/libc.a diff -ruN /usr/ports/ftp/wu-ftpd/pkg/PLIST wu-ftpd/pkg/PLIST --- /usr/ports/ftp/wu-ftpd/pkg/PLIST Mon May 3 22:36:23 1999 +++ wu-ftpd/pkg/PLIST Thu Oct 21 01:33:40 1999 @@ -1,6 +1,8 @@ bin/ftpcount bin/ftpshut bin/ftpwho +bin/ftprestart +bin/privatepw etc/ftpaccess.example etc/ftpconversions.example etc/ftpgroups.example diff -ruN /usr/ports/ftp/wu-ftpd/scripts/configure wu-ftpd/scripts/configure --- /usr/ports/ftp/wu-ftpd/scripts/configure Mon Apr 28 05:48:55 1997 +++ wu-ftpd/scripts/configure Thu Jan 1 08:00:00 1970 @@ -1,7 +0,0 @@ -#!/bin/sh -# -# configure,v 1.1.1.1 1994/10/23 01:36:59 torstenb Exp -# - -mv ${WRKSRC}/src/pathnames.h ${WRKSRC}/src/pathnames.h.bak -sed <${WRKSRC}/src/pathnames.h.bak >${WRKSRC}/src/pathnames.h s+!!PREFIX!!+$PREFIX+g >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 10:48:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 34DE114BE7; Wed, 20 Oct 1999 10:48:13 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 1B0F71CD438; Wed, 20 Oct 1999 10:48:13 -0700 (PDT) (envelope-from kris@hub.freebsd.org) Date: Wed, 20 Oct 1999 10:48:13 -0700 (PDT) From: Kris Kennaway To: Kiril Mitev Cc: freebsd-ports@freebsd.org Subject: Re: ftp ports broken ? In-Reply-To: <199910201712.RAA29865@loki.ideaglobal.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 20 Oct 1999, Kiril Mitev wrote: > Basically: > > 1. NO Makefile's in /usr/ports/net/*ftp* Right, they moved to ftp/* > 2. NO README.html's in /usr/ports/ftp/* Right, you have to generate these yourself if you want them. 'make readme' Kris ---- XOR for AES -- join the campaign! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 10:50: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B1B914C16 for ; Wed, 20 Oct 1999 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA77266; Wed, 20 Oct 1999 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E66B414BE7; Wed, 20 Oct 1999 10:42:37 -0700 (PDT) Message-Id: <19991020174237.E66B414BE7@hub.freebsd.org> Date: Wed, 20 Oct 1999 10:42:37 -0700 (PDT) From: mami@whale.cc.muroran-it.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14436: Update port: graphics/enfle Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14436 >Category: ports >Synopsis: Update port: graphics/enfle >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 10:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yuuki SAWADA >Release: FreeBSD 4.0-CURRENT >Organization: Muroran Institute of Technology >Environment: FreeBSD shiori.goldmoon.org 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Wed Oct 20 01:25:27 JST 1999 root@shiori.goldmoon.org:/usr/src/sys/compile/SHIORI i386 >Description: Update from 19991011 to 19991020. >How-To-Repeat: >Fix: diff -urN enfle.old/Makefile enfle/Makefile --- enfle.old/Makefile Sat Oct 16 01:02:19 1999 +++ enfle/Makefile Thu Oct 21 02:24:10 1999 @@ -1,14 +1,15 @@ # New ports collection makefile for: enfle -# Version required: 19991011 +# Version required: 19991020 # Date created: Tue Sep 28 02:25:17 JST 1999 # Whom: Yuuki SAWADA # # $FreeBSD: ports/graphics/enfle/Makefile,v 1.4 1999/10/05 16:18:09 cpiazza Exp $ # -DISTNAME= enfle-19991011 +DISTNAME= enfle-19991020 CATEGORIES= graphics -MASTER_SITES= http://enfle.fennel.org/ +MASTER_SITES= http://enfle.fennel.org/ \ + ftp://ftp.goldmoon.org:1200/pub/FreeBSD/distfiles/ MAINTAINER= mami@whale.cc.muroran-it.ac.jp diff -urN enfle.old/files/md5 enfle/files/md5 --- enfle.old/files/md5 Sat Oct 16 01:02:40 1999 +++ enfle/files/md5 Wed Oct 20 12:19:59 1999 @@ -1 +1 @@ -MD5 (enfle-19991011.tar.gz) = 56ebb73b3254899ee6b485860c17964d +MD5 (enfle-19991020.tar.gz) = da4c4cf4af8d5784ab95484f0701429e diff -urN enfle.old/patches/patch-bb enfle/patches/patch-bb --- enfle.old/patches/patch-bb Tue Sep 28 02:39:02 1999 +++ enfle/patches/patch-bb Wed Oct 20 12:27:36 1999 @@ -107,4 +107,15 @@ +xpm_la_LDFLAGS = -module -version-info 1:0:0 libdir = @Plugins_loader_dir@ LIBS = + +--- plugins/loader/pic/Makefile.in.orig Wed Oct 20 04:06:14 1999 ++++ plugins/loader/pic/Makefile.in Wed Oct 20 12:23:12 1999 +@@ -92,7 +92,7 @@ + saver_dirs = @saver_dirs@ + + lib_LTLIBRARIES = pic.la +-pic_la_LDFLAGS = -module ++pic_la_LDFLAGS = -module -version-info 1:0:0 + libdir = @Plugins_loader_dir@ + LIBS = diff -urN enfle.old/pkg/PLIST enfle/pkg/PLIST --- enfle.old/pkg/PLIST Wed Oct 6 07:14:28 1999 +++ enfle/pkg/PLIST Wed Oct 20 12:29:40 1999 @@ -35,6 +35,9 @@ lib/enfle/plugins/loader/mag.la lib/enfle/plugins/loader/mag.so lib/enfle/plugins/loader/mag.so.1 +lib/enfle/plugins/loader/pic.la +lib/enfle/plugins/loader/pic.so +lib/enfle/plugins/loader/pic.so.1 lib/enfle/plugins/loader/png.la lib/enfle/plugins/loader/png.so lib/enfle/plugins/loader/png.so.1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 10:50: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0628714C0D for ; Wed, 20 Oct 1999 10:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA77257; Wed, 20 Oct 1999 10:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3121314BE7; Wed, 20 Oct 1999 10:41:10 -0700 (PDT) Message-Id: <19991020174110.3121314BE7@hub.freebsd.org> Date: Wed, 20 Oct 1999 10:41:10 -0700 (PDT) From: mami@whale.cc.muroran-it.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14435: Update port: graphics/enfle Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14435 >Category: ports >Synopsis: Update port: graphics/enfle >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 10:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yuuki SAWADA >Release: FreeBSD 4.0-CURRENT >Organization: Muroran Institute of Technology >Environment: FreeBSD shiori.goldmoon.org 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Wed Oct 20 01:25:27 JST 1999 root@shiori.goldmoon.org:/usr/src/sys/compile/SHIORI i386 >Description: Update from 19991011 to 19991020. >How-To-Repeat: >Fix: diff -urN enfle.old/Makefile enfle/Makefile --- enfle.old/Makefile Sat Oct 16 01:02:19 1999 +++ enfle/Makefile Thu Oct 21 02:24:10 1999 @@ -1,14 +1,15 @@ # New ports collection makefile for: enfle -# Version required: 19991011 +# Version required: 19991020 # Date created: Tue Sep 28 02:25:17 JST 1999 # Whom: Yuuki SAWADA # # $FreeBSD: ports/graphics/enfle/Makefile,v 1.4 1999/10/05 16:18:09 cpiazza Exp $ # -DISTNAME= enfle-19991011 +DISTNAME= enfle-19991020 CATEGORIES= graphics -MASTER_SITES= http://enfle.fennel.org/ +MASTER_SITES= http://enfle.fennel.org/ \ + ftp://ftp.goldmoon.org:1200/pub/FreeBSD/distfiles/ MAINTAINER= mami@whale.cc.muroran-it.ac.jp diff -urN enfle.old/files/md5 enfle/files/md5 --- enfle.old/files/md5 Sat Oct 16 01:02:40 1999 +++ enfle/files/md5 Wed Oct 20 12:19:59 1999 @@ -1 +1 @@ -MD5 (enfle-19991011.tar.gz) = 56ebb73b3254899ee6b485860c17964d +MD5 (enfle-19991020.tar.gz) = da4c4cf4af8d5784ab95484f0701429e diff -urN enfle.old/patches/patch-bb enfle/patches/patch-bb --- enfle.old/patches/patch-bb Tue Sep 28 02:39:02 1999 +++ enfle/patches/patch-bb Wed Oct 20 12:27:36 1999 @@ -107,4 +107,15 @@ +xpm_la_LDFLAGS = -module -version-info 1:0:0 libdir = @Plugins_loader_dir@ LIBS = + +--- plugins/loader/pic/Makefile.in.orig Wed Oct 20 04:06:14 1999 ++++ plugins/loader/pic/Makefile.in Wed Oct 20 12:23:12 1999 +@@ -92,7 +92,7 @@ + saver_dirs = @saver_dirs@ + + lib_LTLIBRARIES = pic.la +-pic_la_LDFLAGS = -module ++pic_la_LDFLAGS = -module -version-info 1:0:0 + libdir = @Plugins_loader_dir@ + LIBS = diff -urN enfle.old/pkg/PLIST enfle/pkg/PLIST --- enfle.old/pkg/PLIST Wed Oct 6 07:14:28 1999 +++ enfle/pkg/PLIST Wed Oct 20 12:29:40 1999 @@ -35,6 +35,9 @@ lib/enfle/plugins/loader/mag.la lib/enfle/plugins/loader/mag.so lib/enfle/plugins/loader/mag.so.1 +lib/enfle/plugins/loader/pic.la +lib/enfle/plugins/loader/pic.so +lib/enfle/plugins/loader/pic.so.1 lib/enfle/plugins/loader/png.la lib/enfle/plugins/loader/png.so lib/enfle/plugins/loader/png.so.1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 11:10: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F2CDE14A18 for ; Wed, 20 Oct 1999 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA88007; Wed, 20 Oct 1999 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 20 Oct 1999 11:10:01 -0700 (PDT) Message-Id: <199910201810.LAA88007@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Matt Behrens Subject: Re: ports/14137: [NEW PORT] security/p5-Authen-PAM Reply-To: Matt Behrens Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14137; it has been noted by GNATS. From: Matt Behrens To: freebsd-gnats-submit@freebsd.org, matt@zigg.com Cc: Subject: Re: ports/14137: [NEW PORT] security/p5-Authen-PAM Date: Wed, 20 Oct 1999 14:08:46 -0400 Oops! I messed up there. Change the line that says X# New ports collection makefile for: p5-Authen-Radius to X# New ports collection makefile for: p5-Authen-PAM Not a show-stopper, but potentially confusing. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 12:30: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B097E14CED for ; Wed, 20 Oct 1999 12:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA05373; Wed, 20 Oct 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.freenix.no (totem.freenix.no [195.0.166.42]) by hub.freebsd.org (Postfix) with ESMTP id 70B6914C97 for ; Wed, 20 Oct 1999 12:27:57 -0700 (PDT) (envelope-from anders@totem.freenix.no) Received: (from anders@localhost) by totem.freenix.no (8.9.3/8.9.3) id VAA16858; Wed, 20 Oct 1999 21:27:54 +0200 (CEST) Message-Id: <199910201927.VAA16858@totem.freenix.no> Date: Wed, 20 Oct 1999 21:27:54 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14442: New port: security/dante Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14442 >Category: ports >Synopsis: New port: security/dante >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 12:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 3.3-STABLE i386 >Organization: Fluxpod Information eXchange >Environment: FreeBSD eggsilo.nome.no 3.3-STABLE FreeBSD 3.3-STABLE #0: Sat Oct 16 20:22:56 CEST 1999 root@eggsilo.nome.no:/usr/src/sys/compile/EGGSILO i386 >Description: This is Dante, a BSD licensed circuit-level firewall/proxy (socks implemented). >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # dante # dante/files # dante/files/md5 # dante/pkg # dante/pkg/COMMENT # dante/pkg/DESCR # dante/pkg/PLIST # dante/Makefile # echo c - dante mkdir -p dante > /dev/null 2>&1 echo c - dante/files mkdir -p dante/files > /dev/null 2>&1 echo x - dante/files/md5 sed 's/^X//' >dante/files/md5 << 'END-of-dante/files/md5' XMD5 (dante-1.1.0.tar.gz) = 0b844df4371fc95666637edd248a0ac0 END-of-dante/files/md5 echo c - dante/pkg mkdir -p dante/pkg > /dev/null 2>&1 echo x - dante/pkg/COMMENT sed 's/^X//' >dante/pkg/COMMENT << 'END-of-dante/pkg/COMMENT' XA circuit-level firewall/proxy END-of-dante/pkg/COMMENT echo x - dante/pkg/DESCR sed 's/^X//' >dante/pkg/DESCR << 'END-of-dante/pkg/DESCR' XDante is a circuit-level firewall/proxy (socks implemented) that can be Xused to provide convenient and secure network connectivity to a wide range Xof hosts while requiring only the server Dante runs on to have external Xnetwork connectivity. X XOnce installed, Dante can in most cases be made transparent to the clients Xwhile offering detailed access control and logging facilities to the Xserver administrator. X XWWW: http://www.inet.no/dante/ END-of-dante/pkg/DESCR echo x - dante/pkg/PLIST sed 's/^X//' >dante/pkg/PLIST << 'END-of-dante/pkg/PLIST' Xlib/libdsocks.la Xlib/libdsocks.so Xlib/libdsocks.so.1 Xlib/libsocks.a Xlib/libsocks.la Xlib/libsocks.so Xlib/libsocks.so.1 Xsbin/sockd Xbin/socksify Xetc/socks.conf.example Xetc/sockd.conf.example Xshare/doc/dante/README.msproxy Xshare/doc/dante/README.socksify Xshare/doc/dante/README.survey Xshare/doc/dante/README.usage Xshare/doc/dante/rfc1928.txt Xshare/doc/dante/rfc1929.txt Xshare/doc/dante/SOCKS4.protocol Xshare/doc/dante/FAQ X@dirrm share/doc/dante END-of-dante/pkg/PLIST echo x - dante/Makefile sed 's/^X//' >dante/Makefile << 'END-of-dante/Makefile' X# Ports collection makefile for: Dante X# Version required: 1.1.0 X# Date created: 20 October 1999 X# Whom: Anders Nordby X# X# $FreeBSD$ X# X XDISTNAME= dante-1.1.0 XCATEGORIES= security net XMASTER_SITES= ftp://ftp.inet.no/pub/socks/ \ X http://www.freenix.no/~anders/ \ X ftp://totem.fix.no/pub/mirrors/misc/ X XMAINTAINER= anders@fix.no X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --with-socks-conf=${PREFIX}/etc/socks.conf \ X --with-sockd-conf=${PREFIX}/etc/sockd.conf X XMAN5= sockd.conf.5 socks.conf.5 XMAN8= sockd.8 X Xpost-install: X @${INSTALL_DATA} ${WRKSRC}/example/socks.conf ${PREFIX}/etc/socks.conf.example X @${INSTALL_DATA} ${WRKSRC}/example/sockd.conf ${PREFIX}/etc/sockd.conf.example X ${INSTALL} -d -m 555 ${PREFIX}/share/doc/dante X @${INSTALL_DATA} ${WRKSRC}/doc/README* ${PREFIX}/share/doc/dante X @${INSTALL_DATA} ${WRKSRC}/doc/rfc* ${PREFIX}/share/doc/dante X @${INSTALL_DATA} ${WRKSRC}/doc/FAQ ${PREFIX}/share/doc/dante X @${INSTALL_DATA} ${WRKSRC}/doc/SOCKS4.protocol ${PREFIX}/share/doc/dante X X.include END-of-dante/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 12:30:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 26C7D14CAC for ; Wed, 20 Oct 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA05364; Wed, 20 Oct 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.freenix.no (totem.freenix.no [195.0.166.42]) by hub.freebsd.org (Postfix) with ESMTP id 113A414C11 for ; Wed, 20 Oct 1999 12:26:15 -0700 (PDT) (envelope-from anders@totem.freenix.no) Received: (from anders@localhost) by totem.freenix.no (8.9.3/8.9.3) id VAA16787; Wed, 20 Oct 1999 21:26:12 +0200 (CEST) Message-Id: <199910201926.VAA16787@totem.freenix.no> Date: Wed, 20 Oct 1999 21:26:12 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14441: Update port: graphics/gphoto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14441 >Category: ports >Synopsis: Update port: graphics/gphoto >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 12:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 3.3-STABLE i386 >Organization: Fluxpod Information eXchange >Environment: FreeBSD eggsilo.nome.no 3.3-STABLE FreeBSD 3.3-STABLE #0: Sat Oct 16 20:22:56 CEST 1999 root@eggsilo.nome.no:/usr/src/sys/compile/EGGSILO i386 >Description: Updates the port from 0.3.2 to 0.4.0. Removes the following patches: patch-aa, patch-af, patch-ag, patch-al. >How-To-Repeat: >Fix: diff -Nur gphoto.old/Makefile gphoto/Makefile --- gphoto.old/Makefile Fri Oct 8 12:14:32 1999 +++ gphoto/Makefile Wed Oct 20 21:18:48 1999 @@ -3,10 +3,10 @@ # Date created: 26 May 1999 # Whom: Anders Nordby # -# $FreeBSD: ports/graphics/gphoto/Makefile,v 1.4 1999/10/08 03:29:40 nakai Exp $ +# $FreeBSD: ports/graphics/gphoto/Makefile,v 1.3 1999/08/25 06:14:06 obrien Exp $ # -DISTNAME= gphoto-0.3.2 +DISTNAME= gphoto-0.4.0 CATEGORIES= graphics MASTER_SITES= http://www.mustec.eu.org/~psj/downloads/ \ http://www.freenix.no/~anders/ @@ -25,6 +25,15 @@ MAN1= gphoto.1 -ALL_TARGET= +post-install: + @${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/gphoto/doc + @${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/gphoto/doc + @${INSTALL_DATA} ${WRKSRC}/FAQ ${PREFIX}/share/gphoto/doc + @${INSTALL_DATA} ${WRKSRC}/NEWS ${PREFIX}/share/gphoto/doc + @${INSTALL_DATA} ${WRKSRC}/PROGRAMMERS ${PREFIX}/share/gphoto/doc + @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/gphoto/doc + @${INSTALL_DATA} ${WRKSRC}/THANKS ${PREFIX}/share/gphoto/doc + @${INSTALL_DATA} ${WRKSRC}/THEMES ${PREFIX}/share/gphoto/doc + @${INSTALL_DATA} ${WRKSRC}/TODO ${PREFIX}/share/gphoto/doc .include diff -Nur gphoto.old/files/md5 gphoto/files/md5 --- gphoto.old/files/md5 Tue Jul 20 12:13:07 1999 +++ gphoto/files/md5 Wed Oct 20 15:47:28 1999 @@ -1 +1 @@ -MD5 (gphoto-0.3.2.tar.gz) = 07ad5af6a5d228694af77f9857dbcfc7 +MD5 (gphoto-0.4.0.tar.gz) = 3c66dfa4f71a65a9f19da240a88db476 diff -Nur gphoto.old/patches/patch-aa gphoto/patches/patch-aa --- gphoto.old/patches/patch-aa Tue Jul 20 12:13:07 1999 +++ gphoto/patches/patch-aa Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- src/Makefile.in.orig Wed Jun 16 22:45:17 1999 -+++ src/Makefile.in Wed Jun 16 22:47:44 1999 -@@ -99,7 +99,7 @@ - ../ricoh/libgphoto_ricoh300z.la \ - ../sony/libgphoto_sony_dscf1.la \ - ../directory/libgphoto_dir.la \ -- @GTK_LIBS@ @GDK_IMLIB_LIBS@ -+ @GTK_LIBS@ @GDK_IMLIB_LIBS@ -ljpeg - - gphoto_SOURCES = main.c commandline.c live.c gallery.c menu.c toolbar.c \ - callbacks.c util.c developer_dialog.c img_edit.c gphoto.c \ diff -Nur gphoto.old/patches/patch-af gphoto/patches/patch-af --- gphoto.old/patches/patch-af Sun Jun 6 19:22:11 1999 +++ gphoto/patches/patch-af Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- casio/sdComm.c.orig Wed May 26 07:05:31 1999 -+++ casio/sdComm.c Wed May 26 07:06:00 1999 -@@ -115,7 +115,7 @@ - return(SDC_SUCCESS); /* Not technically a failure */ - } - -- info->fd = open(info->devName, O_RDWR | O_SYNC /* | O_NDELAY */); -+ info->fd = open(info->devName, O_RDWR | O_FSYNC /* | O_NDELAY */); - if (info->fd < 0) { - print_error(CANT_OPEN_DEVICE, info->devName); - diff -Nur gphoto.old/patches/patch-ag gphoto/patches/patch-ag --- gphoto.old/patches/patch-ag Sun Jun 6 19:22:11 1999 +++ gphoto/patches/patch-ag Thu Jan 1 01:00:00 1970 @@ -1,14 +0,0 @@ ---- konica/setSpeed.c.orig Wed May 26 07:10:52 1999 -+++ konica/setSpeed.c Wed May 26 07:11:27 1999 -@@ -17,10 +17,9 @@ - - newt.c_cflag |= CS8; - newt.c_iflag &= ~(IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK|ISTRIP|INLCR); -- newt.c_iflag &= ~(IGNCR|ICRNL|IXON|IXOFF|IUCLC|IXANY|IMAXBEL); -+ newt.c_iflag &= ~(IGNCR|ICRNL|IXON|IXOFF|IXANY|IMAXBEL); - newt.c_oflag &= ~(OPOST); - newt.c_lflag &= ~(ISIG|ICANON); -- newt.c_cflag &= ~(XCASE); - newt.c_cc[VMIN] = 255; - newt.c_cc[VTIME] = 5; - diff -Nur gphoto.old/patches/patch-al gphoto/patches/patch-al --- gphoto.old/patches/patch-al Tue Jul 20 05:41:21 1999 +++ gphoto/patches/patch-al Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- configure.orig Tue Jul 20 20:26:50 1999 -+++ configure Tue Jul 20 20:26:58 1999 -@@ -3454,7 +3454,7 @@ - done - - --docdir='${prefix}/doc/gphoto' -+docdir='${prefix}/share/doc/gphoto' - - driversdir='${pkgdatadir}/drivers' - diff -Nur gphoto.old/pkg/PLIST gphoto/pkg/PLIST --- gphoto.old/pkg/PLIST Tue Jul 20 12:13:07 1999 +++ gphoto/pkg/PLIST Wed Oct 20 20:28:33 1999 @@ -1,40 +1,51 @@ bin/gphoto -share/doc/gphoto/AUTHORS -share/doc/gphoto/COPYING -share/doc/gphoto/CREDITS -share/doc/gphoto/ChangeLog -share/doc/gphoto/FAQ -share/doc/gphoto/MANUAL -share/doc/gphoto/NEWS -share/doc/gphoto/README -share/doc/gphoto/THEMES -share/doc/gphoto/TODO -share/gphoto/drivers/libgphoto_konica_qm100.so -share/gphoto/drivers/libgphoto_konica_qm100.so.0 -share/gphoto/drivers/libgphoto_konica_qm100.a -share/gphoto/drivers/libgphoto_casio_qv.so +share/gphoto/drivers/libgphoto_canon.so.0 +share/gphoto/drivers/libgphoto_canon.so +share/gphoto/drivers/libgphoto_canon.a share/gphoto/drivers/libgphoto_casio_qv.so.0 +share/gphoto/drivers/libgphoto_casio_qv.so share/gphoto/drivers/libgphoto_casio_qv.a -share/gphoto/drivers/libgphoto_philips.so -share/gphoto/drivers/libgphoto_philips.so.0 -share/gphoto/drivers/libgphoto_philips.a -share/gphoto/drivers/libgphoto_fuji.so share/gphoto/drivers/libgphoto_fuji.so.0 +share/gphoto/drivers/libgphoto_fuji.so share/gphoto/drivers/libgphoto_fuji.a -share/gphoto/drivers/libgphoto_photopc.so -share/gphoto/drivers/libgphoto_photopc.so.0 -share/gphoto/drivers/libgphoto_photopc.a -share/gphoto/drivers/libgphoto_kodak_dc2x.so share/gphoto/drivers/libgphoto_kodak_dc2x.so.0 +share/gphoto/drivers/libgphoto_kodak_dc2x.so share/gphoto/drivers/libgphoto_kodak_dc2x.a -share/gphoto/drivers/libgphoto_ricoh300z.so +share/gphoto/drivers/libgphoto_kodak_generic.so.0 +share/gphoto/drivers/libgphoto_kodak_generic.so +share/gphoto/drivers/libgphoto_kodak_generic.a +share/gphoto/drivers/libgphoto_konica_qm100.so.0 +share/gphoto/drivers/libgphoto_konica_qm100.so +share/gphoto/drivers/libgphoto_konica_qm100.a +share/gphoto/drivers/libgphoto_dimage_v.so.0 +share/gphoto/drivers/libgphoto_dimage_v.so +share/gphoto/drivers/libgphoto_dimage_v.a +share/gphoto/drivers/libgphoto_mustek_mdc800.so.0 +share/gphoto/drivers/libgphoto_mustek_mdc800.so +share/gphoto/drivers/libgphoto_mustek_mdc800.a +share/gphoto/drivers/libgphoto_philips.so.0 +share/gphoto/drivers/libgphoto_philips.so +share/gphoto/drivers/libgphoto_philips.a +share/gphoto/drivers/libgphoto_konica_qmxxx.so.0 +share/gphoto/drivers/libgphoto_konica_qmxxx.so +share/gphoto/drivers/libgphoto_photopc.so.0 +share/gphoto/drivers/libgphoto_konica_qmxxx.a +share/gphoto/drivers/libgphoto_photopc.so +share/gphoto/drivers/libgphoto_photopc.a share/gphoto/drivers/libgphoto_ricoh300z.so.0 +share/gphoto/drivers/libgphoto_ricoh300z.so share/gphoto/drivers/libgphoto_ricoh300z.a -share/gphoto/drivers/libgphoto_sony_dscf1.so +share/gphoto/drivers/libgphoto_sony_dscf55.so.0 +share/gphoto/drivers/libgphoto_sony_dscf55.so +share/gphoto/drivers/libgphoto_sony_dscf55.a share/gphoto/drivers/libgphoto_sony_dscf1.so.0 -share/gphoto/drivers/libgphoto_dir.so -share/gphoto/drivers/libgphoto_dir.so.0 +share/gphoto/drivers/libgphoto_sony_dscf1.so share/gphoto/drivers/libgphoto_sony_dscf1.a +share/gphoto/drivers/libgphoto_coolpix600.so.0 +share/gphoto/drivers/libgphoto_coolpix600.so +share/gphoto/drivers/libgphoto_coolpix600.a +share/gphoto/drivers/libgphoto_dir.so.0 +share/gphoto/drivers/libgphoto_dir.so share/gphoto/drivers/libgphoto_dir.a share/gphoto/gallery/Default/banner.gif share/gphoto/gallery/Default/index.gif @@ -53,9 +64,29 @@ share/gphoto/gallery/RedNGray/picture.html share/gphoto/gallery/RedNGray/previous.gif share/gphoto/gallery/RedNGray/thumbnail.html -@dirrm share/doc/gphoto +share/gphoto/gallery/CSStheme/index_bottom.html +share/gphoto/gallery/CSStheme/index_top.html +share/gphoto/gallery/CSStheme/mwcos.png +share/gphoto/gallery/CSStheme/picture.html +share/gphoto/gallery/CSStheme/styles.css +share/gphoto/gallery/CSStheme/thumbnail.html +share/gphoto/gallery/CSStheme/vh40.png +share/gphoto/gallery/CSStheme/gphotobutton.png +share/gphoto/doc/AUTHORS +share/gphoto/doc/COPYING +share/gphoto/doc/ChangeLog +share/gphoto/doc/FAQ +share/gphoto/doc/MANUAL +share/gphoto/doc/NEWS +share/gphoto/doc/PROGRAMMERS +share/gphoto/doc/README +share/gphoto/doc/THANKS +share/gphoto/doc/THEMES +share/gphoto/doc/TODO @dirrm share/gphoto/drivers @dirrm share/gphoto/gallery/Default @dirrm share/gphoto/gallery/RedNGray +@dirrm share/gphoto/gallery/CSStheme @dirrm share/gphoto/gallery +@dirrm share/gphoto/doc @dirrm share/gphoto >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 13:11: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp02.wxs.nl (smtp02.wxs.nl [195.121.6.60]) by hub.freebsd.org (Postfix) with ESMTP id 3116B14F2B for ; Wed, 20 Oct 1999 13:11:01 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.197.195]) by smtp02.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA16BC; Wed, 20 Oct 1999 22:10:56 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id VAA90555; Wed, 20 Oct 1999 21:39:52 +0200 (CEST) (envelope-from asmodai) Date: Wed, 20 Oct 1999 21:39:52 +0200 From: Jeroen Ruigrok/Asmodai To: Will Andrews Cc: Jim Manley , freebsd-ports@FreeBSD.ORG Subject: Re: StarOffice 5.1 Message-ID: <19991020213952.A90546@daemon.ninth-circle.org> References: <4.1.19991018075456.0096a9e0@mail.metronet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: Organisation: Ninth-Circle Enterprises Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On [19991018 20:00], Will Andrews (andrews@TECHNOLOGIST.COM) wrote: >On 18-Oct-99 Jim Manley wrote: >> Is there any plan to update the ports/editors collection for StarOffice 5.1? > >Maybe if they give out the source. Else, I don't think so. /usr/ports/editors/wordperfect That's also no source package. =) -- Jeroen Ruigrok van der Werven/Asmodai asmodai(at)wxs.nl The BSD Programmer's Documentation Project Network/Security Specialist BSD: Technical excellence at its best One from many. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 15: 9:52 1999 Delivered-To: freebsd-ports@freebsd.org Received: from great.plains.net (great.plains.net [206.168.65.1]) by hub.freebsd.org (Postfix) with ESMTP id D756C14CB7; Wed, 20 Oct 1999 15:09:43 -0700 (PDT) (envelope-from rolsen@plains.net) Received: from p2350a ([206.168.65.29]) by great.plains.net (8.8.5/8.8.5) with SMTP id QAA05564; Wed, 20 Oct 1999 16:16:18 -0600 (MDT) Message-Id: <3.0.3.32.19991020161011.01ec9c2c@pop.plains.net> X-Sender: rolsen@pop.plains.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32) Date: Wed, 20 Oct 1999 16:10:11 -0600 To: ports@FreeBSD.org, www@FreeBSD.org From: Russ Olsen Subject: web based email client Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have a need for reading email off of a FreeBSD server (pop3) via a web browser, ideally running on the same server. Do you know of a web based email client? Thanks, -Russ rolsen@plains.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 15:15:36 1999 Delivered-To: freebsd-ports@freebsd.org Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id 887FD14C10 for ; Wed, 20 Oct 1999 15:14:54 -0700 (PDT) (envelope-from andrews@technologist.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=wandrews) by neptune.psn.net with smtp (PSN Internet Service 2.12 #3) id 11e40N-0006rz-00; Wed, 20 Oct 1999 15:14:47 -0700 Message-Id: <3.0.6.32.19991020181438.007d3280@mail.psn.net> X-Sender: andrews@mail.psn.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Wed, 20 Oct 1999 18:14:38 -0400 To: Russ Olsen From: Will Andrews Subject: Re: web based email client Cc: ports@FreeBSD.ORG In-Reply-To: <3.0.3.32.19991020161011.01ec9c2c@pop.plains.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 04:10 PM 10/20/99 -0600, you wrote: > >I have a need for reading email off of a FreeBSD server (pop3) via a web >browser, ideally running on the same server. > >Do you know of a web based email client? Try IMP (http://www.horde.org/imp/), it uses Apache + PHP3 + IMAP to make a nice web interface to your mail. Takes a little while to setup, or so I've heard. :-) It is not ported (yet), IIRC. I don't think it's really something that should be a "port", anyway. -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 15:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C9E3814C10 for ; Wed, 20 Oct 1999 15:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA45878; Wed, 20 Oct 1999 15:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sivka.carrier.kiev.ua (sivka.carrier.kiev.ua [193.193.193.101]) by hub.freebsd.org (Postfix) with ESMTP id 9284614BF8 for ; Wed, 20 Oct 1999 15:34:47 -0700 (PDT) (envelope-from root@nn.kiev.ua) Received: from nn.kiev.ua (nn.kiev.ua [193.193.193.203]) by sivka.carrier.kiev.ua (8.Who.Cares/Kilkenny_is_better) with ESMTP id BNI18924 for ; Thu, 21 Oct 1999 01:34:40 +0300 (EEST) (envelope-from root@nn.kiev.ua) Received: (from root@localhost) by nn.kiev.ua (8.9.3/8.9.3) id BAA05354; Thu, 21 Oct 1999 01:34:25 +0300 (EEST) (envelope-from root) Message-Id: <199910202234.BAA05354@nn.kiev.ua> Date: Thu, 21 Oct 1999 01:34:25 +0300 (EEST) From: netch@lucky.net (Valentin Nechayev) Reply-To: netch@lucky.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14443: ports/misc/screen screen-3.9.5 fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14443 >Category: ports >Synopsis: ports/misc/screen screen-3.9.5 fix >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 15:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Valentin Nechayev >Release: FreeBSD 3.3-STABLE i386 >Organization: Lucky Net Ltd. >Environment: FreeBSD 3.3-19991003-STABLE i386 ports/misc/screen port of Sep, 19 >Description: 1. configure script incorrectly detects type of getloadavg() arguments: === cut config.h === #define LOADAV 1 #define LOADAV_NUM 3 #define LOADAV_TYPE long #define LOADAV_SCALE FSCALE #define LOADAV_GETLOADAVG 1 /* #undef LOADAV_UNIX */ /* #undef LOADAV_AVENRUN */ === end cut === === cut MakeLog === cc -c -I. -I. -O -pipe -g loadav.c loadav.c: In function `GetLoadav': loadav.c:101: warning: passing arg 1 of `getloadavg' from incompatible pointer type === end cut === 2. teln.c source file causes annoying warnings: In file included from teln.c:31: /usr/include/arpa/inet.h:89: warning: parameter has incomplete type /usr/include/arpa/inet.h:92: warning: parameter has incomplete type /usr/include/arpa/inet.h:96: warning: parameter has incomplete type >How-To-Repeat: Try make it. >Fix: In configure script, disable explicit bug in code - "#if <...> || !(defined(__osf__) && defined(__alpha)) || <...>" In teln.c, include . === cut patch1 === --- configure.orig Mon Aug 2 15:26:53 1999 +++ configure Thu Oct 21 01:08:47 1999 @@ -2706,7 +2706,7 @@ _CUT_HERE_ -#if ((defined(hp300) && !defined(__hpux)) || defined(sun) || (defined(ultrix) && defined(mips)) || defined(_SEQUENT_) || defined(sgi) || defined(SVR4) || defined(sony_news) || !(defined(__osf__) && defined(__alpha)) || defined(_IBMR2) || defined(_AUX_SOURCE) || defined(AUX) || defined(m88k)) +#if ((defined(hp300) && !defined(__hpux)) || defined(sun) || (defined(ultrix) && defined(mips)) || defined(_SEQUENT_) || defined(sgi) || defined(SVR4) || defined(sony_news) || defined(_IBMR2) || defined(_AUX_SOURCE) || defined(AUX) || defined(m88k)) loadtype=long # if defined(apollo) || defined(_IBMR2) || defined(_AUX_SOURCE) || defined(AUX) loadscale=65536 === end cut === === cut patch2 === --- configure.in.orig Mon Aug 2 15:26:50 1999 +++ configure.in Thu Oct 21 01:14:17 1999 @@ -862,7 +862,7 @@ #include #include ],[ -#if ((defined(hp300) && !defined(__hpux)) || defined(sun) || (defined(ultrix) && defined(mips)) || defined(_SEQUENT_) || defined(sgi) || defined(SVR4) || defined(sony_news) || !(defined(__osf__) && defined(__alpha)) || defined(_IBMR2) || defined(_AUX_SOURCE) || defined(AUX) || defined(m88k)) +#if ((defined(hp300) && !defined(__hpux)) || defined(sun) || (defined(ultrix) && defined(mips)) || defined(_SEQUENT_) || defined(sgi) || defined(SVR4) || defined(sony_news) || defined(_IBMR2) || defined(_AUX_SOURCE) || defined(AUX) || defined(m88k)) loadtype=long # if defined(apollo) || defined(_IBMR2) || defined(_AUX_SOURCE) || defined(AUX) loadscale=65536 === end cut === === cut patch3 === --- teln.c.orig Wed Jul 28 15:50:22 1999 +++ teln.c Thu Oct 21 01:15:50 1999 @@ -28,6 +28,7 @@ #include #include #include +#include #include #include "config.h" === end cut === >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 18:41:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from inet-tsb.toshiba.co.jp (inet-tsb.toshiba.co.jp [202.33.96.40]) by hub.freebsd.org (Postfix) with ESMTP id 7474014CAC for ; Wed, 20 Oct 1999 18:41:45 -0700 (PDT) (envelope-from shige@sitc.toshiba.co.jp) Received: from tis2.tis.toshiba.co.jp by inet-tsb.toshiba.co.jp (8.8.8/3.3W9-04/12/95) id KAA00449; Thu, 21 Oct 1999 10:40:18 +0900 (JST) Received: from mx.toshiba.co.jp by tis2.tis.toshiba.co.jp (8.8.4+2.7Wbeta4/3.3W9-95082317) id KAA09907; Thu, 21 Oct 1999 10:40:14 +0900 (JST) Received: from tas0470.sitc.toshiba.co.jp by toshiba.co.jp (8.7.1+2.6Wbeta4/3.3W9-TOSHIBA-GLOBAL SERVER) id KAA07211; Thu, 21 Oct 1999 10:40:14 +0900 (JST) Received: from athena.sitc.toshiba.co.jp.sitc.toshiba.co.jp by tas0470.sitc.toshiba.co.jp (8.9.3/sitc-1.4) with ESMTP id KAA14317; Thu, 21 Oct 1999 10:40:13 +0900 (JST) Date: Thu, 21 Oct 1999 10:40:13 +0900 Message-ID: <14350.28413.164000.94441T@athena.sitc.toshiba.co.jp> From: Shigeyuki Fukushima To: noway@nohow.demon.co.uk Cc: ports@FreeBSD.ORG Subject: Re: Java ports In-Reply-To: In your message of "Wed, 20 Oct 1999 18:36:08 +0100 (BST)" References: <380D6B26.458E354E@tu-harburg.de> User-Agent: Wanderlust/2.2.3 (Always) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.4 (i386-*-nt4.0.1381) MULE/4.1 (=?ISO-2022-JP?B?GyRCMCobKEI=?=) Meadow/1.10 (TSUYU) X-Face-Type: geometry=3x4 X-Face: ^vl%Q#\*-lQ)5x''UMk52:On\\XC AH_kO"AcU?:p|#o,0W9V22`\7\,Tg'E@]mV/1A#B$3\/K/gQFr1\27;nm X-Face: 'GL5X\riyHjXJiMCi%VU(XeYJpQYTyDco}*sE""]yvyvv\h6 X-Face: &\GwO?|0`7Ai.^o_X?0wja]p5*+y0j?U"_SF?zct.>VaMw"m1t.~T0x(L9()/mNcF{< X-Face: Q)+Xa#+-6j!)L']L|~\X!4:JVr"G~MwWk8m~oD5kQYC7BBepg.y+3x'N#o:{h@iOn`qI+~0 "z X-Face: ,\m{?h\)X X-Face: #Zwkf1Ht;WJm?s2`v79e9m52We6B4NVfH*/H$rz]HV/p*QN;;_C]rp>ASc9}*YUmdj'VCQ[GA>AOrOO%lu+j&5Rnq{^v\'(1;9>#n-B"@Alt,$igsK;# ^I"+Od'^A0>&-,)0n'o10I\6Ai X-Face: '0T]">xf;8YNb)L'~2lK(j"f2gQOOw327`\y!u++{)X%y2;[eXB$7;~myE|{)BMltd"gPyB S/jm",V)WUU1_Cl$>DABL*GQ>>+R=W'^~h}*bFuc*GyyJkHIjhP(q^.;]nJ@I')_ X-Face: /6;L#>(o%{4Q^e45soA3.!f;(5R5>:mW8+3yHdpk^A9NRV5^V;wQzNX}-aMA2X;7\%^h:u{ bDcY#bG$^jonMR[`DH7 MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Wed, 20 Oct 1999 18:36:08 +0100 (BST), Jose Marques wrote: > 3) Documentation goes into: > /usr/local/share/java// Are there any reasons why this is not /usr/local/share/doc/java// ? ~~~ All ports/packages' documentations shoud be in the same directory, I think. Thanks, shige --- shige@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 20: 0: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BBC0E14D7F for ; Wed, 20 Oct 1999 20:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA97187; Wed, 20 Oct 1999 20:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id EDA4514C83 for ; Wed, 20 Oct 1999 19:57:00 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id 106E69B22; Wed, 20 Oct 1999 22:57:00 -0400 (EDT) Message-Id: <19991021025700.106E69B22@pawn.primelocation.net> Date: Wed, 20 Oct 1999 22:57:00 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14445: Update port: news/pan Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14445 >Category: ports >Synopsis: Update port: news/pan >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 20:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update port: news/pan to 0.61 >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/news/pan/Makefile,v retrieving revision 1.5 diff -u -u -r1.5 Makefile --- Makefile 1999/10/15 12:06:30 1.5 +++ Makefile 1999/10/21 02:47:22 @@ -1,12 +1,12 @@ # New ports collection makefile for: pan -# Version required: 0.6.0 +# Version required: 0.6.1 # Date created: 07 August 1999 # Whom: Chris D. Faulhaber # # $FreeBSD: ports/news/pan/Makefile,v 1.5 1999/10/15 12:06:30 nakai Exp $ # -DISTNAME= pan-0.6.0 +DISTNAME= pan-0.6.1 CATEGORIES= news gnome MASTER_SITES= ftp://source.rebelbase.com/pub/pan/ Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/news/pan/files/md5,v retrieving revision 1.5 diff -u -u -r1.5 md5 --- md5 1999/10/15 12:06:31 1.5 +++ md5 1999/10/21 02:47:22 @@ -1 +1 @@ -MD5 (pan-0.6.0.tar.bz2) = 05dab3d7d2913c62bc510a0bbc0b5a6a +MD5 (pan-0.6.1.tar.bz2) = 2df21f845f2c212f54eba8d5876d7580 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 20: 8: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id A8B7B14C83 for ; Wed, 20 Oct 1999 20:07:56 -0700 (PDT) (envelope-from andrews@technologist.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=wandrews) by neptune.psn.net with smtp (PSN Internet Service 2.12 #3) id 11e8Zn-0001Ja-00; Wed, 20 Oct 1999 20:07:40 -0700 Message-Id: <3.0.6.32.19991020230727.007d1950@mail.psn.net> X-Sender: andrews@mail.psn.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Wed, 20 Oct 1999 23:07:27 -0400 To: TAOKA Satoshi From: Will Andrews Subject: Re: ports/13809: new port: sysutils/wmbattery Cc: ports@FreeBSD.ORG In-Reply-To: <19991020222913A.taoka@infonets.hiroshima-u.ac.jp> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 10:29 PM 10/20/99 +0900, you wrote: > >Hi, > >> On 20-Sep-99 Kris Kennaway wrote: >> > On Tue, 21 Sep 1999, TAOKA Satoshi wrote: >> >> I think wmbattery had better be set gid (to operator). >> >> See wmapm port. >> >> I agree.. I inadvertently forgot to add that part.. > >I changed the policy. We don't have to setgid because the users on >note pc belong to the group operator. So I will modify wmapm. Well, originally, this was my belief. I dislike sgid programs, so I normally just add my users to the appropriate groups (for the ones that need access). Especially for APM stuff.. Is this a good policy? If so, would you (taoka) please commit sysutils/wmbattery without the sgid part? I'm still been waiting for somebody to report a buffer overflow problem on it (kris or somebody said there was probably one or something..). I still think the port is fine as it is right now. -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 21:34: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2196814C31; Wed, 20 Oct 1999 21:33:55 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA06009; Wed, 20 Oct 1999 21:33:55 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Wed, 20 Oct 1999 21:33:55 -0700 (PDT) From: Message-Id: <199910210433.VAA06009@freefall.freebsd.org> To: andrews@technologist.com, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/13809: new port: sysutils/wmbattery Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: sysutils/wmbattery State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Wed Oct 20 21:21:58 PDT 1999 State-Changed-Why: Imported the new port, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 22:28: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E9F4114E3C; Wed, 20 Oct 1999 22:28:07 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA11266; Wed, 20 Oct 1999 22:28:07 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 22:28:07 -0700 (PDT) From: Message-Id: <199910210528.WAA11266@freefall.freebsd.org> To: jedgar@fxp.org, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14445: Update port: news/pan Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: news/pan State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 22:27:45 PDT 1999 State-Changed-Why: Committed, thanks!. I had to add patch-ab to get this to compile... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 22:42: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6FCF114C43; Wed, 20 Oct 1999 22:41:59 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA12559; Wed, 20 Oct 1999 22:41:59 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 22:41:59 -0700 (PDT) From: Message-Id: <199910210541.WAA12559@freefall.freebsd.org> To: mami@whale.cc.muroran-it.ac.jp, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14436: Update port: graphics/enfle Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/enfle State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 22:41:34 PDT 1999 State-Changed-Why: Duplicate of PR 14435 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 22:42:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C7C014C43; Wed, 20 Oct 1999 22:42:27 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA12686; Wed, 20 Oct 1999 22:42:27 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 22:42:27 -0700 (PDT) From: Message-Id: <199910210542.WAA12686@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, ache@FreeBSD.org Subject: Re: ports/14443: ports/misc/screen screen-3.9.5 fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/misc/screen screen-3.9.5 fix Responsible-Changed-From-To: freebsd-ports->ache Responsible-Changed-By: cpiazza Responsible-Changed-When: Wed Oct 20 22:42:18 PDT 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 22:50:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BB65514EBB; Wed, 20 Oct 1999 22:49:52 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA13594; Wed, 20 Oct 1999 22:49:51 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 22:49:51 -0700 (PDT) From: Message-Id: <199910210549.WAA13594@freefall.freebsd.org> To: tkato@prontomail.ne.jp, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14402: Update port: devel/gide to 0.1.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: devel/gide to 0.1.5 State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 22:49:41 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 22:53:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 59E5114F55; Wed, 20 Oct 1999 22:53:42 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA13961; Wed, 20 Oct 1999 22:53:42 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 22:53:42 -0700 (PDT) From: Message-Id: <199910210553.WAA13961@freefall.freebsd.org> To: jsutton@bbcon.com.au, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14395: change of email address for games/connect4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: change of email address for games/connect4 State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 22:53:25 PDT 1999 State-Changed-Why: committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 22:55:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 724E214E5E; Wed, 20 Oct 1999 22:55:24 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA14162; Wed, 20 Oct 1999 22:55:18 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 22:55:18 -0700 (PDT) From: Message-Id: <199910210555.WAA14162@freefall.freebsd.org> To: mmuir@es.co.nz, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14362: Update port: sysutils/wmhm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/wmhm State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 22:55:07 PDT 1999 State-Changed-Why: Superseded by PR 14385 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23: 0:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AC6D14F83; Wed, 20 Oct 1999 23:00:00 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA14500; Wed, 20 Oct 1999 22:59:54 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 22:59:54 -0700 (PDT) From: Message-Id: <199910210559.WAA14500@freefall.freebsd.org> To: mmuir@es.co.nz, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14385: Update port: sysutils/wmhm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/wmhm State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 22:59:44 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23: 4:38 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 35F2C14C27; Wed, 20 Oct 1999 23:04:21 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA14952; Wed, 20 Oct 1999 23:04:21 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:04:21 -0700 (PDT) From: Message-Id: <199910210604.XAA14952@freefall.freebsd.org> To: mmuir@es.co.nz, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14367: Update port: sysutils/consolehm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/consolehm State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 23:04:14 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23: 5:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 68E5514C27; Wed, 20 Oct 1999 23:05:49 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA15174; Wed, 20 Oct 1999 23:05:49 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:05:49 -0700 (PDT) From: Message-Id: <199910210605.XAA15174@freefall.freebsd.org> To: nox@jelal.kn-bremen.de, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14384: update olirc to 0.0.37 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update olirc to 0.0.37 State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 23:05:42 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23: 8: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AF6714C30; Wed, 20 Oct 1999 23:08:02 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA15387; Wed, 20 Oct 1999 23:08:02 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:08:02 -0700 (PDT) From: Message-Id: <199910210608.XAA15387@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, shige@FreeBSD.org Subject: Re: ports/14376: [PATCH] shells/zsh-devel - fix zshall(1) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] shells/zsh-devel - fix zshall(1) Responsible-Changed-From-To: freebsd-ports->shige Responsible-Changed-By: cpiazza Responsible-Changed-When: Wed Oct 20 23:06:46 PDT 1999 Responsible-Changed-Why: Over to maintainer. Shige, you may wish to commit PR 14377, too. it's for zsh and it's the same problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23:24:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BF3D314C2E; Wed, 20 Oct 1999 23:24:30 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA16725; Wed, 20 Oct 1999 23:24:29 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:24:29 -0700 (PDT) From: Message-Id: <199910210624.XAA16725@freefall.freebsd.org> To: anders@fix.no, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14441: Update port: graphics/gphoto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gphoto State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 23:22:44 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23:25:55 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D035614C27; Wed, 20 Oct 1999 23:25:54 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA17041; Wed, 20 Oct 1999 23:25:54 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:25:54 -0700 (PDT) From: Message-Id: <199910210625.XAA17041@freefall.freebsd.org> To: jreynold@primenet.com, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14429: Update to flexbackup port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to flexbackup port State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 23:25:14 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23:26:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from midway.uchicago.edu (midway.uchicago.edu [128.135.12.12]) by hub.freebsd.org (Postfix) with ESMTP id 4158A14E93 for ; Wed, 20 Oct 1999 23:26:53 -0700 (PDT) (envelope-from charon@freethought.org) Received: from harper.uchicago.edu (root@harper.uchicago.edu [128.135.12.7]) by midway.uchicago.edu (8.9.3/8.9.3) with ESMTP id BAA12157 for ; Thu, 21 Oct 1999 01:26:52 -0500 (CDT) From: charon@freethought.org Received: from broad-208-049 (broad-208-049.rh.uchicago.edu [128.135.208.49]) by harper.uchicago.edu (8.9.3/8.9.3) with SMTP id BAA03827 for ; Thu, 21 Oct 1999 01:26:50 -0500 (CDT) Message-Id: <3.0.5.32.19991021012457.00a264e0@midway.uchicago.edu> X-Sender: dbsypher@midway.uchicago.edu X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Thu, 21 Oct 1999 01:24:57 -0700 To: ports@freebsd.org Subject: apsfilter's dependencies Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Why is it that http://www.freebsd.org/ports/ no longer lists the huge number of dependencies that apsfilter has? All it lists are bzip2-0.9.5d and recode-3.4, but apsfilter still needs all the other stuff (see /usr/ports/print/apsfilter/scripts/configure) to work. Because my network card isn't supported under freebsd, I have to download all the dependencies in WinNT and then reboot to FreeBSD, so I have to have _everything_ right or else I have to reboot just to dl another file. When the dependency lists are FUBAR, this make life very difficult... -Charon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23:35: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 72A0C14E9E; Wed, 20 Oct 1999 23:34:50 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA18450; Wed, 20 Oct 1999 23:34:50 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:34:50 -0700 (PDT) From: Message-Id: <199910210634.XAA18450@freefall.freebsd.org> To: jedgar@fxp.org, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14414: Update port: sysutils/lmmon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/lmmon State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 23:34:43 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23:36:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FAC614F68; Wed, 20 Oct 1999 23:36:06 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA18778; Wed, 20 Oct 1999 23:36:06 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:36:06 -0700 (PDT) From: Message-Id: <199910210636.XAA18778@freefall.freebsd.org> To: jedgar@fxp.org, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14416: Update port: sysutils/wmlmmon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/wmlmmon State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Oct 20 23:35:57 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23:55:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0942014E99; Wed, 20 Oct 1999 23:55:11 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA21893; Wed, 20 Oct 1999 23:55:11 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:55:11 -0700 (PDT) From: Message-Id: <199910210655.XAA21893@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, cpiazza@FreeBSD.org Subject: Re: ports/14415: updated udmsearch port to version 2.1.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: updated udmsearch port to version 2.1.5 Responsible-Changed-From-To: freebsd-ports->cpiazza Responsible-Changed-By: cpiazza Responsible-Changed-When: Wed Oct 20 23:54:58 PDT 1999 Responsible-Changed-Why: I'm looking at this To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23:55:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 19D2514F07; Wed, 20 Oct 1999 23:55:29 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA22008; Wed, 20 Oct 1999 23:55:29 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:55:29 -0700 (PDT) From: Message-Id: <199910210655.XAA22008@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, cpiazza@FreeBSD.org Subject: Re: ports/13471: New port for UdmSearch www search engine Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port for UdmSearch www search engine Responsible-Changed-From-To: freebsd-ports->cpiazza Responsible-Changed-By: cpiazza Responsible-Changed-When: Wed Oct 20 23:55:20 PDT 1999 Responsible-Changed-Why: I'm looking into this To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 20 23:56:54 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36C7914E99; Wed, 20 Oct 1999 23:56:47 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA22396; Wed, 20 Oct 1999 23:56:47 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 20 Oct 1999 23:56:47 -0700 (PDT) From: Message-Id: <199910210656.XAA22396@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, cpiazza@FreeBSD.org Subject: Re: ports/13760: new port: www/udmsearch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: www/udmsearch Responsible-Changed-From-To: freebsd-ports->cpiazza Responsible-Changed-By: cpiazza Responsible-Changed-When: Wed Oct 20 23:56:15 PDT 1999 Responsible-Changed-Why: I'm looking into this To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 10: 0:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E79D15026 for ; Thu, 21 Oct 1999 10:00:16 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA26667 for ports@freebsd.org; Thu, 21 Oct 1999 10:00:09 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Date: Thu, 21 Oct 1999 10:00:09 -0700 (PDT) From: Message-Id: <199910211700.KAA26667@freefall.freebsd.org> To: ports@freebsd.org Subject: Unfetchable distfiles reminder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear porters, This is just a reminder to please periodically check the list of unfetchable distfiles at http://www.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems is http://www.freebsd.org/~fenner/portsurvey/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. In addition, the list of all ports with any unfetchable distfile is http://www.freebsd.org/~fenner/portsurvey/bad.html if you don't mind coordinating your fixes with the port MAINTAINER. Thanks for your help! Bill "distfiles" Fenner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 11:48: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from nohow.demon.co.uk (nohow.demon.co.uk [212.228.18.189]) by hub.freebsd.org (Postfix) with ESMTP id C647B14D80; Thu, 21 Oct 1999 11:47:54 -0700 (PDT) (envelope-from noway@nohow.demon.co.uk) Received: from localhost (noway@localhost) by nohow.demon.co.uk (8.9.3/8.9.3) with ESMTP id SAA00993; Thu, 21 Oct 1999 18:14:44 +0100 (BST) (envelope-from noway@nohow.demon.co.uk) Date: Thu, 21 Oct 1999 18:14:43 +0100 (BST) From: Jose Marques To: Shigeyuki Fukushima Cc: ports@FreeBSD.ORG Subject: Re: Java ports In-Reply-To: <14350.28413.164000.94441T@athena.sitc.toshiba.co.jp> Message-ID: X-No-Archive: yes MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 21 Oct 1999, Shigeyuki Fukushima wrote: > Are there any reasons why this is not > /usr/local/share/doc/java// ? > ~~~ No reason, it's just that no java port appears to do this. -- Jose Marques To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 12: 0:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C65814F75 for ; Thu, 21 Oct 1999 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA00839; Thu, 21 Oct 1999 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Crazyman.Dorm13.NCTU.edu.tw (Crazyman.Dorm13.NCTU.edu.tw [140.113.141.212]) by hub.freebsd.org (Postfix) with ESMTP id 81F4B14BC7 for ; Thu, 21 Oct 1999 06:09:34 -0700 (PDT) (envelope-from yinjieh@Crazyman.Dorm13.NCTU.edu.tw) Received: (from yinjieh@localhost) by Crazyman.Dorm13.NCTU.edu.tw (8.9.3/8.9.3) id VAA08446; Thu, 21 Oct 1999 21:09:33 +0800 (CST) (envelope-from yinjieh) Message-Id: <199910211309.VAA08446@Crazyman.Dorm13.NCTU.edu.tw> Date: Thu, 21 Oct 1999 21:09:33 +0800 (CST) From: Yin-Jieh Chen Reply-To: yinjieh@Crazyman.Dorm13.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14447: Update port: games/xpuyopuyo to 0.2.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14447 >Category: ports >Synopsis: Update port: games/xpuyopuyo to 0.2.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 21 12:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yin-Jieh Chen >Release: FreeBSD 3.3-STABLE i386 >Organization: NCTU CSIE FreeBSD Users' Group >Environment: FreeBSD Crazyman.Dorm13.NCTU.edu.tw 3.3-STABLE FreeBSD 3.3-STABLE #29: Mon Oct 1 1 13:19:18 CST 1999 root@Crazyman.Dorm13.NCTU.edu.tw:/home2/src/sys/compile/ YINJIEH i386 >Description: Update games/xpuyopuyo to 0.2.7 >How-To-Repeat: diff -ruN /usr/ports/games/xpuyopuyo/Makefile ./Makefile --- /usr/ports/games/xpuyopuyo/Makefile Mon Oct 18 20:42:17 1999 +++ ./Makefile Thu Oct 21 21:02:46 1999 @@ -1,20 +1,20 @@ # New ports collection makefile for: xpuyopuyo -# Version required: 0.2.3 +# Version required: 0.2.7 # Date created: 19 Sep 1999 # Whom: Yin-Jieh Chen # # $FreeBSD: ports/games/xpuyopuyo/Makefile,v 1.4 1999/10/17 13:45:05 asami Exp $ # -DISTNAME= xpuyopuyo-0.2.3 +DISTNAME= xpuyopuyo-0.2.7 CATEGORIES= games -MASTER_SITES= http://chaos2.org/xpuyopuyo/ +MASTER_SITES= http://chaos2.org/xpuyopuyo/ \ + http://lenin.dabney.caltech.edu/~justins/xpuyopuyo/ MAINTAINER= yinjieh@csie.nctu.edu.tw LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ - gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ - gnomeui.3:${PORTSDIR}/x11/gnomelibs + gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config GTK_CONFIG?= ${X11BASE}/bin/gtk12-config @@ -24,12 +24,14 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \ GLIB_CONFIG="${GLIB_CONFIG}" -CONFIGURE_ARG= --with-gnome USE_GMAKE= yes +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/xpuyopuyo ${PREFIX}/bin/xpuyopuyo + post-install: @${MKDIR} ${PREFIX}/share/xpuyopuyo -.for i in AUTHORS COPYING ChangeLog INSTALL NEWS README TESTED TODO +.for i in AUTHORS COPYING ChangeLog INSTALL NEWS README TESTED TODO gtkrc @${INSTALL_DATA} ${WRKSRC}/$i ${PREFIX}/share/xpuyopuyo .endfor @${MKDIR} ${PREFIX}/share/xpuyopuyo/img diff -ruN /usr/ports/games/xpuyopuyo/files/md5 ./files/md5 --- /usr/ports/games/xpuyopuyo/files/md5 Mon Oct 11 20:12:38 1999 +++ ./files/md5 Thu Oct 21 20:16:56 1999 @@ -1 +1 @@ -MD5 (xpuyopuyo-0.2.3.tar.gz) = 19f19aa1ebe10b4d703a6ea3110515ff +MD5 (xpuyopuyo-0.2.7.tar.gz) = d044ad13241e51cb930ebeac8e4310c6 diff -ruN /usr/ports/games/xpuyopuyo/pkg/PLIST ./pkg/PLIST --- /usr/ports/games/xpuyopuyo/pkg/PLIST Tue Sep 28 20:22:03 1999 +++ ./pkg/PLIST Thu Oct 21 20:12:27 1999 @@ -7,6 +7,7 @@ share/xpuyopuyo/README share/xpuyopuyo/TESTED share/xpuyopuyo/TODO +share/xpuyopuyo/gtkrc share/xpuyopuyo/img/img_0.xpm share/xpuyopuyo/img/img_0j.xpm share/xpuyopuyo/img/img_1.xpm @@ -23,6 +24,7 @@ share/xpuyopuyo/img/img_clearb.xpm share/xpuyopuyo/img/img_expl.xpm share/xpuyopuyo/img/img_gameover.xpm +share/xpuyopuyo/img/img_ind.xpm share/xpuyopuyo/img/img_num0.xpm share/xpuyopuyo/img/img_num1.xpm share/xpuyopuyo/img/img_num2.xpm >Fix: Please update this port, thanks. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 12:30: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E744214C57 for ; Thu, 21 Oct 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA06230; Thu, 21 Oct 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 21 Oct 1999 12:30:01 -0700 (PDT) Message-Id: <199910211930.MAA06230@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Kris Kennaway Subject: Re: ports/14442: New port: security/dante Reply-To: Kris Kennaway Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14442; it has been noted by GNATS. From: Kris Kennaway To: Anders Nordby Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/14442: New port: security/dante Date: Thu, 21 Oct 1999 12:21:00 -0700 (PDT) On Wed, 20 Oct 1999, Anders Nordby wrote: > This is Dante, a BSD licensed circuit-level firewall/proxy (socks > implemented). Cool - thanks for submitting this, it's been on my list for some time. However, it should go into net/ alongside socks5. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 12:50: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D4B414CF5 for ; Thu, 21 Oct 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA10963; Thu, 21 Oct 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id D07C414F93 for ; Thu, 21 Oct 1999 12:46:56 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id EB25A9B22; Thu, 21 Oct 1999 15:46:54 -0400 (EDT) Message-Id: <19991021194654.EB25A9B22@pawn.primelocation.net> Date: Thu, 21 Oct 1999 15:46:54 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14450: ftp.funet.fi sunsite/metalab mirror broken...bsd.port.mk update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14450 >Category: ports >Synopsis: ftp.funet.fi sunsite/metalab mirror broken...bsd.port.mk update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 21 12:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: N/A >Environment: FreeBSD 4.0-CURRENT i386 >Description: The ftp.funet.fi sunsite/metalab mirror has been broken since June 30th (see http://www.freebsd.org/~fenner/portsurvey/x11-clocks.html#bclock): ftp> cd /pub/mirrors/metalab.unc.edu 250 CWD command successful. ftp> ls 227 Entering Passive Mode (128,214,248,6,14,84) 150 Opening ASCII mode data connection for . drw-rw-r-- 5 mirror metadb 8192 Aug 11 19:25 pub 226 Transfer complete. ftp> cd /pub/mirrors/sunsite.unc.edu/pub 250 CWD command successful. ftp> ls 227 Entering Passive Mode (128,214,248,6,15,124) 150 Opening ASCII mode data connection for . drwxr-xr-x 3 mirror mirror 96 Apr 7 1998 multimedia 226 Transfer complete. ftp> Note the incorrect permissions for /pub/mirrors/metalab.unc.edu and the lack of subdirectories for /pub/mirrors/sunsite.unc.edu/pub The following patch removes ftp.funet.fi from the potential mirror list for sunsite/metalab. >How-To-Repeat: Try to access the sunsite/metalab mirror at ftp.funet.fi >Fix: --- bsd.port.mk.orig Tue Oct 12 09:01:32 1999 +++ bsd.port.mk Thu Oct 21 15:30:05 1999 @@ -909,8 +909,7 @@ MASTER_SITE_SUNSITE+= \ ftp://metalab.unc.edu/pub/Linux/%SUBDIR%/ \ - ftp://ftp.infomagic.com/pub/mirrors/linux/sunsite/%SUBDIR%/ \ - ftp://ftp.funet.fi/pub/mirrors/sunsite.unc.edu/pub/Linux/%SUBDIR%/ + ftp://ftp.infomagic.com/pub/mirrors/linux/sunsite/%SUBDIR%/ MASTER_SITE_KDE+= \ ftp://ftp.us.kde.org/pub/kde/%SUBDIR%/ \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 12:50:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB69414F55 for ; Thu, 21 Oct 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA10972; Thu, 21 Oct 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id A0B3514F97 for ; Thu, 21 Oct 1999 12:47:47 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id C2C3B9B22; Thu, 21 Oct 1999 15:47:46 -0400 (EDT) Message-Id: <19991021194746.C2C3B9B22@pawn.primelocation.net> Date: Thu, 21 Oct 1999 15:47:46 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14451: Update port: x11-clocks/bclock Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14451 >Category: ports >Synopsis: Update port: x11-clocks/bclock >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 21 12:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: Remove WWW: from pkg/DESCR (non-existent page) >How-To-Repeat: >Fix: Index: pkg/DESCR =================================================================== RCS file: /home/ncvs/ports/x11-clocks/bclock/pkg/DESCR,v retrieving revision 1.2 diff -u -r1.2 DESCR --- DESCR 1999/05/03 04:43:21 1.2 +++ DESCR 1999/10/21 19:41:45 @@ -8,7 +8,5 @@ 3) the end of the seconds hand (closest to the border) 4) the end of the minutes hand (slightly closer to the center) -WWW: http://dutian.twi.tudelft.nl/~vgeel/bclock - -- Brian Handy --> handy@physics.montana.edu >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 12:54:36 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6998314FA6; Thu, 21 Oct 1999 12:54:35 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA14127; Thu, 21 Oct 1999 12:54:35 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Thu, 21 Oct 1999 12:54:35 -0700 (PDT) From: Message-Id: <199910211954.MAA14127@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: ports/14450: ftp.funet.fi sunsite/metalab mirror broken...bsd.port.mk update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ftp.funet.fi sunsite/metalab mirror broken...bsd.port.mk update Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: cpiazza Responsible-Changed-When: Thu Oct 21 12:54:05 PDT 1999 Responsible-Changed-Why: Asami handles these To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 12:57:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 44B50150A9; Thu, 21 Oct 1999 12:57:34 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA16487; Thu, 21 Oct 1999 12:57:34 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Thu, 21 Oct 1999 12:57:34 -0700 (PDT) From: Message-Id: <199910211957.MAA16487@freefall.freebsd.org> To: jedgar@fxp.org, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14451: Update port: x11-clocks/bclock Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11-clocks/bclock State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Thu Oct 21 12:57:27 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 13: 8: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sir-alan.chem.indiana.edu (sir-alan.chem.indiana.edu [129.79.137.215]) by hub.freebsd.org (Postfix) with ESMTP id 9D2B914FBE for ; Thu, 21 Oct 1999 13:08:04 -0700 (PDT) (envelope-from msquires@sir-alan.chem.indiana.edu) Received: (from msquires@localhost) by sir-alan.chem.indiana.edu (8.9.2/8.9.2) id PAA27108 for ports@freebsd.org; Thu, 21 Oct 1999 15:18:45 -0500 (EST) (envelope-from msquires) From: Mike Squires Message-Id: <199910212018.PAA27108@sir-alan.chem.indiana.edu> Subject: SMP kernel causes samba crash under 3.3-RELEASE To: ports@freebsd.org (FreeBSD ports) Date: Thu, 21 Oct 1999 15:18:45 -0500 (EST) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have been having problems with samba under 3.3-RELEASE, and finally tried going back to 1.9 - same problem. This suggested the problem was elsewhere, and I have discovered that the SMP kernel seems to be causing the crashes. Without the SMP kernel large file copies behave normally; with it, crash. I have not tired turning off oplocks or the 2.06pre2, but will try that next. There are no errors in any of the logs, other than on the NT SP5 client. Mike Squires To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 13:11:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 4878814CEC; Thu, 21 Oct 1999 13:11:40 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 35BF61CD441 for ; Thu, 21 Oct 1999 13:11:40 -0700 (PDT) (envelope-from kris@hub.freebsd.org) Date: Thu, 21 Oct 1999 13:11:40 -0700 (PDT) From: Kris Kennaway To: ports@freebsd.org Subject: curl upgrade Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Can someone test whether the following patch to the curl port will build correctly with USE_SSL enabled? I'm trying to upgrade this using freefall (my machine is off-net), and that doesn't have openssl installed, so I can't test it. Apply the following patch and remove the patches/ directory. Thanks, Kris Index: Makefile =================================================================== RCS file: /home/ncvs/ports/ftp/curl/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 1999/08/31 06:43:59 1.10 +++ Makefile 1999/10/21 19:51:50 @@ -1,11 +1,11 @@ # New ports collection makefile for: curl -# Version required: 5.9 +# Version required: 6.1 # Date created: 12 December 1998 # Whom: Neil Blakey-Milner # # $FreeBSD: ports/ftp/curl/Makefile,v 1.10 1999/08/31 06:43:59 mharo Exp $ -DISTNAME= curl-5.9 +DISTNAME= curl-6.1 CATEGORIES= ftp www MASTER_SITES= http://www.fts.frontec.se/~dast/stuff/ \ ftp://ftp.rhrz.uni-bonn.de/pub-koeln/net/inet/ \ Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/ftp/curl/files/md5,v retrieving revision 1.4 diff -u -r1.4 md5 --- md5 1999/05/27 12:33:19 1.4 +++ md5 1999/10/21 19:51:56 @@ -1 +1 @@ -MD5 (curl-5.9.tar.gz) = c073c04a85392825bc7c8be279799ad6 +MD5 (curl-6.1.tar.gz) = 9451e8a241b51bd612b4a0c86ae39a13 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 13:17:58 1999 Delivered-To: freebsd-ports@freebsd.org Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id DDFA114F55 for ; Thu, 21 Oct 1999 13:17:55 -0700 (PDT) (envelope-from cdf.lists@fxp.org) Received: by pawn.primelocation.net (Postfix, from userid 1016) id 6AB499B25; Thu, 21 Oct 1999 16:17:54 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by pawn.primelocation.net (Postfix) with ESMTP id 5FBBBBA1C; Thu, 21 Oct 1999 16:17:54 -0400 (EDT) Date: Thu, 21 Oct 1999 16:17:54 -0400 (EDT) From: "Chris D. Faulhaber" X-Sender: cdf.lists@pawn.primelocation.net To: Kris Kennaway Cc: ports@freebsd.org Subject: Re: curl upgrade In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 21 Oct 1999, Kris Kennaway wrote: > Can someone test whether the following patch to the curl port will build > correctly with USE_SSL enabled? I'm trying to upgrade this using freefall > (my machine is off-net), and that doesn't have openssl installed, so I > can't test it. > > Apply the following patch and remove the patches/ directory. > Works fine here. ----- Chris D. Faulhaber | All the true gurus I've met never System/Network Administrator, | claimed they were one, and always Reality Check Information, Inc. | pointed to someone better. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 15:18:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 2A6A314E8E; Thu, 21 Oct 1999 15:18:30 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id F39A71CD446; Thu, 21 Oct 1999 15:18:29 -0700 (PDT) (envelope-from kris@hub.freebsd.org) Date: Thu, 21 Oct 1999 15:18:29 -0700 (PDT) From: Kris Kennaway To: "Chris D. Faulhaber" Cc: ports@freebsd.org Subject: Re: curl upgrade In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 21 Oct 1999, Chris D. Faulhaber wrote: > Works fine here. Cool, thanks. If no-one else reports problems I'll commit this later on. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 15:20: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 592D514C9D for ; Thu, 21 Oct 1999 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA35407; Thu, 21 Oct 1999 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3425214CB0; Thu, 21 Oct 1999 15:12:09 -0700 (PDT) Message-Id: <19991021221209.3425214CB0@hub.freebsd.org> Date: Thu, 21 Oct 1999 15:12:09 -0700 (PDT) From: jagapen@whitewater.chem.wisc.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14452: Cyrus IMAP port leaves behind directories after deinstall. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14452 >Category: ports >Synopsis: Cyrus IMAP port leaves behind directories after deinstall. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 21 15:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jonathan Gapen >Release: FreeBSD 3.3-RC >Organization: University of Wisconsin-Madison >Environment: >Description: A missing stdio re-direction in the Makefile for mail/cyrus means that a couple of @dirrm statements don't make it into the installed port's packing list. Upon de-installation, the ${PREFIX}/share/doc/cyrus directory gets left behind. >How-To-Repeat: Install and deinstall the Cyrus IMAP port. >Fix: 62,63c62,63 < @${ECHO} "@dirrm share/doc/cyrus/html" < @${ECHO} "@dirrm share/doc/cyrus" --- > @${ECHO} "@dirrm share/doc/cyrus/html" >>${TMPPLIST} > @${ECHO} "@dirrm share/doc/cyrus" >>${TMPPLIST} >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 18:58:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from inet-tsb.toshiba.co.jp (inet-tsb.toshiba.co.jp [202.33.96.40]) by hub.freebsd.org (Postfix) with ESMTP id BF2E014D27; Thu, 21 Oct 1999 18:58:46 -0700 (PDT) (envelope-from shige@sitc.toshiba.co.jp) Received: from tis2.tis.toshiba.co.jp by inet-tsb.toshiba.co.jp (8.8.8/3.3W9-04/12/95) id KAA20927; Fri, 22 Oct 1999 10:58:42 +0900 (JST) Received: from mx.toshiba.co.jp by tis2.tis.toshiba.co.jp (8.8.4+2.7Wbeta4/3.3W9-95082317) id KAA09433; Fri, 22 Oct 1999 10:58:42 +0900 (JST) Received: from tas0470.sitc.toshiba.co.jp by toshiba.co.jp (8.7.1+2.6Wbeta4/3.3W9-TOSHIBA-GLOBAL SERVER) id KAA13649; Fri, 22 Oct 1999 10:58:41 +0900 (JST) Received: from athena.sitc.toshiba.co.jp.sitc.toshiba.co.jp by tas0470.sitc.toshiba.co.jp (8.9.3/sitc-1.4) with ESMTP id KAA19667; Fri, 22 Oct 1999 10:58:40 +0900 (JST) Date: Fri, 22 Oct 1999 10:58:40 +0900 Message-ID: <14351.50384.301000.90795T@athena.sitc.toshiba.co.jp> From: Shigeyuki Fukushima To: noway@nohow.demon.co.uk Cc: shige@FreeBSD.org, asami@FreeBSD.org.ports@FreeBSD.org Subject: Re: Java ports In-Reply-To: In your message of "Thu, 21 Oct 1999 18:14:43 +0100 (BST)" References: <14350.28413.164000.94441T@athena.sitc.toshiba.co.jp> User-Agent: Wanderlust/2.2.3 (Always) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.4 (i386-*-nt4.0.1381) MULE/4.1 (=?ISO-2022-JP?B?GyRCMCobKEI=?=) Meadow/1.10 (TSUYU) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Thu, 21 Oct 1999 18:14:43 +0100 (BST), Jose Marques wrote: > > Are there any reasons why this is not > > /usr/local/share/doc/java// ? > > ~~~ > No reason, it's just that no java port appears to do this. I think that we need to do above. How do you think, asami-san? Thanks, shige --- shige@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 19: 9:54 1999 Delivered-To: freebsd-ports@freebsd.org Received: from inet-tsb.toshiba.co.jp (inet-tsb.toshiba.co.jp [202.33.96.40]) by hub.freebsd.org (Postfix) with ESMTP id 9BFE114A21; Thu, 21 Oct 1999 19:09:51 -0700 (PDT) (envelope-from shige@sitc.toshiba.co.jp) Received: from tis2.tis.toshiba.co.jp by inet-tsb.toshiba.co.jp (8.8.8/3.3W9-04/12/95) id LAA28254; Fri, 22 Oct 1999 11:09:50 +0900 (JST) Received: from mx2.toshiba.co.jp by tis2.tis.toshiba.co.jp (8.8.4+2.7Wbeta4/3.3W9-95082317) id LAA11105; Fri, 22 Oct 1999 11:05:05 +0900 (JST) Received: from tas0470.sitc.toshiba.co.jp by toshiba.co.jp (8.7.1+2.6Wbeta4/3.3W9-TOSHIBA-GLOBAL SERVER) id LAA06277; Fri, 22 Oct 1999 11:05:01 +0900 (JST) Received: from athena.sitc.toshiba.co.jp.sitc.toshiba.co.jp by tas0470.sitc.toshiba.co.jp (8.9.3/sitc-1.4) with ESMTP id LAA19953; Fri, 22 Oct 1999 11:05:01 +0900 (JST) Date: Fri, 22 Oct 1999 11:05:00 +0900 Message-ID: <14351.50764.838000.26572L@athena.sitc.toshiba.co.jp> From: Shigeyuki Fukushima To: shige@FreeBSD.org, ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: Java ports In-Reply-To: In your message of "Thu, 21 Oct 1999 18:14:43 +0100 (BST)" References: <14350.28413.164000.94441T@athena.sitc.toshiba.co.jp> User-Agent: Wanderlust/2.2.3 (Always) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.4 (i386-*-nt4.0.1381) MULE/4.1 (=?ISO-2022-JP?B?GyRCMCobKEI=?=) Meadow/1.10 (TSUYU) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Thu, 21 Oct 1999 18:14:43 +0100 (BST), Jose Marques wrote: > > Are there any reasons why this is not > > /usr/local/share/doc/java// ? > > ~~~ > No reason, it's just that no java port appears to do this. I think that we need to do above. How do you think, asami-san? Thanks, shige --- shige@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 20:10:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from poseidon.student.umd.edu (poseidon.student.umd.edu [129.2.220.99]) by hub.freebsd.org (Postfix) with ESMTP id 159A414F7D for ; Thu, 21 Oct 1999 20:09:24 -0700 (PDT) (envelope-from bfoz@glue.umd.edu) Received: from glue.umd.edu (localhost [127.0.0.1]) by poseidon.student.umd.edu (8.9.3/8.9.3) with ESMTP id XAA29813 for ; Thu, 21 Oct 1999 23:08:48 -0500 (EST) (envelope-from bfoz@glue.umd.edu) Message-ID: <380FE350.1204E4D2@glue.umd.edu> Date: Thu, 21 Oct 1999 23:08:48 -0500 From: Brandon Fosdick X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 3.3-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: Arla broken on 3.3-S Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anybody gotten arla to compile on 3.3? The ports collection has 0.9 and that generates a lot of errors. I'v dnloaded 0.27 but I get this error: cc -o klog klog.o arlalib.o fs_lib.o -L../rxdef -lrxdefclient -L../rx -lrx -L../lwp -llwp -L../lib/ko -lko -L../util -lutil -L../lib/sl -lsl -L/usr/ports/net/arla/work/arla-0.27/lib/editline -leditline -ledit -ltermcap -L../lib/roken -L../rxkad -lrxkad -L/usr/athena/lib -lkrb -ldes -L/usr/athena/lib -lkafs -L../rxkad -lrxkad -L/usr/athena/lib -lkrb -ldes -lroken -lkvm klog.o: In function `get_afs_token': /usr/ports/net/arla/work/arla-0.27/appl/klog.c:310: undefined reference to `krb_afslog_uid' Any suggestions? Is there some kerberos library that I may be missing? Thanks, Brandon bfoz@glue.umd.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 20:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sir-alan.chem.indiana.edu (sir-alan.chem.indiana.edu [129.79.137.215]) by hub.freebsd.org (Postfix) with ESMTP id A3B6214D41 for ; Thu, 21 Oct 1999 20:30:03 -0700 (PDT) (envelope-from msquires@sir-alan.chem.indiana.edu) Received: (from msquires@localhost) by sir-alan.chem.indiana.edu (8.9.2/8.9.2) id WAA03175 for ports@freebsd.org; Thu, 21 Oct 1999 22:31:46 -0500 (EST) (envelope-from msquires) From: Mike Squires Message-Id: <199910220331.WAA03175@sir-alan.chem.indiana.edu> Subject: samba 2.0.6pre2 won't work with SMP kernel To: ports@freebsd.org (FreeBSD ports) Date: Thu, 21 Oct 1999 22:31:46 -0500 (EST) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org samba 2.0.6pre2 also fails with my SMP kernel but works with SMP services removed. mptable doesn't indicate anything truly wierd. 2.0.6pre2 with a single CPU is not very fast, but no crashes. OS is 3.3-RELEASE; MB is Evererex PO6200 with 2 PPro 200, 64MB RAM. Board works fine with everything else; NT reports the board as MPC 1.4 compliant. But, it is a wierd board. Mike Squires To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 20:40: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 97AC114F7D for ; Thu, 21 Oct 1999 20:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA60282; Thu, 21 Oct 1999 20:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ms1.me.nctu.edu.tw (ms1.me.nctu.edu.tw [140.113.158.10]) by hub.freebsd.org (Postfix) with ESMTP id 56AB314EDD for ; Thu, 21 Oct 1999 20:37:53 -0700 (PDT) (envelope-from shuo@ms1.me.nctu.edu.tw) Received: (from root@localhost) by ms1.me.nctu.edu.tw (8.9.3/8.9.3) id LAA93703; Fri, 22 Oct 1999 11:37:56 +0800 (CST) Message-Id: <199910220337.LAA93703@ms1.me.nctu.edu.tw> Date: Fri, 22 Oct 1999 11:37:56 +0800 (CST) From: yssu@CCCA.NCTU.edu.tw Reply-To: yssu@CCCA.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14453: xcin distfile location change Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14453 >Category: ports >Synopsis: xcin distfile location change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 21 20:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yen-Shuo Su >Release: FreeBSD 3.2-STABLE i386 >Organization: Campus Computer Communication Association, NCTU >Environment: i586 >Description: The location of xcin distfile has been moved. >How-To-Repeat: >Fix: --- Makefile Mon Aug 30 19:18:13 1999 +++ /tmp/Makefile Fri Oct 22 11:26:37 1999 @@ -9,7 +9,7 @@ DISTNAME= xcin-2.3.03 PKGNAME= zh-xcin-2.3.03 CATEGORIES= chinese -MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/xcin/ \ +MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/xcin/old/ \ ftp://ftp.ncu.edu.tw/OS/Linux/Chinese/xcin/xcin/ \ ftp://linux.cis.nctu.edu.tw/packages/chinese/X/xcin/xcin/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 21 20:50: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EF9314FED for ; Thu, 21 Oct 1999 20:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA60919; Thu, 21 Oct 1999 20:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 6149C14FC1 for ; Thu, 21 Oct 1999 20:49:40 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id 79DE29B22; Thu, 21 Oct 1999 23:49:39 -0400 (EDT) Message-Id: <19991022034939.79DE29B22@pawn.primelocation.net> Date: Thu, 21 Oct 1999 23:49:39 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14454: New port: misc/wmfire Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14454 >Category: ports >Synopsis: New port: misc/wmfire >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 21 20:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: New port: misc/wmfire Window Maker dock app that displays load average as a flame. Not terribly useful, but looks cool. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # wmfire # wmfire/Makefile # wmfire/files # wmfire/files/md5 # wmfire/pkg # wmfire/pkg/PLIST # wmfire/pkg/COMMENT # wmfire/pkg/DESCR # wmfire/patches # wmfire/patches/patch-aa # wmfire/patches/patch-ab # echo c - wmfire mkdir -p wmfire > /dev/null 2>&1 echo x - wmfire/Makefile sed 's/^X//' >wmfire/Makefile << 'END-of-wmfire/Makefile' X# New ports collection makefile for: wmfire X# Version required: 0.0.3.9pre4 X# Date created: 21 October 1999 X# Whom: Chris D. Faulhaber X# X# $FreeBSD$ X# X XDISTNAME= wmfire-0.0.3.9pre4 XCATEGORIES= misc XMASTER_SITES= http://www.zebra.net/~dm/wmfire/ X XMAINTAINER= jedgar@fxp.org X XLIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm X XUSE_X_PREFIX= yes XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --with-x XCONFIGURE_ENV+= CFLAGS="-I${PREFIX}/include ${CFLAGS}" \ X LIBS="-L${PREFIX}/lib" X X.include END-of-wmfire/Makefile echo c - wmfire/files mkdir -p wmfire/files > /dev/null 2>&1 echo x - wmfire/files/md5 sed 's/^X//' >wmfire/files/md5 << 'END-of-wmfire/files/md5' XMD5 (wmfire-0.0.3.9pre4.tar.gz) = a5ea7e73041494dae95eba058d55cab1 END-of-wmfire/files/md5 echo c - wmfire/pkg mkdir -p wmfire/pkg > /dev/null 2>&1 echo x - wmfire/pkg/PLIST sed 's/^X//' >wmfire/pkg/PLIST << 'END-of-wmfire/pkg/PLIST' Xbin/wmfire Xbin/fireload_cpu Xbin/fireload_file END-of-wmfire/pkg/PLIST echo x - wmfire/pkg/COMMENT sed 's/^X//' >wmfire/pkg/COMMENT << 'END-of-wmfire/pkg/COMMENT' XWindow Maker dock app showing load average as a flame END-of-wmfire/pkg/COMMENT echo x - wmfire/pkg/DESCR sed 's/^X//' >wmfire/pkg/DESCR << 'END-of-wmfire/pkg/DESCR' XWindow Maker dock app showing load average as a flame. X XNot terribly useful, but looks cool. X X- Chris D. Faulhaber Xjedgar@fxp.org END-of-wmfire/pkg/DESCR echo c - wmfire/patches mkdir -p wmfire/patches > /dev/null 2>&1 echo x - wmfire/patches/patch-aa sed 's/^X//' >wmfire/patches/patch-aa << 'END-of-wmfire/patches/patch-aa' X--- configure.orig Thu Oct 21 21:23:53 1999 X+++ configure Thu Oct 21 23:37:39 1999 X@@ -1755,8 +1755,8 @@ X linux*) X echo "$ac_t""Linux" 1>&6 X ;; X- netbsd*) X- echo "$ac_t""NetBSD" 1>&6 X+ freebsd*) X+ echo "$ac_t""FreeBSD" 1>&6 X ;; X *) X echo "$ac_t""*Unknown*" 1>&6 END-of-wmfire/patches/patch-aa echo x - wmfire/patches/patch-ab sed 's/^X//' >wmfire/patches/patch-ab << 'END-of-wmfire/patches/patch-ab' X--- fireload_cpu.c.orig Thu Sep 30 10:45:48 1999 X+++ fireload_cpu.c Thu Oct 21 23:25:10 1999 X@@ -30,7 +30,7 @@ X # define DELTA(i, x) (cpuinfo[i].cs_new.x - cpuinfo[i].cs_old.x) X #endif X X-#ifdef __NetBSD__ X+#ifdef __FreeBSD__ X /******************************** X * NetBSD code by Hubert Feyrer * X ********************************/ END-of-wmfire/patches/patch-ab exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 22 0:20: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EF4A514E2B for ; Fri, 22 Oct 1999 00:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA75323; Fri, 22 Oct 1999 00:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 971E514E2B; Fri, 22 Oct 1999 00:10:58 -0700 (PDT) Message-Id: <19991022071058.971E514E2B@hub.freebsd.org> Date: Fri, 22 Oct 1999 00:10:58 -0700 (PDT) From: charon@freethought.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14456: the apsfilter "requires" line on http://www.freebsd.org/ports/ isn't complete Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14456 >Category: ports >Synopsis: the apsfilter "requires" line on http://www.freebsd.org/ports/ isn't complete >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 22 00:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: charon >Release: 3.3-STABLE >Organization: >Environment: Don't have FreeBSD up right now, but it's not a problem on my machine. (It's a 3.3-STABLE current as of ctm delta 3.0335, made world Oct. 20.) >Description: Apsfilter requires ports that aren't listed in the "requires" field at http://www.freebsd.org/cgi/ports.cgi?query=apsfilter&stype=all. >How-To-Repeat: Go to http://www.freebsd.org/cgi/ports.cgi?query=apsfilter&stype=all and note the paucity of the "requires" field. Or, alternately, download what it says apsfilter requires and then try a 'make apsfilter' on a machine that's not on the internet. Have fun. >Fix: Put back up all the other requirements. If the requirements vary for installations because of apsfilter's new installation interface, then put up the requirements for each option. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 22 0:26:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id BDB9B14A2E; Fri, 22 Oct 1999 00:26:56 -0700 (PDT) (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.9.3/8.6.9) with ESMTP id JAA00441; Fri, 22 Oct 1999 09:23:32 +0200 (CEST) Message-Id: <199910220723.JAA00441@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: mharo@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: cvs commit: ports/editors/xemacs21/pkg PLIST Reply-To: Gary Jennejohn In-reply-to: Your message of "Thu, 21 Oct 1999 22:43:02 PDT." <19991021224302.A23292@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 22 Oct 1999 09:23:32 +0200 From: Gary Jennejohn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [CC'd to ports in case someone else notices this apparent problem] Michael Haro writes: >I thought /var/run was cleared out on reboot?? > ah, yes, it is now. However, at the time we agreed in ports that the lock file should go into /var/run/emacs/lock, it wasn't. Anyway, no big deal. /usr/local/etc/rc.d/xemacs21.sh makes the directory automatically. That makes the entry in PLIST apparently superfluous, but I don't plan on changing it. As Asami wrote, pkg_add should create all files and directories which the port creates, and the lock directory is one of them. --- Gary Jennejohn Home - garyj@muc.de Work - garyj@fkr.cpqcorp.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 22 6:53:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from x-montana.utcorp.com (x-montana.utcorp.com [146.145.135.26]) by hub.freebsd.org (Postfix) with ESMTP id A54D115012 for ; Fri, 22 Oct 1999 06:53:07 -0700 (PDT) (envelope-from kseel@utcorp.com) Received: from utcorp.com (x-kspc.utcorp.com [146.145.135.17]) by x-montana.utcorp.com (8.8.8/8.8.8) with ESMTP id LAA01925; Fri, 22 Oct 1999 11:03:08 -0400 (EDT) (envelope-from kseel@utcorp.com) Message-ID: <38106CBD.26479B44@utcorp.com> Date: Fri, 22 Oct 1999 09:55:09 -0400 From: Kurt Seel X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.8-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: alexlh@funk.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: sslproxy-19980614 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have been kicking the tires on the sslproxy. I am running freebsd 2.2.7. It seems to work, with one exception: zombies, alot of them. Is anyone else using this tool? Is there a fix, or should I start hacking the code? -- "Signature file failed Preliminary Design Review. Feasibility of a new signature is currently being evaluated." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 22 17:10: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from pozo.com (pozo.com [216.101.162.50]) by hub.freebsd.org (Postfix) with ESMTP id 4213214C97; Fri, 22 Oct 1999 17:09:50 -0700 (PDT) (envelope-from mantar@pacbell.net) Received: from dual (dual.pozo.com [216.101.162.51]) by pozo.com (8.9.3/8.9.3) with ESMTP id RAA12035; Fri, 22 Oct 1999 17:09:26 -0700 (PDT) (envelope-from mantar@pacbell.net) Message-Id: <4.2.1.10.19991022170330.00a9a3f0@pozo.com> X-Sender: null@pozo.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.1.10 (Beta) Date: Fri, 22 Oct 1999 17:09:25 -0700 To: Ilya Naumov , current@FreeBSD.ORG, ports@FreeBSD.ORG From: Manfred Antar Subject: Re: proftpd problem In-Reply-To: <1317.991023@avias.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 12:25 AM 10/23/99 +0400, Ilya Naumov wrote: >Hello, > >recently i've got the following problem with proftpd. > >this daemon (pre8) worked ok until one of recent "make world"s. after >that it started to deny any non-anonymous logins with the following >diags: > >Oct 23 00:18:11 camel proftpd[76540]: PAM(camel): Authentication failure >Oct 23 00:18:11 camel proftpd[76540]: USER camel: incorrect password >from 192.168.2.2 [192.168.2.2] to xxx.xxx.xxx.xxx:21 >Oct 23 00:18:00 camel proftpd[76540]: FTP session closed. > >entries in pam.conf related to ftp are correct and proftpd.conf is >ok too (i guess :). > >so, is it a problem connected to changes in PAM or anything else? >thank you. > I had the same problem and hacked at it for few hours. the only way I could get it to work was to put PersistentPasswd On in the /usr/local/etc/proftpd.conf file. It stopped working about last weekend. With the above line added it works fine. Manfred ===================== || mantar@pacbell.net || || Ph. (415) 681-6235 || ===================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 22 20: 3:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ADC4614E52; Fri, 22 Oct 1999 20:03:14 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA09086; Fri, 22 Oct 1999 20:03:14 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Date: Fri, 22 Oct 1999 20:03:14 -0700 (PDT) From: Message-Id: <199910230303.UAA09086@freefall.freebsd.org> To: yssu@CCCA.NCTU.edu.tw, vanilla@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14453: xcin distfile location change Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: xcin distfile location change State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Fri Oct 22 20:03:03 PDT 1999 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 22 22:31:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from brutus.converging.net (edtn002029.hs.telusplanet.net [161.184.135.251]) by hub.freebsd.org (Postfix) with ESMTP id A79FC14C98 for ; Fri, 22 Oct 1999 22:31:08 -0700 (PDT) (envelope-from dtougas@brutus.converging.net) Received: (from dtougas@localhost) by brutus.converging.net (8.9.3/8.9.3) id XAA09414 for freebsd-ports@freebsd.org; Fri, 22 Oct 1999 23:34:12 -0600 (MDT) (envelope-from dtougas) Date: Fri, 22 Oct 1999 23:33:00 -0600 From: D Tougas To: Manfred Antar Subject: Re: proftpd problem Message-ID: <19991022233300.B9211@converging.net> References: <1317.991023@avias.com> <4.2.1.10.19991022170330.00a9a3f0@pozo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <4.2.1.10.19991022170330.00a9a3f0@pozo.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I had a problem similar to this and it was because ProFTPd started using PAM. There are notes in one of the sub-directories of the port which explain how to fix this problem. You need to edit the PAM config file to allow authentication for ProFTPd. On Fri, Oct 22, 1999 at 05:09:25PM -0700, Manfred Antar wrote: > At 12:25 AM 10/23/99 +0400, Ilya Naumov wrote: > >Hello, > > > >recently i've got the following problem with proftpd. > > > >this daemon (pre8) worked ok until one of recent "make world"s. after > >that it started to deny any non-anonymous logins with the following > >diags: > > > >Oct 23 00:18:11 camel proftpd[76540]: PAM(camel): Authentication failure > >Oct 23 00:18:11 camel proftpd[76540]: USER camel: incorrect password > >from 192.168.2.2 [192.168.2.2] to xxx.xxx.xxx.xxx:21 > >Oct 23 00:18:00 camel proftpd[76540]: FTP session closed. > > > >entries in pam.conf related to ftp are correct and proftpd.conf is > >ok too (i guess :). > > > >so, is it a problem connected to changes in PAM or anything else? > >thank you. > > > > I had the same problem and hacked at it for few hours. > the only way I could get it to work was to put > > PersistentPasswd On > > in the /usr/local/etc/proftpd.conf file. > It stopped working about last weekend. > With the above line added it works fine. > Manfred > ===================== > || mantar@pacbell.net || > || Ph. (415) 681-6235 || > ===================== > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- Damien Tougas Converging Technology Solutions, Inc. Phone: (780)469-1679 Fax: (780)461-5127 E-mail: dtougas@converging.net http://www.converging.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 1: 3:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 90A951502A; Sat, 23 Oct 1999 01:03:14 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA24208; Sat, 23 Oct 1999 01:03:13 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Date: Sat, 23 Oct 1999 01:03:13 -0700 (PDT) From: Message-Id: <199910230803.BAA24208@freefall.freebsd.org> To: handy@physics.montana.edu, vanilla@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14294: gimp1 upgrade: 1.1.5 --> 1.1.10 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gimp1 upgrade: 1.1.5 --> 1.1.10 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Sat Oct 23 01:02:23 PDT 1999 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 5: 8: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gemini.smart.net (gemini.smart.net [207.176.80.109]) by hub.freebsd.org (Postfix) with ESMTP id 3B51914C1D for ; Sat, 23 Oct 1999 05:07:46 -0700 (PDT) (envelope-from dcmarti1@smart.net) Received: from smart.net (IDENT:marti@marti.smart.net [205.252.32.98]) by gemini.smart.net (8.9.1/8.9.1) with ESMTP id IAA21985 for ; Sat, 23 Oct 1999 08:07:42 -0400 Message-ID: <3811A8B3.DCE57BD7@smart.net> Date: Sat, 23 Oct 1999 08:23:15 -0400 From: Marti X-Mailer: Mozilla 4.51 [en] (X11; I; Linux 2.2.5-15 i686) X-Accept-Language: en MIME-Version: 1.0 To: ports@freeBSD.ORG Subject: NoSQL Content-Type: multipart/mixed; boundary="------------6F3B884250EA85116152799B" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------6F3B884250EA85116152799B Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Came across this site through an article in the on-line version of Linux Journal. Thought you may want to post this under databases.
http://www.mi.linux.it/People/carlos/nosql/
  --------------6F3B884250EA85116152799B Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Content-Base: "http://www.mi.linux.it/People/carlos/n osql/" Content-Location: "http://www.mi.linux.it/People/carlos/n osql/" NoSQL

NoSQL

[NoSQL]

A Relational Database Management System

Carlo Strozzi

Italian Linux Society.

September 20th, 1999


NoSQL is a fast, portable, relational database management system without arbitrary limits, (other than memory and processor speed) that runs under, and interacts with, the UNIX Operating System. It uses the Operator/Stream DBMS paradigm described in "Unix Review", March, 1991, page 24, entitled "A 4GL Language". There are a number of "operators" that each perform a unique function on the data. The "stream" is suplied by the UNIX Input/Output redirection mechanism. Therefore each operator processes some data and then passes it along to the next operator via the UNIX pipe function. This is very efficient as UNIX pipes are implemented in memory. NoSQL is compliant with the "Relational Model".

Table of Contents


Copyright

NoSQL RDBMS, Copyright (C) 1998-1999 Carlo Strozzi. Part of NoSQL code comes from RDB, a similar package written by W.Hobbs, an has been included in NoSQL with permission from the author.

NoSQL comes with ABSOLUTELY NO WARRANTY; for details refer to the GNU General Public License.


What is NoSQL

NoSQL, which I personally like to pronounce noseequel, is a derivative of the RDB DataBase system. The latter was developed at RAND Organization by Walter W. Hobbs. The few Perl scripts included with NoSQL are still very close the original RDB ones, so a good share of the credit for them goes to the original author.

Other major contributors to the original RDB system, besides W. Hobbs, were:

Chuck Bush

Don Emerson

Judy Lender

Roy Gates Rae Starr

People who helped with turning RDB into NoSQL:

Vincenzo (Vicky) Belloli

David Frey

Giuseppe Paternò

Maurizio (Masar) Sartori

The NoSQL.png logo has been kindly provided by Kyle Hart.

As its name implies, NoSQL is not an SQL database, but rather a shell-level tool. The rationale behind it is well explained in the accompanying paper "The UNIX Shell As a Fourth Generation Language", available in both Postscript and ASCII format.

The data is contained in regular UNIX ASCII files, and so can be manipulated by regular UNIX utilities, e.g. ls, wc, mv, cp, cat, more, less, editors like 'vi', head, RCS, etc.

The form of each file of data is that of a relation, or table, with rows and columns of information.

To extract information, a file of data is fed to one or more "operators" via the UNIX Input/Output redirection mechanism.

There are also programs to generate, modify, and validate the data. A more through discussion of why this type of relational database structure makes sense is found in the book, "UNIX Relational Database Management", Reference #2.

To use NoSQL, it is assumed that the user has at least a minimum knowledge of the UNIX Operating System, including knowledge of Input/Outout redirection (e.g., STDIN, STDOUT, pipes).

NoSQL tends to be biased in favour of Linux. This means that, wherever it matters, NoSQL makes use of the GNU versions of the various UNIX commands, as those are the ones normally found on this UNIX workalike. NoSQL is Free Software, released under the terms of the GNU General Public License. As such, it fully qualifies as Open Source Software.


Why NoSQL

A good question one could ask is "With all the relational database management systems available today, why do we need another one ?". The main reasons are:

  1. Several times I have found myself writing applications that needed to rely upon simple database management tasks. Most commercial database products are often too costly and too feature-packed to encourage casual use. There is also plenty of good freeware databases around, but they too tend to provide far more than I need most of the times, and they too lack the shell-level approach of NoSQL. Admittedly, having been written mostly with interpretive languages (Shell, Perl, AWK), NoSQL is not the fastest DBMS of all, at least not always (a lot depends on the application).
  2. NoSQL is easy to use by non-computer people. The concept is straight forward and logical. To select rows of data, the 'row' operator is used; to select columns of data, the 'column' operator is used.
  3. The data is highly portable to and from other types of machines, like Macintoshes or MSDOS computers.
  4. The system should run on any UNIX machine (that has the PERL and the AWK Programming Languages installed).
  5. NoSQL essentially has no arbitrary limits, and can work where other products can't. For example there is no limit on data field size, the number of columns, or file size (the number of columns in a table may actually be limited to 32.768 by some implementations of the AWK interpreter, including mawk I think).

Again, the key feature of NoSQL (and other similar packages mentioned in this manual), is its close integration with UNIX. Unlike other fourth generation systems, NoSQL is an extension of the UNIX environment, making available the full power of UNIX during application development and usage. This level of integration removes the need to learn yet another set of commands to use and administer the database system. A database is just a file, and can be maintained like all other files that the user owns or has access to. Because NoSQL commands are executable programs, the UNIX shell is inherited as the primary command language of the database; no other proprietary database scripting language, to my knowledge, is as powerful and flexible as the UNIX shell. The shell-level nature of NoSQL encourages casual use of the system, and succesful casual use leads to familiarity and succesful formal use. This concept is much more thoroughly explained in the aforementioned paper "The UNIX Shell As a Fourth Generation Language", that shows why the UNIX shell is an excellent tool for scripting database access.


How to get NoSQL

NoSQL can be freely downloaded from this site. Make sure you get also any patches to the base code, for the version that you get.


Documentation

The latest version of the NoSQL online documentation can be found here:


Support

There is a mailing list for discussions related to NoSQL. The address is noseequel@mi.linux.it. To subscribe simply send a message to minimalist@mi.linux.it with the word "subscribe noseequel" (without the quotes) in the subject of the message. The mailing list software is Minimalist, a MINImalist MAiling LIST Manager.


Contributions

If you want to help with NoSQL by contributing your own code you are most welcome, but please have a look at the Notes for contributors page first.


References

  1. "Unix Review" magazine, March, 1991, page 24, "A 4GL Language".
  2. "UNIX Relational Database Management", R. Manis, E. Schaffer, R. Jorgensen, 1988, Prentice Hall.
  3. "The AWK Programming Language", Alfred V. Aho, Brian W. Kernighan and Peter J. Weinberger, 1988, Addison-Wesley.
  4. "Programming PERL", L. Wall, R. Schwartz, 1991, O'Reilly & Associates.
  5. "UNIX Shell Programming", L.J. Arthur, T. Burns, 1997, John Wiley & Sons.
  6. See also the online paper Consultix Shell Quoting Guidelines.
--------------6F3B884250EA85116152799B-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:47:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EF08B14C4F for ; Sat, 23 Oct 1999 06:47:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88747; Sat, 23 Oct 1999 06:47:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bs-tosh.breuninger.org (bs-tosh.Breuninger.ORG [195.254.79.23]) by hub.freebsd.org (Postfix) with ESMTP id 63ADA14D39 for ; Fri, 22 Oct 1999 04:15:03 -0700 (PDT) (envelope-from root@bs-tosh.breuninger.org) Received: (from root@localhost) by bs-tosh.breuninger.org (8.9.3/8.9.3) id NAA03253; Fri, 22 Oct 1999 13:15:01 +0200 (CEST) (envelope-from root) Message-Id: <199910221115.NAA03253@bs-tosh.breuninger.org> Date: Fri, 22 Oct 1999 13:15:01 +0200 (CEST) From: ob@seicom.net Reply-To: ob@seicom.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14458: update o2c Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14458 >Category: ports >Synopsis: modification of Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:16 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Oliver Breuninger >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: One mastersite unavailable. >How-To-Repeat: >Fix: MASTER_SITES= ftp://ftp.uni-kl.de/pub/informatik/software/ \ ftp://ftp.archive.de.uu.net/pub/programming/languages/oberon/www.uni-kl.de/OOC/files/misc/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:47:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 210FF14CB6 for ; Sat, 23 Oct 1999 06:47:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88756; Sat, 23 Oct 1999 06:47:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from manta.kuee.kyoto-u.ac.jp (manta.kuee.kyoto-u.ac.jp [130.54.28.236]) by hub.freebsd.org (Postfix) with ESMTP id 0477314C3F for ; Sat, 23 Oct 1999 06:45:53 -0700 (PDT) (envelope-from hurukawa@manta.kuee.kyoto-u.ac.jp) Received: (from hurukawa@localhost) by manta.kuee.kyoto-u.ac.jp (8.9.3/8.9.3) id WAA64936; Sat, 23 Oct 1999 22:45:02 +0900 (JST) (envelope-from hurukawa) Message-Id: <199910231345.WAA64936@manta.kuee.kyoto-u.ac.jp> Date: Sat, 23 Oct 1999 22:45:02 +0900 (JST) From: hurukawa@kuee.kyoto-u.ac.jp Reply-To: hurukawa@kuee.kyoto-u.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14459: new ports graphics/epstool Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14459 >Category: ports >Synopsis: new ports graphics/epstool >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:16 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yuzo Furukawa >Release: FreeBSD 3.3-RELEASE i386 >Organization: Department of Electronic Science and Engineering, Kyoto University >Environment: FreeBSD 3.3-RELEASE i386 >Description: New port of epstool 1.06 - a program create or extract preview bitmaps in EPS files. Epstool requires ghostscript. >How-To-Repeat: The shell archive of files is attached. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # graphics # graphics/epstool # graphics/epstool/Makefile # graphics/epstool/pkg # graphics/epstool/pkg/PLIST # graphics/epstool/pkg/COMMENT # graphics/epstool/pkg/DESCR # graphics/epstool/files # graphics/epstool/files/md5 # graphics/epstool/patches # graphics/epstool/patches/patch-aa # graphics/epstool/patches/patch-ab # echo c - graphics mkdir -p graphics > /dev/null 2>&1 echo c - graphics/epstool mkdir -p graphics/epstool > /dev/null 2>&1 echo x - graphics/epstool/Makefile sed 's/^X//' >graphics/epstool/Makefile << 'END-of-graphics/epstool/Makefile' X# New ports collection makefile for: epstool X# Version required: 1.06 X# Date created: 23 October 1999 X# Whom: Yuzo FURUKAWA X# X# $FreeBSD$ X XDISTNAME= epstool-106 XPKGNAME= epstool-1.06 XCATEGORIES= graphics XMASTER_SITES= ftp://ftp.cs.wisc.edu/ghost/rjl/ \ X ftp://ftp.fh-koblenz.de/pub/Ghostscript/rjl/ X XMAINTAINER= ports@FreeBSD.org X XRUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript55 X XMAKEFILE= makefile.unx XWRKSRC= ${WRKDIR}/epstool X Xpost-install: X ${MKDIR} ${PREFIX}/bin ${PREFIX}/share/doc/epstool X ${INSTALL_DATA} ${WRKSRC}/epstool.txt \ X ${PREFIX}/share/doc/epstool/epstool.txt X X.include END-of-graphics/epstool/Makefile echo c - graphics/epstool/pkg mkdir -p graphics/epstool/pkg > /dev/null 2>&1 echo x - graphics/epstool/pkg/PLIST sed 's/^X//' >graphics/epstool/pkg/PLIST << 'END-of-graphics/epstool/pkg/PLIST' Xbin/epstool Xshare/doc/epstool/epstool.txt X X@dirrm share/doc/epstool END-of-graphics/epstool/pkg/PLIST echo x - graphics/epstool/pkg/COMMENT sed 's/^X//' >graphics/epstool/pkg/COMMENT << 'END-of-graphics/epstool/pkg/COMMENT' XEPSTOOL - Create or extract preview bitmaps in EPS files. END-of-graphics/epstool/pkg/COMMENT echo x - graphics/epstool/pkg/DESCR sed 's/^X//' >graphics/epstool/pkg/DESCR << 'END-of-graphics/epstool/pkg/DESCR' XFeatures: X- Add EPSI or DOS EPS previews. X- Extract postscript from DOS EPS files. X- Uses Ghostscript to create preview bitmaps. X- Scan a bitmap created by Ghostscript to find bounding box. X- Create TIFF or Interchange from part of a bitmap created X by Ghostscript. X XPlease read text '/usr/local/share/doc/epstool/epstool.txt' X X- Yuzo FURUKAWA END-of-graphics/epstool/pkg/DESCR echo c - graphics/epstool/files mkdir -p graphics/epstool/files > /dev/null 2>&1 echo x - graphics/epstool/files/md5 sed 's/^X//' >graphics/epstool/files/md5 << 'END-of-graphics/epstool/files/md5' XMD5 (epstool-106.tar.gz) = 1b86df4d4420995090867dcc3882febb END-of-graphics/epstool/files/md5 echo c - graphics/epstool/patches mkdir -p graphics/epstool/patches > /dev/null 2>&1 echo x - graphics/epstool/patches/patch-aa sed 's/^X//' >graphics/epstool/patches/patch-aa << 'END-of-graphics/epstool/patches/patch-aa' X--- makefile.unx.orig Sat Oct 23 18:00:19 1999 X+++ makefile.unx Sat Oct 23 19:24:37 1999 X@@ -20,8 +20,8 @@ X RM=/bin/rm -f X SHELL=/bin/sh X X-BINDIR=/usr/local/bin X-INCLUDES=-I/usr/openwin/include X+BINDIR=${PREFIX}/bin X+INCLUDES=-I/usr/X11R6/include X LIBS= X # if you have a strict ANSI compiler, add -D__STDC__ X DEFINES=-DUNIX -DEPSTOOL -DHAVE_UNISTD_H X@@ -54,5 +54,5 @@ X -$(RM) epstool X X install: epstool X- cp epstool $(BINDIR) X- chmod 755 $(BINDIR)/epstool X+ install -c -s -g bin -o root -m 755 epstool $(BINDIR) X+ END-of-graphics/epstool/patches/patch-aa echo x - graphics/epstool/patches/patch-ab sed 's/^X//' >graphics/epstool/patches/patch-ab << 'END-of-graphics/epstool/patches/patch-ab' X--- epstool.c.orig Sun Sep 13 09:52:52 1998 X+++ epstool.c Sat Oct 23 17:59:46 1999 X@@ -25,7 +25,7 @@ X char upname[MAXSTR]; X char gsname[MAXSTR] = GSCOMMAND; X char bmpname[MAXSTR]; X-char devname[MAXSTR]; X+char gsdevname[MAXSTR]; X char szScratch[] = "ep"; X char szAppName[] = "epstool"; X int resolution = 72; X@@ -87,9 +87,9 @@ X main(int argc, char *argv[]) X { X #ifdef UNIX X- strcpy(devname, "pbmraw"); X+ strcpy(gsdevname, "pbmraw"); X #else X- strcpy(devname, "bmpmono"); X+ strcpy(gsdevname, "bmpmono"); X #endif X if (scan_args(argc, argv)) X return 1; X@@ -252,10 +252,10 @@ X fclose(tempfile); X #ifdef UNIX X sprintf(gscommand, "%s -dNOPAUSE -dQUIET -sDEVICE=%s -sOutputFile=\042%s\042 -r%d -g%dx%d %s", X- gsname, devname, bmpname, resolution, width, height, tempname); X+ gsname, gsdevname, bmpname, resolution, width, height, tempname); X #else X sprintf(gscommand, "-dNOPAUSE\n-dQUIET\n-sDEVICE=%s\n-sOutputFile=\042%s\042\n-r%d\n-g%dx%d\n\042%s\042", X- devname, bmpname, resolution, width, height, tempname); X+ gsdevname, bmpname, resolution, width, height, tempname); X if (!quiet) { X fputs(gscommand, stderr); X fputs("\n", stderr); X@@ -409,7 +409,7 @@ X break; X case 'z': X if (argp[2]) X- strcpy(devname, argp+2); X+ strcpy(gsdevname, argp+2); X break; X case 'c': X if (got_op) { END-of-graphics/epstool/patches/patch-ab exit >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:47:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5DD714D69 for ; Sat, 23 Oct 1999 06:47:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88779; Sat, 23 Oct 1999 06:47:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.dinoex.sub.org (mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (Postfix) with ESMTP id 9671214DF8 for ; Fri, 22 Oct 1999 09:31:22 -0700 (PDT) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.9.3/8.9.3) with UUCP id SAA24151 for FreeBSD-gnats-submit@freebsd.org; Fri, 22 Oct 1999 18:25:33 +0200 (CEST) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id PAA00474 for FreeBSD-gnats-submit@freebsd.org; Fri, 22 Oct 1999 15:48:01 +0200 (CEST) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id PAA88022; Fri, 22 Oct 1999 15:45:37 +0200 (CEST) Message-Id: <199910221345.PAA88022@home.dinoex.sub.org> Date: Fri, 22 Oct 1999 15:45:37 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14461: irc/zircon update to 1.18.224 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14461 >Category: ports >Synopsis: irc/zircon update to 1.18.224 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:18 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.3-RELEASE i386 >Organization: privat >Environment: zircon with tcl/tk 8.0 or 8.1 >Description: old Distfile is not availible on MASTER_SITE secondary Master-Site has changed >How-To-Repeat: try to make ports/zircon >Fix: diff zircon/Makefile zircon-1.18.225/Makefile --- zircon/Makefile Sat Oct 2 06:01:55 1999 +++ zircon-1.18.225/Makefile Fri Oct 22 06:01:36 1999 @@ -1,19 +1,19 @@ # New ports collection makefile for: zircon -# Version required: 1.18.223 +# Version required: 1.18.225 # Date created: 19 Aug 1995 # Whom: jkh / pst # # $FreeBSD: ports/irc/zircon/Makefile,v 1.41 1999/08/25 06:13:07 obrien Exp $ # -DISTNAME= zircon-1.18.223 -CATEGORIES= irc tk81 +DISTNAME= zircon-1.18.225 +CATEGORIES= irc tk81 MASTER_SITES= ftp://catless.ncl.ac.uk/pub/ \ - ftp://ftp.dinoex.sub.org/pub/approved/ + ftp://ftp.lan-ks.de/pub/approved/ MAINTAINER= jseger@FreeBSD.org -RUN_DEPENDS= wish8.1:${PORTSDIR}/x11-toolkits/tk81 +RUN_DEPENDS= wish8.1:${PORTSDIR}/x11-toolkits/tk81 IS_INTERACTIVE= yes NO_BUILD= yes diff zircon/files/md5 zircon-1.18.225/files/md5 --- zircon/files/md5 Sat Oct 2 06:01:57 1999 +++ zircon-1.18.225/files/md5 Fri Oct 22 08:04:00 1999 @@ -1 +1 @@ -MD5 (zircon-1.18.223.tar.gz) = 62275147a6a18749a8a621eb7740cd96 +MD5 (zircon-1.18.225.tar.gz) = f681b0f56ee39b7592a189bdc02c065d >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:47:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 385EE14DAB for ; Sat, 23 Oct 1999 06:47:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88788; Sat, 23 Oct 1999 06:47:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kronos.alcnet.com (kronos.alcnet.com [63.69.28.22]) by hub.freebsd.org (Postfix) with ESMTP id C04EE1503E for ; Fri, 22 Oct 1999 10:00:14 -0700 (PDT) (envelope-from kbyanc@kronos.alcnet.com) Received: (from kbyanc@localhost) by kronos.alcnet.com (8.9.3/8.9.3/antispam) id NAA85697; Fri, 22 Oct 1999 13:00:13 -0400 (EDT) Message-Id: <199910221700.NAA85697@kronos.alcnet.com> Date: Fri, 22 Oct 1999 13:00:13 -0400 (EDT) From: kbyanc@posi.net Reply-To: kbyanc@posi.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14462: new port: net/radreport Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14462 >Category: ports >Synopsis: new port: net/radreport >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:18 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Kelly Yancey >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # radreport # radreport/Makefile # radreport/pkg # radreport/pkg/PLIST # radreport/pkg/COMMENT # radreport/pkg/DESCR # radreport/files # radreport/files/md5 # echo c - radreport mkdir -p radreport > /dev/null 2>&1 echo x - radreport/Makefile sed 's/^X//' >radreport/Makefile << 'END-of-radreport/Makefile' X# New ports collection makefile for: radreport X# Version required: 1.3 X# Date created: 10/22/1999 X# Whom: Kelly Yancey X# X# $FreeBSD$ X# X XDISTNAME= radreport XPKGNAME= radreport-1.3 XCATEGORIES= net XMASTER_SITES= ftp://ftp.livingston.com/pub/le/contrib/radius/ XDISTFILES= radreport X XMAINTAINER= kbyanc@posi.net X XNO_WRKSUBDIR= yes X Xdo-extract: X @${MKDIR} ${WRKDIR} X @for i in $(DISTFILES); do ${CP} ${DISTDIR}/$$i ${WRKDIR}; done X Xdo-build: X Xdo-install: X @${INSTALL_DATA} ${WRKDIR}/radreport ${PREFIX}/bin X X.include END-of-radreport/Makefile echo c - radreport/pkg mkdir -p radreport/pkg > /dev/null 2>&1 echo x - radreport/pkg/PLIST sed 's/^X//' >radreport/pkg/PLIST << 'END-of-radreport/pkg/PLIST' Xbin/radreport X END-of-radreport/pkg/PLIST echo x - radreport/pkg/COMMENT sed 's/^X//' >radreport/pkg/COMMENT << 'END-of-radreport/pkg/COMMENT' XPerl script for processing radius logs END-of-radreport/pkg/COMMENT echo x - radreport/pkg/DESCR sed 's/^X//' >radreport/pkg/DESCR << 'END-of-radreport/pkg/DESCR' XRadreport is a perl script for parsing radius logs. XWhile distributed by Lucent RABU, it is contributed software. Radreport has Xno active maintainer and is truly open source software: if you need an extra Xfeature, hack it in yourself. X X -Kelly X kbyanc@posi.net END-of-radreport/pkg/DESCR echo c - radreport/files mkdir -p radreport/files > /dev/null 2>&1 echo x - radreport/files/md5 sed 's/^X//' >radreport/files/md5 << 'END-of-radreport/files/md5' XMD5 (radreport) = 59d8d8acdff085a09727a6a0d9426e33 END-of-radreport/files/md5 exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:47:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CAB2514DBD for ; Sat, 23 Oct 1999 06:47:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88806; Sat, 23 Oct 1999 06:47:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id F263F14D4F; Fri, 22 Oct 1999 10:44:58 -0700 (PDT) Message-Id: <19991022174458.F263F14D4F@hub.freebsd.org> Date: Fri, 22 Oct 1999 10:44:58 -0700 (PDT) From: ambrisko@whistle.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14464: Update Etherboot to 4.2.9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14464 >Category: ports >Synopsis: Update Etherboot to 4.2.9 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:19 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Doug Ambrisko >Release: current >Organization: Whistle >Environment: FreeBSD 770z.whistle.com 4.0-CURRENT FreeBSD 4.0-CURRENT #13: Thu Sep 16 13:53:47 PDT 1999 ambrisko@770z.whistle.com:/usr/home/ambrisko/current/usr/src/sys/compile/THINK i386 >Description: Upgrade Etherboot from 4.2.5 to 4.2.9. Note that the author merged our FreeBSD boot patches into the distribution. Note we only have three patch files now: -aa Point to the as-new that can use the new data32 stuff -ab Enable FreeBSD boot enable flags -ac Fix the 3C905 header problem (submitted back to author) >How-To-Repeat: >Fix: Please remove stuff in patches that are old before comitting (also it appears patch-ab was not added last time?). Thanks begin 664 update.tgz M'XL(`!&6$#@``^U9ZW.B2!#/5_DK^A*K-LD&&!Z">NO6&B$Y*SY28G;OPU9Y M"(-2(G@\8O92^=^O030FFU3NZDKWJI9?D0`S/=T],_T:Z9HSZK@>/=@A!$(4 M188#`)&(2GI'D/R>-@H5`)4061`D0O!9$!11/`"R2Z762*+8#`$.S/DX=*-9 M\!K=T7A*PW$0Q,P1 M?*9AE-*$],_$#:F=]H/,"=BEF3$%*Z1X6S6G$!1H+D+7`Z%6JR'1EVDPWW2N MH07)!)KY'L"']6Y\6D[=*/8H9P7SC\P1CBY?A)2>&UI]I33OTYC?:,=W<[W/ M;D'@*IE$GE1YB8`@UT6Q+A-8T)B&H-\MH(P,&:UM#'O-KMXH;;BP,B=R->;Z MZO*%#J;5'.J7_4%;-QHE%,YTF\90'XR,]C!MF<;QHL[SR^62B[QDP@7AA#.3 M+0WA*U/:IDHB;D9#GWHI*;](QKSG^LD=;]-;ZO$3R^(S%2_:G91]^7ZM[P.' M=LM-_H+R_7F[=S-L=XS19WVP;F90KW9OB'_ZH%%Z:3D9YORFW=%&FGZM][1T M,F8TKY?OK_N#H:&U!P^Y"FDSP_3ZH^MFZZIYB>OA!6@L@8/VXCON)`G-S&1\ M:M$H,L-OS(VACRZ[S2N](3!?!E?&H-4HH>;XF+%%$:N5?>"CT&(ED=F>0`.- M88PK$+M>Q.(V<`)'.!&#PA%*H#;^6^+VW>8VB%I,S"BU4K#-V$1>S"*D[%HS M6F=*E@W;LI\L%OR:;@=*Y/C-$&"G010W7*FJL(D_\X.ESSIH<^/(IIZSXC]. M7,_^1[Q31V(8.V!='P.-Y^&@3^5[O?5;_P$&U,&I9,N1,=!THS4`TW_*=+-8 M=F!E$YT&2XB#+3Z9-MFX7`B@M4$8S'G'"Q:+;^#.S0GE<`2]GL*Z M:,(*Q)V4+D(7^E8,H@BD5A?4NJ2N*C>693>DSZFJ=3&G.GV*]!U4^4RM0?:: M,L'7*@%\8AF`UD6G>6F\;Y18#;.FT>[W&E\/R\?Y\\G7PZ"P=>#-BL:1@W@/R>`Q(?U!K&@#' M\7CAR-,MTC]0(%YM3>\-4>H[?2.G?'S>'AHG\*@]'%]>=[#AT[M42S!BTYK! M'$T.QA0O#S.Y(I/9&*(`EA2FYBWF;6IZ,*?S(/R6YO&0[C0M/_/_\2YDO.'_ M`I$J&_^7*FKF_Y)0^/\^D+IG*RM]7_)^D=3)EO>O"+^GP5/5J[Y?%<^JU97O M/W'D;G^H`:NUNWBD&'7UWLW*K8Y`]\WQZN`)^5$/4N]:%;$0)8O4Q9E?D'*+ M6[-_,QQEO)"GWKE8/:]97B"O!=;#B]CU)UFA;%/'3+P8\`@1NW,:)'%&N,W1 MN!J=]_O#AH@8(_?GH_VC@+ M[!S/XK^U"QEOU7^RI*SK?R*)J_A/*D7\WP?2$"U9-7+'62\F`"S_I,<$D%,^ M)\+J3WH]`TC*F2P^5G_IJ[R.EVE86O\6<;BIV+CIX9,.W[72IO?8Y/@8VV`T MRB/G:+1-^&'UT]G"Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EAAA14E71 for ; Sat, 23 Oct 1999 06:47:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88842; Sat, 23 Oct 1999 06:47:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id C93F114C99 for ; Fri, 22 Oct 1999 18:21:55 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11epsX-0000Ma-00; Fri, 22 Oct 1999 18:21:54 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id VAA05471; Fri, 22 Oct 1999 21:21:50 -0400 (EDT) (envelope-from will) Message-Id: <199910230121.VAA05471@shadow.blackdawn.com> Date: Fri, 22 Oct 1999 21:21:50 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14468: new port: misc/makeself Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14468 >Category: ports >Synopsis: new port: misc/makeself >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:20 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: makeself is a very simple shell script that creates self-extracting shell archive with an embedded tarball, and allows the user to specify a setup program to run upon completion, much like windoze's winzip. >How-To-Repeat: Use the shar below to import the makeself port into the tree. >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # makeself # makeself/files # makeself/files/md5 # makeself/pkg # makeself/pkg/PLIST # makeself/pkg/DESCR # makeself/pkg/COMMENT # makeself/Makefile # echo c - makeself mkdir -p makeself > /dev/null 2>&1 echo c - makeself/files mkdir -p makeself/files > /dev/null 2>&1 echo x - makeself/files/md5 sed 's/^X//' >makeself/files/md5 << 'END-of-makeself/files/md5' XMD5 (makeself.sh) = 0903c3a6ade28fcd171b54d6a33ad578 END-of-makeself/files/md5 echo c - makeself/pkg mkdir -p makeself/pkg > /dev/null 2>&1 echo x - makeself/pkg/PLIST sed 's/^X//' >makeself/pkg/PLIST << 'END-of-makeself/pkg/PLIST' Xbin/makeself END-of-makeself/pkg/PLIST echo x - makeself/pkg/DESCR sed 's/^X//' >makeself/pkg/DESCR << 'END-of-makeself/pkg/DESCR' Xmakeself is a (very small) shell script that makes neat Xself-extracting shell scripts, and allows you to specify a "setup" Xcommand to execute upon finishing. X XIt's sorta like the Windows winzip self-extracting archives. X XWWW: http://www.lokigames.com/~megastep/makeself/ XAuthor: Stéphane Peter X X- Will END-of-makeself/pkg/DESCR echo x - makeself/pkg/COMMENT sed 's/^X//' >makeself/pkg/COMMENT << 'END-of-makeself/pkg/COMMENT' XA neat script to make self-extracting archives. END-of-makeself/pkg/COMMENT echo x - makeself/Makefile sed 's/^X//' >makeself/Makefile << 'END-of-makeself/Makefile' X# New ports collection makefile for: makeself X# Version required: 1.1 X# Date created: 22 Oct 1999 X# Whom: Will Andrews X# X# $FreeBSD$ X# X XDISTNAME= makeself XPKGNAME= makeself-1.1 XCATEGORIES= misc XMASTER_SITES= http://www.lokigames.com/~megastep/makeself/ XEXTRACT_SUFX= .sh X XMAINTAINER= andrews@technologist.com X XEXTRACT_CMD= ${CP} XEXTRACT_BEFORE_ARGS= XEXTRACT_AFTER_ARGS= ${WRKDIR} XNO_BUILD= yes X Xdo-install: X @${INSTALL_SCRIPT} ${WRKDIR}/makeself.sh ${PREFIX}/bin/makeself X X.include END-of-makeself/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F21014E96 for ; Sat, 23 Oct 1999 06:47:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88852; Sat, 23 Oct 1999 06:47:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id 1862814E4A for ; Fri, 22 Oct 1999 18:39:27 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11eq9V-0000lC-00; Fri, 22 Oct 1999 18:39:27 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id VAA06084; Fri, 22 Oct 1999 21:39:21 -0400 (EDT) (envelope-from will) Message-Id: <199910230139.VAA06084@shadow.blackdawn.com> Date: Fri, 22 Oct 1999 21:39:21 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14469: remove port: deskutils/recycler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14469 >Category: ports >Synopsis: remove port: deskutils/recycler >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:21 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: Kill deskutils/recycler, as the distfile is no longer on its source site. Furthermore, an investigation of the website seems to indicate the author has decided to dispose of the program >How-To-Repeat: http://www.aaa-int.or.jp/~jfactory/, note the software up there. Also note "recycler" is not in there. "recycler"'s distfile does not appear to be in the dist/ directory in any name or form. >Fix: Remove the deskutils/recycler port from the tree. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D605A14DBB for ; Sat, 23 Oct 1999 06:47:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88833; Sat, 23 Oct 1999 06:47:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id F0DF214EB9 for ; Fri, 22 Oct 1999 16:11:00 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id A95539B22; Fri, 22 Oct 1999 19:10:59 -0400 (EDT) Message-Id: <19991022231059.A95539B22@pawn.primelocation.net> Date: Fri, 22 Oct 1999 19:10:59 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14467: New port: editors/xenon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14467 >Category: ports >Synopsis: New port: editors/xenon >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:20 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: New port: editors/xenon Xenon is a simple X-based text editor which is very handy for things like editing source code, system configuration files, scripts and whatever else is an ASCII text file. Xenon is based on libXpm instead of gtk+/qt/motif/etc. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # xenon # xenon/Makefile # xenon/files # xenon/files/md5 # xenon/pkg # xenon/pkg/PLIST # xenon/pkg/COMMENT # xenon/pkg/DESCR # xenon/patches # xenon/patches/patch-aa # xenon/patches/patch-ab # xenon/patches/patch-ac # xenon/patches/patch-ad # echo c - xenon mkdir -p xenon > /dev/null 2>&1 echo x - xenon/Makefile sed 's/^X//' >xenon/Makefile << 'END-of-xenon/Makefile' X# New ports collection makefile for: xenon X# Version required: 0.6.4 X# Date created: 22 October 1999 X# Whom: Chris D. Faulhaber X# X# $FreeBSD$ X# X XDISTNAME= xenon-0.6.4 XCATEGORIES= editors XMASTER_SITES= ftp://ftp.proximity.com.au/pub/xenon/ X XMAINTAINER= jedgar@fxp.org X XLIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm X XUSE_X_PREFIX= yes XUSE_GMAKE= yes X XMAN1= xe.1 X Xpre-patch: X @${CP} ${WRKSRC}/makefiles/Makefile.Linux ${WRKSRC}/makefiles/Makefile.FreeBSD X Xdo-configure: X @cd ${WRKSRC}; ${LN} -sf makefiles/Makefile.FreeBSD Makefile X Xdo-install: X @${INSTALL_PROGRAM} ${WRKSRC}/xe ${PREFIX}/bin X @${INSTALL_MAN} ${WRKSRC}/xe.1 ${PREFIX}/man/man1 X @${MKDIR} ${PREFIX}/share/examples/xe X @${INSTALL_DATA} ${WRKSRC}/xerc ${PREFIX}/share/examples/xe/sample.xerc X X.include END-of-xenon/Makefile echo c - xenon/files mkdir -p xenon/files > /dev/null 2>&1 echo x - xenon/files/md5 sed 's/^X//' >xenon/files/md5 << 'END-of-xenon/files/md5' XMD5 (xenon-0.6.4.tar.gz) = 8607509ecc1c618769fcc57c7daa408f END-of-xenon/files/md5 echo c - xenon/pkg mkdir -p xenon/pkg > /dev/null 2>&1 echo x - xenon/pkg/PLIST sed 's/^X//' >xenon/pkg/PLIST << 'END-of-xenon/pkg/PLIST' Xbin/xe Xshare/examples/xe/sample.xerc X@dirrm share/examples/xe END-of-xenon/pkg/PLIST echo x - xenon/pkg/COMMENT sed 's/^X//' >xenon/pkg/COMMENT << 'END-of-xenon/pkg/COMMENT' XSimple X-based text editor END-of-xenon/pkg/COMMENT echo x - xenon/pkg/DESCR sed 's/^X//' >xenon/pkg/DESCR << 'END-of-xenon/pkg/DESCR' XXenon is a simple X-based text editor which is very handy for things like Xediting source code, system configuration files, scripts and whatever else Xis an ASCII text file. X XFeatures include: X * Speed, simplicity and low memory use. X * Search, substring or regular expression X * Unlimited undo/redo. X * Display of line numbers, jump to line number X * Some X resource configuration: mostly command keys, some colours X * Man page! X * Some error dialogs. X * Multiple files in separate windows. X * Open multiple files from the command line X * Run Once (only one process per uid and X connection IP number) X XWWW: http://www.proximity.com.au/~ben/xenon.html X X- Chris D. Faulhaber Xjedgar@fxp.org END-of-xenon/pkg/DESCR echo c - xenon/patches mkdir -p xenon/patches > /dev/null 2>&1 echo x - xenon/patches/patch-aa sed 's/^X//' >xenon/patches/patch-aa << 'END-of-xenon/patches/patch-aa' X--- Xe.C.orig Fri Oct 22 00:20:19 1999 X+++ Xe.C Fri Oct 22 18:45:53 1999 X@@ -41,9 +41,11 @@ X // Home directory lookup function. X // X X+#ifndef __FreeBSD__ X extern "C" { X extern char* cuserid(char*); X } X+#endif X X void X getHomeDir(char* pathname) X@@ -57,8 +59,10 @@ X X // $$$ cuserid _should_ be in unistd.h, but egcs X // complains that it isn't declared X- username = (char*)cuserid(NULL); X+#ifndef __FreeBSD__ X+ username = (char*)cuserid(NULL) X if (username == 0) X+#endif X username = getlogin(); X X if (username) END-of-xenon/patches/patch-aa echo x - xenon/patches/patch-ab sed 's/^X//' >xenon/patches/patch-ab << 'END-of-xenon/patches/patch-ab' X--- makefiles/Makefile.FreeBSD.orig Fri Oct 22 00:20:20 1999 X+++ makefiles/Makefile.FreeBSD Fri Oct 22 18:36:19 1999 X@@ -6,18 +6,18 @@ X X include makefiles/Makefile.common X X-CC = c++ X+CC = $(CXX) X #CC = /usr/local/bin/c++ X X-OPTIMIZER = -O2 X+#OPTIMIZER = -O2 X X #ARCH = -b i586-pc-linux-gnulibc1 X ARCH = X X # For making a dso, add -fPIC X-CCFLAGS = $(OPTIMIZER) -pipe -Wall -fno-exceptions X+CCFLAGS = $(CXXFLAGS) X X-INCLUDES = -I$(XEINC) X+INCLUDES = -I$(XEINC) -I/usr/X11R6/include X LIBS = -L/usr/X11R6/lib -lXpm -lX11 X X backup: END-of-xenon/patches/patch-ab echo x - xenon/patches/patch-ac sed 's/^X//' >xenon/patches/patch-ac << 'END-of-xenon/patches/patch-ac' X--- KrPool.C.orig Fri Oct 22 00:20:19 1999 X+++ KrPool.C Fri Oct 22 18:47:08 1999 X@@ -3,7 +3,6 @@ X #include X #include X #include X-#include X #include X X const uint KrPool::BUFLEN; END-of-xenon/patches/patch-ac echo x - xenon/patches/patch-ad sed 's/^X//' >xenon/patches/patch-ad << 'END-of-xenon/patches/patch-ad' X--- XeApp.C.orig Fri Oct 22 00:20:19 1999 X+++ XeApp.C Fri Oct 22 18:42:42 1999 X@@ -165,7 +165,7 @@ X #endif X gLocalIPAddr = 0; X X- if (getsockname(ConnectionNumber(gDisplay), &saddr, &len) != -1) X+ if (getsockname(ConnectionNumber(gDisplay), &saddr, (int *)&len) != -1) X if (saddr.sa_family == AF_INET) X gLocalIPAddr = ntohl(((sockaddr_in*)&saddr)->sin_addr.s_addr); X END-of-xenon/patches/patch-ad exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 97AF914CB1 for ; Sat, 23 Oct 1999 06:47:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88870; Sat, 23 Oct 1999 06:47:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id B1AAE14C36 for ; Fri, 22 Oct 1999 19:23:47 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11eqqO-0001rV-00; Fri, 22 Oct 1999 19:23:45 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id WAA07479; Fri, 22 Oct 1999 22:23:35 -0400 (EDT) (envelope-from will) Message-Id: <199910230223.WAA07479@shadow.blackdawn.com> Date: Fri, 22 Oct 1999 22:23:35 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14471: remove port: deskutils/xcalendar Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14471 >Category: ports >Synopsis: remove port: deskutils/xcalendar >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:21 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: Kill deskutils/xcalendar. The main distfile no longer exists on its master site, and I've been unable to find any copies on sunsite et al. >How-To-Repeat: Try finding xcalendar on the master site, or elsewhere. >Fix: Remove the deskutils/xcalendar port from the tree. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FB7E14F17 for ; Sat, 23 Oct 1999 06:47:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88889; Sat, 23 Oct 1999 06:47:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id 4AA5B14C85 for ; Fri, 22 Oct 1999 19:34:53 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11er19-00028E-00; Fri, 22 Oct 1999 19:34:52 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id WAA08350; Fri, 22 Oct 1999 22:34:48 -0400 (EDT) (envelope-from will) Message-Id: <199910230234.WAA08350@shadow.blackdawn.com> Date: Fri, 22 Oct 1999 22:34:48 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14473: update port devel/fpp [fix broken link] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14473 >Category: ports >Synopsis: update port devel/fpp [fix broken link] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:22 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: devel/fpp has been broken for awhile simply because the extension on the tarball was wrong. Here's the (simple) diff. I tested it, it compiles, and seems to work. >How-To-Repeat: Apply the diff to the current port. >Fix: --- Makefile Thu Aug 26 00:22:25 1999 +++ Makefile.new Fri Oct 22 22:27:52 1999 @@ -10,6 +10,7 @@ PKGNAME= fpp-1.1 CATEGORIES= devel MASTER_SITES= ftp://ftp.netlib.org/fortran/ +EXTRACT_SUFX= .tgz MAINTAINER= vazquez@iqm.unicamp.br >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C390A14F25 for ; Sat, 23 Oct 1999 06:47:23 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88898; Sat, 23 Oct 1999 06:47:23 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id 3311715001 for ; Fri, 22 Oct 1999 19:52:09 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11erHq-0002Wk-00; Fri, 22 Oct 1999 19:52:06 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id WAA09061; Fri, 22 Oct 1999 22:52:03 -0400 (EDT) (envelope-from will) Message-Id: <199910230252.WAA09061@shadow.blackdawn.com> Date: Fri, 22 Oct 1999 22:52:03 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14474: remove port: devel/gcc11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14474 >Category: ports >Synopsis: remove port: devel/gcc11 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:22 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: gcc 2.6.3 is far outdated now (FreeBSD's default is 2.7.2.3 in -STABLE, and egcs 1.1.2 / gcc 2.91.66 in -CURRENT), what's the point of keeping this port? Plus, the distsite's files (in that particular directory) haven't been modified since 1995. This port should have been antiquated along with FreeBSD 2.x. >How-To-Repeat: Visit the master site for gcc11. >Fix: Nuke the devel/gcc11 port. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20D3214F08 for ; Sat, 23 Oct 1999 06:47:23 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88907; Sat, 23 Oct 1999 06:47:23 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from germanium.xtalwind.net (germanium.xtalwind.net [205.160.242.5]) by hub.freebsd.org (Postfix) with ESMTP id 2902015001 for ; Fri, 22 Oct 1999 19:52:43 -0700 (PDT) (envelope-from jack@germanium.xtalwind.net) Received: (from jack@localhost) by germanium.xtalwind.net (8.9.3/8.9.3) id WAA95457; Fri, 22 Oct 1999 22:52:43 -0400 (EDT) Message-Id: <199910230252.WAA95457@germanium.xtalwind.net> Date: Fri, 22 Oct 1999 22:52:43 -0400 (EDT) From: jack@germanium.xtalwind.net Reply-To: jack@germanium.xtalwind.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14475: make of database/pgaccess fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14475 >Category: ports >Synopsis: make of database/pgaccess fails >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:23 PDT 1999 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 3.3-STABLE i386 >Organization: >Environment: 3.3-RELEASE, 3.3-STABLE, 4.0-CURRENT >Description: Missing '=' in MASTER_SITES line Distribution file appears to have changed, it is newer than files/md5 >How-To-Repeat: >Fix: diff -ruN pgaccess/Makefile pgaccess.fixed/Makefile --- pgaccess/Makefile Sun Oct 10 18:08:02 1999 +++ pgaccess.fixed/Makefile Fri Oct 22 09:47:15 1999 @@ -8,7 +8,7 @@ DISTNAME= pgaccess-0.98 CATEGORIES= databases -MASTER_SITES ftp://ftp.flex.ro/pub/pgaccess/ +MASTER_SITES= ftp://ftp.flex.ro/pub/pgaccess/ MAINTAINER= andreas@FreeBSD.org diff -ruN pgaccess/files/md5 pgaccess.fixed/files/md5 --- pgaccess/files/md5 Sun Oct 10 18:08:04 1999 +++ pgaccess.fixed/files/md5 Fri Oct 22 10:03:50 1999 @@ -1 +1 @@ -MD5 (pgaccess-0.98.tar.gz) = d8363b39df7fd4645a609a7759c126cc +MD5 (pgaccess-0.98.tar.gz) = ae3f8262f7d14cbda9144b13206524f0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D11314F46 for ; Sat, 23 Oct 1999 06:47:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88918; Sat, 23 Oct 1999 06:47:23 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id EB90D14ED3 for ; Fri, 22 Oct 1999 20:01:01 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11erQQ-0002kG-00; Fri, 22 Oct 1999 20:00:59 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id XAA10061; Fri, 22 Oct 1999 23:00:55 -0400 (EDT) (envelope-from will) Message-Id: <199910230300.XAA10061@shadow.blackdawn.com> Date: Fri, 22 Oct 1999 23:00:55 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14476: update port devel/jam [fix broken master site] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14476 >Category: ports >Synopsis: update port devel/jam [fix broken master site] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:23 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: Apparently the jam site has changed its name. There is no change in the distfile, so no md5 checksum update. >How-To-Repeat: Try getting the tarball off ftp.perforce.com. It's not there. >Fix: --- Makefile Thu Aug 26 00:22:26 1999 +++ Makefile.new Fri Oct 22 22:54:54 1999 @@ -8,7 +8,7 @@ DISTNAME= jam-2.2 CATEGORIES= devel -MASTER_SITES= ftp://ftp.perforce.com/pub/jam/ +MASTER_SITES= ftp://ftp1.perforce.com/pub/jam/ MAINTAINER= hsu@freebsd.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DCD0F14D23 for ; Sat, 23 Oct 1999 06:47:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88927; Sat, 23 Oct 1999 06:47:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2EB0914CF2; Fri, 22 Oct 1999 22:44:08 -0700 (PDT) Message-Id: <19991023054408.2EB0914CF2@hub.freebsd.org> Date: Fri, 22 Oct 1999 22:44:08 -0700 (PDT) From: pfgiffun@bachue.usc.unal.edu.co To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14477: Update to the URL in the crosssco port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14477 >Category: ports >Synopsis: Update to the URL in the crosssco port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:24 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 3.2R >Organization: U. Nacional de Colombia >Environment: >Description: cygnus has changed the location of newlib. Other cross development ports (crossgo32, for example) may be affected as well. >How-To-Repeat: http://www.freebsd.org/~fenner/portsurvey/devel.html#crosssco >Fix: Please replace ftp://ftp.cygnus.com/pub/newlib/ with ftp://sourceware.cygnus.com/pub/newlib/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 6:48:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EB0F14F8A for ; Sat, 23 Oct 1999 06:47:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA88936; Sat, 23 Oct 1999 06:47:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id CB7641501F for ; Sat, 23 Oct 1999 01:11:43 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) for FreeBSD-gnats-submit@FreeBSD.ORG id 11erEu-0002R4-00; Fri, 22 Oct 1999 19:49:05 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id WAA08826; Fri, 22 Oct 1999 22:48:44 -0400 (EDT) (envelope-from will) Message-Id: <199910230248.WAA08826@shadow.blackdawn.com> Date: Fri, 22 Oct 1999 22:48:44 -0400 (EDT) From: Will Andrews Reply-To: Will Andrews To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/14478: status on port devel/gaa - feedback please. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14478 >Category: ports >Synopsis: status on port devel/gaa - feedback please. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 06:47:24 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Will Andrews >Release: FreeBSD 3.3-STABLE i386 >Organization: none >Environment: FreeBSD shadow.blackdawn.com 3.3-STABLE FreeBSD 3.3-STABLE #0: Mon Oct 4 19:40:23 EDT 1999 root@shadow.blackdawn.com:/usr/src/sys/compile/SHADOW i386 >Description: gaa's website seems to be gone now, and a search on yahoo/altavista/etc. turns up nothing. could the maintainer of this port account for its whereabouts/status, etc.? I'm not going to suggest nuking the port unless it cannot be found. (its description sounds nice :) >How-To-Repeat: Search around for gaa. >Fix: Feedback from maintainer needed first. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 9:10: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 45ABF14C1B for ; Sat, 23 Oct 1999 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA96832; Sat, 23 Oct 1999 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0BBD514DB3; Sat, 23 Oct 1999 09:01:56 -0700 (PDT) Message-Id: <19991023160156.0BBD514DB3@hub.freebsd.org> Date: Sat, 23 Oct 1999 09:01:56 -0700 (PDT) From: igor@zynaps.ru To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14480: new port: p5-AppConfig-1.52 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14480 >Category: ports >Synopsis: new port: p5-AppConfig-1.52 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 09:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Igor Vinokurov >Release: 3.3-STABLE >Organization: >Environment: >Description: From the README file for AppConfig Version 1.52: AppConfig is a Perl5 module for managing application configuration information. It maintains the state of any number of variables and provides methods for parsing configuration files and command line arguments. Variables values may be set via configuration files. Variables may be flags (On/Off), take a single value, or take multiple values stored as a a list or hash. The number of arguments a variable expects is determined by its configuration when defined. -- Igor igor@zynaps.ru >How-To-Repeat: >Fix: begin 644 p5-AppConfig.tar.gz M'XL(`"O($3@``^U8^V_:2!#.K_BO&"F-U$J-\0/;%ZZI0L')H8:';)+<22>A M!2^PPJ_ZD1ZM^-]O=B$$2I2'CE"IYT]">&=G=\<[.]]^$!O'M3BN1^&(CB5BJ)KZ*96-.4`C%>*9P-YFI$$X("- MH^0QOZ\32OU]!+1?Q.OY'S&?IKL_!<_/OVY6-`/=-$-7B_SO`P_D/_!VO/&J MHIB5RB/YMZP?\J]KBG8`RF[#>!C_\_RW&@:\79V`8U4V-!DW1!Y_>P>GF"_3 MTRSE1%%-0NEOPY%IJ`.-T`$9D>&),I!^=O@%_B,VZC^>OHH&>,']KRJFR?E? M4XR"__>!K?S7.ZV6W>[M M#&C"6[K7.+?%S/CN9P0##HAG<,O(@2ZX-6GB+F48^&:?PMA.6.Z/1 MN_>0D2G%7>/AX7Z)V=\#ABSL0>YG++ZSI[@+44(](!CU(DR,.,VX^X2D$QEZ MN%/WF[-Z"?2[VRB@_\1TB";,E4W`>_!K;XOWO9='>J_I[6?Y9IK?2_H7#]KZNJ6O#_ M/N"S03GF]%U.64;[_+%\=-2UGT<'957IT..`^GYWF5WEKYPQ#E2Z$L7 MX5?$"\=(H M$3+`]U$H<`T0+$\"EU+5TOHAD0Y7@C"A7W*&XJ1:*I6X.,2N!I=L0_PAF2W, M)4V'SC"+N#Q13TY.T.5F$@6BJ\1E!5RS,)KFJ.#@PZ;"^"@=2E(#+Z-VK66? MEC;_HY2ZGR\6]O78%EWU6L^^Z#A-VSTM>?26^B#J1&K5W)[M]-UFC_>\^;[6 M[HM2J7=K[?FZ6]^]^M1H.F+QTJ MF''+O"2_+;O@-UV2O.CX3@S2*KJ<#3UX\_W&^>PZ]?GO^.C:/;M]/<>G>J=] MWKRX?0YW)")W+R5)9N'0SST*'P:I)_-C)@?3CX5X+%"@0($"!0H4 .*%#@I^!?['%#7P`H``!W ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 9:10:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EFEE14D69 for ; Sat, 23 Oct 1999 09:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA96841; Sat, 23 Oct 1999 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E93F614BFD; Sat, 23 Oct 1999 09:06:21 -0700 (PDT) Message-Id: <19991023160621.E93F614BFD@hub.freebsd.org> Date: Sat, 23 Oct 1999 09:06:21 -0700 (PDT) From: rod@oscentral.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/14481: Gedit Upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14481 >Category: ports >Synopsis: Gedit Upgrade >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 09:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Rod Taylor >Release: 3.3-stable >Organization: >Environment: >Description: Gedit has been upgraded to 0.5.5 from 0.5.4 Many bugfixes and new features... Not to mention it now works properly with the system (patch to /usr/ports/gedit) >How-To-Repeat: >Fix: diff -ruN gedit.old/Makefile gedit/Makefile --- gedit.old/Makefile Sat Oct 23 10:29:30 1999 +++ gedit/Makefile Sat Oct 23 11:41:00 1999 @@ -6,12 +6,10 @@ # $FreeBSD: ports/editors/gedit/Makefile,v 1.8 1999/10/18 02:24:18 nakai Exp $ # -DISTNAME= gedit-0.5.4 +DISTNAME= gedit-0.5.5 CATEGORIES= editors gnome MASTER_SITES= ${MASTER_SITE_SUNSITE} \ - http://gedit.pn.org/ \ - http://reviewboard.com/gedit/ \ - ftp://reviewboard.com/pub/gedit/ + http://gedit.pn.org/tar/ MASTER_SITE_SUBDIR= X11/gtkbuffet/apps/gedit MAINTAINER= andy@icc.surw.chel.su diff -ruN gedit.old/files/md5 gedit/files/md5 --- gedit.old/files/md5 Sat Oct 23 10:29:30 1999 +++ gedit/files/md5 Sat Oct 23 10:34:43 1999 @@ -1 +1 @@ -MD5 (gedit-0.5.4.tar.gz) = 951cd7f6f6138ae6da027c7b4f59f0d7 +MD5 (gedit-0.5.5.tar.gz) = 16d9991434eaacffff113b517ef0a751 diff -ruN gedit.old/pkg/PLIST gedit/pkg/PLIST --- gedit.old/pkg/PLIST Sat Oct 23 10:29:30 1999 +++ gedit/pkg/PLIST Sat Oct 23 11:19:13 1999 @@ -35,6 +35,7 @@ share/gnome/help/gedit/no/topic.dat share/gnome/mime-info/gedit.keys share/gnome/pixmaps/gnome-gedit.png +share/gnome/pixmaps/gedit-logo.png share/locale/cs/LC_MESSAGES/gedit.mo share/locale/de/LC_MESSAGES/gedit.mo share/locale/es/LC_MESSAGES/gedit.mo >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 10:50: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 784BE14CA1 for ; Sat, 23 Oct 1999 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA02417; Sat, 23 Oct 1999 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 21BEB14C3E for ; Sat, 23 Oct 1999 10:40:45 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id 44A849B25; Sat, 23 Oct 1999 13:40:42 -0400 (EDT) Message-Id: <19991023174042.44A849B25@pawn.primelocation.net> Date: Sat, 23 Oct 1999 13:40:42 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14482: Update port: archivers/bzip2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14482 >Category: ports >Synopsis: Update port: archivers/bzip2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 10:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update port: archivers/bzip2 Remove the following MASTER_SITES (they both reference sourceware.cygnus.com as the new homepage for bzip2, and both do not have the bzip2 source anymore): http://www.bzip2.org/bzip2/v095/ http://www.muraroa.demon.co.uk/ Reomve the following MASTER_SITES (the latest version of bzip2 is has is 0.9.0): http://www.digistar.com/bzip2/ >How-To-Repeat: See http://www.freebsd.org/~fenner/portsurvey/archivers.html#bzip2 >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/bzip2/Makefile,v retrieving revision 1.19 diff -u -u -r1.19 Makefile --- Makefile 1999/09/24 22:43:03 1.19 +++ Makefile 1999/10/23 17:24:48 @@ -9,10 +9,7 @@ DISTNAME= bzip2-0.9.5d CATEGORIES= archivers -MASTER_SITES= ftp://sourceware.cygnus.com/pub/bzip2/v095/ \ - http://www.bzip2.org/bzip2/v095/ \ - http://www.muraroa.demon.co.uk/ \ - http://www.digistar.com/bzip2/ +MASTER_SITES= ftp://sourceware.cygnus.com/pub/bzip2/v095/ MAINTAINER= obrien@FreeBSD.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 10:50: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E50114D03 for ; Sat, 23 Oct 1999 10:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA02431; Sat, 23 Oct 1999 10:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 9A57F14C3E for ; Sat, 23 Oct 1999 10:49:08 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id 43A9E9B22; Sat, 23 Oct 1999 13:49:05 -0400 (EDT) Message-Id: <19991023174905.43A9E9B22@pawn.primelocation.net> Date: Sat, 23 Oct 1999 13:49:05 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14483: Update port: archivers/rar Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14483 >Category: ports >Synopsis: Update port: archivers/rar >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 10:50:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update port: archivers/rar The original MASTER_SITES dir: ftp://ftp.rarsoft.com/pub/rar/ no longer exists. Their downloads page now references: ftp://rarsoft.ti.sk/pub/rar/ >How-To-Repeat: http://www.freebsd.org/~fenner/portsurvey/archivers.html#rar >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/rar/Makefile,v retrieving revision 1.19 diff -u -u -r1.19 Makefile --- Makefile 1999/08/31 06:40:17 1.19 +++ Makefile 1999/10/23 17:39:44 @@ -10,7 +10,7 @@ DISTNAME= rarbsd PKGNAME= rar-2.02 CATEGORIES= archivers -MASTER_SITES= ftp://ftp.rarsoft.com/pub/rar/ \ +MASTER_SITES= ftp://rarsoft.ti.sk/pub/rar/ \ ftp://ftp.cdrom.com/pub/sac/pack/ EXTRACT_SUFX= .sfx >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 11:10: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C32714BC5 for ; Sat, 23 Oct 1999 11:10:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA03584; Sat, 23 Oct 1999 11:10:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id E626914BC5 for ; Sat, 23 Oct 1999 11:09:53 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id 3336D9B22; Sat, 23 Oct 1999 14:09:53 -0400 (EDT) Message-Id: <19991023180953.3336D9B22@pawn.primelocation.net> Date: Sat, 23 Oct 1999 14:09:53 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14484: Update port: editors/gxedit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14484 >Category: ports >Synopsis: Update port: editors/gxedit >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 11:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update port: editors/gxedit The original MASTER_SITES: http://devplanet.fastethernet.net/ no longer has the GXedit pages, but points to: http://mirrors.darkelf.net/GXedit/ http://www.linuxbox.com/~drow/GXedit/ >How-To-Repeat: See: http://www.freebsd.org/~fenner/portsurvey/editors.html#gxedit http://devplanet.fastethernet.net/ >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/editors/gxedit/Makefile,v retrieving revision 1.22 diff -u -u -r1.22 Makefile --- Makefile 1999/08/25 05:43:52 1.22 +++ Makefile 1999/10/23 18:02:08 @@ -9,7 +9,8 @@ DISTNAME= GXedit1.23 PKGNAME= gxedit-1.23 CATEGORIES= editors -MASTER_SITES= http://devplanet.fastethernet.net/ +MASTER_SITES= http://mirrors.darkelf.net/GXedit/ \ + http://www.linuxbox.com/~drow/GXedit/ MAINTAINER= dom@myrddin.demon.co.uk >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 11:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A375214C2C for ; Sat, 23 Oct 1999 11:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA05384; Sat, 23 Oct 1999 11:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id B392414C2C for ; Sat, 23 Oct 1999 11:35:16 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id A4B289B22; Sat, 23 Oct 1999 14:35:14 -0400 (EDT) Message-Id: <19991023183514.A4B289B22@pawn.primelocation.net> Date: Sat, 23 Oct 1999 14:35:14 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14485: Update port: emulators/aftp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14485 >Category: ports >Synopsis: Update port: emulators/aftp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 11:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update port: emulators/aftp The original MASTER_SITES: ftp://ftp.apple.asimov.net/pub/apple_II/incoming/ no longer holds the distfile...it has been moved to: ftp://ftp.apple.asimov.net/pub/apple_II/utility/ >How-To-Repeat: See: http://www.freebsd.org/~fenner/portsurvey/emulators.html#aftp >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/emulators/aftp/Makefile,v retrieving revision 1.4 diff -u -u -r1.4 Makefile --- Makefile 1999/08/25 05:49:07 1.4 +++ Makefile 1999/10/23 18:11:08 @@ -10,7 +10,7 @@ DISTNAME= aftp PKGNAME= aftp-1.0 CATEGORIES= emulators -MASTER_SITES= ftp://ftp.apple.asimov.net/pub/apple_II/incoming/ +MASTER_SITES= ftp://ftp.apple.asimov.net/pub/apple_II/utility/ EXTRACT_SUFX= .tgz MAINTAINER= jsutton@webnet.com.au >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 14:50:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1814114C22; Sat, 23 Oct 1999 14:50:33 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA22332; Sat, 23 Oct 1999 14:50:33 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Sat, 23 Oct 1999 14:50:33 -0700 (PDT) From: Message-Id: <199910232150.OAA22332@freefall.freebsd.org> To: watanabe@zlab.phys.nagoya-u.ac.jp, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14408: Update port: ja-dvipsk-* (japanese/dvipsk-*) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: ja-dvipsk-* (japanese/dvipsk-*) State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Sat Oct 23 14:50:14 PDT 1999 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 18: 2:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FEFE14EA1; Sat, 23 Oct 1999 18:02:08 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA06936; Sat, 23 Oct 1999 18:02:08 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Sat, 23 Oct 1999 18:02:08 -0700 (PDT) From: Message-Id: <199910240102.SAA06936@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/14461: irc/zircon update to 1.18.224 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: irc/zircon update to 1.18.224 Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: cpiazza Responsible-Changed-When: Sat Oct 23 18:01:56 PDT 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 18: 3:46 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9725F14EA1; Sat, 23 Oct 1999 18:03:45 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA07048; Sat, 23 Oct 1999 18:03:45 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Sat, 23 Oct 1999 18:03:45 -0700 (PDT) From: Message-Id: <199910240103.SAA07048@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/14482: Update port: archivers/bzip2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: archivers/bzip2 Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: cpiazza Responsible-Changed-When: Sat Oct 23 18:03:33 PDT 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 18: 4:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9241414EA1; Sat, 23 Oct 1999 18:04:10 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA07125; Sat, 23 Oct 1999 18:04:10 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Sat, 23 Oct 1999 18:04:10 -0700 (PDT) From: Message-Id: <199910240104.SAA07125@freefall.freebsd.org> To: cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, ache@FreeBSD.org Subject: Re: ports/14483: Update port: archivers/rar Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: archivers/rar Responsible-Changed-From-To: freebsd-ports->ache Responsible-Changed-By: cpiazza Responsible-Changed-When: Sat Oct 23 18:04:03 PDT 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 18:38:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from area51.fremont.ca.us (adsl-63-195-147-14.dsl.scrm01.pacbell.net [63.195.147.14]) by hub.freebsd.org (Postfix) with ESMTP id 4DB1914CE5 for ; Sat, 23 Oct 1999 18:38:11 -0700 (PDT) (envelope-from mharo@area51.fremont.ca.us) Received: (from mharo@localhost) by area51.fremont.ca.us (8.9.3/8.9.2) id SAA35683; Sat, 23 Oct 1999 18:37:53 -0700 (PDT) (envelope-from mharo) Date: Sat, 23 Oct 1999 18:37:53 -0700 From: Michael Haro To: D Tougas Cc: Manfred Antar , FreeBSD Ports Team Subject: Re: proftpd problem Message-ID: <19991023183753.A35662@area51.fremont.ca.us> Reply-To: mharo@area51.fremont.ca.us References: <1317.991023@avias.com> <4.2.1.10.19991022170330.00a9a3f0@pozo.com> <19991022233300.B9211@converging.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19991022233300.B9211@converging.net>; from D Tougas on Fri, Oct 22, 1999 at 11:33:00PM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org As of proftpd 1.2.0p5 and later, you need to edit /etc/pam.conf to add support for ftp. To do so, add the following two lines to this file: ftp auth required pam_unix.so try_first_pass ftp account required pam_unix.so try_first_pass On Fri, Oct 22, 1999 at 11:33:00PM -0600, D Tougas wrote: > I had a problem similar to this and it was because ProFTPd started > using PAM. There are notes in one of the sub-directories of the port > which explain how to fix this problem. You need to edit the PAM > config file to allow authentication for ProFTPd. > > On Fri, Oct 22, 1999 at 05:09:25PM -0700, Manfred Antar wrote: > > At 12:25 AM 10/23/99 +0400, Ilya Naumov wrote: > > >Hello, > > > > > >recently i've got the following problem with proftpd. > > > > > >this daemon (pre8) worked ok until one of recent "make world"s. after > > >that it started to deny any non-anonymous logins with the following > > >diags: > > > > > >Oct 23 00:18:11 camel proftpd[76540]: PAM(camel): Authentication failure > > >Oct 23 00:18:11 camel proftpd[76540]: USER camel: incorrect password > > >from 192.168.2.2 [192.168.2.2] to xxx.xxx.xxx.xxx:21 > > >Oct 23 00:18:00 camel proftpd[76540]: FTP session closed. > > > > > >entries in pam.conf related to ftp are correct and proftpd.conf is > > >ok too (i guess :). > > > > > >so, is it a problem connected to changes in PAM or anything else? > > >thank you. > > > > > > > I had the same problem and hacked at it for few hours. > > the only way I could get it to work was to put > > > > PersistentPasswd On > > > > in the /usr/local/etc/proftpd.conf file. > > It stopped working about last weekend. > > With the above line added it works fine. > > Manfred > > ===================== > > || mantar@pacbell.net || > > || Ph. (415) 681-6235 || > > ===================== > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-ports" in the body of the message > > -- > Damien Tougas > Converging Technology Solutions, Inc. > Phone: (780)469-1679 > Fax: (780)461-5127 > E-mail: dtougas@converging.net > http://www.converging.net > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 18:54:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from pozo.com (pozo.com [216.101.162.50]) by hub.freebsd.org (Postfix) with ESMTP id 1307014E14 for ; Sat, 23 Oct 1999 18:54:19 -0700 (PDT) (envelope-from mantar@pacbell.net) Received: from dual (dual.pozo.com [216.101.162.51]) by pozo.com (8.9.3/8.9.3) with ESMTP id SAA26917; Sat, 23 Oct 1999 18:54:14 -0700 (PDT) (envelope-from mantar@pacbell.net) Message-Id: <4.2.1.19991023185135.00a74510@pozo.com> X-Sender: null@pozo.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.1 Date: Sat, 23 Oct 1999 18:54:13 -0700 To: mharo@area51.fremont.ca.us, D Tougas From: Manfred Antar Subject: Re: proftpd problem Cc: FreeBSD Ports Team In-Reply-To: <19991023183753.A35662@area51.fremont.ca.us> References: <19991022233300.B9211@converging.net> <1317.991023@avias.com> <4.2.1.10.19991022170330.00a9a3f0@pozo.com> <19991022233300.B9211@converging.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 06:37 PM 10/23/99 -0700, Michael Haro wrote: >As of proftpd 1.2.0p5 and later, you need to edit /etc/pam.conf to add >support for ftp. To do so, add the following two lines to this file: > >ftp auth required pam_unix.so try_first_pass >ftp account required pam_unix.so try_first_pass > > >On Fri, Oct 22, 1999 at 11:33:00PM -0600, D Tougas wrote: > > I had a problem similar to this and it was because ProFTPd started > > using PAM. There are notes in one of the sub-directories of the port > > which explain how to fix this problem. You need to edit the PAM > > config file to allow authentication for ProFTPd. > > > > On Fri, Oct 22, 1999 at 05:09:25PM -0700, Manfred Antar wrote: > > > At 12:25 AM 10/23/99 +0400, Ilya Naumov wrote: > > > >Hello, > > > > > > > >recently i've got the following problem with proftpd. > > > > > > > >this daemon (pre8) worked ok until one of recent "make world"s. after > > > >that it started to deny any non-anonymous logins with the following > > > >diags: > > > > > > > >Oct 23 00:18:11 camel proftpd[76540]: PAM(camel): Authentication failure > > > >Oct 23 00:18:11 camel proftpd[76540]: USER camel: incorrect password > > > >from 192.168.2.2 [192.168.2.2] to xxx.xxx.xxx.xxx:21 > > > >Oct 23 00:18:00 camel proftpd[76540]: FTP session closed. > > > > > > > >entries in pam.conf related to ftp are correct and proftpd.conf is > > > >ok too (i guess :). > > > > > > > >so, is it a problem connected to changes in PAM or anything else? > > > >thank you. > > > > > > > > > > I had the same problem and hacked at it for few hours. > > > the only way I could get it to work was to put > > > > > > PersistentPasswd On > > > > > > in the /usr/local/etc/proftpd.conf file. > > > It stopped working about last weekend. > > > With the above line added it works fine. > > > Manfred I had the above lines in /etc/pam.conf when it stopped working. It's something else. The line : PersistentPasswd On in /usr/local/etc/proftpd.conf enables it to work again. Manfred ===================== || mantar@pacbell.net || || Ph. (415) 681-6235 || ===================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 19:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AAEE614ED0 for ; Sat, 23 Oct 1999 19:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA10639; Sat, 23 Oct 1999 19:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id AE90814E14 for ; Sat, 23 Oct 1999 19:10:38 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id 6F2479B22; Sat, 23 Oct 1999 22:10:37 -0400 (EDT) Message-Id: <19991024021037.6F2479B22@pawn.primelocation.net> Date: Sat, 23 Oct 1999 22:10:37 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14489: New port: misc/gplbp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14489 >Category: ports >Synopsis: New port: misc/gplbp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 19:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: New port: misc/gplbp This is GNU Pilot LogBook Pro, version 0.91, which is a program to allow Pilots (aviation type pilots, not palm pilots) to log all of their flight info, total up hours/landings and more. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gplbp # gplbp/Makefile # gplbp/files # gplbp/files/md5 # gplbp/pkg # gplbp/pkg/PLIST # gplbp/pkg/COMMENT # gplbp/pkg/DESCR # echo c - gplbp mkdir -p gplbp > /dev/null 2>&1 echo x - gplbp/Makefile sed 's/^X//' >gplbp/Makefile << 'END-of-gplbp/Makefile' X# New ports collection makefile for: gplbp X# Version required: 0.91 X# Date created: 23 October 1999 X# Whom: Chris D. Faulhaber X# X# $FreeBSD$ X# X XDISTNAME= gplbp-0.91 XCATEGORIES= misc XMASTER_SITES= ftp://ftp.stampede.org/skibum/ X XMAINTAINER= jedgar@fxp.org X XLIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 X XGLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config XGTK_CONFIG?= ${X11BASE}/bin/gtk12-config X XUSE_X_PREFIX= yes XUSE_GMAKE= yes XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --with-x XCONFIGURE_ENV+= CFLAGS="${CFLAGS}" \ X GLIB_CONFIG="${GLIB_CONFIG}" \ X GTK_CONFIG="${GTK_CONFIG}" X X.include END-of-gplbp/Makefile echo c - gplbp/files mkdir -p gplbp/files > /dev/null 2>&1 echo x - gplbp/files/md5 sed 's/^X//' >gplbp/files/md5 << 'END-of-gplbp/files/md5' XMD5 (gplbp-0.91.tar.gz) = eb5b032606208f59dbc5f6c400e67406 END-of-gplbp/files/md5 echo c - gplbp/pkg mkdir -p gplbp/pkg > /dev/null 2>&1 echo x - gplbp/pkg/PLIST sed 's/^X//' >gplbp/pkg/PLIST << 'END-of-gplbp/pkg/PLIST' Xbin/gplbp Xshare/gplbp/editcopy.xpm Xshare/gplbp/editcut.xpm Xshare/gplbp/editpaste.xpm Xshare/gplbp/filenew.xpm Xshare/gplbp/fileopen.xpm Xshare/gplbp/fileprint.xpm X@dirrm share/gplbp END-of-gplbp/pkg/PLIST echo x - gplbp/pkg/COMMENT sed 's/^X//' >gplbp/pkg/COMMENT << 'END-of-gplbp/pkg/COMMENT' XPilot Logbook application END-of-gplbp/pkg/COMMENT echo x - gplbp/pkg/DESCR sed 's/^X//' >gplbp/pkg/DESCR << 'END-of-gplbp/pkg/DESCR' XThis is GNU Pilot LogBook Pro, version 0.91, which is a program Xto allow Pilots (aviation type pilots, not palm pilots) to log Xall of their flight info, total up hours/landings and more. X X- Chris D. Faulhaber Xjedgar@fxp.org END-of-gplbp/pkg/DESCR exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 20:10: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D48E614FEB for ; Sat, 23 Oct 1999 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA13109; Sat, 23 Oct 1999 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id BDA0014CE5 for ; Sat, 23 Oct 1999 20:09:14 -0700 (PDT) (envelope-from jedgar@pawn.primelocation.net) Received: by pawn.primelocation.net (Postfix, from userid 1003) id CB6FB9B25; Sat, 23 Oct 1999 23:09:13 -0400 (EDT) Message-Id: <19991024030913.CB6FB9B25@pawn.primelocation.net> Date: Sat, 23 Oct 1999 23:09:13 -0400 (EDT) From: jedgar@fxp.org Reply-To: jedgar@fxp.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/14490: New port: games/krubik Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 14490 >Category: ports >Synopsis: New port: games/krubik >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 23 20:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris D. Faulhaber >Release: FreeBSD 4.0-CURRENT i386 >Organization: BUGO - BSD Users Group of Orlando >Environment: FreeBSD 4.0-CURRENT i386 >Description: New port: games/krubik This is krubik, a 3D model of the Rubik's Cube for KDE. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # krubik # krubik/Makefile # krubik/files # krubik/files/md5 # krubik/pkg # krubik/pkg/COMMENT # krubik/pkg/DESCR # krubik/pkg/PLIST # krubik/patches # krubik/patches/patch-aa # echo c - krubik mkdir -p krubik > /dev/null 2>&1 echo x - krubik/Makefile sed 's/^X//' >krubik/Makefile << 'END-of-krubik/Makefile' X# New ports collection makefile for: krubik X# Version required: 1.06 X# Date created: 23 October 1999 X# Whom: Chris D. Faulhaber X# X# $FreeBSD$ X# X XDISTNAME= krubik-1.06 XCATEGORIES= games kde XMASTER_SITES= http://www.phys.uu.nl/~eendebak/kde/ X XMAINTAINER= jedgar@fxp.org X XLIB_DEPENDS= kdecore.2:${PORTSDIR}/x11/kdelibs11 X XGNU_CONFIGURE= yes X X.include END-of-krubik/Makefile echo c - krubik/files mkdir -p krubik/files > /dev/null 2>&1 echo x - krubik/files/md5 sed 's/^X//' >krubik/files/md5 << 'END-of-krubik/files/md5' XMD5 (krubik-1.06.tar.gz) = 1fa5a1e35b2a88056fa051d18022ffb4 END-of-krubik/files/md5 echo c - krubik/pkg mkdir -p krubik/pkg > /dev/null 2>&1 echo x - krubik/pkg/COMMENT sed 's/^X//' >krubik/pkg/COMMENT << 'END-of-krubik/pkg/COMMENT' XRubik's cube for KDE END-of-krubik/pkg/COMMENT echo x - krubik/pkg/DESCR sed 's/^X//' >krubik/pkg/DESCR << 'END-of-krubik/pkg/DESCR' XThis is krubik, a 3D model of the Rubik's Cube for KDE. X XWWW: http://www.phys.uu.nl/~eendebak/kde/krubik.html X X- Chris D. Faulhaber Xjedgar@fxp.org END-of-krubik/pkg/DESCR echo x - krubik/pkg/PLIST sed 's/^X//' >krubik/pkg/PLIST << 'END-of-krubik/pkg/PLIST' Xbin/krubik Xshare/applnk/Games/krubik.kdelnk Xshare/apps/krubik/example1.cube Xshare/apps/krubik/example2.cube Xshare/apps/krubik/example3.cube Xshare/apps/krubik/example4.cube Xshare/doc/HTML/en/krubik/devel/index.html Xshare/doc/HTML/en/krubik/devel/heir.html Xshare/doc/HTML/en/krubik/devel/Cube.html Xshare/doc/HTML/en/krubik/devel/Vector.html Xshare/doc/HTML/en/krubik/devel/KRubik.html Xshare/doc/HTML/en/krubik/devel/Kleur.html Xshare/doc/HTML/en/krubik/devel/vector-h.html Xshare/doc/HTML/en/krubik/devel/defines-h.html Xshare/doc/HTML/en/krubik/devel/cube-h.html Xshare/doc/HTML/en/krubik/devel/dialog-h.html Xshare/doc/HTML/en/krubik/devel/includes-h.html Xshare/doc/HTML/en/krubik/devel/krubik-h.html Xshare/doc/HTML/en/krubik/index.html Xshare/doc/HTML/en/krubik/index-1.html Xshare/doc/HTML/en/krubik/index-2.html Xshare/doc/HTML/en/krubik/index-3.html Xshare/doc/HTML/en/krubik/index-4.html Xshare/doc/HTML/en/krubik/index-5.html Xshare/doc/HTML/en/krubik/region.gif Xshare/icons/krubik.xpm Xshare/locale/de/LC_MESSAGES/krubik.mo Xshare/locale/es/LC_MESSAGES/krubik.mo Xshare/locale/hr/LC_MESSAGES/krubik.mo Xshare/locale/it/LC_MESSAGES/krubik.mo Xshare/locale/nl/LC_MESSAGES/krubik.mo Xshare/locale/pt/LC_MESSAGES/krubik.mo Xshare/locale/sk/LC_MESSAGES/krubik.mo X@dirrm share/applnk/Games X@dirrm share/apps/krubik X@dirrm share/doc/HTML/en/krubik/devel X@dirrm share/doc/HTML/en/krubik END-of-krubik/pkg/PLIST echo c - krubik/patches mkdir -p krubik/patches > /dev/null 2>&1 echo x - krubik/patches/patch-aa sed 's/^X//' >krubik/patches/patch-aa << 'END-of-krubik/patches/patch-aa' X--- krubik/cube.cpp.orig Sun Oct 4 14:07:13 1998 X+++ krubik/cube.cpp Sat Oct 23 23:04:56 1999 X@@ -34,6 +34,8 @@ X srandom( time->msecsTo( QTime::currentTime() ) ); X #elif sparc X srand( time->msecsTo( QTime::currentTime() ) ); X+ #elif __FreeBSD__ X+ srand( time->msecsTo( QTime::currentTime() ) ); X #else X debug("Unsupported achitecture, please mail pte@ddsw.nl") ; X srand( time->msecsTo( QTime::currentTime() ) ); END-of-krubik/patches/patch-aa exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 23:31:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (Postfix) with ESMTP id 0743C15097; Sat, 23 Oct 1999 23:31:39 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-59.ix.netcom.com [209.109.233.59]) by vader.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id XAA07609; Sat, 23 Oct 1999 23:31:38 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: (from asami@localhost) by bubble.didi.com (8.9.3/8.8.8) id VAA40072; Sat, 23 Oct 1999 21:48:40 -0700 (PDT) (envelope-from asami) To: Gary Jennejohn Cc: mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/editors/xemacs21/pkg PLIST References: <199910220723.JAA00441@peedub.muc.de> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 23 Oct 1999 21:48:39 -0700 In-Reply-To: Gary Jennejohn's message of "Fri, 22 Oct 1999 09:23:32 +0200" Message-ID: Lines: 14 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Gary Jennejohn * Anyway, no big deal. /usr/local/etc/rc.d/xemacs21.sh makes the directory * automatically. That makes the entry in PLIST apparently superfluous, * but I don't plan on changing it. As Asami wrote, pkg_add should create all * files and directories which the port creates, and the lock directory is * one of them. Yes. xemacs21.sh will only work after a reboot. Like all the ldconfig lines, we need it there in PLIST to work correctly before the reboot too (degenerative reference to MicroSoft graciously deleted...). Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 23:32: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (Postfix) with ESMTP id E9230150D1 for ; Sat, 23 Oct 1999 23:31:43 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-59.ix.netcom.com [209.109.233.59]) by vader.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id XAA07615 for ; Sat, 23 Oct 1999 23:31:42 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: (from asami@localhost) by bubble.didi.com (8.9.3/8.8.8) id VAA40005; Sat, 23 Oct 1999 21:39:18 -0700 (PDT) (envelope-from asami) To: ports@FreeBSD.ORG Subject: Re: cvs commit: ports/mail/emil Makefile ports/x11/kvidtune Makefile ports/mail/mbx2mbox Makefile ports/lang/nawk Makefile ports/net/pathchar Makefile ports/textproc/dict Makefile ports/devel/stlport Makefile ports/textproc/urlview Makefile References: <199910211902.MAA01269@freefall.freebsd.org> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 23 Oct 1999 21:39:18 -0700 In-Reply-To: Bill Fenner's message of "Thu, 21 Oct 1999 12:02:30 -0700 (PDT)" Message-ID: Lines: 13 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Bill Fenner * Remove josh@quick.net as MAINTAINER. Email to josh@quick.net has * been bouncing with: * * : host mx.quick.net said: 550 ... User * unknown * * for over 2 months. Does anyone know where Josh went? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 23:32:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (Postfix) with ESMTP id 923E815107; Sat, 23 Oct 1999 23:31:47 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-59.ix.netcom.com [209.109.233.59]) by vader.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id XAA07621; Sat, 23 Oct 1999 23:31:46 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: (from asami@localhost) by bubble.didi.com (8.9.3/8.8.8) id VAA39883; Sat, 23 Oct 1999 21:27:16 -0700 (PDT) (envelope-from asami) To: Shigeyuki Fukushima Cc: ports@FreeBSD.ORG Subject: Re: Java ports References: <14350.28413.164000.94441T@athena.sitc.toshiba.co.jp> <14351.50764.838000.26572L@athena.sitc.toshiba.co.jp> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 23 Oct 1999 21:27:14 -0700 In-Reply-To: Shigeyuki Fukushima's message of "Fri, 22 Oct 1999 11:05:00 +0900" Message-ID: Lines: 16 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Shigeyuki Fukushima * At Thu, 21 Oct 1999 18:14:43 +0100 (BST), * Jose Marques wrote: * * > > Are there any reasons why this is not * > > /usr/local/share/doc/java// ? * > > ~~~ * > No reason, it's just that no java port appears to do this. * * I think that we need to do above. * How do you think, asami-san? I agree. If they are docs, they should be under share/doc. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 23:32:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (Postfix) with ESMTP id 32AC315169; Sat, 23 Oct 1999 23:31:57 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca3-59.ix.netcom.com [209.109.233.59]) by vader.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id XAA07630; Sat, 23 Oct 1999 23:31:52 -0700 (PDT) (envelope-from asami@sunrise.cs.berkeley.edu) Received: (from asami@localhost) by bubble.didi.com (8.9.3/8.8.8) id VAA39983; Sat, 23 Oct 1999 21:37:11 -0700 (PDT) (envelope-from asami) To: charon@freethought.org Cc: ports@FreeBSD.ORG, andreas@FreeBSD.ORG Subject: Re: apsfilter's dependencies References: <3.0.5.32.19991021012457.00a264e0@midway.uchicago.edu> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 23 Oct 1999 21:37:10 -0700 In-Reply-To: charon@freethought.org's message of "Thu, 21 Oct 1999 01:24:57 -0700" Message-ID: Lines: 23 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: charon@freethought.org * Why is it that http://www.freebsd.org/ports/ no longer lists the huge * number of dependencies that apsfilter has? All it lists are bzip2-0.9.5d * and recode-3.4, but apsfilter still needs all the other stuff (see * /usr/ports/print/apsfilter/scripts/configure) to work. * * Because my network card isn't supported under freebsd, I have to download * all the dependencies in WinNT and then reboot to FreeBSD, so I have to have * _everything_ right or else I have to reboot just to dl another file. When * the dependency lists are FUBAR, this make life very difficult... Yikes. That is because apsfilter tries to build dependency lists on the fly in Makefile.inc. Since it's built from scripts/configure, it won't show up if you do a "make index" on a clean ports tree (as I do). Andreas, please move the batch stuff into Makefile the proper (just protect it with ".if defined(BATCH)") and delete them from scripts/configure, so they will show up in INDEX. Thanks, -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 23 23:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3139D1508F for ; Sat, 23 Oct 1999 23:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA23034; Sat, 23 Oct 1999 23:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Oct 1999 23:40:02 -0700 (PDT) Message-Id: <199910240640.XAA23034@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Subject: Re: ports/14474: remove port: devel/gcc11 Reply-To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/14474; it has been noted by GNATS. From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) To: Will Andrews Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/14474: remove port: devel/gcc11 Date: 23 Oct 1999 21:53:01 -0700 * gcc 2.6.3 is far outdated now (FreeBSD's default is 2.7.2.3 in -STABLE, This is not gcc-1.1. Read the DESCR, it's a cross compiler for 6811. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message