From owner-freebsd-ports Sun Apr 9 1:12:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from maynard.mail.mindspring.net (maynard.mail.mindspring.net [207.69.200.243]) by hub.freebsd.org (Postfix) with ESMTP id 8D9D937B700 for ; Sun, 9 Apr 2000 01:12:22 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-83.ix.netcom.com [209.109.234.83]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id EAA24560 for ; Sun, 9 Apr 2000 04:12:20 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id BAA04016; Sun, 9 Apr 2000 01:12:18 -0700 (PDT) Date: Sun, 9 Apr 2000 01:12:18 -0700 (PDT) Message-Id: <200004090812.BAA04016@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ports@freebsd.org Subject: Re: proposal: PRENAME variable From: asami@freebsd.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi ports, Michael came up with the following idea. What do you guys think? Basically we set PKGNAMEPREFIX to "ja-" or "p5-" or whatever when the package name has a language-specifier as noted in the handbook. It will help for ports that have their PKGNAME and DISTNAME only differ by that part (most of "p5-" ports and a lot of natural language ports). We can even put "PKGNAMEPREFIX=ja-" in ports/japanese/Makefile.inc and let the bsd.port.mk inclusion rule take care of most of the ports (except for those use MASTERDIR in another category). Satoshi ------- Index: bsd.port.mk =================================================================== RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v retrieving revision 1.333 diff -u -r1.333 bsd.port.mk --- bsd.port.mk 2000/04/04 07:05:36 1.333 +++ bsd.port.mk 2000/04/09 08:08:19 @@ -43,8 +43,9 @@ # # PORTNAME - Name of software. # PORTVERSION - Version of software. -# PKGNAME - Always defined as ${PORTNAME}-${PORTVERSION}. Do not -# define this in your Makefile. +# PKGNAMEPREFIX - Prefix to specify that port is language-specific, etc. +# PKGNAME - Always defined as ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}. +# Do not define this in your Makefile. # DISTNAME - Name of port or distribution used in generating # WRKSRC and DISTFILES below (default: # ${PORTNAME}-${PORTVERSION}). @@ -1113,8 +1114,8 @@ @${ECHO} "${PKGNAME}: You need to define PORTNAME and PORTVERSION instead of PKGNAME." @${FALSE} .endif -PKGNAME= ${PORTNAME}-${PORTVERSION} -DISTNAME?= ${PKGNAME} +PKGNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} +DISTNAME?= ${PORTNAME}-${PORTVERSION} .else # old style PKGNAME?= ${DISTNAME} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 1:46:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 6878837B596; Sun, 9 Apr 2000 01:46:11 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (pc343042.tokyo.jcom.ne.jp [203.140.143.42]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 03/13/00) with ESMTP id RAA10255; Sun, 9 Apr 2000 17:46:02 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id RAA16676; Sun, 9 Apr 2000 17:45:31 +0900 (JST) Date: Sun, 09 Apr 2000 17:45:29 +0900 Message-ID: <86ln2nll1y.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: asami@FreeBSD.ORG Cc: ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable In-Reply-To: In your message of "Sun, 9 Apr 2000 01:12:18 -0700 (PDT)" <200004090812.BAA04016@silvia.hip.berkeley.edu> References: <200004090812.BAA04016@silvia.hip.berkeley.edu> User-Agent: Wanderlust/1.1.1 (Purple Rain) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, At Sun, 9 Apr 2000 01:12:18 -0700 (PDT), Satoshi Asami wrote: > Michael came up with the following idea. What do you guys think? > Basically we set PKGNAMEPREFIX to "ja-" or "p5-" or whatever when the > package name has a language-specifier as noted in the handbook. That sounds like a nice idea, Actually, I've been working on japanese category to help him and already done a few dozen ports in Japanese category without it. ;) (Instead I used ${PORTNAME:S/ja-//}) Anyway I agree that idea and hope it would be approved soon. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 2:10: 4 2000 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 E066537B73C for ; Sun, 9 Apr 2000 02:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA32728; Sun, 9 Apr 2000 02:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freedom.ie.cycu.edu.tw (freedom.ie.cycu.edu.tw [140.135.138.6]) by hub.freebsd.org (Postfix) with ESMTP id BAA3F37B811 for ; Sun, 9 Apr 2000 02:04:57 -0700 (PDT) (envelope-from horance@freedom.ie.cycu.edu.tw) Received: (from horance@localhost) by freedom.ie.cycu.edu.tw (8.9.3/8.9.3) id RAA21407; Sun, 9 Apr 2000 17:02:44 +0800 (CST) (envelope-from horance) Message-Id: <200004090902.RAA21407@freedom.ie.cycu.edu.tw> Date: Sun, 9 Apr 2000 17:02:44 +0800 (CST) From: Horance Chou Reply-To: horance@freedom.ie.cycu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17876: fix MASTER_SITE location Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17876 >Category: ports >Synopsis: fix MASTER_SITE location >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 9 02:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Horance Chou >Release: FreeBSD 3.4-STABLE i386 >Organization: FreeBSD NETLAB Server >Environment: FreeBSD 3.4-STABLE i386 >Description: file location changed on MASTER_SITE. >How-To-Repeat: >Fix: apply following patch -- cut here -- diff -rNu swarm.orig/Makefile swarm/Makefile --- swarm.orig/Makefile Sun Apr 9 16:50:59 2000 +++ swarm/Makefile Sun Apr 9 16:52:08 2000 @@ -8,7 +8,7 @@ DISTNAME= swarm-1.4.1 CATEGORIES= devel -MASTER_SITES= ftp://ftp.santafe.edu/pub/swarm/ +MASTER_SITES= ftp://ftp.santafe.edu/pub/swarm/src/swarm/ MAINTAINER= horance@freedom.ie.cycu.edu.tw >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 Apr 9 2:51:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailgw.cablecom.ne.jp (mailgw.cablecom.ne.jp [202.248.199.37]) by hub.freebsd.org (Postfix) with ESMTP id F27E037B50D; Sun, 9 Apr 2000 02:51:36 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: from srv2.cablecom.ne.jp by mailgw.cablecom.ne.jp (8.9.3/3.7W) id SAA09937; Sun, 9 Apr 2000 18:51:35 +0900 (JST) Received: from localhost by srv2.cablecom.ne.jp (8.9.3/3.7W) id SAA00700; Sun, 9 Apr 2000 18:51:34 +0900 (JST) To: ports@FreeBSD.ORG Cc: asami@FreeBSD.org Subject: Re: netscape 6.00.p1 In-Reply-To: Your message of "Sun, 09 Apr 2000 02:13:58 +0900". <20000409021358Z.sada@bsdclub.org> From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Message-Id: <20000409185135P.sada@bsdclub.org> Date: Sun, 09 Apr 2000 18:51:35 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 225 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <20000409021358Z.sada@bsdclub.org> sada@bsdclub.org writes: >> >> Sorry I abandon with dependency to rpm, gtk and libjpeg. >> >> My port could install them but couldn't deinstall. This was easy trouble and I created two rpm ports. Below are patch to <20000409015232Q.sada@bsdclub.org>, shar of x11-toolkits/linux-gtk and graphics/linux-jpeg. # I don't think one port for one rpm is good idea. # Maybe we could add changes to ports system # and could directly depend to rpm itself from ports and packages. -- diff -Bbuw -r ./Makefile /usr/ports/www/linux-netscape6/Makefile --- ./Makefile Sat Apr 8 23:52:01 2000 +++ /usr/ports/www/linux-netscape6/Makefile Sun Apr 9 18:30:29 2000 @@ -14,7 +14,9 @@ MAINTAINER= ports@FreeBSD.org -RUN_DEPENDS= /compat/linux/lib/ld.so:${PORTSDIR}/emulators/linux_base +RUN_DEPENDS= /compat/linux/lib/ld.so:${PORTSDIR}/emulators/linux_base \ + /compat/linux/usr/lib/libgdk-1.2.so.0.5.0:${PORTSDIR}/x11-toolkits/linux-gtk \ + /compat/linux/usr/lib/libjpeg.so.62.0.0:${PORTSDIR}/graphics/linux-jpeg NO_BUILD= yes NO_FILTER_SHLIBS= yes -- # 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: # # linux-gtk # linux-gtk/Makefile # linux-gtk/files # linux-gtk/files/md5 # linux-gtk/pkg # linux-gtk/pkg/COMMENT # linux-gtk/pkg/DESCR # linux-gtk/pkg/PLIST # echo c - linux-gtk mkdir -p linux-gtk > /dev/null 2>&1 echo x - linux-gtk/Makefile sed 's/^X//' >linux-gtk/Makefile << 'END-of-linux-gtk/Makefile' X# New ports collection makefile for: linux-gtk X# Version required: 1.2.x X# Date created: 8 April 2000 X# Whom: sada@FreeBSD.org X# Based on: emulators/linux_base by marcel@FreeBSD.org X# & graphics/xmovie by sanpei@sanpei.org X# X# $FreeBSD$ X# X XPORTNAME?= linux-gtk XPORTVERSION?= 1.2 XCATEGORIES?= x11-toolkits linux XMASTER_SITES= ${RPM_MIRRORS:S/__DIR__/${STDDIR}/g} XDISTFILES= ${RPM_SET} X XMAINTAINER= ports@FreeBSD.org X XBUILD_DEPENDS= rpm:${PORTSDIR}/misc/rpm XRUN_DEPENDS= /compat/linux/lib/libc.so.6:${PORTSDIR}/emulators/linux_base X XDIST_SUBDIR= rpm XEXTRACT_ONLY= XNO_BUILD= yes XNO_FILTER_SHLIBS= yes XNO_MTREE= yes XONLY_FOR_ARCHS= i386 XPREFIX= /compat/linux X XRPM_MIRRORS= ftp://ftp.freesoftware.com/pub/linux/redhat/__DIR__/ XSTDDIR= redhat-6.1/${MACHINE_ARCH}/RedHat/RPMS XUPDDIR= updates/6.1/${MACHINE_ARCH} XRPM_SET?= gtk+-1.2.5-2.${MACHINE_ARCH}.rpm XDBPATH= /var/lib/rpm XRPMFLAGS= --ignoreos --root ${PREFIX} --dbpath ${DBPATH} \ X --nodeps --replacepkgs XRPMDIR= ${DISTDIR}/${DIST_SUBDIR} X Xdo-install: X @for R in ${RPM_SET}; do \ X ${ECHO} $$R; \ X rpm -U ${RPMFLAGS} ${RPMDIR}/$$R; \ X done X X.include END-of-linux-gtk/Makefile echo c - linux-gtk/files mkdir -p linux-gtk/files > /dev/null 2>&1 echo x - linux-gtk/files/md5 sed 's/^X//' >linux-gtk/files/md5 << 'END-of-linux-gtk/files/md5' XMD5 (rpm/gtk+-1.2.5-2.i386.rpm) = de064ec539a1bd6f2482e3c2fecde392 END-of-linux-gtk/files/md5 echo c - linux-gtk/pkg mkdir -p linux-gtk/pkg > /dev/null 2>&1 echo x - linux-gtk/pkg/COMMENT sed 's/^X//' >linux-gtk/pkg/COMMENT << 'END-of-linux-gtk/pkg/COMMENT' XRpm of Gtk lib. END-of-linux-gtk/pkg/COMMENT echo x - linux-gtk/pkg/DESCR sed 's/^X//' >linux-gtk/pkg/DESCR << 'END-of-linux-gtk/pkg/DESCR' XA port of gtk-1.2 lib rpm. END-of-linux-gtk/pkg/DESCR echo x - linux-gtk/pkg/PLIST sed 's/^X//' >linux-gtk/pkg/PLIST << 'END-of-linux-gtk/pkg/PLIST' Xusr/doc/gtk+-1.2.5/AUTHORS Xusr/doc/gtk+-1.2.5/COPYING Xusr/doc/gtk+-1.2.5/ChangeLog Xusr/doc/gtk+-1.2.5/NEWS Xusr/doc/gtk+-1.2.5/README Xusr/doc/gtk+-1.2.5/TODO Xusr/lib/libgdk-1.2.so.0.5.0 Xusr/share/locale/ca/LC_MESSAGES/gtk+.mo Xusr/share/locale/cs/LC_MESSAGES/gtk+.mo Xusr/share/locale/da/LC_MESSAGES/gtk+.mo Xusr/share/locale/de/LC_MESSAGES/gtk+.mo Xusr/share/locale/el/LC_MESSAGES/gtk+.mo Xusr/share/locale/es/LC_MESSAGES/gtk+.mo Xusr/share/locale/et/LC_MESSAGES/gtk+.mo Xusr/share/locale/eu/LC_MESSAGES/gtk+.mo Xusr/share/locale/fi/LC_MESSAGES/gtk+.mo Xusr/share/locale/fr/LC_MESSAGES/gtk+.mo Xusr/share/locale/ga/LC_MESSAGES/gtk+.mo Xusr/share/locale/hr/LC_MESSAGES/gtk+.mo Xusr/share/locale/hu/LC_MESSAGES/gtk+.mo Xusr/share/locale/it/LC_MESSAGES/gtk+.mo Xusr/share/locale/ja/LC_MESSAGES/gtk+.mo Xusr/share/locale/ko/LC_MESSAGES/gtk+.mo Xusr/share/locale/nl/LC_MESSAGES/gtk+.mo Xusr/share/locale/no/LC_MESSAGES/gtk+.mo Xusr/share/locale/pl/LC_MESSAGES/gtk+.mo Xusr/share/locale/pt/LC_MESSAGES/gtk+.mo Xusr/share/locale/pt_BR/LC_MESSAGES/gtk+.mo Xusr/share/locale/ru/LC_MESSAGES/gtk+.mo Xusr/share/locale/sk/LC_MESSAGES/gtk+.mo Xusr/share/locale/sl/LC_MESSAGES/gtk+.mo Xusr/share/locale/sv/LC_MESSAGES/gtk+.mo Xusr/share/locale/wa/LC_MESSAGES/gtk+.mo Xusr/share/locale/zh_TW.Big5/LC_MESSAGES/gtk+.mo Xusr/share/themes/Default/gtk/gtkrc X@dirrm usr/share/themes/Default/gtk X@dirrm usr/doc/gtk+-1.2.5 END-of-linux-gtk/pkg/PLIST exit -- # 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: # # linux-jpeg # linux-jpeg/Makefile # linux-jpeg/files # linux-jpeg/files/md5 # linux-jpeg/pkg # linux-jpeg/pkg/COMMENT # linux-jpeg/pkg/DESCR # linux-jpeg/pkg/PLIST # echo c - linux-jpeg mkdir -p linux-jpeg > /dev/null 2>&1 echo x - linux-jpeg/Makefile sed 's/^X//' >linux-jpeg/Makefile << 'END-of-linux-jpeg/Makefile' X# New ports collection makefile for: linux-jpeg X# Version required: 6b-9 X# Date created: 9 April 2000 X# Whom: sada@FreeBSD.org X# X# $FreeBSD$ X# X XPORTNAME= linux-jpeg XPORTVERSION= 6b.9 XCATEGORIES= graphics linux X XRPM_SET= libjpeg-6b-9.${MACHINE_ARCH}.rpm X X.include "../../x11-toolkits/linux-gtk/Makefile" END-of-linux-jpeg/Makefile echo c - linux-jpeg/files mkdir -p linux-jpeg/files > /dev/null 2>&1 echo x - linux-jpeg/files/md5 sed 's/^X//' >linux-jpeg/files/md5 << 'END-of-linux-jpeg/files/md5' XMD5 (rpm/libjpeg-6b-9.i386.rpm) = 453feddfadcdb1b96c2a3bb843e3ec80 END-of-linux-jpeg/files/md5 echo c - linux-jpeg/pkg mkdir -p linux-jpeg/pkg > /dev/null 2>&1 echo x - linux-jpeg/pkg/COMMENT sed 's/^X//' >linux-jpeg/pkg/COMMENT << 'END-of-linux-jpeg/pkg/COMMENT' XRpm of Jpeg lib. END-of-linux-jpeg/pkg/COMMENT echo x - linux-jpeg/pkg/DESCR sed 's/^X//' >linux-jpeg/pkg/DESCR << 'END-of-linux-jpeg/pkg/DESCR' XA port of jpeg lib rpm. END-of-linux-jpeg/pkg/DESCR echo x - linux-jpeg/pkg/PLIST sed 's/^X//' >linux-jpeg/pkg/PLIST << 'END-of-linux-jpeg/pkg/PLIST' Xusr/bin/cjpeg Xusr/bin/djpeg Xusr/bin/jpegtran Xusr/bin/rdjpgcom Xusr/bin/wrjpgcom Xusr/lib/libjpeg.so.62.0.0 Xusr/man/man1/cjpeg.1 Xusr/man/man1/djpeg.1 Xusr/man/man1/jpegtran.1 Xusr/man/man1/rdjpgcom.1 Xusr/man/man1/wrjpgcom.1 Xusr/lib/libjpeg.so.62 END-of-linux-jpeg/pkg/PLIST exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 2:57:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 2377837B609; Sun, 9 Apr 2000 02:56:21 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F5453.dip0.t-ipconnect.de [193.159.84.83]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id KAA05527; Sun, 9 Apr 2000 10:55:49 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 17F35AC2C; Sun, 9 Apr 2000 11:58:57 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id LAA02113; Sun, 9 Apr 2000 11:56:03 +0200 (CEST) (envelope-from alex) Date: Sun, 9 Apr 2000 11:56:02 +0200 From: Alexander Langer To: Satoshi Asami Cc: ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable Message-ID: <20000409115602.A1056@cichlids.cichlids.com> Mail-Followup-To: Satoshi Asami , ports@FreeBSD.ORG References: <200004090812.BAA04016@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004090812.BAA04016@silvia.hip.berkeley.edu>; from asami@FreeBSD.ORG on Sun, Apr 09, 2000 at 01:12:18AM -0700 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 Thus spake Satoshi Asami (asami@FreeBSD.ORG): > Michael came up with the following idea. What do you guys think? > Basically we set PKGNAMEPREFIX to "ja-" or "p5-" or whatever when the > package name has a language-specifier as noted in the handbook. Why "ja-"? Aren't all prefixes [a-z]+- anyway? So we could set PKGNAMEPREFIX to "ja", and then not $PKGNAMEPREFIX$PORTNAME but $PKGNAMEPREFIX-$PORTNAME. Just curious... Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 3: 3:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pis.toba-cmt.ac.jp (pis.toba-cmt.ac.jp [202.26.248.77]) by hub.freebsd.org (Postfix) with ESMTP id 1DD6C37B6A0 for ; Sun, 9 Apr 2000 03:03:00 -0700 (PDT) (envelope-from kiri@pis.toba-cmt.ac.jp) Received: from kiri.pis (localhost [127.0.0.1]) by pis.toba-cmt.ac.jp (8.9.3/8.9.3) with ESMTP id TAA00976 for ; Sun, 9 Apr 2000 19:12:32 +0900 (JST) (envelope-from kiri@pis.toba-cmt.ac.jp) Message-Id: <200004091012.TAA00976@pis.toba-cmt.ac.jp> Date: Sun, 09 Apr 2000 19:12:31 +0900 From: kiri@pis.toba-cmt.ac.jp To: ports@freebsd.org Subject: Re: proposal: PRENAME variable In-Reply-To: In your message of "Sun, 9 Apr 2000 01:12:18 -0700 (PDT)" <200004090812.BAA04016@silvia.hip.berkeley.edu> References: <200004090812.BAA04016@silvia.hip.berkeley.edu> User-Agent: Wanderlust/1.0.3 (Notorious) SEMI/1.13.3 (Komaiko) FLIM/1.12.5 (Hirahata) MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.3 - "Komaiko") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Sun, 9 Apr 2000 01:12:18 -0700 (PDT), asami@freebsd.org (Satoshi Asami) wrote: > > Hi ports, > > We can even put "PKGNAMEPREFIX=ja-" in ports/japanese/Makefile.inc and > let the bsd.port.mk inclusion rule take care of most of the ports > (except for those use MASTERDIR in another category). I'm glad to be set it in the bsd.port.mk in the future :) # If it will be, I must be changed many ports that I maintain ;) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 3:30:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id EC84337B796 for ; Sun, 9 Apr 2000 03:30:53 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (pc343042.tokyo.jcom.ne.jp [203.140.143.42]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 03/13/00) with ESMTP id TAA24791; Sun, 9 Apr 2000 19:29:55 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id TAA17414; Sun, 9 Apr 2000 19:29:23 +0900 (JST) Date: Sun, 09 Apr 2000 19:29:22 +0900 Message-ID: <86k8i7lg8t.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: kiri@pis.toba-cmt.ac.jp Cc: ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable In-Reply-To: In your message of "Sun, 09 Apr 2000 19:12:31 +0900" <200004091012.TAA00976@pis.toba-cmt.ac.jp> References: <200004090812.BAA04016@silvia.hip.berkeley.edu> <200004091012.TAA00976@pis.toba-cmt.ac.jp> User-Agent: Wanderlust/1.1.1 (Purple Rain) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Sun, 09 Apr 2000 19:12:31 +0900, kiri@pis.toba-cmt.ac.jp wrote: > I'm glad to be set it in the bsd.port.mk in the future :) > > # If it will be, I must be changed many ports that I maintain ;) Don't worry. This kind of changes shall be handled by committers. And I'm doing it NOW actually. :) -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 5:12:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.ddg.com (eunuch.ddg.com [216.30.58.66]) by hub.freebsd.org (Postfix) with ESMTP id 7356D37B7A8; Sun, 9 Apr 2000 05:12:47 -0700 (PDT) (envelope-from rkw@dataplex.net) Received: from nomad.dataplex.net (24.28.73.209) by mail.ddg.com with SMTP (Eudora Internet Mail Server 2.1); Sun, 9 Apr 2000 07:12:21 -0500 From: Richard Wackerbarth To: asami@FreeBSD.ORG Subject: Re: proposal: PRENAME variable Date: Sun, 9 Apr 2000 07:12:20 -0500 X-Mailer: KMail [version 1.1.38] Content-Type: text/plain References: <200004090812.BAA04016@silvia.hip.berkeley.edu> In-Reply-To: <200004090812.BAA04016@silvia.hip.berkeley.edu> Cc: ports@FreeBSD.ORG MIME-Version: 1.0 Message-Id: <00040907122000.05113@nomad.dataplex.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 09 Apr 2000, Satoshi Asami wrote: > Michael came up with the following idea. What do you guys think? Michael isn't authorized to have good ideas :-) > Basically we set PKGNAMEPREFIX to "ja-" or "p5-" or whatever when the > package name has a language-specifier as noted in the handbook. Sounds good, at least on the surface. I see no problem in that naming convention results. > We can even put "PKGNAMEPREFIX=ja-" in ports/japanese/Makefile.inc and > let the bsd.port.mk inclusion rule take care of most of the ports > (except for those use MASTERDIR in another category). Assume I have ports/discussion/myport and ports/japanese/discussion/myport They depend on ports/discussion/mylib and ports/japanese/discussion/mylib respectively. They also depend on ports/discussion/commonlib Now, how do we create the references? I worry that confusion will ensue if PKGNAMEPREFIX is automatically inserted in some places, but not in others. The problem is analogous to the shell conventions for relative vs absolute paths. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 5:15:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.ddg.com (eunuch.ddg.com [216.30.58.66]) by hub.freebsd.org (Postfix) with ESMTP id B1FAE37B6A0 for ; Sun, 9 Apr 2000 05:15:16 -0700 (PDT) (envelope-from rkw@dataplex.net) Received: from nomad.dataplex.net (24.28.73.209) by mail.ddg.com with SMTP (Eudora Internet Mail Server 2.1); Sun, 9 Apr 2000 07:14:32 -0500 From: Richard Wackerbarth To: alex@big.endian.de Subject: Re: proposal: PRENAME variable Date: Sun, 9 Apr 2000 07:14:31 -0500 X-Mailer: KMail [version 1.1.38] Content-Type: text/plain Cc: ports@FreeBSD.ORG References: <200004090812.BAA04016@silvia.hip.berkeley.edu> <20000409115602.A1056@cichlids.cichlids.com> In-Reply-To: <20000409115602.A1056@cichlids.cichlids.com> MIME-Version: 1.0 Message-Id: <00040907143101.05113@nomad.dataplex.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 09 Apr 2000, Alexander Langer wrote: > Why "ja-"? > > Aren't all prefixes [a-z]+- anyway? > So we could set PKGNAMEPREFIX to "ja", and then not > $PKGNAMEPREFIX$PORTNAME but $PKGNAMEPREFIX-$PORTNAME. No because the "default" would become -$PORTNAME you don't want the leading "-" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 5:38:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailgw.cablecom.ne.jp (mailgw.cablecom.ne.jp [202.248.199.37]) by hub.freebsd.org (Postfix) with ESMTP id 1B2BE37B5BF for ; Sun, 9 Apr 2000 05:38:26 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: from srv2.cablecom.ne.jp by mailgw.cablecom.ne.jp (8.9.3/3.7W) id VAA19839; Sun, 9 Apr 2000 21:38:20 +0900 (JST) Received: from localhost by srv2.cablecom.ne.jp (8.9.3/3.7W) id VAA04966; Sun, 9 Apr 2000 21:38:19 +0900 (JST) To: alex@big.endian.de Cc: ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable In-Reply-To: Your message of "Sun, 9 Apr 2000 11:56:02 +0200". <20000409115602.A1056@cichlids.cichlids.com> From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Message-Id: <20000409213821C.sada@bsdclub.org> Date: Sun, 09 Apr 2000 21:38:21 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <20000409115602.A1056@cichlids.cichlids.com> alex@big.endian.de writes: >> Aren't all prefixes [a-z]+- anyway? >> So we could set PKGNAMEPREFIX to "ja", and then not >> $PKGNAMEPREFIX$PORTNAME but $PKGNAMEPREFIX-$PORTNAME. Maybe the default value of $PKGNAMEPREFIX is "". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 6:39: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 55D1937B6B3 for ; Sun, 9 Apr 2000 06:38:39 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F5453.dip0.t-ipconnect.de [193.159.84.83]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id OAA07392; Sun, 9 Apr 2000 14:34:12 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 0464AAC2C; Sun, 9 Apr 2000 15:37:21 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id PAA01021; Sun, 9 Apr 2000 15:34:27 +0200 (CEST) (envelope-from alex) Date: Sun, 9 Apr 2000 15:34:26 +0200 From: Alexander Langer To: Richard Wackerbarth Cc: ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable Message-ID: <20000409153426.A982@cichlids.cichlids.com> Mail-Followup-To: Richard Wackerbarth , ports@FreeBSD.ORG References: <200004090812.BAA04016@silvia.hip.berkeley.edu> <20000409115602.A1056@cichlids.cichlids.com> <00040907143101.05113@nomad.dataplex.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <00040907143101.05113@nomad.dataplex.net>; from rkw@dataplex.net on Sun, Apr 09, 2000 at 07:14:31AM -0500 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 Thus spake Richard Wackerbarth (rkw@dataplex.net): > > So we could set PKGNAMEPREFIX to "ja", and then not > > $PKGNAMEPREFIX$PORTNAME but $PKGNAMEPREFIX-$PORTNAME. > No because the "default" would become -$PORTNAME > you don't want the leading "-" That is a reason, but could be handled by bsd.port.mk. (if-condition on empty prefix). Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 6:43: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 67FE637B761; Sun, 9 Apr 2000 06:42:29 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F5453.dip0.t-ipconnect.de [193.159.84.83]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id OAA08248; Sun, 9 Apr 2000 14:39:39 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 4C60AAC2C; Sun, 9 Apr 2000 15:42:49 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id PAA01138; Sun, 9 Apr 2000 15:39:54 +0200 (CEST) (envelope-from alex) Date: Sun, 9 Apr 2000 15:39:54 +0200 From: Alexander Langer To: Neil Blakey-Milner Cc: SADA Kenji , asami@FreeBSD.org, ports@FreeBSD.org Subject: Re: proposal: PRENAME variable Message-ID: <20000409153954.A1100@cichlids.cichlids.com> Mail-Followup-To: Neil Blakey-Milner , SADA Kenji , asami@FreeBSD.org, ports@FreeBSD.org References: <20000409115602.A1056@cichlids.cichlids.com> <20000409213821C.sada@bsdclub.org> <20000409153342.A72327@mithrandr.moria.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000409153342.A72327@mithrandr.moria.org>; from nbm@mithrandr.moria.org on Sun, Apr 09, 2000 at 03:33:42PM +0200 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 Thus spake Neil Blakey-Milner (nbm@mithrandr.moria.org): > Ie, if we have a port named foo-120399 (and we had a few like that) > which later became foo-1.0.1, we'd bump the PORT_EPOCH to 1, and > carry on from there. Nice. > And for my next trick, I'll import dpkg into the base system! ;) I'll kick ya. We have our own package-system that can be extended, but not trashed :) > More seriously, the dpkg package management engine is pretty nifty, yes. > even if the code is painful on the eyes and brain. My Debian-wielding the usage, too. Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 7:12: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 7538B37B68E; Sun, 9 Apr 2000 07:03:21 -0700 (PDT) (envelope-from nbm@sunesi.net) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 12eHqQ-000IrT-00; Sun, 09 Apr 2000 15:33:42 +0200 Date: Sun, 9 Apr 2000 15:33:42 +0200 From: Neil Blakey-Milner To: SADA Kenji Cc: alex@big.endian.de, asami@FreeBSD.org, ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable Message-ID: <20000409153342.A72327@mithrandr.moria.org> References: <20000409115602.A1056@cichlids.cichlids.com> <20000409213821C.sada@bsdclub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <20000409213821C.sada@bsdclub.org> Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun 2000-04-09 (21:38), SADA Kenji wrote: > >> Aren't all prefixes [a-z]+- anyway? > >> So we could set PKGNAMEPREFIX to "ja", and then not > >> $PKGNAMEPREFIX$PORTNAME but $PKGNAMEPREFIX-$PORTNAME. > > Maybe the default value of $PKGNAMEPREFIX is "". Hrm, while we're at it, how about one or both of: PORT_EPOCH is either empty, or a positive integer reflecting the number of times the version number has changed to a lower version due to stupid versioning. This is something Debian does. Ie, if we have a port named foo-120399 (and we had a few like that) which later became foo-1.0.1, we'd bump the PORT_EPOCH to 1, and carry on from there. PORT_REVISION is either empty, defaulting to 0, or a positive integer reflecting some sort of change in the packages provided or required dependencies. If gnomelibs-0.53 depended on libjpeg.so.7, but the latest libjpeg port/package now provides libjpeg.so.8, we'd have to set PORT_REVISION to make sure this is taken into account. Another one I've seen is the move from not providing a shared or static library to providing it. Debian represents this as: [epoch:]packagename_version-revision. I'd suggest we try: packagename-version[_revision][:epoch] to remain basically backwards compatible, and gain the same playing parameters of possibly the leading package management collection. And for my next trick, I'll import dpkg into the base system! ;) More seriously, the dpkg package management engine is pretty nifty, even if the code is painful on the eyes and brain. My Debian-wielding friends could even manage to get me to try it out some day. Neil -- Neil Blakey-Milner nbm@rucus.ru.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 8:38:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.af.airnet.ne.jp (mail.af.airnet.ne.jp [210.159.66.49]) by hub.freebsd.org (Postfix) with ESMTP id B94C237B5BF for ; Sun, 9 Apr 2000 08:38:08 -0700 (PDT) (envelope-from imura@cs.titech.ac.jp) Received: from imura.af.airnet.ne.jp (tok111.airnet.ne.jp [210.159.88.111]) by mail.af.airnet.ne.jp (8.8.8/3.6W/06/13/98-AF.AIRNET.NE.JP) with ESMTP id AAA34290; Mon, 10 Apr 2000 00:38:01 +0900 Posted-Date: Mon, 10 Apr 2000 00:37:35 +0900 (JST) To: rkw@dataplex.net Cc: alex@big.endian.de, ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable From: "R. Imura" In-Reply-To: <00040907143101.05113@nomad.dataplex.net> References: <200004090812.BAA04016@silvia.hip.berkeley.edu> <20000409115602.A1056@cichlids.cichlids.com> <00040907143101.05113@nomad.dataplex.net> X-Mailer: Mew version 1.94b20 on Emacs 19.34 / Mule 2.3 =?iso-2022-jp?B?KBskQkt2RSYyVhsoQik=?= X-Prom-Mew: Prom-Mew 1.93.4 (procmail reader for Mew) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000410003733V.imura@cs.titech.ac.jp> Date: Mon, 10 Apr 2000 00:37:33 +0900 X-Dispatcher: imput version 990401(IM113) Lines: 34 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Why "ja-"? > > > > Aren't all prefixes [a-z]+- anyway? > > So we could set PKGNAMEPREFIX to "ja", and then not > > $PKGNAMEPREFIX$PORTNAME but $PKGNAMEPREFIX-$PORTNAME. > > No because the "default" would become -$PORTNAME > you don't want the leading "-" No, it depends. If it is set like (as Asami-san showed) PKGNAME=${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} PKGNAMEPREFIX should include '-', but this definition is from Michael's PKGNAMEPREFIX="XX-" suggestion. If you don't like including '-' in PKGNAMEPREFIX, bsd.port.mk would be like .if defined(PKGNAMEPREFIX) PKGNAME=${PKGNAMEPREFIX}-${PORTNAME}-${PORTVERSION} .else PKGNAME=${PORTNAME}-${PORTVERSION} .endif I think both ways are good, and an issue how we define PKGNAMEPREFIX is not the main theme of this thread. I agree to set PKGNAMEPREFIX. -- R. Imura // my private mail address has changed. // imura@cs.titech.ac.jp ====> imura@af.airnet.ne.jp /(-.-)y-~~ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 8:53:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id B981C37B537 for ; Sun, 9 Apr 2000 08:53:19 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F5453.dip0.t-ipconnect.de [193.159.84.83]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id QAA30780; Sun, 9 Apr 2000 16:41:08 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 81D07AC2C; Sun, 9 Apr 2000 17:44:18 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id RAA03544; Sun, 9 Apr 2000 17:41:24 +0200 (CEST) (envelope-from alex) Date: Sun, 9 Apr 2000 17:41:24 +0200 From: Alexander Langer To: "R. Imura" Cc: rkw@dataplex.net, ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable Message-ID: <20000409174124.A3536@cichlids.cichlids.com> Mail-Followup-To: "R. Imura" , rkw@dataplex.net, ports@FreeBSD.ORG References: <200004090812.BAA04016@silvia.hip.berkeley.edu> <20000409115602.A1056@cichlids.cichlids.com> <00040907143101.05113@nomad.dataplex.net> <20000410003733V.imura@cs.titech.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000410003733V.imura@cs.titech.ac.jp>; from imura@af.airnet.ne.jp on Mon, Apr 10, 2000 at 12:37:33AM +0900 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 Thus spake R. Imura (imura@af.airnet.ne.jp): > I think both ways are good, and an issue how we define PKGNAMEPREFIX is > not the main theme of this thread. since you are right with this point... > I agree to set PKGNAMEPREFIX. ... I should add, that I do agree, too. Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 9:26:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.dinoex.sub.org (mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (Postfix) with ESMTP id 3A5CE37C0A5 for ; Sun, 9 Apr 2000 09:25:58 -0700 (PDT) (envelope-from dirk.meyer@dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.9.3/8.9.3) with UUCP id SAA07007 for freebsd-ports@FreeBSD.ORG; Sun, 9 Apr 2000 18:15:06 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with BSMTP id LAA27500 for ; Sun, 9 Apr 2000 11:35:03 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-ports@FreeBSD.ORG Message-ID: <9ad+QQNZGf@dmeyer.dinoex.sub.org> From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: proposal: PRENAME variable Date: Sun, 09 Apr 2000 11:33:08 +0200 X-Mailer: Dinoex 1.75 References: <200004090812.BAA04016@silvia.hip.berkeley.edu> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.90] X-Accept-Language: de,en X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Copyright: (C) Copyright 1999 by Dirk Meyer -- All rights reserved. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20000409000000S+2@dinoex.sub.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi Asami wrote:, > Michael came up with the following idea. What do you guys think? > Basically we set PKGNAMEPREFIX to "ja-" or "p5-" or whatever when the > package name has a language-specifier as noted in the handbook. This sould like I could my mix my de-wealizer and webalizer ports better.. I Would like to use this feature. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany - Tel. +49-5606-6512 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 9:50:21 2000 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 ACB9A37BF24 for ; Sun, 9 Apr 2000 09:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA22830; Sun, 9 Apr 2000 09:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 9 Apr 2000 09:50:03 -0700 (PDT) Message-Id: <200004091650.JAA22830@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Samuel Tardieu Subject: Re: ports/17799: JGNAT port Reply-To: Samuel Tardieu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17799; it has been noted by GNATS. From: Samuel Tardieu To: freebsd-gnats-submit@freebsd.org Cc: andrews@technologist.com Subject: Re: ports/17799: JGNAT port Date: Sun, 9 Apr 2000 15:33:31 +0200 Let me know if the following suits your needs. Sam # 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: # # jgnat # jgnat/Makefile # jgnat/files # jgnat/files/md5 # jgnat/patches # jgnat/patches/patch-aa # jgnat/patches/patch-ab # jgnat/patches/patch-ac # jgnat/patches/patch-ad # jgnat/pkg # jgnat/pkg/COMMENT # jgnat/pkg/DESCR # jgnat/pkg/PLIST # echo c - jgnat mkdir -p jgnat > /dev/null 2>&1 echo x - jgnat/Makefile sed 's/^X//' >jgnat/Makefile << 'END-of-jgnat/Makefile' X# New ports collection makefile for: jgnat X# Version required: 1.0p X# Date created: 8 Apr 2000 X# Whom: Samuel Tardieu X# X# $FreeBSD$ X# X XDISTNAME= jgnat-1.0p-src XPKGNAME= jgnat-1.0p XCATEGORIES= lang XMASTER_SITES= ftp://cs.nyu.edu/pub/gnat/jgnat/jgnat-1.0p/split-1.0p/ \ X ftp://ftp.lip6.fr/pub/gnat/jgnat/jgnat-1.0p/split-1.0p/ XEXTRACT_SUFX= .tgz X XMAINTAINER= sam@inf.enst.fr X XBUILD_DEPENDS= ${LOCALBASE}/bin/adagcc:${PORTSDIR}/lang/gnat \ X ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk X XUSE_GMAKE= yes X XWRKSRC= ${WRKDIR}/jgnat-1.0p/src X XLIBDIR= ${PREFIX}/lib/jgnat XADAINCDIR= ${LIBDIR}/adainclude XADALIBDIR= ${LIBDIR}/adalib X Xdo-install: X -${MKDIR} ${LIBDIR} X -${MKDIR} ${ADAINCDIR} X -${MKDIR} ${ADALIBDIR} X ${INSTALL_PROGRAM} ${WRKSRC}/../bin/* ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/../lib/jgnat.jar ${LIBDIR} X ${INSTALL_DATA} ${WRKSRC}/../lib/jgnat/adainclude/* ${ADAINCDIR} X ${INSTALL_DATA} ${WRKSRC}/../lib/jgnat/adalib/* ${ADALIBDIR} X ${CHMOD} a-r ${ADALIBDIR}/*.ali X X.include END-of-jgnat/Makefile echo c - jgnat/files mkdir -p jgnat/files > /dev/null 2>&1 echo x - jgnat/files/md5 sed 's/^X//' >jgnat/files/md5 << 'END-of-jgnat/files/md5' XMD5 (jgnat-1.0p-src.tgz) = 9b42bb0bf94695cc3b7495ced4609144 END-of-jgnat/files/md5 echo c - jgnat/patches mkdir -p jgnat/patches > /dev/null 2>&1 echo x - jgnat/patches/patch-aa sed 's/^X//' >jgnat/patches/patch-aa << 'END-of-jgnat/patches/patch-aa' X--- Makefile.orig Mon Mar 27 18:56:24 2000 X+++ Makefile Tue Apr 4 21:00:47 2000 X@@ -66,7 +66,7 @@ X DEBUG_JGNAT = X # Set this variable if you want to be able to debug the JGNAT toolchain X X-JDK11_LIB = X+JDK11_LIB = :/usr/local/jdk1.1.8/lib/classes.zip X # Needed only if you are using Sun's JDK 1.1.*. Leave this blank for JDK 1.2.*. X # Path separator followed by the zip file containing the JDK 1.1 lib X # installed on the machine on which you are doing the build. For instance, on X@@ -82,7 +82,7 @@ X VERSION = 1.0p X # The current version number of JGNAT X X-HOST = ${shell gcc -dumpmachine} X+HOST = ${shell adagcc -dumpmachine} X # Name of the host computer on which the JGNAT executables were built X X TGZ = tgz X@@ -236,6 +236,7 @@ X CD = cd X CP = cp -p -f X ECHO = echo X+FIND = find X MKDIR = mkdir -p X MV = mv -f X PWD = pwd X@@ -277,7 +278,7 @@ X TOOL_FLAGS = -O2 -gnatgp -gnata X LIB_FLAGS = -O -gnatgp -gnata X STRIP = -s X- JAR = jar c0f X+ JAR = /usr/local/jdk1.1.8/bin/jar c0f X else X C_FLAGS = -O X TOOL_FLAGS = -g -O -gnatgpa X@@ -325,13 +326,13 @@ X $(EXTRA_LINK_FLAGS) X # Linker flags used to build the $(GNATMAKE_CUR_LIB) executables X X-GCC = gcc -c $(C_FLAGS) X+GCC = adagcc -c $(C_FLAGS) X # C compiler to build the C objects X X JGNAT = $(BIN)/jgnat $(LIB_FLAGS) X # JGNAT compiler to build the Ada part of the JGNAT library X X-JAVAC = javac -deprecation -classpath $(LIB)$(JDK11_LIB) X+JAVAC = /usr/local/jdk1.1.8/bin/javac -deprecation -classpath $(LIB)$(JDK11_LIB) X # The Java compiler to build the Java part of the JGNAT library X X ########################################### X@@ -410,12 +411,12 @@ X X clean_bin : check_vars X $(CD) $(BIN); $(RM) $(HOST_TOOLS_EXE) X- $(RM) $(OBJ)/* X- $(RM) $(OBJS)/* X+ $(RM) -r $(OBJ) && $(MKDIR) $(OBJ) X+ $(RM) -r $(OBJS) && $(MKDIR) $(OBJS) X X clean_lib : check_vars X- $(RM) $(ADALIB)/* X- $(RM) $(ADAINCLUDE)/* X+ $(RM) -r $(ADALIB) && $(MKDIR) $(ADALIB) X+ $(RM) -r $(ADAINCLUDE) && $(MKDIR) $(ADAINCLUDE) X $(RM) $(LIB)/*.jar X X ######## X@@ -1316,7 +1317,7 @@ X else X $(CD) $(LIB); $(JAR) $(JGNAT_JAR) jgnat/adalib/*.class X endif X- $(RM) $(ADALIB)/*.class X+ $(FIND) $(ADALIB) -name '*.class' -exec rm {} \; X X ########################################### X # JGNAT Installation: create_install_dirs # END-of-jgnat/patches/patch-aa echo x - jgnat/patches/patch-ab sed 's/^X//' >jgnat/patches/patch-ab << 'END-of-jgnat/patches/patch-ab' X--- osint.ads.orig Tue Apr 4 20:28:14 2000 X+++ osint.ads Tue Apr 4 20:28:42 2000 X@@ -227,15 +227,6 @@ X -- Type used to return a String_Access_List without dragging in secondary X -- stack. X X- function To_Canonical_File_List X- (Wildcard_Host_File : String; Only_Dirs : Boolean) X- return String_Access_List_Access; X- -- Expand a wildcard host syntax file or directory specification (e.g. on X- -- a VMS host, any file or directory spec that contains: X- -- "*", or "%", or "...") X- -- and return a list of valid Unix syntax file or directory specs. X- -- If Only_Dirs is True, then only return directories. X- X function To_Canonical_Dir_Spec X (Host_Dir : String; X Prefix_Style : Boolean) X--- osint.adb.orig Tue Apr 4 20:28:22 2000 X+++ osint.adb Tue Apr 4 20:28:58 2000 X@@ -2333,66 +2333,6 @@ X end Time_From_Last_Bind; X X --------------------------- X- -- To_Canonical_File_List -- X- --------------------------- X- X- function To_Canonical_File_List X- (Wildcard_Host_File : String; X- Only_Dirs : Boolean) X- return String_Access_List_Access X- is X- function To_Canonical_File_List_Init X- (Host_File : Address; X- Only_Dirs : Integer) X- return Integer; X- pragma Import (C, To_Canonical_File_List_Init, X- "to_canonical_file_list_init"); X- X- function To_Canonical_File_List_Next return Address; X- pragma Import (C, To_Canonical_File_List_Next, X- "to_canonical_file_list_next"); X- X- procedure To_Canonical_File_List_Free; X- pragma Import (C, To_Canonical_File_List_Free, X- "to_canonical_file_list_free"); X- X- Num_Files : Integer; X- C_Wildcard_Host_File : String (1 .. Wildcard_Host_File'Length + 1); X- X- begin X- C_Wildcard_Host_File (1 .. Wildcard_Host_File'Length) := X- Wildcard_Host_File; X- C_Wildcard_Host_File (C_Wildcard_Host_File'Last) := ASCII.NUL; X- X- -- Do the expansion and say how many there are X- X- Num_Files := To_Canonical_File_List_Init X- (C_Wildcard_Host_File'Address, Boolean'Pos (Only_Dirs)); X- X- declare X- Canonical_File_List : String_Access_List (1 .. Num_Files); X- Canonical_File_Addr : Address; X- Canonical_File_Len : Integer; X- X- begin X- -- Retrieve the expanded directoy names and build the list X- X- for J in 1 .. Num_Files loop X- Canonical_File_Addr := To_Canonical_File_List_Next; X- Canonical_File_Len := C_String_Length (Canonical_File_Addr); X- Canonical_File_List (J) := To_Path_String_Access X- (Canonical_File_Addr, Canonical_File_Len); X- end loop; X- X- -- Free up the storage X- X- To_Canonical_File_List_Free; X- X- return new String_Access_List'(Canonical_File_List); X- end; X- end To_Canonical_File_List; X- X- --------------------------- X -- To_Canonical_Dir_Spec -- X --------------------------- X END-of-jgnat/patches/patch-ab echo x - jgnat/patches/patch-ac sed 's/^X//' >jgnat/patches/patch-ac << 'END-of-jgnat/patches/patch-ac' X--- g-os_lib.adb.orig Tue Apr 4 20:32:52 2000 X+++ g-os_lib.adb Tue Apr 4 20:33:38 2000 X@@ -173,25 +173,11 @@ X (FD : out File_Descriptor; X Name : out Temp_File_Name) X is X- function Get_Temp_Name (T : Address) return Address; X- pragma Import (C, Get_Temp_Name, "mktemp"); X- X- function Open_New_Temp X- (Name : System.Address; X- Fmode : Mode) X- return File_Descriptor; X- pragma Import (C, Open_New_Temp, "open_new_temp"); X- X+ function Get_Temp_Name (T : Address) return File_Descriptor; X+ pragma Import (C, Get_Temp_Name, "mkstemp"); X begin X Name := "GNAT-XXXXXX" & ASCII.NUL; X- X- -- Check for NULL pointer returned by C X- X- if Get_Temp_Name (Name'Address) = Null_Address then X- FD := -1; X- else X- FD := Open_New_Temp (Name'Address, Binary); X- end if; X+ FD := Get_Temp_Name (Name'Address); X end Create_Temp_File; X X ----------------- END-of-jgnat/patches/patch-ac echo x - jgnat/patches/patch-ad sed 's/^X//' >jgnat/patches/patch-ad << 'END-of-jgnat/patches/patch-ad' X--- GNAT_libc.java.orig Tue Apr 4 20:52:26 2000 X+++ GNAT_libc.java Tue Apr 4 22:23:54 2000 X@@ -67,9 +67,10 @@ X import java.lang.reflect.Constructor; X import java.lang.reflect.InvocationTargetException; X X-import java.security.AccessControlException; X+// import java.security.AccessControlException; X X import java.util.Date; X+import java.util.Calendar; X import java.util.GregorianCalendar; X X import jgnat.adalib.constraint_error; X@@ -798,17 +799,13 @@ X X // char *tmpnam (char s[L_tmpnam]) X X- static public void tmpnam (Object s) X- { X- byte buf [] = (byte []) s; X+ static public void tmpnam (Object s) X+ { X+ byte buf [] = (byte []) s; X X- try { X- copy (File.createTempFile ("JGNAT-", null).getCanonicalPath (), buf); X- } X- catch (IOException e) { X- buf [0] = 0; X- } X- } X+ copy ("JGNAT-" + (new GregorianCalendar()).get(Calendar.MILLISECOND), X+ buf); X+ } X X // int ungetc (int c, FILE *stream) X END-of-jgnat/patches/patch-ad echo c - jgnat/pkg mkdir -p jgnat/pkg > /dev/null 2>&1 echo x - jgnat/pkg/COMMENT sed 's/^X//' >jgnat/pkg/COMMENT << 'END-of-jgnat/pkg/COMMENT' XAn Ada to Java-Byte-Code compiler END-of-jgnat/pkg/COMMENT echo x - jgnat/pkg/DESCR sed 's/^X//' >jgnat/pkg/DESCR << 'END-of-jgnat/pkg/DESCR' XThis is a port of jgnat, an Ada to Java-Byte-Code compiler. jgnat allows you Xto develop applets or applications in full Ada, and execute them on Xany Java virtual machine. X X- Samuel Tardieu Xsam@inf.enst.fr END-of-jgnat/pkg/DESCR echo x - jgnat/pkg/PLIST sed 's/^X//' >jgnat/pkg/PLIST << 'END-of-jgnat/pkg/PLIST' Xbin/jarmake Xbin/jgnat Xbin/jgnatbind Xbin/jgnatfind Xbin/jgnatlink Xbin/jgnatls Xbin/jgnatmake Xbin/jgnatpsta Xbin/jgnatxref Xbin/jvm2ada Xbin/jvmlist Xbin/jvmstrip Xinfo/dir Xlib/jgnat/adainclude/a-caldel.adb Xlib/jgnat/adainclude/a-caldel.ads Xlib/jgnat/adainclude/a-calend.adb Xlib/jgnat/adainclude/a-calend.ads Xlib/jgnat/adainclude/a-chahan.adb Xlib/jgnat/adainclude/a-chahan.ads Xlib/jgnat/adainclude/a-charac.ads Xlib/jgnat/adainclude/a-chlat1.ads Xlib/jgnat/adainclude/a-colire.adb Xlib/jgnat/adainclude/a-colire.ads Xlib/jgnat/adainclude/a-comlin.adb Xlib/jgnat/adainclude/a-comlin.ads Xlib/jgnat/adainclude/a-cwila1.ads Xlib/jgnat/adainclude/a-decima.adb Xlib/jgnat/adainclude/a-decima.ads Xlib/jgnat/adainclude/a-dynpri.adb Xlib/jgnat/adainclude/a-dynpri.ads Xlib/jgnat/adainclude/a-except.adb Xlib/jgnat/adainclude/a-except.ads Xlib/jgnat/adainclude/a-excpol.adb Xlib/jgnat/adainclude/a-filico.adb Xlib/jgnat/adainclude/a-filico.ads Xlib/jgnat/adainclude/a-finali.adb Xlib/jgnat/adainclude/a-finali.ads Xlib/jgnat/adainclude/a-flteio.ads Xlib/jgnat/adainclude/a-fwteio.ads Xlib/jgnat/adainclude/a-inteio.ads Xlib/jgnat/adainclude/a-ioexce.ads Xlib/jgnat/adainclude/a-iwteio.ads Xlib/jgnat/adainclude/a-lfteio.ads Xlib/jgnat/adainclude/a-lfwtio.ads Xlib/jgnat/adainclude/a-liteio.ads Xlib/jgnat/adainclude/a-liwtio.ads Xlib/jgnat/adainclude/a-llftio.ads Xlib/jgnat/adainclude/a-llfwti.ads Xlib/jgnat/adainclude/a-llitio.ads Xlib/jgnat/adainclude/a-lliwti.ads Xlib/jgnat/adainclude/a-ncelfu.ads Xlib/jgnat/adainclude/a-ngcefu.adb Xlib/jgnat/adainclude/a-ngcefu.ads Xlib/jgnat/adainclude/a-ngcoty.adb Xlib/jgnat/adainclude/a-ngcoty.ads Xlib/jgnat/adainclude/a-ngelfu.adb Xlib/jgnat/adainclude/a-ngelfu.ads Xlib/jgnat/adainclude/a-nlcefu.ads Xlib/jgnat/adainclude/a-nlcoty.ads Xlib/jgnat/adainclude/a-nlelfu.ads Xlib/jgnat/adainclude/a-nllcef.ads Xlib/jgnat/adainclude/a-nllcty.ads Xlib/jgnat/adainclude/a-nllefu.ads Xlib/jgnat/adainclude/a-nscefu.ads Xlib/jgnat/adainclude/a-nscoty.ads Xlib/jgnat/adainclude/a-nselfu.ads Xlib/jgnat/adainclude/a-nucoty.ads Xlib/jgnat/adainclude/a-nudira.adb Xlib/jgnat/adainclude/a-nudira.ads Xlib/jgnat/adainclude/a-nuelfu.ads Xlib/jgnat/adainclude/a-nuflra.adb Xlib/jgnat/adainclude/a-nuflra.ads Xlib/jgnat/adainclude/a-numaux.ads Xlib/jgnat/adainclude/a-numeri.ads Xlib/jgnat/adainclude/a-reatim.adb Xlib/jgnat/adainclude/a-reatim.ads Xlib/jgnat/adainclude/a-retide.adb Xlib/jgnat/adainclude/a-retide.ads Xlib/jgnat/adainclude/a-sfteio.ads Xlib/jgnat/adainclude/a-sfwtio.ads Xlib/jgnat/adainclude/a-siteio.ads Xlib/jgnat/adainclude/a-siwtio.ads Xlib/jgnat/adainclude/a-ssicst.adb Xlib/jgnat/adainclude/a-ssicst.ads Xlib/jgnat/adainclude/a-ssitio.ads Xlib/jgnat/adainclude/a-ssiwti.ads Xlib/jgnat/adainclude/a-stmaco.ads Xlib/jgnat/adainclude/a-strbou.adb Xlib/jgnat/adainclude/a-strbou.ads Xlib/jgnat/adainclude/a-stream.ads Xlib/jgnat/adainclude/a-strfix.adb Xlib/jgnat/adainclude/a-strfix.ads Xlib/jgnat/adainclude/a-string.ads Xlib/jgnat/adainclude/a-strmap.adb Xlib/jgnat/adainclude/a-strmap.ads Xlib/jgnat/adainclude/a-strsea.adb Xlib/jgnat/adainclude/a-strsea.ads Xlib/jgnat/adainclude/a-strunb.adb Xlib/jgnat/adainclude/a-strunb.ads Xlib/jgnat/adainclude/a-ststio.adb Xlib/jgnat/adainclude/a-ststio.ads Xlib/jgnat/adainclude/a-stunau.adb Xlib/jgnat/adainclude/a-stunau.ads Xlib/jgnat/adainclude/a-stwibo.adb Xlib/jgnat/adainclude/a-stwibo.ads Xlib/jgnat/adainclude/a-stwifi.adb Xlib/jgnat/adainclude/a-stwifi.ads Xlib/jgnat/adainclude/a-stwima.adb Xlib/jgnat/adainclude/a-stwima.ads Xlib/jgnat/adainclude/a-stwise.adb Xlib/jgnat/adainclude/a-stwise.ads Xlib/jgnat/adainclude/a-stwiun.adb Xlib/jgnat/adainclude/a-stwiun.ads Xlib/jgnat/adainclude/a-suteio.adb Xlib/jgnat/adainclude/a-suteio.ads Xlib/jgnat/adainclude/a-swmwco.ads Xlib/jgnat/adainclude/a-swuwti.adb Xlib/jgnat/adainclude/a-swuwti.ads Xlib/jgnat/adainclude/a-sytaco.adb Xlib/jgnat/adainclude/a-sytaco.ads Xlib/jgnat/adainclude/a-tags.adb Xlib/jgnat/adainclude/a-tags.ads Xlib/jgnat/adainclude/a-taside.adb Xlib/jgnat/adainclude/a-taside.ads Xlib/jgnat/adainclude/a-teioed.adb Xlib/jgnat/adainclude/a-teioed.ads Xlib/jgnat/adainclude/a-textio.adb Xlib/jgnat/adainclude/a-textio.ads Xlib/jgnat/adainclude/a-ticoau.adb Xlib/jgnat/adainclude/a-ticoau.ads Xlib/jgnat/adainclude/a-ticoio.adb Xlib/jgnat/adainclude/a-ticoio.ads Xlib/jgnat/adainclude/a-tideau.adb Xlib/jgnat/adainclude/a-tideau.ads Xlib/jgnat/adainclude/a-tideio.adb Xlib/jgnat/adainclude/a-tideio.ads Xlib/jgnat/adainclude/a-tienau.adb Xlib/jgnat/adainclude/a-tienau.ads Xlib/jgnat/adainclude/ada.ads Xlib/jgnat/adainclude/a-tienio.adb Xlib/jgnat/adainclude/a-tienio.ads Xlib/jgnat/adainclude/a-tifiio.adb Xlib/jgnat/adainclude/a-tifiio.ads Xlib/jgnat/adainclude/a-tiflau.adb Xlib/jgnat/adainclude/a-tiflau.ads Xlib/jgnat/adainclude/a-tiflio.adb Xlib/jgnat/adainclude/a-tiflio.ads Xlib/jgnat/adainclude/a-tigeau.adb Xlib/jgnat/adainclude/a-tigeau.ads Xlib/jgnat/adainclude/a-tiinau.adb Xlib/jgnat/adainclude/a-tiinau.ads Xlib/jgnat/adainclude/a-tiinio.adb Xlib/jgnat/adainclude/a-tiinio.ads Xlib/jgnat/adainclude/a-timoau.adb Xlib/jgnat/adainclude/a-timoau.ads Xlib/jgnat/adainclude/a-timoio.adb Xlib/jgnat/adainclude/a-timoio.ads Xlib/jgnat/adainclude/a-titest.adb Xlib/jgnat/adainclude/a-titest.ads Xlib/jgnat/adainclude/a-unccon.ads Xlib/jgnat/adainclude/a-uncdea.ads Xlib/jgnat/adainclude/a-witeio.adb Xlib/jgnat/adainclude/a-witeio.ads Xlib/jgnat/adainclude/a-wtcoau.adb Xlib/jgnat/adainclude/a-wtcoau.ads Xlib/jgnat/adainclude/a-wtcoio.adb Xlib/jgnat/adainclude/a-wtcoio.ads Xlib/jgnat/adainclude/a-wtdeau.adb Xlib/jgnat/adainclude/a-wtdeau.ads Xlib/jgnat/adainclude/a-wtdeio.adb Xlib/jgnat/adainclude/a-wtdeio.ads Xlib/jgnat/adainclude/a-wtedit.adb Xlib/jgnat/adainclude/a-wtedit.ads Xlib/jgnat/adainclude/a-wtenau.adb Xlib/jgnat/adainclude/a-wtenau.ads Xlib/jgnat/adainclude/a-wtenio.adb Xlib/jgnat/adainclude/a-wtenio.ads Xlib/jgnat/adainclude/a-wtfiio.adb Xlib/jgnat/adainclude/a-wtfiio.ads Xlib/jgnat/adainclude/a-wtflau.adb Xlib/jgnat/adainclude/a-wtflau.ads Xlib/jgnat/adainclude/a-wtflio.adb Xlib/jgnat/adainclude/a-wtflio.ads Xlib/jgnat/adainclude/a-wtgeau.adb Xlib/jgnat/adainclude/a-wtgeau.ads Xlib/jgnat/adainclude/a-wtinau.adb Xlib/jgnat/adainclude/a-wtinau.ads Xlib/jgnat/adainclude/a-wtinio.adb Xlib/jgnat/adainclude/a-wtinio.ads Xlib/jgnat/adainclude/a-wtmoau.adb Xlib/jgnat/adainclude/a-wtmoau.ads Xlib/jgnat/adainclude/a-wtmoio.adb Xlib/jgnat/adainclude/a-wtmoio.ads Xlib/jgnat/adainclude/a-wttest.adb Xlib/jgnat/adainclude/a-wttest.ads Xlib/jgnat/adainclude/calendar.ads Xlib/jgnat/adainclude/g-busora.adb Xlib/jgnat/adainclude/g-busora.ads Xlib/jgnat/adainclude/g-busorg.adb Xlib/jgnat/adainclude/g-busorg.ads Xlib/jgnat/adainclude/g-casuti.adb Xlib/jgnat/adainclude/g-casuti.ads Xlib/jgnat/adainclude/g-except.ads Xlib/jgnat/adainclude/g-hesora.adb Xlib/jgnat/adainclude/g-hesora.ads Xlib/jgnat/adainclude/g-hesorg.adb Xlib/jgnat/adainclude/g-hesorg.ads Xlib/jgnat/adainclude/g-htable.adb Xlib/jgnat/adainclude/g-htable.ads Xlib/jgnat/adainclude/g-io_aux.adb Xlib/jgnat/adainclude/g-io_aux.ads Xlib/jgnat/adainclude/g-regexp.adb Xlib/jgnat/adainclude/g-regexp.ads Xlib/jgnat/adainclude/g-regpat.adb Xlib/jgnat/adainclude/g-regpat.ads Xlib/jgnat/adainclude/g-speche.adb Xlib/jgnat/adainclude/g-speche.ads Xlib/jgnat/adainclude/g-tasloc.adb Xlib/jgnat/adainclude/g-tasloc.ads Xlib/jgnat/adainclude/gnat.ads Xlib/jgnat/adainclude/i-c.adb Xlib/jgnat/adainclude/i-c.ads Xlib/jgnat/adainclude/i-cstrea.adb Xlib/jgnat/adainclude/i-cstrea.ads Xlib/jgnat/adainclude/i-jalaob.ads Xlib/jgnat/adainclude/i-jalasy.ads Xlib/jgnat/adainclude/i-jalath.ads Xlib/jgnat/adainclude/i-java.ads Xlib/jgnat/adainclude/i-javlan.ads Xlib/jgnat/adainclude/interfac.ads Xlib/jgnat/adainclude/ioexcept.ads Xlib/jgnat/adainclude/java.ads Xlib/jgnat/adainclude/s-arit64.adb Xlib/jgnat/adainclude/s-arit64.ads Xlib/jgnat/adainclude/s-assert.adb Xlib/jgnat/adainclude/s-assert.ads Xlib/jgnat/adainclude/s-atacco.adb Xlib/jgnat/adainclude/s-atacco.ads Xlib/jgnat/adainclude/s-bitops.adb Xlib/jgnat/adainclude/s-bitops.ads Xlib/jgnat/adainclude/s-chepoo.ads Xlib/jgnat/adainclude/s-exnflt.ads Xlib/jgnat/adainclude/s-exngen.adb Xlib/jgnat/adainclude/s-exngen.ads Xlib/jgnat/adainclude/s-exnint.ads Xlib/jgnat/adainclude/s-exnlfl.ads Xlib/jgnat/adainclude/s-exnlin.ads Xlib/jgnat/adainclude/s-exnllf.ads Xlib/jgnat/adainclude/s-exnlli.ads Xlib/jgnat/adainclude/s-exnsfl.ads Xlib/jgnat/adainclude/s-exnsin.ads Xlib/jgnat/adainclude/s-exnssi.ads Xlib/jgnat/adainclude/s-expflt.ads Xlib/jgnat/adainclude/s-expgen.adb Xlib/jgnat/adainclude/s-expgen.ads Xlib/jgnat/adainclude/s-expint.ads Xlib/jgnat/adainclude/s-explfl.ads Xlib/jgnat/adainclude/s-explin.ads Xlib/jgnat/adainclude/s-expllf.ads Xlib/jgnat/adainclude/s-explli.ads Xlib/jgnat/adainclude/s-expllu.adb Xlib/jgnat/adainclude/s-expllu.ads Xlib/jgnat/adainclude/s-expmod.adb Xlib/jgnat/adainclude/s-expmod.ads Xlib/jgnat/adainclude/s-expsfl.ads Xlib/jgnat/adainclude/s-expsin.ads Xlib/jgnat/adainclude/s-expssi.ads Xlib/jgnat/adainclude/s-expuns.adb Xlib/jgnat/adainclude/s-expuns.ads Xlib/jgnat/adainclude/s-fatflt.ads Xlib/jgnat/adainclude/s-fatgen.adb Xlib/jgnat/adainclude/s-fatgen.ads Xlib/jgnat/adainclude/s-fatlfl.ads Xlib/jgnat/adainclude/s-fatllf.ads Xlib/jgnat/adainclude/s-fatsfl.ads Xlib/jgnat/adainclude/s-ficobl.ads Xlib/jgnat/adainclude/s-fileio.adb Xlib/jgnat/adainclude/s-fileio.ads Xlib/jgnat/adainclude/s-finimp.adb Xlib/jgnat/adainclude/s-finimp.ads Xlib/jgnat/adainclude/s-finroo.adb Xlib/jgnat/adainclude/s-finroo.ads Xlib/jgnat/adainclude/s-fore.adb Xlib/jgnat/adainclude/s-fore.ads Xlib/jgnat/adainclude/s-imgbiu.adb Xlib/jgnat/adainclude/s-imgbiu.ads Xlib/jgnat/adainclude/s-imgboo.adb Xlib/jgnat/adainclude/s-imgboo.ads Xlib/jgnat/adainclude/s-imgcha.adb Xlib/jgnat/adainclude/s-imgcha.ads Xlib/jgnat/adainclude/s-imgdec.adb Xlib/jgnat/adainclude/s-imgdec.ads Xlib/jgnat/adainclude/s-imgint.adb Xlib/jgnat/adainclude/s-imgint.ads Xlib/jgnat/adainclude/s-imgllb.adb Xlib/jgnat/adainclude/s-imgllb.ads Xlib/jgnat/adainclude/s-imglld.adb Xlib/jgnat/adainclude/s-imglld.ads Xlib/jgnat/adainclude/s-imglli.adb Xlib/jgnat/adainclude/s-imglli.ads Xlib/jgnat/adainclude/s-imgllu.adb Xlib/jgnat/adainclude/s-imgllu.ads Xlib/jgnat/adainclude/s-imgllw.adb Xlib/jgnat/adainclude/s-imgllw.ads Xlib/jgnat/adainclude/s-imgrea.adb Xlib/jgnat/adainclude/s-imgrea.ads Xlib/jgnat/adainclude/s-imguns.adb Xlib/jgnat/adainclude/s-imguns.ads Xlib/jgnat/adainclude/s-imgwch.adb Xlib/jgnat/adainclude/s-imgwch.ads Xlib/jgnat/adainclude/s-imgwiu.adb Xlib/jgnat/adainclude/s-imgwiu.ads Xlib/jgnat/adainclude/s-mantis.adb Xlib/jgnat/adainclude/s-mantis.ads Xlib/jgnat/adainclude/s-osinte.ads Xlib/jgnat/adainclude/s-osprim.adb Xlib/jgnat/adainclude/s-osprim.ads Xlib/jgnat/adainclude/s-parame.adb Xlib/jgnat/adainclude/s-parame.ads Xlib/jgnat/adainclude/s-powtab.ads Xlib/jgnat/adainclude/s-proinf.adb Xlib/jgnat/adainclude/s-proinf.ads Xlib/jgnat/adainclude/s-rpc.adb Xlib/jgnat/adainclude/s-rpc.ads Xlib/jgnat/adainclude/s-secsta.adb Xlib/jgnat/adainclude/s-secsta.ads Xlib/jgnat/adainclude/s-soflin.adb Xlib/jgnat/adainclude/s-soflin.ads Xlib/jgnat/adainclude/s-sopco3.adb Xlib/jgnat/adainclude/s-sopco3.ads Xlib/jgnat/adainclude/s-sopco4.adb Xlib/jgnat/adainclude/s-sopco4.ads Xlib/jgnat/adainclude/s-sopco5.adb Xlib/jgnat/adainclude/s-sopco5.ads Xlib/jgnat/adainclude/s-stache.adb Xlib/jgnat/adainclude/s-stache.ads Xlib/jgnat/adainclude/s-stalib.adb Xlib/jgnat/adainclude/s-stalib.ads Xlib/jgnat/adainclude/s-std.adb Xlib/jgnat/adainclude/s-std.ads Xlib/jgnat/adainclude/s-stoele.adb Xlib/jgnat/adainclude/s-stoele.ads Xlib/jgnat/adainclude/s-stopoo.ads Xlib/jgnat/adainclude/s-stratt.adb Xlib/jgnat/adainclude/s-stratt.ads Xlib/jgnat/adainclude/s-strops.adb Xlib/jgnat/adainclude/s-strops.ads Xlib/jgnat/adainclude/s-taasde.adb Xlib/jgnat/adainclude/s-taasde.ads Xlib/jgnat/adainclude/s-tadeca.adb Xlib/jgnat/adainclude/s-tadeca.ads Xlib/jgnat/adainclude/s-tadert.adb Xlib/jgnat/adainclude/s-tadert.ads Xlib/jgnat/adainclude/s-taenca.adb Xlib/jgnat/adainclude/s-taenca.ads Xlib/jgnat/adainclude/s-taprob.adb Xlib/jgnat/adainclude/s-taprob.ads Xlib/jgnat/adainclude/s-taprop.adb Xlib/jgnat/adainclude/s-taprop.ads Xlib/jgnat/adainclude/s-tarest.adb Xlib/jgnat/adainclude/s-tarest.ads Xlib/jgnat/adainclude/s-tasdeb.adb Xlib/jgnat/adainclude/s-tasdeb.ads Xlib/jgnat/adainclude/s-tasinf.adb Xlib/jgnat/adainclude/s-tasinf.ads Xlib/jgnat/adainclude/s-tasini.adb Xlib/jgnat/adainclude/s-tasini.ads Xlib/jgnat/adainclude/s-taskin.adb Xlib/jgnat/adainclude/s-taskin.ads Xlib/jgnat/adainclude/s-taspri.ads Xlib/jgnat/adainclude/s-tasque.adb Xlib/jgnat/adainclude/s-tasque.ads Xlib/jgnat/adainclude/s-tasren.adb Xlib/jgnat/adainclude/s-tasren.ads Xlib/jgnat/adainclude/s-tasres.ads Xlib/jgnat/adainclude/s-tassta.adb Xlib/jgnat/adainclude/s-tassta.ads Xlib/jgnat/adainclude/s-tasuti.adb Xlib/jgnat/adainclude/s-tasuti.ads Xlib/jgnat/adainclude/s-tataat.adb Xlib/jgnat/adainclude/s-tataat.ads Xlib/jgnat/adainclude/s-tpoben.adb Xlib/jgnat/adainclude/s-tpoben.ads Xlib/jgnat/adainclude/s-tpobop.adb Xlib/jgnat/adainclude/s-tpobop.ads Xlib/jgnat/adainclude/s-tposen.adb Xlib/jgnat/adainclude/s-tposen.ads Xlib/jgnat/adainclude/s-unstyp.ads Xlib/jgnat/adainclude/s-valboo.adb Xlib/jgnat/adainclude/s-valboo.ads Xlib/jgnat/adainclude/s-valcha.adb Xlib/jgnat/adainclude/s-valcha.ads Xlib/jgnat/adainclude/s-valdec.adb Xlib/jgnat/adainclude/s-valdec.ads Xlib/jgnat/adainclude/s-valenu.adb Xlib/jgnat/adainclude/s-valenu.ads Xlib/jgnat/adainclude/s-valint.adb Xlib/jgnat/adainclude/s-valint.ads Xlib/jgnat/adainclude/s-vallld.adb Xlib/jgnat/adainclude/s-vallld.ads Xlib/jgnat/adainclude/s-vallli.adb Xlib/jgnat/adainclude/s-vallli.ads Xlib/jgnat/adainclude/s-valllu.adb Xlib/jgnat/adainclude/s-valllu.ads Xlib/jgnat/adainclude/s-valrea.adb Xlib/jgnat/adainclude/s-valrea.ads Xlib/jgnat/adainclude/s-valuns.adb Xlib/jgnat/adainclude/s-valuns.ads Xlib/jgnat/adainclude/s-valuti.adb Xlib/jgnat/adainclude/s-valuti.ads Xlib/jgnat/adainclude/s-valwch.adb Xlib/jgnat/adainclude/s-valwch.ads Xlib/jgnat/adainclude/s-vercon.adb Xlib/jgnat/adainclude/s-vercon.ads Xlib/jgnat/adainclude/s-wchcnv.adb Xlib/jgnat/adainclude/s-wchcnv.ads Xlib/jgnat/adainclude/s-wchcon.ads Xlib/jgnat/adainclude/s-wchjis.adb Xlib/jgnat/adainclude/s-wchjis.ads Xlib/jgnat/adainclude/s-wchstw.adb Xlib/jgnat/adainclude/s-wchstw.ads Xlib/jgnat/adainclude/s-wchwts.adb Xlib/jgnat/adainclude/s-wchwts.ads Xlib/jgnat/adainclude/s-widboo.adb Xlib/jgnat/adainclude/s-widboo.ads Xlib/jgnat/adainclude/s-widcha.adb Xlib/jgnat/adainclude/s-widcha.ads Xlib/jgnat/adainclude/s-widenu.adb Xlib/jgnat/adainclude/s-widenu.ads Xlib/jgnat/adainclude/s-widlli.adb Xlib/jgnat/adainclude/s-widlli.ads Xlib/jgnat/adainclude/s-widllu.adb Xlib/jgnat/adainclude/s-widllu.ads Xlib/jgnat/adainclude/s-widwch.adb Xlib/jgnat/adainclude/s-widwch.ads Xlib/jgnat/adainclude/s-wwdcha.adb Xlib/jgnat/adainclude/s-wwdcha.ads Xlib/jgnat/adainclude/s-wwdenu.adb Xlib/jgnat/adainclude/s-wwdenu.ads Xlib/jgnat/adainclude/s-wwdwch.adb Xlib/jgnat/adainclude/s-wwdwch.ads Xlib/jgnat/adainclude/system.ads Xlib/jgnat/adainclude/text_io.ads Xlib/jgnat/adainclude/unchconv.ads Xlib/jgnat/adainclude/unchdeal.ads Xlib/jgnat/adalib/a-caldel.ali Xlib/jgnat/adalib/a-calend.ali Xlib/jgnat/adalib/a-chahan.ali Xlib/jgnat/adalib/a-charac.ali Xlib/jgnat/adalib/a-chlat1.ali Xlib/jgnat/adalib/a-colire.ali Xlib/jgnat/adalib/a-comlin.ali Xlib/jgnat/adalib/a-cwila1.ali Xlib/jgnat/adalib/a-decima.ali Xlib/jgnat/adalib/a-dynpri.ali Xlib/jgnat/adalib/a-except.ali Xlib/jgnat/adalib/a-filico.ali Xlib/jgnat/adalib/a-finali.ali Xlib/jgnat/adalib/a-flteio.ali Xlib/jgnat/adalib/a-fwteio.ali Xlib/jgnat/adalib/a-inteio.ali Xlib/jgnat/adalib/a-ioexce.ali Xlib/jgnat/adalib/a-iwteio.ali Xlib/jgnat/adalib/a-lfteio.ali Xlib/jgnat/adalib/a-lfwtio.ali Xlib/jgnat/adalib/a-liteio.ali Xlib/jgnat/adalib/a-liwtio.ali Xlib/jgnat/adalib/a-llftio.ali Xlib/jgnat/adalib/a-llfwti.ali Xlib/jgnat/adalib/a-llitio.ali Xlib/jgnat/adalib/a-lliwti.ali Xlib/jgnat/adalib/a-ncelfu.ali Xlib/jgnat/adalib/a-nlcefu.ali Xlib/jgnat/adalib/a-nlcoty.ali Xlib/jgnat/adalib/a-nlelfu.ali Xlib/jgnat/adalib/a-nllcef.ali Xlib/jgnat/adalib/a-nllcty.ali Xlib/jgnat/adalib/a-nllefu.ali Xlib/jgnat/adalib/a-nscefu.ali Xlib/jgnat/adalib/a-nscoty.ali Xlib/jgnat/adalib/a-nselfu.ali Xlib/jgnat/adalib/a-nucoty.ali Xlib/jgnat/adalib/a-nuelfu.ali Xlib/jgnat/adalib/a-nuflra.ali Xlib/jgnat/adalib/a-numaux.ali Xlib/jgnat/adalib/a-numeri.ali Xlib/jgnat/adalib/a-reatim.ali Xlib/jgnat/adalib/a-retide.ali Xlib/jgnat/adalib/a-sfteio.ali Xlib/jgnat/adalib/a-sfwtio.ali Xlib/jgnat/adalib/a-siteio.ali Xlib/jgnat/adalib/a-siwtio.ali Xlib/jgnat/adalib/a-ssicst.ali Xlib/jgnat/adalib/a-ssitio.ali Xlib/jgnat/adalib/a-ssiwti.ali Xlib/jgnat/adalib/a-stmaco.ali Xlib/jgnat/adalib/a-strbou.ali Xlib/jgnat/adalib/a-stream.ali Xlib/jgnat/adalib/a-strfix.ali Xlib/jgnat/adalib/a-string.ali Xlib/jgnat/adalib/a-strmap.ali Xlib/jgnat/adalib/a-strsea.ali Xlib/jgnat/adalib/a-strunb.ali Xlib/jgnat/adalib/a-ststio.ali Xlib/jgnat/adalib/a-stunau.ali Xlib/jgnat/adalib/a-stwibo.ali Xlib/jgnat/adalib/a-stwifi.ali Xlib/jgnat/adalib/a-stwima.ali Xlib/jgnat/adalib/a-stwise.ali Xlib/jgnat/adalib/a-stwiun.ali Xlib/jgnat/adalib/a-suteio.ali Xlib/jgnat/adalib/a-swmwco.ali Xlib/jgnat/adalib/a-swuwti.ali Xlib/jgnat/adalib/a-sytaco.ali Xlib/jgnat/adalib/a-tags.ali Xlib/jgnat/adalib/a-taside.ali Xlib/jgnat/adalib/a-teioed.ali Xlib/jgnat/adalib/a-textio.ali Xlib/jgnat/adalib/a-ticoau.ali Xlib/jgnat/adalib/a-tideau.ali Xlib/jgnat/adalib/a-tienau.ali Xlib/jgnat/adalib/a-tiflau.ali Xlib/jgnat/adalib/a-tigeau.ali Xlib/jgnat/adalib/a-tiinau.ali Xlib/jgnat/adalib/a-timoau.ali Xlib/jgnat/adalib/a-titest.ali Xlib/jgnat/adalib/a-witeio.ali Xlib/jgnat/adalib/a-wtcoau.ali Xlib/jgnat/adalib/a-wtdeau.ali Xlib/jgnat/adalib/a-wtedit.ali Xlib/jgnat/adalib/a-wtenau.ali Xlib/jgnat/adalib/a-wtflau.ali Xlib/jgnat/adalib/a-wtgeau.ali Xlib/jgnat/adalib/a-wtinau.ali Xlib/jgnat/adalib/a-wtmoau.ali Xlib/jgnat/adalib/a-wttest.ali Xlib/jgnat/adalib/ada.ali Xlib/jgnat/adalib/calendar.ali Xlib/jgnat/adalib/g-busora.ali Xlib/jgnat/adalib/g-casuti.ali Xlib/jgnat/adalib/g-except.ali Xlib/jgnat/adalib/g-hesora.ali Xlib/jgnat/adalib/g-htable.ali Xlib/jgnat/adalib/g-io_aux.ali Xlib/jgnat/adalib/g-regexp.ali Xlib/jgnat/adalib/g-regpat.ali Xlib/jgnat/adalib/g-speche.ali Xlib/jgnat/adalib/g-tasloc.ali Xlib/jgnat/adalib/gnat.ali Xlib/jgnat/adalib/i-c.ali Xlib/jgnat/adalib/i-cstrea.ali Xlib/jgnat/adalib/i-jalaob.ali Xlib/jgnat/adalib/i-jalasy.ali Xlib/jgnat/adalib/i-jalath.ali Xlib/jgnat/adalib/i-java.ali Xlib/jgnat/adalib/i-javlan.ali Xlib/jgnat/adalib/interfac.ali Xlib/jgnat/adalib/ioexcept.ali Xlib/jgnat/adalib/java.ali Xlib/jgnat/adalib/s-arit64.ali Xlib/jgnat/adalib/s-assert.ali Xlib/jgnat/adalib/s-bitops.ali Xlib/jgnat/adalib/s-chepoo.ali Xlib/jgnat/adalib/s-exnflt.ali Xlib/jgnat/adalib/s-exngen.ali Xlib/jgnat/adalib/s-exnint.ali Xlib/jgnat/adalib/s-exnlfl.ali Xlib/jgnat/adalib/s-exnlin.ali Xlib/jgnat/adalib/s-exnllf.ali Xlib/jgnat/adalib/s-exnlli.ali Xlib/jgnat/adalib/s-exnsfl.ali Xlib/jgnat/adalib/s-exnsin.ali Xlib/jgnat/adalib/s-exnssi.ali Xlib/jgnat/adalib/s-expflt.ali Xlib/jgnat/adalib/s-expgen.ali Xlib/jgnat/adalib/s-expint.ali Xlib/jgnat/adalib/s-explfl.ali Xlib/jgnat/adalib/s-explin.ali Xlib/jgnat/adalib/s-expllf.ali Xlib/jgnat/adalib/s-explli.ali Xlib/jgnat/adalib/s-expllu.ali Xlib/jgnat/adalib/s-expmod.ali Xlib/jgnat/adalib/s-expsfl.ali Xlib/jgnat/adalib/s-expsin.ali Xlib/jgnat/adalib/s-expssi.ali Xlib/jgnat/adalib/s-expuns.ali Xlib/jgnat/adalib/s-fatflt.ali Xlib/jgnat/adalib/s-fatlfl.ali Xlib/jgnat/adalib/s-fatllf.ali Xlib/jgnat/adalib/s-fatsfl.ali Xlib/jgnat/adalib/s-ficobl.ali Xlib/jgnat/adalib/s-fileio.ali Xlib/jgnat/adalib/s-finimp.ali Xlib/jgnat/adalib/s-finroo.ali Xlib/jgnat/adalib/s-fore.ali Xlib/jgnat/adalib/s-imgbiu.ali Xlib/jgnat/adalib/s-imgboo.ali Xlib/jgnat/adalib/s-imgcha.ali Xlib/jgnat/adalib/s-imgdec.ali Xlib/jgnat/adalib/s-imgint.ali Xlib/jgnat/adalib/s-imgllb.ali Xlib/jgnat/adalib/s-imglld.ali Xlib/jgnat/adalib/s-imglli.ali Xlib/jgnat/adalib/s-imgllu.ali Xlib/jgnat/adalib/s-imgllw.ali Xlib/jgnat/adalib/s-imgrea.ali Xlib/jgnat/adalib/s-imguns.ali Xlib/jgnat/adalib/s-imgwch.ali Xlib/jgnat/adalib/s-imgwiu.ali Xlib/jgnat/adalib/s-mantis.ali Xlib/jgnat/adalib/s-osinte.ali Xlib/jgnat/adalib/s-osprim.ali Xlib/jgnat/adalib/s-parame.ali Xlib/jgnat/adalib/s-powtab.ali Xlib/jgnat/adalib/s-proinf.ali Xlib/jgnat/adalib/s-rpc.ali Xlib/jgnat/adalib/s-secsta.ali Xlib/jgnat/adalib/s-soflin.ali Xlib/jgnat/adalib/s-sopco3.ali Xlib/jgnat/adalib/s-sopco4.ali Xlib/jgnat/adalib/s-sopco5.ali Xlib/jgnat/adalib/s-stache.ali Xlib/jgnat/adalib/s-stalib.ali Xlib/jgnat/adalib/s-std.ali Xlib/jgnat/adalib/s-stoele.ali Xlib/jgnat/adalib/s-stopoo.ali Xlib/jgnat/adalib/s-stratt.ali Xlib/jgnat/adalib/s-strops.ali Xlib/jgnat/adalib/s-taasde.ali Xlib/jgnat/adalib/s-tadeca.ali Xlib/jgnat/adalib/s-tadert.ali Xlib/jgnat/adalib/s-taenca.ali Xlib/jgnat/adalib/s-taprob.ali Xlib/jgnat/adalib/s-taprop.ali Xlib/jgnat/adalib/s-tarest.ali Xlib/jgnat/adalib/s-tasdeb.ali Xlib/jgnat/adalib/s-tasinf.ali Xlib/jgnat/adalib/s-tasini.ali Xlib/jgnat/adalib/s-taskin.ali Xlib/jgnat/adalib/s-taspri.ali Xlib/jgnat/adalib/s-tasque.ali Xlib/jgnat/adalib/s-tasren.ali Xlib/jgnat/adalib/s-tasres.ali Xlib/jgnat/adalib/s-tassta.ali Xlib/jgnat/adalib/s-tasuti.ali Xlib/jgnat/adalib/s-tataat.ali Xlib/jgnat/adalib/s-tpoben.ali Xlib/jgnat/adalib/s-tpobop.ali Xlib/jgnat/adalib/s-tposen.ali Xlib/jgnat/adalib/s-unstyp.ali Xlib/jgnat/adalib/s-valboo.ali Xlib/jgnat/adalib/s-valcha.ali Xlib/jgnat/adalib/s-valdec.ali Xlib/jgnat/adalib/s-valenu.ali Xlib/jgnat/adalib/s-valint.ali Xlib/jgnat/adalib/s-vallld.ali Xlib/jgnat/adalib/s-vallli.ali Xlib/jgnat/adalib/s-valllu.ali Xlib/jgnat/adalib/s-valrea.ali Xlib/jgnat/adalib/s-valuns.ali Xlib/jgnat/adalib/s-valuti.ali Xlib/jgnat/adalib/s-valwch.ali Xlib/jgnat/adalib/s-vercon.ali Xlib/jgnat/adalib/s-wchcnv.ali Xlib/jgnat/adalib/s-wchcon.ali Xlib/jgnat/adalib/s-wchjis.ali Xlib/jgnat/adalib/s-wchstw.ali Xlib/jgnat/adalib/s-wchwts.ali Xlib/jgnat/adalib/s-widboo.ali Xlib/jgnat/adalib/s-widcha.ali Xlib/jgnat/adalib/s-widenu.ali Xlib/jgnat/adalib/s-widlli.ali Xlib/jgnat/adalib/s-widllu.ali Xlib/jgnat/adalib/s-widwch.ali Xlib/jgnat/adalib/s-wwdcha.ali Xlib/jgnat/adalib/s-wwdenu.ali Xlib/jgnat/adalib/s-wwdwch.ali Xlib/jgnat/adalib/system.ali Xlib/jgnat/adalib/text_io.ali Xlib/jgnat/jgnat.jar X@dirrm lib/jgnat/adainclude X@dirrm lib/jgnat/adalib X@dirrm lib/jgnat END-of-jgnat/pkg/PLIST exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 10: 7: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.af.airnet.ne.jp (mail.af.airnet.ne.jp [210.159.66.49]) by hub.freebsd.org (Postfix) with ESMTP id 9812F37B784 for ; Sun, 9 Apr 2000 10:03:14 -0700 (PDT) (envelope-from imura@cs.titech.ac.jp) Received: from imura.af.airnet.ne.jp (tok111.airnet.ne.jp [210.159.88.111]) by mail.af.airnet.ne.jp (8.8.8/3.6W/06/13/98-AF.AIRNET.NE.JP) with ESMTP id CAA30640; Mon, 10 Apr 2000 02:03:03 +0900 Posted-Date: Mon, 10 Apr 2000 02:02:50 +0900 (JST) To: sada@bsdclub.org Cc: ports@FreeBSD.ORG Subject: Re: netscape 6.00.p1 From: "R. Imura" In-Reply-To: <20000409015232Q.sada@bsdclub.org> References: <20000408141935B.sada@kb.k-cable.ne.jp> <20000409015232Q.sada@bsdclub.org> X-Mailer: Mew version 1.94b20 on Emacs 19.34 / Mule 2.3 =?iso-2022-jp?B?KBskQkt2RSYyVhsoQik=?= X-Prom-Mew: Prom-Mew 1.93.4 (procmail reader for Mew) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000410020248T.imura@cs.titech.ac.jp> Date: Mon, 10 Apr 2000 02:02:48 +0900 X-Dispatcher: imput version 990401(IM113) Lines: 23 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Below is a port which install only linux-netscape6 itself. > COMMENT and DESCR should be rewritten. Unfotunately netscape6 died immediately with 3.4-stable box. % netscape6 .//run-mozilla.sh ./mozilla-bin MOZILLA_FIVE_HOME=/usr/local/lib/linux-netscape6 LD_LIBRARY_PATH=/usr/local/lib/linux-netscape6:/usr/local/lib/linux-netscape6/Cool XPCS_HOME=/usr/local/lib/linux-netscape6/Cool MOZ_PROGRAM=./mozilla-bin MOZ_TOOLKIT= moz_debug=0 moz_debugger= Floating point exception Any idea? linux-netscape47 works fine. -- R. Imura // my private mail address has changed. // imura@cs.titech.ac.jp ====> imura@af.airnet.ne.jp /(-.-)y-~~ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 11:25:17 2000 Delivered-To: freebsd-ports@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 8075637B763 for ; Sun, 9 Apr 2000 11:24:52 -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.10.0/8.10.0) with ESMTP id e39IOgM36582; Mon, 10 Apr 2000 02:24:42 +0800 (CST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.9.3/8.9.3) id CAA96981; Mon, 10 Apr 2000 02:24:30 +0800 (CST) (envelope-from ijliao) Date: Mon, 10 Apr 2000 02:24:30 +0800 From: Ying-Chieh Liao To: Doug Barton Cc: ijliao@csie.nctu.edu.tw, ports@freebsd.org Subject: Re: [PATCH] Upgrade of t1lib port Message-ID: <20000410022430.A96972@terry.dorm8.nctu.edu.tw> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 1.0i In-Reply-To: =?iso-8859-1?Q?=3CPine=2EBSF=2E4=2E21=2E0004061813150=2E38516-200000=40d?= =?iso-8859-1?Q?t051n0b=2Esan=2Err=2Ecom=3E=3B_from_Doug=40gorean=2Eorg_o?= =?iso-8859-1?Q?n_=A5|_=2C___4_06=2C_2000_at_06:24:15=A4U=A4=C8_-0700?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On ¥| , 4 06, 2000 at 18:24:15 -0700, Doug Barton wrote: > The t1lib port is a dependency for xpdf. Unfortunately, the > GNU'sters have deleted the previous version of the library from their > sites, so the dependency fails completely. > > This was an easy upgrade. The one patch applies cleanly, and the > PLIST did not need an update. The lib works, xpdf works, end of story. I've tested it, and it worked well :) -- Allocate four digits for the year part of a date : a new millennium is coming. --- David Huber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 11:34:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id DBFEE37B74B; Sun, 9 Apr 2000 11:34:47 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id UAA73657; Sun, 9 Apr 2000 20:34:46 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.9.3/8.9.3) id LAA99391; Sun, 9 Apr 2000 11:34:34 -0700 (PDT) (envelope-from reg) Date: Sun, 9 Apr 2000 11:34:34 -0700 From: Jeremy Lea To: Satoshi Asami Cc: ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable Message-ID: <20000409113434.B32928@shale.csir.co.za> References: <200004090812.BAA04016@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004090812.BAA04016@silvia.hip.berkeley.edu>; from asami@FreeBSD.ORG on Sun, Apr 09, 2000 at 01:12:18AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Sun, Apr 09, 2000 at 01:12:18AM -0700, Satoshi Asami wrote: > +PKGNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} ${PKGNAMEPREFIX:S/$/-/:N-} ;-) How about just PKGPREFIX? and also a PKGSUFFIX which can be used for ports which have options (like the ispell ports, or the letter/a4 style ports)? +PKGNAME= ${PKGPREFIX:S/$/-/:N-}${PORTNAME}-${PKGSUFFIX:S/$/-/:N-}${PORTVERSION} Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 12: 6:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id 619FF37B521 for ; Sun, 9 Apr 2000 12:06:20 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.9.3/8.9.3) id VAA41135 for freebsd-ports@freebsd.org; Sun, 9 Apr 2000 21:07:11 +0200 (CEST) (envelope-from stijn) Date: Sun, 9 Apr 2000 21:07:10 +0200 From: Stijn Hoop To: freebsd-ports@freebsd.org Subject: Re: proposal: PRENAME variable Message-ID: <20000409210710.A41028@pcwin002.win.tue.nl> References: <20000409115602.A1056@cichlids.cichlids.com> <20000409213821C.sada@bsdclub.org> <20000409153342.A72327@mithrandr.moria.org> <20000409153954.A1100@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000409153954.A1100@cichlids.cichlids.com>; from alex@big.endian.de on Sun, Apr 09, 2000 at 03:39:54PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Apr 09, 2000 at 03:39:54PM +0200, Alexander Langer wrote: > > More seriously, the dpkg package management engine is pretty nifty, > yes. Especially with apt as frontend... > > even if the code is painful on the eyes and brain. My Debian-wielding > the usage, too. Nope, tried apt yet? 'apt-get upgrade' will upgrade your whole system (and pretty automatic most of the time). Something like that for the ports system would be very cool... (and only for the ports system btw). --Stijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 12:28:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id DB19E37B7F6; Sun, 9 Apr 2000 12:28:28 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (pc343042.tokyo.jcom.ne.jp [203.140.143.42]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 03/13/00) with ESMTP id EAA20838; Mon, 10 Apr 2000 04:28:27 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id EAA21117; Mon, 10 Apr 2000 04:27:55 +0900 (JST) Date: Mon, 10 Apr 2000 04:27:54 +0900 Message-ID: <86hfdbkrb9.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: reg@FreeBSD.ORG Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable In-Reply-To: In your message of "Sun, 9 Apr 2000 11:34:34 -0700" <20000409113434.B32928@shale.csir.co.za> References: <200004090812.BAA04016@silvia.hip.berkeley.edu> <20000409113434.B32928@shale.csir.co.za> User-Agent: Wanderlust/1.1.1 (Purple Rain) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Sun, 9 Apr 2000 11:34:34 -0700, Jeremy Lea wrote: > On Sun, Apr 09, 2000 at 01:12:18AM -0700, Satoshi Asami wrote: > > +PKGNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} > > ${PKGNAMEPREFIX:S/$/-/:N-} ;-) > > How about just PKGPREFIX? and also a PKGSUFFIX which can be used for > ports which have options (like the ispell ports, or the letter/a4 style > ports)? `PKGPREFIX' must be confusing as PKG_PREFIX is already used around pkg_add. Anyway PKGNAMESUFFIX is a cool idea! -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 13: 0:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id BD72637B708; Sun, 9 Apr 2000 13:00:28 -0700 (PDT) (envelope-from nbm@sunesi.net) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 12eNro-000JYy-00; Sun, 09 Apr 2000 21:59:32 +0200 Date: Sun, 9 Apr 2000 21:59:32 +0200 From: Neil Blakey-Milner To: Richard Wackerbarth Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable Message-ID: <20000409215932.A75068@mithrandr.moria.org> References: <200004090812.BAA04016@silvia.hip.berkeley.edu> <00040907122000.05113@nomad.dataplex.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <00040907122000.05113@nomad.dataplex.net> Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun 2000-04-09 (07:12), Richard Wackerbarth wrote: > > We can even put "PKGNAMEPREFIX=ja-" in ports/japanese/Makefile.inc and > > let the bsd.port.mk inclusion rule take care of most of the ports > > (except for those use MASTERDIR in another category). > > > Assume I have ports/discussion/myport and ports/japanese/discussion/myport > They depend on ports/discussion/mylib and ports/japanese/discussion/mylib > respectively. > They also depend on ports/discussion/commonlib > > Now, how do we create the references? > I worry that confusion will ensue if PKGNAMEPREFIX is automatically inserted > in some places, but not in others. The problem is analogous to the shell > conventions for relative vs absolute paths. > So long as PKGNAMEPREFIX isn't in the list of variables to propogate, this shouldn't be a problem. Neil -- Neil Blakey-Milner nbm@rucus.ru.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 13:21:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 48E6A37B6F8; Sun, 9 Apr 2000 13:21:30 -0700 (PDT) (envelope-from obrien@NUXI.ucdavis.edu) Received: from dragon.nuxi.com (root@14-076.006.popsite.net [216.126.137.76]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id NAA47110; Sun, 9 Apr 2000 13:21:28 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id NAA19270; Sun, 9 Apr 2000 13:21:28 -0700 (PDT) (envelope-from obrien) Date: Sun, 9 Apr 2000 13:21:28 -0700 From: "David O'Brien" To: Satoshi Asami Cc: ports@freebsd.org, committers@freebsd.org Subject: Re: HEADS UP: ports Makefiles being updated soon Message-ID: <20000409132128.A18637@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <200004070815.BAA88701@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004070815.BAA88701@silvia.hip.berkeley.edu>; from asami@freebsd.org on Fri, Apr 07, 2000 at 01:15:16AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Apr 07, 2000 at 01:15:16AM -0700, Satoshi Asami wrote: > This change will be done this weekend. I will freeze the ports tree > Friday night (U.S. Pacific Time) and a small group of volunteers will > convert the entire tree in one pass. I will then unfreeze the tree > and we can go back to business. Are imports of new ports allowed during this time? -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 13:54:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 50B6537B678; Sun, 9 Apr 2000 13:54:44 -0700 (PDT) Date: Sun, 9 Apr 2000 13:54:44 -0700 From: "Andrey A. Chernov" To: Dirk Froemberg Cc: David O'Brien , greg@greg.rim.or.jp, sumikawa@FreeBSD.org, hetzels@westbend.net, rse@engelschall.com, adam@algroup.co.uk, winter@FreeBSD.org, ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: apache13-php4 Message-ID: <20000409135444.A2889@freebsd.org> References: <20000327224807.C7980@physik.TU-Berlin.DE> <20000327155812.C23367@jade.chc-chimes.com> <20000330172419.B59713@dragon.nuxi.com> <20000330203838.H23367@jade.chc-chimes.com> <20000330210930.A60684@dragon.nuxi.com> <4.3.2.20000330233528.00df0520@207.227.119.2> <20000406130132.B70225@dragon.nuxi.com> <20000409011437.C50277@physik.TU-Berlin.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000409011437.C50277@physik.TU-Berlin.DE>; from dirk@FreeBSD.org on Sun, Apr 09, 2000 at 01:14:37AM +0200 Organization: Biomechanoid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Apr 09, 2000 at 01:14:37AM +0200, Dirk Froemberg wrote: > - a response from Andrey, the maintainer of apache13, if he agrees > to add hooks for mod_frontpage and mod_ssl generally I agree to any hooks if they not contradict with current port layout -- Andrey A. Chernov http://nagual.pp.ru/~ache/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 13:56:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 71FE937B5F6; Sun, 9 Apr 2000 13:56:43 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-83.ix.netcom.com [209.109.234.83]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id QAA13760; Sun, 9 Apr 2000 16:56:40 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id NAA06210; Sun, 9 Apr 2000 13:56:38 -0700 (PDT) To: obrien@freebsd.org Cc: ports@freebsd.org, committers@freebsd.org Subject: Re: HEADS UP: ports Makefiles being updated soon References: <200004070815.BAA88701@silvia.hip.berkeley.edu> <20000409132128.A18637@dragon.nuxi.com> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 09 Apr 2000 13:56:37 -0700 In-Reply-To: "David O'Brien"'s message of "Sun, 9 Apr 2000 13:21:28 -0700" Message-ID: Lines: 7 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: "David O'Brien" * Are imports of new ports allowed during this time? Nope, sorry! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 13:56:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id 7C3E037B708; Sun, 9 Apr 2000 13:55:29 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-83.ix.netcom.com [209.109.234.83]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id QAA14299; Sun, 9 Apr 2000 16:55:25 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id NAA06185; Sun, 9 Apr 2000 13:55:21 -0700 (PDT) To: "Akinori -Aki- MUSHA" Cc: reg@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: proposal: PRENAME variable References: <200004090812.BAA04016@silvia.hip.berkeley.edu> <20000409113434.B32928@shale.csir.co.za> <86hfdbkrb9.wl@archon.local.idaemons.org> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 09 Apr 2000 13:55:20 -0700 In-Reply-To: "Akinori -Aki- MUSHA"'s message of "Mon, 10 Apr 2000 04:27:54 +0900" Message-ID: Lines: 57 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: "Akinori -Aki- MUSHA" * At Sun, 9 Apr 2000 11:34:34 -0700, * Jeremy Lea wrote: * > On Sun, Apr 09, 2000 at 01:12:18AM -0700, Satoshi Asami wrote: * > > +PKGNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} * > * > ${PKGNAMEPREFIX:S/$/-/:N-} ;-) * > * > How about just PKGPREFIX? and also a PKGSUFFIX which can be used for * > ports which have options (like the ispell ports, or the letter/a4 style * > ports)? * * `PKGPREFIX' must be confusing as PKG_PREFIX is already used around * pkg_add. Anyway PKGNAMESUFFIX is a cool idea! Yes, that's exactly why I used the longer PKGNAMEPREFIX. As for the suffix part, I agree, how about the following then? Since the suffix sometimes doesn't have a "-", I think we should make the dash included in the PKGNAME*IX rather than have bsd.port.mk supply it automatically for symmetry. Satoshi ------- Index: bsd.port.mk =================================================================== RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v retrieving revision 1.333 diff -u -r1.333 bsd.port.mk --- bsd.port.mk 2000/04/04 07:05:36 1.333 +++ bsd.port.mk 2000/04/09 20:52:58 @@ -43,8 +43,11 @@ # # PORTNAME - Name of software. # PORTVERSION - Version of software. -# PKGNAME - Always defined as ${PORTNAME}-${PORTVERSION}. Do not -# define this in your Makefile. +# PKGNAMEPREFIX - Prefix to specify that port is language-specific, etc. +# PKGNAMESUFFIX - Suffix to specify compilation options. +# PKGNAME - Always defined as +# ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}. +# Do not define this in your Makefile. # DISTNAME - Name of port or distribution used in generating # WRKSRC and DISTFILES below (default: # ${PORTNAME}-${PORTVERSION}). @@ -1113,8 +1116,8 @@ @${ECHO} "${PKGNAME}: You need to define PORTNAME and PORTVERSION instead of PKGNAME." @${FALSE} .endif -PKGNAME= ${PORTNAME}-${PORTVERSION} -DISTNAME?= ${PKGNAME} +PKGNAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} +DISTNAME?= ${PORTNAME}-${PORTVERSION} .else # old style PKGNAME?= ${DISTNAME} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 14:18: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from MexComUSA.Net (adsl-63-200-120-86.dsl.mtry01.pacbell.net [63.200.120.86]) by hub.freebsd.org (Postfix) with ESMTP id A2C9737B6F1; Sun, 9 Apr 2000 14:17:58 -0700 (PDT) (envelope-from eculp@EnContacto.Net) Received: from EnContacto.Net (adsl-63-200-120-82.dsl.mtry01.pacbell.net [63.200.120.82]) by MexComUSA.Net (8.9.3/8.9.3) with ESMTP id OAA13331; Sun, 9 Apr 2000 14:17:38 -0700 (PDT) (envelope-from eculp@EnContacto.Net) Message-ID: <38F0F383.FB14D029@EnContacto.Net> Date: Sun, 09 Apr 2000 14:17:57 -0700 From: Edwin Culp Organization: MexComUSA.Net/EnContacto.Net X-Mailer: Mozilla 4.7 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Dirk Froemberg Cc: "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.ORG, hetzels@westbend.net, rse@engelschall.com, adam@algroup.co.uk, ache@FreeBSD.ORG, winter@FreeBSD.ORG, ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: apache13-php4 References: <20000322134846.V25438@jade.chc-chimes.com> <20000327224807.C7980@physik.TU-Berlin.DE> <20000327155812.C23367@jade.chc-chimes.com> <20000330172419.B59713@dragon.nuxi.com> <20000330203838.H23367@jade.chc-chimes.com> <20000330210930.A60684@dragon.nuxi.com> <4.3.2.20000330233528.00df0520@207.227.119.2> <20000406130132.B70225@dragon.nuxi.com> <20000409011437.C50277@physik.TU-Berlin.DE> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dirk Froemberg wrote: > Hi! > > On Thu, Apr 06, 2000 at 01:01:32PM -0700, David O'Brien wrote: > > At 09:09 PM 3/30/00 -0800, David O'Brien wrote: > > > > using apxs). Currently playing with 1.3.12+PHP3.0.15+SSL+FP2000 on my > > > > beta web server. Very nice! > > > > > > > > http://www.westbend.net/~hetzels/mod_apache.tgz > > > > > > > > I can't wait for the entire Apache ports system to be replaced with > > > > this method. > > > > > > So what is holding things back? Whose buy-in do we need here? > > > > Since no one has said anything, I'm sending this again -- to make sure > > all the Apache maintainers people get the mail. > > Sorry for being late with my answer... > > I think there are still some things missing before we can start: > > - a response from Andrey, the maintainer of apache13, if he agrees > to add hooks for mod_frontpage and mod_ssl generally > > - a response from Ralf, the maintainer of apache13-modssl, if he > agrees to "downgrade" his port to mod_ssl > > - a decision what to do with apache13-ssl. Adam, the maintainer, > wants to keep this port. But this wouldn't fit into the new concept. > So we either can have a exception or delete this port... > > I have converted apache13-php3 to mod_php3 already. This could be committed > after a repository copy. Downgrading apache13-php4 to mod_php4 should > be easy, too. And I'd like to (continue) maintain(ing) the two php ports > of course. > > Regards Dirk > > -- > Dirk Froemberg Does anyone know if this will fix the problem with compiling php4 with imap support? Thanks, ed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 14:30: 6 2000 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 A98D537B82E for ; Sun, 9 Apr 2000 14:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA60478; Sun, 9 Apr 2000 14:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id AB3E537B708 for ; Sun, 9 Apr 2000 14:20:38 -0700 (PDT) (envelope-from root@thehousleys.net) Received: (from root@localhost) by thehousleys.net (8.9.3/8.9.3) id RAA41107; Sun, 9 Apr 2000 17:20:36 -0400 (EDT) Message-Id: <200004092120.RAA41107@thehousleys.net> Date: Sun, 9 Apr 2000 17:20:36 -0400 (EDT) From: jim@thehousleys.net Reply-To: jim@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17882: New version of healthd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17882 >Category: ports >Synopsis: New version of healthd >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 Apr 9 14:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James Housley >Release: FreeBSD 3.4-STABLE i386 >Organization: The Housleys dot Net >Environment: >Description: New version of healthd >How-To-Repeat: >Fix: diff -ur healthd/Makefile healthd-0.4/Makefile --- healthd/Makefile Mon Jan 24 12:57:26 2000 +++ healthd-0.4/Makefile Sun Apr 9 17:07:43 2000 @@ -1,12 +1,12 @@ # New ports collection makefile for: healthd -# Version required: 0.3 -# Date created: 15 November 1999 +# Version required: 0.4 +# Date created: 9 March 2000 # Whom: jim@thehousleys.net # # $FreeBSD: ports/sysutils/healthd/Makefile,v 1.3 2000/01/22 02:47:33 jedgar Exp $ # -DISTNAME= healthd-0.3 +DISTNAME= healthd-0.4 CATEGORIES= sysutils MASTER_SITES= http://healthd.thehousleys.net/ diff -ur healthd/files/md5 healthd-0.4/files/md5 --- healthd/files/md5 Mon Jan 24 12:57:27 2000 +++ healthd-0.4/files/md5 Sun Apr 9 17:08:29 2000 @@ -1 +1 @@ -MD5 (healthd-0.3.tar.gz) = 56b61b06f6b99ae0b7efc55f952828ac +MD5 (healthd-0.4.tar.gz) = 8f86efbdb72482856fa3fa9986eb6e57 Only in healthd/patches: patch-aa Only in healthd/patches: patch-ab >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 Apr 9 17:40: 9 2000 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 D0E8437B6EB for ; Sun, 9 Apr 2000 17:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA81032; Sun, 9 Apr 2000 17:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 79E5237B663 for ; Sun, 9 Apr 2000 17:39:01 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA80561; Sun, 9 Apr 2000 17:39:01 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004100039.RAA80561@freefall.freebsd.org> Date: Sun, 9 Apr 2000 17:39:01 -0700 (PDT) From: sec@morning.nu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17884: cannot compiled hylafax on 5.0-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17884 >Category: ports >Synopsis: cannot compiled hylafax on 5.0-current >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 Apr 9 17:40:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: shiba >Release: 5.0-cuurent >Organization: >Environment: >Description: cannot compiled hylafax on 5.0-current >How-To-Repeat: >Fix: --- util/Socket.h.~1~ Sat Feb 14 19:47:49 1998 +++ util/Socket.h Mon Apr 10 09:30:22 2000 @@ -55,11 +55,7 @@ */ class Socket { public: -#ifdef CONFIG_SOCKARGLENTYPE - typedef CONFIG_SOCKARGLENTYPE socklen_t; -#else - typedef int socklen_t; -#endif + typedef u_int32_t socklen_t; static int accept(int s, void* addr, socklen_t* addrlen) { return ::accept(s, (struct sockaddr*) addr, addrlen); } >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 Apr 9 19: 0: 6 2000 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 A507237B84B for ; Sun, 9 Apr 2000 19:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA90063; Sun, 9 Apr 2000 19:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 9 Apr 2000 19:00:04 -0700 (PDT) Message-Id: <200004100200.TAA90063@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Aleksandr A.Babaylov" Subject: Re: ports/17863: Running DAP reboots computer Reply-To: "Aleksandr A.Babaylov" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17863; it has been noted by GNATS. From: "Aleksandr A.Babaylov" To: jrray@home.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/17863: Running DAP reboots computer Date: Mon, 10 Apr 2000 05:52:18 +0400 (MSD) jrray@home.com writes: > > >Number: 17863 > >Category: ports > >Synopsis: Running DAP reboots computer > >Confidential: no > >Severity: serious > >Priority: low > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Sat Apr 8 07:50:01 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: J Robert Ray > >Release: 4.0-STABLE > >Organization: > >Environment: > FreeBSD jrray.dhs.org 4.0-STABLE #2: Sat Apr 8 06:40:18 PDT 2000 jrray@jrray.dhs.org:/usr/src/sys/compile/JRRAY i386 > >Description: > I installed ports/audio/dap, and upon running DAP my computer froze for a few seconds, and then rebooted. No panic or dump. I then rebuilt world, and built a new kernel from the latest 4.0-STABLE and tried again. Same result. > >How-To-Repeat: > Just run DAP. Me too. AMD K6-3-400 m/b PA-2013 not overclocked. -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 20:30: 6 2000 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 A4FB437B742 for ; Sun, 9 Apr 2000 20:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA01007; Sun, 9 Apr 2000 20:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mta5.snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id 867CB37B8BC for ; Sun, 9 Apr 2000 20:21:13 -0700 (PDT) (envelope-from faber@lunabase.org) Received: from praxis.lunabase.org (adsl-63-200-244-110.dsl.lsan03.pacbell.net) by mta5.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FSS002JH6LDVD@mta5.snfc21.pbi.net> for FreeBSD-gnats-submit@freebsd.org; Sun, 9 Apr 2000 20:20:02 -0700 (PDT) Received: (from faber@localhost) by praxis.lunabase.org (8.9.3/8.9.3) id UAA03014; Sun, 09 Apr 2000 20:20:01 -0700 (PDT envelope-from faber) Message-Id: <200004100320.UAA03014@praxis.lunabase.org> Date: Sun, 09 Apr 2000 20:20:01 -0700 (PDT) From: Ted Faber Reply-To: faber@lunabase.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17891: update to teh grap port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17891 >Category: ports >Synopsis: update to teh grap port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 9 20:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ted Faber >Release: FreeBSD 3.4-RELEASE i386 >Organization: N/A >Environment: Ports >Description: Update to the grap port >How-To-Repeat: N/A >Fix: Diff attached: diff -ruN grap.bak/Makefile grap/Makefile --- grap.bak/Makefile Tue Mar 7 23:33:41 2000 +++ grap/Makefile Sat Apr 8 19:56:13 2000 @@ -3,10 +3,10 @@ # Date created: 7 Mar 2000 # Whom: faber@lunabase.org # -# $Id: Makefile,v 1.7 2000/02/05 02:52:24 faber Exp $ +# $Id: Makefile,v 1.8 2000/04/09 02:55:17 faber Exp $ # -DISTNAME= grap-1.02 +DISTNAME= grap-1.05 CATEGORIES= textproc graphics MASTER_SITES= http://www.lunabase.org/~faber/Vault/software/grap/ diff -ruN grap.bak/files/md5 grap/files/md5 --- grap.bak/files/md5 Tue Mar 7 23:34:14 2000 +++ grap/files/md5 Sat Apr 8 23:03:56 2000 @@ -1 +1 @@ -MD5 (grap-1.02.tar.gz) = f761b969bf6eecf5fc36d9053af4b0ee +MD5 (grap-1.05.tar.gz) = 12ad99302ece30e2c53a934ac35c2c77 >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 Apr 9 21:19:26 2000 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 4B68437B8B8; Sun, 9 Apr 2000 21:19:25 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA04355; Sun, 9 Apr 2000 21:19:25 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Date: Sun, 9 Apr 2000 21:19:25 -0700 (PDT) From: Message-Id: <200004100419.VAA04355@freefall.freebsd.org> To: yatt@msc.biglobe.ne.jp, jkoshy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17834: Update: japanese/timidity++-tcltk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: japanese/timidity++-tcltk State-Changed-From-To: open->closed State-Changed-By: jkoshy State-Changed-When: Sun Apr 9 21:18:47 PDT 2000 State-Changed-Why: Closed at originator's request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 9 23:20: 7 2000 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 3B20C37B5E5 for ; Sun, 9 Apr 2000 23:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA30261; Sun, 9 Apr 2000 23:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neva.vlink.ru (neva.vlink.ru [195.9.70.8]) by hub.freebsd.org (Postfix) with ESMTP id 84B1837B638 for ; Sun, 9 Apr 2000 23:14:01 -0700 (PDT) (envelope-from dsh@neva.vlink.ru) Received: by neva.vlink.ru (Postfix, from userid 1000) id 79A669BC09; Mon, 10 Apr 2000 10:13:54 +0400 (MSD) Message-Id: <20000410061354.79A669BC09@neva.vlink.ru> Date: Mon, 10 Apr 2000 10:13:54 +0400 (MSD) From: dsh@vlink.ru Reply-To: dsh@vlink.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17892: update for net/binkd FreeBSD port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17892 >Category: ports >Synopsis: update for net/binkd FreeBSD port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 9 23:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: >Description: Use patch for amiga style outbound from author's site, instead of EXTRA_PATCH. >How-To-Repeat: >Fix: diff -Nru binkd.orig/Makefile binkd/Makefile --- binkd.orig/Makefile Mon Apr 10 02:12:34 2000 +++ binkd/Makefile Mon Apr 10 09:56:29 2000 @@ -1,4 +1,5 @@ # New ports collection makefile for: binkd +# Version required: 0.9.3 # Date created: 19 August 1998 # Whom: Andrey Zakhvatov # @@ -20,7 +21,9 @@ MAN8= binkd.8 .if defined(WITH_AMIGA4D) -EXTRA_PATCHES+= ${FILESDIR}/patch-amiga4d +PATCH_SITES= ${MASTER_SITES} +PATCHFILES= binkdaso.diff +PATCH_DIST_STRIP= -l DEFINES+= -DAMIGADOS_4D_OUTBOUND MAKE_ENV+= DEFINES="${DEFINES}" .endif diff -Nru binkd.orig/files/md5 binkd/files/md5 --- binkd.orig/files/md5 Sun Apr 2 03:12:50 2000 +++ binkd/files/md5 Mon Apr 10 09:55:56 2000 @@ -1 +1,2 @@ MD5 (binkd093.zip) = 1e00c5fd61055383a00db8e7d538a1dc +MD5 (binkdaso.diff) = 8fc68563fb7243a80aa00044846db847 diff -Nru binkd.orig/files/patch-amiga4d binkd/files/patch-amiga4d --- binkd.orig/files/patch-amiga4d Sat Apr 1 05:40:59 2000 +++ binkd/files/patch-amiga4d Thu Jan 1 03:00:00 1970 @@ -1,150 +0,0 @@ ---- ftnaddr.c.orig Thu Oct 23 08:12:18 1997 -+++ ftnaddr.c Wed Mar 8 20:50:09 2000 -@@ -225,6 +225,7 @@ - } - else - { -+#ifndef AMIGADOS_4D_OUTBOUND - char ext[] = "\0ext"; /* ".ext" */ - char pnt[] = "\0pnt/0000xxxx"; /* ".pnt..." */ - -@@ -233,6 +234,7 @@ - - if (fa->p != 0) - sprintf (pnt, ".pnt%s%08x", PATH_SEPARATOR, fa->p); -+#endif /* AMIGADOS_4D_OUTBOUND */ - - #ifdef HAVE_SNPRINTF - snprintf -@@ -243,8 +245,13 @@ - #ifdef HAVE_SNPRINTF - MAXPATHLEN, - #endif -+#ifdef AMIGADOS_4D_OUTBOUND -+ "%s%s%s%s%d.%d.%d.%d", d->path, PATH_SEPARATOR, d->dir, -+ PATH_SEPARATOR, fa->z, fa->net, fa->node, fa->p); -+#else - "%s%s%s%s%s%04x%04x%s", - d->path, PATH_SEPARATOR, d->dir, ext, PATH_SEPARATOR, - fa->net, fa->node, pnt); -+#endif /* AMIGADOS_4D_OUTBOUND */ - } - } - ---- ftnq.c.orig Mon Nov 3 09:12:45 1997 -+++ ftnq.c Thu Mar 9 13:23:03 2000 -@@ -157,9 +157,11 @@ - FTN_ADDR fa; - - FA_ZERO (&fa); -+#ifndef AMIGADOS_4D_OUTBOUND - fa.z = ((de->d_name[len] == '.') ? - strtol (de->d_name + len + 1, (char **) NULL, 16) : - curr_domain->z[0]); -+#endif /* AMIGADOS_4D_OUTBOUND */ - if (de->d_name[len] == 0 || fa.z != curr_domain->z[0]) - { - strcpy (fa.domain, curr_domain->name); -@@ -302,7 +304,9 @@ - DIR *dp; - FTN_ADDR fa2; - char buf[MAXPATHLEN + 1]; -+#ifndef AMIGADOS_4D_OUTBOUND - int j; -+#endif /* AMIGADOS_4D_OUTBOUND */ - char *s; - - if ((dp = opendir (dir)) != 0) -@@ -311,6 +315,52 @@ - - while ((de = readdir (dp)) != 0) - { -+#ifdef AMIGADOS_4D_OUTBOUND -+ char ext[4]; -+ int matched = 0; -+ size_t nlen = strlen(s = de->d_name); -+ -+ for (; *s && isgraph(*s) != 0; s++); -+ if (s - de->d_name != nlen) -+ continue; -+ -+ memcpy (&fa2, fa1, sizeof(FTN_ADDR)); -+ -+ if (sscanf(s = de->d_name, "%d.%d.%d.%d.%3s%n", -+ &fa2.z, &fa2.net, &fa2.node, &fa2.p, ext, &matched) != 5 || -+ matched != nlen || strlen(ext) != 3) -+ continue; -+ -+ if ((fa1->z != -1 && fa1->z != fa2.z) || -+ (fa1->net != -1 && fa1->net != fa2.net) || -+ (fa1->node != -1 && fa1->node != fa2.node) || -+ (fa1->p != -1 && fa1->p != fa2.p)) -+ continue; -+ -+ strnzcpy(buf, dir, sizeof(buf)); -+ strnzcpy(buf + strlen(buf), PATH_SEPARATOR, sizeof(buf) - strlen(buf)); -+ strnzcpy(buf + strlen(buf), s, sizeof(buf) - strlen(buf)); -+ -+ if (!STRICMP(ext, "bsy") || !STRICMP(ext, "csy")) -+ process_bsy(&fa2, buf); -+ -+ if (!(get_node_info(&fa2) || is5D(fa1))) -+ continue; -+ -+ if (strchr(out_flvrs, ext[0]) && -+ tolower(ext[1]) == 'u' && tolower(ext[2]) == 't') -+ /* Adding *.?ut */ -+ q = q_add_file(q, buf, &fa2, ext[0], 'd', 'm'); -+ else if (!STRICMP(ext, "req")) -+ /* Adding *.req */ -+ q = q_add_file(q, buf, &fa2, 'h', 's', 'r'); -+ else if (!STRICMP(ext, "hld")) -+ process_hld(&fa2, buf); -+ else if (strchr(flo_flvrs, ext[0]) && -+ tolower(ext[1]) == 'l' && tolower(ext[2]) == 'o') -+ /* Adding *.?lo */ -+ q = q_add_file(q, buf, &fa2, ext[0], 'd', 'l'); -+#else /* AMIGADOS_4D_OUTBOUND */ - s = de->d_name; - - for (j = 0; j < 8; ++j) -@@ -378,6 +428,7 @@ - } - } - } -+#endif /* AMIGADOS_4D_OUTBOUND */ - } - closedir (dp); - } - ---- prothlp.c.orig Wed Nov 5 04:11:33 1997 -+++ prothlp.c Wed Mar 8 20:50:09 2000 -@@ -31,6 +31,9 @@ - #include - #include - #include -+#ifdef AMIGADOS_4D_OUTBOUND -+#include -+#endif /* AMIGADOS_4D_OUTBOUND */ - - #include "Config.h" - #include "sys.h" -@@ -145,5 +148,18 @@ - if (strlen (++z) == 3) - if ((*z >= '0') && (*z < '7') && (z[1] == '#')) - memcpy (z, weekext[*z - '0'], 2); -+#ifdef AMIGADOS_4D_OUTBOUND -+ else -+ { -+ int n; -+ for (n = 0; n < 7 && STRNICMP(z, weekext[n], 2); n++); -+ if (n != 7) -+ { -+ char last = z[2]; -+ sprintf(s, "%08lx.%c%c%c", -+ rnd(), tolower(weekext[n][0]), weekext[n][1], last); -+ } -+ } -+#endif - } - } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 1:20: 5 2000 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 B5AC937B831 for ; Mon, 10 Apr 2000 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 BAA10317; Mon, 10 Apr 2000 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ipt2.iptelecom.net.ua (ipt2.iptelecom.net.ua [212.9.224.2]) by hub.freebsd.org (Postfix) with ESMTP id E1FD337B659 for ; Mon, 10 Apr 2000 01:10:40 -0700 (PDT) (envelope-from max@iptelecom.net.ua) Received: from vega.vega.com (dialup1-40.iptelecom.net.ua [212.9.226.40]) by ipt2.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id LAA18321 for ; Mon, 10 Apr 2000 11:15:59 +0300 (EEST) Received: (from max@localhost) by vega.vega.com (8.9.3/8.9.3) id LAA07054; Mon, 10 Apr 2000 11:09:42 +0300 (EEST) (envelope-from sobomax@altavista.net) Message-Id: <200004100809.LAA07054@vega.vega.com> Date: Mon, 10 Apr 2000 11:09:42 +0300 (EEST) From: "Maxim Sobolev" Reply-To: sobomax@altavista.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17893: [PATCH] Cleanup of build process of the py-MySQL port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17893 >Category: ports >Synopsis: [PATCH] Cleanup of build process of the py-MySQL 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: Mon Apr 10 01:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Maxim Sobolev >Release: FreeBSD 3.4-STABLE i386 >Organization: Vega International Capital >Environment: >Description: Cleanup of build process of the py-MySQL port. Previously port used custom Makefile for this purpose, which led to resulting module being bloated (~600K) by linking all Python code from libpython1.5 into it. With this patch the module will use standard Python's way to build supplemental modules, which should generally be cleaner. Other good sideeffect is that after this patch resulting module is only 20K in size. >How-To-Repeat: >Fix: diff -ruN /usr/ports/databases/py-MySQL/Makefile py-MySQL/Makefile --- /usr/ports/databases/py-MySQL/Makefile Mon Apr 10 10:06:48 2000 +++ py-MySQL/Makefile Mon Apr 10 11:05:10 2000 @@ -17,18 +17,19 @@ LIB_DEPENDS= mysqlclient.6:${PORTSDIR}/databases/mysql322-client RUN_DEPENDS= python:${PORTSDIR}/lang/python -pre-build: - ${CP} ${FILESDIR}/Makefile ${WRKSRC}/Makefile +ALL_TARGET= MySQLmodule.so + +pre-configure: + ${CP} ${FILESDIR}/Setup ${WRKSRC}/Setup + ${LN} -s ${LOCALBASE}/lib/python1.5/config/Makefile.pre.in ${WRKSRC}/ + +do-configure: + cd ${WRKSRC} && ${MAKE} -f Makefile.pre.in boot -do-install: - ${INSTALL_DATA} ${WRKSRC}/MySQLmodule.so ${PREFIX}/lib/python1.5/site-packages .if !defined(NOPORTDOCS) +post-install: ${MKDIR} ${PREFIX}/share/doc/py-MySQL ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/py-MySQL -.endif - -post-install: -.if !defined(NOPORTDOCS) ${ECHO} "share/doc/py-MySQL/README" >> ${TMPPLIST} ${ECHO} "@dirrm share/doc/py-MySQL" >> ${TMPPLIST} .endif diff -ruN /usr/ports/databases/py-MySQL/files/Makefile py-MySQL/files/Makefile --- /usr/ports/databases/py-MySQL/files/Makefile Fri Jan 14 17:00:07 2000 +++ py-MySQL/files/Makefile Thu Jan 1 03:00:00 1970 @@ -1,9 +0,0 @@ -CC?=/usr/bin/gcc -CFLAGS+=-I$(PREFIX)/include/python1.5 -I$(PREFIX)/include/mysql -LIBS=-L$(PREFIX)/lib/python1.5/config -L$(PREFIX)/lib/mysql -lmysqlclient -lpython1.5 - -all: - ${CC} MySQLmodule.c -shared ${CFLAGS} ${LIBS} -o MySQLmodule.so - -clean: - rm -f *~ core MySQLmodule.so diff -ruN /usr/ports/databases/py-MySQL/files/Setup py-MySQL/files/Setup --- /usr/ports/databases/py-MySQL/files/Setup Thu Jan 1 03:00:00 1970 +++ py-MySQL/files/Setup Mon Apr 10 10:45:12 2000 @@ -0,0 +1,2 @@ +*shared* +MySQL MySQLmodule.c -I${LOCALBASE}/include/mysql -L${LOCALBASE}/lib/mysql -lmysqlclient >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 Apr 10 1:50: 6 2000 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 9F19237B67E for ; Mon, 10 Apr 2000 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA25631; Mon, 10 Apr 2000 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BD9F37B51E for ; Mon, 10 Apr 2000 01:42:51 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA20185; Mon, 10 Apr 2000 01:42:51 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004100842.BAA20185@freefall.freebsd.org> Date: Mon, 10 Apr 2000 01:42:51 -0700 (PDT) From: k@123.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17894: update of /usr/ports/sysutils/gtar/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17894 >Category: ports >Synopsis: update of /usr/ports/sysutils/gtar/ >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 Apr 10 01:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kai Voigt >Release: 4.0-RC >Organization: 123.org >Environment: # uname -a FreeBSD pc-inst.intern.netuse.de 4.0-20000307-CURRENT FreeBSD 4.0-20000307-CURRENT #0: Wed Mar 8 00:14:33 GMT 2000 root@monster.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: The existing version of the gtar port is 1.12, ftp.gnu.org has 1.13 which I needed for longer filenames. >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: # # /usr/ports/sysutils/gtar # /usr/ports/sysutils/gtar/Makefile # /usr/ports/sysutils/gtar/pkg # /usr/ports/sysutils/gtar/pkg/PLIST # /usr/ports/sysutils/gtar/pkg/DESCR # /usr/ports/sysutils/gtar/pkg/COMMENT # /usr/ports/sysutils/gtar/files # /usr/ports/sysutils/gtar/files/md5 # echo c - /usr/ports/sysutils/gtar mkdir -p /usr/ports/sysutils/gtar > /dev/null 2>&1 echo x - /usr/ports/sysutils/gtar/Makefile sed 's/^X//' >/usr/ports/sysutils/gtar/Makefile << 'END-of-/usr/ports/sysutils/ gtar/Makefile' X# New ports collection makefile for: gtar X# Version required: 1.13 X# Date created: Sa 6 Jun 1998 10:24:51 CEST X# Whom: Andreas Klemm X# X# $FreeBSD: ports/sysutils/gtar/Makefile,v 1.7 1999/08/31 06:50:51 mharo Exp $ X# X XDISTNAME= tar-1.13 XCATEGORIES= sysutils XMASTER_SITES= ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= tar X XMAINTAINER= andreas@FreeBSD.org X XGNU_CONFIGURE= yes XCONFIGURE_ARGS=--program-prefix=g X X.include END-of-/usr/ports/sysutils/gtar/Makefile echo c - /usr/ports/sysutils/gtar/pkg mkdir -p /usr/ports/sysutils/gtar/pkg > /dev/null 2>&1 echo x - /usr/ports/sysutils/gtar/pkg/PLIST sed 's/^X//' >/usr/ports/sysutils/gtar/pkg/PLIST << 'END-of-/usr/ports/sysutils /gtar/pkg/PLIST' Xbin/gtar Xinfo/tar.info-8 Xlibexec/grmt Xshare/locale/de/LC_MESSAGES/tar.mo Xshare/locale/fr/LC_MESSAGES/tar.mo Xshare/locale/it/LC_MESSAGES/tar.mo Xshare/locale/ko/LC_MESSAGES/tar.mo Xshare/locale/nl/LC_MESSAGES/tar.mo Xshare/locale/no/LC_MESSAGES/tar.mo Xshare/locale/pl/LC_MESSAGES/tar.mo Xshare/locale/pt/LC_MESSAGES/tar.mo Xshare/locale/sl/LC_MESSAGES/tar.mo Xshare/locale/sv/LC_MESSAGES/tar.mo X@unexec install-info --delete %D/info/tar.info %D/info/dir Xinfo/tar.info Xinfo/tar.info-1 Xinfo/tar.info-2 Xinfo/tar.info-3 Xinfo/tar.info-4 Xinfo/tar.info-5 Xinfo/tar.info-6 Xinfo/tar.info-7 X@exec install-info %D/info/tar.info %D/info/dir END-of-/usr/ports/sysutils/gtar/pkg/PLIST echo x - /usr/ports/sysutils/gtar/pkg/DESCR sed 's/^X//' >/usr/ports/sysutils/gtar/pkg/DESCR << 'END-of-/usr/ports/sysutils /gtar/pkg/DESCR' Xgtar is the GNU Project's Tape Archiver (tar). END-of-/usr/ports/sysutils/gtar/pkg/DESCR echo x - /usr/ports/sysutils/gtar/pkg/COMMENT sed 's/^X//' >/usr/ports/sysutils/gtar/pkg/COMMENT << 'END-of-/usr/ports/sysuti ls/gtar/pkg/COMMENT' XThe GNU tape archiver END-of-/usr/ports/sysutils/gtar/pkg/COMMENT echo c - /usr/ports/sysutils/gtar/files mkdir -p /usr/ports/sysutils/gtar/files > /dev/null 2>&1 echo x - /usr/ports/sysutils/gtar/files/md5 sed 's/^X//' >/usr/ports/sysutils/gtar/files/md5 << 'END-of-/usr/ports/sysutils /gtar/files/md5' XMD5 (tar-1.13.tar.gz) = 402a54bdde58dec411ea844b75cf5804 END-of-/usr/ports/sysutils/gtar/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 Mon Apr 10 1:58:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id A31E737B6C2 for ; Mon, 10 Apr 2000 01:58:47 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer goliath.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by goliath.siemens.de (8.10.0/8.10.0) with ESMTP id e3A8wjs23709 for ; Mon, 10 Apr 2000 10:58:45 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail2.siemens.de (8.10.0/8.10.0) with ESMTP id e3A8wiL11481 for ; Mon, 10 Apr 2000 10:58:44 +0200 (MET DST) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id KAA02709 for ; Mon, 10 Apr 2000 10:58:44 +0200 (CEST) Date: Mon, 10 Apr 2000 10:58:41 +0200 From: Andre Albsmeier To: "R. Imura" Cc: sada@bsdclub.org, ports@FreeBSD.ORG Subject: Re: netscape 6.00.p1 Message-ID: <20000410105841.A79631@internal> References: <20000408141935B.sada@kb.k-cable.ne.jp> <20000409015232Q.sada@bsdclub.org> <20000410020248T.imura@cs.titech.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000410020248T.imura@cs.titech.ac.jp>; from imura@af.airnet.ne.jp on Mon, Apr 10, 2000 at 02:02:48AM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 10-Apr-2000 at 02:02:48 +0900, R. Imura wrote: > > Below is a port which install only linux-netscape6 itself. > > COMMENT and DESCR should be rewritten. > > Unfotunately netscape6 died immediately with 3.4-stable box. > > % netscape6 > .//run-mozilla.sh ./mozilla-bin > MOZILLA_FIVE_HOME=/usr/local/lib/linux-netscape6 > LD_LIBRARY_PATH=/usr/local/lib/linux-netscape6:/usr/local/lib/linux-netscape6/Cool > XPCS_HOME=/usr/local/lib/linux-netscape6/Cool > MOZ_PROGRAM=./mozilla-bin > MOZ_TOOLKIT= > moz_debug=0 > moz_debugger= > Floating point exception Does the patch from http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/include/npx.h.diff?r1=1.17&r2=1.18 help. Just guessing... -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 2:36:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 87CF337B727; Mon, 10 Apr 2000 02:33:53 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id LAA77209; Mon, 10 Apr 2000 11:32:56 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.9.3/8.9.3) id CAA10243; Mon, 10 Apr 2000 02:32:37 -0700 (PDT) (envelope-from reg) Date: Mon, 10 Apr 2000 02:32:37 -0700 From: Jeremy Lea To: freebsd-ports@FreeBSD.org Cc: Satoshi Asami Subject: WITH/WITHOUT options cleanup Message-ID: <20000410023237.F32928@shale.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all, I've placed a patch at http://www.freebsd.org/~reg/with.patch, which cleans up the handling of options in ports. Basically these are any things the user can define while building ports. We had a mixture of NO_, WANT_, WITH_, WITHOUT_, DONT_USE_ and USE_, and these were being tested against YES, yes, NO or no. This was confusing. This patch makes two kinds of variables: WITH_FOO - Turns on support for FOO. WITHOUT_FOO - Turns off support for FOO. These are boolean, and should only be tested with defined(). If a port autodetect's support then it should use something like: .if defined(WITH_X11) || (exists(${X11BASE}/lib/libX11.a) \ && !defined(WITHOUT_X11)) ... .endif (bsd.port.pre.mk needs to be included before this to get X11BASE). The patch also removes nearly all occurances of WITH_ variables in ports, since I want to be able to scan for the options above automatically. I will write something for the handbook reserving WITH_ and WITHOUT_ as variable names. USE_ should also be reserved for knobs in bsd.port.mk. The ports I've not touched are the emacs/mule/canna cancer^H^H^H set of ports, which have a set of WITH_ options, which should be CONFIGURE_ARGS+= options. I'm scared of breaking these... Also, I've not tried to alter any setttings with have multiple values (like ispell's languages (although these should be WITH_), or glx's chipset). Comments please. -Jeremy -- FreeBSD - Because the best things in life are free... 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 Apr 10 3: 1:13 2000 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 54D0837B5BE; Mon, 10 Apr 2000 03:01:11 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id DAA42050; Mon, 10 Apr 2000 03:01:10 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Mon, 10 Apr 2000 03:01:10 -0700 (PDT) From: Kris Kennaway To: ports@freebsd.org Cc: erich@freebsd.org, thepish@freebsd.org Subject: More AWOL maintainers Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all, Has anyone heard from erich or thepish lately? They have a bunch of ports which aren't being maintained (by them): astro/xephem audio/cam audio/xmmix databases/typhoon deskutils/ical devel/SWIG devel/gcc11 editors/jove editors/sam editors/xcoral emulators/sim6811 emulators/x48 games/linuxdoom games/xblackjack graphics/aero graphics/mpeg_encode graphics/mpeg_stat graphics/mpegedit graphics/mplex graphics/splitmpg graphics/xmfract graphics/xmorph lang/eiffel math/wingz math/xlispstat net/arla shells/es x11-fonts/Xg x11-fonts/freefonts x11-toolkits/xmhtml x11-wm/9menu x11-wm/9wm x11/9term I dare say others might be interested in maintaining at least some of these ports more actively. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 3:40: 5 2000 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 C7F3637B6DC for ; Mon, 10 Apr 2000 03:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA46187; Mon, 10 Apr 2000 03:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from netserv1.chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id 124A437B8A1 for ; Mon, 10 Apr 2000 03:35:02 -0700 (PDT) (envelope-from dima@netserv1.chg.ru) Received: (from dima@localhost) by netserv1.chg.ru (8.9.3/8.9.3) id OAA60659; Mon, 10 Apr 2000 14:34:59 +0400 (MSD) Message-Id: <200004101034.OAA60659@netserv1.chg.ru> Date: Mon, 10 Apr 2000 14:34:59 +0400 (MSD) From: Dmitry Sivachenko Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17896: New port: p5-GD-Graph3d Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17896 >Category: ports >Synopsis: New port: p5-GD-Graph3d >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 Apr 10 03:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry Sivachenko >Release: FreeBSD 3.3-RELEASE 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: # # . # ./files # ./files/md5 # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./Makefile # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (GDGraph3d-0.34.tar.gz) = 43da8e628df60f56598ed464597c9c7d END-of-./files/md5 echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XCreates 3D charts with GD::Graph and GD END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XGD-Graph3d extensions module provides 3D graphs for the GD::Graph module. X X X--dima Xdima@Chg.RU END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xlib/perl5/site_perl/%%PERL_VER%%/GD/Graph/pie3d.pm Xlib/perl5/site_perl/%%PERL_VER%%/GD/Graph/bars3d.pm Xlib/perl5/site_perl/%%PERL_VER%%/GD/Graph/Graph3d.pod Xlib/perl5/site_perl/%%PERL_VER%%/GD/Graph/axestype3d.pm Xlib/perl5/site_perl/%%PERL_VER%%/GD/Graph/lines3d.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/GD/Graph/.packlist X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/GD/Graph 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/GD 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/GD/Graph 2>/dev/null || true END-of-./pkg/PLIST echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: p5-GD-Graph X# Date created: 10 April 2000 X# Whom: Dmitry Sivachenko X# X# $FreeBSD: $ X# X XPORTNAME= p5-GD-Graph3d XPORTVERSION= 0.34 XCATEGORIES= graphics perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= GD XDISTNAME= GDGraph3d-0.34 X XMAINTAINER= dima@Chg.RU X XRUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/GD/Graph.pm:${PORTSDIR}/graphics/p5-GD-Graph X XUSE_PERL5= YES X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= GD::Graph::Graph3d.3 X Xdo-configure: X @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${PERL5} Makefile.PL X X.include END-of-./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 Apr 10 3:43:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radiac.mine.nu (h186n2fls20o974.telia.com [212.181.170.186]) by hub.freebsd.org (Postfix) with ESMTP id EB1C837B8A1 for ; Mon, 10 Apr 2000 03:43:23 -0700 (PDT) (envelope-from ps@radiac.mine.nu) Received: (from ps@localhost) by radiac.mine.nu (8.9.3/8.9.3) id MAA12119 for ports@freebsd.org; Mon, 10 Apr 2000 12:43:44 +0200 (CEST) (envelope-from ps) Date: Mon, 10 Apr 2000 12:43:43 +0200 From: Patrik Sundberg To: ports@freebsd.org Subject: doc++ port Message-ID: <20000410124343.A12049@radiac.mine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, I noticed that the doc++ port is quite out of date and the version in the ports-collection doesn't compile on my 4.0-stable box. I updated the port myself and mailed the maintainer yesterday about it. I would like to know the "correct" way to go about issues like this: - should I contact the maintainer and send him diffs? - should I send-pr the update? - if you get no response from the maintainer, what should you do then? (note: I only mailed the maintainer yesterday so this isn't an issue, I just want to know anyways..) -- Patrik Sundberg - email: ps@raditex.se || ps@radiac.mine.nu ---> telefon: 013-178 567 - mobiltelefon: 070-760 22 40 <--- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 4: 0: 5 2000 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 258EB37B8B5 for ; Mon, 10 Apr 2000 04:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA48233; Mon, 10 Apr 2000 04:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00BDB37B595 for ; Mon, 10 Apr 2000 03:51:26 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA47347; Mon, 10 Apr 2000 03:51:25 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004101051.DAA47347@freefall.freebsd.org> Date: Mon, 10 Apr 2000 03:51:25 -0700 (PDT) From: toyonaga@msd.ts.fujitsu.co.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17897: transfig does not compile with XFree86-4.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17897 >Category: ports >Synopsis: transfig does not compile with XFree86-4.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 10 04:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Tatsuto Toyonaga >Release: 5.0-current >Organization: Fujitsu >Environment: FreeBSD flux.msd.ts.fujitsu.co.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #10: Sun Apr 2 13:15:33 JST 2000 toor@flux.msd.ts.fujitsu.co.jp:/usr/src/sys/compile/FLUX i386 >Description: transfig port under print category fails at xmkmf stage of build. this is due to the fact that the Imakefile comtrie with transfig include the line IHaveSubdirs. It tries to expand the line with the directive InstallLinkKitSubdirs through Imake.tmpl, which does not have actual definition in Imake.rules. As a consequence, resulting Makefile left the directive unexpanded. so, build fails. >How-To-Repeat: Nuke XFree86-3. series, fresh install XFree86-4.0. build ports/print/transfig >Fix: comment out the line 1389 of /usr/X11R6/lib/X11/config/Imake.rules with XCOMM prefix. I don't know whether this has side-effect or not. >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 Apr 10 5:27:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from proxy.grad.kiev.ua (KievglavArhit-UTC.ukrtel.net [195.5.25.54]) by hub.freebsd.org (Postfix) with ESMTP id 84E6C37B903 for ; Mon, 10 Apr 2000 05:27:52 -0700 (PDT) (envelope-from Ruslan@Shevchenko.Kiev.UA) Received: from Shevchenko.Kiev.UA (bolla.internal.grad.kiev.ua [10.0.1.99]) by proxy.grad.kiev.ua (8.9.3/8.9.1) with ESMTP id PAA24976; Mon, 10 Apr 2000 15:26:22 +0300 (EEST) (envelope-from Ruslan@Shevchenko.Kiev.UA) Message-ID: <38F1CAAA.BF362613@Shevchenko.Kiev.UA> Date: Mon, 10 Apr 2000 15:35:54 +0300 From: Ruslan Shevchenko Reply-To: Ruslan@Shevchenko.Kiev.UA X-Mailer: Mozilla 4.07 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Patrik Sundberg Cc: ports@FreeBSD.ORG Subject: Re: doc++ port References: <20000410124343.A12049@radiac.mine.nu> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Patrik Sundberg wrote: > > hi, > > I noticed that the doc++ port is quite out of date and the version in the > ports-collection doesn't compile on my 4.0-stable box. I updated the port > myself and mailed the maintainer yesterday about it. I would like to know > the "correct" way to go about issues like this: > - should I contact the maintainer and send him diffs? > - should I send-pr the update? > - if you get no response from the maintainer, what should you do then? > (note: I only mailed the maintainer yesterday so this isn't an issue, > I just want to know anyways..) update is live in ports queue as ports/17860 In general case: the "correct" way is: 1. Check: are exists the same send-pr in GNATS queue. 2. if not -- send problem report, which will be forwarded to maintainer of port. > > -- > Patrik Sundberg - email: ps@raditex.se || ps@radiac.mine.nu > ---> telefon: 013-178 567 - mobiltelefon: 070-760 22 40 <--- > > 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 Apr 10 5:50: 5 2000 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 DBDD037B93E for ; Mon, 10 Apr 2000 05:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA73810; Mon, 10 Apr 2000 05:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from riocha.convergence.de (ns.convergence.de [212.5.31.130]) by hub.freebsd.org (Postfix) with ESMTP id 432E937B9B5 for ; Mon, 10 Apr 2000 05:45:07 -0700 (PDT) (envelope-from ripley@riocha.convergence.de) Received: (from ripley@localhost) by riocha.convergence.de (8.9.3/8.9.3) id OAA99682; Mon, 10 Apr 2000 14:45:04 +0200 (CEST) (envelope-from ripley) Message-Id: <200004101245.OAA99682@riocha.convergence.de> Date: Mon, 10 Apr 2000 14:45:04 +0200 (CEST) From: eckert@convergence.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17899: lang/guile build failing Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17899 >Category: ports >Synopsis: lang/guile build failing >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 Apr 10 05:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Hans-Ch. Eckert >Release: FreeBSD 3.4-STABLE i386 >Organization: convergence integrated media >Environment: cc --version 2.7.2.3 >Description: cd /usr/ports/lang/guile (guile-1.3.4) make compilation stops at Making all in time /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../libguile -O -pipe -Wall -Wpointer-arith -Wmissing-prototypes -c qtmds.s rm -f .libs/qtmds.lo cc -DHAVE_CONFIG_H -I. -I. -I../libguile -O -pipe -Wall -Wpointer-arith -Wmissing-prototypes -c qtmds.s -fPIC -DPIC -o .libs/qtmds.lo The last command doesn't even finish. The compilation just hangs, not even using up CPU. >How-To-Repeat: in /usr/ports/lang/guile: make clean make >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 7:30: 9 2000 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 2458537B91B for ; Mon, 10 Apr 2000 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73324; Mon, 10 Apr 2000 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D31C37B9E3 for ; Mon, 10 Apr 2000 07:23:50 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA71255; Mon, 10 Apr 2000 07:23:50 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004101423.HAA71255@freefall.freebsd.org> Date: Mon, 10 Apr 2000 07:23:50 -0700 (PDT) From: tmb@sophos.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17901: tiny typo in Makefile for /usr/ports/www/apache13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17901 >Category: ports >Synopsis: tiny typo in Makefile for /usr/ports/www/apache13 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 10 07:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Blackman >Release: 4.0-STABLE >Organization: Sophos >Environment: FreeBSD tyne.sophos.com 4.0-STABLE FreeBSD 4.0-STABLE #0: Mon Apr 3 13:03:14 BST 2000 tmb@tyne.sophos.com:/usr/src/sys/compile/TYNE i386 >Description: missing closing curly brace in DISTNAME line of Makefile >How-To-Repeat: >Fix: --- Makefile Mon Apr 10 15:19:52 2000 +++ - Mon Apr 10 15:20:54 2000 @@ -23,7 +23,7 @@ ftp://ftp.mtnranch.net/pub/apache/dist/ \ ftp://ftp.iodynamics.com/pub/mirror/apache/dist/ \ ftp://apache.nextpath.com/pub/apache/dist/ -DISTNAME= ${PORTNAME_${PORTVERSION} +DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ache@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 Mon Apr 10 7:30: 9 2000 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 8B9AC37B5A7 for ; Mon, 10 Apr 2000 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73333; Mon, 10 Apr 2000 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B9B537B91B for ; Mon, 10 Apr 2000 07:28:30 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA72857; Mon, 10 Apr 2000 07:28:30 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004101428.HAA72857@freefall.freebsd.org> Date: Mon, 10 Apr 2000 07:28:30 -0700 (PDT) From: tmb@sophos.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17902: out of date version number for PORTVERSION in /usr/ports/www/mod_perl/Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17902 >Category: ports >Synopsis: out of date version number for PORTVERSION in /usr/ports/www/mod_perl/Makefile >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: Mon Apr 10 07:30:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Blackman >Release: 4.0-STABLE >Organization: Sophos >Environment: n/a >Description: PORTVERSION = 1.21_02 in /usr/ports/www/mod_perl/MAKEFILE. 1.21_02 doesn't seem to exist in any of the MASTER_SITES, thus this should be either 1.21 or 1.22. >How-To-Repeat: >Fix: set PORTVERSION to 1.22 in Makefile. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 7:30:14 2000 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 01EC337BACD for ; Mon, 10 Apr 2000 07:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73344; Mon, 10 Apr 2000 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 1688037BA8B for ; Mon, 10 Apr 2000 07:28:58 -0700 (PDT) (envelope-from root@thehousleys.net) Received: (from root@localhost) by thehousleys.net (8.9.3/8.9.3) id KAA50026; Mon, 10 Apr 2000 10:28:57 -0400 (EDT) Message-Id: <200004101428.KAA50026@thehousleys.net> Date: Mon, 10 Apr 2000 10:28:57 -0400 (EDT) From: jim@thehousleys.net Reply-To: jim@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17903: Allow CVS_UPDATE to be used with SUP_UPDATE w/o PORTSSUPFILE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17903 >Category: ports >Synopsis: Allow CVS_UPDATE to be used with SUP_UPDATE w/o PORTSSUPFILE >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 Apr 10 07:30:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James Housley >Release: FreeBSD 3.4-STABLE i386 >Organization: The Housleys dot Net >Environment: >Description: The src/Makefile allows update to use both SUP_UPDATE and CVS_UPDATE at the same time, ie. SUP to update the secure & crypto tree and CVS to update from the local cvs tree. ports/Makefile won't use CVS_UPDATE if SUP_UPDATE is defined. Not only that but there is an error because PORTSSUPFILE is not defined. The attached patch: Uses SUP if SUP_UPDATE & PORTSSUPFILE are both defined else uses CVS_UPDATE if defined else produces an error (like before) if SUP_UPDATE is defined but PORTSSUPFILE is not defined else produces and error SUP_UPDATE or CVS_UPDATE must be defined >How-To-Repeat: >Fix: --- Makefile Mon Apr 10 10:21:28 2000 +++ Makefile.new Mon Apr 10 10:20:48 2000 @@ -78,11 +86,7 @@ CVS?= cvs update: -.if defined(SUP_UPDATE) -.if !defined(PORTSSUPFILE) - @${ECHO_MSG} "Error: Please define PORTSSUPFILE before doing make update." - @exit 1 -.endif +.if defined(SUP_UPDATE) && defined(PORTSSUPFILE) @echo "--------------------------------------------------------------" @echo ">>> Running ${SUP}" @echo "--------------------------------------------------------------" @@ -92,6 +96,9 @@ @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT} @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${CVS} -q update -P -d +.elif defined(SUP_UPDATE) && !defined(PORTSSUPFILE) + @${ECHO_MSG} "Error: Please define PORTSSUPFILE before doing make update." + @exit 1 .else @${ECHO_MSG} "Error: Please define either SUP_UPDATE or CVS_UPDATE first." .endif >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 7:46:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radiac.mine.nu (h186n2fls20o974.telia.com [212.181.170.186]) by hub.freebsd.org (Postfix) with ESMTP id 5891C37B519 for ; Mon, 10 Apr 2000 07:45:56 -0700 (PDT) (envelope-from ps@radiac.mine.nu) Received: (from ps@localhost) by radiac.mine.nu (8.9.3/8.9.3) id QAA13723; Mon, 10 Apr 2000 16:02:07 +0200 (CEST) (envelope-from ps) Date: Mon, 10 Apr 2000 16:01:37 +0200 From: Patrik Sundberg To: Ruslan Shevchenko Cc: ports@FreeBSD.ORG Subject: Re: doc++ port Message-ID: <20000410160137.A13692@radiac.mine.nu> References: <20000410124343.A12049@radiac.mine.nu> <38F1CAAA.BF362613@Shevchenko.Kiev.UA> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <38F1CAAA.BF362613@Shevchenko.Kiev.UA>; from Ruslan@Shevchenko.Kiev.UA on Mon, Apr 10, 2000 at 03:35:54PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 10, 2000 at 03:35:54PM +0300, Ruslan Shevchenko wrote: > Patrik Sundberg wrote: > > > > hi, > > > > I noticed that the doc++ port is quite out of date and the version in the > > ports-collection doesn't compile on my 4.0-stable box. I updated the port > > myself and mailed the maintainer yesterday about it. I would like to know > > the "correct" way to go about issues like this: > > - should I contact the maintainer and send him diffs? > > - should I send-pr the update? > > - if you get no response from the maintainer, what should you do then? > > (note: I only mailed the maintainer yesterday so this isn't an issue, > > I just want to know anyways..) > > update is live in ports queue as ports/17860 > > In general case: the "correct" way is: > 1. Check: are exists the same send-pr in GNATS queue. > 2. if not -- send problem report, which will be forwarded to > maintainer of port. ah.. gnats - of course. thanks. -- Patrik Sundberg - email: ps@raditex.se || ps@radiac.mine.nu ---> telefon: 013-178 567 - mobiltelefon: 070-760 22 40 <--- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 8:45: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.af.airnet.ne.jp (mail.af.airnet.ne.jp [210.159.66.49]) by hub.freebsd.org (Postfix) with ESMTP id B58E337B78C for ; Mon, 10 Apr 2000 08:45:04 -0700 (PDT) (envelope-from imura@cs.titech.ac.jp) Received: from imura.af.airnet.ne.jp (tok186.airnet.ne.jp [210.159.88.186]) by mail.af.airnet.ne.jp (8.8.8/3.6W/06/13/98-AF.AIRNET.NE.JP) with ESMTP id AAA15960; Tue, 11 Apr 2000 00:45:02 +0900 Posted-Date: Tue, 11 Apr 2000 00:44:30 +0900 (JST) To: andre.albsmeier@mchp.siemens.de Cc: sada@bsdclub.org, ports@FreeBSD.ORG Subject: Re: netscape 6.00.p1 From: "R. Imura" In-Reply-To: <20000410105841.A79631@internal> References: <20000409015232Q.sada@bsdclub.org> <20000410020248T.imura@cs.titech.ac.jp> <20000410105841.A79631@internal> X-Mailer: Mew version 1.94b20 on Emacs 19.34 / Mule 2.3 =?iso-2022-jp?B?KBskQkt2RSYyVhsoQik=?= X-Prom-Mew: Prom-Mew 1.93.4 (procmail reader for Mew) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000411004428D.imura@cs.titech.ac.jp> Date: Tue, 11 Apr 2000 00:44:28 +0900 X-Dispatcher: imput version 990401(IM113) Lines: 22 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Does the patch from > > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/include/npx.h.diff?r1=1.17&r2=1.18 > > help. Just guessing... Hmm... messages changed from: > > Floating point exception to: Profile Manager : Profile Wizard and Manager activites : Begin Profile Manager : Command Line Options : Begin Profile Manager : Command Line Options : End ~nsProfile and syslog says "shared address space fork attempted: pid: xxx" -- R. Imura // my private mail address has changed. // imura@cs.titech.ac.jp ====> imura@af.airnet.ne.jp /(-.-)y-~~ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 8:48: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 9176037BB88 for ; Mon, 10 Apr 2000 08:47:58 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer david.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.10.0/8.10.0) with ESMTP id e3AFlqs27035 for ; Mon, 10 Apr 2000 17:47:53 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.10.0/8.10.0) with ESMTP id e3AFlq227223 for ; Mon, 10 Apr 2000 17:47:52 +0200 (MET DST) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id RAA06843 for ; Mon, 10 Apr 2000 17:47:52 +0200 (CEST) Date: Mon, 10 Apr 2000 17:47:50 +0200 From: Andre Albsmeier To: "R. Imura" Cc: andre.albsmeier@mchp.siemens.de, sada@bsdclub.org, ports@FreeBSD.ORG Subject: Re: netscape 6.00.p1 Message-ID: <20000410174750.A42098@internal> References: <20000409015232Q.sada@bsdclub.org> <20000410020248T.imura@cs.titech.ac.jp> <20000410105841.A79631@internal> <20000411004428D.imura@cs.titech.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000411004428D.imura@cs.titech.ac.jp>; from imura@af.airnet.ne.jp on Tue, Apr 11, 2000 at 12:44:28AM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 11-Apr-2000 at 00:44:28 +0900, R. Imura wrote: > > Does the patch from > > > > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/include/npx.h.diff?r1=1.17&r2=1.18 > > > > help. Just guessing... > > Hmm... messages changed from: > > > > Floating point exception I see. I just made the wild guess because someone wrote that it worked under 4.x-STABLE and I know that the npx.h thing is different there. > > to: > > Profile Manager : Profile Wizard and Manager activites : Begin > Profile Manager : Command Line Options : Begin > Profile Manager : Command Line Options : End > ~nsProfile > > and syslog says "shared address space fork attempted: pid: xxx" No idea about these... -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 8:49:16 2000 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 D536237B8D9; Mon, 10 Apr 2000 08:49:13 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA89262; Mon, 10 Apr 2000 08:49:13 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Date: Mon, 10 Apr 2000 08:49:13 -0700 (PDT) From: Message-Id: <200004101549.IAA89262@freefall.freebsd.org> To: jhb@FreeBSD.org, freebsd-sparc@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: sparc/17898: Patch to new version of healthd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to new version of healthd Responsible-Changed-From-To: freebsd-sparc->freebsd-ports Responsible-Changed-By: jhb Responsible-Changed-When: Mon Apr 10 08:48:33 PDT 2000 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 9:19: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from c000.sfo.cp.net (c000-h018.c000.sfo.cp.net [209.228.14.94]) by hub.freebsd.org (Postfix) with SMTP id CFD9437B8D9 for ; Mon, 10 Apr 2000 09:19:03 -0700 (PDT) (envelope-from matt@boda.virtualave.net) Received: (cpmta 4855 invoked from network); 10 Apr 2000 09:19:01 -0700 Received: from unknown (HELO UCUBE078) (206.103.60.132) by smtp.worldspy.net with SMTP; 10 Apr 2000 09:19:01 -0700 X-Sent: 10 Apr 2000 16:19:01 GMT Message-ID: <004d01bfa308$b6d2d700$843c67ce@800support.com> From: "Matt M." To: Subject: apache1.3+php3/php4 builds failing Date: Mon, 10 Apr 2000 09:20:35 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org When I try making apache13+php3, i get the following error: ===> Patching for apache+php-1.3.12+3.0.16 ===> Applying FreeBSD patches for apache+php-1.3.12+3.0.16 patch: **** can't cd to /usr/ports/www/apache13-php3/work/apache+php-1.3.12+3.0.16: No such file or directory *** Error code 1 apache13+php4 gives the following error: ===> Patching for apache+php-1.3.12+4.0RC1 ===> Applying FreeBSD patches for apache+php-1.3.12+4.0RC1 patch: **** can't cd to /usr/ports/www/apache13-php4/work/apache+php-1.3.12+4.0RC1: No such file or directory *** Error code 1 Are these supposed to be directories or actual files that it is complaining about (they don't exist on my system). Any help or suggestions are appreciated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 10:18: 1 2000 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 4CB7E37BBB2; Mon, 10 Apr 2000 10:17:59 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA99539; Mon, 10 Apr 2000 10:17:58 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Mon, 10 Apr 2000 10:17:58 -0700 (PDT) From: Message-Id: <200004101717.KAA99539@freefall.freebsd.org> To: billf@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/17903: Allow CVS_UPDATE to be used with SUP_UPDATE w/o PORTSSUPFILE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Allow CVS_UPDATE to be used with SUP_UPDATE w/o PORTSSUPFILE Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Mon Apr 10 10:17:36 PDT 2000 Responsible-Changed-Why: I added PORTSSUPFILE and the makefile logic, I'll look at this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 10:44:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (f85.law8.hotmail.com [216.33.241.85]) by hub.freebsd.org (Postfix) with SMTP id BA4B437B8E1 for ; Mon, 10 Apr 2000 10:44:32 -0700 (PDT) (envelope-from jmd526@hotmail.com) Received: (qmail 97661 invoked by uid 0); 10 Apr 2000 17:44:32 -0000 Message-ID: <20000410174432.97660.qmail@hotmail.com> Received: from 209.220.228.2 by www.hotmail.com with HTTP; Mon, 10 Apr 2000 10:44:32 PDT X-Originating-IP: [209.220.228.2] From: "John Daniels" To: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: staroffice install Date: Mon, 10 Apr 2000 13:44:32 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi: I downloaded staroffice51 from Sun to the proper directory and (as root) I ran: make install clean The port churned away, installing a couple of apps (like unzip) that it needed, then gave me a message that said (as far as I can remember) that I should exit X (I wasn't running X) and login as the user that I would normally login as and run: make install-user So I logged out of root and logged in using my user account and did the make install-user (in the staroffice5 port directory) but I just get an error message: $ make install-user /usr/local/Office51/bin/setup /usr/local/Office51/bin/setup:No such file or directory *** Error code 1 Stop in /usr/ports/editors/staroffice5. It seems that staroffice was installed under the ports directory in a directory (with subdirectors) named "work". Is this what it is supposed to do? I found "setup" and tried to run it (from the user account) but I get an error message: $ /usr/ports/editors/staroffice5/work/so51inst/office51/setup /usr/tmp/sv001.tmp/setup.bin: error in loading shared libraries: libvos517li.so: cannot open shared object file: No such file or directory Have I done anything wrong? How can I get setup to run? Thanks in advance for any help. John ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 10:56:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B3B937B755; Mon, 10 Apr 2000 10:52:29 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F5454.dip0.t-ipconnect.de [193.159.84.84]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id SAA13824; Mon, 10 Apr 2000 18:52:07 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 5356FAC2C; Mon, 10 Apr 2000 19:55:24 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id TAA10588; Mon, 10 Apr 2000 19:52:27 +0200 (CEST) (envelope-from alex) Date: Mon, 10 Apr 2000 19:52:27 +0200 From: Alexander Langer To: John Daniels Cc: freebsd-questions@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: staroffice install Message-ID: <20000410195227.A10572@cichlids.cichlids.com> Mail-Followup-To: John Daniels , freebsd-questions@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG References: <20000410174432.97660.qmail@hotmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000410174432.97660.qmail@hotmail.com>; from jmd526@hotmail.com on Mon, Apr 10, 2000 at 01:44:32PM -0400 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 make install first under X again, then make install-user. be sure not to NFS mount the WRKDIR of the port, it will fail. Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 10:57: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.cybcon.com (mail.cybcon.com [216.190.188.5]) by hub.freebsd.org (Postfix) with ESMTP id A87C437B765; Mon, 10 Apr 2000 10:56:57 -0700 (PDT) (envelope-from wwoods@cybcon.com) Received: from laptop.cybcon.com (william@tc1-26.cybcon.com [63.163.56.27]) by mail.cybcon.com (8.9.3/8.9.3) with ESMTP id KAA22580; Mon, 10 Apr 2000 10:57:11 -0700 (PDT) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20000410174432.97660.qmail@hotmail.com> Date: Mon, 10 Apr 2000 10:56:46 -0700 (PDT) Reply-To: bwoods2@uswest.net From: William Woods To: John Daniels Subject: RE: staroffice install Cc: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Regarding StarOffice: I notice there is a new StarOfice up at suns sight. .2 I believe it is. I currently have StarOffice .1 installed, from the ports. It is running well,. Are there any planes to update the port to handle StarOffice .2? ---------------------------------- E-Mail: bwoods2@uswest.net Date: 10-Apr-00 Time: 10:54:53l ---------------------------------- NOTICE TO BULK E-MAILERS: Pursuant to US Code, Title 47, Chapter 5, Subchapter II, 227, and all unsolicited commercial e-mail sent to this address is subject to a download and archival fee in the amount of $500 US To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 11: 0: 5 2000 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 1080C37B7D3 for ; Mon, 10 Apr 2000 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 LAA04597; Mon, 10 Apr 2000 11:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from netserv1.chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id 4BC9737B744 for ; Mon, 10 Apr 2000 10:55:42 -0700 (PDT) (envelope-from dima@netserv1.chg.ru) Received: (from dima@localhost) by netserv1.chg.ru (8.9.3/8.9.3) id VAA70359; Mon, 10 Apr 2000 21:55:36 +0400 (MSD) Message-Id: <200004101755.VAA70359@netserv1.chg.ru> Date: Mon, 10 Apr 2000 21:55:36 +0400 (MSD) From: Dmitry Sivachenko Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17908: Typo in x11-fm/gnomemc/Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17908 >Category: ports >Synopsis: Typo in x11-fm/gnomemc/Makefile >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: Mon Apr 10 11:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Replace DISTNAME=mc-${PORTNAME} with DISTNAME=mc-${PORTVERSION} >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 11: 0:26 2000 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 577DC37BC39 for ; Mon, 10 Apr 2000 11:00:11 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA04631 for freebsd-ports@freebsd.org; Mon, 10 Apr 2000 11:00:10 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 10 Apr 2000 11:00:10 -0700 (PDT) Message-Id: <200004101800.LAA04631@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 [2000/03/16] ports/17426 ports tkrat2 port broken -- builds, but does no o [2000/03/19] ports/17491 ports Can't get the OpenSSH port to compile und o [2000/03/30] ports/17691 ports mpg123 didn't free memory o [2000/04/04] ports/17806 ports make in ports/net/citrix_ica loops on scr 4 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/02/19] ports/16829 ports kaffe port is broken - dumps core with al o [2000/03/12] ports/17344 ports devel/boehm-gc fails for www/w3m 3.4 STAB o [2000/03/15] ports/17397 ports New port: sysutils/slay o [2000/03/15] ports/17401 ports exmh2 can't find slocal of nmh o [2000/03/15] ports/17402 ports latex2html requires pnmtopng binary o [2000/03/16] ports/17404 ports Apache's build fails due to the version n o [2000/03/25] ports/17599 ports x11-toolkit/tk82 port ignores local CFLAG o [2000/03/28] ports/17654 ports gnome broken o [2000/04/01] ports/17736 ports Postgres port should be updated to 7.0bet o [2000/04/03] ports/17773 ports Driver patched to work with latest MySQL o [2000/04/06] ports/17835 ports www/apache-jserv: put jar-files in share/ o [2000/04/08] ports/17863 ports Running DAP reboots computer o [2000/04/10] ports/17898 ports Patch to new version of healthd o [2000/04/10] ports/17899 ports lang/guile build failing 14 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1998/11/25] ports/8864 ports useradd - system V compatible implementat f [1999/02/16] ports/10124 ports New port: math/stat o [1999/06/13] ports/12188 ports New port: pbs-2.1.11 (misc/PBS) a batch s o [1999/07/05] ports/12518 ports New port: ifmail-os-2.14.7 o [1999/08/17] ports/13191 ports New port: fire-1.0 o [1999/08/18] ports/13251 ports New port: founts-11 o [1999/09/30] ports/14070 ports New port: devel/crossgo32-f77 o [1999/10/01] ports/14079 ports ssh2 port won't install if automake is in o [1999/10/02] ports/14088 ports port of new fvwm 2.3 beta (2.3.8) f [1999/10/07] ports/14185 ports ports/x11-wm/fvwm2 updated from 2.2.2 to o [1999/10/11] ports/14260 ports New port: WODA - A Web Oriented Database o [1999/10/25] ports/14515 ports New Port: Tripwire 1.3 o [1999/11/01] ports/14643 ports New port: chinese/pyDict A Chinese/Engli o [1999/11/18] ports/14991 ports New port: devel/tcl-trf Tcl Data transfo o [1999/11/28] ports/15147 ports New port: audio/xsidplay o [1999/12/08] ports/15367 ports new ports on linux emulator f [1999/12/14] ports/15481 ports ports/devel/codecrusader slightly broken f [1999/12/17] ports/15545 ports New port: x11/xterm f [1999/12/18] ports/15552 ports New port: news/knode o [2000/01/02] ports/15840 ports New port: x11-fonts/ucs-fixed o [2000/01/03] ports/15873 ports New port: Apache_fp+php+mod_ssl-1.3.9+3.0 o [2000/01/04] ports/15886 ports New port: audio/cd2mp3 o [2000/01/04] ports/15894 ports New port: security/aide AIDE 0.5 o [2000/01/08] ports/15994 ports new port libapreq 0.31 o [2000/01/12] ports/16088 ports apache13-ssl lacks sbin/gcache in PLIST o [2000/01/19] ports/16201 ports Port of CDD isn't up to date o [2000/01/25] ports/16347 ports Inconsistencies between Java ports o [2000/01/26] ports/16377 ports new port for PGP 6.5.1i o [2000/01/27] ports/16417 ports nethack3 port won't compile on 3.4-Stable o [2000/01/30] ports/16486 ports New Port: devel/linux-jdk-1.2.2 o [2000/02/09] ports/16606 ports [NEW PORT] new port of Adobe Acrobat View o [2000/02/10] ports/16629 ports New port of vtun 2.0. o [2000/02/10] ports/16636 ports New port: GNU find o [2000/02/10] ports/16638 ports New port: GNU fileutils o [2000/02/10] ports/16640 ports rwhois port install tries to copy wrong l o [2000/02/10] ports/16648 ports New port: graphics/Gdtclft (TCL interface o [2000/02/11] ports/16651 ports [ports] net/pppload fails to compile o [2000/02/12] ports/16693 ports new port: wavplay 1.4 now with the port! o [2000/02/16] ports/16763 ports New port: emulators/vxtools o [2000/02/17] ports/16794 ports New port: sdts++ o [2000/02/23] ports/16949 ports New Port: audio/pimp3 o [2000/02/24] ports/16970 ports New port of TclX-8.2 (lang/tclX82) o [2000/02/25] ports/16989 ports New port: comms/qico 0.45pre3 o [2000/02/25] ports/16997 ports Incompatibility between GNOME and KDE o [2000/02/25] ports/16998 ports Eterm fails to function from Gnome/Enligh o [2000/02/25] ports/17001 ports [PATCH] additional fvwm2 icons o [2000/02/26] ports/17016 ports New port -- Wordnet -- dictionary and the o [2000/02/27] ports/17018 ports New port submission for Moneydance o [2000/02/27] ports/17035 ports Update port www/ijb to both use FreeBSD g o [2000/02/28] ports/17037 ports A new port of NADAR-b04 o [2000/02/28] ports/17047 ports Let doc++ install documentation o [2000/02/28] ports/17066 ports audio/xmms chewing CPU (and skipping too) o [2000/03/01] ports/17111 ports [NEW PORT] New port of Jext - a powerful o [2000/03/01] ports/17116 ports New port: net/ip-tun o [2000/03/02] ports/17130 ports New Ports: korean/hlatex-uhcstd o [2000/03/02] ports/17131 ports New Ports: korean/hlatexpsfonts-uhcextra o [2000/03/04] ports/17176 ports Update ports: Mew-1.94.2 o [2000/03/05] ports/17215 ports XFree86 SVGA SiS5597/5598 server problem o [2000/03/06] ports/17229 ports Update port: ftp/downloader to 1.13 (fix o [2000/03/06] ports/17236 ports New ports tamago 4.0.6 o [2000/03/07] ports/17249 ports Updated md5 checksum for audio/xmms-livei o [2000/03/08] ports/17262 ports New port: japanese/xmsgsaver 1.7 o [2000/03/08] ports/17279 ports USA/Canada Netscape Navigator 4.72 FreeBS o [2000/03/09] ports/17286 ports New port of ISC DHCP 3.0 beta o [2000/03/09] ports/17293 ports samba port installs man-pages twice, fail o [2000/03/10] ports/17301 ports New port: mozilla-fonts o [2000/03/10] ports/17302 ports New Port c-nocem o [2000/03/10] ports/17309 ports ports/audio/cdd doesn't support .wav outp o [2000/03/11] ports/17316 ports New Port - QuickPicks o [2000/03/11] ports/17329 ports Re: ports/17327: New port: boxes o [2000/03/11] ports/17332 ports New ports: korean/gtkcomm o [2000/03/12] ports/17336 ports ktranslator port make failure o [2000/03/12] ports/17337 ports New port for bulb-1.0.6 o [2000/03/12] ports/17348 ports Update port security/libparanoia from 1.3 o [2000/03/12] ports/17350 ports tripwire used mktemp(), siggen not instal o [2000/03/14] ports/17376 ports New port -- mysql-editor, web-based table o [2000/03/14] ports/17382 ports New port, devel/p5-Locale-Maketext o [2000/03/15] ports/17390 ports A port to track SAINT at its current vers o [2000/03/16] ports/17407 ports Port of SmallEiffel -0.77 o [2000/03/16] ports/17415 ports New Port: ip-tun (update) o [2000/03/16] ports/17416 ports New Port: p5-File-CounterFile o [2000/03/16] ports/17417 ports New Port: p5-Mail-Sendmail o [2000/03/16] ports/17418 ports New Port: p5-Net-Netmask o [2000/03/16] ports/17419 ports New Port: p5-Net-SSLeay o [2000/03/16] ports/17420 ports New Port: xbone o [2000/03/16] ports/17427 ports a big enhancement to the flexability of t o [2000/03/17] ports/17436 ports New port: emulators/vxtools - utilites f o [2000/03/17] ports/17447 ports Addition of a new port o [2000/03/17] ports/17451 ports shells/ksh93 is broken o [2000/03/18] ports/17473 ports YACC error in wine-99.11.14 port (tools/w o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl o [2000/03/19] ports/17496 ports /usr/ports/editors/emacs termcap problem o [2000/03/20] ports/17513 ports new ports: russian/apache13-php3 (fix, pl o [2000/03/21] ports/17523 ports New port: www/ssserver-1.0 o [2000/03/21] ports/17534 ports Update of lang/clisp port, new version & o [2000/03/22] ports/17547 ports new port xtrojka o [2000/03/22] ports/17556 ports New port: audio/linux-realplayer7 o [2000/03/23] ports/17572 ports [NEW PORT] New port of PVMPov-distributin o [2000/03/24] ports/17577 ports New port: hebrew/elmar-fonts o [2000/03/24] ports/17580 ports unable to make webcopy, invalid mastersit o [2000/03/24] ports/17586 ports New port: MyODBC-2.50.28 o [2000/03/24] ports/17587 ports New port: libiodbc 2.50.3 o [2000/03/25] ports/17597 ports New port: p5-Net-ext - a perl modules for o [2000/03/25] ports/17603 ports ports/www/wwwoffle SPOOL=/home, then fail o [2000/03/28] ports/17641 ports New port: sysutils/heat o [2000/03/28] ports/17646 ports Update port: cad/xcircuit o [2000/03/29] ports/17663 ports New port: audio/bwap o [2000/03/29] ports/17673 ports w3m port bugs o [2000/03/29] ports/17675 ports New port: findutils-4.1 o [2000/03/29] ports/17676 ports new port: astro/rmap o [2000/03/30] ports/17693 ports port djview plugin for netscape-linux o [2000/03/31] ports/17707 ports new port: audio/sphinx o [2000/03/31] ports/17721 ports Update port: misc/ytree to 1.67 o [2000/03/31] ports/17723 ports Update port: www/boa to 0.94.6 o [2000/04/01] ports/17727 ports New port: Pine with Hebrew support, see a o [2000/04/01] ports/17744 ports postgresql cannot be packaged because it o [2000/04/02] ports/17747 ports Ports Update: korean/ami o [2000/04/02] ports/17753 ports Update port: mail/wanderlust-emacs o [2000/04/02] ports/17754 ports Update ports: mail/wanderlust-{mule,emacs o [2000/04/02] ports/17763 ports update ports : libProplist and windowmake o [2000/04/03] ports/17769 ports New port: sgmltools 2.0.2 o [2000/04/03] ports/17771 ports new port: japanese/elisp-manual o [2000/04/03] ports/17777 ports [PATCH] Postfix port to consistently use o [2000/04/04] ports/17789 ports new port: devel/libxode o [2000/04/04] ports/17790 ports update port: japanese/emacs-manual o [2000/04/04] ports/17792 ports Update /security/stunnel port o [2000/04/04] ports/17798 ports ports/java/jdk: headers incorrectly check o [2000/04/04] ports/17799 ports JGNAT port o [2000/04/04] ports/17801 ports new port: devel/binutils11 o [2000/04/04] ports/17802 ports port update: devel/gcc11 o [2000/04/04] ports/17803 ports new port: devel/gdb11 o [2000/04/04] ports/17804 ports math/PDL upgrade: 2.0 -> 2.004 o [2000/04/04] ports/17807 ports Update port: astro/setiathome o [2000/04/05] ports/17820 ports majordomo port should be updated to v. 1. o [2000/04/06] ports/17823 ports new port: audio/streamripper o [2000/04/06] ports/17825 ports /misc/mc Makefile mistype o [2000/04/06] ports/17827 ports Update port: audio/timidity++ o [2000/04/06] ports/17837 ports ImageMagick port busted o [2000/04/06] ports/17838 ports graphics/ImageMagick patch to overcome Xa o [2000/04/07] ports/17850 ports Update port: converters/mimepp to 1.2.4 o [2000/04/07] ports/17852 ports Update port: mail/glbiff to 0.3.2 o [2000/04/07] ports/17853 ports Update port: mail/xmailbox o [2000/04/07] ports/17854 ports Update port: net/gtksamba to gnosamba 0.3 o [2000/04/08] ports/17860 ports update of devel/doc++ o [2000/04/09] ports/17876 ports fix MASTER_SITE location o [2000/04/09] ports/17882 ports New version of healthd o [2000/04/09] ports/17884 ports cannot compiled hylafax on 5.0-current o [2000/04/09] ports/17891 ports update to teh grap port o [2000/04/09] ports/17892 ports update for net/binkd FreeBSD port o [2000/04/10] ports/17893 ports [PATCH] Cleanup of build process of the p o [2000/04/10] ports/17894 ports update of /usr/ports/sysutils/gtar/ o [2000/04/10] ports/17896 ports New port: p5-GD-Graph3d o [2000/04/10] ports/17897 ports transfig does not compile with XFree86-4. o [2000/04/10] ports/17901 ports tiny typo in Makefile for /usr/ports/www/ o [2000/04/10] ports/17902 ports out of date version number for PORTVERSIO o [2000/04/10] ports/17908 ports Typo in x11-fm/gnomemc/Makefile 156 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 Apr 10 11:30:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (f15.law8.hotmail.com [216.33.241.15]) by hub.freebsd.org (Postfix) with SMTP id D227B37B765 for ; Mon, 10 Apr 2000 11:30:15 -0700 (PDT) (envelope-from jmd526@hotmail.com) Received: (qmail 38809 invoked by uid 0); 10 Apr 2000 18:30:15 -0000 Message-ID: <20000410183015.38808.qmail@hotmail.com> Received: from 209.220.228.2 by www.hotmail.com with HTTP; Mon, 10 Apr 2000 11:30:14 PDT X-Originating-IP: [209.220.228.2] From: "John Daniels" To: alex@big.endian.de Cc: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: staroffice install Date: Mon, 10 Apr 2000 14:30:14 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi: Thanks for your help. I am a newbie, so I need a bit more clarification. First, I didn't "install under X" the first time (was that a mistake?). I run KDE. I assume that "install under X" means to run in a terminal (are KDE terminals and Xterminals the same? I assume so.) Was it wrong for me not to install in a terminal. (I think there should have been directions in the README if it is necessary to do so.) I do not NFS mount anything, so not to worry. I have a very simple setup. My network consists of a router for DSL access and my home computer. I am the only user and I have 3 accounts: root, and 2 user accounts. Do I need to a) make install as root (redoing the installation, but using a terminal) or b) do I need to make install (again) under a user account (which will be the account that will use staroffice)? If (a) then should I first make deinstall (since I will be redoing the install), and if (b) does this mean that each user account needs to do a make install (this doesn't seem logical)? Any other pointers/info that you can provide to make this go smoothly is greatly appreciated. John >From: Alexander Langer >To: John Daniels >CC: freebsd-questions@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG >Subject: Re: staroffice install >Date: Mon, 10 Apr 2000 19:52:27 +0200 > >make install first under X again, then make install-user. > >be sure not to NFS mount the WRKDIR of the port, it will fail. > >Alex ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 11:39:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (f241.law8.hotmail.com [216.33.241.241]) by hub.freebsd.org (Postfix) with SMTP id 3BCA737BC2C for ; Mon, 10 Apr 2000 11:39:15 -0700 (PDT) (envelope-from jmd526@hotmail.com) Received: (qmail 29400 invoked by uid 0); 10 Apr 2000 18:39:14 -0000 Message-ID: <20000410183914.29399.qmail@hotmail.com> Received: from 209.220.228.2 by www.hotmail.com with HTTP; Mon, 10 Apr 2000 11:39:14 PDT X-Originating-IP: [209.220.228.2] From: "John Daniels" To: bwoods2@uswest.net Cc: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: RE: staroffice install Date: Mon, 10 Apr 2000 14:39:14 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi: This is what I know from the Sun website: - 5.2 is a beta, it is not released S/W - downloading 5.2 is only possible until the end of the month of April. - the license on 5.2 expires on June 1st (may not be the exact date, but close enough) I am only a FreeBSD user, but it would seem that given that the 5.2 beta will only be available for very short time, and that the useful life of the 5.2 beta is at most a couple of months, it probably doesn't make a whole lot of sense to make it a port. Maybe if it is *very* easy to modify the 5.1 port, then a port can be made, but I for one am not holding my breath. 5.2 is due to be released in the summer (sometime in June?). John >From: William Woods >Reply-To: bwoods2@uswest.net >To: John Daniels >CC: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org >Subject: RE: staroffice install >Date: Mon, 10 Apr 2000 10:56:46 -0700 (PDT) > >Regarding StarOffice: > >I notice there is a new StarOfice up at suns sight. .2 I believe it is. I >currently have StarOffice .1 installed, from the ports. It is running >well,. >Are there any planes to update the port to handle StarOffice .2? > >---------------------------------- >E-Mail: bwoods2@uswest.net >Date: 10-Apr-00 >Time: 10:54:53l >---------------------------------- > >NOTICE TO BULK E-MAILERS: Pursuant to US Code, Title 47, Chapter 5, >Subchapter II, 227, and all unsolicited commercial e-mail sent to this >address is subject to a download and archival fee in the amount of $500 US > ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 11:43:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id E1EBD37BC92; Mon, 10 Apr 2000 11:43:21 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F5454.dip0.t-ipconnect.de [193.159.84.84]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id TAA28319; Mon, 10 Apr 2000 19:42:43 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 11033AC2C; Mon, 10 Apr 2000 20:45:59 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id UAA11830; Mon, 10 Apr 2000 20:43:03 +0200 (CEST) (envelope-from alex) Date: Mon, 10 Apr 2000 20:43:03 +0200 From: Alexander Langer To: John Daniels Cc: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: staroffice install Message-ID: <20000410204303.A11750@cichlids.cichlids.com> Mail-Followup-To: John Daniels , freebsd-ports@freebsd.org, freebsd-questions@freebsd.org References: <20000410183015.38808.qmail@hotmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000410183015.38808.qmail@hotmail.com>; from jmd526@hotmail.com on Mon, Apr 10, 2000 at 02:30:14PM -0400 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 Thus spake John Daniels (jmd526@hotmail.com): > First, I didn't "install under X" the first time (was that a mistake?). I > run KDE. I assume that "install under X" means to run in a terminal (are Yes, that's the same. KDE is only a program (a Desktop) running _under_ X. (X is the graphical system/interface all programs with graphics use). > KDE terminals and Xterminals the same? I assume so.) Was it wrong for me Yes. You hae to install X under a terminal. be sure the DISPLAY variable is set, try typing "echo $DISPLAY": alex:~ $ echo $DISPLAY :0.0 if this is the case, you're intalling under X. if not, and you're using it from a terminal, you should type "export DISPLAY=:0.0" > Do I need to a) make install as root (redoing the installation, but using a > terminal) or b) do I need to make install (again) under a user account yes, as root, in a terminal. after that, you have to install-user the thing as the user who wants to use staroffice. for me that's alex. I ma(k)de install-user as alex, and not as root. You have to do that for every account who wants to use staroffice, even root (but you really shouldn't use staroffice as root) If staroffice is already installed (don't think so), try make deinstall and start from scratch. a) make install as user root in a terminal b) make install-user as the user in a terminal Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 11:44: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.cybcon.com (mail.cybcon.com [216.190.188.5]) by hub.freebsd.org (Postfix) with ESMTP id BACC537BCAC; Mon, 10 Apr 2000 11:43:52 -0700 (PDT) (envelope-from wwoods@cybcon.com) Received: from laptop.cybcon.com (william@tc1-26.cybcon.com [63.163.56.27]) by mail.cybcon.com (8.9.3/8.9.3) with ESMTP id LAA26487; Mon, 10 Apr 2000 11:44:00 -0700 (PDT) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20000410183914.29399.qmail@hotmail.com> Date: Mon, 10 Apr 2000 11:43:35 -0700 (PDT) Reply-To: bwoods2@uswest.net From: William Woods To: John Daniels Subject: RE: staroffice install Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org, bwoods2@uswest.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org OK, I dident realise its only a beta.... On 10-Apr-00 John Daniels wrote: > Hi: > This is what I know from the Sun website: > > - 5.2 is a beta, it is not released S/W > - downloading 5.2 is only possible until the end of the month of > April. > - the license on 5.2 expires on June 1st (may not be the exact > date, but close enough) > > I am only a FreeBSD user, but it would seem that given that the 5.2 beta > will only be available for very short time, and that the useful life of the > 5.2 beta is at most a couple of months, it probably doesn't make a whole lot > of sense to make it a port. Maybe if it is *very* easy to modify the 5.1 > port, then a port can be made, but I for one am not holding my breath. > > 5.2 is due to be released in the summer (sometime in June?). > > John > >>From: William Woods >>Reply-To: bwoods2@uswest.net >>To: John Daniels >>CC: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org >>Subject: RE: staroffice install >>Date: Mon, 10 Apr 2000 10:56:46 -0700 (PDT) >> >>Regarding StarOffice: >> >>I notice there is a new StarOfice up at suns sight. .2 I believe it is. I >>currently have StarOffice .1 installed, from the ports. It is running >>well,. >>Are there any planes to update the port to handle StarOffice .2? >> >>---------------------------------- >>E-Mail: bwoods2@uswest.net >>Date: 10-Apr-00 >>Time: 10:54:53l >>---------------------------------- >> >>NOTICE TO BULK E-MAILERS: Pursuant to US Code, Title 47, Chapter 5, >>Subchapter II, 227, and all unsolicited commercial e-mail sent to this >>address is subject to a download and archival fee in the amount of $500 US >> > > ______________________________________________________ > Get Your Private, Free Email at http://www.hotmail.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---------------------------------- E-Mail: bwoods2@uswest.net Date: 10-Apr-00 Time: 11:43:13l ---------------------------------- NOTICE TO BULK E-MAILERS: Pursuant to US Code, Title 47, Chapter 5, Subchapter II, 227, and all unsolicited commercial e-mail sent to this address is subject to a download and archival fee in the amount of $500 US To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 12:37:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from proxy.grad.kiev.ua (KievglavArhit-UTC.ukrtel.net [195.5.25.54]) by hub.freebsd.org (Postfix) with ESMTP id 5E54037B533 for ; Mon, 10 Apr 2000 12:37:03 -0700 (PDT) (envelope-from Ruslan@Shevchenko.Kiev.UA) Received: from Shevchenko.Kiev.UA (bolla.internal.grad.kiev.ua [10.0.1.99]) by proxy.grad.kiev.ua (8.9.3/8.9.1) with ESMTP id WAA25916 for ; Mon, 10 Apr 2000 22:36:35 +0300 (EEST) (envelope-from Ruslan@Shevchenko.Kiev.UA) Message-ID: <38F22F7F.12E57DA8@Shevchenko.Kiev.UA> Date: Mon, 10 Apr 2000 22:46:07 +0300 From: Ruslan Shevchenko Reply-To: Ruslan@Shevchenko.Kiev.UA X-Mailer: Mozilla 4.07 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: ports@freebsd.org Subject: about ports/17047 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org documentation is installed in latest update, ports/17860, so ports 17047 can be closed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 12:42:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp1.vnet.net (smtp1.vnet.net [166.82.1.31]) by hub.freebsd.org (Postfix) with ESMTP id D3F7737B9E2 for ; Mon, 10 Apr 2000 12:42:37 -0700 (PDT) (envelope-from rivers@dignus.com) Received: from dignus.com (ponds.vnet.net [166.82.177.48]) by smtp1.vnet.net (8.9.1a/8.9.1) with ESMTP id PAA15744 for ; Mon, 10 Apr 2000 15:42:30 -0400 (EDT) Received: from lakes.dignus.com (lakes.dignus.com [10.0.0.3]) by dignus.com (8.9.2/8.8.5) with ESMTP id PAA14210 for ; Mon, 10 Apr 2000 15:42:29 -0400 (EDT) Received: (from rivers@localhost) by lakes.dignus.com (8.9.3/8.6.9) id PAA48525 for freebsd-ports@freebsd.org; Mon, 10 Apr 2000 15:42:29 -0400 (EDT) Date: Mon, 10 Apr 2000 15:42:29 -0400 (EDT) From: Thomas David Rivers Message-Id: <200004101942.PAA48525@lakes.dignus.com> To: freebsd-ports@freebsd.org Subject: 3.4 apache+php port? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm trying to rebuild the 3.4 apache+php port to enable IMAP support in the PHP portion. But, when I build it; I can't get PHP to work in the server; I've got apache build, and when I do apache -l it claims that the appropriate mod is there: Compiled-in modules: http_core.c mod_so.c mod_php3.c and, I've got AddType application/x-httpd-php3 .phtml .php3 AddType application/x-httpd-php3-source .phps .php3s in my apache.conf, and just to "make sure", I put application/x-httpd-php3 phtml php3 application/x-httpd-php3-source phps php3s in the mime.types file. I did notice that the apache package installs apache as /usr/local/libexec/httpd instead of /usr/local/libexec/apache. Could that be related? - Thanks - - Dave Rivers - (p.s. please include rivers@dignus.com in any reply) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 12:55:13 2000 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 10DA137B930; Mon, 10 Apr 2000 12:55:12 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA20617; Mon, 10 Apr 2000 12:55:11 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Mon, 10 Apr 2000 12:55:11 -0700 (PDT) From: Message-Id: <200004101955.MAA20617@freefall.freebsd.org> To: dima@Chg.RU, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17908: Typo in x11-fm/gnomemc/Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Typo in x11-fm/gnomemc/Makefile State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Mon Apr 10 12:55:01 PDT 2000 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 Mon Apr 10 13: 2:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 30F0137B7CD for ; Mon, 10 Apr 2000 13:02:31 -0700 (PDT) (envelope-from cpiazza@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 2164436; Mon, 10 Apr 2000 13:02:19 -0700 (PDT) Date: Mon, 10 Apr 2000 13:02:19 -0700 From: Chris Piazza To: "Matt M." Cc: ports@FreeBSD.ORG Subject: Re: apache1.3+php3/php4 builds failing Message-ID: <20000410130219.A670@norn.ca.eu.org> References: <004d01bfa308$b6d2d700$843c67ce@800support.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <004d01bfa308$b6d2d700$843c67ce@800support.com>; from matt@boda.virtualave.net on Mon, Apr 10, 2000 at 09:20:35AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 10, 2000 at 09:20:35AM -0700, Matt M. wrote: > When I try making apache13+php3, i get the following error: > > ===> Patching for apache+php-1.3.12+3.0.16 > ===> Applying FreeBSD patches for apache+php-1.3.12+3.0.16 > patch: **** can't cd to > /usr/ports/www/apache13-php3/work/apache+php-1.3.12+3.0.16: No such file or > directory > *** Error code 1 > > Are these supposed to be directories or actual files that it is complaining > about (they don't exist on my system). Any help or suggestions are > appreciated. This was my fault.. I undefined DISTFILES but forgot WRKSRC is set by it. It'll be fixed as soon as I can get ssh to connect to freefall.freebsd.org :-). Thanks for noticing. -Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 13:21:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id ADE6337B805; Mon, 10 Apr 2000 13:21:23 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([192.168.192.2]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id UAA04457; Mon, 10 Apr 2000 20:21:17 GMT Message-ID: <38F237BB.5D5FAC4C@algroup.co.uk> Date: Mon, 10 Apr 2000 21:21:15 +0100 From: Adam Laurie X-Mailer: Mozilla 4.7 [en-gb] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Dirk Froemberg Cc: "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.org, hetzels@westbend.net, rse@engelschall.com, ache@FreeBSD.org, winter@FreeBSD.org, ports@FreeBSD.org, asami@FreeBSD.org, adam@algroup.co.uk, ben@algroup.co.uk Subject: Re: apache13-php4 References: <20000322134846.V25438@jade.chc-chimes.com> <20000327224807.C7980@physik.TU-Berlin.DE> <20000327155812.C23367@jade.chc-chimes.com> <20000330172419.B59713@dragon.nuxi.com> <20000330203838.H23367@jade.chc-chimes.com> <20000330210930.A60684@dragon.nuxi.com> <4.3.2.20000330233528.00df0520@207.227.119.2> <20000406130132.B70225@dragon.nuxi.com> <20000409011437.C50277@physik.TU-Berlin.DE> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dirk Froemberg wrote: > > Hi! > > On Thu, Apr 06, 2000 at 01:01:32PM -0700, David O'Brien wrote: > > At 09:09 PM 3/30/00 -0800, David O'Brien wrote: > > > > using apxs). Currently playing with 1.3.12+PHP3.0.15+SSL+FP2000 on my > > > > beta web server. Very nice! > > > > > > > > http://www.westbend.net/~hetzels/mod_apache.tgz > > > > > > > > I can't wait for the entire Apache ports system to be replaced with > > > > this method. > > > > > > So what is holding things back? Whose buy-in do we need here? > > > > Since no one has said anything, I'm sending this again -- to make sure > > all the Apache maintainers people get the mail. > > Sorry for being late with my answer... > > I think there are still some things missing before we can start: > > - a response from Andrey, the maintainer of apache13, if he agrees > to add hooks for mod_frontpage and mod_ssl generally > > - a response from Ralf, the maintainer of apache13-modssl, if he > agrees to "downgrade" his port to mod_ssl > > - a decision what to do with apache13-ssl. Adam, the maintainer, > wants to keep this port. But this wouldn't fit into the new concept. > So we either can have a exception or delete this port... What is "the new concept"? That mod_ssl replaces apache-ssl, or that one port conatains both mod_ssl and apache-ssl, user selectable? cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 13:32:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from goku.cl.msu.edu (goku.cl.msu.edu [35.8.3.20]) by hub.freebsd.org (Postfix) with ESMTP id 0952237B763; Mon, 10 Apr 2000 13:32:41 -0700 (PDT) (envelope-from dervish@goku.cl.msu.edu) Received: (from dervish@localhost) by goku.cl.msu.edu (8.9.3/8.9.3) id QAA95683; Mon, 10 Apr 2000 16:32:28 -0400 (EDT) (envelope-from dervish) Date: Mon, 10 Apr 2000 16:32:27 -0400 From: Bush Doctor To: Kent Stewart Cc: FreeBSD-ports@FreeBSD.ORG, "David J. Kanter" , FreeBSD Questions Subject: Re: ports/devel/codecrusader Makefile Fixes Message-ID: <20000410163227.A88596@goku.cl.msu.edu> References: <200004041002.DAA09557@freefall.freebsd.org> <38EBBDE2.47FF5BF2@3-cities.com> <20000405223501.B86568@ikhala.tcimet.net> <38EBF298.1B051729@3-cities.com> <20000405235751.A86786@ikhala.tcimet.net> <38EC1472.28B209C7@3-cities.com> <20000406170029.B98981@goku.cl.msu.edu> <38EE5DB0.4C9F3668@3-cities.com> <20000408152107.A65431@goku.cl.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000408152107.A65431@goku.cl.msu.edu>; from dervish@goku.cl.msu.edu on Sat, Apr 08, 2000 at 03:21:07PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT i386 WWW-Home-Page: http://bantu.cl.msu.edu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Out of da blue Bush Doctor aka (dervish@goku.cl.msu.edu) said: > Out of da blue Kent Stewart aka (kstewart@3-cities.com) said: > > > > > > Bush Doctor wrote: > > > > > > Out of da blue Kent Stewart aka (kstewart@3-cities.com) said: > > > > I think there was some source missing. I added code_medic, > > > > code_crusader, JSearch, JToolBar, and JTree and did a "gmake > > > > freebsd3.x" from the JX-1.5.3 directory and it is making jcc. The > > > > ports Makefile doesn't add two of these. > > > That's one thing I noticed last night. I was missing JSearch, however > > > I left off the "freebsd3.x" target. I'm going to look at it again > > > tonight. > > > > Here is what I have had to do to make Code Crusader 1.5.3 build as a > > port. > > > > Modify line 97 in patch-ac to get rid of the line 172 error. There was > > a blank right after the + that was causing the line 172 separator > > error > > > > + @mkdir ${JCC} > I wasn't getting this error on my 5.0-current system, so I did not need to > make this change. I need to revise the above. After doing 2 "make install's" after successful builds of the port and not getting any executables, even though make said the install worked, I went into the program directory, ran make and behold I got the line 172 error. Line 87 in patch-ac having a space-tab instead of a tab-space cause gmake to barf. > > > > > Kent > > > > -- > > Kent Stewart > > Richland, WA > > > > mailto:kstewart@3-cities.com > > http://www.3-cities.com/~kstewart/index.html > > FreeBSD News http://daily.daemonnews.org/ > > > > SETI(Search for Extraterrestrial Intelligence) @ HOME > > http://setiathome.ssl.berkeley.edu/ > > #;^) -- f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng. bush doctor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 14: 1:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (f117.law8.hotmail.com [216.33.241.117]) by hub.freebsd.org (Postfix) with SMTP id E9D3737B8CC for ; Mon, 10 Apr 2000 14:01:40 -0700 (PDT) (envelope-from jmd526@hotmail.com) Received: (qmail 81055 invoked by uid 0); 10 Apr 2000 21:01:41 -0000 Message-ID: <20000410210141.81053.qmail@hotmail.com> Received: from 209.220.228.2 by www.hotmail.com with HTTP; Mon, 10 Apr 2000 14:01:41 PDT X-Originating-IP: [209.220.228.2] From: "John Daniels" To: alex@big.endian.de Cc: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: staroffice install Date: Mon, 10 Apr 2000 17:01:41 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi: You wrote: >a) make install as user root in a terminal >b) make install-user as the user in a terminal I logged in as root, I did startx and checked that the terminal was OK with echo $DISPLAY, then I changed to the /usr/ports/editors/staroffice5 directory and did a make deinstall and a make install. The results: #make deinstall ===> Deinstalling for staroffice-5.1a pkg_delete: no such package 'staroffice-5.1a' installed *** Error code 1 Stop in /usr/ports/editors/staroffice5 NOTE: You werer right. The port had not been installed. But still I have a directory structure and many files under the 'work' directory in /sur/ports/editors/staroffice5. Is this because it never got to the 'clean' part of my former 'make install clean'? #make install /usr/ports/editors/staroffice5/work/so5inst/office51/setup: could not create temporary directory (/usr/ports/edit/staroffice5/work/tmp/sv001.tmp) *** Error code 255 (ignored) install: /usr/local/Office51/bin: No such file or directory Stop in /usr/ports/editors/staroffice5 *** Error code 1 THEN, when I log on as a user to try 'make install-user' (in a terminal and from the /usr/ports/editors/staroffice5 directory), I get the same error message as before. (see my first email message) Essentially it can't find a file or directory which I think is /usr/local/Office51/bin. I wanted to check with someone more knowledgeable before I proceed. Do I just need to create the /usr/local/Office/bin directory? why isn't make install doing what is needed? If I 'make clean', will the port recreate the directories and files it needs when I issue a new 'make install'? BTW, I am using FreeBSD 4.0-RELEASE with a ports tree CVSup-ed last night. John ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 16:50: 6 2000 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 C8E3E37B603 for ; Mon, 10 Apr 2000 16:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA22503; Mon, 10 Apr 2000 16:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FC8837B647 for ; Mon, 10 Apr 2000 16:44:31 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA21868; Mon, 10 Apr 2000 16:43:11 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004102343.QAA21868@freefall.freebsd.org> Date: Mon, 10 Apr 2000 16:43:11 -0700 (PDT) From: skolnick@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17912: links to Python 1.5.2 tar files are broken on page http://www.freebsd.org/ports/lang.html Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17912 >Category: ports >Synopsis: links to Python 1.5.2 tar files are broken on page http://www.freebsd.org/ports/lang.html >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 Apr 10 16:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ted Skolnick >Release: Web site problem >Organization: DreamingMedia >Environment: >Description: links to Python 1.5.2 tar files are broken on page http://www.freebsd.org/ports/lang.html >How-To-Repeat: links to Python 1.5.2 tar files are broken on page http://www.freebsd.org/ports/lang.html >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 Mon Apr 10 17:20:32 2000 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 36EDF37B8D9 for ; Mon, 10 Apr 2000 17:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA24854; Mon, 10 Apr 2000 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mailg.telia.com (mailg.telia.com [194.22.194.26]) by hub.freebsd.org (Postfix) with ESMTP id 2AFF237B556 for ; Mon, 10 Apr 2000 17:06:18 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from d1o90.telia.com (d1o90.telia.com [195.67.216.241]) by mailg.telia.com (8.9.3/8.9.3) with ESMTP id AAA13028; Tue, 11 Apr 2000 00:51:42 +0200 (CEST) Received: from stordatan.telia.com (t4o90p100.telia.com [195.67.217.220]) by d1o90.telia.com (8.8.8/8.8.8) with ESMTP id AAA28759; Tue, 11 Apr 2000 00:51:34 +0200 (CEST) Received: (from girgen@localhost) by stordatan.telia.com (8.9.3/8.9.1) id AAA33754; Tue, 11 Apr 2000 00:51:10 +0200 (CEST) (envelope-from girgen@partitur.se) Message-Id: <200004102251.AAA33754@stordatan.telia.com> Date: Tue, 11 Apr 2000 00:51:10 +0200 (CEST) From: Palle Girgensohn Reply-To: Palle Girgensohn To: FreeBSD-gnats-submit@freebsd.org Cc: noway@nohow.demon.co.uk X-Send-Pr-Version: 3.2 Subject: ports/17913: Update port: javamail -> 1.1.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17913 >Category: ports >Synopsis: Update port: javamail -> 1.1.3 >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 Apr 10 17:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Palle Girgensohn >Release: FreeBSD 4.0-STABLE i386 >Organization: Partitur >Environment: jdk-1.1.8 FreeBSD-4.0 stable >Description: This patch updates javamail to version 1.1.3. The old distfile is nowhere to be found on Sun's web site. >How-To-Repeat: >Fix: Apply this patch Index: Makefile =================================================================== RCS file: /home/ncvs/ports/java/javamail/Makefile,v retrieving revision 1.2 diff -B -b -u -r1.2 Makefile --- Makefile 1999/11/01 04:26:05 1.2 +++ Makefile 2000/04/10 22:36:49 @@ -6,23 +6,26 @@ # $FreeBSD: ports/java/javamail/Makefile,v 1.2 1999/11/01 04:26:05 steve Exp $ # -DISTNAME= javamail1_1_2 -PKGNAME= javamail-1.1.2 +DISTNAME= javamail1_1_3 +PKGNAME= javamail-${JAVAMAIL_VERSION} CATEGORIES= java EXTRACT_SUFX= .zip MAINTAINER= noway@nohow.demon.co.uk -RUN_DEPENDS= ${PREFIX}/jdk${JDK_VERSION}/bin/java:${PORTSDIR}/java/jdk \ - ${PREFIX}/share/java/classes/activation.jar:${PORTSDIR}/java/jaf +RUN_DEPENDS= ${LOCALBASE}/jdk${JDK_VERSION}/bin/java:${PORTSDIR}/java/jdk \ + ${LOCALBASE}/share/java/classes/activation.jar:${PORTSDIR}/java/jaf USE_ZIP= YES -WRKSRC= ${WRKDIR}/javamail-1.1.2 +WRKSRC= ${WRKDIR}/javamail-${JAVAMAIL_VERSION} JDK_VERSION= 1.1.8 +JAVAMAIL_VERSION=1.1.3 NO_BUILD= yes NO_CDROM= "See the license" +PLIST_SUB+= JAVAMAIL_VERSION=${JAVAMAIL_VERSION} + .include .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) IGNORE= "You must manually fetch the distribution from http://www.javasoft.com/products/javamail/index.html and place it in ${DISTDIR} then run make again" @@ -31,10 +34,12 @@ do-install: @cd ${WRKSRC}; \ ${MKDIR} ${PREFIX}/share/java/classes/; \ - ${CP} ${WRKSRC}/mail.jar ${PREFIX}/share/java/classes/; \ + ${CP} ${WRKSRC}/mail.jar ${PREFIX}/share/java/classes/; +.if !defined(NOPORTDOCS) + @cd ${WRKSRC}; \ ${MKDIR} ${PREFIX}/share/java/${PKGNAME}/; \ ${CP} CHANGES.txt LICENSE.txt NOTES.txt README.txt ${PREFIX}/share/java/${PKGNAME}/; \ ${CP} -R demo ${PREFIX}/share/java/${PKGNAME}/; \ ${CP} -R docs ${PREFIX}/share/java/${PKGNAME}/ - +.endif .include Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/java/javamail/files/md5,v retrieving revision 1.1.1.1 diff -B -b -u -r1.1.1.1 md5 --- files/md5 1999/11/01 04:22:56 1.1.1.1 +++ files/md5 2000/04/10 22:09:08 @@ -1 +1 @@ -MD5 (javamail1_1_2.zip) = fa773bbe1fd427788ce2ae9a1a08c3d9 +MD5 (javamail1_1_3.zip) = 0838da6939ca02be6268a045bc17df76 Index: pkg/PLIST =================================================================== RCS file: /home/ncvs/ports/java/javamail/pkg/PLIST,v retrieving revision 1.1.1.1 diff -B -b -u -r1.1.1.1 PLIST --- pkg/PLIST 1999/11/01 04:22:56 1.1.1.1 +++ pkg/PLIST 2000/04/10 22:30:24 @@ -1,373 +1,376 @@ share/java/classes/mail.jar -share/java/javamail-1.1.2/README.txt -share/java/javamail-1.1.2/NOTES.txt -share/java/javamail-1.1.2/LICENSE.txt -share/java/javamail-1.1.2/CHANGES.txt -share/java/javamail-1.1.2/demo/servlet/JavaMailServlet.README.txt -share/java/javamail-1.1.2/demo/servlet/JavaMailServlet.java -share/java/javamail-1.1.2/demo/servlet/JavaMail.html -share/java/javamail-1.1.2/demo/client/simple.mailcap -share/java/javamail-1.1.2/demo/client/ComponentFrame.java -share/java/javamail-1.1.2/demo/client/FolderModel.java -share/java/javamail-1.1.2/demo/client/FolderTreeNode.java -share/java/javamail-1.1.2/demo/client/FolderViewer.java -share/java/javamail-1.1.2/demo/client/MessageViewer.java -share/java/javamail-1.1.2/demo/client/MultipartViewer.java -share/java/javamail-1.1.2/demo/client/SimpleAuthenticator.java -share/java/javamail-1.1.2/demo/client/SimpleClient.java -share/java/javamail-1.1.2/demo/client/StoreTreeNode.java -share/java/javamail-1.1.2/demo/client/TextViewer.java -share/java/javamail-1.1.2/demo/client/SimpleClient.README.txt -share/java/javamail-1.1.2/demo/folderlist.java -share/java/javamail-1.1.2/demo/monitor.java -share/java/javamail-1.1.2/demo/mover.java -share/java/javamail-1.1.2/demo/msgmultisendsample.java -share/java/javamail-1.1.2/demo/msgsend.java -share/java/javamail-1.1.2/demo/msgsendsample.java -share/java/javamail-1.1.2/demo/msgshow.java -share/java/javamail-1.1.2/demo/populate.java -share/java/javamail-1.1.2/demo/registry.java -share/java/javamail-1.1.2/demo/search.java -share/java/javamail-1.1.2/demo/sendfile.java -share/java/javamail-1.1.2/demo/sendhtml.java -share/java/javamail-1.1.2/demo/transport.java -share/java/javamail-1.1.2/demo/uidmsgshow.java -share/java/javamail-1.1.2/demo/README.txt -share/java/javamail-1.1.2/demo/copier.java -share/java/javamail-1.1.2/docs/javadocs/index-files/index-22.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-2.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-3.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-4.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-5.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-6.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-7.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-8.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-9.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-10.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-11.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-12.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-13.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-14.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-15.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-16.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-17.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-18.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-19.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-20.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-21.html -share/java/javamail-1.1.2/docs/javadocs/index-files/index-1.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/InternetAddress.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/MimePartDataSource.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/HeaderTokenizer.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/HeaderTokenizer.Token.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/MimePart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/ContentType.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/MimeMultipart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/InternetHeaders.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/ParseException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/AddressException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/MimeMessage.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/MimeMessage.RecipientType.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/MimeUtility.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/NewsAddress.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/MimeBodyPart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use/ParameterList.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/package-use.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/package-summary.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/package-tree.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/package-frame.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/MimePart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/ContentType.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/HeaderTokenizer.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/HeaderTokenizer.Token.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/InternetAddress.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/InternetHeaders.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/MimeBodyPart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/MimeMessage.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/MimeMessage.RecipientType.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/MimeMultipart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/MimePartDataSource.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/MimeUtility.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/NewsAddress.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/ParameterList.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/AddressException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/ParseException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/RecipientTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/NotTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/FlagTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/StringTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/MessageIDTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/BodyTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/OrTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/ComparisonTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/DateTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/SentDateTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/AndTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/SubjectTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/IntegerComparisonTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/MessageNumberTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/ReceivedDateTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/AddressStringTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/RecipientStringTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/AddressTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/FromStringTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/SearchException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/HeaderTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/SizeTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/FromTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use/SearchTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/package-use.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/package-summary.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/package-tree.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/package-frame.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/AddressStringTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/AddressTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/AndTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/BodyTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/ComparisonTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/DateTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/FlagTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/FromStringTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/FromTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/HeaderTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/IntegerComparisonTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/MessageIDTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/NotTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/MessageNumberTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/OrTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/ReceivedDateTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/RecipientStringTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/RecipientTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/SearchTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/SentDateTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/SizeTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/StringTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/SubjectTerm.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/SearchException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/MessageCountAdapter.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/FolderListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/StoreListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/ConnectionAdapter.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/TransportListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/MailEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/MessageCountEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/TransportEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/MessageCountListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/ConnectionListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/MessageChangedListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/MessageChangedEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/FolderAdapter.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/ConnectionEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/StoreEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/FolderEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use/TransportAdapter.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/package-use.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/package-summary.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/package-tree.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/package-frame.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/ConnectionListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/FolderListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/MessageChangedListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/MessageCountListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/StoreListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/TransportListener.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/ConnectionAdapter.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/ConnectionEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/FolderAdapter.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/FolderEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/MailEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/MessageChangedEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/MessageCountAdapter.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/MessageCountEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/StoreEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/TransportAdapter.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/TransportEvent.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/IllegalWriteException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/NoSuchProviderException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Address.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Multipart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Header.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/SendFailedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/MessageAware.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Authenticator.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Provider.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Provider.Type.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Part.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/MethodNotSupportedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/StoreClosedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/FetchProfile.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/FetchProfile.Item.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/MessageContext.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/URLName.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/BodyPart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Message.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Message.RecipientType.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/FolderClosedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Folder.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/FolderNotFoundException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/MessageRemovedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/PasswordAuthentication.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/MultipartDataSource.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Service.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/AuthenticationFailedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Session.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/UIDFolder.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/UIDFolder.FetchProfileItem.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Store.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Flags.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Flags.Flag.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/Transport.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use/MessagingException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/package-frame.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/MessageAware.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/MultipartDataSource.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Part.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/UIDFolder.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Address.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Authenticator.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/BodyPart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/FetchProfile.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/FetchProfile.Item.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Flags.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Flags.Flag.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Folder.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Header.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Message.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Message.RecipientType.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/MessageContext.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Multipart.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/PasswordAuthentication.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Provider.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Provider.Type.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Service.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Session.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Store.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/Transport.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/UIDFolder.FetchProfileItem.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/URLName.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/AuthenticationFailedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/FolderClosedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/IllegalWriteException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/FolderNotFoundException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/MessageRemovedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/MessagingException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/MethodNotSupportedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/NoSuchProviderException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/SendFailedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/StoreClosedException.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/package-use.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/package-summary.html -share/java/javamail-1.1.2/docs/javadocs/javax/mail/package-tree.html -share/java/javamail-1.1.2/docs/javadocs/images/yellow-ball.gif -share/java/javamail-1.1.2/docs/javadocs/images/GridBagEx.gif -share/java/javamail-1.1.2/docs/javadocs/images/NextArrow.gif -share/java/javamail-1.1.2/docs/javadocs/images/OpenBookIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/PreviousArrow.gif -share/java/javamail-1.1.2/docs/javadocs/images/UpArrow.gif -share/java/javamail-1.1.2/docs/javadocs/images/WayUpArrow.gif -share/java/javamail-1.1.2/docs/javadocs/images/apiIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/appletHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/appletIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/appletTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/bar.gif -share/java/javamail-1.1.2/docs/javadocs/images/blue-ball-small.gif -share/java/javamail-1.1.2/docs/javadocs/images/blue-ball.gif -share/java/javamail-1.1.2/docs/javadocs/images/class-index.gif -share/java/javamail-1.1.2/docs/javadocs/images/constructor-index.gif -share/java/javamail-1.1.2/docs/javadocs/images/constructors.gif -share/java/javamail-1.1.2/docs/javadocs/images/cyan-ball-small.gif -share/java/javamail-1.1.2/docs/javadocs/images/cyan-ball.gif -share/java/javamail-1.1.2/docs/javadocs/images/info.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.NextArrow.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.PreviousArrow.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.WayUpArrow.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.appletHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.extendingHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.getStartedHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.javaHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.nativeHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.networkingHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.noCHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.toolHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.troubleHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/dim.uiHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/error-index.gif -share/java/javamail-1.1.2/docs/javadocs/images/exception-index.gif -share/java/javamail-1.1.2/docs/javadocs/images/extendingHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/extendingIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/extendingTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/getStartedHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/getStartedIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/getStartedTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/green-ball-small.gif -share/java/javamail-1.1.2/docs/javadocs/images/green-ball.gif -share/java/javamail-1.1.2/docs/javadocs/images/interface-index.gif -share/java/javamail-1.1.2/docs/javadocs/images/javaHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/javaIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/javaTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/magenta-ball-small.gif -share/java/javamail-1.1.2/docs/javadocs/images/magenta-ball.gif -share/java/javamail-1.1.2/docs/javadocs/images/manPagesIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/method-index.gif -share/java/javamail-1.1.2/docs/javadocs/images/methods.gif -share/java/javamail-1.1.2/docs/javadocs/images/nativeHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/nativeIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/nativeTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/networkingIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/networkingHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/networkingTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/noCHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/noCIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/noMoreCTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/package-index.gif -share/java/javamail-1.1.2/docs/javadocs/images/red-ball-small.gif -share/java/javamail-1.1.2/docs/javadocs/images/red-ball.gif -share/java/javamail-1.1.2/docs/javadocs/images/toolHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/toolIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/toolsTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/troubleHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/troubleIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/troubleTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/uiHeader.gif -share/java/javamail-1.1.2/docs/javadocs/images/uiIcon.gif -share/java/javamail-1.1.2/docs/javadocs/images/uiTrail.gif -share/java/javamail-1.1.2/docs/javadocs/images/variable-index.gif -share/java/javamail-1.1.2/docs/javadocs/images/variables.gif -share/java/javamail-1.1.2/docs/javadocs/images/whatsnew-bang.gif -share/java/javamail-1.1.2/docs/javadocs/images/yellow-ball-small.gif -share/java/javamail-1.1.2/docs/javadocs/images/1inch.gif -share/java/javamail-1.1.2/docs/javadocs/allclasses-frame.html -share/java/javamail-1.1.2/docs/javadocs/index.html -share/java/javamail-1.1.2/docs/javadocs/packages.html -share/java/javamail-1.1.2/docs/javadocs/overview-summary.html -share/java/javamail-1.1.2/docs/javadocs/overview-frame.html -share/java/javamail-1.1.2/docs/javadocs/serialized-form.html -share/java/javamail-1.1.2/docs/javadocs/package-list -share/java/javamail-1.1.2/docs/javadocs/help-doc.html -share/java/javamail-1.1.2/docs/javadocs/stylesheet.css -share/java/javamail-1.1.2/docs/javadocs/overview-tree.html -share/java/javamail-1.1.2/docs/javadocs/deprecated-list.html -share/java/javamail-1.1.2/docs/Providers.ps -share/java/javamail-1.1.2/docs/Providers.pdf -share/java/javamail-1.1.2/docs/JavaMail-1.1.pdf -share/java/javamail-1.1.2/docs/JavaMail-1.1.ps -share/java/javamail-1.1.2/docs/JavaMail-1.1.txt -@dirrm share/java/javamail-1.1.2/demo/servlet -@dirrm share/java/javamail-1.1.2/demo/client -@dirrm share/java/javamail-1.1.2/demo -@dirrm share/java/javamail-1.1.2/docs/javadocs/index-files -@dirrm share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet/class-use -@dirrm share/java/javamail-1.1.2/docs/javadocs/javax/mail/internet -@dirrm share/java/javamail-1.1.2/docs/javadocs/javax/mail/search/class-use -@dirrm share/java/javamail-1.1.2/docs/javadocs/javax/mail/search -@dirrm share/java/javamail-1.1.2/docs/javadocs/javax/mail/event/class-use -@dirrm share/java/javamail-1.1.2/docs/javadocs/javax/mail/event -@dirrm share/java/javamail-1.1.2/docs/javadocs/javax/mail/class-use -@dirrm share/java/javamail-1.1.2/docs/javadocs/javax/mail -@dirrm share/java/javamail-1.1.2/docs/javadocs/javax -@dirrm share/java/javamail-1.1.2/docs/javadocs/images -@dirrm share/java/javamail-1.1.2/docs/javadocs -@dirrm share/java/javamail-1.1.2/docs -@dirrm share/java/javamail-1.1.2/ -@unexec rmdir %D/share/java/classes || true -@unexec rmdir %D/share/java || true +share/java/javamail-%%JAVAMAIL_VERSION%%/README.txt +share/java/javamail-%%JAVAMAIL_VERSION%%/NOTES.txt +share/java/javamail-%%JAVAMAIL_VERSION%%/LICENSE.txt +share/java/javamail-%%JAVAMAIL_VERSION%%/CHANGES.txt +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/servlet/JavaMailServlet.README.txt +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/servlet/JavaMailServlet.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/servlet/JavaMail.html +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/simple.mailcap +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/ComponentFrame.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/FolderModel.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/FolderTreeNode.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/FolderViewer.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/MessageViewer.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/MultipartViewer.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/SimpleAuthenticator.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/SimpleClient.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/StoreTreeNode.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/TextViewer.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client/SimpleClient.README.txt +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/CRLFOutputStream.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/NewlineOutputStream.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/copier.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/folderlist.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/monitor.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/mover.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/msgmultisendsample.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/msgsend.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/msgsendsample.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/msgshow.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/populate.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/registry.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/search.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/sendfile.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/sendhtml.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/transport.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/uidmsgshow.java +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/README.txt +share/java/javamail-%%JAVAMAIL_VERSION%%/demo/ByteArrayDataSource.java +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-22.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-2.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-3.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-4.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-5.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-6.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-7.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-8.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-9.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-10.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-11.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-12.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-13.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-14.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-15.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-16.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-17.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-18.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-19.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-20.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-21.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files/index-1.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/InternetAddress.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/MimePartDataSource.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/HeaderTokenizer.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/HeaderTokenizer.Token.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/MimePart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/ContentType.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/MimeMultipart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/InternetHeaders.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/ParseException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/AddressException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/MimeMessage.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/MimeMessage.RecipientType.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/MimeUtility.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/NewsAddress.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/MimeBodyPart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use/ParameterList.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/package-use.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/package-summary.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/package-tree.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/package-frame.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/MimePart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/ContentType.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/HeaderTokenizer.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/HeaderTokenizer.Token.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/InternetAddress.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/InternetHeaders.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/MimeBodyPart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/MimeMessage.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/MimeMessage.RecipientType.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/MimeMultipart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/MimePartDataSource.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/MimeUtility.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/NewsAddress.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/ParameterList.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/AddressException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/ParseException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/RecipientTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/FlagTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/NotTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/StringTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/MessageIDTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/BodyTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/OrTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/ComparisonTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/DateTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/SentDateTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/AndTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/SubjectTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/IntegerComparisonTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/MessageNumberTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/ReceivedDateTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/AddressStringTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/RecipientStringTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/AddressTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/FromStringTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/SearchException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/HeaderTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/SizeTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/FromTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use/SearchTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/package-use.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/package-summary.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/package-tree.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/package-frame.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/AddressStringTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/AddressTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/AndTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/BodyTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/ComparisonTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/DateTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/FlagTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/FromStringTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/FromTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/HeaderTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/IntegerComparisonTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/MessageIDTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/NotTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/MessageNumberTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/OrTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/ReceivedDateTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/RecipientStringTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/RecipientTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/SearchTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/SentDateTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/SizeTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/StringTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/SubjectTerm.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/SearchException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/MessageCountAdapter.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/FolderListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/StoreListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/ConnectionAdapter.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/TransportListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/MailEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/MessageCountEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/TransportEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/MessageCountListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/ConnectionListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/MessageChangedListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/MessageChangedEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/FolderAdapter.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/ConnectionEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/StoreEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/FolderEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use/TransportAdapter.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/package-use.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/package-summary.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/package-tree.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/package-frame.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/ConnectionListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/FolderListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/MessageChangedListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/MessageCountListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/StoreListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/TransportListener.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/ConnectionAdapter.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/ConnectionEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/FolderAdapter.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/FolderEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/MailEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/MessageChangedEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/MessageCountAdapter.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/MessageCountEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/StoreEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/TransportAdapter.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/TransportEvent.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/IllegalWriteException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/NoSuchProviderException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Address.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Multipart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Header.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/SendFailedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/MessageAware.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Authenticator.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Provider.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Provider.Type.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Part.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/MethodNotSupportedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/StoreClosedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/FetchProfile.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/FetchProfile.Item.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/MessageContext.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/URLName.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/BodyPart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Message.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Message.RecipientType.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/FolderClosedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Folder.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/FolderNotFoundException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/MessageRemovedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/PasswordAuthentication.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/MultipartDataSource.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Service.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/AuthenticationFailedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Session.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/UIDFolder.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/UIDFolder.FetchProfileItem.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Flags.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Store.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Flags.Flag.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/Transport.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use/MessagingException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/package-frame.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/MessageAware.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/MultipartDataSource.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Part.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/UIDFolder.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Address.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Authenticator.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/BodyPart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/FetchProfile.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/FetchProfile.Item.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Flags.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Flags.Flag.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Folder.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Header.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Message.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Message.RecipientType.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/MessageContext.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Multipart.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/PasswordAuthentication.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Provider.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Provider.Type.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Service.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Session.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Store.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/Transport.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/UIDFolder.FetchProfileItem.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/URLName.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/AuthenticationFailedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/FolderClosedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/IllegalWriteException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/FolderNotFoundException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/MessageRemovedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/MessagingException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/MethodNotSupportedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/NoSuchProviderException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/SendFailedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/StoreClosedException.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/package-use.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/package-summary.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/package-tree.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/yellow-ball.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/GridBagEx.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/NextArrow.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/OpenBookIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/PreviousArrow.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/UpArrow.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/WayUpArrow.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/apiIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/appletHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/appletIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/appletTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/bar.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/blue-ball-small.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/blue-ball.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/class-index.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/constructor-index.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/constructors.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/cyan-ball-small.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/cyan-ball.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/info.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.NextArrow.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.PreviousArrow.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.WayUpArrow.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.appletHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.extendingHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.getStartedHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.javaHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.nativeHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.networkingHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.noCHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.toolHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.troubleHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/dim.uiHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/error-index.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/exception-index.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/extendingHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/extendingIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/extendingTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/getStartedHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/getStartedIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/getStartedTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/green-ball-small.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/green-ball.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/interface-index.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/javaHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/javaIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/javaTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/magenta-ball-small.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/magenta-ball.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/manPagesIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/method-index.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/methods.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/nativeHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/nativeIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/nativeTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/networkingIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/networkingHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/networkingTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/noCHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/noCIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/noMoreCTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/package-index.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/red-ball-small.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/red-ball.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/toolHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/toolIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/toolsTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/troubleHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/troubleIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/troubleTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/uiHeader.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/uiIcon.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/uiTrail.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/variable-index.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/variables.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/whatsnew-bang.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/yellow-ball-small.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images/1inch.gif +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/allclasses-frame.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/packages.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/overview-summary.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/overview-frame.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/serialized-form.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/package-list +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/help-doc.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/stylesheet.css +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/overview-tree.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/deprecated-list.html +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/Providers.ps +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/Providers.pdf +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/JavaMail-1.1.pdf +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/JavaMail-1.1.ps +share/java/javamail-%%JAVAMAIL_VERSION%%/docs/JavaMail-1.1.txt +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/demo/servlet +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/demo/client +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/demo +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/index-files +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet/class-use +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/internet +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search/class-use +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/search +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event/class-use +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/event +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail/class-use +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax/mail +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/javax +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs/images +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs/javadocs +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%%/docs +@dirrm share/java/javamail-%%JAVAMAIL_VERSION%% +@unexec rmdir %D/share/java/classes > /dev/null 2>&1 || true +@unexec rmdir %D/share/java > /dev/null 2>&1 || true >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 17:40: 4 2000 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 C4FEA37B7BE for ; Mon, 10 Apr 2000 17:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA26577; Mon, 10 Apr 2000 17:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 17:40:01 -0700 (PDT) Message-Id: <200004110040.RAA26577@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Lea Subject: Re: ports/17899: lang/guile build failing Reply-To: Jeremy Lea Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17899; it has been noted by GNATS. From: Jeremy Lea To: eckert@convergence.de Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/17899: lang/guile build failing Date: Mon, 10 Apr 2000 17:38:18 -0700 Hi, On Mon, Apr 10, 2000 at 02:45:04PM +0200, eckert@convergence.de wrote: > >Fix: lang/guile: Maintainer: jseger@FreeBSD.org Changes: Makefile Adds : patches/patch-ag Removes: --- /usr/ports.ref/lang/guile/Makefile Wed Mar 15 23:21:59 2000 +++ lang/guile/Makefile Wed Mar 15 23:38:47 2000 @@ -14,15 +14,10 @@ MAINTAINER= jseger@FreeBSD.org -GNU_CONFIGURE= YES -CONFIGURE_ARGS= --with-threads - USE_LIBTOOL= yes LIBTOOLFILES= configure guile-readline/configure +CONFIGURE_ARGS= --with-threads PLIST_SUB= GUILE_VER=1.3.4 - -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib .include --- /usr/ports.ref/lang/guile/patches/patch-ag Wed Dec 31 16:00:00 1969 +++ lang/guile/patches/patch-ag Fri Apr 7 18:30:47 2000 @@ -0,0 +1,11 @@ +--- qt/Makefile.in.orig Wed Mar 29 01:37:29 2000 ++++ qt/Makefile.in Wed Mar 29 01:38:12 2000 +@@ -407,7 +407,7 @@ + + + .s.lo: +- $(LIBTOOL) --mode=compile $(COMPILE) $(qthread_asflags) -c $< ++ $(LIBTOOL) --mode=compile $(CC) $(qthread_asflags) -c $< + qtmds.s: + ${LN_S} ${srcdir}/${qtmds_s} qtmds.s + qtmdc.c: -- FreeBSD - Because the best things in life are free... 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 Apr 10 18:19: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 075A437B712 for ; Mon, 10 Apr 2000 18:19:03 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (04-152.dial.008.popsite.net [209.69.197.152]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id SAA17060; Mon, 10 Apr 2000 18:18:55 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id B2F5E1A58; Mon, 10 Apr 2000 08:20:46 -0400 (EDT) Date: Mon, 10 Apr 2000 08:20:46 -0400 From: Will Andrews To: Patrik Sundberg Cc: ports@FreeBSD.ORG Subject: Re: doc++ port Message-ID: <20000410082046.B526@argon.blackdawn.com> References: <20000410124343.A12049@radiac.mine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000410124343.A12049@radiac.mine.nu>; from ps@radiac.mine.nu on Mon, Apr 10, 2000 at 12:43:43PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 10, 2000 at 12:43:43PM +0200, Patrik Sundberg wrote: > - should I send-pr the update? Someone else already did it. :-) -- 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 Apr 10 19:20: 5 2000 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 8352D37B953 for ; Mon, 10 Apr 2000 19:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA35703; Mon, 10 Apr 2000 19:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from emerald.oz.net (emerald2.oz.net [216.39.128.2]) by hub.freebsd.org (Postfix) with ESMTP id CA14737B596 for ; Mon, 10 Apr 2000 19:11:24 -0700 (PDT) (envelope-from kzentner@u.washington.edu) Received: from sense-sea-MegaSub-1-723.oz.net (sense-sea-MegaSub-1-723.oz.net [216.39.146.215]) by emerald.oz.net (8.9.3/8.7.3) with ESMTP id SAA21712 for ; Mon, 10 Apr 2000 18:55:43 -0700 (PDT) Message-Id: Date: Mon, 10 Apr 2000 19:11:23 -0700 (PDT) From: Kristopher Zentner To: FreeBSD-gnats-submit@freebsd.org Subject: ports/17917: port update: audio/soundtracker Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17917 >Category: ports >Synopsis: port update: audio/soundtracker >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 Apr 10 19:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Ports >Description: Update for soundtracker port (from 0.3.10 to 0.5.3) Diffs for: audio/soundtracker/Makefile audio/soundtracker/files/md5 audio/soundtracker/pkg/PLIST audio/soundtracker/pkg/PLIST.gnome are supplied. No other changes are needed. >How-To-Repeat: N/A >Fix: --- /usr/ports/audio/soundtracker/Makefile Mon Apr 10 16:33:41 2000 +++ audio/soundtracker/Makefile Mon Apr 10 18:59:33 2000 @@ -2,13 +2,13 @@ # Date created: 28 November 1999 # Whom: kzentner # -# $FreeBSD: ports/audio/soundtracker/Makefile,v 1.4 2000/04/08 21:24:27 mharo Exp $ +# # PORTNAME= soundtracker -PORTVERSION= 0.3.10 +PORTVERSION= 0.5.3 CATEGORIES= audio -MASTER_SITES= ftp://ftp.soundtracker.org/pub/soundtracker/v0.3/ +MASTER_SITES= ftp://ftp.soundtracker.org/pub/soundtracker/v0.5/ MAINTAINER= kzentner@u.washington.edu --- /usr/ports/audio/soundtracker/files/md5 Sun Feb 20 01:29:25 2000 +++ audio/soundtracker/files/md5 Fri Apr 7 17:41:33 2000 @@ -1 +1 @@ -MD5 (soundtracker-0.3.10.tar.gz) = 6f31c7049c5d0906068015232f7867a3 +MD5 (soundtracker-0.5.3.tar.gz) = 2f61c90e914d6a647270c982c55f257e --- /usr/ports/audio/soundtracker/pkg/PLIST Sun Feb 20 01:29:25 2000 +++ audio/soundtracker/pkg/PLIST Mon Apr 10 18:46:34 2000 @@ -1,6 +1,7 @@ bin/soundtracker share/locale/de/LC_MESSAGES/soundtracker.mo share/locale/es/LC_MESSAGES/soundtracker.mo +share/locale/fr/LC_MESSAGES/soundtracker.mo share/locale/it/LC_MESSAGES/soundtracker.mo share/locale/pl/LC_MESSAGES/soundtracker.mo share/locale/ja/LC_MESSAGES/soundtracker.mo --- /usr/ports/audio/soundtracker/pkg/PLIST.gnome Sat Feb 19 20:18:33 2000 +++ audio/soundtracker/pkg/PLIST.gnome Mon Apr 10 18:46:50 2000 @@ -2,6 +2,7 @@ share/gnome/apps/Multimedia/soundtracker.desktop share/locale/de/LC_MESSAGES/soundtracker.mo share/locale/es/LC_MESSAGES/soundtracker.mo +share/locale/fr/LC_MESSAGES/soundtracker.mo share/locale/it/LC_MESSAGES/soundtracker.mo share/locale/pl/LC_MESSAGES/soundtracker.mo share/locale/ja/LC_MESSAGES/soundtracker.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 Apr 10 19:57:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (chilled.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id C250537B840; Mon, 10 Apr 2000 19:57:06 -0700 (PDT) (envelope-from dan@freebsddiary.org) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id OAA74259; Tue, 11 Apr 2000 14:57:04 +1200 (NZST) Message-Id: <200004110257.OAA74259@ducky.nz.freebsd.org> From: "Dan Langille" Organization: The FreeBSD Diary To: freebsd-ports@freebsd.org Date: Tue, 11 Apr 2000 14:57:03 +1200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Volunteers wanted for freshports project Reply-To: dan@freebsddiary.org Cc: freebsd-questions@freebsd.org X-mailer: Pegasus Mail for Win32 (v3.12b) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm looking for some people to help me out with the freshports project I've started. Basically, it's freshmeat but just for ports. All 100% automated. It's sort of like what you get from http://www.freebsd.org/cgi/ports.cgi only with greater functionality. The skills I'm looking for are file manipulation with tools such as awk and/or perl. The tasks I have for people are quite short tasks. For people skilled at these tools, the task should only take a half hour or so from what I've seen other do. It's just that I don't have the skills. Those who wish to join the project, please contact me off list. I'm also interested in hearing from people who would like to discuss the best ways of implementing this project. I have a few ideas, and have tested most of them. I also have some test pages running. But I would like to hear from those who know much more about this area than I do. Perhaps the ports mailng list is the best place to discuss this? -- Dan Langille - DVL Software Limited [I'm looking for more work] http://www.dvl-software.com/ | http://www.unixathome.org/ http://www.racingsystem.com/ | http://www.freebsddiary.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 20:10: 5 2000 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 328A937B94B for ; Mon, 10 Apr 2000 20:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA40763; Mon, 10 Apr 2000 20:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from heidegger.uol.com.br (heidegger.uol.com.br [200.230.198.88]) by hub.freebsd.org (Postfix) with ESMTP id 716AE37B92F for ; Mon, 10 Apr 2000 20:07:55 -0700 (PDT) (envelope-from lioux-alias-ppp-FreeBSD-gnats-submit=freebsd.org@uol.com.br) Received: from 200-191-156-142-as.acessonet.com.br (200-191-156-142-as.acessonet.com.br [200.191.156.142]) by heidegger.uol.com.br (8.9.1/8.9.1) with ESMTP id AAA04475 for ; Tue, 11 Apr 2000 00:07:40 -0300 (BRT) Received: (qmail 8843 invoked by uid 1001); 11 Apr 2000 03:04:36 -0000 Message-Id: <20000411030436.8842.qmail@Fedaykin.here> Date: 11 Apr 2000 03:04:36 -0000 From: lioux@uol.com.br Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17918: Update mail/qmail port for Portname/portversion compliance Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17918 >Category: ports >Synopsis: Update mail/qmail port for Portname/portversion compliance >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 Apr 10 20:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Latest ports tree within any FBSD version. >Description: Just a qmail portname/portversion compliance patch from the maintainer. >How-To-Repeat: n/a >Fix: diff -ruN /usr/ports/mail/qmail/Makefile ./Makefile --- /usr/ports/mail/qmail/Makefile Thu Mar 2 01:22:49 2000 +++ ./Makefile Tue Apr 11 00:00:16 2000 @@ -6,7 +6,8 @@ # $FreeBSD: ports/mail/qmail/Makefile,v 1.15 2000/03/01 15:48:31 asami Exp $ # -DISTNAME= qmail-1.03 +PORTNAME= qmail +PORTVERSION= 1.03 CATEGORIES= mail MASTER_SITES= http://cr.yp.to/software/ \ ftp://ftp.ntnu.no/pub/unix/mail/qmail/ \ >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 Apr 10 20:30: 6 2000 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 B7F9037B887 for ; Mon, 10 Apr 2000 20:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA42512; Mon, 10 Apr 2000 20:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pascal.uol.com.br (pascal.uol.com.br [200.230.198.87]) by hub.freebsd.org (Postfix) with ESMTP id EB6EA37B62F for ; Mon, 10 Apr 2000 20:23:59 -0700 (PDT) (envelope-from lioux-alias-ppp-FreeBSD-gnats-submit=freebsd.org@uol.com.br) Received: from 200-191-156-142-as.acessonet.com.br (200-191-156-142-as.acessonet.com.br [200.191.156.142]) by pascal.uol.com.br (8.9.1/8.9.1) with ESMTP id AAA01108 for ; Tue, 11 Apr 2000 00:23:37 -0300 (BRT) Received: (qmail 12372 invoked by uid 1001); 11 Apr 2000 03:23:34 -0000 Message-Id: <20000411032334.12371.qmail@Fedaykin.here> Date: 11 Apr 2000 03:23:34 -0000 From: lioux@uol.com.br Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17919: Update emulators/truereality for portname/portversion compliance Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17919 >Category: ports >Synopsis: Update emulators/truereality for portname/portversion compliance >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 Apr 10 20:30:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Latest ports tree within any FBSD version. >Description: Patch to update emulators/truereality for portname/portversion compliance from the port maintainer. >How-To-Repeat: n/a >Fix: diff -ruN /usr/ports/emulators/truereality/Makefile ./Makefile --- /usr/ports/emulators/truereality/Makefile Tue Mar 21 00:40:58 2000 +++ ./Makefile Tue Apr 11 00:22:36 2000 @@ -6,8 +6,9 @@ # $FreeBSD: ports/emulators/truereality/Makefile,v 1.2 2000/03/20 23:25:05 jseger Exp $ # -DISTNAME= TrueReality-${DATE} -PKGNAME= truereality-${DATE} +PORTNAME= truereality +PORTVERSION= 1999062900 +DISTNAME= TrueReality-${PORTVERSION} CATEGORIES= emulators devel MASTER_SITES= http://www.emuhq.com/emulators/ EXTRACT_SUFX= .tgz @@ -23,8 +24,6 @@ USE_XLIB= yes WRKSRC= ${WRKDIR}/TrueReality/Source - -DATE= 1999062900 do-install: @${INSTALL_PROGRAM} ${WRKSRC}/TrueReality ${PREFIX}/bin >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 Apr 10 20:40:11 2000 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 5C9FD37B9AB for ; Mon, 10 Apr 2000 20:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA43423; Mon, 10 Apr 2000 20:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 10 Apr 2000 20:40:05 -0700 (PDT) Message-Id: <200004110340.UAA43423@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: lioux@uol.com.br Subject: Re: ports/17348: Update port security/libparanoia from 1.3 to 1.4 Reply-To: lioux@uol.com.br Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17348; it has been noted by GNATS. From: lioux@uol.com.br To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/17348: Update port security/libparanoia from 1.3 to 1.4 Date: Tue, 11 Apr 2000 00:38:21 -0300 A simple patch replacement to the original patch. This one uses the latest 1.4 release and also is PORTNAME and PORTVERSION compliant. However, since I cannot safely override CFLAGS from within the ports Makefile and this port relies on the make.conf CFLAGS, it core dumps any program using it with any optimization over 1, i.e., -O. Not my fault, just reporting. The update follows. -- diff -ruN /usr/ports/security/libparanoia/Makefile ./Makefile --- /usr/ports/security/libparanoia/Makefile Mon Apr 10 14:47:46 2000 +++ ./Makefile Tue Apr 11 00:36:39 2000 @@ -1,12 +1,12 @@ # New ports collection makefile for: libparanoia +# Version required: 1.4 # Date created: 1 Jan 1999 # Whom: Alexandre Snarskii # # $FreeBSD: ports/security/libparanoia/Makefile,v 1.4 2000/04/09 18:29:54 cpiazza Exp $ -# PORTNAME= libparanoia -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= security MASTER_SITES= ftp://ftp.lexa.ru/pub/domestic/snar/ diff -ruN /usr/ports/security/libparanoia/files/md5 ./files/md5 --- /usr/ports/security/libparanoia/files/md5 Sat Apr 10 10:12:12 1999 +++ ./files/md5 Tue Apr 11 00:12:01 2000 @@ -1 +1 @@ -MD5 (libparanoia-1.3.tar.gz) = cfd5687f8e315124e2c72640a723c0a6 +MD5 (libparanoia-1.4.tar.gz) = c615cc5db41d8aee1e659d122f5ce631 diff -ruN /usr/ports/security/libparanoia/pkg/PLIST ./pkg/PLIST --- /usr/ports/security/libparanoia/pkg/PLIST Sat Apr 10 10:12:12 1999 +++ ./pkg/PLIST Tue Apr 11 00:13:10 2000 @@ -1,6 +1,6 @@ lib/libparanoia.a lib/libparanoia_p.a lib/libparanoia.so -lib/libparanoia.so.1.3 +lib/libparanoia.so.1.4 @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 22:50: 5 2000 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 4AFF937B6EF for ; Mon, 10 Apr 2000 22:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA54247; Mon, 10 Apr 2000 22:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 01F9C37B5BD for ; Mon, 10 Apr 2000 22:49:24 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA54204; Mon, 10 Apr 2000 22:49:23 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004110549.WAA54204@freefall.freebsd.org> Date: Mon, 10 Apr 2000 22:49:23 -0700 (PDT) From: darren780@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17921: licq in the ports collection is missing a dependancy Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17921 >Category: ports >Synopsis: licq in the ports collection is missing a dependancy >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 Apr 10 22:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Darren J. >Release: FreeBSD 4.0 >Organization: n/a >Environment: FreeBSD tzeench.dhs.org 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Sun Apr 9 20:23:31 MDT 2000 root@tzeench.edlo1.ab.wave.home.com:/usr/src/sys/compile/GENERIC i386 >Description: quite simple. install a basic x11 without a window manager, or with it's default. or even with kde try to run licq and it crashes. I started playing around with other managers. such as gnome and windowmaker. out of the blue licq works. I figured it was a broken port. I'm guessing it might be dependant upon windowmaker or gnome but I know it was a networking problem "the program launched ok, but when I clicked to go "online", it crashed with a core dump" I guess figure out it's missing dependancy...as for me right now licq works great and I won't have any further problems. >How-To-Repeat: install a basic system with no window manager or whatever it defaults to. install licq out of the ports. you won't be able to log onto the mirabilis network, it'll crash with a core dump >Fix: it's missing a dependancy...might be gnome or windowmaker but I don't think these window managers affect networking. >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 Apr 10 23: 8:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from slarti.muc.de (slarti.muc.de [193.149.48.10]) by hub.freebsd.org (Postfix) with SMTP id 118DB37B5F0 for ; Mon, 10 Apr 2000 23:08:27 -0700 (PDT) (envelope-from rse@en1.engelschall.com) Received: (qmail 16819 invoked by uid 66); 11 Apr 2000 06:14:03 -0000 Received: from en by slarti with UUCP; Tue Apr 11 06:14:03 2000 -0000 Received: by en1.engelschall.com (Sendmail 8.9.3+3.2W) id IAA96602; Tue, 11 Apr 2000 08:08:03 +0200 (CEST) Date: Tue, 11 Apr 2000 08:07:54 +0200 From: "Ralf S. Engelschall" To: Dirk Froemberg Cc: "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.org, hetzels@westbend.net, adam@algroup.co.uk, ache@FreeBSD.org, winter@FreeBSD.org, ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: apache13-php4 Message-ID: <20000411080754.A96560@engelschall.com> Reply-To: rse@engelschall.com References: <20000327224807.C7980@physik.TU-Berlin.DE> <20000327155812.C23367@jade.chc-chimes.com> <20000330172419.B59713@dragon.nuxi.com> <20000330203838.H23367@jade.chc-chimes.com> <20000330210930.A60684@dragon.nuxi.com> <4.3.2.20000330233528.00df0520@207.227.119.2> <20000406130132.B70225@dragon.nuxi.com> <20000409011437.C50277@physik.TU-Berlin.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.1.11i In-Reply-To: <20000409011437.C50277@physik.TU-Berlin.DE>; from dirk@FreeBSD.org on Sun, Apr 09, 2000 at 01:14:37AM +0200 Organization: Engelschall, Germany. X-Web-Homepage: http://www.engelschall.com/ X-PGP-Public-Key: https://www.engelschall.com/ho/rse/pgprse.asc X-PGP-Fingerprint: 00 C9 21 8E D1 AB 70 37 DD 67 A2 3A 0A 6F 8D A5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Apr 09, 2000, Dirk Froemberg wrote: > > At 09:09 PM 3/30/00 -0800, David O'Brien wrote: > > > > using apxs). Currently playing with 1.3.12+PHP3.0.15+SSL+FP2000 on my > > > > beta web server. Very nice! > > > > > > > > http://www.westbend.net/~hetzels/mod_apache.tgz > > > > > > > > I can't wait for the entire Apache ports system to be replaced with > > > > this method. > > > > > > So what is holding things back? Whose buy-in do we need here? > > > > Since no one has said anything, I'm sending this again -- to make sure > > all the Apache maintainers people get the mail. > > Sorry for being late with my answer... > > I think there are still some things missing before we can start: > > - a response from Andrey, the maintainer of apache13, if he agrees > to add hooks for mod_frontpage and mod_ssl generally > > - a response from Ralf, the maintainer of apache13-modssl, if he > agrees to "downgrade" his port to mod_ssl The new mod_ssl port is ok. Although I appreciated a stand-alone Apache+mod_ssl+OpenSSL port in the past, I've no problem with a new port layout which now integrates the various Apache ports. It's for the benefit of the users, so I say: go for it, please. I like the new layout. Just one hint: in mod_ssl/Makefile's patch-apache target it seems that it is sufficient to use mod_ssl's --enable-eapi-only option. Ralf S. Engelschall rse@engelschall.com www.engelschall.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 10 23:47:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id E6C0737B6BA for ; Mon, 10 Apr 2000 23:47:16 -0700 (PDT) (envelope-from cpiazza@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 54A4C36; Mon, 10 Apr 2000 23:47:05 -0700 (PDT) Date: Mon, 10 Apr 2000 23:47:05 -0700 From: Chris Piazza To: lioux@uol.com.br Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/17348: Update port security/libparanoia from 1.3 to 1.4 Message-ID: <20000410234705.B670@norn.ca.eu.org> References: <200004110340.UAA43423@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004110340.UAA43423@freefall.freebsd.org>; from lioux@uol.com.br on Mon, Apr 10, 2000 at 08:40:05PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 10, 2000 at 08:40:05PM -0700, lioux@uol.com.br wrote: > The following reply was made to PR ports/17348; it has been noted by GNATS. > > # New ports collection makefile for: libparanoia > +# Version required: 1.4 Please don't add these back.. they were removed intentionally. -Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 2:13:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id A647B37B997; Tue, 11 Apr 2000 02:13:48 -0700 (PDT) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id LAA36157; Tue, 11 Apr 2000 11:13:23 +0200 (CEST) (envelope-from ibex) Date: Tue, 11 Apr 2000 11:13:22 +0200 From: Dirk Froemberg To: Edwin Culp Cc: "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.ORG, hetzels@westbend.net, rse@engelschall.com, adam@algroup.co.uk, ache@FreeBSD.ORG, winter@FreeBSD.ORG, ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: apache13-php4 Message-ID: <20000411111322.B34370@physik.TU-Berlin.DE> References: <20000327155812.C23367@jade.chc-chimes.com> <20000330172419.B59713@dragon.nuxi.com> <20000330203838.H23367@jade.chc-chimes.com> <20000330210930.A60684@dragon.nuxi.com> <4.3.2.20000330233528.00df0520@207.227.119.2> <20000406130132.B70225@dragon.nuxi.com> <20000409011437.C50277@physik.TU-Berlin.DE> <38F0F383.FB14D029@EnContacto.Net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <38F0F383.FB14D029@EnContacto.Net>; from eculp@encontacto.net on Sun, Apr 09, 2000 at 02:17:57PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Edwin! On Sun, Apr 09, 2000 at 02:17:57PM -0700, Edwin Culp wrote: > [...] > Does anyone know if this will fix the problem with compiling php4 with imap > support? I haven't tried, yet. But the probability that it will work with a shared php4 module out of the box is about 90-95% 8-) The imaps problems are related to the static php4 module. Seems that noone is using a statically linked php module... Regards Dirk -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 2:23:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id 6763737B656 for ; Tue, 11 Apr 2000 02:23:46 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-83.ix.netcom.com [209.109.234.83]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id FAA06748 for ; Tue, 11 Apr 2000 05:23:21 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id CAA19235; Tue, 11 Apr 2000 02:22:18 -0700 (PDT) Date: Tue, 11 Apr 2000 02:22:18 -0700 (PDT) Message-Id: <200004110922.CAA19235@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ports@freebsd.org In-reply-to: <200004101757.KAA04186@freefall.freebsd.org> (message from Satoshi Asami on Mon, 10 Apr 2000 10:57:16 -0700 (PDT)) Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/handbook/ports chapter.sgml From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) References: <200004101757.KAA04186@freefall.freebsd.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * asami 2000/04/10 10:57:16 PDT * * Modified files: * en_US.ISO_8859-1/books/handbook/ports chapter.sgml * Log: * Add description for PKGNAME{PRE,SUF}FIX. (Gosh, it was much more work * than I thought....) By the way, I realize that the PKGNAMEPREFIX part refers to "natural language" while we also use it for programming languages ("p5-", "py-"). I'm planning to fix this, so please treat it as such. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 3:35:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id B5C5537B9F1; Tue, 11 Apr 2000 03:35:37 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F544E.dip0.t-ipconnect.de [193.159.84.78]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id LAA01824; Tue, 11 Apr 2000 11:35:14 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id D5384AC2C; Tue, 11 Apr 2000 12:38:35 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id MAA03834; Tue, 11 Apr 2000 12:35:33 +0200 (CEST) (envelope-from alex) Date: Tue, 11 Apr 2000 12:35:32 +0200 From: Alexander Langer To: John Daniels Cc: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: staroffice install Message-ID: <20000411123532.A834@cichlids.cichlids.com> Mail-Followup-To: John Daniels , freebsd-ports@freebsd.org, freebsd-questions@freebsd.org References: <20000410210141.81053.qmail@hotmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000410210141.81053.qmail@hotmail.com>; from jmd526@hotmail.com on Mon, Apr 10, 2000 at 05:01:41PM -0400 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 Thus spake John Daniels (jmd526@hotmail.com): > part of my former 'make install clean'? yes. > *** Error code 255 (ignored) > install: /usr/local/Office51/bin: No such file or directory try make clean install then .) If this doesn't help, I have no more ideas. Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 4:30: 6 2000 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 BC79537BACC for ; Tue, 11 Apr 2000 04:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA93586; Tue, 11 Apr 2000 04:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 741E237BA1E for ; Tue, 11 Apr 2000 04:28:01 -0700 (PDT) (envelope-from des@flood.ping.uio.no) Received: (from root@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id NAA94475; Tue, 11 Apr 2000 13:28:00 +0200 (CEST) (envelope-from des) Message-Id: <200004111128.NAA94475@flood.ping.uio.no> Date: Tue, 11 Apr 2000 13:28:00 +0200 (CEST) From: Dag-Erling Smorgrav Reply-To: des@flood.ping.uio.no To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17925: [PATCH] w3m-ssl can't fetch distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17925 >Category: ports >Synopsis: [PATCH] w3m-ssl can't fetch distfile >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 Apr 11 04:30:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dag-Erling Coidan Smørgrav >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: ports-current >Description: The Makefile for w3m-ssl has W3M_VER misspelled, and therefore fails to fetch the distfile. >How-To-Repeat: # cd /usr/ports/www/w3m-ssl # make fetch >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/w3m-ssl/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 2000/04/10 00:07:09 1.5 +++ Makefile 2000/04/11 11:26:09 @@ -6,7 +6,7 @@ # PORTNAME= w3m-ssl -PORTVERSION= ${W3m_VER} +PORTVERSION= ${W3M_VER} CATEGORIES= www ipv6 MASTERDIR= ${.CURDIR}/../../www/w3m >Release-Note: >Audit-Trail: >Unformatted: Dag-Erling Smorgrav To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 4:40: 8 2000 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 F159437B8EC for ; Tue, 11 Apr 2000 04:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA94579; Tue, 11 Apr 2000 04:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 04:40:06 -0700 (PDT) Message-Id: <200004111140.EAA94579@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Trevor Johnson Subject: Re: ports/17279: USA/Canada Netscape Navigator 4.72 FreeBSD port seems broken Reply-To: Trevor Johnson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17279; it has been noted by GNATS. From: Trevor Johnson To: Paul Hart Cc: freebsd-gnats-submit@FreeBSD.ORG, "David O'Brien" Subject: Re: ports/17279: USA/Canada Netscape Navigator 4.72 FreeBSD port seems broken Date: Tue, 11 Apr 2000 07:36:24 -0400 (EDT) > It looks like the USA/Canada Netscape Navigator 4.72 FreeBSD port is > broken at the moment. Hi, Paul. I didn't see your PR until just now. I made one (ports/17822) to David O'Brien for the same problem. > >Fix: > Add the missing files. Another possibility is to remove the port entirely, and use Fortify with the international version of Navigator. If you define USE_128BIT, Fortify will be installed by the www/netscape47-navigator port. __ Trevor Johnson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 4:50: 6 2000 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 C056437B9DD for ; Tue, 11 Apr 2000 04:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA95482; Tue, 11 Apr 2000 04:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 04:50:03 -0700 (PDT) Message-Id: <200004111150.EAA95482@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: ports/17925: [PATCH] w3m-ssl can't fetch distfile Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17925; it has been noted by GNATS. From: Dag-Erling Smorgrav To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/17925: [PATCH] w3m-ssl can't fetch distfile Date: 11 Apr 2000 13:40:39 +0200 Dag-Erling Smorgrav writes: > [...] Blah... even then it doesn't work because it tries to fetch w3m-ssl-0.1.7.tar.gz instead of w3m-0.1.7.tar.gz. You need a second patch: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/w3m/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 2000/04/10 00:07:09 1.15 +++ Makefile 2000/04/11 11:39:37 @@ -6,6 +6,7 @@ # PORTNAME?= w3m +DISTNAME= w3m-${W3M_VER} PORTVERSION?= ${W3M_VER} CATEGORIES?= www ipv6 MASTER_SITES= ftp://ei5nazha.yz.yamagata-u.ac.jp/w3m/dev/ \ DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 5:34:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bulls.mei.co.jp (bulls.mei.co.jp [202.224.189.102]) by hub.freebsd.org (Postfix) with ESMTP id 1BD1B37B5DE; Tue, 11 Apr 2000 05:34:23 -0700 (PDT) (envelope-from takamune@vrl.mei.co.jp) Received: by bulls.mei.co.jp (8.9.3/3.7W) with ESMTP id VAA13792; Tue, 11 Apr 2000 21:34:21 +0900 (JST) Received: by mariners.mei.co.jp (8.9.1/3.7W) with ESMTP id VAA21696; Tue, 11 Apr 2000 21:34:21 +0900 (JST) Received: by dream.vrl.mei.co.jp (8.9.3/3.7W-11/29/99) id VAA81556; Tue, 11 Apr 2000 21:34:17 +0900 (JST) In-Reply-To: <200004091834.LAA44739@freefall.freebsd.org> References: <200004091834.LAA44739@freefall.freebsd.org> Subject: shells/tcsh is broken From: Kazu TAKAMUNE To: cpiazza@FreeBSD.org Cc: freebsd-ports@FreeBSD.org X-Mailer: Mew version 1.94.1 on Emacs 20.6 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000411213417W.takamune@vrl.mei.co.jp> Date: Tue, 11 Apr 2000 21:34:17 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 31 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, shells/tcsh is broken(can't cd to ${WRKSRC}). o The distfile is `tcsh-6.09.tar.gz'. o WRKSRC is ${WRKDIR}/tcsh-6.09.00 (caused by distfile). o PKGNAME was `tcsh-6.09.00' before your commit. and I've just give it a try as follows. --- With best regards. Kazu TAKAMUNE takamune@avrl.mei.co.jp Index: ports/shells/tcsh/Makefile =================================================================== RCS file: /home/ncvs/ports/shells/tcsh/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- ports/shells/tcsh/Makefile 2000/04/09 18:34:05 1.27 +++ ports/shells/tcsh/Makefile 2000/04/11 07:18:22 @@ -6,7 +6,8 @@ # PORTNAME= tcsh -PORTVERSION= 6.09 +PORTVERSION= 6.09.00 +DISTNAME= tcsh-6.09 CATEGORIES= shells MASTER_SITES= ftp://ftp.astron.com/pub/tcsh/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 5:46:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 1EFCD37B64B for ; Tue, 11 Apr 2000 05:46:13 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (pc343042.tokyo.jcom.ne.jp [203.140.143.42]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 03/13/00) with ESMTP id VAA28209; Tue, 11 Apr 2000 21:45:37 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id VAA79464; Tue, 11 Apr 2000 21:45:05 +0900 (JST) Date: Tue, 11 Apr 2000 21:45:03 +0900 Message-ID: <8666tost68.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: des@flood.ping.uio.no Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/17925: [PATCH] w3m-ssl can't fetch distfile In-Reply-To: In your message of "Tue, 11 Apr 2000 04:50:03 -0700 (PDT)" <200004111150.EAA95482@freefall.freebsd.org> References: <200004111150.EAA95482@freefall.freebsd.org> User-Agent: Wanderlust/1.1.1 (Purple Rain) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Tue, 11 Apr 2000 04:50:03 -0700 (PDT), DES wrote: > Blah... even then it doesn't work because it tries to fetch > w3m-ssl-0.1.7.tar.gz instead of w3m-0.1.7.tar.gz. You need a second > patch: We now have PKGNAMESUFFIX which could cope with such a situation. I'll commit the fix soon, thanks. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 5:50:14 2000 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 949B537BA8E; Tue, 11 Apr 2000 05:50:12 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA00997; Tue, 11 Apr 2000 05:50:12 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Tue, 11 Apr 2000 05:50:12 -0700 (PDT) From: Message-Id: <200004111250.FAA00997@freefall.freebsd.org> To: des@flood.ping.uio.no, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17925: [PATCH] w3m-ssl can't fetch distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] w3m-ssl can't fetch distfile State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Tue Apr 11 21:49:07 JST 2000 State-Changed-Why: Fixed using PKGNAMESUFFIX. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 6:58:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mirage.nlink.com.br (mirage.nlink.com.br [200.249.195.3]) by hub.freebsd.org (Postfix) with SMTP id 19D3537B7E0 for ; Tue, 11 Apr 2000 06:58:09 -0700 (PDT) (envelope-from luiz@nlink.com.br) Received: (qmail 86130 invoked from network); 11 Apr 2000 13:44:39 -0000 Received: from mirage.nlink.com.br (200.249.195.3) by mirage.nlink.com.br with SMTP; 11 Apr 2000 13:44:39 -0000 Date: Tue, 11 Apr 2000 10:44:39 -0300 (EST) From: Luiz de Barros To: ports@freebsd.org Subject: FAX SOFTWARE. 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 All, Is there any unpublished fix for hylafax4.0pl2? What can cause the buffer overflow? Is there any other fax software available for FBSD? Luiz /* If it happens once, it's a bug. If it happens twice, it's a feature. If it happens more than twice, it's windows. */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 7: 4:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from privatecube.privatelabs.com (silvercube.silverpix.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id F2B7537BA8F for ; Tue, 11 Apr 2000 07:04:43 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id KAA31589 for ; Tue, 11 Apr 2000 10:03:37 -0400 (EDT) Received: from privatelabs.com (mi@localhost [127.0.0.1]) by misha.privatelabs.com (8.9.3/8.9.3) with ESMTP id KAA00613 for ; Tue, 11 Apr 2000 10:04:30 -0400 (EDT) (envelope-from mi@privatelabs.com) From: mi@privatelabs.com Message-Id: <200004111404.KAA00613@misha.privatelabs.com> Date: Tue, 11 Apr 2000 10:04:28 -0400 (EDT) Subject: NeoWebScript port? To: ports@freebsd.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there a port of NeoWebScript in the works (http://www.neowebscript.com/) or should I go ahead? It is a server-side TCL extension for Apache, which seems substantially more robust and mature then the mod_dtcl... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 7:30: 6 2000 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 E50AE37BAB5 for ; Tue, 11 Apr 2000 07:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA83466; Tue, 11 Apr 2000 07:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8644B37B645 for ; Tue, 11 Apr 2000 07:23:13 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA82646; Tue, 11 Apr 2000 07:23:13 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004111423.HAA82646@freefall.freebsd.org> Date: Tue, 11 Apr 2000 07:23:13 -0700 (PDT) From: redlance@primenet.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17927: ssh port fails to install properly Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17927 >Category: ports >Synopsis: ssh port fails to install properly >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 11 07:30:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Keith Davey >Release: Release 4.0 >Organization: Gandalf UNIX Services >Environment: FreeBSD frodo.gus33.org 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Sat Apr 8 23:33:32 MST 2000 root@frodo.gus33.org:/usr/src/sys/compile/FRODO i386 >Description: Well running a make install of /usr/ports/security/ssh I get the following output: ===> Generating temporary packing list Installing /usr/local/etc/rc.d/sshd.sh startup file. sed: 751: No such file or directory *** Error code 1 Stop in /usr/ports/security/ssh. *** Error code 1 I last updated my ports tree on 04-09-00 >How-To-Repeat: run make install on ssh port >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 Tue Apr 11 8:10: 5 2000 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 E548B37B901 for ; Tue, 11 Apr 2000 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 IAA88639; Tue, 11 Apr 2000 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by hub.freebsd.org (Postfix) with ESMTP id BAF5837B948 for ; Tue, 11 Apr 2000 08:05:20 -0700 (PDT) (envelope-from cj@214.norrgarden.se) Received: (from root@localhost) by 214.norrgarden.se (8.9.3/8.9.3) id RAA07713; Tue, 11 Apr 2000 17:05:11 +0200 (CEST) (envelope-from cj) Message-Id: <200004111505.RAA07713@214.norrgarden.se> Date: Tue, 11 Apr 2000 17:05:11 +0200 (CEST) From: calle.madestrand@norrgarden.se Reply-To: calle.madestrand@norrgarden.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17928: Update port: www/indexme Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17928 >Category: ports >Synopsis: Update port: www/indexme >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Apr 11 08:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Carl Johan Madestrand >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: >Description: * A manpage has been added to indexme >How-To-Repeat: >Fix: diff -urN /usr/ports/www/indexme/Makefile indexme/Makefile --- /usr/ports/www/indexme/Makefile Mon Apr 10 16:10:42 2000 +++ indexme/Makefile Tue Apr 11 16:06:43 2000 @@ -20,10 +20,9 @@ NO_BUILD= yes do-install: - @ ${MKDIR} ${PREFIX}/share/doc/indexme @ ${INSTALL_SCRIPT} ${WRKSRC}/indexme ${PREFIX}/bin .if !defined(NOPORTDOCS) - @ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/indexme + @ ${INSTALL_MAN} ${WRKSRC}/indexme.1.gz ${PREFIX}/man/man1 .endif .include diff -urN /usr/ports/www/indexme/files/md5 indexme/files/md5 --- /usr/ports/www/indexme/files/md5 Tue Feb 1 00:53:59 2000 +++ indexme/files/md5 Tue Apr 11 16:10:08 2000 @@ -1 +1 @@ -MD5 (indexme.tar.gz) = cb1859060fccca1f31949c9d514a5ff4 +MD5 (indexme.tar.gz) = 1bf95a9841dcde018dac7cbac4db30fb diff -urN /usr/ports/www/indexme/pkg/COMMENT indexme/pkg/COMMENT --- /usr/ports/www/indexme/pkg/COMMENT Tue Feb 1 00:53:59 2000 +++ indexme/pkg/COMMENT Tue Apr 11 16:12:13 2000 @@ -1 +1 @@ -links files into a HTML index for viewing and easy overview +Links files into a HTML index for viewing and easy overview diff -urN /usr/ports/www/indexme/pkg/PLIST indexme/pkg/PLIST --- /usr/ports/www/indexme/pkg/PLIST Tue Feb 1 00:53:59 2000 +++ indexme/pkg/PLIST Tue Apr 11 16:11:35 2000 @@ -1,3 +1 @@ bin/indexme -share/doc/indexme/README -@dirrm share/doc/indexme >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 Apr 11 9:20: 7 2000 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 9C4CD37BABC for ; Tue, 11 Apr 2000 09:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA98251; Tue, 11 Apr 2000 09:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 09:20:04 -0700 (PDT) Message-Id: <200004111620.JAA98251@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/17927: ssh port fails to install properly Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17927; it has been noted by GNATS. From: Will Andrews To: redlance@primenet.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/17927: ssh port fails to install properly Date: Tue, 11 Apr 2000 12:18:23 -0400 On Tue, Apr 11, 2000 at 07:23:13AM -0700, redlance@primenet.com wrote: > >Category: ports > >Synopsis: ssh port fails to install properly > >Confidential: no > >Severity: critical > >Priority: low > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Tue Apr 11 07:30:02 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: Keith Davey > >Release: Release 4.0 > >Organization: > Gandalf UNIX Services > >Environment: > FreeBSD frodo.gus33.org 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Sat Apr 8 23:33:32 MST 2000 root@frodo.gus33.org:/usr/src/sys/compile/FRODO i386 > >Description: > Well running a make install of /usr/ports/security/ssh I get the following output: > ===> Generating temporary packing list > Installing /usr/local/etc/rc.d/sshd.sh startup file. > sed: 751: No such file or directory > *** Error code 1 > > Stop in /usr/ports/security/ssh. > *** Error code 1 > > I last updated my ports tree on 04-09-00 > >How-To-Repeat: > run make install on ssh port Sorry, this is my fault. I will fix it as soon as the ports freeze is lifted. I forgot to put an additional semicolon in there.. and it seems security/ssh2 is broken in a similar way. Thanks for the report.. *sigh* -- 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 Tue Apr 11 9:24:38 2000 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 39B0937B954; Tue, 11 Apr 2000 09:24:37 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA98783; Tue, 11 Apr 2000 09:24:36 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Date: Tue, 11 Apr 2000 09:24:36 -0700 (PDT) From: Message-Id: <200004111624.JAA98783@freefall.freebsd.org> To: jhb@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/17927: ssh port fails to install properly Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ssh port fails to install properly Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: jhb Responsible-Changed-When: Tue Apr 11 09:23:24 PDT 2000 Responsible-Changed-Why: Will wants it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 9:30:10 2000 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 DD96837BB17 for ; Tue, 11 Apr 2000 09:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA99159; Tue, 11 Apr 2000 09:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from netserv1.chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id E6CBB37BAB5 for ; Tue, 11 Apr 2000 09:20:22 -0700 (PDT) (envelope-from dima@netserv1.chg.ru) Received: (from dima@localhost) by netserv1.chg.ru (8.9.3/8.9.3) id UAA97325; Tue, 11 Apr 2000 20:20:20 +0400 (MSD) Message-Id: <200004111620.UAA97325@netserv1.chg.ru> Date: Tue, 11 Apr 2000 20:20:20 +0400 (MSD) From: Dmitry Sivachenko Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17931: Update port: audio/yamt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17931 >Category: ports >Synopsis: Update port: audio/yamt >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 Apr 11 09:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff -Nur yamt.old/Makefile yamt/Makefile --- yamt.old/Makefile Mon Apr 10 13:27:05 2000 +++ yamt/Makefile Tue Apr 11 19:56:20 2000 @@ -6,7 +6,7 @@ # PORTNAME= yamt -PORTVERSION= 0.4 +PORTVERSION= 0.5 CATEGORIES= audio gnome MASTER_SITES= http://download.sourceforge.net/yamt/ \ ftp://ftp.gpad.ac.ru/pub/FreeBSD/distfiles/ diff -Nur yamt.old/files/md5 yamt/files/md5 --- yamt.old/files/md5 Fri Feb 18 07:02:11 2000 +++ yamt/files/md5 Tue Apr 11 19:56:39 2000 @@ -1 +1 @@ -MD5 (yamt-0.4.tar.gz) = cc437724e3deb1ad9612200411119f21 +MD5 (yamt-0.5.tar.gz) = 22beb30f6762ede1641e89c978636dcd diff -Nur yamt.old/pkg/PLIST yamt/pkg/PLIST --- yamt.old/pkg/PLIST Fri Feb 18 07:02:13 2000 +++ yamt/pkg/PLIST Tue Apr 11 20:08:28 2000 @@ -1,10 +1,30 @@ bin/yamt share/gnome/apps/Applications/yamt.desktop -share/gnome/help/yamt/C/index.html -share/gnome/help/yamt/C/topic.dat share/gnome/pixmaps/yamt-logo.png +share/gnome/pixmaps/yamt-icon.png share/locale/de/LC_MESSAGES/yamt.mo share/locale/fr/LC_MESSAGES/yamt.mo share/locale/hu/LC_MESSAGES/yamt.mo +share/locale/ja/LC_MESSAGES/yamt.mo +share/gnome/help/yamt/C/topic.dat +share/gnome/help/yamt/C/index.html +share/gnome/help/yamt/C/about.html +share/gnome/help/yamt/C/advanced.html +share/gnome/help/yamt/C/auto.html +share/gnome/help/yamt/C/contacts.html +share/gnome/help/yamt/C/docbook.css +share/gnome/help/yamt/C/edit.html +share/gnome/help/yamt/C/exchange.html +share/gnome/help/yamt/C/explore.html +share/gnome/help/yamt/C/features.html +share/gnome/help/yamt/C/introduction.html +share/gnome/help/yamt/C/ln15.html +share/gnome/help/yamt/C/mass.html +share/gnome/help/yamt/C/misc.html +share/gnome/help/yamt/C/playlists.html +share/gnome/help/yamt/C/properties-0.html +share/gnome/help/yamt/C/properties.html +share/gnome/help/yamt/C/rename.html +share/gnome/help/yamt/C/sortandunsort.html @dirrm share/gnome/help/yamt/C @dirrm share/gnome/help/yamt >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 Apr 11 9:30:15 2000 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 1AF4F37BB1E for ; Tue, 11 Apr 2000 09:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA99168; Tue, 11 Apr 2000 09:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id C94DD37B997 for ; Tue, 11 Apr 2000 09:20:34 -0700 (PDT) (envelope-from adsharma@sharmas.dhs.org) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id JAA81214; Tue, 11 Apr 2000 09:19:53 -0700 (PDT) (envelope-from adsharma) Message-Id: <200004111619.JAA81214@sharmas.dhs.org> Date: Tue, 11 Apr 2000 09:19:53 -0700 (PDT) From: Arun Sharma Reply-To: adsharma@sharmas.dhs.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17932: New port sip Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17932 >Category: ports >Synopsis: New port sip-0.11.1 >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 11 09:30:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Arun Sharma >Release: FreeBSD 4.0-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: # # sip # sip/files # sip/files/md5 # sip/pkg # sip/pkg/COMMENT # sip/pkg/DESCR # sip/pkg/PLIST # sip/patches # sip/Makefile # echo c - sip mkdir -p sip > /dev/null 2>&1 echo c - sip/files mkdir -p sip/files > /dev/null 2>&1 echo x - sip/files/md5 sed 's/^X//' >sip/files/md5 << 'END-of-sip/files/md5' XMD5 (sip-0.11.1.tar.gz) = 6ad0a57e957b8950803481bbf1458beb END-of-sip/files/md5 echo c - sip/pkg mkdir -p sip/pkg > /dev/null 2>&1 echo x - sip/pkg/COMMENT sed 's/^X//' >sip/pkg/COMMENT << 'END-of-sip/pkg/COMMENT' XPython to C++ bindings generator END-of-sip/pkg/COMMENT echo x - sip/pkg/DESCR sed 's/^X//' >sip/pkg/DESCR << 'END-of-sip/pkg/DESCR' XSIP is a tool for generating bindings for C++ classes so that they can be Xaccessed as normal Python classes. SIP takes many of its ideas from SWIG but, Xbecause it is specifically designed for C++ and Python, is able to generate Xtighter bindings. SIP is so called because it is a small SWIG. X XSIP was originally designed to generate Python bindings for KDE and so has Xexplicit support for the signal slot mechanism used by the Qt/KDE class Xlibraries. However, SIP can be used to generate Python bindings for any C++ Xclass library. X XThe bindings generated by SIP support access to the following C++ and Qt Xfeatures: X - connecting Qt signals to Python functions and class methods X - connecting Python signals to Qt slots X - overloading virtual member functions with Python class methods X - protected member functions X - abstract classes X - enumerated types X - global class instances X - static member functions. END-of-sip/pkg/DESCR echo x - sip/pkg/PLIST sed 's/^X//' >sip/pkg/PLIST << 'END-of-sip/pkg/PLIST' Xbin/sip Xlib/libsip.so.2 Xlib/libsip.so Xlib/libsip.la Xlib/libsip.a Xinclude/sip/sip.h Xinclude/sip/sipQt.h X@dirrm include/sip X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -R X END-of-sip/pkg/PLIST echo c - sip/patches mkdir -p sip/patches > /dev/null 2>&1 echo x - sip/Makefile sed 's/^X//' >sip/Makefile << 'END-of-sip/Makefile' X# New ports collection makefile for: sip X# Version required: 0.9 X# Date created: Sun Oct 17 00:24:28 PDT 1999 X# Whom: adsharma@home.com X# X# $FreeBSD$ X# X XDISTNAME= sip-0.11.1 XCATEGORIES= kde python XMASTER_SITES= http://www.river-bank.demon.co.uk/software/ X XMAINTAINER= adsharma@home.com X XCONFIGURE_ARGS= --enable-qt --with-qt-includes=/usr/X11R6/include/X11/qt XGNU_CONFIGURE= yes XUSE_GMAKE= yes XCONFIGURE_ENV= LDFLAGS=-lgcc X Xpost_install: X ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib X X.include END-of-sip/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 Apr 11 9:30:19 2000 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 BCBEC37BB27 for ; Tue, 11 Apr 2000 09:30:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA99180; Tue, 11 Apr 2000 09:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id 0E93E37BAE0 for ; Tue, 11 Apr 2000 09:21:15 -0700 (PDT) (envelope-from adsharma@sharmas.dhs.org) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id JAA81336; Tue, 11 Apr 2000 09:20:34 -0700 (PDT) (envelope-from adsharma) Message-Id: <200004111620.JAA81336@sharmas.dhs.org> Date: Tue, 11 Apr 2000 09:20:34 -0700 (PDT) From: Arun Sharma Reply-To: adsharma@sharmas.dhs.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17933: New port PyQt-0.11.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17933 >Category: ports >Synopsis: New port PyQt-0.11.1 >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 11 09:30:05 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Arun Sharma >Release: FreeBSD 4.0-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: # # PyQt # PyQt/pkg # PyQt/pkg/COMMENT # PyQt/pkg/DESCR # PyQt/pkg/PLIST # PyQt/patches # PyQt/files # PyQt/files/md5 # PyQt/Makefile # echo c - PyQt mkdir -p PyQt > /dev/null 2>&1 echo c - PyQt/pkg mkdir -p PyQt/pkg > /dev/null 2>&1 echo x - PyQt/pkg/COMMENT sed 's/^X//' >PyQt/pkg/COMMENT << 'END-of-PyQt/pkg/COMMENT' XPython Bindings for Qt END-of-PyQt/pkg/COMMENT echo x - PyQt/pkg/DESCR sed 's/^X//' >PyQt/pkg/DESCR << 'END-of-PyQt/pkg/DESCR' XPython Bindings for Qt Xhttp://www.river-bank.demon.co.uk/software/ END-of-PyQt/pkg/DESCR echo x - PyQt/pkg/PLIST sed 's/^X//' >PyQt/pkg/PLIST << 'END-of-PyQt/pkg/PLIST' Xlib/python1.5/lib-dynload/libqtcmodule-0.11.1.so Xlib/python1.5/lib-dynload/libqtcmodule.so X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -R Xlib/python1.5/lib-dynload/libqtcmodule.la Xlib/python1.5/qt.py END-of-PyQt/pkg/PLIST echo c - PyQt/patches mkdir -p PyQt/patches > /dev/null 2>&1 echo c - PyQt/files mkdir -p PyQt/files > /dev/null 2>&1 echo x - PyQt/files/md5 sed 's/^X//' >PyQt/files/md5 << 'END-of-PyQt/files/md5' XMD5 (PyQt-0.11.1.tar.gz) = c6b6ac3541c5d3b99e1e078b93047cce END-of-PyQt/files/md5 echo x - PyQt/Makefile sed 's/^X//' >PyQt/Makefile << 'END-of-PyQt/Makefile' X# New ports collection makefile for: PyQt X# Version required: 0.9 X# Date created: Sun Oct 17 00:24:28 PDT 1999 X# Whom: adsharma@sharmas.dhs.org X# X# $FreeBSD$ X# X XDISTNAME= PyQt-0.11.1 XCATEGORIES= kde python XMASTER_SITES= http://www.river-bank.demon.co.uk/software/ X XMAINTAINER= adsharma@sharmas.dhs.org X XUSE_QT= yes XGNU_CONFIGURE= yes XUSE_GMAKE= yes XCONFIGURE_ENV= LDFLAGS=-lgcc XLIB_DEPENDS= sip.2:${PORTSDIR}/devel/sip XBUILD_DEPENDS= sip:${PORTSDIR}/devel/sip XCONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/X11/qt X Xpost_install: X ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib X X.include END-of-PyQt/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 Apr 11 9:30:22 2000 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 25AC437BB2A for ; Tue, 11 Apr 2000 09:30:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA99193; Tue, 11 Apr 2000 09:30:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id 018B037B954 for ; Tue, 11 Apr 2000 09:21:45 -0700 (PDT) (envelope-from adsharma@sharmas.dhs.org) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id JAA81455; Tue, 11 Apr 2000 09:21:03 -0700 (PDT) (envelope-from adsharma) Message-Id: <200004111621.JAA81455@sharmas.dhs.org> Date: Tue, 11 Apr 2000 09:21:03 -0700 (PDT) From: Arun Sharma Reply-To: adsharma@sharmas.dhs.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17934: New port PyKDE-0.11.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17934 >Category: ports >Synopsis: New port PyKDE-0.11.1 >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 11 09:30:07 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Arun Sharma >Release: FreeBSD 4.0-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: # # PyKDE # PyKDE/pkg # PyKDE/pkg/COMMENT # PyKDE/pkg/DESCR # PyKDE/pkg/PLIST # PyKDE/patches # PyKDE/files # PyKDE/files/md5 # PyKDE/Makefile # echo c - PyKDE mkdir -p PyKDE > /dev/null 2>&1 echo c - PyKDE/pkg mkdir -p PyKDE/pkg > /dev/null 2>&1 echo x - PyKDE/pkg/COMMENT sed 's/^X//' >PyKDE/pkg/COMMENT << 'END-of-PyKDE/pkg/COMMENT' XPython Bindings for KDE END-of-PyKDE/pkg/COMMENT echo x - PyKDE/pkg/DESCR sed 's/^X//' >PyKDE/pkg/DESCR << 'END-of-PyKDE/pkg/DESCR' XPython Bindings for KDE Xhttp://www.river-bank.demon.co.uk/software/ END-of-PyKDE/pkg/DESCR echo x - PyKDE/pkg/PLIST sed 's/^X//' >PyKDE/pkg/PLIST << 'END-of-PyKDE/pkg/PLIST' Xlib/python1.5/lib-dynload/libkdecorecmodule-0.11.1.so Xlib/python1.5/lib-dynload/libkdecorecmodule.la Xlib/python1.5/lib-dynload/libkdeuicmodule-0.11.1.so Xlib/python1.5/lib-dynload/libkdeuicmodule.la Xlib/python1.5/lib-dynload/libkhtmlwcmodule-0.11.1.so Xlib/python1.5/lib-dynload/libkhtmlwcmodule.la Xlib/python1.5/lib-dynload/libkfmcmodule-0.11.1.so Xlib/python1.5/lib-dynload/libkfmcmodule.la Xlib/python1.5/lib-dynload/libkfilecmodule-0.11.1.so Xlib/python1.5/lib-dynload/libkfilecmodule.la Xlib/python1.5/lib-dynload/libkspellcmodule-0.11.1.so Xlib/python1.5/lib-dynload/libkspellcmodule.la X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -R Xlib/python1.5/kdecore.py Xlib/python1.5/kdecore.pyc Xlib/python1.5/kdeui.py Xlib/python1.5/kdeui.pyc Xlib/python1.5/khtmlw.py Xlib/python1.5/khtmlw.pyc Xlib/python1.5/kfm.py Xlib/python1.5/kfm.pyc Xlib/python1.5/kfile.py Xlib/python1.5/kfile.pyc Xlib/python1.5/kspell.py Xlib/python1.5/kspell.pyc END-of-PyKDE/pkg/PLIST echo c - PyKDE/patches mkdir -p PyKDE/patches > /dev/null 2>&1 echo c - PyKDE/files mkdir -p PyKDE/files > /dev/null 2>&1 echo x - PyKDE/files/md5 sed 's/^X//' >PyKDE/files/md5 << 'END-of-PyKDE/files/md5' XMD5 (PyKDE-0.11.1.tar.gz) = 0110b211d723db525ebb4e4ea9e0d443 END-of-PyKDE/files/md5 echo x - PyKDE/Makefile sed 's/^X//' >PyKDE/Makefile << 'END-of-PyKDE/Makefile' X# New ports collection makefile for: PyKDE X# Version required: 0.9 X# Date created: Sun Oct 17 00:24:28 PDT 1999 X# Whom: adsharma@sharmas.dhs.org X# X# $FreeBSD$ X# X XDISTNAME= PyKDE-0.11.1 XCATEGORIES= kde python XMASTER_SITES= http://www.river-bank.demon.co.uk/software/ X XMAINTAINER= adsharma@sharmas.dhs.org X XUSE_QT= yes XGNU_CONFIGURE= yes XUSE_GMAKE= yes XLIB_DEPENDS= sip.2:${PORTSDIR}/devel/sip XBUILD_DEPENDS= ${LOCALBASE}/lib/python1.5/qt.py:${PORTSDIR}/devel/PyQt XRUN_DEPENDS= ${LOCALBASE}/lib/python1.5/qt.py:${PORTSDIR}/devel/PyQt XCONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/X11/qt X Xpost_install: X ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib X X.include END-of-PyKDE/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 Apr 11 9:46:21 2000 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 1ABE937BAF1; Tue, 11 Apr 2000 09:46:20 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA01025; Tue, 11 Apr 2000 09:46:17 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Date: Tue, 11 Apr 2000 09:46:17 -0700 (PDT) From: Message-Id: <200004111646.JAA01025@freefall.freebsd.org> To: jhb@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/17933: New port PyQt-0.11.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port PyQt-0.11.1 Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: jhb Responsible-Changed-When: Tue Apr 11 09:45:27 PDT 2000 Responsible-Changed-Why: Will wants this one, too. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 9:47:10 2000 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 5A28C37BA5C; Tue, 11 Apr 2000 09:47:09 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA01188; Tue, 11 Apr 2000 09:47:07 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Date: Tue, 11 Apr 2000 09:47:07 -0700 (PDT) From: Message-Id: <200004111647.JAA01188@freefall.freebsd.org> To: jhb@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/17934: New port PyKDE-0.11.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port PyKDE-0.11.1 Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: jhb Responsible-Changed-When: Tue Apr 11 09:46:24 PDT 2000 Responsible-Changed-Why: Will wants this one as well. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 12:18:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jestocost.cosc.morrisville.edu (jestocoast.cosc.morrisville.edu [136.204.176.67]) by hub.freebsd.org (Postfix) with ESMTP id D262937B505 for ; Tue, 11 Apr 2000 12:18:47 -0700 (PDT) (envelope-from root@jestocost.cosc.morrisville.edu) Received: by jestocost.cosc.morrisville.edu (8.9.3/8.9.3) id PAA87602 for ports@freeBSD.org; Tue, 11 Apr 2000 15:14:37 -0400 (EDT) (envelope-from root) From: James Halstead To: ports@freeBSD.org Subject: what happend to gnomemc port? Date: Tue, 11 Apr 2000 15:09:35 -0400 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00041115143601.36307@jestocost.cosc.morrisville.edu> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I was trying to install the gnome port and I get stuck in the gnomemc port. It is trying to download "mc-gnomemc.tar.gz" and it is not there (i did check). what should i do to get this port working? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 12:27:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id 6414837BACC; Tue, 11 Apr 2000 12:27:22 -0700 (PDT) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id VAA70533; Tue, 11 Apr 2000 21:27:12 +0200 (CEST) (envelope-from ibex) Date: Tue, 11 Apr 2000 21:27:12 +0200 From: Dirk Froemberg To: Adam Laurie Cc: "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.org, hetzels@westbend.net, rse@engelschall.com, ache@FreeBSD.org, winter@FreeBSD.org, ports@FreeBSD.org, asami@FreeBSD.org, ben@algroup.co.uk Subject: Re: apache13-php4 Message-ID: <20000411212712.A70090@physik.TU-Berlin.DE> References: <20000327155812.C23367@jade.chc-chimes.com> <20000330172419.B59713@dragon.nuxi.com> <20000330203838.H23367@jade.chc-chimes.com> <20000330210930.A60684@dragon.nuxi.com> <4.3.2.20000330233528.00df0520@207.227.119.2> <20000406130132.B70225@dragon.nuxi.com> <20000409011437.C50277@physik.TU-Berlin.DE> <38F237BB.5D5FAC4C@algroup.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <38F237BB.5D5FAC4C@algroup.co.uk>; from adam@algroup.co.uk on Mon, Apr 10, 2000 at 09:21:15PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Adam! On Mon, Apr 10, 2000 at 09:21:15PM +0100, Adam Laurie wrote: > Dirk Froemberg wrote: > > [...] > > - a decision what to do with apache13-ssl. Adam, the maintainer, > > wants to keep this port. But this wouldn't fit into the new concept. > > So we either can have a exception or delete this port... > > What is "the new concept"? That mod_ssl replaces apache-ssl, or that one > port conatains both mod_ssl and apache-ssl, user selectable? The new concept (or call it structure) is to have _one_ Apache port (apache13) and several mod_* ports depending on apache13 instead of having apache13-x, apache13-x-y, apache13-i-j, apache13-x-j, etc... It has to be discussed what to do with apache13-ssl. One possibility would be that mod_ssl replaces both apache13-modssl and apache13-ssl. Another would be to make an exception and simply keep apache13-ssl. And I'm sure there are others... Regards Dirk -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 12:33:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id B2EAC37B801 for ; Tue, 11 Apr 2000 12:33:15 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (pc343042.tokyo.jcom.ne.jp [203.140.143.42]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 03/13/00) with ESMTP id EAA09316; Wed, 12 Apr 2000 04:32:31 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id EAA82673; Wed, 12 Apr 2000 04:32:00 +0900 (JST) Date: Wed, 12 Apr 2000 04:31:59 +0900 Message-ID: <86aej0juxc.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: admin@csclab1.cosc.morrisville.edu Cc: ports@FreeBSD.ORG Subject: Re: what happend to gnomemc port? In-Reply-To: In your message of "Tue, 11 Apr 2000 15:09:35 -0400" <00041115143601.36307@jestocost.cosc.morrisville.edu> References: <00041115143601.36307@jestocost.cosc.morrisville.edu> User-Agent: Wanderlust/1.1.1 (Purple Rain) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Tue, 11 Apr 2000 15:09:35 -0400, James Halstead wrote: > I was trying to install the gnome port and I get stuck in the gnomemc port. > It is trying to download "mc-gnomemc.tar.gz" and it is not there (i did > check). what should i do to get this port working? There was a wrong commit on the gnomemc port, but it was fixed later. Update the port or fix manually as follows and try again. -DISTNAME= mc-${PORTNAME} +DISTNAME= mc-${PORTVERSION} -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 13:50:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id 948DD37BADA; Tue, 11 Apr 2000 13:50:26 -0700 (PDT) (envelope-from ben@algroup.co.uk) Received: from freeby.ben.algroup.co.uk (freeby.ben.algroup.co.uk [193.133.15.6]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id UAA08999; Tue, 11 Apr 2000 20:50:23 GMT Received: from algroup.co.uk (naughty.ben.algroup.co.uk [193.133.15.107]) by freeby.ben.algroup.co.uk (8.6.12/8.6.12) with ESMTP id VAA09478; Tue, 11 Apr 2000 21:50:15 +0100 Message-ID: <38F38FEF.FD0D28DA@algroup.co.uk> Date: Tue, 11 Apr 2000 21:49:51 +0100 From: Ben Laurie Organization: A.L. Group plc X-Mailer: Mozilla 4.7 [en] (WinNT; I) MIME-Version: 1.0 To: Dirk Froemberg Cc: Adam Laurie , "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.org, hetzels@westbend.net, rse@engelschall.com, ache@FreeBSD.org, winter@FreeBSD.org, ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: apache13-php4 References: <20000327155812.C23367@jade.chc-chimes.com> <20000330172419.B59713@dragon.nuxi.com> <20000330203838.H23367@jade.chc-chimes.com> <20000330210930.A60684@dragon.nuxi.com> <4.3.2.20000330233528.00df0520@207.227.119.2> <20000406130132.B70225@dragon.nuxi.com> <20000409011437.C50277@physik.TU-Berlin.DE> <38F237BB.5D5FAC4C@algroup.co.uk> <20000411212712.A70090@physik.TU-Berlin.DE> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dirk Froemberg wrote: > > Hi Adam! > > On Mon, Apr 10, 2000 at 09:21:15PM +0100, Adam Laurie wrote: > > Dirk Froemberg wrote: > > > [...] > > > - a decision what to do with apache13-ssl. Adam, the maintainer, > > > wants to keep this port. But this wouldn't fit into the new concept. > > > So we either can have a exception or delete this port... > > > > What is "the new concept"? That mod_ssl replaces apache-ssl, or that one > > port conatains both mod_ssl and apache-ssl, user selectable? > > The new concept (or call it structure) is to have _one_ Apache port > (apache13) and several mod_* ports depending on apache13 instead > of having apache13-x, apache13-x-y, apache13-i-j, apache13-x-j, > etc... > > It has to be discussed what to do with apache13-ssl. One possibility > would be that mod_ssl replaces both apache13-modssl and apache13-ssl. > Another would be to make an exception and simply keep apache13-ssl. > And I'm sure there are others... Hmm. And what about the one where Apache-SSL replaces both apache13-modssl and apache13-ssl? Why do you consider Apache-SSL to need an exception, but not mod_ssl? I trust you are aware that both need Apache to be patched before they work? Cheers, Ben. -- http://www.apache-ssl.org/ben.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 15:10:18 2000 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 D8FCB37B5FC for ; Tue, 11 Apr 2000 15:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA44511; Tue, 11 Apr 2000 15:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mx1.issei.org (mx1.issei.org [210.254.221.66]) by hub.freebsd.org (Postfix) with ESMTP id 6485D37BC77 for ; Tue, 11 Apr 2000 15:01:30 -0700 (PDT) (envelope-from issei@issei.org) Received: from tole.issei.org (tole.issei.org [210.254.221.68]) by mx1.issei.org (8.9.3+3.2W/3.7W-v6) with ESMTP/IPv4 id HAA96251 for ; Wed, 12 Apr 2000 07:01:28 +0900 (JST) (envelope-from issei@issei.org) Received: (from issei@localhost) by tole.issei.org (8.9.3/3.7W-client) id HAA19970; Wed, 12 Apr 2000 07:01:28 +0900 (JST) Message-Id: <200004112201.HAA19970@tole.issei.org> Date: Wed, 12 Apr 2000 07:01:28 +0900 (JST) From: issei@jp.FreeBSD.org Reply-To: issei@jp.FreeBSD.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17937: ssh2 install fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17937 >Category: ports >Synopsis: security/ssh2 install fails. >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Apr 11 15:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Issei Suzuki >Release: FreeBSD 4.0-STABLE i386 >Organization: Individual >Environment: >Description: security/ssh2 install fails with the following message. ===> Generating temporary packing list /bin/mv -f /usr/local/man/man1/ssh.1 /usr/local/man/man1/ssh.old.1 /bin/mv -f /usr/local/man/man1/ssh-keygen.1 /usr/local/man/man1/ssh-keygen.old.1 /bin/mv -f /usr/local/man/man1/ssh-add.1 /usr/local/man/man1/ssh-add.old.1 /bin/mv -f /usr/local/man/man1/ssh-agent.1 /usr/local/man/man1/ssh-agent.old.1 /bin/mv -f /usr/local/man/man1/scp.1 /usr/local/man/man1/scp.old.1 /bin/mv -f /usr/local/man/man8/sshd.8 /usr/local/man/man8/sshd.old.8 /bin/mkdir -p /usr/local/share/doc/ssh2 install -c -o root -g wheel -m 444 /usr/ports/security/ssh2/work/ssh-2.0.13/CHANGES /usr/local/share/doc/ssh2 install -c -o root -g wheel -m 444 /usr/ports/security/ssh2/work/ssh-2.0.13/LICENSING /usr/local/share/doc/ssh2 install -c -o root -g wheel -m 444 /usr/ports/security/ssh2/work/ssh-2.0.13/README /usr/local/share/doc/ssh2 Syntax error: end of file unexpected (expecting "fi") >How-To-Repeat: # make install >Fix: Apply the following patch, which is submitted by Martin Minkus to me. diff -urN ssh2.old/Makefile ssh2/Makefile --- ssh2.old/Makefile Wed Apr 12 06:52:14 2000 +++ ssh2/Makefile Wed Apr 12 06:52:20 2000 @@ -102,7 +102,7 @@ @if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \ ${ECHO} "Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \ ${SED} -e 's+!!PREFIX!!+${PREFIX}+' < ${FILESDIR}/sshd.sh \ - > ${PREFIX}/etc/rc.d/sshd.sh + > ${PREFIX}/etc/rc.d/sshd.sh ; \ ${CHMOD} 751 ${PREFIX}/etc/rc.d/sshd.sh; \ 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 Tue Apr 11 15:19:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (f75.law8.hotmail.com [216.33.241.75]) by hub.freebsd.org (Postfix) with SMTP id 0303C37BADA for ; Tue, 11 Apr 2000 15:19:11 -0700 (PDT) (envelope-from jmd526@hotmail.com) Received: (qmail 22954 invoked by uid 0); 11 Apr 2000 22:19:11 -0000 Message-ID: <20000411221911.22953.qmail@hotmail.com> Received: from 209.220.228.2 by www.hotmail.com with HTTP; Tue, 11 Apr 2000 15:19:11 PDT X-Originating-IP: [209.220.228.2] From: "John Daniels" To: alex@big.endian.de Cc: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: staroffice install Date: Tue, 11 Apr 2000 18:19:11 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks for your help. I did a make clean then make install and it worked. I now see at least one reason why StarOffice ("SO") needs to be installed in a terminal -- the SO install is apparantly a graphical, X-based, Windowed, user-friendly process. There should be a note of this in a convenient place like the README file for the package. Alternatively, perhaps the make file should check that it is running in an Xterminal? I will send an email or PR to the appropriate person/list. I had 2 minor problems: 1) When the graphical screen first came up (while I was still in root -- I had no idea that this was to install SO for the system as a whole) I thought that it was a mistake. I figured that the install was done and it had now proceeded to the user-install part so I exited and logged in as a user and tried to run make install-user. After some thought on why this was not working, I started fresh (root: make clean, make install). 2) SO told me that icons would be added within KDE. They were not. Could this be because KDE is running natively and SO is running under linux emulation? John >From: Alexander Langer >To: John Daniels >CC: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org >Subject: Re: staroffice install >Date: Tue, 11 Apr 2000 12:35:32 +0200 > >Thus spake John Daniels (jmd526@hotmail.com): > > > part of my former 'make install clean'? > >yes. > > > *** Error code 255 (ignored) > > install: /usr/local/Office51/bin: No such file or directory > >try make clean install then .) > >If this doesn't help, I have no more ideas. > >Alex > >-- >I need a new ~/.sig. ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 15:34: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailhost.waddell.com (mailhost.waddell.com [208.132.88.26]) by hub.freebsd.org (Postfix) with ESMTP id 34CE737BA51 for ; Tue, 11 Apr 2000 15:33:50 -0700 (PDT) (envelope-from rsantos@waddell.com) Received: from rsantos (c2-94.waddell.com [10.1.2.94]) by mailhost.waddell.com (8.9.1a/8.9.1a) with ESMTP id RAA28229; Tue, 11 Apr 2000 17:33:48 -0500 (CDT) Message-Id: <4.2.0.58.20000411171227.00ad36e0@mailhost.waddell.com> X-Sender: rsantos@mailhost.waddell.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Tue, 11 Apr 2000 17:33:45 -0500 To: tmb_ports@maddog.u-net.com From: Retze Santos Subject: FreeBSD Port: cronolog-1.6.1 (a little bug in the make file) Cc: ports@FreeBSD.org 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 I tried installing the cronolog-1.6.1 but received an Error code 1.. --------- begin copy of error ----------------------------------------------------------- make >> .tar.gz doesn't seem to exist on this system. >> Attempting to fetch from http://www.ford-mason.co.uk/resources/cronolog/. fetch: .tar.gz: www.ford-mason.co.uk: HTTP server returned error code 302 >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: pub/FreeBSD/ports/distfiles/.tar.gz: cannot get remote modification time fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. --------------- end --------------------------------------------------------------------- A Fix to this bug was by editing the Makefile. I added this line to it.. DISTNAME= cronolog-1.6.1 and it worked .. Retze Santos Web Specialist Waddell & Reed Financial Sevices www.waddell.com rsantos@waddell.com 236-2313 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 15:39:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 6546337B7E1; Tue, 11 Apr 2000 15:39:05 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F544E.dip0.t-ipconnect.de [193.159.84.78]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id XAA24173; Tue, 11 Apr 2000 23:38:36 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 441A5AC2C; Wed, 12 Apr 2000 00:42:01 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id AAA03036; Wed, 12 Apr 2000 00:38:56 +0200 (CEST) (envelope-from alex) Date: Wed, 12 Apr 2000 00:38:56 +0200 From: Alexander Langer To: John Daniels Cc: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: staroffice install Message-ID: <20000412003856.D343@cichlids.cichlids.com> Mail-Followup-To: John Daniels , freebsd-ports@freebsd.org, freebsd-questions@freebsd.org References: <20000411221911.22953.qmail@hotmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000411221911.22953.qmail@hotmail.com>; from jmd526@hotmail.com on Tue, Apr 11, 2000 at 06:19:11PM -0400 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 Thus spake John Daniels (jmd526@hotmail.com): > reason why StarOffice ("SO") needs to be installed in a terminal -- the SO > install is apparantly a graphical, X-based, Windowed, user-friendly process. yes, nice, isn't it? > for the package. Alternatively, perhaps the make file should check that it > is running in an Xterminal? I will send an email or PR to the appropriate > person/list. Yes, do so. I think that Martin will be open-minded for suggestions :) > make install). 2) SO told me that icons would be added within KDE. They > were not. Could this be because KDE is running natively and SO is running > under linux emulation? Hmm. _Maybe_, but I don't think so. You should ask that Martin Blapp (the maintainer), too. (I don't use KDE). Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 15:40:10 2000 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 324E437BC34 for ; Tue, 11 Apr 2000 15:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA47547; Tue, 11 Apr 2000 15:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EDDC937B80A for ; Tue, 11 Apr 2000 15:36:21 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA47093; Tue, 11 Apr 2000 15:36:21 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004112236.PAA47093@freefall.freebsd.org> Date: Tue, 11 Apr 2000 15:36:21 -0700 (PDT) From: jss@subatomix.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17938: KDM dumping core in 4.0-STABLE (!) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17938 >Category: ports >Synopsis: KDM dumping core in 4.0-STABLE (!) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 11 15:40:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jeffrey S. Sharp >Release: 4.0-STABLE >Organization: CISCOR >Environment: FreeBSD vulcan.ciscor.com 4.0-STABLE FreeBSD 4.0-STABLE #2: Tue Apr 11 16:11:05 CDT 2000 root@vulcan.ciscor.com:/usr/src/sys/compile/VULCAN i386 >Description: When trying to run KDM, the display dies (and KDM dumps core) somewhere after the sourcing of Xsetup_0 and before the login window appears. ---------- output of kdm -nodaemon -debug 1 ---------- DisplayManager.errorLogFile/DisplayManager.ErrorLogFile value /usr/X11R6/lib/X11/xdm/xdm-errors DisplayManager.daemonMode/DisplayManager.DaemonMode value false DisplayManager.pidFile/DisplayManager.PidFile value /usr/X11R6/lib/X11/xdm/xdm-pid DisplayManager.lockPidFile/DisplayManager.LockPidFile value true DisplayManager.authDir/DisplayManager.authDir value /usr/X11R6/lib/X11/xdm/authdir DisplayManager.autoRescan/DisplayManager.AutoRescan value true DisplayManager.removeDomainname/DisplayManager.RemoveDomainname value true DisplayManager.keyFile/DisplayManager.KeyFile value /usr/X11R6/lib/X11/xdm/xdm-keys DisplayManager.accessFile/DisplayManager.AccessFile value /usr/X11R6/lib/X11/xdm/Xaccess DisplayManager.exportList/DisplayManager.ExportList value DisplayManager.randomFile/DisplayManager.RandomFile value /dev/mem DisplayManager.greeterLib/DisplayManager.GreeterLib value DisplayManager.choiceTimeout/DisplayManager.ChoiceTimeout value 15 /usr/X11R6/bin/X StartDisplay :0 DisplayManager._0.serverAttempts/DisplayManager._0.ServerAttempts value 1 DisplayManager._0.openDelay/DisplayManager._0.OpenDelay value 15 DisplayManager._0.openRepeat/DisplayManager._0.OpenRepeat value 5 DisplayManager._0.openTimeout/DisplayManager._0.OpenTimeout value 120 DisplayManager._0.startAttempts/DisplayManager._0.StartAttempts value 4 DisplayManager._0.pingInterval/DisplayManager._0.PingInterval value 5 DisplayManager._0.pingTimeout/DisplayManager._0.PingTimeout value 5 DisplayManager._0.terminateServer/DisplayManager._0.TerminateServer value false DisplayManager._0.grabServer/DisplayManager._0.GrabServer value false DisplayManager._0.grabTimeout/DisplayManager._0.GrabTimeout value 3 DisplayManager._0.resetSignal/DisplayManager._0.Signal value 1 DisplayManager._0.termSignal/DisplayManager._0.Signal value 15 DisplayManager._0.resetForAuth/DisplayManager._0.ResetForAuth value false DisplayManager._0.authorize/DisplayManager._0.Authorize value true DisplayManager._0.authComplain/DisplayManager._0.AuthComplain value false DisplayManager._0.authName/DisplayManager._0.AuthName value MIT-MAGIC-COOKIE-1 DisplayManager._0.authFile/DisplayManager._0.AuthFile value SetLocalAuthorization :0, auth MIT-MAGIC-COOKIE-1 GenerateAuthorization MIT-MAGIC-COOKIE-1 Got 0x8076dc0 (18 MIT-MAGIC-COOKIE-1) 74 c9 44 3a 1e d8 3b 44 5d bd b5 7a bd 13 1d d8 File: /usr/X11R6/lib/X11/xdm/authdir/A:0-QSm781 auth: 807a680 StartServer for :0 Server Started 784 display manager paused til SIGUSR1 pid: 785 WaitForSomething signals blocked, mask was 0x0 Manager wait returns pid: 785 sig 139 core 0 code 0 Display exited with unknown status 35584 WaitForSomething signals blocked, mask was 0x0 Manager wait returns pid: 784 sig 0 core 0 code 0 Zombie server reaped, removing display :0 Nothing left to do, exiting ---------- xdm-config file ---------- DisplayManager.errorLogFile: /usr/X11R6/lib/X11/xdm/xdm-errors DisplayManager.pidFile: /usr/X11R6/lib/X11/xdm/xdm-pid DisplayManager.keyFile: /usr/X11R6/lib/X11/xdm/xdm-keys DisplayManager.servers: /usr/X11R6/lib/X11/xdm/Xservers DisplayManager.accessFile: /usr/X11R6/lib/X11/xdm/Xaccess DisplayManager.requestPort: 0 DisplayManager._0.authorize: true DisplayManager._0.setup: /usr/X11R6/lib/X11/xdm/Xsetup_0 DisplayManager._0.startup: /usr/X11R6/lib/X11/xdm/GiveConsole DisplayManager._0.reset: /usr/X11R6/lib/X11/xdm/TakeConsole DisplayManager._0.userPath: /bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin DisplayManager._0.systemPath: /sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin DisplayManager*resources: /usr/X11R6/lib/X11/xdm/Xresources DisplayManager*session: /usr/X11R6/lib/X11/xdm/Xsession DisplayManager*authComplain: false >How-To-Repeat: Install 4.0-RELEASE from CD. CVSup cvs-all and ports-all to RELENG_4. Install /usr/ports/x11/kde11 Try to run "kdm -nodaemon". >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 Tue Apr 11 15:48: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from crh5193.urh.uiuc.edu (crh5193.urh.uiuc.edu [130.126.194.237]) by hub.freebsd.org (Postfix) with ESMTP id D91FE37BC11 for ; Tue, 11 Apr 2000 15:48:00 -0700 (PDT) (envelope-from brueggma@crh5193.urh.uiuc.edu) Received: (from brueggma@localhost) by crh5193.urh.uiuc.edu (8.9.3/8.9.3) id RAA02501 for freebsd-ports@freebsd.org; Tue, 11 Apr 2000 17:44:16 -0500 (CDT) (envelope-from brueggma) Date: Tue, 11 Apr 2000 17:44:16 -0500 From: Eric Brueggmann To: freebsd-ports@freebsd.org Subject: pidentd-2.8.5 Message-ID: <20000411174415.A2186@crh5193.urh.uiuc.edu> Reply-To: brueggma@students.uiuc.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello.. Sorry if this is the wrong mailing list to send this question to. I wasn't sure weather to send this question to ports or questions. I'm trying to install an external identd server via /etc/inetd.conf so that I won't get that annoying ~brueggma@blah when I /whois myself. This is how I did it: cd /usr/ports/security/pidentd; make; make install; make clean vi /etc/inetd.conf uncomment auth stream tcp wait root /usr/local/sbin/identd identd -w -t120 killall -HUP inetd vi /etc/hosts.allow add the following line "auth : ALL : allow" at the top. I then fire up BitchX, but the following is written to /var/log/messages: Apr 11 16:45:47 crh5193 inetd[148]: auth/tcp server failing (looping), service terminated The following is also displayed when I use BitchX: [umn] *** Looking up your hostname... [umn] *** Found your hostname, cached [umn] *** Checking Ident [umn] *** No Ident response What am I doing wrong? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 17:14:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [63.67.141.99]) by hub.freebsd.org (Postfix) with ESMTP id 4AFC737BA15; Tue, 11 Apr 2000 17:14:51 -0700 (PDT) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.9.3/8.8.7) with ESMTP id UAA04208; Tue, 11 Apr 2000 20:14:04 -0400 (EDT) Date: Tue, 11 Apr 2000 20:14:03 -0400 (EDT) From: "Matthew N. Dodd" To: Ben Laurie Cc: Dirk Froemberg , Adam Laurie , "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.ORG, hetzels@westbend.net, rse@engelschall.com, ache@FreeBSD.ORG, winter@FreeBSD.ORG, ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: apache13-php4 In-Reply-To: <38F38FEF.FD0D28DA@algroup.co.uk> 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, 11 Apr 2000, Ben Laurie wrote: > Hmm. And what about the one where Apache-SSL replaces both > apache13-modssl and apache13-ssl? Why do you consider Apache-SSL to > need an exception, but not mod_ssl? I trust you are aware that both > need Apache to be patched before they work? The difference being that we can always patch the Apache13 port so that it will work with mod_ssl if the user decides to compile it in the future and Apache-SSL doesn't work as an APXS DSO module AFAIK. Right? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 17:33:59 2000 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 D388237B6B1; Tue, 11 Apr 2000 17:33:57 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA57450; Tue, 11 Apr 2000 17:33:57 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Tue, 11 Apr 2000 17:33:57 -0700 (PDT) From: Message-Id: <200004120033.RAA57450@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/17932: New port sip-0.11.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port sip-0.11.1 Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: will Responsible-Changed-When: Tue Apr 11 17:33:15 PDT 2000 Responsible-Changed-Why: I'm also going to look at this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 17:42:43 2000 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 030DE37B664; Tue, 11 Apr 2000 17:42:42 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA58372; Tue, 11 Apr 2000 17:42:41 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Tue, 11 Apr 2000 17:42:41 -0700 (PDT) From: Message-Id: <200004120042.RAA58372@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/17937: security/ssh2 install fails. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: security/ssh2 install fails. Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: will Responsible-Changed-When: Tue Apr 11 17:38:37 PDT 2000 Responsible-Changed-Why: This is a known problem, caused by myself. I apologize that I hadn't considered emailing you to ask if you approved the patch, and also apologize for breaking your port. :-( Anyway, I will fix this as soon as the ports freeze lifts. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 17:52:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from c000.sfo.cp.net (c000-h000.c000.sfo.cp.net [209.228.14.61]) by hub.freebsd.org (Postfix) with SMTP id 3B17137B6B1 for ; Tue, 11 Apr 2000 17:52:21 -0700 (PDT) (envelope-from matt@boda.virtualave.net) Received: (cpmta 21942 invoked from network); 11 Apr 2000 17:52:20 -0700 Received: from slip-32-101-179-251.or.us.prserv.net (HELO boda.mine.nu) (32.101.179.251) by smtp.worldspy.net with SMTP; 11 Apr 2000 17:52:20 -0700 X-Sent: 12 Apr 2000 00:52:20 GMT From: Matt M. To: ports@freebsd.org Subject: gtk1.2.7 issues Date: Tue, 11 Apr 2000 17:51:04 -0700 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00041117515900.00631@boda.mine.nu> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just wondering why the port doesn't create/install gtk-config, which is required if you are developing your own gtk-based apps. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 17:52:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from c000.sfo.cp.net (c000-h000.c000.sfo.cp.net [209.228.14.61]) by hub.freebsd.org (Postfix) with SMTP id 6417B37BA6E for ; Tue, 11 Apr 2000 17:52:22 -0700 (PDT) (envelope-from matt@boda.virtualave.net) Received: (cpmta 21950 invoked from network); 11 Apr 2000 17:52:21 -0700 Received: from slip-32-101-179-251.or.us.prserv.net (HELO boda.mine.nu) (32.101.179.251) by smtp.worldspy.net with SMTP; 11 Apr 2000 17:52:21 -0700 X-Sent: 12 Apr 2000 00:52:21 GMT From: Matt M. To: ports@freebsd.org Subject: gtk1.2.7 issues Date: Tue, 11 Apr 2000 17:52:20 -0700 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00041117515900.00631@boda.mine.nu> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just wondering why the port doesn't create/install gtk-config, which is required if you are developing your own gtk-based apps. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 17:57:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from luna.cdrom.com (adsl-63-192-209-55.dsl.snfc21.pacbell.net [63.192.209.55]) by hub.freebsd.org (Postfix) with ESMTP id 7447837BB46 for ; Tue, 11 Apr 2000 17:57:15 -0700 (PDT) (envelope-from jim@luna.cdrom.com) Received: by luna.cdrom.com (Postfix, from userid 1000) id 9D28C31E5; Tue, 11 Apr 2000 17:57:15 -0700 (PDT) Date: Tue, 11 Apr 2000 17:57:15 -0700 From: Jim Mock To: "Matt M." Cc: ports@FreeBSD.ORG Subject: Re: gtk1.2.7 issues Message-ID: <20000411175715.B16772@luna.cdrom.com> Reply-To: jim@luna.cdrom.com References: <00041117515900.00631@boda.mine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.1.11i In-Reply-To: <00041117515900.00631@boda.mine.nu>; from matt@boda.virtualave.net on Tue, Apr 11, 2000 at 05:52:20PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 11 Apr 2000 at 17:52:20 -0700, Matt M. wrote: > Just wondering why the port doesn't create/install gtk-config, which > is required if you are developing your own gtk-based apps. It installs gtk12-config, because it makes it easier to co-exist with other versions of gtk (gtk11, gtk10, etc.), which are still in the ports collection. Why can't you 'ln -fs gtk12-config gtk-config' if you need it to be gtk-config? - jim -- - jim mock - walnut creek cdrom/freebsd test labs - jim@luna.cdrom.com - - phone: 1.925.691.2800 x.3814 - fax: 1.925.674.0821 - jim@FreeBSD.org - - editor - The FreeBSDzine - www.freebsdzine.org - jim@freebsdzine.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 17:59:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from c000.sfo.cp.net (c000-h001.c000.sfo.cp.net [209.228.14.62]) by hub.freebsd.org (Postfix) with SMTP id B294B37BAEF for ; Tue, 11 Apr 2000 17:59:14 -0700 (PDT) (envelope-from matt@boda.virtualave.net) Received: (cpmta 7381 invoked from network); 11 Apr 2000 17:59:13 -0700 Received: from slip-32-101-179-251.or.us.prserv.net (HELO boda.mine.nu) (32.101.179.251) by smtp.worldspy.net with SMTP; 11 Apr 2000 17:59:13 -0700 X-Sent: 12 Apr 2000 00:59:13 GMT From: Matt M. To: jim@luna.cdrom.com Subject: Re: gtk1.2.7 issues Date: Tue, 11 Apr 2000 17:58:42 -0700 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: <00041117515900.00631@boda.mine.nu> <20000411175715.B16772@luna.cdrom.com> In-Reply-To: <20000411175715.B16772@luna.cdrom.com> Cc: ports@freebsd.org MIME-Version: 1.0 Message-Id: <00041117591502.00631@boda.mine.nu> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ok thanks. Didn't realize that it renamed it. On Tue, 11 Apr 2000, you wrote: > On Tue, 11 Apr 2000 at 17:52:20 -0700, Matt M. wrote: > > Just wondering why the port doesn't create/install gtk-config, which > > is required if you are developing your own gtk-based apps. > > It installs gtk12-config, because it makes it easier to co-exist with > other versions of gtk (gtk11, gtk10, etc.), which are still in the ports > collection. Why can't you 'ln -fs gtk12-config gtk-config' if you need > it to be gtk-config? > > - jim > > -- > - jim mock - walnut creek cdrom/freebsd test labs - jim@luna.cdrom.com - > - phone: 1.925.691.2800 x.3814 - fax: 1.925.674.0821 - jim@FreeBSD.org - > - editor - The FreeBSDzine - www.freebsdzine.org - jim@freebsdzine.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 18:13:23 2000 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 9A71E37B6B1; Tue, 11 Apr 2000 18:13:22 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id SAA62418; Tue, 11 Apr 2000 18:13:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Tue, 11 Apr 2000 18:13:21 -0700 (PDT) From: Kris Kennaway To: Jim Mock Cc: "Matt M." , ports@FreeBSD.ORG Subject: Re: gtk1.2.7 issues In-Reply-To: <20000411175715.B16772@luna.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 On Tue, 11 Apr 2000, Jim Mock wrote: > It installs gtk12-config, because it makes it easier to co-exist with > other versions of gtk (gtk11, gtk10, etc.), which are still in the ports > collection. Why can't you 'ln -fs gtk12-config gtk-config' if you need > it to be gtk-config? Better yet, make sure your application understands GTK_CONFIG, the canonical variable for overriding the default name (gtk-config) Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 19: 0: 4 2000 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 865B937B77E for ; Tue, 11 Apr 2000 19:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA68804; Tue, 11 Apr 2000 19:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 Apr 2000 19:00:02 -0700 (PDT) Message-Id: <200004120200.TAA68804@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Jeffrey S. Sharp" Subject: Re: ports/17938: KDM dumping core in 4.0-STABLE (!) Reply-To: "Jeffrey S. Sharp" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17938; it has been noted by GNATS. From: "Jeffrey S. Sharp" To: , Cc: Subject: Re: ports/17938: KDM dumping core in 4.0-STABLE (!) Date: Tue, 11 Apr 2000 20:51:24 -0500 > Install 4.0-RELEASE from CD. > CVSup cvs-all and ports-all to RELENG_4. > Install /usr/ports/x11/kde11 > Try to run "kdm -nodaemon". Duh, forgot: Insert "make world" after the CVSup. -- Jeffrey S. Sharp (XorAxAx) jss@subatomix.com -----BEGIN GEEK CODE BLOCK----- Version 3.12 GCS/IT/MU d-@ s-:+ a21 C++(++++) UBL+(+++$)> P L+(+++$)> E+> W++ N+(++) o? K? w++$> !O M(-) !V PS+ PE Y PGP- t+ 5 X+ R(+) tv+ b+ DI++(+++) G++ e> h--- r+++ y+++ ------END GEEK CODE BLOCK------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 20: 9: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 9B93137B8E4 for ; Tue, 11 Apr 2000 20:08:54 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (pc343042.tokyo.jcom.ne.jp [203.140.143.42]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 03/13/00) with ESMTP id MAA22822; Wed, 12 Apr 2000 12:08:11 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id MAA89006; Wed, 12 Apr 2000 12:07:09 +0900 (JST) Date: Wed, 12 Apr 2000 12:07:08 +0900 Message-ID: <86em8c6mqr.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: rsantos@waddell.com Cc: tmb_ports@maddog.u-net.com, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: cronolog-1.6.1 (a little bug in the make file) In-Reply-To: In your message of "Tue, 11 Apr 2000 17:33:45 -0500" <4.2.0.58.20000411171227.00ad36e0@mailhost.waddell.com> References: <4.2.0.58.20000411171227.00ad36e0@mailhost.waddell.com> User-Agent: Wanderlust/1.1.1 (Purple Rain) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Tue, 11 Apr 2000 17:33:45 -0500, Retze Santos wrote: > A Fix to this bug was by editing the Makefile. > > I added this line to it.. > > DISTNAME= cronolog-1.6.1 > > > and it worked .. Your bsd.port.mk must be out of date. Update it and try again, please. There was a pretty important change around DISTNAME/PKGNAME recently. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 20:30: 7 2000 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 6B0CC37B77E for ; Tue, 11 Apr 2000 20:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA78661; Tue, 11 Apr 2000 20:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from heidegger.uol.com.br (heidegger.uol.com.br [200.230.198.88]) by hub.freebsd.org (Postfix) with ESMTP id 35ECF37BB76 for ; Tue, 11 Apr 2000 20:21:05 -0700 (PDT) (envelope-from lioux-alias-ppp-FreeBSD-gnats-submit=freebsd.org@uol.com.br) Received: from 200-191-157-178-as.acessonet.com.br (200-191-157-178-as.acessonet.com.br [200.191.157.178]) by heidegger.uol.com.br (8.9.1/8.9.1) with ESMTP id AAA07203 for ; Wed, 12 Apr 2000 00:20:59 -0300 (BRT) Received: (qmail 6363 invoked by uid 1001); 12 Apr 2000 03:07:09 -0000 Message-Id: <20000412030709.6362.qmail@Fedaykin.here> Date: 12 Apr 2000 03:07:09 -0000 From: lioux@uol.com.br Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17941: New port devel/lwp needed for coda 5.3.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17941 >Category: ports >Synopsis: New port devel/lwp needed for coda 5.3.6 >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 Apr 11 20:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Latest FBSD 4.0-STABLE >Description: This port is based on the original lwp FBSD port from ftp://ftp.coda.cs.cmu.edu/pub/lwp/ maintained by the coda group. That's why I kept the original maintainer found on the port file. However, I can be the maintainer if that is okay. I wouldn't mind. :) I did updated it to the latest bsd.port.mk specifications, i.e., PORTNAME and PORTVERSION. Besides, I did minimize the port directives and fixed the PLIST. >How-To-Repeat: Build the port. >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: # # lwp # lwp/Makefile # lwp/files # lwp/files/md5 # lwp/pkg # lwp/pkg/COMMENT # lwp/pkg/DESCR # lwp/pkg/PLIST # echo c - lwp mkdir -p lwp > /dev/null 2>&1 echo x - lwp/Makefile sed 's/^X//' >lwp/Makefile << 'END-of-lwp/Makefile' X# New ports collection makefile for: lwp X# Version required: 1.4 X# Date created: Tue Mar 21 17:51:25 EST 2000 X# Whom: jaharkes X# $FreeBSD$ X# X XPORTNAME= lwp XPORTVERSION= 1.4 XCATEGORIES= devel XMASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/lwp/src/ X XMAINTAINER= coda@cs.cmu.edu X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_LIBTOOL= yes X Xpost-configure: X @${CP} ${PREFIX}/bin/${LIBTOOL} ${WRKSRC} X X.include END-of-lwp/Makefile echo c - lwp/files mkdir -p lwp/files > /dev/null 2>&1 echo x - lwp/files/md5 sed 's/^X//' >lwp/files/md5 << 'END-of-lwp/files/md5' XMD5 (lwp-1.4.tar.gz) = 1226a1ff4a18de165fa403b38e2cfc6e END-of-lwp/files/md5 echo c - lwp/pkg mkdir -p lwp/pkg > /dev/null 2>&1 echo x - lwp/pkg/COMMENT sed 's/^X//' >lwp/pkg/COMMENT << 'END-of-lwp/pkg/COMMENT' XLWP thread library END-of-lwp/pkg/COMMENT echo x - lwp/pkg/DESCR sed 's/^X//' >lwp/pkg/DESCR << 'END-of-lwp/pkg/DESCR' XThe LWP userspace threads library. The LWP threads library is used by the Coda Xdistributed filesystem, RVM (a persistent VM library), and RPC2/SFTP (remote Xprocedure call library) END-of-lwp/pkg/DESCR echo x - lwp/pkg/PLIST sed 's/^X//' >lwp/pkg/PLIST << 'END-of-lwp/pkg/PLIST' Xinclude/lwp/lock.h Xinclude/lwp/lwp.h Xinclude/lwp/preempt.h Xinclude/lwp/timer.h Xlib/liblwp.a Xlib/liblwp.la Xlib/liblwp.so Xlib/liblwp.so.1 X@dirrm include/lwp X@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B X@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R END-of-lwp/pkg/PLIST exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 20:32:40 2000 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 8810937B993 for ; Tue, 11 Apr 2000 20:32:38 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id UAA78937 for ; Tue, 11 Apr 2000 20:32:38 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Tue, 11 Apr 2000 20:32:38 -0700 (PDT) From: Kris Kennaway To: ports@Freebsd.org Subject: Fwd: linux ports (Re: Netscape 6 Linux pre-release, got it going.) 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 11 Apr 2000, Satoshi - Ports Wraith - Asami wrote: > I was thinking about that too. Maybe you can make a few Linux library > ports ("linux_graphics" etc.) so people who want to do something small > don't necessarily have to install the whole enchilada. > > Please talk to me about repository copies when you are ready. I don't think we should be breaking up the current linux_base or linux_dev ports, because those are (supposed to be) default Redhat installs so redhat linux binaries get the environment they are expecting. For additional packages, having monolithic RPM sets seems to me to be bloat - why can't we set up a 1-1 mapping of RPM to package, perhaps by a single "portal" redhat rpm port which grabs an RPM from the redhat site (possibly choosing from a list as an option), munges it to extract the PLIST and installs it? I've suggested a similar "portal" port for the p5-CPAN ports in the past: they're packaged by CPAN with all the information we need to know to build a FreeBSD package, it's just a matter of munging the information in the right way. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" 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 Tue Apr 11 20:45:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pascal.uol.com.br (pascal.uol.com.br [200.230.198.87]) by hub.freebsd.org (Postfix) with ESMTP id 9711237B993 for ; Tue, 11 Apr 2000 20:45:26 -0700 (PDT) (envelope-from lioux-alias-ppp-freebsd-ports=FreeBSD.ORG@uol.com.br) Received: from 200-191-157-178-as.acessonet.com.br (200-191-157-178-as.acessonet.com.br [200.191.157.178]) by pascal.uol.com.br (8.9.1/8.9.1) with ESMTP id AAA05822 for ; Wed, 12 Apr 2000 00:45:08 -0300 (BRT) Received: (qmail 6648 invoked by uid 1001); 12 Apr 2000 03:40:02 -0000 From: lioux@uol.com.br Date: Wed, 12 Apr 2000 00:40:02 -0300 To: Chris Piazza Cc: lioux@uol.com.br, freebsd-ports@FreeBSD.ORG Subject: Re: ports/17348: Update port security/libparanoia from 1.3 to 1.4 Message-ID: <20000412004002.A6545@Fedaykin.here> References: <200004110340.UAA43423@freefall.freebsd.org> <20000410234705.B670@norn.ca.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000410234705.B670@norn.ca.eu.org>; from cpiazza@jaxon.net on Mon, Apr 10, 2000 at 11:47:05PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 10, 2000 at 11:47:05PM -0700, Chris Piazza wrote: > On Mon, Apr 10, 2000 at 08:40:05PM -0700, lioux@uol.com.br wrote: > > The following reply was made to PR ports/17348; it has been noted by GNATS. > > > > # New ports collection makefile for: libparanoia > > +# Version required: 1.4 > > Please don't add these back.. they were removed intentionally. Okay. Not sure way, but I am pretty sure you know better than me. :P -- regards, mferreira To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 20:50:11 2000 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 05AD237BC24 for ; Tue, 11 Apr 2000 20:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA81213; Tue, 11 Apr 2000 20:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pascal.uol.com.br (pascal.uol.com.br [200.230.198.87]) by hub.freebsd.org (Postfix) with ESMTP id 47B0537B79C for ; Tue, 11 Apr 2000 20:45:23 -0700 (PDT) (envelope-from lioux-alias-ppp-FreeBSD-gnats-submit=freebsd.org@uol.com.br) Received: from 200-191-157-178-as.acessonet.com.br (200-191-157-178-as.acessonet.com.br [200.191.157.178]) by pascal.uol.com.br (8.9.1/8.9.1) with ESMTP id AAA05558 for ; Wed, 12 Apr 2000 00:44:59 -0300 (BRT) Received: (qmail 6925 invoked by uid 1001); 12 Apr 2000 03:44:49 -0000 Message-Id: <20000412034449.6924.qmail@Fedaykin.here> Date: 12 Apr 2000 03:44:49 -0000 From: lioux@uol.com.br Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17942: New port devel/rvm needed for coda 5.3.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17942 >Category: ports >Synopsis: New port devel/rvm needed for coda 5.3.6 >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 Apr 11 20:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Latest FBSD 4.0-STABLE >Description: This port is based on the original rvm FBSD port from ftp://ftp.coda.cs.cmu.edu/pub/rvm/ maintained by the coda group. That's why I kept the original maintainer found on the port file. However, I can be the maintainer if that is okay. I wouldn't mind. :) I did updated it to the latest bsd.port.mk specifications, i.e., PORTNAME and PORTVERSION. Besides, I did minimize the port directives and fixed the PLIST. This port depends on devel/lwp submited in PR ports/17941. >How-To-Repeat: Build the port. >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: # # rvm # rvm/Makefile # rvm/files # rvm/files/md5 # rvm/pkg # rvm/pkg/COMMENT # rvm/pkg/DESCR # rvm/pkg/PLIST # echo c - rvm mkdir -p rvm > /dev/null 2>&1 echo x - rvm/Makefile sed 's/^X//' >rvm/Makefile << 'END-of-rvm/Makefile' X# New ports collection makefile for: rvm X# Version required: 1.1 X# Date created: Thu Apr 6 21:30:52 EDT 2000 X# Whom: jaharkes X# $FreeBSD$ X# X XPORTNAME= rvm XPORTVERSION= 1.1 XCATEGORIES= devel XMASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/rvm/src/ X XMAINTAINER= coda@cs.cmu.edu X XLIB_DEPENDS= lwp.1:${PORTSDIR}/devel/lwp X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_LIBTOOL= yes X Xpost-configure: X @${CP} ${PREFIX}/bin/${LIBTOOL} ${WRKSRC} X X.include END-of-rvm/Makefile echo c - rvm/files mkdir -p rvm/files > /dev/null 2>&1 echo x - rvm/files/md5 sed 's/^X//' >rvm/files/md5 << 'END-of-rvm/files/md5' XMD5 (rvm-1.1.tar.gz) = 0e50aa56c2816ee465dafb17169f0b36 END-of-rvm/files/md5 echo c - rvm/pkg mkdir -p rvm/pkg > /dev/null 2>&1 echo x - rvm/pkg/COMMENT sed 's/^X//' >rvm/pkg/COMMENT << 'END-of-rvm/pkg/COMMENT' XRVM persistent VM library END-of-rvm/pkg/COMMENT echo x - rvm/pkg/DESCR sed 's/^X//' >rvm/pkg/DESCR << 'END-of-rvm/pkg/DESCR' XThe RVM persistent VM library. The RVM library is used by the Coda distributed Xfilesystem. END-of-rvm/pkg/DESCR echo x - rvm/pkg/PLIST sed 's/^X//' >rvm/pkg/PLIST << 'END-of-rvm/pkg/PLIST' Xinclude/rvm/rds.h Xinclude/rvm/rvm.h Xinclude/rvm/rvm_segment.h Xinclude/rvm/rvm_statistics.h Xlib/librds.a Xlib/librds.la Xlib/librds.so Xlib/librds.so.1 Xlib/librdslwp.a Xlib/librdslwp.la Xlib/librdslwp.so Xlib/librdslwp.so.1 Xlib/librvm.a Xlib/librvm.la Xlib/librvm.so Xlib/librvm.so.1 Xlib/librvmlwp.a Xlib/librvmlwp.la Xlib/librvmlwp.so Xlib/librvmlwp.so.1 Xlib/libseg.a Xlib/libseg.la Xlib/libseg.so Xlib/libseg.so.1 Xsbin/rdsinit Xsbin/rvmutl X@dirrm include/rvm X@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B X@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R END-of-rvm/pkg/PLIST exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 20:50:13 2000 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 C4D0437BC2A for ; Tue, 11 Apr 2000 20:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA81223; Tue, 11 Apr 2000 20:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pascal.uol.com.br (pascal.uol.com.br [200.230.198.87]) by hub.freebsd.org (Postfix) with ESMTP id DA25037BC4D for ; Tue, 11 Apr 2000 20:45:32 -0700 (PDT) (envelope-from lioux-alias-ppp-FreeBSD-gnats-submit=freebsd.org@uol.com.br) Received: from 200-191-157-178-as.acessonet.com.br (200-191-157-178-as.acessonet.com.br [200.191.157.178]) by pascal.uol.com.br (8.9.1/8.9.1) with ESMTP id AAA05762 for ; Wed, 12 Apr 2000 00:45:06 -0300 (BRT) Received: (qmail 6805 invoked by uid 1001); 12 Apr 2000 03:43:45 -0000 Message-Id: <20000412034345.6804.qmail@Fedaykin.here> Date: 12 Apr 2000 03:43:45 -0000 From: lioux@uol.com.br Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17943: New port devel/rpc2 needed for coda 5.3.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17943 >Category: ports >Synopsis: New port devel/rpc2 needed for coda 5.3.6 >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 Apr 11 20:50:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Latest FBSD 4.0-STABLE >Description: This port is based on the original rpc2 FBSD port from ftp://ftp.coda.cs.cmu.edu/pub/rpc2/ maintained by the coda group. That's why I kept the original maintainer found on the port file. However, I can be the maintainer if that is okay. I wouldn't mind. :) I did updated it to the latest bsd.port.mk specifications, i.e., PORTNAME and PORTVERSION. Besides, I did minimize the port directives and fixed the PLIST. This port depends on devel/lwp submited in PR ports/17941. >How-To-Repeat: Build the port. >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: # # rpc2 # rpc2/Makefile # rpc2/files # rpc2/files/md5 # rpc2/pkg # rpc2/pkg/COMMENT # rpc2/pkg/DESCR # rpc2/pkg/PLIST # echo c - rpc2 mkdir -p rpc2 > /dev/null 2>&1 echo x - rpc2/Makefile sed 's/^X//' >rpc2/Makefile << 'END-of-rpc2/Makefile' X# New ports collection makefile for: rpc2 X# Version required: 1.3 X# Date created: Wed Mar 22 19:06:45 EST 2000 X# Whom: jaharkes X# $FreeBSD$ X# X XPORTNAME= rpc2 XPORTVERSION= 1.3 XCATEGORIES= devel XMASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/rpc2/src/ X XMAINTAINER= coda@cs.cmu.edu X XLIB_DEPENDS= lwp.1:${PORTSDIR}/devel/lwp X XALL_TARGET= all XINSTALL_TARGET= install X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_LIBTOOL= yes X Xpost-configure: X @${CP} ${PREFIX}/bin/${LIBTOOL} ${WRKSRC} X X.include END-of-rpc2/Makefile echo c - rpc2/files mkdir -p rpc2/files > /dev/null 2>&1 echo x - rpc2/files/md5 sed 's/^X//' >rpc2/files/md5 << 'END-of-rpc2/files/md5' XMD5 (rpc2-1.3.tar.gz) = 2781f3c72e331039cad451fda1240ea5 END-of-rpc2/files/md5 echo c - rpc2/pkg mkdir -p rpc2/pkg > /dev/null 2>&1 echo x - rpc2/pkg/COMMENT sed 's/^X//' >rpc2/pkg/COMMENT << 'END-of-rpc2/pkg/COMMENT' XRPC2 library END-of-rpc2/pkg/COMMENT echo x - rpc2/pkg/DESCR sed 's/^X//' >rpc2/pkg/DESCR << 'END-of-rpc2/pkg/DESCR' XThe RPC2 library. The RPC2 library provides interprocess communication for the XCoda distributed filesystem. END-of-rpc2/pkg/DESCR echo x - rpc2/pkg/PLIST sed 's/^X//' >rpc2/pkg/PLIST << 'END-of-rpc2/pkg/PLIST' Xbin/filcon Xbin/rp2gen Xinclude/rpc2/errors.h Xinclude/rpc2/errorsdefs.h Xinclude/rpc2/fail.h Xinclude/rpc2/fcon.h Xinclude/rpc2/multi.h Xinclude/rpc2/rpc2.h Xinclude/rpc2/se.h Xinclude/rpc2/sftp.h Xlib/libfail.a Xlib/libfail.la Xlib/libfail.so Xlib/libfail.so.1 Xlib/librpc2.a Xlib/librpc2.la Xlib/librpc2.so Xlib/librpc2.so.1 Xlib/libse.a Xlib/libse.la Xlib/libse.so Xlib/libse.so.1 X@dirrm include/rpc2 X@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B X@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R END-of-rpc2/pkg/PLIST exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 21: 4:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailgw.cablecom.ne.jp (mailgw.cablecom.ne.jp [202.248.199.37]) by hub.freebsd.org (Postfix) with ESMTP id 0273337BC24 for ; Tue, 11 Apr 2000 21:04:49 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: from srv2.cablecom.ne.jp by mailgw.cablecom.ne.jp (8.9.3/3.7W) id NAA14348; Wed, 12 Apr 2000 13:04:46 +0900 (JST) Received: from localhost by srv2.cablecom.ne.jp (8.9.3/3.7W) id NAA13049; Wed, 12 Apr 2000 13:04:45 +0900 (JST) To: mmuir@es.co.nz Cc: ports@FreeBSD.ORG Subject: Re: netscape 6.00.p1 In-Reply-To: Your message of "Mon, 10 Apr 2000 18:24:00 +0000". <38F21C40.72ED4B8A@es.co.nz> From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Message-Id: <20000412130455Y.sada@bsdclub.org> Date: Wed, 12 Apr 2000 13:04:55 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <38F21C40.72ED4B8A@es.co.nz> mmuir@es.co.nz writes: >> Woops, forgot to note that when patching, only the second patch worked, >> had to do the first one manually.. Use gtk and libjpeg rpm ports instead, please. # Your mail seems doesn't appear on ML, why ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 23:11:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailgw.cablecom.ne.jp (mailgw.cablecom.ne.jp [202.248.199.37]) by hub.freebsd.org (Postfix) with ESMTP id 1663B37B899; Tue, 11 Apr 2000 23:11:33 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: from srv2.cablecom.ne.jp by mailgw.cablecom.ne.jp (8.9.3/3.7W) id PAA21567; Wed, 12 Apr 2000 15:11:32 +0900 (JST) Received: from localhost by srv2.cablecom.ne.jp (8.9.3/3.7W) id PAA04493; Wed, 12 Apr 2000 15:11:31 +0900 (JST) To: kris@FreeBSD.org, asami@FreeBSD.org Cc: ports@Freebsd.org Subject: Re: Fwd: linux ports (Re: Netscape 6 Linux pre-release, got it going.) In-Reply-To: Your message of "Tue, 11 Apr 2000 20:32:38 -0700 (PDT)". From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Message-Id: <20000412151141B.sada@bsdclub.org> Date: Wed, 12 Apr 2000 15:11:41 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article kris@FreeBSD.org writes: >> On 11 Apr 2000, Satoshi - Ports Wraith - Asami wrote: >> > I was thinking about that too. Maybe you can make a few Linux library >> > ports ("linux_graphics" etc.) so people who want to do something small >> > don't necessarily have to install the whole enchilada. >> > >> > Please talk to me about repository copies when you are ready. Where could I read whole above mail from asami-san, which you are following up to ? Very interested. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 11 23:27:15 2000 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 6383537BBE8; Tue, 11 Apr 2000 23:27:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id XAA05271; Tue, 11 Apr 2000 23:27:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Tue, 11 Apr 2000 23:27:13 -0700 (PDT) From: Kris Kennaway To: SADA Kenji Cc: asami@FreeBSD.org, ports@Freebsd.org Subject: Re: Fwd: linux ports (Re: Netscape 6 Linux pre-release, got it going.) In-Reply-To: <20000412151141B.sada@bsdclub.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 12 Apr 2000, SADA Kenji wrote: > Where could I read whole above mail from asami-san, > which you are following up to ? The discussion was over on -current - there were only one or two messages prior to this one. It should be in the archives, if they're working yet. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 0:21:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from maynard.mail.mindspring.net (maynard.mail.mindspring.net [207.69.200.243]) by hub.freebsd.org (Postfix) with ESMTP id 14AA037B97F; Wed, 12 Apr 2000 00:21:52 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-14.ix.netcom.com [209.109.233.14]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id DAA02292; Wed, 12 Apr 2000 03:21:25 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id AAA27292; Wed, 12 Apr 2000 00:21:01 -0700 (PDT) To: Kris Kennaway Cc: ports@FreeBSD.org, marcel@FreeBSD.org Subject: Re: Fwd: linux ports (Re: Netscape 6 Linux pre-release, got it going.) References: From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 12 Apr 2000 00:20:50 -0700 In-Reply-To: Kris Kennaway's message of "Tue, 11 Apr 2000 20:32:38 -0700 (PDT)" Message-ID: Lines: 22 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Kris Kennaway (Don't know if Marcel is on -ports, so CC:d explicitly.) * I don't think we should be breaking up the current linux_base or linux_dev * ports, because those are (supposed to be) default Redhat installs so * redhat linux binaries get the environment they are expecting. I wasn't aware that they are "default" RedHat installations. (Why are there two?) But in any case, if there is a reason why the current sets are designed that way, it's fine for me. * For additional packages, having monolithic RPM sets seems to me to be * bloat - why can't we set up a 1-1 mapping of RPM to package, perhaps by a * single "portal" redhat rpm port which grabs an RPM from the redhat site * (possibly choosing from a list as an option), munges it to extract the * PLIST and installs it? I don't mind, as long as the maintenance isn't too hard and users can install/deinstall those packages just like normal FreeBSD ports. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 2:46:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rccr1.rccr.cremona.it (rccr1.rccr.cremona.it [194.20.53.49]) by hub.freebsd.org (Postfix) with ESMTP id 2227F37B8BB for ; Wed, 12 Apr 2000 02:46:09 -0700 (PDT) (envelope-from mirko.viviani@rccr.cremona.it) Received: from mailman.endymion.com (rccr1.rccr.cremona.it [194.20.53.49] (may be forged)) by rccr1.rccr.cremona.it (8.9.3/8.9.3) with SMTP id LAA23056 for ; Wed, 12 Apr 2000 11:46:07 +0200 Message-Id: <200004120946.LAA23056@rccr1.rccr.cremona.it> To: ports@FreeBSD.org From: mirko.viviani@rccr.cremona.it Subject: wdm problems. Date: Wed, 12 Apr 2000 11:46:07 +0000 X-Mailer: Endymion MailMan Standard Edition v3.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ciao! After 3.4->4.0 upgrade I have plenty of problems... this is another: X11 3.3.6 was compiled on 3.4, wdm and wmaker on 4.0 Other things: 1. I'm unable to login with xdm due to linking problems with /usr/lib/pam_unix.so (missing symbol, freeaddr* I don't exactly remember) 2. If I starts kdm or xdm with ttyv8 the console reports me several (1 every 30 secs) msg with locking problems to xdm-pid. 3. If I start kdm in rc.local the keyboard does not respond. This is started by hand by root, obviously. rey:/usr/home/mirko> uname -a FreeBSD rey.procom2.it 4.0-STABLE FreeBSD 4.0-STABLE #0: Fri Apr 7 01:02:03 CEST 2000 mirko@rey.procom2.it:/mnt/amy/lpub/freebsd/usr/obj/mnt/amy/lpub/freebsd/usr/src/sys/rey i386 rey:/usr/home/mirko> wdm -debug 10 -nodaemon DisplayManager.errorLogFile/DisplayManager.ErrorLogFile value /var/log/xdm-errors.log DisplayManager.daemonMode/DisplayManager.DaemonMode value false DisplayManager.pidFile/DisplayManager.PidFile value /var/run/xdm.pid DisplayManager.lockPidFile/DisplayManager.LockPidFile value true DisplayManager.authDir/DisplayManager.authDir value /usr/X11R6/lib/X11/wdm DisplayManager.autoRescan/DisplayManager.AutoRescan value true DisplayManager.removeDomainname/DisplayManager.RemoveDomainname value true DisplayManager.keyFile/DisplayManager.KeyFile value /usr/X11R6/lib/X11/wdm/xdm-keys DisplayManager.accessFile/DisplayManager.AccessFile value /usr/X11R6/lib/X11/wdm/Xaccess DisplayManager.exportList/DisplayManager.ExportList value DisplayManager.randomFile/DisplayManager.RandomFile value /dev/mem DisplayManager.greeterLib/DisplayManager.GreeterLib value /X11/lib/X11/xdm/libXdmGreet.so DisplayManager.choiceTimeout/DisplayManager.ChoiceTimeout value 15 DisplayManager.sourceAddress/DisplayManager.SourceAddress value false DisplayManager.wdmLogin/DisplayManager.WdmLogin value /usr/X11R6/bin/wdmLogin DisplayManager.wdmReboot/DisplayManager.WdmReboot value /sbin/shutdown -r now DisplayManager.wdmHalt/DisplayManager.WdmHalt value /sbin/shutdown -h now DisplayManager.wdmVerify/DisplayManager.WdmVerify value true DisplayManager.wdmRoot/DisplayManager.WdmRoot value false creating socket 177 Created chooser socket 5 Found new display: :0 (null) local /usr/X11R6/bin/X StartDisplay :0 DisplayManager._0.serverAttempts/DisplayManager._0.ServerAttempts value 1 DisplayManager._0.openDelay/DisplayManager._0.OpenDelay value 15 DisplayManager._0.openRepeat/DisplayManager._0.OpenRepeat value 5 DisplayManager._0.openTimeout/DisplayManager._0.OpenTimeout value 120 DisplayManager._0.startAttempts/DisplayManager._0.StartAttempts value 4 DisplayManager._0.pingInterval/DisplayManager._0.PingInterval value 5 DisplayManager._0.pingTimeout/DisplayManager._0.PingTimeout value 5 DisplayManager._0.terminateServer/DisplayManager._0.TerminateServer value false DisplayManager._0.grabServer/DisplayManager._0.GrabServer value false DisplayManager._0.grabTimeout/DisplayManager._0.GrabTimeout value 3 DisplayManager._0.resetSignal/DisplayManager._0.Signal value 1 DisplayManager._0.termSignal/DisplayManager._0.Signal value 15 DisplayManager._0.resetForAuth/DisplayManager._0.ResetForAuth value false DisplayManager._0.authorize/DisplayManager._0.Authorize value true DisplayManager._0.authComplain/DisplayManager._0.AuthComplain value false DisplayManager._0.authName/DisplayManager._0.AuthName value MIT-MAGIC-COOKIE-1 DisplayManager._0.authFile/DisplayManager._0.AuthFile value DisplayManager._0.wdmWm/DisplayManager._0.WdmWm value wmaker:afterstep:blackbox:ctwm:enlightenment:fvwm:fvwm2:fvwm95:olvwm:qvwm:tvtwm DisplayManager._0.wdmLogo/DisplayManager._0.WdmLogo value /usr/X11R6/lib/X11/wdm/pixmaps/Earth200x130.xpm DisplayManager._0.wdmHelpFile/DisplayManager._0.WdmHelpFile value DisplayManager._0.wdmBg/DisplayManager._0.WdmBg value pixmap:/usr/X11R6/lib/X11/wdm/pixmaps/daemon1-HQ-1280x960.jpg DisplayManager._0.wdmDefaultUser/DisplayManager._0.WdmDefaultUser value DisplayManager._0.wdmDefaultPasswd/DisplayManager._0.WdmDefaultPasswd value DisplayManager._0.wdmAnimations/DisplayManager._0.WdmAnimations value true SetLocalAuthorization :0, auth MIT-MAGIC-COOKIE-1 GenerateAuthorization MIT-MAGIC-COOKIE-1 Got 0x805cde0 (18 MIT-MAGIC-COOKIE-1) 51 46 5f 10 6b 73 58 52 3b 21 46 1c 03 18 3d 0b File: /usr/X11R6/lib/X11/wdm/authdir/authfiles/A:0-mlH631 auth: 80606b0 StartServer for :0 Server Started 632 '/usr/X11R6/bin/X' '-auth' '/usr/X11R6/lib/X11/wdm/authdir/authfiles/A:0-mlH631' display manager paused til SIGUSR1 XFree86 Version 3.3.6 / X Window System DisplayManager._0.resources/DisplayManager._0.Resources value /usr/X11R6/lib/X11/wdm/Xresources (protocol Version 11, revision 0, vendor release 6300) DisplayManager._0.xrdb/DisplayManager._0.Xrdb value /usr/X11R6/bin/xrdb Release Date: January 8 2000 DisplayManager._0.setup/DisplayManager._0.Setup value /usr/X11R6/lib/X11/wdm/Xsetup_0 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (see http://www.XFree86.Org/FAQ) DisplayManager._0.startup/DisplayManager._0.Startup value /usr/X11R6/lib/X11/wdm/GiveConsole Operating System: FreeBSD 3.4-STABLE i386 [ELF] DisplayManager._0.reset/DisplayManager._0.Reset value /usr/X11R6/lib/X11/wdm/TakeConsole Configured drivers: DisplayManager._0.session/DisplayManager._0.Session value /usr/X11R6/lib/X11/wdm/Xsession SVGA: server for SVGA graphics adaptors (Patchlevel 1): DisplayManager._0.userPath/DisplayManager._0.Path value /bin:/usr/bin:/sbin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin NV1DisplayManager._0.systemPath/DisplayManager._0.Path value /bin:/usr/bin:/sbin:/usr/sbin:/usr/X11R6/bin ,DisplayManager._0.systemShell/DisplayManager._0.Shell value /bin/sh DisplayManager._0.failsafeClient/DisplayManager._0.FailsafeClient value /usr/X11R6/bin/xterm STG2000DisplayManager._0.userAuthDir/DisplayManager._0.UserAuthDir value /tmp ,DisplayManager._0.chooser/DisplayManager._0.Chooser value /usr/X11R6/lib/X11/wdm/chooser Before XOpenDisplay(:0) RIVA 128, RIVA TNT, RIVA TNT2, RIVA ULTRA TNT2, RIVA VANTA, RIVA ULTRA VANTA, RIVA INTEGRATED, GeForce 256, GeForce DDR, Quadro, ET4000, ET4000W32, ET4000W32i, ET4000W32i_rev_b, ET4000W32i_rev_c, ET4000W32p, ET4000W32p_rev_a, ET4000W32p_rev_b, ET4000W32p_rev_c, ET4000W32p_rev_d, ET6000, ET6100, et3000, pvga1, wd90c00, wd90c10, wd90c30, wd90c24, wd90c31, wd90c33, gvga, r128, ati, sis86c201, sis86c202, sis86c205, sis86c215, sis86c225, sis5597, sis5598, sis6326, sis530, sis620, sis300, sis630, sis540, tvga8200lx, tvga8800cs, tvga8900b, tvga8900c, tvga8900cl, tvga8900d, tvga9000, tvga9000i, tvga9100b, tvga9200cxr, tgui9400cxi, tgui9420, tgui9420dgi, tgui9430dgi, tgui9440agi, cyber9320, tgui9660, tgui9680, tgui9682, tgui9685, cyber9382, cyber9385, cyber9388, cyber9397, cyber9520, cyber9525, 3dimage975, 3dimage985, cyber9397dvd, blade3d, cyberblade, clgd5420, clgd5422, clgd5424, clgd5426, clgd5428, clgd5429, clgd5430, clgd5434, clgd5436, clgd5446, clgd5480, clgd5462, clgd5464, clgd5465, clgd6205, clgd6215, clgd6225, clgd6235, clgd7541, clgd7542, clgd7543, clgd7548, clgd7555, clgd7556, ncr77c22, ncr77c22e, cpq_avga, mga2064w, mga1064sg, mga2164w, mga2164w AGP, mgag200, mgag100, mgag400, oti067, oti077, oti087, oti037c, al2101, ali2228, ali2301, ali2302, ali2308, ali2401, cl6410, cl6412, cl6420, cl6440, video7, ark1000vl, ark1000pv, ark2000pv, ark2000mt, mx, realtek, AP6422, AT24, AT3D, s3_savage, s3_virge, s3_svga, NM2070, NM2090, NM2093, NM2097, NM2160, NM2200, ct65520, ct65525, ct65530, ct65535, ct65540, ct65545, ct65546, ct65548, ct65550, ct65554, ct65555, ct68554, ct69000, ct64200, ct64300, mediagx, V1000, V2100, V2200, p9100, spc8110, i740, i740_pci, Voodoo Banshee, Voodoo3, smi, generic Using syscons driver with X support (version 2.0) (using VT number 9) XF86Config: /etc/XF86Config (**) stands for supplied, (--) stands for probed/default values (**) XKB: keycodes: "xfree86" (**) XKB: types: "default" (**) XKB: compat: "default" (**) XKB: symbols: "en_US(pc102)+it" (**) XKB: geometry: "pc" (**) Mouse: type: PS/2, device: /dev/psm0, buttons: 3 (**) SVGA: Graphics device ID: "MGA G200" (**) SVGA: Monitor ID: "EIZO" (--) SVGA: Mode "1600x1200" needs hsync freq of 93.75 kHz. Deleted. (--) SVGA: Mode "1600x1200" needs hsync freq of 105.77 kHz. Deleted. (--) SVGA: Mode "1280x1024" needs hsync freq of 107.16 kHz. Deleted. (--) SVGA: Mode "1800X1440" needs hsync freq of 96.15 kHz. Deleted. (--) SVGA: Mode "1800X1440" needs hsync freq of 104.52 kHz. Deleted. (**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" (--) SVGA: PCI: Matrox MGA G200 AGP rev 1, Memory @ 0xe3000000, 0xe2000000 (--) SVGA: Linear framebuffer at 0xE3000000 (--) SVGA: MMIO registers at 0xE2000000 (--) SVGA: Video BIOS info block at 0x000c7a60 (--) SVGA: Found and verified enhanced Video BIOS info block (!!) SVGA: Unable to probe for video memory size. Assuming 8 Meg. Please specify the correct amount in the XF86Config file. See the file README.MGA for details. (--) SVGA: detected an SGRAM card (--) SVGA: chipset: mgag200 (--) SVGA: videoram: 8192k (**) SVGA: Option "dac_8_bit" (**) SVGA: Using 8 bits per color component (**) SVGA: Using 8 bpp, Depth 8, Color weight: 888 (--) SVGA: Maximum allowed dot-clock: 250.000 MHz (**) SVGA: Mode "1280x1024": mode clock = 157.500 (**) SVGA: Mode "1024x768": mode clock = 115.500 (**) SVGA: Mode "800x600": mode clock = 69.650 (**) SVGA: Mode "640x480": mode clock = 45.800 (--) SVGA: Virtual resolution set to 1280x1024 (--) SVGA: SpeedUp code selection modified because virtualX != 1024 (--) SVGA: Using hardware cursor (--) SVGA: PLL reference freq: 27.050 MHz (--) SVGA: Read OPTION 0x4007cd21 (--) SVGA: Using XAA (XFree86 Acceleration Architecture) (--) SVGA: XAA: Solid filled rectangles (--) SVGA: XAA: Screen-to-screen copy (--) SVGA: XAA: 8x8 color expand pattern fill (--) SVGA: XAA: CPU to screen color expansion (TE/NonTE imagetext, TE/NonTE polytext) (--) SVGA: XAA: Using 10 128x128 areas for pixmap caching (--) SVGA: XAA: Caching tiles and stipples (--) SVGA: XAA: General lines and segments (--) SVGA: XAA: Dashed lines and segments After XOpenDisplay(:0) ManageSession :0 Loading resource file: /usr/X11R6/lib/X11/wdm/Xresources source /usr/X11R6/lib/X11/wdm/Xsetup_0 Greet display=:0 assertion "width>0 && height>0" failed: file "raster.c", line 46 xdm error (pid 631): Greet: guarenteed_read error, UNMANAGE DISPLAY xdm error (pid 631): Greet: pipe read error with /usr/X11R6/bin/wdmLogin wdm: wdm pipe read error with program /usr/X11R6/bin/wdmLogin, wdm terminating Display :0 exiting with status 3 rey:/usr/home/mirko> X connection to :0.0 broken (explicit kill or server shutdown). rey:/usr/home/mirko> gdb wdmLogin GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"...(no debugging symbols found)... (gdb) r Starting program: /usr/X11R6/bin/wdmLogin (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... assertion "width>0 && height>0" failed: file "raster.c", line 46 (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... Program received signal SIGABRT, Aborted. 0x282b45bc in kill () from /usr/lib/libc.so.4 (gdb) where #0 0x282b45bc in kill () from /usr/lib/libc.so.4 #1 0x282edb21 in abort () from /usr/lib/libc.so.4 #2 0x282c782b in __assert () from /usr/lib/libc.so.4 #3 0x280b1879 in RCreateImage () from /usr/X11R6/lib/libwraster.so.3 #4 0x280b9a34 in RScaleImage () from /usr/X11R6/lib/libwraster.so.3 #5 0x804c025 in XMapRaised () #6 0x804c9d7 in XMapRaised () #7 0x804d319 in XMapRaised () #8 0x804b26f in XMapRaised () (gdb) k Kill the program being debugged? (y or n) y (gdb) q -rw-r--r-- 1 root wheel 101272 Apr 7 18:48 libwraster.a lrwxr-xr-x 1 root wheel 15 Apr 7 18:48 libwraster.so@ -> libwraster.so.3 -rwxr-xr-x 1 root wheel 85421 Apr 7 18:48 libwraster.so.3* rey:/usr/home/mirko> list /var/db/pkg/ [...] drwxr-xr-x 2 root wheel 512 Apr 10 18:00 wdm-1.20/ drwxr-xr-x 2 root wheel 512 Apr 10 18:00 windowmaker-0.62.1/ -- Bye, Mirko (NeXTmail, MIME) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 2:50:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id 03F7E37BB5E; Wed, 12 Apr 2000 02:50:42 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([192.168.192.2]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id JAA11406; Wed, 12 Apr 2000 09:50:06 GMT Message-ID: <38F446C7.192EF4E5@algroup.co.uk> Date: Wed, 12 Apr 2000 10:49:59 +0100 From: Adam Laurie X-Mailer: Mozilla 4.7 [en-gb] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: "Matthew N. Dodd" Cc: Ben Laurie , Dirk Froemberg , "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.ORG, hetzels@westbend.net, rse@engelschall.com, ache@FreeBSD.ORG, winter@FreeBSD.ORG, ports@FreeBSD.ORG, asami@FreeBSD.ORG, Adam Laurie Subject: Re: apache13-php4 References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Matthew N. Dodd" wrote: > > On Tue, 11 Apr 2000, Ben Laurie wrote: > > Hmm. And what about the one where Apache-SSL replaces both > > apache13-modssl and apache13-ssl? Why do you consider Apache-SSL to > > need an exception, but not mod_ssl? I trust you are aware that both > > need Apache to be patched before they work? > > The difference being that we can always patch the Apache13 port so that it > will work with mod_ssl if the user decides to compile it in the future and > Apache-SSL doesn't work as an APXS DSO module AFAIK. > > Right? I will leave Ben to answer this - however, this still doesn't explain the fundamental "requirement" to have apache-ssl only exist if it can be unified with your "new scheme". There are many ports that provide the same functionality with different software. apache-ssl and mod_ssl are two different products. Or are you saying that the ports tree is going to be trawled, and all ports that (in your opinion) duplicate functionality are to be deleted? Shock horror! I've just noticed there's a duplicate operating system! Linux does The Same Thing(tm) as FreeBSD - we'd better delete one of them! Doh! cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 2:58: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rccr1.rccr.cremona.it (rccr1.rccr.cremona.it [194.20.53.49]) by hub.freebsd.org (Postfix) with ESMTP id 9FEC937B83F for ; Wed, 12 Apr 2000 02:57:38 -0700 (PDT) (envelope-from mirko.viviani@rccr.cremona.it) Received: from mailman.endymion.com (rccr1.rccr.cremona.it [194.20.53.49] (may be forged)) by rccr1.rccr.cremona.it (8.9.3/8.9.3) with SMTP id LAA23429 for ; Wed, 12 Apr 2000 11:57:33 +0200 Message-Id: <200004120957.LAA23429@rccr1.rccr.cremona.it> To: ports@freebsd.org From: mirko.viviani@rccr.cremona.it Subject: Re: wdm problems. Date: Wed, 12 Apr 2000 11:57:33 +0000 X-Mailer: Endymion MailMan Standard Edition v3.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ciao! [...] > 2. If I starts kdm or xdm with ttyv8 the console reports me several (1 every > 30 secs) msg with locking problems to xdm-pid. [...] Sorry, this one was a my fault. -- Bye, Mirko (NeXTmail, MIME) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 3:28:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id E133F37B81B; Wed, 12 Apr 2000 03:28:31 -0700 (PDT) (envelope-from ben@algroup.co.uk) Received: from freeby.ben.algroup.co.uk (freeby.ben.algroup.co.uk [193.133.15.6]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id KAA11514; Wed, 12 Apr 2000 10:28:30 GMT Received: from algroup.co.uk (naughty.ben.algroup.co.uk [193.133.15.107]) by freeby.ben.algroup.co.uk (8.6.12/8.6.12) with ESMTP id LAA15181; Wed, 12 Apr 2000 11:28:11 +0100 Message-ID: <38F44FB1.B50AE334@algroup.co.uk> Date: Wed, 12 Apr 2000 11:28:01 +0100 From: Ben Laurie Organization: A.L. Group plc X-Mailer: Mozilla 4.7 [en] (WinNT; I) MIME-Version: 1.0 To: "Matthew N. Dodd" Cc: Dirk Froemberg , Adam Laurie , "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.ORG, hetzels@westbend.net, ache@FreeBSD.ORG, winter@FreeBSD.ORG, ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: apache13-php4 References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Matthew N. Dodd" wrote: > > On Tue, 11 Apr 2000, Ben Laurie wrote: > > Hmm. And what about the one where Apache-SSL replaces both > > apache13-modssl and apache13-ssl? Why do you consider Apache-SSL to > > need an exception, but not mod_ssl? I trust you are aware that both > > need Apache to be patched before they work? > > The difference being that we can always patch the Apache13 port so that it > will work with mod_ssl if the user decides to compile it in the future and > Apache-SSL doesn't work as an APXS DSO module AFAIK. > > Right? Not as of Apache-SSL 1.40: DSO support has been added. Cheers, Ben. -- http://www.apache-ssl.org/ben.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 3:46:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mindseal.comm2000.it (mindseal.comm2000.it [194.133.0.6]) by hub.freebsd.org (Postfix) with ESMTP id 42EA737B81B for ; Wed, 12 Apr 2000 03:46:47 -0700 (PDT) (envelope-from agx@linux.it) Received: from linux.it ([212.97.39.98]) by mindseal.comm2000.it (8.9.3/MFAGMM-19990726) with ESMTP id MAA23346; Wed, 12 Apr 2000 12:46:36 +0200 (MET DST) X-SMTP-Peer: [212.97.39.98] Message-ID: <38F45476.1ADC6C01@linux.it> Date: Wed, 12 Apr 2000 12:48:22 +0200 From: agx X-Mailer: Mozilla 4.72 [en] (WinNT; I) X-Accept-Language: it,en,es MIME-Version: 1.0 To: greg@greg.rim.or.jp Cc: ports@FreeBSD.org Subject: FreeBSD Port: apache-jserv-1.1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! I need to install apache-jserv with php compiled as module with support for MySQL database :-) I will appreciate if you can suggest me the right order in wich compile each package. This is 'uname -a': FreeBSD testbsd.linux.it 3.3-RELEASE FreeBSD 3.3-RELEASE #0: Thu Sep 16 23:40:35 GMT 1999 jkh@highwing.cdrom.com:/usr/src/sys/compile/GENERIC i386 Thank you very much, agx@linux.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 4:50: 8 2000 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 08EA637BBFA for ; Wed, 12 Apr 2000 04:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA53745; Wed, 12 Apr 2000 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 BB3D137BCAE for ; Wed, 12 Apr 2000 04:44:02 -0700 (PDT) (envelope-from takamune@mariners.mei.co.jp) Received: by bulls.mei.co.jp (8.9.3/3.7W) with ESMTP id UAA13396 for ; Wed, 12 Apr 2000 20:43:59 +0900 (JST) Received: by mariners.mei.co.jp (8.9.1/3.7W) with ESMTP id UAA21954 for ; Wed, 12 Apr 2000 20:44:01 +0900 (JST) Received: by dream.vrl.mei.co.jp (8.9.3/3.7W-11/29/99) id UAA21549; Wed, 12 Apr 2000 20:43:59 +0900 (JST) Message-Id: <200004121143.UAA21549@dream.vrl.mei.co.jp> Date: Wed, 12 Apr 2000 20:43:59 +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/17946: XFree86-4.0 with /usr/X11R6 containing a symbolic link Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17946 >Category: ports >Synopsis: XFree86-4.0 with /usr/X11R6 containing a symbolic link >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 12 04:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kazu TAKAMUNE >Release: FreeBSD 4.0-STABLE i386 >Organization: Matsushita Electric Industrial Co., Ltd. >Environment: FreeBSD 4.0-STABLE(Wed Apr 12 14:54:00 JST 2000) ports/Mk/bsd.port.mk,v 1.335 2000/04/11 21:38:02 >Description: I can't install XFree86-4.0 when /usr/X11R6 contains a symbolic link. Makefiles created by imake will have `install' target(s) as follows: [${WRKDIR}/xc/programs/bitmap/Makefile] USRLIBDIR = /usr/X11R6/lib LIBDIR = $(USRLIBDIR)/X11 install: if [ -d $(DESTDIR)$(LIBDIR)/. ]; then \ RELPATH=`echo $(LIBDIR)/. | \ sed -e 's:^.::' -e 's:[^/.][^/]*:..:'g`; \ cd $(DESTDIR)$(LIBDIR)/.; \ if [ -d app-defaults -a ! -h app-defaults ]; then \ (cd app-defaults; tar cf - . | \ (cd $(DESTDIR)$(CONFDIR)/app-defaults; \ tar xf -; exit 0); exit 0); \ fi; \ $(RM) -r app-defaults; \ $(LN) $${RELPATH}$(CONFDIR)/app-defaults .; \ Then an invalid symlink /usr/X11R6/lib/X11/app-defaults -> ../../../../etc/X11/app-defaults will created. >How-To-Repeat: # ls -l /usr/X11R6 lrwxr-xr-x 1 root wheel 17 Apr 12 13:37 /usr/X11R6@ -> /util/ports/X11R6 # cd /usr/ports/x11/XFree86-4 # make install (snip) Full build of Release 6.4 of the X Window System complete. ===> Installing for XFree86-4.0 /bin/mkdir -p /usr/X11R6 make -f xmakefile install installing in ./include... (snip) installing in ./programs... installing in programs/appres... /usr/bin/install -c -s appres /usr/X11R6/bin/appres install in programs/appres done installing in programs/bdftopcf... /usr/bin/install -c -s bdftopcf /usr/X11R6/bin/bdftopcf install in programs/bdftopcf done installing in programs/bitmap... /usr/bin/install -c -s bitmap /usr/X11R6/bin/bitmap + mkdir -p /etc/X11/app-defaults + mkdir -p /usr/X11R6/lib/X11/app-defaults mkdir: /usr/X11R6/lib/X11/app-defaults: File exists *** Error code 1 Stop in /usr/ports/x11/XFree86-4/work/xc/programs/bitmap. *** Error code 1 Stop in /usr/ports/x11/XFree86-4/work/xc/programs. *** Error code 1 Stop in /usr/ports/x11/XFree86-4/work/xc. *** Error code 1 Stop in /usr/ports/x11/XFree86-4/work/xc. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. >Fix: Please add a patch as x11/XFree86-4/patches/patch-h. --- config/cf/Imake.rules.orig Wed Mar 8 00:54:17 2000 +++ config/cf/Imake.rules Wed Apr 12 18:00:00 2000 @@ -1437,7 +1437,7 @@ MakeDir(Concat($(DESTDIR),npath/mdir)) @@\ @MakeFlagsToShellFlags(i,set +e); \ @@\ if [ -d Concat($(DESTDIR),opath/cdir) ]; then \ @@\ - RELPATH=`echo opath/cdir | \ @@\ + RELPATH=`cd opath/cdir; pwd | \ @@\ sed -e 's:^.::' -e 's:[^/.][^/]*:..:'g`; \ @@\ cd Concat($(DESTDIR),opath/cdir); \ @@\ if [ -d rdir -a ! -h rdir ]; then \ @@\ @@ -1484,7 +1484,7 @@ MakeDir(Concat($(DESTDIR),npath)) @@\ @MakeFlagsToShellFlags(i,set +e); \ @@\ if [ -d Concat($(DESTDIR),opath) ]; then \ @@\ - RELPATH=`echo opath | \ @@\ + RELPATH=`cd opath; pwd | \ @@\ sed -e 's:^.::' -e 's:[^/.][^/]*:..:'g`; \ @@\ cd Concat($(DESTDIR),opath); \ @@\ if [ -f lfile -a ! -h lfile ]; then \ @@\ >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 Apr 12 5: 4:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailhost.tue.nl (mailhost.tue.nl [131.155.2.5]) by hub.freebsd.org (Postfix) with ESMTP id 9A5AE37B89A for ; Wed, 12 Apr 2000 05:04:40 -0700 (PDT) (envelope-from marcov@toad.stack.nl) Received: from hermes.tue.nl [131.155.2.46] by mailhost.tue.nl (8.9.3) for id OAA00209 (ESMTP); Wed, 12 Apr 2000 14:04:38 +0200 (MDT) Received: from deathstar (n10.dial.tue.nl [131.155.209.9]) by hermes.tue.nl (Postfix) with ESMTP id 242472E802 for ; Wed, 12 Apr 2000 14:04:37 +0200 (CEST) From: "Marco van de Voort" To: ports@freebsd.org Date: Wed, 12 Apr 2000 14:03:59 +0100 Subject: ported application X-mailer: Pegasus Mail for Win32 (v3.12b) Message-Id: <20000412120437.242472E802@hermes.tue.nl> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I ported an application, and it is starting to work on FreeBSD, and I now joined ports to create a port if that is desirable. The app is the FreePascal compiler (www.freepascal.org), which is written in Pascal and compiled by itself, and doesn't basically use any C source (including header files and libc) This also means that relative small changes in the FreeBSD architecture don't affect the (core) binaries (it is statically linked and bin works on 3.x and 4) People in the freebsd-hackers told me that such (non gcc compiled or compiled by gcc descendants) projects already exist? Can somebody give me some examples where I can look at? Also the project itself is fragmented and quite complex. (we use a binary installer on most platforms to sort it out) 1 The core (the compiler and corelibs itself) are dependant on nothing except FreeBSD version (read ELF and syscalls like in 3.x/4.x) 1b some parts not needed for bootstrapping need libc. (IPC 2 The next layer (basic, but not needed to bootstrap) can use libc, and even ncurses. The TUI IDE, which is in development, uses these. The IDE also uses a large (4-10 MB depending on debug info) libgdb.a. (for the internal debugger), which is a modified (lib)gdb 4.18 3 A classes library. Uses zlib (but can revert to an internal, pascal zlib if not present). 4 The next layer is the rest. Interface stuff like QT, GTK, xlib, MESA based FORMS, OPENGL,IBASE,PostGreSQL, MySQL, and native GUI widget sets on top of them. Separately are also docs in pdf TeX. (PDF/HTML precompiled available) How does one implement such port? A single port entry would be quite large (5-9 MB (depends on inclusion of non BSD stuff for crosscompiling, and increasing daily ). Several ports hard to maintain. Free Pascal is also going through rather fast development, and maybe two ports could be made (last release and current ( CVS source snapshot in zip files are generated daily, and are simply compiled by the last release compiler) Marco van de Voort (MarcoV@Stack.nl) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 5:10: 8 2000 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 ED3D337B89A for ; Wed, 12 Apr 2000 05:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA55951; Wed, 12 Apr 2000 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from edelfelt.albert.hit.fi (edelfelt.albert.hit.fi [195.148.162.243]) by hub.freebsd.org (Postfix) with ESMTP id 6249037B7A9 for ; Wed, 12 Apr 2000 05:09:39 -0700 (PDT) (envelope-from ejk@edelfelt.albert.hit.fi) Received: (from ejk@localhost) by edelfelt.albert.hit.fi (8.9.3/8.9.3) id PAA93410; Wed, 12 Apr 2000 15:09:36 +0300 (EEST) (envelope-from ejk) Message-Id: <200004121209.PAA93410@edelfelt.albert.hit.fi> Date: Wed, 12 Apr 2000 15:09:36 +0300 (EEST) From: ejk@iki.fi Reply-To: ejk@iki.fi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17947: ssh port doesn't complete install phase Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17947 >Category: ports >Synopsis: ssh port doesn't complete install phase >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 12 05:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Esa Karkkainen >Release: FreeBSD 3.3-STABLE i386 >Organization: >Environment: All >Description: Missing ";" in post-install section of ports/security/ssh/Makefile and binary garbage is added to end of ${PREFIX}/etc/rc.d/sshd.sh file. >How-To-Repeat: rm -f /usr/local/etc/rc.d/sshd.sh ; cd /usr/ports/security/ssh ; make clean && make all && make install >Fix: --- Makefile.orig Wed Apr 12 15:01:49 2000 +++ Makefile Wed Apr 12 15:02:23 2000 @@ -109,7 +109,7 @@ @if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \ ${ECHO} "Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \ ${SED} -e 's+!!PREFIX!!+${PREFIX}+g' ${FILESDIR}/sshd.sh \ - > ${PREFIX}/etc/rc.d/sshd.sh \ + > ${PREFIX}/etc/rc.d/sshd.sh; \ ${CHMOD} 751 ${PREFIX}/etc/rc.d/sshd.sh; \ 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 Wed Apr 12 5:30: 5 2000 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 6250B37B8D4 for ; Wed, 12 Apr 2000 05:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA58125; Wed, 12 Apr 2000 05:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id A843A37B869 for ; Wed, 12 Apr 2000 05:24:23 -0700 (PDT) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e3CCOHF07674; Wed, 12 Apr 2000 08:24:17 -0400 (EDT) Message-Id: Date: Wed, 12 Apr 2000 08:24:17 -0400 (EDT) From: Trevor Johnson To: FreeBSD-gnats-submit@freebsd.org Cc: KATO Tsuguru Subject: ports/17948: update port: x11-wm/sapphire to 0.14.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17948 >Category: ports >Synopsis: update port: x11-wm/sapphire to 0.14.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 Apr 12 05:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.0-CURRENT i386 >Organization: myself >Environment: tested on 4.0-20000214-CURRENT i386; partially tested on 5.0-CURRENT i386 and on 4.0-RELEASE >Description: - update to latest sapphire - install most themes from sapphire Web site - PORTNAME/PORTVERSION conformance - all patches in one file, to save inodes - new pkg/MESSAGE Thanks to Kato Tsuguru for doing much of the work on this update. >How-To-Repeat: N/A >Fix: http://jpj.net/~trevor/freebsd/ports/sapphire.shar MD5 (sapphire.shar) = 61a9133ef02e405e9dc173f87cac0a15 >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 Apr 12 5:30:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id 0394C37BBFA; Wed, 12 Apr 2000 05:30:05 -0700 (PDT) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id OAA06391; Wed, 12 Apr 2000 14:29:21 +0200 (CEST) (envelope-from ibex) Date: Wed, 12 Apr 2000 14:29:21 +0200 From: Dirk Froemberg To: Ben Laurie Cc: "Matthew N. Dodd" , Adam Laurie , "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.ORG, hetzels@westbend.net, ache@FreeBSD.ORG, winter@FreeBSD.ORG, ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: apache13-php4 Message-ID: <20000412142920.A5417@physik.TU-Berlin.DE> References: <38F44FB1.B50AE334@algroup.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <38F44FB1.B50AE334@algroup.co.uk>; from ben@algroup.co.uk on Wed, Apr 12, 2000 at 11:28:01AM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Ben! On Wed, Apr 12, 2000 at 11:28:01AM +0100, Ben Laurie wrote: > "Matthew N. Dodd" wrote: > > > > On Tue, 11 Apr 2000, Ben Laurie wrote: > > > Hmm. And what about the one where Apache-SSL replaces both > > > apache13-modssl and apache13-ssl? Why do you consider Apache-SSL to > > > need an exception, but not mod_ssl? I trust you are aware that both > > > need Apache to be patched before they work? > > > > The difference being that we can always patch the Apache13 port so that it > > will work with mod_ssl if the user decides to compile it in the future and > > Apache-SSL doesn't work as an APXS DSO module AFAIK. > > > > Right? > > Not as of Apache-SSL 1.40: DSO support has been added. Ah, that sounds good... So it would be possible to create a "mod_apache-ssl" (the name is just an example) that is configured via apxs similar to the other mod_* ports, i. e. depend on apache13? Would it conflict with mod_ssl or could "mod_apache-ssl" and mod_ssl be installed both? If so apache13-ssl could be replaced by "mod_apache-ssl" and thus fit into the new apache ports scheme. Regards Dirk P. S. Is Apache-SSL 1.40 available somewhere? I wasn't able to find it on the web-page. -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 5:39:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id 1413837B869; Wed, 12 Apr 2000 05:39:10 -0700 (PDT) (envelope-from ben@algroup.co.uk) Received: from freeby.ben.algroup.co.uk (freeby.ben.algroup.co.uk [193.133.15.6]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id MAA12087; Wed, 12 Apr 2000 12:39:08 GMT Received: from algroup.co.uk (naughty.ben.algroup.co.uk [193.133.15.107]) by freeby.ben.algroup.co.uk (8.6.12/8.6.12) with ESMTP id NAA16024; Wed, 12 Apr 2000 13:39:22 +0100 Message-ID: <38F46E6B.2AC09839@algroup.co.uk> Date: Wed, 12 Apr 2000 13:39:07 +0100 From: Ben Laurie Organization: A.L. Group plc X-Mailer: Mozilla 4.7 [en] (WinNT; I) MIME-Version: 1.0 To: Dirk Froemberg Cc: "Matthew N. Dodd" , Adam Laurie , "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.ORG, hetzels@westbend.net, ache@FreeBSD.ORG, ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: apache13-php4 References: <38F44FB1.B50AE334@algroup.co.uk> <20000412142920.A5417@physik.TU-Berlin.DE> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dirk Froemberg wrote: > > Hi Ben! > > On Wed, Apr 12, 2000 at 11:28:01AM +0100, Ben Laurie wrote: > > "Matthew N. Dodd" wrote: > > > > > > On Tue, 11 Apr 2000, Ben Laurie wrote: > > > > Hmm. And what about the one where Apache-SSL replaces both > > > > apache13-modssl and apache13-ssl? Why do you consider Apache-SSL to > > > > need an exception, but not mod_ssl? I trust you are aware that both > > > > need Apache to be patched before they work? > > > > > > The difference being that we can always patch the Apache13 port so that it > > > will work with mod_ssl if the user decides to compile it in the future and > > > Apache-SSL doesn't work as an APXS DSO module AFAIK. > > > > > > Right? > > > > Not as of Apache-SSL 1.40: DSO support has been added. > > Ah, that sounds good... > > So it would be possible to create a "mod_apache-ssl" (the name is just > an example) that is configured via apxs similar to the other mod_* > ports, i. e. depend on apache13? Would it conflict with mod_ssl or > could "mod_apache-ssl" and mod_ssl be installed both? I'm not familiar with apxs, I'm afraid (die-hard old-school Apache programmer, me) - can you give me an example of what you mean by this? i.e. how would I test that it works? Since both Apache-SSL and mod_ssl have to patch Apache, I don't see how they can possibly not conflict, I'm afraid. I've fixed this regrettable situation in Apache 2.0, btw. > If so apache13-ssl could be replaced by "mod_apache-ssl" and thus > fit into the new apache ports scheme. > > Regards Dirk > > P. S. Is Apache-SSL 1.40 available somewhere? I wasn't able to find > it on the web-page. Its being tested prior to release. I can send you a pre-release version if you want (for your use only, so I don't have to bump the version number if I change it before release). Cheers, Ben. -- http://www.apache-ssl.org/ben.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 6:20: 7 2000 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 3A43437B626 for ; Wed, 12 Apr 2000 06:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA63870; Wed, 12 Apr 2000 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nothing-going-on.demon.co.uk (nothing-going-on.demon.co.uk [193.237.89.66]) by hub.freebsd.org (Postfix) with ESMTP id 4731D37B62A for ; Wed, 12 Apr 2000 06:18:12 -0700 (PDT) (envelope-from nik@nothing-going-on.demon.co.uk) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.9.3/8.9.3) id MAA01485; Wed, 12 Apr 2000 12:10:14 +0100 (BST) (envelope-from nik) Message-Id: <200004121110.MAA01485@nothing-going-on.demon.co.uk> Date: Wed, 12 Apr 2000 12:10:14 +0100 (BST) From: nik@freebsd.org Reply-To: nik@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17949: upsmon.sh is too chatty on startup Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17949 >Category: ports >Synopsis: upsmon.sh is too chatty on startup >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 Apr 12 06:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Nik Clayton >Release: FreeBSD 3.4-STABLE i386 >Organization: N/A >Environment: Ports tree, supped a few hours ago. >Description: The upsmon.sh installed by the sysutils/upsmon port is too chatty at startup. Specifically, upsmond prints some output about it's configuration, which disturbs the nice, regular output at system startup. >How-To-Repeat: # sh /usr/local/etc/rc.d/upsmon.sh PortName set to: /dev/cuaa0 upsmond# Ideally, only the " upsmond" should print. >Fix: Apply this patch to files/upsmond.sh --- upsmon.sh.old Wed Apr 12 12:03:45 2000 +++ upsmon.sh Wed Apr 12 12:04:10 2000 @@ -3,5 +3,5 @@ # see !!PREFIX!!/share/doc/upsmon/INSTALL for command line option details if [ -x !!PREFIX!!/sbin/upsmond ]; then - !!PREFIX!!/sbin/upsmond -p /dev/cuaa0 && echo -n ' upsmond' + !!PREFIX!!/sbin/upsmond -p /dev/cuaa0 2>&1 > /dev/null && echo -n ' upsmond' fi If no one complains, I'll commit it myself (post ports freeze) >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 Apr 12 6:38: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from c000.sfo.cp.net (c000-h019.c000.sfo.cp.net [209.228.14.95]) by hub.freebsd.org (Postfix) with SMTP id 3362037B6D7 for ; Wed, 12 Apr 2000 06:38:07 -0700 (PDT) (envelope-from matt@boda.virtualave.net) Received: (cpmta 28334 invoked from network); 12 Apr 2000 06:38:05 -0700 Received: from unknown (HELO UCUBE078) (206.103.60.132) by smtp.worldspy.net with SMTP; 12 Apr 2000 06:38:05 -0700 X-Sent: 12 Apr 2000 13:38:05 GMT Message-ID: <000801bfa484$90508e60$843c67ce@800support.com> From: "Matt M." To: Subject: lynx build issue Date: Wed, 12 Apr 2000 06:39:42 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just wondering when this will be fixed, and what's causing it. This has been an issue for a few days, even after cvsuping ports a few times. When i try to build, i get: ===> lynx-2.8.2rel.1 is forbidden: Riddled with buffer overflows exploitable by a malicious server to execute code as the local user.. Same thing happens on all 3 lynx ports. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 7:49:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [63.67.141.99]) by hub.freebsd.org (Postfix) with ESMTP id EEB5B37BAC7; Wed, 12 Apr 2000 07:48:00 -0700 (PDT) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.9.3/8.8.7) with ESMTP id KAA13706; Wed, 12 Apr 2000 10:45:20 -0400 (EDT) Date: Wed, 12 Apr 2000 10:45:20 -0400 (EDT) From: "Matthew N. Dodd" To: Dirk Froemberg Cc: Ben Laurie , Adam Laurie , "David O'Brien" , greg@greg.rim.or.jp, sumikawa@FreeBSD.ORG, hetzels@westbend.net, ache@FreeBSD.ORG, winter@FreeBSD.ORG, ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: apache13-php4 In-Reply-To: <20000412142920.A5417@physik.TU-Berlin.DE> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 12 Apr 2000, Dirk Froemberg wrote: > On Wed, Apr 12, 2000 at 11:28:01AM +0100, Ben Laurie wrote: > > Not as of Apache-SSL 1.40: DSO support has been added. > > Ah, that sounds good... > > So it would be possible to create a "mod_apache-ssl" (the name is just > an example) that is configured via apxs similar to the other mod_* > ports, i. e. depend on apache13? Would it conflict with mod_ssl or > could "mod_apache-ssl" and mod_ssl be installed both? > > If so apache13-ssl could be replaced by "mod_apache-ssl" and thus > fit into the new apache ports scheme. Thats really going to depend in what sort of patches apache-ssl requires you to make against apache13. If they are the same as the patches required by mod_ssl then it should be pretty straightforward to support 2 different SSL modules. If they are different but non-conflicting then I could see little real problem. If they are conflicting then I'm not sure how to resolve the problem. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 8:20: 6 2000 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 EB6D537BF8D for ; Wed, 12 Apr 2000 08:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA45913; Wed, 12 Apr 2000 08:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from alsatian.cslab.vt.edu (alsatian.cslab.vt.edu [198.82.184.21]) by hub.freebsd.org (Postfix) with ESMTP id 9394037BCCD; Wed, 12 Apr 2000 08:10:37 -0700 (PDT) (envelope-from dhagan@cslab.vt.edu) Received: from snowcow.cslab.vt.edu (root@snowcow.cslab.vt.edu [198.82.184.27]) by alsatian.cslab.vt.edu (8.9.3/8.9.3) with ESMTP id LAA08142; Wed, 12 Apr 2000 11:09:49 -0400 (EDT) (envelope-from dhagan@snowcow.cslab.vt.edu) Received: (from dhagan@localhost) by snowcow.cslab.vt.edu (8.9.3/8.9.3) id LAA53591; Wed, 12 Apr 2000 11:06:11 -0400 (EDT) (envelope-from dhagan) Message-Id: <200004121506.LAA53591@snowcow.cslab.vt.edu> Date: Wed, 12 Apr 2000 11:06:11 -0400 (EDT) From: "Daniel T. Hagan" Reply-To: dhagan@cs.vt.edu To: FreeBSD-gnats-submit@freebsd.org Cc: torstenb@freebsd.org, dhagan@cs.vt.edu X-Send-Pr-Version: 3.2 Subject: ports/17952: [PATCH] tcp_wrappers port to give better forbidden message Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17952 >Category: ports >Synopsis: [PATCH] tcp_wrappers port to give better forbidden message >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 12 08:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Daniel T. Hagan >Release: FreeBSD 3.4-RELEASE i386 >Organization: Virginia Tech Computer Science Department >Environment: >Description: The tcp_wrappers port is marked as forbidden now that the functionality is in the base system. However, there was a question on freebsd-security re. how to enable the wrappers. This patch updates the forbidden message to point people in the right direction. >How-To-Repeat: (cd ports/security/tcp_wrappers; make ) >Fix: This patch will be available at http://www.cs.vt.edu/~dhagan/freebsd/pr.patch once a id has been assigned to this pr. Index: Makefile =================================================================== RCS file: /src/cvs/ports/security/tcp_wrapper/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- Makefile 2000/04/09 18:30:41 1.24 +++ Makefile 2000/04/12 14:54:15 @@ -14,7 +14,7 @@ MAINTAINER= torstenb@FreeBSD.org .if exists(/usr/include/tcpd.h) -FORBIDDEN= tcp_wrappers is in the base system +FORBIDDEN= tcp_wrappers is in the base system, see /etc/hosts.allow .endif ALL_TARGET= freebsd >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 Apr 12 8:40: 6 2000 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 9DE4737BF7F for ; Wed, 12 Apr 2000 08:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA48163; Wed, 12 Apr 2000 08:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ws2.piuha.net (ws2.piuha.net [195.165.196.2]) by hub.freebsd.org (Postfix) with ESMTP id 9284037BCF2 for ; Wed, 12 Apr 2000 08:35:45 -0700 (PDT) (envelope-from martti.kuparinen@piuha.net) Received: by ws2.piuha.net (Postfix, from userid 10402) id A1B9276373; Wed, 12 Apr 2000 18:34:56 +0300 (EEST) Message-Id: <20000412153456.A1B9276373@ws2.piuha.net> Date: Wed, 12 Apr 2000 18:34:56 +0300 (EEST) From: martti.kuparinen@piuha.net Reply-To: martti.kuparinen@piuha.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17953: [PATCH] ports/x11-wm/fvwm2 fixes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17953 >Category: ports >Synopsis: [PATCH] ports/x11-wm/fvwm2 fixes >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 Apr 12 08:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Martti Kuparinen >Release: FreeBSD 4.0-RELEASE i386 >Organization: >Environment: FreeBSD 4.0-RELEASE and a fresh copy of /usr/ports cvsup'ed today >Description: This patch - makes this port to obey the PREFIX setting (it used to be hard coded /usr/X11R6) - adds more nice icons - puts all icons into /usr/X11R6/icons (or ${PREFIX}/icons) - overrides PR 17001 so please close it (I found a better way to include the icons :-) This new port has been running on my home PC without any problems so I guess this is ready for larger audience :-) >How-To-Repeat: >Fix: begin 644 fvwm2.diff.gz M'XL(")Z4]#@"`V9V=VTR+F1I9F8`Q5MM;]LX$OZ<_@HMT`]WW=B.9*=)@\NA MV=8-$8L=\?/'JU2MKFX-O M.'0N$N&XGN.>G.F?V=3QCHZ.7HQ&(Z>'>WIVY)ZYIR7WE?FG>//IH3MSBB?' M^?+Y]N[FXGI^?I#W6`'_G-\NKC[?G#L'WM@;SS3Z[N)N?OGY]FJ^.#\H1_OB M%^?Z8G$WOUTNKNYR>*62L\E$_SO.>QIS$4V2U"\F-7G$0A+.1MY$]Z5_KB^N M;N[TW_GM^<%#L,64RK?I>(ODFK!(<3;&89HS\YGJT;YV](?1_V&TSN^ZX<'! M6A7L[7:[9T>888$4#B#]U>+NP]6GXC6:/BJ&-59(C*/O MQ<(M\R9RK*+O?TP=T&*ZKP\];[>:^N?K8KZ\7WZYG7^XNC\_>,)28YCLOP5^<9V!Y<7NY^/5\-,(,^12/<*8$DE57E]<7'^>[?HJAWKCG M!Q_T)"X8B?7\QZY3/*4AX<^?U>[C;RC88/'\P%CQ\'NQL.[IH3?;K>S_<.2Z MRT3H8Y&=O_Q1]O;SSYT,M"S>Z>'T9+Z27G%+\;)W3LEN]/N%0CPJ1" ME)[E.^WMRQ_7']]?W?YTGH<^H<2?W+MN91T2DL4HR;5P\/+'UI0KKMH5_Y7B MBI%W*JH8U$Y%9I/_>/RAS1_DMEI.XO#8:3SW>H1GUL%=BIT/V'?TB3_RSKS3 MLZG7=`E[\B)EA4]PWCCNT9G[^FPVZ_8);KE7BW-YZ.WT?_W^V/E+RX;]U3EW MW!D.W`"=^FAZ=#R='1^=G/HG.)P%;X)5&*S\%[_N&^_-7=[RQ/>.9R'R7K]! MWO1U>'(2G+PY.CYU3X[CF/$P@K1FT]PKO0>!0_2Y!^4!YM\BW8S&-[* M?H;`P5-`<3\IL[[IFC.BN+!P)")!+P4)D;M*ST;B6VGEI$D_Q>>QWT](E?:N MHX!RB8<0UUR0[T.(,BD!17'2S^"4"_VIEQ1J[^=SWK\'0BPM M!((HCY8^[Y]^R'F\0D&_SG%(E,#]FQLG%GE&^A6\HGR[#-;(L@XK3D,LO`&< M_O$4T:.-X-D92Y]$5M:TEQ&Q=(3RJ(?VTP1*UOV3>O"U%[8P;"?Q(=][KIW2 MKYN'`-'`PK`:NH=5O[C02#^%$H8M#+[%_;;T(4:1C4`L:H_YHV4<"2*L?^L_ M"$0LUO%!'U/RW<)16/1O_8.14SO3IV@]@&4[9P4K6.-@$R.Q&4!-E9VDW8(2_&D`D>A@1`<1 MPZCZ%`T8(`:C-[!8MA)0.4#&!J"\A\BV7:$>60_O!* M6\SU$*(C6#UX07M.Q&!Y=*2H`A; M"?T;T!+Y_RO53HE8AB&L_E)8(TIA58HD(1[;`WMK/TIO1$L7G%/;W2ME&Z8O MX/T!T)9@$2[S1>B_1&QY3A,\T";`DAO05-IO)#*KKC,WGRWIH!IR7 MXB2,4)8,8.G(S1(&5#P9#F"%.!C`TI%'F@W@R8@,85D"U(J5,CNKG_%H$7N6 M[,0*I53E^>W^"WB9X^[.EP1<']@\X.JDK.T4;J?H@Q.5#"=GX`P'90&J2+9. M:G6)'D)^@^@3*UXE=:?>]8ML@%(FPZ)%U9`.SMJ M".HW`D.PSWX:<.U&4,<-J)[-+)$\,=D":IG*"MR=?0.3FQ:@>*/[9L9R!\N$ MHB<3XT$:8Z9D`S5RF25HYBXK+&D\[Z^D);`BS75K92"UD5J"<8^:&R@BC95J910KN)Y!K*!'XW&-J=G3@[D8&_SD=]^J9",$M-H,C?Z$L$@)I9'4#BM46U)&H#A<@=['V2 MJ(XV#_8S"O5PY!Z M\CJ2A'#ME`)HN()+GS,,2Z">4J"7$%.L,(2WK3F0CJP+]C=Y`S63DJ:HEL,S M!'*3Y]E`2@*`+H5$;Q-"^S/T,@,H$AA1 M(0H*8FB@"E!JRU47:`1;_I8S+E'&H==%D"N+.(0E:VC6]1)8$P;6O.'N"VR- MXACJ>HU`_:_A=5]CT$ZN<0:"2A!@\Q$?T+.9;V\+7%@"=+\)@24`0YJ=!.C$ MR.K7<0*95]BNUS/^3=CKP`'GOL],&B"A,.I!,$L12,]<$&U7(#KE?1VT+B!M M<4_S;DE/(W#V8%\\3"ED&F/@MEP)4@EV]-B!NC#LP3"T\I!!:I11#,D6F`_K M8/,N$\LI]-H\-RD@F$`&N8`]"*>P&T_T&*'N0R"`2#`+H-VO\2@E#!((J!L2 MJ%0`8VFDLFL2LS!E"J"]4!SZ%<,``"M@#F44M0R#!TV,6K5J":9<`N%@( MCJ![F$@!G4%#E&L7`E$(G1E)H:60/&6`-9<*=%#U.EP3=CMPKP,WZV^&%(J. M%:8,*P@7,8QZ$`R[4B6P#]U[]<8&=*:@@]VN$K:$W189K`*VY"S_=3C:0Y!/ M$K[O&[^BTL*]+H'L%.1[K"T$HA?HYK3DNO\6S(-*%5YA0`$S;>V M2K)->.EV"8`6J2*4*-)89AGG?O)+._(H!8M\`I"@=>\NX=9)*>%\XS-]LP%$ MC.O(ID.65XJEMYR:;J.U8$JW;N48ZG7H"C'JSB76J#.78+NNO,-;=A4L+5>B MUCBSUE;-VNGAMK%IF0W`8C1+O76T7MHU!2_7]N)1+\SL2)=^B>G.Z^-='1?!$(DJAN^1V2F]^0Z"9\ K6R.Q>C%RWH9$B-CI^N82)#;@1M^PK/PFT_'1X?3XN"RZ_AO.TW_!*SH``"9\ ` 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 Apr 12 9:21: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 940AE37C1D0 for ; Wed, 12 Apr 2000 09:20:58 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (deepspace9.dcds.edu [207.231.151.2]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id JAA51809; Wed, 12 Apr 2000 09:19:55 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id DB0BA1A30; Wed, 12 Apr 2000 12:19:17 -0400 (EDT) Date: Wed, 12 Apr 2000 12:19:17 -0400 From: Will Andrews To: "Matt M." Cc: ports@FreeBSD.ORG Subject: Re: lynx build issue Message-ID: <20000412121917.A397@argon.blackdawn.com> References: <000801bfa484$90508e60$843c67ce@800support.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <000801bfa484$90508e60$843c67ce@800support.com>; from matt@boda.virtualave.net on Wed, Apr 12, 2000 at 06:39:42AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Apr 12, 2000 at 06:39:42AM -0700, Matt M. wrote: > Just wondering when this will be fixed, and what's causing it. This has been > an issue for a few days, even after cvsuping ports a few times. > > When i try to build, i get: > > ===> lynx-2.8.2rel.1 is forbidden: Riddled with buffer overflows > exploitable by a malicious server to execute code as the local user.. Obviously, not until the Lynx people clean up their act and get rid of the buffer overflows. This has been in the ports tree for several weeks, and the ports went into 4.0-RELEASE marked FORBIDDEN like this. I highly suggest using a different console browser, such as w3m. -- 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 Apr 12 9:28:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id A73FF37BD7B; Wed, 12 Apr 2000 09:28:09 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel3.hp.com (Postfix) with ESMTP id 60798121; Wed, 12 Apr 2000 09:28:08 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com with ESMTP (8.8.6 (PHNE_17135)/8.7.3 TIS 5.0.1) id JAA06781; Wed, 12 Apr 2000 09:28:06 -0700 (PDT) Message-ID: <38F4A417.CBDBD48D@cup.hp.com> Date: Wed, 12 Apr 2000 09:28:07 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami Cc: Kris Kennaway , ports@FreeBSD.org, marcel@FreeBSD.org Subject: Re: Fwd: linux ports (Re: Netscape 6 Linux pre-release, got it going.) References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi - Ports Wraith - Asami wrote: > > * From: Kris Kennaway > > (Don't know if Marcel is on -ports, so CC:d explicitly.) I'm not (yet) on -ports. Thanks. > * I don't think we should be breaking up the current linux_base or linux_dev > * ports, because those are (supposed to be) default Redhat installs so > * redhat linux binaries get the environment they are expecting. > > I wasn't aware that they are "default" RedHat installations. (Why are > there two?) But in any case, if there is a reason why the current > sets are designed that way, it's fine for me. The linux_base port is supposed to install just enough packages to mimic a RH base installation. It uses (supposed to use) as much native FreeBSD tools as is compatibility-wise possible. On top of that other packages can be installed that "extend" the base installation. Currently only linux_devtools exists. We've added X related rpms to linux_base because there was no point in creating a linux_x11 port that only installs a single (or maybe 2) rpms. I'm not in favor of adding too much X related packages to linux_base. I prefer to create a new port that contains X "stuff" in that case. > * For additional packages, having monolithic RPM sets seems to me to be > * bloat - why can't we set up a 1-1 mapping of RPM to package, perhaps by a > * single "portal" redhat rpm port which grabs an RPM from the redhat site > * (possibly choosing from a list as an option), munges it to extract the > * PLIST and installs it? > > I don't mind, as long as the maintenance isn't too hard and users can > install/deinstall those packages just like normal FreeBSD ports. The problem may be that we would have 2 systems that specify and use dependencies; our ports collection and the rpms. Having a system that works requires us to either 1) duplicate rpm dependencies into the ports tree (=static) or 2) add a way to extract rpm dependencies from the database/rpms on the fly (=dynamic). NOTE: rpm dependencies may be too inconsistent to be done dynamicly. Normally you would specify only packages (rpms) as dependency, but in this case there may also be (installed) files in the dependency list. There's no easy way to find out which packages you must download/install in order to resolve such a dependency... Having a way to download and install rpms that are required by a port seems like a good idea. It avoids bloating linux_base or creating additional ports (which only increases the overall complexity of setting up /compat/linux). Food for thought: There are more (too much?) packaging systems. rpm is used by RH, but if we allow or have other distributions as well (not necessarily Linux), we automaticly come to a need of "integrating" their packaging systems as well. In other words: If we add support for rpm, we should expect that people will ask to support their favorite packaging system as well... -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 9:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by hub.freebsd.org (Postfix) with ESMTP id 8122D37BCDC for ; Wed, 12 Apr 2000 09:39:29 -0700 (PDT) (envelope-from cj@214.norrgarden.se) Received: (from cj@localhost) by 214.norrgarden.se (8.9.3/8.9.3) id SAA00578 for freebsd-ports@freebsd.org; Wed, 12 Apr 2000 18:39:04 +0200 (CEST) (envelope-from cj) Date: Wed, 12 Apr 2000 18:39:04 +0200 From: Carl Johan Madestrand To: freebsd-ports@freebsd.org Subject: Re: lynx build issue Message-ID: <20000412183904.B246@214.norrgarden.se> References: <000801bfa484$90508e60$843c67ce@800support.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <000801bfa484$90508e60$843c67ce@800support.com>; from matt@boda.virtualave.net on Wed, Apr 12, 2000 at 06:39:42AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Apr 12, 2000 at 06:39:42AM -0700, Matt M. wrote: > Just wondering when this will be fixed, and what's causing it. This has been > an issue for a few days, even after cvsuping ports a few times. > > When i try to build, i get: > > ===> lynx-2.8.2rel.1 is forbidden: Riddled with buffer overflows > exploitable by a malicious server to execute code as the local user.. > > Same thing happens on all 3 lynx ports. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message The port has been marked as forbidden because Lynx contains a serious security exploit as described when you try to build it. I guess it will be fixed as soon as the buffer overflows in Lynx are gone. If you want to go ahead and build it anyhow (being aware of the risks), you could just remove the FORBIDDEN line in the ports Makefile. -- - Carl Johan Madestrand - IRC: Lord_CJ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 9:50: 6 2000 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 05DA637BD15 for ; Wed, 12 Apr 2000 09:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA56113; Wed, 12 Apr 2000 09:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 09:50:02 -0700 (PDT) Message-Id: <200004121650.JAA56113@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: lioux@uol.com.br Subject: Re: ports/17942: New port devel/rvm needed for coda 5.3.6 Reply-To: lioux@uol.com.br Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17942; it has been noted by GNATS. From: lioux@uol.com.br To: freebsd-gnats-submit@FreeBSD.org Cc: lioux@uol.com.br Subject: Re: ports/17942: New port devel/rvm needed for coda 5.3.6 Date: Wed, 12 Apr 2000 13:41:53 -0300 Follow up: I took over the maintainership of the port since I'll probably be able to handle the port format better than the coda team. However, I added proper coda contact information on pkg/DESC. After using the shar, apply the following patch. --- diff -ruN /home/lioux/download/coda/devel/rvm/Makefile ./Makefile --- /home/lioux/download/coda/devel/rvm/Makefile Tue Apr 11 23:09:58 2000 +++ ./Makefile Wed Apr 12 13:32:27 2000 @@ -10,7 +10,7 @@ CATEGORIES= devel MASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/rvm/src/ -MAINTAINER= coda@cs.cmu.edu +MAINTAINER= lioux@linf.unb.br LIB_DEPENDS= lwp.1:${PORTSDIR}/devel/lwp diff -ruN /home/lioux/download/coda/devel/rvm/pkg/DESCR ./pkg/DESCR --- /home/lioux/download/coda/devel/rvm/pkg/DESCR Thu Apr 6 22:30:52 2000 +++ ./pkg/DESCR Wed Apr 12 13:32:11 2000 @@ -1,2 +1,7 @@ The RVM persistent VM library. The RVM library is used by the Coda distributed filesystem. + +Project contact information below. + +EMAIL: coda@cs.cmu.edu +WWW: http://www.coda.cs.cmu.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 9:50: 9 2000 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 55AAD37BC14 for ; Wed, 12 Apr 2000 09:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA56122; Wed, 12 Apr 2000 09:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 09:50:04 -0700 (PDT) Message-Id: <200004121650.JAA56122@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: lioux@uol.com.br Subject: Re: ports/17941: New port devel/lwp needed for coda 5.3.6 Reply-To: lioux@uol.com.br Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17941; it has been noted by GNATS. From: lioux@uol.com.br To: freebsd-gnats-submit@FreeBSD.org Cc: lioux@uol.com.br Subject: Re: ports/17941: New port devel/lwp needed for coda 5.3.6 Date: Wed, 12 Apr 2000 13:37:30 -0300 Follow up: I took over the maintainership of the port since I'll probably be able to handle the port format better than the coda team. However, I added proper coda contact information on pkg/DESC. After using the shar, apply the following patch. --- diff -ruN /home/lioux/download/coda/devel/lwp/Makefile ./Makefile --- /home/lioux/download/coda/devel/lwp/Makefile Tue Apr 11 23:15:00 2000 +++ ./Makefile Wed Apr 12 13:36:59 2000 @@ -10,7 +10,7 @@ CATEGORIES= devel MASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/lwp/src/ -MAINTAINER= coda@cs.cmu.edu +MAINTAINER= lioux@linf.unb.br GNU_CONFIGURE= yes USE_GMAKE= yes diff -ruN /home/lioux/download/coda/devel/lwp/pkg/DESCR ./pkg/DESCR --- /home/lioux/download/coda/devel/lwp/pkg/DESCR Tue Mar 21 19:51:26 2000 +++ ./pkg/DESCR Wed Apr 12 13:30:58 2000 @@ -1,3 +1,8 @@ The LWP userspace threads library. The LWP threads library is used by the Coda distributed filesystem, RVM (a persistent VM library), and RPC2/SFTP (remote procedure call library) + +Project contact information below. + +EMAIL: coda@cs.cmu.edu +WWW: http://www.coda.cs.cmu.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 9:50:11 2000 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 997C937BF26 for ; Wed, 12 Apr 2000 09:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA56127; Wed, 12 Apr 2000 09:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 Apr 2000 09:50:05 -0700 (PDT) Message-Id: <200004121650.JAA56127@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: lioux@uol.com.br Subject: Re: ports/17943: New port devel/rpc2 needed for coda 5.3.6 Reply-To: lioux@uol.com.br Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17943; it has been noted by GNATS. From: lioux@uol.com.br To: lioux@uol.com.br Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/17943: New port devel/rpc2 needed for coda 5.3.6 Date: Wed, 12 Apr 2000 13:40:50 -0300 Follow up: I took over the maintainership of the port since I'll probably be able to handle the port format better than the coda team. However, I added proper coda contact information on pkg/DESC. After using the shar, apply the following patch. --- diff -ruN /home/lioux/download/coda/devel/rpc2/Makefile ./Makefile --- /home/lioux/download/coda/devel/rpc2/Makefile Tue Apr 11 23:02:53 2000 +++ ./Makefile Wed Apr 12 13:31:54 2000 @@ -10,7 +10,7 @@ CATEGORIES= devel MASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/rpc2/src/ -MAINTAINER= coda@cs.cmu.edu +MAINTAINER= lioux@linf.unb.br LIB_DEPENDS= lwp.1:${PORTSDIR}/devel/lwp diff -ruN /home/lioux/download/coda/devel/rpc2/pkg/DESCR ./pkg/DESCR --- /home/lioux/download/coda/devel/rpc2/pkg/DESCR Wed Mar 22 21:06:45 2000 +++ ./pkg/DESCR Wed Apr 12 13:31:31 2000 @@ -1,2 +1,7 @@ The RPC2 library. The RPC2 library provides interprocess communication for the Coda distributed filesystem. + +Project contact information below. + +EMAIL: coda@cs.cmu.edu +WWW: http://www.coda.cs.cmu.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 10:47:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from goku.cl.msu.edu (goku.cl.msu.edu [35.8.3.20]) by hub.freebsd.org (Postfix) with ESMTP id F312237BFC5 for ; Wed, 12 Apr 2000 10:39:18 -0700 (PDT) (envelope-from dervish@goku.cl.msu.edu) Received: (from dervish@localhost) by goku.cl.msu.edu (8.9.3/8.9.3) id NAA87466 for freebsd-ports@freebsd.org; Wed, 12 Apr 2000 13:39:14 -0400 (EDT) (envelope-from dervish) Date: Wed, 12 Apr 2000 13:39:14 -0400 From: Bush Doctor To: freebsd-ports@freebsd.org Subject: A question on port building? Message-ID: <20000412133914.B87373@goku.cl.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i X-Operating-System: FreeBSD 5.0-CURRENT i386 WWW-Home-Page: http://bantu.cl.msu.edu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This question arises from something I noticed when trying to build codecrusader. (Thanxs to Kent) It seems that codecrusader depends on bison during its build process. Now that bison is part of the system, is it sufficient to have "USE_BISON=yes" in the Makefile? I'm asking because I see from bsd.port.mk # USE_NEWGCC - Says that the port requirest the latest gcc, either in # the system or installed from a port. and bison is also in ports. thanxs ... #;^) -- f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng. bush doctor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 10:47:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shell13.ba.best.com (shell13.ba.best.com [206.184.139.144]) by hub.freebsd.org (Postfix) with ESMTP id F12CF37C08A for ; Wed, 12 Apr 2000 10:42:20 -0700 (PDT) (envelope-from rone@ennui.org) Received: (from rone@localhost) by shell13.ba.best.com (8.9.3/8.9.2/best.sh) id KAA24898 for ports@freebsd.org; Wed, 12 Apr 2000 10:42:13 -0700 (PDT) From: heart of magnesium Message-Id: <200004121742.KAA24898@shell13.ba.best.com> Subject: build of xlockmore fails To: ports@freebsd.org Date: Wed, 12 Apr 2000 10:42:13 -0700 (PDT) X-URL: http://ennui.org/rone/ X-Mailer: ELM [version 2.4ME+ PL38 (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 ===> Building for xlockmore-4.16 cc -c -o ./xlock.o -DHAVE_CONFIG_H -DDEF_FILESEARCHPATH=\"/usr/X11R6/lib/X11/app-defaults/%N%C%S:/usr/X11R6/lib/X11/app-defaults/%N%S\" -I. -I.. -I../.. -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/X11R6/include/X11 -I/usr/X11R6/include -O -pipe ./xlock.c In file included from ./xlock.c:594: /usr/X11R6/include/X11/extensions/dpms.h:48: syntax error before `CARD16' /usr/X11R6/include/X11/extensions/dpms.h:49: syntax error before `CARD16' /usr/X11R6/include/X11/extensions/dpms.h:52: syntax error before `CARD16' /usr/X11R6/include/X11/extensions/dpms.h:53: syntax error before `CARD16' ./xlock.c:595: conflicting types for `DPMSQueryExtension' /usr/X11R6/include/X11/extensions/dpms.h:45: previous declaration of `DPMSQueryExtension' ./xlock.c:597: conflicting types for `DPMSSetTimeouts' ./xlock.c:597: An argument type that has a default promotion can't match an empty parameter name list declaration. /usr/X11R6/include/X11/extensions/dpms.h:48: previous declaration of `DPMSSetTimeouts' *** Error code 1 Stop in /usr/ports/x11/xlockmore/work/xlockmore-4.16/xlock. ===== I have XFree86-4.0 installed. Any ideas? thanks rone -- "Boss, was he singing what I thought he was singing?" "A young man tells his beloved of his love for her." "'My little hairy testicle--'" "It's a cultural thing, Loiosh. You wouldn't understand." - Steven Brust To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 11:29:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from luna.cdrom.com (luna.cdrom.com [204.216.28.135]) by hub.freebsd.org (Postfix) with ESMTP id 9E85B37BE30 for ; Wed, 12 Apr 2000 11:28:42 -0700 (PDT) (envelope-from jim@luna.cdrom.com) Received: by luna.cdrom.com (Postfix, from userid 1000) id 9566131B7; Wed, 12 Apr 2000 11:28:14 -0700 (PDT) Date: Wed, 12 Apr 2000 11:28:14 -0700 From: Jim Mock To: "Matt M." Cc: ports@FreeBSD.ORG Subject: Re: lynx build issue Message-ID: <20000412112814.A428@luna.cdrom.com> Reply-To: jim@luna.cdrom.com References: <000801bfa484$90508e60$843c67ce@800support.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.1.11i In-Reply-To: <000801bfa484$90508e60$843c67ce@800support.com>; from matt@boda.virtualave.net on Wed, Apr 12, 2000 at 06:39:42AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 12 Apr 2000 at 06:39:42 -0700, Matt M. wrote: > Just wondering when this will be fixed, and what's causing it. This > has been an issue for a few days, even after cvsuping ports a few > times. It's up to the lynx developers. > When i try to build, i get: > > ===> lynx-2.8.2rel.1 is forbidden: Riddled with buffer overflows > exploitable by a malicious server to execute code as the local user.. > > Same thing happens on all 3 lynx ports. Try w3m, or if you really want lynx, comment out the FORBIDDEN line in the Makefile. - jim -- - jim mock - walnut creek cdrom/freebsd test labs - jim@luna.cdrom.com - - phone: 1.925.691.2800 x.3814 - fax: 1.925.674.0821 - jim@FreeBSD.org - - editor - The FreeBSDzine - www.freebsdzine.org - jim@freebsdzine.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 12:53:24 2000 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 031AB37BEE4 for ; Wed, 12 Apr 2000 12:50:47 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA72877; Wed, 12 Apr 2000 12:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hyde.ssec.wisc.edu (hyde.ssec.wisc.edu [144.92.108.217]) by hub.freebsd.org (Postfix) with ESMTP id BAF8237BF44 for ; Wed, 12 Apr 2000 12:39:36 -0700 (PDT) (envelope-from dglo@hyde.ssec.wisc.edu) Received: from hyde.ssec.wisc.edu (dglo@localhost [127.0.0.1]) by hyde.ssec.wisc.edu (8.9.3/8.9.3) with ESMTP id OAA14730 for ; Wed, 12 Apr 2000 14:38:15 -0500 (CDT) Message-Id: <200004121938.OAA14730@hyde.ssec.wisc.edu> Date: Wed, 12 Apr 2000 14:38:14 -0500 From: Dave Glowacki To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17959: LD_LIBRARY_PATH confuses Netscape Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17959 >Category: ports >Synopsis: Netscape can't run if LD_LIBRARY_PATH contains /usr/X11R6/lib >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 12 12:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dave Glowacki >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: /usr/ports/www/netscape47-navigator.us installed >Description: If LD_LIBRARY_PATH contains /usr/X11R6/lib, 'netscape' dies because it's an a.out executable and needs the a.out versions of the X libraries. >How-To-Repeat: Add /usr/X11R6/lib to your LD_LIBRARY_PATH and try to start netscape. >Fix: Unset LD_LIBRARY_PATH, since it shouldn't need anything special from that. --- files/netscape.sh.orig Wed Apr 12 14:33:56 2000 +++ files/netscape.sh Wed Apr 12 14:34:09 2000 @@ -2,4 +2,5 @@ export MOZILLA_HOME; MOZILLA_HOME=${MOZILLA_HOME:=@NDIR@} export CLASSPATH ; CLASSPATH=.:$MOZILLA_HOME export XCMSDB; XCMSDB=/dev/null +unset LD_LIBRARY_PATH exec $MOZILLA_HOME/@NBIN@ $* >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 Apr 12 14:50: 5 2000 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 D960537B5F4 for ; Wed, 12 Apr 2000 14:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA85581; Wed, 12 Apr 2000 14:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 905E337B661 for ; Wed, 12 Apr 2000 14:46:28 -0700 (PDT) (envelope-from atrn@zeta.org.au) Received: from ska.bsn (ppp86.dyn143.pacific.net.au [210.23.143.86]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id HAA14768 for ; Thu, 13 Apr 2000 07:46:12 +1000 Received: (from andy@localhost) by ska.bsn (8.9.3/8.9.3) id HAA54336; Thu, 13 Apr 2000 07:47:32 +1000 (EST) (envelope-from andy) Message-Id: <200004122147.HAA54336@ska.bsn> Date: Thu, 13 Apr 2000 07:47:32 +1000 (EST) From: atrn@zeta.org.au Reply-To: atrn@zeta.org.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17960: Maintainer mail address change for lang/ici Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17960 >Category: ports >Synopsis: Maintainer mail address change for lang/ici >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 12 14:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andy Newman >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: >Description: I'm the maintainer for the lang/ici port. My address has changed from andy@research.canon.com.au to atrn@zeta.org.au >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 Wed Apr 12 15: 4:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lsd.franken.de (lsd.franken.de [194.94.248.201]) by hub.freebsd.org (Postfix) with ESMTP id 7A5B737B7D5 for ; Wed, 12 Apr 2000 15:04:44 -0700 (PDT) (envelope-from hrmitter@lsd.franken.de) Received: from lsd.franken.de (localhost.franken.de [127.0.0.1]) by lsd.franken.de (8.9.3/8.9.3) with ESMTP id AAA44866 for ; Thu, 13 Apr 2000 00:05:38 +0200 (CEST) (envelope-from hrmitter@lsd.franken.de) Message-ID: <38F4F332.18B53D45@lsd.franken.de> Date: Thu, 13 Apr 2000 00:05:38 +0200 From: Holger Mitterwald X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: squid broken? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I tried several times both squid22 and squid23 with FBSD4.0-STABLE. It was fetched with wrong checksum and "make" without checksum failed. It seemed as if some files were missing which should have benn patched. Greetings, Holger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 18: 3:27 2000 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 2C99D37B611 for ; Wed, 12 Apr 2000 18:03:24 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost [127.0.0.1]) by picnic.mat.net (8.9.3/8.9.3) with ESMTP id VAA18176; Wed, 12 Apr 2000 21:01:13 -0400 (EDT) (envelope-from chuckr@picnic.mat.net) Date: Wed, 12 Apr 2000 21:01:12 -0400 (EDT) From: Chuck Robey To: Will Andrews Cc: "Matt M." , ports@FreeBSD.ORG Subject: Re: lynx build issue In-Reply-To: <20000412121917.A397@argon.blackdawn.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, 12 Apr 2000, Will Andrews wrote: > On Wed, Apr 12, 2000 at 06:39:42AM -0700, Matt M. wrote: > > Just wondering when this will be fixed, and what's causing it. This has been > > an issue for a few days, even after cvsuping ports a few times. > > > > When i try to build, i get: > > > > ===> lynx-2.8.2rel.1 is forbidden: Riddled with buffer overflows > > exploitable by a malicious server to execute code as the local user.. > > Obviously, not until the Lynx people clean up their act and get rid of the > buffer overflows. This has been in the ports tree for several weeks, and > the ports went into 4.0-RELEASE marked FORBIDDEN like this. > > I highly suggest using a different console browser, such as w3m. Out of curiosity, why? Has w3m been cleared of buffer overflows? In fact, has *any* browser been so cleared of security problems? Have you looked at w3m lately? It's got some very nice features, but as a general purpose browser? No .... ---------------------------------------------------------------------------- Chuck Robey | Interests include C & Java programming, FreeBSD, chuckr@picnic.mat.net | electronics, communications, and signal processing. New Year's Resolution: I will not sphroxify gullible people into looking up fictitious words in the dictionary. ---------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 18: 3:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id AABBB37B691 for ; Wed, 12 Apr 2000 18:03:39 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 9EBBD1C4A; Wed, 12 Apr 2000 21:03:38 -0400 (EDT) Date: Wed, 12 Apr 2000 21:03:38 -0400 From: Bill Fumerola To: lioux@uol.com.br Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/17941: New port devel/lwp needed for coda 5.3.6 Message-ID: <20000412210338.M23367@jade.chc-chimes.com> References: <200004121650.JAA56122@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200004121650.JAA56122@freefall.freebsd.org>; from lioux@uol.com.br on Wed, Apr 12, 2000 at 09:50:04AM -0700 X-Operating-System: FreeBSD 3.2-RELEASE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Apr 12, 2000 at 09:50:04AM -0700, lioux@uol.com.br wrote: > > I took over the maintainership of the port since I'll probably be able > to handle the port format better than the coda team. > > However, I added proper coda contact information on pkg/DESC. I'm vetoing this change (for whatever weight that holds.) The CODA people are interested in maintaining their own ports. I've been in contact (by proxy) with them. -- Bill Fumerola - Network Architect Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org Office: 800-252-2421 x128 / Cell: 248-761-7272 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 18:29:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 4E08F37BB15 for ; Wed, 12 Apr 2000 18:29:34 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (02-171.dial.008.popsite.net [209.69.195.171]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id SAA62371; Wed, 12 Apr 2000 18:29:21 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id F13351A5B; Wed, 12 Apr 2000 21:29:16 -0400 (EDT) Date: Wed, 12 Apr 2000 21:29:16 -0400 From: Will Andrews To: Chuck Robey Cc: Will Andrews , "Matt M." , ports@FreeBSD.ORG Subject: Re: lynx build issue Message-ID: <20000412212916.C456@argon.blackdawn.com> References: <20000412121917.A397@argon.blackdawn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from chuckr@picnic.mat.net on Wed, Apr 12, 2000 at 09:01:12PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Apr 12, 2000 at 09:01:12PM -0400, Chuck Robey wrote: > > I highly suggest using a different console browser, such as w3m. > > Out of curiosity, why? Has w3m been cleared of buffer overflows? It was just a suggestion, in case the person who's complaining about our forced breaking of the lynx port asked what else there was. I have no idea whether w3m has been cleared buffer overflows or not. -- 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 Apr 12 18:40:49 2000 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 9E9D937BC9D for ; Wed, 12 Apr 2000 18:40:42 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost [127.0.0.1]) by picnic.mat.net (8.9.3/8.9.3) with ESMTP id VAA77743; Wed, 12 Apr 2000 21:39:16 -0400 (EDT) (envelope-from chuckr@picnic.mat.net) Date: Wed, 12 Apr 2000 21:39:16 -0400 (EDT) From: Chuck Robey To: Will Andrews Cc: "Matt M." , ports@FreeBSD.ORG Subject: Re: lynx build issue In-Reply-To: <20000412212916.C456@argon.blackdawn.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, 12 Apr 2000, Will Andrews wrote: > On Wed, Apr 12, 2000 at 09:01:12PM -0400, Chuck Robey wrote: > > > I highly suggest using a different console browser, such as w3m. > > > > Out of curiosity, why? Has w3m been cleared of buffer overflows? > > It was just a suggestion, in case the person who's complaining about our > forced breaking of the lynx port asked what else there was. > > I have no idea whether w3m has been cleared buffer overflows or not. While w3m is a remarkable advance in ascii browsers, Will, it's not ready for prime-time, so telling someone to go to use it isn't really very nice. The way it does frames is amazing, but it doesn't handle any entry at all, it allows the cursor to go to areas of the screen that *ought* to be off limits, and other things. The idea is certainly there. In concept, it's *far* better than lynx, but it's just not there yet. You ought to try it just for curiosity's sake, but you won't stay with it. > > ---------------------------------------------------------------------------- Chuck Robey | Interests include C & Java programming, FreeBSD, chuckr@picnic.mat.net | electronics, communications, and signal processing. New Year's Resolution: I will not sphroxify gullible people into looking up fictitious words in the dictionary. ---------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 18:44: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from maynard.mail.mindspring.net (maynard.mail.mindspring.net [207.69.200.243]) by hub.freebsd.org (Postfix) with ESMTP id 8278E37BA8D; Wed, 12 Apr 2000 18:43:58 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca14-66.ix.netcom.com [205.186.215.66]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA09191; Wed, 12 Apr 2000 21:43:54 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id SAA33560; Wed, 12 Apr 2000 18:43:51 -0700 (PDT) To: Marcel Moolenaar Cc: Kris Kennaway , ports@FreeBSD.org, marcel@FreeBSD.org Subject: Re: Fwd: linux ports (Re: Netscape 6 Linux pre-release, got it going.) References: <38F4A417.CBDBD48D@cup.hp.com> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 12 Apr 2000 18:43:51 -0700 In-Reply-To: Marcel Moolenaar's message of "Wed, 12 Apr 2000 09:28:07 -0700" Message-ID: Lines: 43 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Marcel Moolenaar * I'm not (yet) on -ports. Thanks. Ok. You probably should be, though. :> * The linux_base port is supposed to install just enough packages to mimic * a RH base installation. It uses (supposed to use) as much native FreeBSD * tools as is compatibility-wise possible. * * On top of that other packages can be installed that "extend" the base * installation. Currently only linux_devtools exists. * * We've added X related rpms to linux_base because there was no point in * creating a linux_x11 port that only installs a single (or maybe 2) rpms. * I'm not in favor of adding too much X related packages to linux_base. I * prefer to create a new port that contains X "stuff" in that case. Sure, that's fine. * The problem may be that we would have 2 systems that specify and use * dependencies; our ports collection and the rpms. Having a system that * works requires us to either 1) duplicate rpm dependencies into the ports * tree (=static) or 2) add a way to extract rpm dependencies from the * database/rpms on the fly (=dynamic). I don't think the latter is going to work. The dependencies have to be static for INDEX and packages to function correctly. We don't have to upgrade the rpm dependencies that often anyway, I think duplicating them in our ports framework is fine. * Having a way to download and install rpms that are required by a port * seems like a good idea. It avoids bloating linux_base or creating * additional ports (which only increases the overall complexity of setting * up /compat/linux). I'm not sure exactly how the "download and install rpms" part is going to work but I really like this to fit into our ports framework. In particular, I would like to have them build packages and have pkg_* deal with them just like any other port. Otherwise people trying to install the system from CDs is going to be screwed. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 19: 2:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (f208.law8.hotmail.com [216.33.241.208]) by hub.freebsd.org (Postfix) with SMTP id A32DC37BB18 for ; Wed, 12 Apr 2000 19:02:43 -0700 (PDT) (envelope-from jmd526@hotmail.com) Received: (qmail 89780 invoked by uid 0); 13 Apr 2000 02:02:43 -0000 Message-ID: <20000413020243.89778.qmail@hotmail.com> Received: from 209.220.228.2 by www.hotmail.com with HTTP; Wed, 12 Apr 2000 19:02:43 PDT X-Originating-IP: [209.220.228.2] From: "John Daniels" To: freebsd-java@freebsd.org, freebsd-ports@freebsd.org Subject: JDK 1.2.2 Date: Wed, 12 Apr 2000 22:02:43 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi: I need to test a third-party application that requires JDK 1.2.2. I was just wondering what the status of this port is. I have seen it described as "alpha" in the mailing lists. Approximately when will 1.2.2 be available as a port for general use? Is it available now as "alpha" or "beta?" Any information would be helpful, I really need to get started with this ASAP. Thanks, John ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 19:14:16 2000 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 9C24137B65F; Wed, 12 Apr 2000 19:14:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id TAA11874; Wed, 12 Apr 2000 19:14:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 12 Apr 2000 19:14:14 -0700 (PDT) From: Kris Kennaway To: Chuck Robey Cc: Will Andrews , "Matt M." , ports@FreeBSD.ORG Subject: Re: lynx build issue 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 Wed, 12 Apr 2000, Chuck Robey wrote: > Out of curiosity, why? Has w3m been cleared of buffer overflows? None are known, even though the source looks dangerous. Lynx, on the other hand, has known problems. FYI, I use w3m quite happily, except that sometimes it garbles up the frame rendering. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 19:30: 5 2000 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 C07E937BB97 for ; Wed, 12 Apr 2000 19:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA13563; Wed, 12 Apr 2000 19:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3400937B9E5 for ; Wed, 12 Apr 2000 19:26:52 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA13207; Wed, 12 Apr 2000 19:26:51 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004130226.TAA13207@freefall.freebsd.org> Date: Wed, 12 Apr 2000 19:26:51 -0700 (PDT) From: david@usermode.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17964: xmms-1.0.1 segfaults on song change Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17964 >Category: ports >Synopsis: xmms-1.0.1 segfaults on song change >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 Apr 12 19:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: David Johnson >Release: 4.0-RELEASE >Organization: >Environment: FreeBSD weathertop 4.0-RELEASE FreeBSD 4.0-RELEASE #1: Tue Apr 11 23:28:12 PDT 2000 arandir@weathertop:/usr/src/sys/compile/WEATHERTOP i386 >Description: xmms-1.0.1 frequently segfaults upon a song change. Message on console is "Segmentation Fault\n\nYou've probably found a bug in XMMS..." Error only occurs with mods, not mp3s. I am using a mix of mod types. I have not been able to track it down to a specific mod type. I am using mod, it, xm, 669 and s3m. The same playlist and songs on Linux Slackware works fine. >How-To-Repeat: Load a playlist of mods into xmms. Start play. Press the "next track" button. Eventually it will crash. >Fix: None known >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 Apr 12 21:12: 9 2000 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 EBE2937B78E; Wed, 12 Apr 2000 21:12:06 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA23456; Wed, 12 Apr 2000 21:12:06 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Date: Wed, 12 Apr 2000 21:12:06 -0700 (PDT) From: Message-Id: <200004130412.VAA23456@freefall.freebsd.org> X-Mailer: exmh version 2.0.2 2/24/98 To: "Marco van de Voort" Cc: freebsd-ports@freebsd.org Subject: Re: ported application In-Reply-To: Your message of "Wed, 12 Apr 2000 14:03:59 +0100." <20000412120437.242472E802@hermes.tue.nl> Mime-Version: 1.0 Content-Type: text/plain Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > People in the freebsd-hackers told me that such (non gcc compiled or compiled > by gcc descendants) projects already exist? Can somebody give me > some examples where I can look at? Take a look at ports/lang/sml-nj, the SML/NJ compiler for ML. Other 'bootstrapped' languages in ports include Sather, MIT-Scheme, and Erlang IIRC. Some of these compile a small bootstrap stage on the native system, load in an initial image and then recompile themselves becoming totally `native' from that point on. > How does one implement such port? A single port entry would be quite large > (5-9 MB (depends on inclusion of non BSD stuff for crosscompiling, and Most of the ports listed above are quite large and monolithic, because the distributed files are such :(. I personally prefer a complete port; 5-10MB is ok. Regards, Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 21:13:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pascal.uol.com.br (pascal.uol.com.br [200.230.198.87]) by hub.freebsd.org (Postfix) with ESMTP id 7C1E737BC99 for ; Wed, 12 Apr 2000 21:13:11 -0700 (PDT) (envelope-from lioux-alias-ppp-freebsd-ports=freebsd.org@uol.com.br) Received: from bsa-1-as02-7-a47.gd.uol.com.br (bsa-1-as02-7-a47.gd.uol.com.br [200.197.118.111] (may be forged)) by pascal.uol.com.br (8.9.1/8.9.1) with ESMTP id BAA22433 for ; Thu, 13 Apr 2000 01:12:41 -0300 (BRT) Received: (qmail 571 invoked by uid 1001); 13 Apr 2000 04:06:20 -0000 From: lioux@uol.com.br Date: Thu, 13 Apr 2000 01:06:20 -0300 To: Bill Fumerola Cc: freebsd-ports@freebsd.org Subject: Re: ports/17941: New port devel/lwp needed for coda 5.3.6 Message-ID: <20000413010620.A488@Fedaykin.here> References: <200004121650.JAA56122@freefall.freebsd.org> <20000412210338.M23367@jade.chc-chimes.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000412210338.M23367@jade.chc-chimes.com>; from billf@chc-chimes.com on Wed, Apr 12, 2000 at 09:03:38PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Apr 12, 2000 at 09:03:38PM -0400, Bill Fumerola wrote: > On Wed, Apr 12, 2000 at 09:50:04AM -0700, lioux@uol.com.br wrote: > > > > > I took over the maintainership of the port since I'll probably be able > > to handle the port format better than the coda team. > > > > However, I added proper coda contact information on pkg/DESC. > > I'm vetoing this change (for whatever weight that holds.) > > The CODA people are interested in maintaining their own ports. I've been > in contact (by proxy) with them. Okidokie. Fine by me. :) Just one thing, do use my shar instead of theirs since it is cleaner and correct. Futhermore, apply the supplied patch. Just change the maintainer back. The patch fixes DESCR. Just hope this makes it soon so that I can get back to get coda 5.3.6 working. Their port is not working on STABLE (yesterday's). Besides, they do know their code so they can better answer questions relating to the code. I was taking the maintainership just to handle the port tree stuff. Nevertheless, I can do that through PRs. God bless GNATS. ;) -- Regards, mfereora To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 22:40:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (f142.law8.hotmail.com [216.33.241.142]) by hub.freebsd.org (Postfix) with SMTP id 1249937BCFE for ; Wed, 12 Apr 2000 22:40:15 -0700 (PDT) (envelope-from jmd526@hotmail.com) Received: (qmail 2412 invoked by uid 0); 13 Apr 2000 05:40:14 -0000 Message-ID: <20000413054014.2411.qmail@hotmail.com> Received: from 209.220.228.2 by www.hotmail.com with HTTP; Wed, 12 Apr 2000 22:40:14 PDT X-Originating-IP: [209.220.228.2] From: "John Daniels" To: freebsd-emulation@freebsd.org, freebsd-ports@freebsd.org Subject: linux application Date: Thu, 13 Apr 2000 01:40:14 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi: I have a Linux S/W tool. It seems to basically consists of an API that my code calls to gain certain functionality. The API is implemented in object files/binaries/libraries that are either linked into the code or shared. (I am still reading through documentation, so I don't have it all figured out yet.) This is supposed to run under Linux, so I believe that the libraries were probably compiled under Linux, and are expecting to be called from programs running under Linux. Will all of this run without modification due to FreeBSD's Linux compatibility? Are there compiler options that I have to use to make this work? (Obviously, I never done anything like this before) I have looked at Makefiles for Linux ports and they specify linux libraries and the Linux-base package as necessary. Don't these specifications get passed through to the compiler? Do I create a Makefile or compiler options file that will pass the necessary info/options to the compiler? Basically, what do I have to do to create/compile/run programs that use libraries developed on Linux. Any info or, a clue on where to find info, is greatly appreciated. John ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 23:20: 8 2000 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 DB60F37BCE2 for ; Wed, 12 Apr 2000 23:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA35962; Wed, 12 Apr 2000 23:20: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 F33D637B622 for ; Wed, 12 Apr 2000 23:19: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 IAA24366 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Apr 2000 08:19:33 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id HAA21162 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Apr 2000 07:34:41 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id GAA40937; Thu, 13 Apr 2000 06:34:35 +0200 (CEST) Message-Id: <200004130434.GAA40937@home.dinoex.sub.org> Date: Thu, 13 Apr 2000 06:34:35 +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/17968: news/fidogate update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17968 >Category: ports >Synopsis: news/fidogate 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: Wed Apr 12 23:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.4-STABLE i386 >Organization: privat >Environment: ifmail, fidogate >Description: New stable Release 4.4.1 >How-To-Repeat: >Fix: apply this patches diff fidogate/Makefile fidogate-4.4.1/Makefile --- fidogate/Makefile Thu Apr 13 06:27:02 2000 +++ fidogate-4.4.1/Makefile Thu Apr 13 06:33:16 2000 @@ -6,8 +6,8 @@ # PORTNAME= fidogate -PORTVERSION= 4.4.0 -CATEGORIES= news +PORTVERSION= 4.4.1 +CATEGORIES= news mail MASTER_SITES= ${MASTER_SITE_SUNSITE} \ ftp://ftp.fido.de/pub/fidogate/ \ ftp://ftp.gwdg.de/pub/linux/fido/fidogate/ \ diff fidogate/files/md5 fidogate-4.4.1/files/md5 --- fidogate/files/md5 Sat Feb 26 12:21:58 2000 +++ fidogate-4.4.1/files/md5 Wed Apr 12 08:00:02 2000 @@ -1 +1 @@ -MD5 (fidogate-4.4.0.tar.gz) = 8763ab4cd86d66bccd45d693758a4f17 +MD5 (fidogate-4.4.1.tar.gz) = cbaaae370a7c48c7922988c66b70e743 diff fidogate/patches/patch-aa fidogate-4.4.1/patches/patch-aa --- fidogate/patches/patch-aa Thu Mar 9 18:38:23 2000 +++ fidogate-4.4.1/patches/patch-aa Thu Apr 13 06:08:47 2000 @@ -1,5 +1,5 @@ ---- config.make.orig Sun Jan 30 20:24:55 2000 -+++ config.make Sun Feb 13 13:29:53 2000 +--- config.make.orig Tue Apr 11 14:02:25 2000 ++++ config.make Thu Apr 13 06:07:58 2000 @@ -57,13 +57,13 @@ # variable parameters, can be changed at run-time, DO NOT DELETE ANYTHING!!! @@ -33,7 +33,7 @@ # Directories for installing documentation, not used by subst.pl -INFODIR = /usr/info --HTMLDIR = /html/mj/fidogate +-HTMLDIR = /html/fidogate -HTMLLOGDIR = /html/log +INFODIR = ${PREFIX}/share/doc/fidogate/info +HTMLDIR = ${PREFIX}/share/doc/fidogate/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 Wed Apr 12 23:20:13 2000 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 5C18137BCE5 for ; Wed, 12 Apr 2000 23:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA35971; Wed, 12 Apr 2000 23:20:02 -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 3769737BB5D for ; Wed, 12 Apr 2000 23:19:47 -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 IAA24368 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Apr 2000 08:19:47 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id HAA21163 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Apr 2000 07:34:42 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id GAA44836; Thu, 13 Apr 2000 06:51:01 +0200 (CEST) Message-Id: <200004130451.GAA44836@home.dinoex.sub.org> Date: Thu, 13 Apr 2000 06:51:01 +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/17969: news/cnews fix to build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17969 >Category: ports >Synopsis: news/cnews fix to build >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 Apr 12 23:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.4-STABLE i386 >Organization: privat >Environment: FreeBSD 3.4 >Description: c-news wound build anymore ... DISTNAME is missing ... ===> Extracting for cnews-cr.g >How-To-Repeat: >Fix: apply the patch diff cnews/Makefile cnews-cr.g/Makefile --- cnews/Makefile Thu Apr 13 06:27:02 2000 +++ cnews-cr.g/Makefile Thu Apr 13 06:49:46 2000 @@ -15,8 +15,9 @@ ftp://ftp.redcom.ru/pub/unix/usenet/c-news/ \ ftp://ftp.mc.hik.se/pub/unix/news/c-news/ \ ftp://ftp.dinoex.org/pub/c-news/ +DISTNAME= c-news EXTRACT_SUFX= .tar.Z -DISTFILES= c-news${EXTRACT_SUFX} \ +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ pgpverify-1.12 PATCH_SITES= ftp://ftp.lan-ks.de/pub/c-news/ \ @@ -33,7 +34,7 @@ MAINTAINER= dirk.meyer@dinoex.sub.org -DIST_SUBDIR= c-news +DIST_SUBDIR= ${DISTNAME} NO_WRKSUBDIR= yes EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAKEFILE= makefile >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for c-news/c-news.tar.Z. >> Checksum OK for c-news/pgpverify-1.12. >> Checksum OK for c-news/c-news-patch-fileart.c. >> Checksum OK for c-news/c-news-patch-namecheck.awk. >> Checksum OK for c-news/c-news-patch-newsrun. >> Checksum OK for c-news/c-news-patch-sendbatches. >> Checksum OK for c-news/c-news-patch-ctl-pgp3. >> Checksum OK for c-news/c-news-patch-ctl-more. >> Checksum OK for c-news/c-news-patch-ctl-regexp. >> Checksum OK for c-news/c-news-patch-doexpire. >> Checksum OK for c-news/c-news-patch-queuelen.tay. >> Checksum OK for c-news/c-news-patch-bunzip2. >> Checksum OK for c-news/c-news-patch-ctl-underscore. >> Checksum OK for c-news/c-news-patch-y2k-2. >> Checksum OK for c-news/c-news-patch-pgpverify-1.12-perl4. >> Checksum OK for c-news/c-news-patch-gawk3. /usr/ports/distfiles/c-news/cnews-cr.g.tar.Z: No such file or directory ===> Patching for cnews-cr.g ===> Applying distribution patches for cnews-cr.g File to patch: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 23:39: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from holmes.infopro.spb.su (holmes.infopro.spb.su [195.242.2.2]) by hub.freebsd.org (Postfix) with ESMTP id D5A4437BCCF for ; Wed, 12 Apr 2000 23:39:00 -0700 (PDT) (envelope-from avm@webclub.ru) Received: from barrymore.peterlink.ru (barrymore.peterlink.ru [195.242.2.8]) by holmes.infopro.spb.su (8.9.1/8.9.1) with ESMTP id KAA05924; Thu, 13 Apr 2000 10:38:55 +0400 (MSD) Received: from turtle.interforge.ru (interforge.dialup.peterlink.ru [195.242.31.96]) by barrymore.peterlink.ru (8.9.1/8.9.1) with ESMTP id KAA11078; Thu, 13 Apr 2000 10:38:53 +0400 (MSD) Date: Thu, 13 Apr 2000 10:41:15 +0400 From: "Alexey V. Meledin" X-Mailer: The Bat! (v1.36) S/N F29DEE5D / Educational Reply-To: "Alexey V. Meledin" Organization: InterForge Developers Group, Spb X-Priority: 3 (Normal) Message-ID: <12445.000413@webclub.ru> To: martti.kuparinen@ericsson.com Cc: ports@FreeBSD.org Subject: FreeBSD Port: jdk-doc-1.1.8 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 Hi! When JDK 1.2.2. will be ported to FreeBSD? Thanks, Alexey V. Meledin InterForge Developers Group, Saint-Petersburg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 12 23:40: 5 2000 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 C6FB337BC7B for ; Wed, 12 Apr 2000 23:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA38861; Wed, 12 Apr 2000 23:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ritax.dorm.ccu.edu.tw (ritax.dorm.ccu.edu.tw [140.123.11.79]) by hub.freebsd.org (Postfix) with SMTP id 2086437B799 for ; Wed, 12 Apr 2000 23:36:33 -0700 (PDT) (envelope-from winard@ritax.dorm.ccu.edu.tw) Received: (qmail 83351 invoked by uid 1001); 13 Apr 2000 06:36:31 -0000 Message-Id: <20000413063631.83350.qmail@ritax.dorm.ccu.edu.tw> Date: 13 Apr 2000 06:36:31 -0000 From: winard@ritax.dorm.ccu.edu.tw Reply-To: winard@ritax.dorm.ccu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17970: bad configuraion file search path of NAS Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17970 >Category: ports >Synopsis: bad configuraion file search path of NAS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 12 23:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yung-Jeng Hung >Release: FreeBSD 4.0-STABLE i386 >Organization: National Chung Cheng University, Taiwan >Environment: >Description: NAS reads config from the file `search_path + nasd.conf'. The patch file changes search path to `/usr/X11R6/etc', causes NAS reads config from `/usr/X11R6/etcnasd.conf', not `/usr/X11R6/etc/nasd.conf'. >How-To-Repeat: Install NAS, modify your config file, run nasd, and error occurs. >Fix: Change this line in patch-af: +#define NasConfigSearchPath $(PROJECTROOT)/etc to: +#define NasConfigSearchPath $(PROJECTROOT)/etc/ >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 Apr 12 23:58:49 2000 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 27E6A37BB5D; Wed, 12 Apr 2000 23:58:47 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA41329; Wed, 12 Apr 2000 23:58:46 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Wed, 12 Apr 2000 23:58:46 -0700 (PDT) From: Message-Id: <200004130658.XAA41329@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, cpiazza@FreeBSD.org Subject: Re: ports/17969: news/cnews fix to build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: news/cnews fix to build State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Wed Apr 12 23:57:18 PDT 2000 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: freebsd-ports->cpiazza Responsible-Changed-By: cpiazza Responsible-Changed-When: Wed Apr 12 23:57:18 PDT 2000 Responsible-Changed-Why: I broke it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 2:11:34 2000 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 3B57737B5DB; Thu, 13 Apr 2000 02:11:33 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id CAA69915; Thu, 13 Apr 2000 02:11:33 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 13 Apr 2000 02:11:32 -0700 (PDT) From: Kris Kennaway To: Bush Doctor Cc: freebsd-ports@freebsd.org Subject: Re: A question on port building? In-Reply-To: <20000412133914.B87373@goku.cl.msu.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 Wed, 12 Apr 2000, Bush Doctor wrote: > This question arises from something I noticed when trying to > build codecrusader. (Thanxs to Kent) It seems that codecrusader > depends on bison during its build process. Now that bison is part > of the system, is it sufficient to have "USE_BISON=yes" in the > Makefile? I'm asking because I see from bsd.port.mk Bison was ripped back out of the base system in 4.0. Hence USE_BISON :-) Most ports don't need it. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 2:35:11 2000 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 2FA6637BD48 for ; Thu, 13 Apr 2000 02:35:08 -0700 (PDT) (envelope-from martti.kuparinen@lmf.ericsson.se) Received: from fogerty.lmf.ericsson.se (fogerty.lmf.ericsson.se [131.160.11.6]) by penguin.wise.edt.ericsson.se (8.9.3/8.9.3/WIREfire-1.5) with ESMTP id LAA22606; Thu, 13 Apr 2000 11:35:05 +0200 (MET DST) Received: from tosb0323 (mungo.lmf.ericsson.se [131.160.32.8]) by fogerty.lmf.ericsson.se (8.9.3+Sun/8.9.3) with SMTP id MAA13077; Thu, 13 Apr 2000 12:35:04 +0300 (EET DST) Message-ID: <01c301bfa52b$7a3d07a0$6bc4a5c3@nomadiclab.com> From: "Martti Kuparinen" To: Cc: References: <12445.000413@webclub.ru> Subject: Re: FreeBSD Port: jdk-doc-1.1.8 Date: Thu, 13 Apr 2000 12:34:33 +0300 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.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > When JDK 1.2.2. will be ported to FreeBSD? Please take a look at http://www.freebsd.org/java/ When 1.2.x is ready and in the ports collection, I'll update the jdk-doc and jdk-tutorial ports. Martti To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 5:24: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mantis.it.uc3m.es (matris.it.uc3m.es [163.117.139.160]) by hub.freebsd.org (Postfix) with ESMTP id 7047A37B967 for ; Thu, 13 Apr 2000 05:23:50 -0700 (PDT) (envelope-from rromeral@it.uc3m.es) Received: from it.uc3m.es (rromeral@localhost [127.0.0.1]) by mantis.it.uc3m.es (8.9.3/8.9.3) with ESMTP id OAA04152 for ; Thu, 13 Apr 2000 14:20:06 +0200 From: rromeral@it.uc3m.es Message-ID: <38F5BB76.3DE7F28D@it.uc3m.es> Date: Thu, 13 Apr 2000 14:20:06 +0200 X-Mailer: Mozilla 4.61 [en] (X11; I; Linux 2.2.10 i686) X-Accept-Language: es, en MIME-Version: 1.0 To: ports@FreeBSD.org Subject: ntp-4.0.99g Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I need install in my machine ntp. My distribution of FreeBSD is 3.2 in a pack of CDROM's. The source of the port ntp for this distribution there isn't in the CD's. I get in the net de new port ntp-4.0.99g and I put this in /usr/ports/net/ntp directory. I get the sources ntp-4.0.99g.tar.gz an put it in /usr/port/distfiles. Then I exec make command in /usr/ports/net/ntp a appears the next errors, why? >> .tar.gz doesn't seem to exist on this system. >> Attempting to fetch from ftp://ftp.udel.edu/pub/ntp/ntp4/. >> Attempting to fetch from ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/. >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. Thank's for all and excuse me for my little control of the idiom. -- Saludos, Richi. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 5:34:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mantis.it.uc3m.es (matris.it.uc3m.es [163.117.139.160]) by hub.freebsd.org (Postfix) with ESMTP id E4EB937BB1B for ; Thu, 13 Apr 2000 05:34:12 -0700 (PDT) (envelope-from rromeral@mantis.it.uc3m.es) Received: (from rromeral@localhost) by mantis.it.uc3m.es (8.9.3/8.9.3) id OAA04212; Thu, 13 Apr 2000 14:30:31 +0200 From: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 13 Apr 2000 14:30:30 +0200 (CEST) To: ports@FreeBSD.org X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <14581.48568.807365.483553@mantis.it.uc3m.es> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I need install in my machine ntp. My distribution of FreeBSD is 3.2 in a pack of CDROM's. The source of the port ntp for this distribution there isn't in the CD's. I get in the net de new port ntp-4.0.99g and I put this in /usr/ports/net/ntp directory. I get the sources ntp-4.0.99g.tar.gz an put it in /usr/port/distfiles. Then I exec make command in /usr/ports/net/ntp a appears the next errors, why? >> .tar.gz doesn't seem to exist on this system. >> Attempting to fetch from ftp://ftp.udel.edu/pub/ntp/ntp4/. >> Attempting to fetch from ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/. >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. Thank's for all and excuse me for my little control of the idiom. -- Saludos, Richi. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 6:19:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 29D4237B52E for ; Thu, 13 Apr 2000 06:19:33 -0700 (PDT) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e3DDIHV18144; Thu, 13 Apr 2000 09:18:17 -0400 (EDT) Date: Thu, 13 Apr 2000 09:18:16 -0400 (EDT) From: Trevor Johnson To: rromeral@it.uc3m.es Cc: ports@FreeBSD.ORG Subject: Re: your mail In-Reply-To: <14581.48568.807365.483553@mantis.it.uc3m.es> 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 need install in my machine ntp. My distribution of FreeBSD is 3.2 in a > pack of CDROM's. The source of the port ntp for this distribution there > isn't in the CD's. I get in the net de new port ntp-4.0.99g and I put > this in /usr/ports/net/ntp directory. I get the sources > ntp-4.0.99g.tar.gz an put it in /usr/port/distfiles. Then I exec make > command in /usr/ports/net/ntp a appears the next errors, why? > > > >> .tar.gz doesn't seem to exist on this system. Hi, Richi. Your system could be having problems with the PORTNAME/PORTVERSION stuff. A "make fetch" works for me. If you update your /usr/ports/Mk/bsd.port.mk (it's in the ports-base collection, I think), you might be fine. Alternatively, try checking out version 1.11 of the port's Makefile. That was before the PORTNAME/PORTVERSION change. If you have trouble doing that, here's a patch to take you back in time. :-) __ Trevor Johnson Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/ntp/Makefile,v retrieving revision 1.12 retrieving revision 1.11 diff -u -r1.12 -r1.11 --- Makefile 2000/04/09 18:12:42 1.12 +++ Makefile 2000/04/01 04:27:57 1.11 @@ -1,12 +1,12 @@ # New ports collection makefile for: ntp +# Version required: 4.0.99g # Date created: Di 5 Mai 1998 21:31:03 CEST # Whom: andreas # -# $FreeBSD: ports/net/ntp/Makefile,v 1.12 2000/04/09 18:12:42 cpiazza Exp $ +# $FreeBSD: ports/net/ntp/Makefile,v 1.11 2000/04/01 04:27:57 mharo Exp $ # -PORTNAME= ntp -PORTVERSION= 4.0.99g +DISTNAME= ntp-4.0.99g CATEGORIES= net MASTER_SITES= ftp://ftp.udel.edu/pub/ntp/ntp4/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 7: 9:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (Postfix) with ESMTP id 7C55537B7B4; Thu, 13 Apr 2000 07:09:51 -0700 (PDT) (envelope-from babolo@links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.3/8.9.3) id SAA27850; Thu, 13 Apr 2000 18:09:47 +0400 (MSD) Message-Id: <200004131409.SAA27850@aaz.links.ru> Subject: Re: linux application In-Reply-To: <20000413054014.2411.qmail@hotmail.com> from "John Daniels" at "Apr 13, 0 01:40:14 am" To: jmd526@hotmail.com (John Daniels) Date: Thu, 13 Apr 2000 18:09:47 +0400 (MSD) Cc: freebsd-emulation@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: "Aleksandr A.Babaylov" 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 John Daniels writes: > I have a Linux S/W tool. It seems to basically consists of an API that my > code calls to gain certain functionality. The API is implemented in object > files/binaries/libraries that are either linked into the code or shared. (I > am still reading through documentation, so I don't have it all figured out > yet.) > > This is supposed to run under Linux, so I believe that the libraries were > probably compiled under Linux, and are expecting to be called from programs > running under Linux. > > Will all of this run without modification due to FreeBSD's Linux > compatibility? Are there compiler options that I have to use to make this > work? (Obviously, I never done anything like this before) > > I have looked at Makefiles for Linux ports and they specify linux libraries > and the Linux-base package as necessary. Don't these specifications get > passed through to the compiler? > > Do I create a Makefile or compiler options file that will pass the necessary > info/options to the compiler? > > Basically, what do I have to do to create/compile/run programs that use > libraries developed on Linux. > > Any info or, a clue on where to find info, is greatly appreciated. I used chroot to /compat/linux for translate programms to link with linux libraries. I understand that is some way not chroot for translate, but to chroot is fast enough. -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 7:10:11 2000 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 4E74C37BD6F for ; Thu, 13 Apr 2000 07:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA70527; Thu, 13 Apr 2000 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (silvercube.silverpix.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id 7722737B59A for ; Thu, 13 Apr 2000 07:07:15 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id KAA21847 for ; Thu, 13 Apr 2000 10:06:02 -0400 (EDT) Received: (from root@localhost) by misha.privatelabs.com (8.9.3/8.9.3) id KAA06028; Thu, 13 Apr 2000 10:06:56 -0400 (EDT) (envelope-from mi) Message-Id: <200004131406.KAA06028@misha.privatelabs.com> Date: Thu, 13 Apr 2000 10:06:56 -0400 (EDT) From: root@misha.privatelabs.com Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17973: Wrong PORTVERSION for news/knews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17973 >Category: ports >Synopsis: Wrong PORTVERSION for news/knews >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 13 07:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.0-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: Whoever changed the Makefile to the new style made a typo :) >How-To-Repeat: >Fix: --- Makefile Mon Apr 10 16:19:43 2000 +++ Makefile Thu Apr 13 10:04:28 2000 @@ -8,3 +8,3 @@ PORTNAME= knews -PORTVERSION= 1.0.b1 +PORTVERSION= 1.0b.1 CATEGORIES= 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 Thu Apr 13 7:27:33 2000 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 7583B37B593; Thu, 13 Apr 2000 07:27:31 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA72565; Thu, 13 Apr 2000 07:27:31 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Thu, 13 Apr 2000 07:27:31 -0700 (PDT) From: Message-Id: <200004131427.HAA72565@freefall.freebsd.org> To: mi@aldan.algebra.com, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17973: Wrong PORTVERSION for news/knews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Wrong PORTVERSION for news/knews State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Thu Apr 13 23:26:17 JST 2000 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 Thu Apr 13 7:40:24 2000 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 2F65037BD97 for ; Thu, 13 Apr 2000 07:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73797; Thu, 13 Apr 2000 07:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ipt2.iptelecom.net.ua (ipt2.iptelecom.net.ua [212.9.224.2]) by hub.freebsd.org (Postfix) with ESMTP id 0376637BB9A for ; Thu, 13 Apr 2000 07:38:06 -0700 (PDT) (envelope-from max@iptelecom.net.ua) Received: from vega.vega.com (dialup7-5.iptelecom.net.ua [212.9.227.133]) by ipt2.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id RAA00327 for ; Thu, 13 Apr 2000 17:44:00 +0300 (EEST) Received: (from max@localhost) by vega.vega.com (8.9.3/8.9.3) id RAA35489; Thu, 13 Apr 2000 17:37:25 +0300 (EEST) (envelope-from sobomax@altavista.net) Message-Id: <200004131437.RAA35489@vega.vega.com> Date: Thu, 13 Apr 2000 17:37:25 +0300 (EEST) From: "Maxim Sobolev" Reply-To: sobomax@altavista.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17975: [PATCH] Update of the PySol (games/pysol) port to the new 4.00 version Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17975 >Category: ports >Synopsis: [PATCH] Update of the PySol (games/pysol) port to the new 4.00 version >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 Apr 13 07:40:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Maxim Sobolev >Release: FreeBSD 3.4-STABLE i386 >Organization: Vega International Capital >Environment: >Description: Update of the PySol (games/pysol) port to the new 4.00 version >How-To-Repeat: >Fix: diff -ruN /usr/ports/games/pysol/Makefile pysol/Makefile --- /usr/ports/games/pysol/Makefile Thu Apr 6 09:46:50 2000 +++ pysol/Makefile Thu Apr 13 17:33:06 2000 @@ -1,12 +1,12 @@ # New ports collection makefile for: PySol -# Version required: 3.40 # Date created: 11 September 1998 # Whom: Thomas Gellekum # # $FreeBSD: ports/games/pysol/Makefile,v 1.25 2000/04/05 08:35:44 tg Exp $ # -DISTNAME= pysol-3.40 +PORTNAME= pysol +PORTVERSION= 4.00 CATEGORIES= games MASTER_SITES= http://wildsau.idv.uni-linz.ac.at/mfx/download/pysol/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${CARDSETS}${EXTRACT_SUFX} diff -ruN /usr/ports/games/pysol/files/md5 pysol/files/md5 --- /usr/ports/games/pysol/files/md5 Wed Feb 16 09:21:21 2000 +++ pysol/files/md5 Thu Apr 13 14:13:36 2000 @@ -1,2 +1,2 @@ -MD5 (pysol-3.40.tar.gz) = 4bf9aa5380ed1e41623cd0f55395eebc +MD5 (pysol-4.00.tar.gz) = df7417195334ce581557b749c0e466ed MD5 (pysol-cardsets-3.40.tar.gz) = e7eda702f3cd1ba319b5f254aeea32b7 diff -ruN /usr/ports/games/pysol/pkg/DESCR pysol/pkg/DESCR --- /usr/ports/games/pysol/pkg/DESCR Tue May 4 09:58:22 1999 +++ pysol/pkg/DESCR Thu Apr 13 17:32:11 2000 @@ -5,7 +5,7 @@ Highlights: ----------- - based upon an extensible solitaire engine - - currently supports 4 different games - expect more to come + - currently supports 173 different games - expect more to come - includes my all time favorite "Gypsy" - very nice look and feel - unlimited undo & redo @@ -20,4 +20,5 @@ Have fun, Markus -WWW: http://wildsau.idv.uni-linz.ac.at/mfx/pysol.html +WWW: http://pysol.tsx.org/ + http://wildsau.idv.uni-linz.ac.at/mfx/pysol.html diff -ruN /usr/ports/games/pysol/pkg/PLIST pysol/pkg/PLIST --- /usr/ports/games/pysol/pkg/PLIST Wed Feb 16 09:21:22 2000 +++ pysol/pkg/PLIST Thu Apr 13 14:45:56 2000 @@ -1513,6 +1513,175 @@ share/pysol/cardset-hegewald-1770/shadow11.gif share/pysol/cardset-hegewald-1770/shadow12.gif share/pysol/cardset-hegewald-1770/shadow13.gif +share/pysol/cardset-hexadeck/01c.gif +share/pysol/cardset-hexadeck/01d.gif +share/pysol/cardset-hexadeck/01h.gif +share/pysol/cardset-hexadeck/01s.gif +share/pysol/cardset-hexadeck/01z.gif +share/pysol/cardset-hexadeck/02c.gif +share/pysol/cardset-hexadeck/02d.gif +share/pysol/cardset-hexadeck/02h.gif +share/pysol/cardset-hexadeck/02s.gif +share/pysol/cardset-hexadeck/02z.gif +share/pysol/cardset-hexadeck/03c.gif +share/pysol/cardset-hexadeck/03d.gif +share/pysol/cardset-hexadeck/03h.gif +share/pysol/cardset-hexadeck/03s.gif +share/pysol/cardset-hexadeck/03z.gif +share/pysol/cardset-hexadeck/04c.gif +share/pysol/cardset-hexadeck/04d.gif +share/pysol/cardset-hexadeck/04h.gif +share/pysol/cardset-hexadeck/04s.gif +share/pysol/cardset-hexadeck/04z.gif +share/pysol/cardset-hexadeck/05c.gif +share/pysol/cardset-hexadeck/05d.gif +share/pysol/cardset-hexadeck/05h.gif +share/pysol/cardset-hexadeck/05s.gif +share/pysol/cardset-hexadeck/06c.gif +share/pysol/cardset-hexadeck/06d.gif +share/pysol/cardset-hexadeck/06h.gif +share/pysol/cardset-hexadeck/06s.gif +share/pysol/cardset-hexadeck/07c.gif +share/pysol/cardset-hexadeck/07d.gif +share/pysol/cardset-hexadeck/07h.gif +share/pysol/cardset-hexadeck/07s.gif +share/pysol/cardset-hexadeck/08c.gif +share/pysol/cardset-hexadeck/08d.gif +share/pysol/cardset-hexadeck/08h.gif +share/pysol/cardset-hexadeck/08s.gif +share/pysol/cardset-hexadeck/09c.gif +share/pysol/cardset-hexadeck/09d.gif +share/pysol/cardset-hexadeck/09h.gif +share/pysol/cardset-hexadeck/09s.gif +share/pysol/cardset-hexadeck/10c.gif +share/pysol/cardset-hexadeck/10d.gif +share/pysol/cardset-hexadeck/10h.gif +share/pysol/cardset-hexadeck/10s.gif +share/pysol/cardset-hexadeck/11c.gif +share/pysol/cardset-hexadeck/11d.gif +share/pysol/cardset-hexadeck/11h.gif +share/pysol/cardset-hexadeck/11s.gif +share/pysol/cardset-hexadeck/12c.gif +share/pysol/cardset-hexadeck/12d.gif +share/pysol/cardset-hexadeck/12h.gif +share/pysol/cardset-hexadeck/12s.gif +share/pysol/cardset-hexadeck/13c.gif +share/pysol/cardset-hexadeck/13d.gif +share/pysol/cardset-hexadeck/13h.gif +share/pysol/cardset-hexadeck/13s.gif +share/pysol/cardset-hexadeck/14c.gif +share/pysol/cardset-hexadeck/14d.gif +share/pysol/cardset-hexadeck/14h.gif +share/pysol/cardset-hexadeck/14s.gif +share/pysol/cardset-hexadeck/15c.gif +share/pysol/cardset-hexadeck/15d.gif +share/pysol/cardset-hexadeck/15h.gif +share/pysol/cardset-hexadeck/15s.gif +share/pysol/cardset-hexadeck/16c.gif +share/pysol/cardset-hexadeck/16d.gif +share/pysol/cardset-hexadeck/16h.gif +share/pysol/cardset-hexadeck/16s.gif +share/pysol/cardset-hexadeck/COPYRIGHT +share/pysol/cardset-hexadeck/back01.gif +share/pysol/cardset-hexadeck/bottom01.gif +share/pysol/cardset-hexadeck/bottom02.gif +share/pysol/cardset-hexadeck/bottom03.gif +share/pysol/cardset-hexadeck/bottom04.gif +share/pysol/cardset-hexadeck/bottom05.gif +share/pysol/cardset-hexadeck/bottom06.gif +share/pysol/cardset-hexadeck/bottom07.gif +share/pysol/cardset-hexadeck/bottom08.gif +share/pysol/cardset-hexadeck/config.txt +share/pysol/cardset-hexadeck/l01.gif +share/pysol/cardset-hexadeck/l02.gif +share/pysol/cardset-hexadeck/l03.gif +share/pysol/cardset-hexadeck/l04.gif +share/pysol/cardset-hexadeck/shade.gif +share/pysol/cardset-hexadeck/shadow00.gif +share/pysol/cardset-hexadeck/shadow01.gif +share/pysol/cardset-hexadeck/shadow02.gif +share/pysol/cardset-hexadeck/shadow03.gif +share/pysol/cardset-hexadeck/shadow04.gif +share/pysol/cardset-hexadeck/shadow05.gif +share/pysol/cardset-hexadeck/shadow06.gif +share/pysol/cardset-hexadeck/shadow07.gif +share/pysol/cardset-hexadeck/shadow08.gif +share/pysol/cardset-hexadeck/shadow09.gif +share/pysol/cardset-hexadeck/shadow10.gif +share/pysol/cardset-hexadeck/shadow11.gif +share/pysol/cardset-hexadeck/shadow12.gif +share/pysol/cardset-hexadeck/shadow13.gif +share/pysol/cardset-ivory-mahjongg-small/01a.gif +share/pysol/cardset-ivory-mahjongg-small/01b.gif +share/pysol/cardset-ivory-mahjongg-small/01c.gif +share/pysol/cardset-ivory-mahjongg-small/01z.gif +share/pysol/cardset-ivory-mahjongg-small/02a.gif +share/pysol/cardset-ivory-mahjongg-small/02b.gif +share/pysol/cardset-ivory-mahjongg-small/02c.gif +share/pysol/cardset-ivory-mahjongg-small/02z.gif +share/pysol/cardset-ivory-mahjongg-small/03a.gif +share/pysol/cardset-ivory-mahjongg-small/03b.gif +share/pysol/cardset-ivory-mahjongg-small/03c.gif +share/pysol/cardset-ivory-mahjongg-small/03z.gif +share/pysol/cardset-ivory-mahjongg-small/04a.gif +share/pysol/cardset-ivory-mahjongg-small/04b.gif +share/pysol/cardset-ivory-mahjongg-small/04c.gif +share/pysol/cardset-ivory-mahjongg-small/04z.gif +share/pysol/cardset-ivory-mahjongg-small/05a.gif +share/pysol/cardset-ivory-mahjongg-small/05b.gif +share/pysol/cardset-ivory-mahjongg-small/05c.gif +share/pysol/cardset-ivory-mahjongg-small/05z.gif +share/pysol/cardset-ivory-mahjongg-small/06a.gif +share/pysol/cardset-ivory-mahjongg-small/06b.gif +share/pysol/cardset-ivory-mahjongg-small/06c.gif +share/pysol/cardset-ivory-mahjongg-small/06z.gif +share/pysol/cardset-ivory-mahjongg-small/07a.gif +share/pysol/cardset-ivory-mahjongg-small/07b.gif +share/pysol/cardset-ivory-mahjongg-small/07c.gif +share/pysol/cardset-ivory-mahjongg-small/07z.gif +share/pysol/cardset-ivory-mahjongg-small/08a.gif +share/pysol/cardset-ivory-mahjongg-small/08b.gif +share/pysol/cardset-ivory-mahjongg-small/08c.gif +share/pysol/cardset-ivory-mahjongg-small/08z.gif +share/pysol/cardset-ivory-mahjongg-small/09a.gif +share/pysol/cardset-ivory-mahjongg-small/09b.gif +share/pysol/cardset-ivory-mahjongg-small/09c.gif +share/pysol/cardset-ivory-mahjongg-small/09z.gif +share/pysol/cardset-ivory-mahjongg-small/10a.gif +share/pysol/cardset-ivory-mahjongg-small/10b.gif +share/pysol/cardset-ivory-mahjongg-small/10c.gif +share/pysol/cardset-ivory-mahjongg-small/10z.gif +share/pysol/cardset-ivory-mahjongg-small/11z.gif +share/pysol/cardset-ivory-mahjongg-small/12z.gif +share/pysol/cardset-ivory-mahjongg-small/COPYRIGHT +share/pysol/cardset-ivory-mahjongg-small/back01.gif +share/pysol/cardset-ivory-mahjongg-small/bottom01.gif +share/pysol/cardset-ivory-mahjongg-small/bottom02.gif +share/pysol/cardset-ivory-mahjongg-small/bottom03.gif +share/pysol/cardset-ivory-mahjongg-small/bottom04.gif +share/pysol/cardset-ivory-mahjongg-small/bottom05.gif +share/pysol/cardset-ivory-mahjongg-small/bottom06.gif +share/pysol/cardset-ivory-mahjongg-small/bottom07.gif +share/pysol/cardset-ivory-mahjongg-small/config.txt +share/pysol/cardset-ivory-mahjongg-small/l01.gif +share/pysol/cardset-ivory-mahjongg-small/l02.gif +share/pysol/cardset-ivory-mahjongg-small/l03.gif +share/pysol/cardset-ivory-mahjongg-small/l04.gif +share/pysol/cardset-ivory-mahjongg-small/shade.gif +share/pysol/cardset-ivory-mahjongg-small/shadow00.gif +share/pysol/cardset-ivory-mahjongg-small/shadow01.gif +share/pysol/cardset-ivory-mahjongg-small/shadow02.gif +share/pysol/cardset-ivory-mahjongg-small/shadow03.gif +share/pysol/cardset-ivory-mahjongg-small/shadow04.gif +share/pysol/cardset-ivory-mahjongg-small/shadow05.gif +share/pysol/cardset-ivory-mahjongg-small/shadow06.gif +share/pysol/cardset-ivory-mahjongg-small/shadow07.gif +share/pysol/cardset-ivory-mahjongg-small/shadow08.gif +share/pysol/cardset-ivory-mahjongg-small/shadow09.gif +share/pysol/cardset-ivory-mahjongg-small/shadow10.gif +share/pysol/cardset-ivory-mahjongg-small/shadow11.gif +share/pysol/cardset-ivory-mahjongg-small/shadow12.gif +share/pysol/cardset-ivory-mahjongg-small/shadow13.gif share/pysol/cardset-jacoby/01c.gif share/pysol/cardset-jacoby/01d.gif share/pysol/cardset-jacoby/01h.gif @@ -1861,6 +2030,77 @@ share/pysol/cardset-kintengu/shadow11.gif share/pysol/cardset-kintengu/shadow12.gif share/pysol/cardset-kintengu/shadow13.gif +share/pysol/cardset-kmahjongg/01a.gif +share/pysol/cardset-kmahjongg/01b.gif +share/pysol/cardset-kmahjongg/01c.gif +share/pysol/cardset-kmahjongg/01z.gif +share/pysol/cardset-kmahjongg/02a.gif +share/pysol/cardset-kmahjongg/02b.gif +share/pysol/cardset-kmahjongg/02c.gif +share/pysol/cardset-kmahjongg/02z.gif +share/pysol/cardset-kmahjongg/03a.gif +share/pysol/cardset-kmahjongg/03b.gif +share/pysol/cardset-kmahjongg/03c.gif +share/pysol/cardset-kmahjongg/03z.gif +share/pysol/cardset-kmahjongg/04a.gif +share/pysol/cardset-kmahjongg/04b.gif +share/pysol/cardset-kmahjongg/04c.gif +share/pysol/cardset-kmahjongg/04z.gif +share/pysol/cardset-kmahjongg/05a.gif +share/pysol/cardset-kmahjongg/05b.gif +share/pysol/cardset-kmahjongg/05c.gif +share/pysol/cardset-kmahjongg/05z.gif +share/pysol/cardset-kmahjongg/06a.gif +share/pysol/cardset-kmahjongg/06b.gif +share/pysol/cardset-kmahjongg/06c.gif +share/pysol/cardset-kmahjongg/06z.gif +share/pysol/cardset-kmahjongg/07a.gif +share/pysol/cardset-kmahjongg/07b.gif +share/pysol/cardset-kmahjongg/07c.gif +share/pysol/cardset-kmahjongg/07z.gif +share/pysol/cardset-kmahjongg/08a.gif +share/pysol/cardset-kmahjongg/08b.gif +share/pysol/cardset-kmahjongg/08c.gif +share/pysol/cardset-kmahjongg/08z.gif +share/pysol/cardset-kmahjongg/09a.gif +share/pysol/cardset-kmahjongg/09b.gif +share/pysol/cardset-kmahjongg/09c.gif +share/pysol/cardset-kmahjongg/09z.gif +share/pysol/cardset-kmahjongg/10a.gif +share/pysol/cardset-kmahjongg/10b.gif +share/pysol/cardset-kmahjongg/10c.gif +share/pysol/cardset-kmahjongg/10z.gif +share/pysol/cardset-kmahjongg/11z.gif +share/pysol/cardset-kmahjongg/12z.gif +share/pysol/cardset-kmahjongg/COPYRIGHT +share/pysol/cardset-kmahjongg/back01.gif +share/pysol/cardset-kmahjongg/bottom01.gif +share/pysol/cardset-kmahjongg/bottom02.gif +share/pysol/cardset-kmahjongg/bottom03.gif +share/pysol/cardset-kmahjongg/bottom04.gif +share/pysol/cardset-kmahjongg/bottom05.gif +share/pysol/cardset-kmahjongg/bottom06.gif +share/pysol/cardset-kmahjongg/bottom07.gif +share/pysol/cardset-kmahjongg/config.txt +share/pysol/cardset-kmahjongg/l01.gif +share/pysol/cardset-kmahjongg/l02.gif +share/pysol/cardset-kmahjongg/l03.gif +share/pysol/cardset-kmahjongg/l04.gif +share/pysol/cardset-kmahjongg/shade.gif +share/pysol/cardset-kmahjongg/shadow00.gif +share/pysol/cardset-kmahjongg/shadow01.gif +share/pysol/cardset-kmahjongg/shadow02.gif +share/pysol/cardset-kmahjongg/shadow03.gif +share/pysol/cardset-kmahjongg/shadow04.gif +share/pysol/cardset-kmahjongg/shadow05.gif +share/pysol/cardset-kmahjongg/shadow06.gif +share/pysol/cardset-kmahjongg/shadow07.gif +share/pysol/cardset-kmahjongg/shadow08.gif +share/pysol/cardset-kmahjongg/shadow09.gif +share/pysol/cardset-kmahjongg/shadow10.gif +share/pysol/cardset-kmahjongg/shadow11.gif +share/pysol/cardset-kmahjongg/shadow12.gif +share/pysol/cardset-kmahjongg/shadow13.gif share/pysol/cardset-maritimes/01c.gif share/pysol/cardset-maritimes/01d.gif share/pysol/cardset-maritimes/01h.gif @@ -3920,6 +4160,114 @@ share/pysol/cardset-tuxedo/shadow11.gif share/pysol/cardset-tuxedo/shadow12.gif share/pysol/cardset-tuxedo/shadow13.gif +share/pysol/cardset-vienna-2k/01c.gif +share/pysol/cardset-vienna-2k/01d.gif +share/pysol/cardset-vienna-2k/01h.gif +share/pysol/cardset-vienna-2k/01s.gif +share/pysol/cardset-vienna-2k/01z.gif +share/pysol/cardset-vienna-2k/02c.gif +share/pysol/cardset-vienna-2k/02d.gif +share/pysol/cardset-vienna-2k/02h.gif +share/pysol/cardset-vienna-2k/02s.gif +share/pysol/cardset-vienna-2k/02z.gif +share/pysol/cardset-vienna-2k/03c.gif +share/pysol/cardset-vienna-2k/03d.gif +share/pysol/cardset-vienna-2k/03h.gif +share/pysol/cardset-vienna-2k/03s.gif +share/pysol/cardset-vienna-2k/03z.gif +share/pysol/cardset-vienna-2k/04c.gif +share/pysol/cardset-vienna-2k/04d.gif +share/pysol/cardset-vienna-2k/04h.gif +share/pysol/cardset-vienna-2k/04s.gif +share/pysol/cardset-vienna-2k/04z.gif +share/pysol/cardset-vienna-2k/05c.gif +share/pysol/cardset-vienna-2k/05d.gif +share/pysol/cardset-vienna-2k/05h.gif +share/pysol/cardset-vienna-2k/05s.gif +share/pysol/cardset-vienna-2k/05z.gif +share/pysol/cardset-vienna-2k/06c.gif +share/pysol/cardset-vienna-2k/06d.gif +share/pysol/cardset-vienna-2k/06h.gif +share/pysol/cardset-vienna-2k/06s.gif +share/pysol/cardset-vienna-2k/06z.gif +share/pysol/cardset-vienna-2k/07c.gif +share/pysol/cardset-vienna-2k/07d.gif +share/pysol/cardset-vienna-2k/07h.gif +share/pysol/cardset-vienna-2k/07s.gif +share/pysol/cardset-vienna-2k/07z.gif +share/pysol/cardset-vienna-2k/08c.gif +share/pysol/cardset-vienna-2k/08d.gif +share/pysol/cardset-vienna-2k/08h.gif +share/pysol/cardset-vienna-2k/08s.gif +share/pysol/cardset-vienna-2k/08z.gif +share/pysol/cardset-vienna-2k/09c.gif +share/pysol/cardset-vienna-2k/09d.gif +share/pysol/cardset-vienna-2k/09h.gif +share/pysol/cardset-vienna-2k/09s.gif +share/pysol/cardset-vienna-2k/09z.gif +share/pysol/cardset-vienna-2k/10c.gif +share/pysol/cardset-vienna-2k/10d.gif +share/pysol/cardset-vienna-2k/10h.gif +share/pysol/cardset-vienna-2k/10s.gif +share/pysol/cardset-vienna-2k/10z.gif +share/pysol/cardset-vienna-2k/11c.gif +share/pysol/cardset-vienna-2k/11d.gif +share/pysol/cardset-vienna-2k/11h.gif +share/pysol/cardset-vienna-2k/11s.gif +share/pysol/cardset-vienna-2k/11z.gif +share/pysol/cardset-vienna-2k/12c.gif +share/pysol/cardset-vienna-2k/12d.gif +share/pysol/cardset-vienna-2k/12h.gif +share/pysol/cardset-vienna-2k/12s.gif +share/pysol/cardset-vienna-2k/12z.gif +share/pysol/cardset-vienna-2k/13c.gif +share/pysol/cardset-vienna-2k/13d.gif +share/pysol/cardset-vienna-2k/13h.gif +share/pysol/cardset-vienna-2k/13s.gif +share/pysol/cardset-vienna-2k/13z.gif +share/pysol/cardset-vienna-2k/14c.gif +share/pysol/cardset-vienna-2k/14d.gif +share/pysol/cardset-vienna-2k/14h.gif +share/pysol/cardset-vienna-2k/14s.gif +share/pysol/cardset-vienna-2k/14z.gif +share/pysol/cardset-vienna-2k/15z.gif +share/pysol/cardset-vienna-2k/16z.gif +share/pysol/cardset-vienna-2k/17z.gif +share/pysol/cardset-vienna-2k/18z.gif +share/pysol/cardset-vienna-2k/19z.gif +share/pysol/cardset-vienna-2k/20z.gif +share/pysol/cardset-vienna-2k/21z.gif +share/pysol/cardset-vienna-2k/22z.gif +share/pysol/cardset-vienna-2k/COPYRIGHT +share/pysol/cardset-vienna-2k/back01.gif +share/pysol/cardset-vienna-2k/bottom01.gif +share/pysol/cardset-vienna-2k/bottom02.gif +share/pysol/cardset-vienna-2k/bottom03.gif +share/pysol/cardset-vienna-2k/bottom04.gif +share/pysol/cardset-vienna-2k/bottom05.gif +share/pysol/cardset-vienna-2k/bottom06.gif +share/pysol/cardset-vienna-2k/bottom07.gif +share/pysol/cardset-vienna-2k/bottom08.gif +share/pysol/cardset-vienna-2k/config.txt +share/pysol/cardset-vienna-2k/l01.gif +share/pysol/cardset-vienna-2k/l02.gif +share/pysol/cardset-vienna-2k/l03.gif +share/pysol/cardset-vienna-2k/l04.gif +share/pysol/cardset-vienna-2k/shade.gif +share/pysol/cardset-vienna-2k/shadow00.gif +share/pysol/cardset-vienna-2k/shadow01.gif +share/pysol/cardset-vienna-2k/shadow02.gif +share/pysol/cardset-vienna-2k/shadow03.gif +share/pysol/cardset-vienna-2k/shadow04.gif +share/pysol/cardset-vienna-2k/shadow05.gif +share/pysol/cardset-vienna-2k/shadow06.gif +share/pysol/cardset-vienna-2k/shadow07.gif +share/pysol/cardset-vienna-2k/shadow08.gif +share/pysol/cardset-vienna-2k/shadow09.gif +share/pysol/cardset-vienna-2k/shadow10.gif +share/pysol/cardset-vienna-2k/shadow11.gif +share/pysol/cardset-vienna-2k/shadow12.gif +share/pysol/cardset-vienna-2k/shadow13.gif share/pysol/cardset-wilhelmtell/01c.gif share/pysol/cardset-wilhelmtell/01d.gif share/pysol/cardset-wilhelmtell/01h.gif @@ -4632,6 +4980,7 @@ share/pysol/html/index.html share/pysol/html/install.html share/pysol/html/intro.html +share/pysol/html/news.html share/pysol/html/rules.html share/pysol/html/rules/8x8.html share/pysol/html/rules/acesup.html @@ -4674,6 +5023,7 @@ share/pysol/html/rules/dieschlange.html share/pysol/html/rules/diplomat.html share/pysol/html/rules/doublecanfield.html +share/pysol/html/rules/doublegrasshopper.html share/pysol/html/rules/doubleklondike.html share/pysol/html/rules/doubleklondikebythrees.html share/pysol/html/rules/doublerail.html @@ -4683,11 +5033,15 @@ share/pysol/html/rules/eiffeltower.html share/pysol/html/rules/eightoff.html share/pysol/html/rules/elevator.html +share/pysol/html/rules/excuse.html share/pysol/html/rules/fallingstar.html share/pysol/html/rules/fan.html +share/pysol/html/rules/fifteenplus.html share/pysol/html/rules/flowerclock.html +share/pysol/html/rules/flyingdragon.html share/pysol/html/rules/forecell.html share/pysol/html/rules/fortress.html +share/pysol/html/rules/fortresstowers.html share/pysol/html/rules/fortyandeight.html share/pysol/html/rules/fortythieves.html share/pysol/html/rules/fourteen.html @@ -4701,12 +5055,14 @@ share/pysol/html/rules/goodmeasure.html share/pysol/html/rules/grandfathersclock.html share/pysol/html/rules/grandmothersgame.html +share/pysol/html/rules/grasshopper.html share/pysol/html/rules/greatwall.html share/pysol/html/rules/griffon.html share/pysol/html/rules/groundforadivorce.html share/pysol/html/rules/gypsy.html share/pysol/html/rules/hopscotch.html share/pysol/html/rules/indian.html +share/pysol/html/rules/imperialtrumps.html share/pysol/html/rules/interregnum.html share/pysol/html/rules/irmgard.html share/pysol/html/rules/kingdom.html @@ -4737,6 +5093,7 @@ share/pysol/html/rules/odessa.html share/pysol/html/rules/oonsoo.html share/pysol/html/rules/osmosis.html +share/pysol/html/rules/pagat.html share/pysol/html/rules/pagoda.html share/pysol/html/rules/pasdedeux.html share/pysol/html/rules/passeul.html @@ -4769,6 +5126,7 @@ share/pysol/html/rules/simplecarlo.html share/pysol/html/rules/simplepairs.html share/pysol/html/rules/simplesimon.html +share/pysol/html/rules/skiz.html share/pysol/html/rules/smallharp.html share/pysol/html/rules/spaces.html share/pysol/html/rules/spanishpatience.html @@ -4791,6 +5149,7 @@ share/pysol/html/rules/vegasklondike.html share/pysol/html/rules/waningmoon.html share/pysol/html/rules/westcliff.html +share/pysol/html/rules/wheeloffortune.html share/pysol/html/rules/whitehead.html share/pysol/html/rules/willothewisp.html share/pysol/html/rules/windmill.html @@ -4800,6 +5159,11 @@ share/pysol/html/rules_french.html share/pysol/html/rules_german.html share/pysol/html/todo.html +share/pysol/images/demo/demo01.gif +share/pysol/images/demo/demo02.gif +share/pysol/images/demo/demo03.gif +share/pysol/images/demo/demo04.gif +share/pysol/images/demo/demo05.gif share/pysol/images/jokers/joker07_40_774.gif share/pysol/images/jokers/joker07_50_774.gif share/pysol/images/jokers/joker08_40_774.gif @@ -4865,26 +5229,6 @@ share/pysol/toolbar/empty-large/save.gif share/pysol/toolbar/empty-large/stats.gif share/pysol/toolbar/empty-large/undo.gif -share/pysol/toolbar/gnome-large/autodrop.gif -share/pysol/toolbar/gnome-large/new.gif -share/pysol/toolbar/gnome-large/open.gif -share/pysol/toolbar/gnome-large/quit.gif -share/pysol/toolbar/gnome-large/redo.gif -share/pysol/toolbar/gnome-large/restart.gif -share/pysol/toolbar/gnome-large/rules.gif -share/pysol/toolbar/gnome-large/save.gif -share/pysol/toolbar/gnome-large/stats.gif -share/pysol/toolbar/gnome-large/undo.gif -share/pysol/toolbar/gnome/autodrop.gif -share/pysol/toolbar/gnome/new.gif -share/pysol/toolbar/gnome/open.gif -share/pysol/toolbar/gnome/quit.gif -share/pysol/toolbar/gnome/redo.gif -share/pysol/toolbar/gnome/restart.gif -share/pysol/toolbar/gnome/rules.gif -share/pysol/toolbar/gnome/save.gif -share/pysol/toolbar/gnome/stats.gif -share/pysol/toolbar/gnome/undo.gif share/pysol/toolbar/kde-large/autodrop.gif share/pysol/toolbar/kde-large/new.gif share/pysol/toolbar/kde-large/open.gif @@ -4895,21 +5239,8 @@ share/pysol/toolbar/kde-large/save.gif share/pysol/toolbar/kde-large/stats.gif share/pysol/toolbar/kde-large/undo.gif -share/pysol/toolbar/kde/autodrop.gif -share/pysol/toolbar/kde/new.gif -share/pysol/toolbar/kde/open.gif -share/pysol/toolbar/kde/quit.gif -share/pysol/toolbar/kde/redo.gif -share/pysol/toolbar/kde/restart.gif -share/pysol/toolbar/kde/rules.gif -share/pysol/toolbar/kde/save.gif -share/pysol/toolbar/kde/stats.gif -share/pysol/toolbar/kde/undo.gif @exec mkdir %D/share/pysol/plugins || true @dirrm share/pysol/toolbar/kde-large -@dirrm share/pysol/toolbar/kde -@dirrm share/pysol/toolbar/gnome-large -@dirrm share/pysol/toolbar/gnome @dirrm share/pysol/toolbar/empty-large @dirrm share/pysol/toolbar @dirrm share/pysol/tiles @@ -4919,6 +5250,7 @@ @dirrm share/pysol/music @dirrm share/pysol/images/tree @dirrm share/pysol/images/jokers +@dirrm share/pysol/images/demo @dirrm share/pysol/images @dirrm share/pysol/html/rules @dirrm share/pysol/html @@ -4930,6 +5262,7 @@ @dirrm share/pysol/cardset-xpat2-nox-large @dirrm share/pysol/cardset-xpat2 @dirrm share/pysol/cardset-wilhelmtell +@dirrm share/pysol/cardset-vienna-2k @dirrm share/pysol/cardset-tuxedo @dirrm share/pysol/cardset-traugott-1834 @dirrm share/pysol/cardset-traugott-1800 @@ -4954,10 +5287,13 @@ @dirrm share/pysol/cardset-naylor @dirrm share/pysol/cardset-melange @dirrm share/pysol/cardset-maritimes +@dirrm share/pysol/cardset-kmahjongg @dirrm share/pysol/cardset-kintengu-small @dirrm share/pysol/cardset-kintengu @dirrm share/pysol/cardset-kabale @dirrm share/pysol/cardset-jacoby +@dirrm share/pysol/cardset-ivory-mahjongg-small +@dirrm share/pysol/cardset-hexadeck @dirrm share/pysol/cardset-hegewald-1770 @dirrm share/pysol/cardset-hamburg-b @dirrm share/pysol/cardset-hamburg-a >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 Apr 13 7:50: 5 2000 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 E2DD437BD6B for ; Thu, 13 Apr 2000 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA75114; Thu, 13 Apr 2000 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from libagent.cs.technion.ac.il (libagent.cs.technion.ac.il [132.68.32.100]) by hub.freebsd.org (Postfix) with ESMTP id 1491137BB9A for ; Thu, 13 Apr 2000 07:46:10 -0700 (PDT) (envelope-from dpelleg@libagent.cs.technion.ac.il) Received: (from dpelleg@localhost) by libagent.cs.technion.ac.il (8.9.3/8.9.3) id QAA03103; Thu, 13 Apr 2000 16:46:49 +0200 (IST) (envelope-from dpelleg) Message-Id: <200004131446.QAA03103@libagent.cs.technion.ac.il> Date: Thu, 13 Apr 2000 16:46:49 +0200 (IST) From: libagent@cs.technion.ac.il Reply-To: libagent@cs.technion.ac.il To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17976: p5-Date-Manip-5.35 messing up permissions Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17976 >Category: ports >Synopsis: p5-Date-Manip-5.35 messing up permissions >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: Thu Apr 13 07:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Library Book Extensions >Release: FreeBSD 3.4-RELEASE i386 >Organization: >Environment: $FreeBSD: ports/devel/p5-Date-Manip/Makefile,v 1.11 1999/11/10 08:00:39 ache Exp $ $FreeBSD: ports/devel/p5-Date-Calc/Makefile,v 1.1 2000/02/25 16:34:14 ade Exp $ >Description: Installing p5-Date-Manip leaves the following directory readable only by root: /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/auto/Date installing subsequent files under this directory makes the respective perl packages inaccesssible to users. >How-To-Repeat: install p5-Date-Manip-5.35 install p5-Date-Calc-4.3 perl -MDate::Calc -e 1 (as root) perl -MDate::Calc -e 1 (as a mortal) >Fix: Workaround: manually change the directory's permission after the install. A complete solution would probably be to package the files properly. >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 Apr 13 8:38: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from iclub.nsu.ru (iclub.nsu.ru [193.124.222.66]) by hub.freebsd.org (Postfix) with ESMTP id CABA937B6B8 for ; Thu, 13 Apr 2000 08:37:52 -0700 (PDT) (envelope-from fjoe@iclub.nsu.ru) Received: from localhost (fjoe@localhost) by iclub.nsu.ru (8.9.3/8.9.3) with ESMTP id WAA18216 for ; Thu, 13 Apr 2000 22:37:47 +0700 (NSS) (envelope-from fjoe@iclub.nsu.ru) Date: Thu, 13 Apr 2000 22:37:47 +0700 (NSS) From: Max Khon To: ports@freebsd.org Subject: ACE wrappers 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, there! Is there anyone who built ACE wrappers + TAO successfully and got it working properly under RELENG_4? I have strange problems when using native C++ exceptions. The same stuff under 3.4-STABLE (with g++295) works flawlessly. /fjoe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 9:20:14 2000 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 EE75437BB04 for ; Thu, 13 Apr 2000 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA84859; Thu, 13 Apr 2000 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ipt2.iptelecom.net.ua (ipt2.iptelecom.net.ua [212.9.224.2]) by hub.freebsd.org (Postfix) with ESMTP id 1DD0A37B61D for ; Thu, 13 Apr 2000 09:15:20 -0700 (PDT) (envelope-from max@iptelecom.net.ua) Received: from vega.vega.com (dialup2-25.iptelecom.net.ua [212.9.226.89]) by ipt2.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id TAA18597 for ; Thu, 13 Apr 2000 19:21:18 +0300 (EEST) Received: (from max@localhost) by vega.vega.com (8.9.3/8.9.3) id TAA36049; Thu, 13 Apr 2000 19:14:44 +0300 (EEST) (envelope-from sobomax@altavista.net) Message-Id: <200004131614.TAA36049@vega.vega.com> Date: Thu, 13 Apr 2000 19:14:44 +0300 (EEST) From: "Maxim Sobolev" Reply-To: sobomax@altavista.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17977: [NEW PORT] New port of IDLE - an Integrated DeveLopment Environment for Python. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17977 >Category: ports >Synopsis: [NEW PORT] New port of IDLE - an Integrated DeveLopment Environment for Python. >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 Apr 13 09:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Maxim Sobolev >Release: FreeBSD 3.4-STABLE i386 >Organization: Vega International Capital >Environment: >Description: New port of IDLE - an Integrated DeveLopment Environment for Python. >How-To-Repeat: >Fix: begin 644 idle-port.tar.gz M'XL("";Q]3@"`VED;&4M<&]R="YT87(`[5GK;]I($.=K_%=LFZAJ*P4P#W-! M3:\$.RTJ+]ENJ4Z5T.)=S);%:]E+2"[*_WYC`WG8AM-]2-*+/%*,F=_L:V;G M%1CAM%1X7$*U1P4443GQN?F"&B!3;90K*KRKY7*C44#UPA/0,I0X0*@0 M""'WR:UFE/+"BR,6V7_*.`U+OX']U6JC$=E?K:AJ;O\GMO^"/)+"P9VU6FV/ M_34M:7]-*Q=0.;?_HU-/KZ.WT24X+A?K1>G^_0Z=HC_JE4F5G-1/*E-242?E MR@FI$4*G-8>HCJ95E4).+\G__;G[F#7`?XG_-56+\K^FU?/X_Z3V;P]Z/:-O M/TO\;VSMKU7@$<7_1KV6Q_^GH([>-=`QPA[J>)*Z`9:4()U>T*[P%]23R/`N M6""\^'TJ`C2\DC/AY1G@I?F_;EAM\WGJ/[5:O?/_6ES_U2M:[O^_L?\7%64T M&C713$J_62JM5JNBOP9$X);B2Y6'B/^5_P^['B M_C_W_\>G"?-B=U7"&0YHB0AG[;U]8V05Y:5,\DVCI?>,+,0>Z(,L/KV4U"/W MD)C;6DIA7/H8$/_*22(=CT"\22)GS"/,<\,DOXTYMYD_`EBL=H#I01R'X5D@ M5B$-4IC@(M`IIRZ6(H7J=+)T79K!WS'`(`RXV=L[9YQV69@ZZ[D(%E@.<8`A M)ONS%!S@!?W.Z"J]C<\!]76&N7"32&>PT6`*<(07EJ:"$YC.9=,TMF#>,O0$ MH=FP\*FW;[C/]XW>9(Y,3,Y3?'A\`8V)X"IU#G@,`SI-&;NWY))93B`XIR12 M]PX)B>4R/,,IG0XFOZ@C=]R6`2]A9SA] MBC5N>"[S,C`?W"%#(WNT;PL1>7^*'5`Z8L2EJ9-]`SOM=.3U$),2%L!UR,(C M*VG%Z1#&>"KWR2$I8TE$[DXA'_$V@H6*"D-Z?Y#SG;G)&7CD];__7PG$:_ M`12>I?ZKE.NUV]__:JH:UW^U_/__3T*'J$]7R!>!#)$3Q7M',N&AQ>9&1"U? M,S)2[):'2(?^$#D!C=K$)KIKX%'+#Q@'4Y;+(#6:B<4=NJ4>OF0+9(F)@&B# M/H3PLL"7GS"7^`)")BYZ5'Y4#F'\T3G$YS-+;R(H$=$1\)3AP+3[K9YQNIDL MWD_$_&Z85F?0/STH%^M*NV4;GP=FQ[!.#PB$-*[T6I9MF&.K8T>\?>VJ\<,V M6VU[;'T[_W%Z$/T4HL#H3M^&/\,\/F5\M MLWT33\X\.!'GT?2?CJY[7Z/=@,C0-,X[/VY*J4@.8@ZYFP.]>;-=OM.W[%:W M.]9;=NL&O8>E_D3;Y)0YXWK)A\-N)]Z4@>__92]P^SPY1:\/7\4*"6<_O5U: MRIQHFRE_>J_7Y_BXWD)LE!@,9P_W:;7-SM"^28O=6^"VN2JR*7H%N12J&O*V M/XCLK0_:UKN]VK[-AAFZ3NIKVZZAN_X,;1NR]8'NVK#="Q5!`HIMV*[G\"6A ?Z,,DA$(#@D-Q,?^89^6<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 Apr 13 9:30: 6 2000 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 E83B437B6B8 for ; Thu, 13 Apr 2000 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA86033; Thu, 13 Apr 2000 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (silvercube.silverpix.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id 58E3C37BE1D; Thu, 13 Apr 2000 09:24:27 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id MAA23294; Thu, 13 Apr 2000 12:23:18 -0400 (EDT) Received: (from mi@localhost) by misha.privatelabs.com (8.9.3/8.9.3) id MAA16822; Thu, 13 Apr 2000 12:24:12 -0400 (EDT) (envelope-from mi) Message-Id: <200004131624.MAA16822@misha.privatelabs.com> Date: Thu, 13 Apr 2000 12:24:12 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@privatelabs.com To: FreeBSD-gnats-submit@freebsd.org Cc: peter@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17978: More patches for www/squid23 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17978 >Category: ports >Synopsis: More patches for www/squid23 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Apr 13 09:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.0-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: The port's patch site has several more bugs reported, most of them with patches... >How-To-Repeat: >Fix: --- Makefile.old Mon Apr 10 16:21:22 2000 +++ Makefile Thu Apr 13 12:11:08 2000 @@ -20,2 +20,8 @@ PATCHFILES= squid-2.3.stable2-EOF_in_cf.data.pre.patch \ + squid-2.3.stable2-mimeGetIconURL_returns_NULL.patch \ + squid-2.3.stable2-redirected_username_logging.patch \ + squid-2.3.stable2-getMyHostname.patch \ + squid-2.3.stable2-netdb_exchange_loop.patch \ + squid-2.3.stable2-hostname_whitespace.patch \ + squid-2.3.stable2-USE_DNSSERVER_part2.patch \ squid-2.3.stable2-USE_DNSSERVER.patch @@ -25,3 +31,3 @@ DIST_SUBDIR= squid2.3 -PATCH_DIST_STRIP= -p0 +PATCH_DIST_STRIP= -p1 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 Thu Apr 13 9:32:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fuggle.veldy.net (veldy-host201.dsl.visi.com [208.42.48.201]) by hub.freebsd.org (Postfix) with ESMTP id BFA7C37B5E3 for ; Thu, 13 Apr 2000 09:32:34 -0700 (PDT) (envelope-from veldy@veldy.net) Received: from 95CTJ (unknown [208.238.139.52]) by fuggle.veldy.net (Postfix) with SMTP id 86FFD159 for ; Thu, 13 Apr 2000 11:34:43 -0500 (CDT) Message-ID: <00f301bfa565$c7a6f1b0$dd29680a@tgt.com> From: "Thomas T. Veldhouse" To: Subject: Broken Apache-PHP ports!! Date: Thu, 13 Apr 2000 11:31:54 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org apache+php-1.3.12+3.0.16: You need to define PORTNAME and PORTVERSION instead of PKGNAME. *** Error code 1 Stop. *** Error code 1 Stop in /usr/ports/www/apache13-php3. *** Error code 1 Stop in /usr/ports/www/apache13-php3. *** Error code 1 Stop in /usr/ports/www/apache13-php3. *** Error code 1 Stop in /usr/ports/www/apache13-php3. *** Error code 1 Stop in /usr/ports/www/apache13-php3. *** Error code 1 Stop in /usr/ports/www/apache13-php3. This happens for php4 also. Thanks in advance, Tom Veldhouse veldy@veldy.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 9:35:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from atlrel1.hp.com (atlrel1.hp.com [156.153.255.210]) by hub.freebsd.org (Postfix) with ESMTP id B690337B8A7; Thu, 13 Apr 2000 09:35:21 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by atlrel1.hp.com (Postfix) with ESMTP id 23BF6E5D5; Thu, 13 Apr 2000 12:35:18 -0400 (EDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com with ESMTP (8.8.6 (PHNE_17135)/8.7.3 TIS 5.0.1) id JAA05631; Thu, 13 Apr 2000 09:35:16 -0700 (PDT) Message-ID: <38F5F745.AA0BE917@cup.hp.com> Date: Thu, 13 Apr 2000 09:35:17 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: John Daniels Cc: freebsd-emulation@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: linux application References: <20000413054014.2411.qmail@hotmail.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org John Daniels wrote: > This is supposed to run under Linux, so I believe that the libraries were > probably compiled under Linux, and are expecting to be called from programs > running under Linux. > > Will all of this run without modification due to FreeBSD's Linux > compatibility? Are there compiler options that I have to use to make this > work? (Obviously, I never done anything like this before) You can't use FreeBSD's compiler for this. You must use a Linux compiler (you need to make Linux binaries). > I have looked at Makefiles for Linux ports and they specify linux libraries > and the Linux-base package as necessary. Don't these specifications get > passed through to the compiler? Forget the ports collection. After you've setup /compat/linux (install linux_base and linux_devtools) you will only be using Linux binaries to do the compilation. You should be able to do it just as if you were on a Linux machine yourself. > Basically, what do I have to do to create/compile/run programs that use > libraries developed on Linux. 1. Use a linux shell (ie run /compat/linux/bin/sh) 2. Create a C/C++ source file 3. Optionally create a makefile 4. Build/compile the source file 5. Run the freshly compiled binary Ad 4: Compiling a Linux binary is as simple as typing "gcc -o foo foo.c", but only when done from within a Linux shell (see 1) Your manual should describe any options/parameters/libraries you need to add to use the API. HTH, -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 10: 9:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 22CF137B8A7 for ; Thu, 13 Apr 2000 10:09:38 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (pc343042.tokyo.jcom.ne.jp [203.140.143.42]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 03/13/00) with ESMTP id CAA07326; Fri, 14 Apr 2000 02:09:18 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id CAA24370; Fri, 14 Apr 2000 02:08:46 +0900 (JST) Date: Fri, 14 Apr 2000 02:08:45 +0900 Message-ID: <86puruszc2.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: veldy@veldy.net Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Broken Apache-PHP ports!! In-Reply-To: In your message of "Thu, 13 Apr 2000 11:31:54 -0500" <00f301bfa565$c7a6f1b0$dd29680a@tgt.com> References: <00f301bfa565$c7a6f1b0$dd29680a@tgt.com> User-Agent: Wanderlust/1.1.1 (Purple Rain) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Thu, 13 Apr 2000 11:31:54 -0500, Thomas T. Veldhouse wrote: > apache+php-1.3.12+3.0.16: You need to define PORTNAME and PORTVERSION > instead of > PKGNAME. Seems to me that your ports tree is somewhat old. Anyway, conversion is still under way and the tree tends to be inconsistent until everything's done. I cannot tell when, but we've been working hard. Sorry for the inconvenience. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 10:33:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from phnxpop4.phnx.uswest.net (phnxpop4.phnx.uswest.net [206.80.192.4]) by hub.freebsd.org (Postfix) with SMTP id EDB0C37BB37 for ; Thu, 13 Apr 2000 10:33:44 -0700 (PDT) (envelope-from rcarter@pinyon.org) Received: (qmail 5058 invoked by alias); 13 Apr 2000 17:28:29 -0000 Delivered-To: fixup-ports@FreeBSD.ORG@fixme Received: (qmail 2737 invoked by uid 0); 13 Apr 2000 17:27:42 -0000 Received: from ndslppp34.phnx.uswest.net (HELO pinyon.org) (63.224.136.34) by phnxpop4.phnx.uswest.net with SMTP; 13 Apr 2000 17:27:42 -0000 Received: from chomsky.Pinyon.ORG (localhost [127.0.0.1]) by pinyon.org (Postfix) with ESMTP id 07E856D; Thu, 13 Apr 2000 10:27:37 -0700 (MST) X-Mailer: exmh version 2.1.0 09/18/1999 To: Max Khon Cc: ports@FreeBSD.ORG Subject: Re: ACE wrappers In-Reply-To: Message from Max Khon of "Thu, 13 Apr 2000 22:37:47 +0700." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Apr 2000 10:27:36 -0700 From: "Russell L. Carter" Message-Id: <20000413172737.07E856D@pinyon.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org %hi, there! % %Is there anyone who built ACE wrappers + TAO successfully and got it %working properly under RELENG_4? But of course... www.pinyon.org/ace %I have strange problems when using native C++ exceptions. %The same stuff under 3.4-STABLE (with g++295) works flawlessly. Native exceptions were working beautifully up till sometime around September '99 but broke thereafter and were broken still when I checked a month or so ago. The problem appears to me to be thread related, so it's almost certainly a libgcc problem, but I and several other people expended a considerable amount of time trying to find the source and failed. FWIW, native exceptions are disabled in the Linux threaded versions now too. Since this is the ports list, I might point out that it would be great to have a port, but I haven't made one because 1. LinuxThreads works better than libc_r threads with ACE and especially TAO. 2. A port should still support libc_r threads, for a lot of reasons. 3. Supporting both means two sets of includes under /usr/local and different names for the libs etc. etc. Not to mention that each build of TAO with -g needs ~2G of diskspace. I build both libc_r and LinuxThreads versions on various flavors of -current and REL_ENG4, but having everthing below $ACE_ROOT makes that easy. Russell %/fjoe % % % %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 Thu Apr 13 10:40: 8 2000 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 115D237BBD8 for ; Thu, 13 Apr 2000 10:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA92891; Thu, 13 Apr 2000 10:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (silvercube.silverpix.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id 43F2D37BB6C for ; Thu, 13 Apr 2000 10:32:04 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id NAA24002; Thu, 13 Apr 2000 13:30:51 -0400 (EDT) Received: (from root@localhost) by misha.privatelabs.com (8.9.3/8.9.3) id NAA24048; Thu, 13 Apr 2000 13:31:45 -0400 (EDT) (envelope-from mi) Message-Id: <200004131731.NAA24048@misha.privatelabs.com> Date: Thu, 13 Apr 2000 13:31:45 -0400 (EDT) From: root@misha.privatelabs.com Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: camel@avias.com X-Send-Pr-Version: 3.2 Subject: ports/17979: russian/koi8r-ps port update for gs-6.01 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17979 >Category: ports >Synopsis: russian/koi8r-ps port update for gs-6.01 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 13 10:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.0-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: Thanks to Ilya Naumov I learned, that the latest Ghostscript installs Fontmap.GS with a simple minded Fontmap next to it... The new version of port checks for the Fontmap.GS first and plays with it instead of the Fontmap, if it is present. I can not personally test it right now, so Ilya, please, verify, that the new version works for you. If it does -- please, follow up to this PR. Otherwise -- please, let me know ASAP. Thanks! >How-To-Repeat: >Fix: --- Makefile Mon Nov 29 18:16:00 1999 +++ Makefile Thu Apr 13 13:22:33 2000 @@ -24,6 +24,7 @@ nl { print $$3; exit }'`; \ - if [ -e $$d/Fontmap ] ; then \ - ${ECHO} $$d/Fontmap; \ + if [ -e $$d/Fontmap.GS ] ; then \ + ${ECHO} $$d/Fontmap.GS; \ + elif [ -e $$d/Fontmap ] ; then \ + ${ECHO} $$d/Fontmap \ else \ - logger $$d/Fontmap; \ ${ECHO} /nicht/ ; \ >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 Apr 13 10:40:13 2000 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 449CB37BC7F for ; Thu, 13 Apr 2000 10:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA92900; Thu, 13 Apr 2000 10:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sapa.ivcme.elektra.ru (IVCME-NC-LL.Elektra.RU [193.125.127.58]) by hub.freebsd.org (Postfix) with ESMTP id 9F8F037BB72 for ; Thu, 13 Apr 2000 10:39:03 -0700 (PDT) (envelope-from lukin@sapa.ivcme.elektra.ru) Received: (from lukin@localhost) by sapa.ivcme.elektra.ru (8.9.3/8.8.8) id VAA92897; Thu, 13 Apr 2000 21:37:13 +0400 (MSD) (envelope-from lukin) Message-Id: <200004131737.VAA92897@sapa.ivcme.elektra.ru> Date: Thu, 13 Apr 2000 21:37:13 +0400 (MSD) From: Kostya Lukin Reply-To: lukin@sapa.ivcme.elektra.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17980: New port: net/libjabber Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17980 >Category: ports >Synopsis: New port: net/libjabber >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: Thu Apr 13 10:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kostya Lukin >Release: FreeBSD 3.3-RELEASE i386 >Organization: IVC Mosenergo >Environment: Requires devel/libxode port (which was submitted but not commited yet). >Description: This library provides Jabber transports with various library functions. Jabber is ICQ-like messagingand online presence system. >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: # # libjabber # libjabber/Makefile # libjabber/pkg # libjabber/pkg/COMMENT # libjabber/pkg/PLIST # libjabber/pkg/DESCR # libjabber/files # libjabber/files/md5 # echo c - libjabber mkdir -p libjabber > /dev/null 2>&1 echo x - libjabber/Makefile sed 's/^X//' >libjabber/Makefile << 'END-of-libjabber/Makefile' X# New ports collection makefile for: libjabber X# Version required: 0.9 X# Date created: Mon Apr 4, 2000 X# Whom: Kostya Lukin X# X# $FreeBSD$ X# X XDISTNAME= libjabber-0.9 XCATEGORIES= net XMASTER_SITES= http://download.jabber.org/dists/0.9/final/ X XMAINTAINER= lukin@okbmei.msk.su X XLIB_DEPENDS= xode.0:${PORTSDIR}/devel/libxode:install X XGNU_CONFIGURE= yes X XMAN1= jabber-config.1 X X.include END-of-libjabber/Makefile echo c - libjabber/pkg mkdir -p libjabber/pkg > /dev/null 2>&1 echo x - libjabber/pkg/COMMENT sed 's/^X//' >libjabber/pkg/COMMENT << 'END-of-libjabber/pkg/COMMENT' XJabber transports library END-of-libjabber/pkg/COMMENT echo x - libjabber/pkg/PLIST sed 's/^X//' >libjabber/pkg/PLIST << 'END-of-libjabber/pkg/PLIST' Xbin/jabber-config Xinclude/jabber/jabber.h Xlib/libjabber.a Xlib/libjabber.la Xlib/libjabber.so Xlib/libjabber.so.0 X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -R X@dirrm include/jabber END-of-libjabber/pkg/PLIST echo x - libjabber/pkg/DESCR sed 's/^X//' >libjabber/pkg/DESCR << 'END-of-libjabber/pkg/DESCR' XCurrently, libjabber provides Jabber transports with various library functions. X XFor general information about Jabber, including a quick introduction Xto Jabber concepts, see the FAQ at XWWW: http://docs.jabber.org/ X XYou may want to delve into the internals of the Jabber project at Xhttp://docs.jabber.org/ and http://protocol.jabber.org/ END-of-libjabber/pkg/DESCR echo c - libjabber/files mkdir -p libjabber/files > /dev/null 2>&1 echo x - libjabber/files/md5 sed 's/^X//' >libjabber/files/md5 << 'END-of-libjabber/files/md5' XMD5 (libjabber-0.9.tar.gz) = 7433f63f357a9f00d834ac69efd64aa6 END-of-libjabber/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 Thu Apr 13 10:50: 8 2000 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 CEDAA37BD64 for ; Thu, 13 Apr 2000 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 KAA94093; Thu, 13 Apr 2000 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sapa.ivcme.elektra.ru (IVCME-NC-LL.Elektra.RU [193.125.127.58]) by hub.freebsd.org (Postfix) with ESMTP id A356437B6A2 for ; Thu, 13 Apr 2000 10:44:23 -0700 (PDT) (envelope-from lukin@sapa.ivcme.elektra.ru) Received: (from lukin@localhost) by sapa.ivcme.elektra.ru (8.9.3/8.8.8) id VAA93464; Thu, 13 Apr 2000 21:44:06 +0400 (MSD) (envelope-from lukin) Message-Id: <200004131744.VAA93464@sapa.ivcme.elektra.ru> Date: Thu, 13 Apr 2000 21:44:06 +0400 (MSD) From: Kostya Lukin Reply-To: lukin@sapa.ivcme.elektra.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17981: New port: net/libetherx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17981 >Category: ports >Synopsis: New port: net/libetherx >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: Thu Apr 13 10:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kostya Lukin >Release: FreeBSD 3.3-RELEASE i386 >Organization: IVC Mosenergo >Environment: Requires net/libjabber (which have been submitted). >Description: Library that routes XML streams among agents. >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: # # libetherx # libetherx/Makefile # libetherx/pkg # libetherx/pkg/COMMENT # libetherx/pkg/PLIST # libetherx/pkg/DESCR # libetherx/files # libetherx/files/md5 # libetherx/patches # libetherx/patches/patch-aa # echo c - libetherx mkdir -p libetherx > /dev/null 2>&1 echo x - libetherx/Makefile sed 's/^X//' >libetherx/Makefile << 'END-of-libetherx/Makefile' X# New ports collection makefile for: libetherx X# Version required: 0.9 X# Date created: Mon Apr 4, 2000 X# Whom: Kostya Lukin X# X# $FreeBSD$ X# X XDISTNAME= libetherx-0.9 XCATEGORIES= net XMASTER_SITES= http://download.jabber.org/dists/0.9/final/ X XMAINTAINER= lukin@okbmei.msk.su X XLIB_DEPENDS= jabber.0:${PORTSDIR}/net/libjabber:install \ X pth.13:${PORTSDIR}/devel/pth:install \ X adns.0:${PORTSDIR}/net/adns:install X XGNU_CONFIGURE= yes X XMAN1= etherx-config.1 X X.include END-of-libetherx/Makefile echo c - libetherx/pkg mkdir -p libetherx/pkg > /dev/null 2>&1 echo x - libetherx/pkg/COMMENT sed 's/^X//' >libetherx/pkg/COMMENT << 'END-of-libetherx/pkg/COMMENT' XLibrary that routes XML streams among agents END-of-libetherx/pkg/COMMENT echo x - libetherx/pkg/PLIST sed 's/^X//' >libetherx/pkg/PLIST << 'END-of-libetherx/pkg/PLIST' Xbin/etherx-config Xinclude/etherx.h Xlib/libetherx.a Xlib/libetherx.la Xlib/libetherx.so Xlib/libetherx.so.0 X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -R END-of-libetherx/pkg/PLIST echo x - libetherx/pkg/DESCR sed 's/^X//' >libetherx/pkg/DESCR << 'END-of-libetherx/pkg/DESCR' XOriginally, the etherx daemon routed XML streams among agents. XNow the etherx daemon has morphed into a library that allows any agent Xto become the daemon if the daemon is not found. X XYou can learn more about Etherx at XWWW: http://etherx.jabber.org/ END-of-libetherx/pkg/DESCR echo c - libetherx/files mkdir -p libetherx/files > /dev/null 2>&1 echo x - libetherx/files/md5 sed 's/^X//' >libetherx/files/md5 << 'END-of-libetherx/files/md5' XMD5 (libetherx-0.9.tar.gz) = 6cb1b78587d74b53b684dde2b3a3b6af END-of-libetherx/files/md5 echo c - libetherx/patches mkdir -p libetherx/patches > /dev/null 2>&1 echo x - libetherx/patches/patch-aa sed 's/^X//' >libetherx/patches/patch-aa << 'END-of-libetherx/patches/patch-aa' X--- configure.orig Tue Mar 28 13:59:55 2000 X+++ configure Mon Apr 10 20:02:14 2000 X@@ -2264,7 +2264,7 @@ X echo $ac_n "(cached) $ac_c" 1>&6 X else X ac_save_LIBS="$LIBS" X-LIBS="-ladns $LIBS" X+LIBS="-ladns "-L$prefix/lib" $LIBS" X cat > conftest.$ac_ext <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 Apr 13 11: 0:11 2000 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 96DD637BB7A for ; Thu, 13 Apr 2000 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 LAA95902; Thu, 13 Apr 2000 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sapa.ivcme.elektra.ru (IVCME-NC-LL.Elektra.RU [193.125.127.58]) by hub.freebsd.org (Postfix) with ESMTP id 7789D37BD64 for ; Thu, 13 Apr 2000 10:50:22 -0700 (PDT) (envelope-from lukin@sapa.ivcme.elektra.ru) Received: (from lukin@localhost) by sapa.ivcme.elektra.ru (8.9.3/8.8.8) id VAA93939; Thu, 13 Apr 2000 21:50:10 +0400 (MSD) (envelope-from lukin) Message-Id: <200004131750.VAA93939@sapa.ivcme.elektra.ru> Date: Thu, 13 Apr 2000 21:50:10 +0400 (MSD) From: Kostya Lukin Reply-To: lukin@sapa.ivcme.elektra.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17982: New port: net/jabber-transport Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17982 >Category: ports >Synopsis: New port: net/jabber-transport >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: Thu Apr 13 11:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kostya Lukin >Release: FreeBSD 3.3-RELEASE i386 >Organization: IVC Mosenergo >Environment: Requires net/libetherx port (which have been submitted). >Description: Jabber is ICQ-like messagingand online presence system. This is last jabber port. >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: # # jabber-transport # jabber-transport/Makefile # jabber-transport/pkg # jabber-transport/pkg/COMMENT # jabber-transport/pkg/DESCR # jabber-transport/pkg/PLIST # jabber-transport/files # jabber-transport/files/md5 # jabber-transport/patches # jabber-transport/patches/patch-aa # jabber-transport/patches/patch-ab # echo c - jabber-transport mkdir -p jabber-transport > /dev/null 2>&1 echo x - jabber-transport/Makefile sed 's/^X//' >jabber-transport/Makefile << 'END-of-jabber-transport/Makefile' X# New ports collection makefile for: jabber-transport X# Version required: 0.9 X# Date created: Mon Apr 7, 2000 X# Whom: Kostya Lukin X# X# $FreeBSD$ X# X XDISTNAME= jabber-transport-0.9 XCATEGORIES= net XMASTER_SITES= http://download.jabber.org/dists/0.9/final/ X XMAINTAINER= lukin@okbmei.msk.su X XLIB_DEPENDS= etherx.0:${PORTSDIR}/net/libetherx:install X XGNU_CONFIGURE= yes X X.include END-of-jabber-transport/Makefile echo c - jabber-transport/pkg mkdir -p jabber-transport/pkg > /dev/null 2>&1 echo x - jabber-transport/pkg/COMMENT sed 's/^X//' >jabber-transport/pkg/COMMENT << 'END-of-jabber-transport/pkg/COMMENT' XOnline presence and instant messaging server END-of-jabber-transport/pkg/COMMENT echo x - jabber-transport/pkg/DESCR sed 's/^X//' >jabber-transport/pkg/DESCR << 'END-of-jabber-transport/pkg/DESCR' XThe Jabber transport (jserver) is a daemon for Jabber clients to connect Xand communicate with. It only handles native Jabber protocol. X XAfter editing $PREFIX/etc/jserver.xml, the server can be started: X Xjserver & X XComplete information about configuration can be found in the Jabber Server Xmini-HOWTO at http://docs.jabber.org/. X XYou can learn more about Jabber-Transport at XWWW: http://server.jabber.org/ END-of-jabber-transport/pkg/DESCR echo x - jabber-transport/pkg/PLIST sed 's/^X//' >jabber-transport/pkg/PLIST << 'END-of-jabber-transport/pkg/PLIST' Xbin/jserver Xetc/jserver.xml.default Xlib/jabber/mod_auth_sha1.so Xlib/jabber/mod_echo.so Xlib/jabber/mod_time.so Xlib/jabber/mod_version.so Xlib/jabber/svc_hell.so Xlib/jabber/svc_http.so Xlib/jabber/svc_irc.so Xlib/jabber/svc_telnet.so X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -R X@dirrm lib/jabber X@unexec rmdir /var/jspool 2>/dev/null || true END-of-jabber-transport/pkg/PLIST echo c - jabber-transport/files mkdir -p jabber-transport/files > /dev/null 2>&1 echo x - jabber-transport/files/md5 sed 's/^X//' >jabber-transport/files/md5 << 'END-of-jabber-transport/files/md5' XMD5 (jabber-transport-0.9.tar.gz) = dd38ad2b2641ed40ebd45a03a6ce1ffc END-of-jabber-transport/files/md5 echo c - jabber-transport/patches mkdir -p jabber-transport/patches > /dev/null 2>&1 echo x - jabber-transport/patches/patch-aa sed 's/^X//' >jabber-transport/patches/patch-aa << 'END-of-jabber-transport/patches/patch-aa' X--- src/jserver.xml.in.orig Mon Mar 20 11:01:32 2000 X+++ src/jserver.xml.in Mon Apr 10 16:39:16 2000 X@@ -24,16 +24,16 @@ X The session log, make sure the folder exists! X X X- @prefix@/var/log/jserver.log X+ /var/log/jserver.log X X X X X Data is stored on the filesystem for each user, make sure the folder exists! X X- @prefix@/var/jspool X+ /var/jspool X X Registration instructions and fields, remove to disallow registration: X END-of-jabber-transport/patches/patch-aa echo x - jabber-transport/patches/patch-ab sed 's/^X//' >jabber-transport/patches/patch-ab << 'END-of-jabber-transport/patches/patch-ab' X--- src/Makefile.in.orig Tue Mar 28 22:56:31 2000 X+++ src/Makefile.in Fri Apr 7 20:58:29 2000 X@@ -444,14 +444,15 @@ X X X install-data-local: X+ $(INSTALL_DATA) $(top_builddir)/src/jserver.xml $(sysconfdir)/jserver.xml.default X $(SH) if test ! -f $(sysconfdir)/jserver.xml; then \ X $(mkinstalldirs) $(sysconfdir); \ X $(INSTALL_DATA) $(top_builddir)/src/jserver.xml $(sysconfdir)/jserver.xml; \ X else \ X echo "You already have a jserver.xml installed, not overwriting"; \ X fi X- $(mkinstalldirs) $(prefix)/var/jspool X- $(mkinstalldirs) $(prefix)/var/log X+ $(mkinstalldirs) /var/jspool X+ chmod 700 /var/jspool X X # Tell versions [3.59,3.63) of GNU make to not export all variables. X # Otherwise a system limit (for SysV at least) may be exceeded. END-of-jabber-transport/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 Thu Apr 13 11:37:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from goku.cl.msu.edu (goku.cl.msu.edu [35.8.3.20]) by hub.freebsd.org (Postfix) with ESMTP id 0216837BDA3; Thu, 13 Apr 2000 11:37:39 -0700 (PDT) (envelope-from dervish@goku.cl.msu.edu) Received: (from dervish@localhost) by goku.cl.msu.edu (8.9.3/8.9.3) id OAA62140; Thu, 13 Apr 2000 14:37:38 -0400 (EDT) (envelope-from dervish) Date: Thu, 13 Apr 2000 14:37:38 -0400 From: Bush Doctor To: Kris Kennaway Cc: freebsd-ports@FreeBSD.org, Kent Stewart Subject: Re: A question on port building? Message-ID: <20000413143738.A56628@goku.cl.msu.edu> References: <20000412133914.B87373@goku.cl.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from kris@FreeBSD.org on Thu, Apr 13, 2000 at 02:11:32AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 WWW-Home-Page: http://bantu.cl.msu.edu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Out of da blue Kris Kennaway aka (kris@FreeBSD.org) said: > On Wed, 12 Apr 2000, Bush Doctor wrote: > > > This question arises from something I noticed when trying to > > build codecrusader. (Thanxs to Kent) It seems that codecrusader > > depends on bison during its build process. Now that bison is part > > of the system, is it sufficient to have "USE_BISON=yes" in the > > Makefile? I'm asking because I see from bsd.port.mk > > Bison was ripped back out of the base system in 4.0. Hence USE_BISON :-) Thanxs Kris. I need to build a tool that'll identify obsolete bits in the tree so they can be removed. > > Most ports don't need it. Just tested the lastest patches I have and codecrusader is one of the few ports that uses bison. The bison question was the last issue. send-pr to follow ... ;-) > > Kris > > ---- > In God we Trust -- all others must submit an X.509 certificate. > -- Charles Forsythe > #;^) -- f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng. bush doctor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 11:40:10 2000 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 659E737BD65 for ; Thu, 13 Apr 2000 11:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA05323; Thu, 13 Apr 2000 11:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (silvercube.silverpix.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id 69D2C37BD55; Thu, 13 Apr 2000 11:37:14 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id OAA24705; Thu, 13 Apr 2000 14:36:06 -0400 (EDT) Received: (from mi@localhost) by misha.privatelabs.com (8.9.3/8.9.3) id OAA27029; Thu, 13 Apr 2000 14:37:00 -0400 (EDT) (envelope-from mi) Message-Id: <200004131837.OAA27029@misha.privatelabs.com> Date: Thu, 13 Apr 2000 14:37:00 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: andreas@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17985: X-Face support for news/knews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17985 >Category: ports >Synopsis: X-Face support for news/knews >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 Apr 13 11:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: misha >Release: FreeBSD 4.0-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: The knews program can recognize and support the X-Face headers in postings. Unfortunately, the news/knews port is currently building it with this support disabled... >How-To-Repeat: >Fix: --- Makefile Mon Apr 10 16:19:43 2000 +++ Makefile Thu Apr 13 10:27:21 2000 @@ -16,3 +16,4 @@ jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.3:${PORTSDIR}/graphics/png + png.3:${PORTSDIR}/graphics/png \ + compface:${PORTSDIR}/mail/faces RUN_DEPENDS= newsp:${PORTSDIR}/print/mp-letter --- patches/patch-aa Thu Jan 7 18:53:50 1999 +++ patches/patch-aa Thu Apr 13 10:09:44 2000 @@ -19,3 +19,4 @@ +#define HAVE_PNG 1 - #define HAVE_COMPFACE 0 +-#define HAVE_COMPFACE 0 ++#define HAVE_COMPFACE 1 >Release-Note: >Audit-Trail: >Unformatted: Mikhail Teterin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 11:50:14 2000 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 A84C537B549 for ; Thu, 13 Apr 2000 11:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA06535; Thu, 13 Apr 2000 11:50:02 -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 A814937BB3D for ; Thu, 13 Apr 2000 11:40: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 UAA27046 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Apr 2000 20:40:44 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id UAA03993 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Apr 2000 20:00:11 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id TAA69875; Thu, 13 Apr 2000 19:56:42 +0200 (CEST) Message-Id: <200004131756.TAA69875@home.dinoex.sub.org> Date: Thu, 13 Apr 2000 19:56:42 +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/17987: security/ssh fix install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17987 >Category: ports >Synopsis: security/ssh fix install >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: Thu Apr 13 11:50:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.4-STABLE i386 >Organization: privat >Environment: Install ssh on a new system. >Description: Stop. >How-To-Repeat: make install ===> Generating temporary packing list Installing /usr/local/etc/rc.d/sshd.sh startup file. sed: 751: No such file or directory *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 After this you have a shell-script cocated with a chmod executable >Fix: diff ssh/Makefile ssh-1.2.27/Makefile --- ssh/Makefile Thu Apr 13 06:28:19 2000 +++ ssh-1.2.27/Makefile Thu Apr 13 19:54:08 2000 @@ -109,7 +109,7 @@ @if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \ ${ECHO} "Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \ ${SED} -e 's+!!PREFIX!!+${PREFIX}+g' ${FILESDIR}/sshd.sh \ - > ${PREFIX}/etc/rc.d/sshd.sh \ + > ${PREFIX}/etc/rc.d/sshd.sh; \ ${CHMOD} 751 ${PREFIX}/etc/rc.d/sshd.sh; \ 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 Thu Apr 13 11:50:14 2000 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 1C83E37BDAA for ; Thu, 13 Apr 2000 11:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA06526; Thu, 13 Apr 2000 11:50: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 628F537BB3D for ; Thu, 13 Apr 2000 11:40:28 -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 UAA27045 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Apr 2000 20:40:25 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id UAA03992 for FreeBSD-gnats-submit@freebsd.org; Thu, 13 Apr 2000 20:00:10 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id TAA69991; Thu, 13 Apr 2000 19:59:27 +0200 (CEST) Message-Id: <200004131759.TAA69991@home.dinoex.sub.org> Date: Thu, 13 Apr 2000 19:59:27 +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/17986: archivers/unzip fix PKGNAME Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17986 >Category: ports >Synopsis: archivers/unzip fix PKGNAME >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: Thu Apr 13 11:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.4-STABLE i386 >Organization: privat >Environment: Current ports tree >Description: you get an package "unzip-5.40-unzip-5.40" installed >How-To-Repeat: make install or make package >Fix: diff unzip/Makefile unzip-5.40/Makefile --- unzip/Makefile Sun Apr 9 10:37:31 2000 +++ unzip-5.40/Makefile Thu Apr 13 19:54:54 2000 @@ -5,8 +5,8 @@ # $FreeBSD: ports/archivers/unzip/Makefile,v 1.28 2000/04/08 23:17:55 mharo Exp $ # -PORTNAME= unzip-5.40 -PORTVERSION= unzip-5.40 +PORTNAME= unzip +PORTVERSION= 5.40 CATEGORIES= archivers MASTER_SITES= ftp://ftp.cdrom.com/pub/infozip/src/ DISTNAME= unzip540 >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 Apr 13 12: 0: 5 2000 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 41EC837BD87 for ; Thu, 13 Apr 2000 12:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA07611; Thu, 13 Apr 2000 12:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from elvis.mu.org (elvis.mu.org [207.154.226.10]) by hub.freebsd.org (Postfix) with ESMTP id 0F82537BBD8 for ; Thu, 13 Apr 2000 11:56:57 -0700 (PDT) (envelope-from dave@elvis.mu.org) Received: (from dave@localhost) by elvis.mu.org (8.9.1/8.9.1) id NAA97429; Thu, 13 Apr 2000 13:56:32 -0500 (CDT) (envelope-from dave) Message-Id: <200004131856.NAA97429@elvis.mu.org> Date: Thu, 13 Apr 2000 13:56:32 -0500 (CDT) From: Dave McKay Reply-To: dave@elvis.mu.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17988: Seahorse port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17988 >Category: ports >Synopsis: Update to 0.4.0 >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 Apr 13 12:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dave McKay >Release: FreeBSD 4.0-CURRENT i386 >Organization: Google Inc >Environment: All branches >Description: The author of seahorse has come out with a new version. Mostly bug fixes, but multiple lang support as well. >How-To-Repeat: >Fix: The tarball of the new port is at http://www.mu.org/~dave/FreeBSD/seahorse.tar Please commit this into the tree. Thanks, Dave (pm) >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 Apr 13 12:25:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from internal.mail.demon.net (internal.mail.demon.net [193.195.224.3]) by hub.freebsd.org (Postfix) with ESMTP id 20F8A37B9BF for ; Thu, 13 Apr 2000 12:25:08 -0700 (PDT) (envelope-from fanf@demon.net) Received: from fanf.eng.demon.net (fanf.eng.demon.net [195.11.55.89]) by internal.mail.demon.net with ESMTP id UAA23640; Thu, 13 Apr 2000 20:25:04 +0100 (BST) Received: from fanf by fanf.eng.demon.net with local (Exim 3.12 #3) id 12fpEd-00099t-00; Thu, 13 Apr 2000 20:25:03 +0100 From: Tony Finch To: freebsd-ports@freebsd.org Cc: Tony Finch Subject: USE_OPENSSL Message-Id: Date: Thu, 13 Apr 2000 20:25:03 +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What is the purpose of the USE_OPENSSL variable in the ports makefiles? After I put USE_OPENSSL=YES in /etc/make.conf all my ports stopped building because openssl depended on itself causing a nice recursive make forkbomb. Is this a bug in me or a bug in the makefiles? (PS. I'm not on this list.) Tony. -- f.a.n.finch fanf@demon.net dot@dotat.at 384 piston-powered puerility To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 12:37:33 2000 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 B9BDC37BD7D; Thu, 13 Apr 2000 12:37:31 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id MAA13990; Thu, 13 Apr 2000 12:37:30 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 13 Apr 2000 12:37:30 -0700 (PDT) From: Kris Kennaway To: Tony Finch Cc: freebsd-ports@freebsd.org Subject: Re: USE_OPENSSL 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, 13 Apr 2000, Tony Finch wrote: > What is the purpose of the USE_OPENSSL variable in the ports > makefiles? After I put USE_OPENSSL=YES in /etc/make.conf all my ports > stopped building because openssl depended on itself causing a nice > recursive make forkbomb. Is this a bug in me or a bug in the makefiles? It's a bug in finch.c. USE_OPENSSL says "I depend on the OpenSSL toolkit" and handles the dependency (as a LIB_DEPENDS) to either the port or the base system version for 3.x/[45].x rspectively. USE_OPENSSL=RSA says "I need RSA crypto as well" and pulls in the RSAREF port as a LIB_DEPENDS if USA_RESIDENT is set to 'YES'. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 12:37:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.squidge.com (ns0.squidge.com [195.10.252.4]) by hub.freebsd.org (Postfix) with ESMTP id 2E5C037BDDD for ; Thu, 13 Apr 2000 12:37:34 -0700 (PDT) (envelope-from si@mystery-machine.com) Received: from SimonH ([193.133.98.226]) by mail.squidge.com (8.9.3/8.9.3) with SMTP id UAA73831 for ; Thu, 13 Apr 2000 20:43:02 +0100 (BST) (envelope-from si@mystery-machine.com) Message-ID: <01a001bfa57f$97a44ca0$210110ac@billco.com> Reply-To: "Simon Holliday" From: "Simon Holliday" To: References: <00f301bfa565$c7a6f1b0$dd29680a@tgt.com> <86puruszc2.wl@archon.local.idaemons.org> Subject: Re: Broken Apache-PHP ports!! Date: Thu, 13 Apr 2000 20:36:10 +0100 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.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > At Thu, 13 Apr 2000 11:31:54 -0500, > Thomas T. Veldhouse wrote: > > apache+php-1.3.12+3.0.16: You need to define PORTNAME and PORTVERSION > > instead of > > PKGNAME. > > Seems to me that your ports tree is somewhat old. nope, I had the same problem today, having cvsupped the ports immediately before. I got around it my adding a made up PORTNAME and PORTVERSION and it compiled fine. Si. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 12:40:18 2000 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 4D61237BC4A; Thu, 13 Apr 2000 12:40:17 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA14406; Thu, 13 Apr 2000 12:40:17 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Thu, 13 Apr 2000 12:40:17 -0700 (PDT) From: Message-Id: <200004131940.MAA14406@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17986: archivers/unzip fix PKGNAME Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: archivers/unzip fix PKGNAME State-Changed-From-To: open->closed State-Changed-By: asami State-Changed-When: Thu Apr 13 12:39:49 PDT 2000 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 Apr 13 12:41:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fanf.noc.demon.net (fanf.noc.demon.net [195.11.55.83]) by hub.freebsd.org (Postfix) with ESMTP id 69F0A37B9BF; Thu, 13 Apr 2000 12:41:26 -0700 (PDT) (envelope-from fanf@demon.net) Received: from fanf by fanf.noc.demon.net with local (Exim 3.02 #13) id 12fpUA-000NzL-00; Thu, 13 Apr 2000 20:41:06 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: Tony Finch To: Kris Kennaway Cc: Tony Finch , freebsd-ports@FreeBSD.org Subject: Re: USE_OPENSSL In-Reply-To: References: X-Mailer: VM 6.34 under Emacs 19.34.1 Message-Id: Date: Thu, 13 Apr 2000 20:41:06 +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Kris Kennaway wrote: > > It's a bug in finch.c. Ah, right :-) I wonder why I added it to make.conf... Tony. -- f.a.n.finch fanf@demon.net dot@dotat.at 433 scotch tape for a cardboard utopia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 12:42:32 2000 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 CE11637BC2E; Thu, 13 Apr 2000 12:42:29 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA14741; Thu, 13 Apr 2000 12:42:29 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Thu, 13 Apr 2000 12:42:29 -0700 (PDT) From: Message-Id: <200004131942.MAA14741@freefall.freebsd.org> To: ejk@iki.fi, kris@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17947: ssh port doesn't complete install phase Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ssh port doesn't complete install phase State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Thu Apr 13 12:41:51 PDT 2000 State-Changed-Why: Duplicate of ports/17927 - this is a known problem that will be fixed as soon as the ports freeze is lifted. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 12:43: 4 2000 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 DCA7437BD5D; Thu, 13 Apr 2000 12:43:02 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA14840; Thu, 13 Apr 2000 12:43:02 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Thu, 13 Apr 2000 12:43:02 -0700 (PDT) From: Message-Id: <200004131943.MAA14840@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kris@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17987: security/ssh fix install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: security/ssh fix install State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Thu Apr 13 12:42:52 PDT 2000 State-Changed-Why: Duplicate of ports/17927. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 12:50: 5 2000 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 06F9D37BDAE for ; Thu, 13 Apr 2000 12:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA15865; Thu, 13 Apr 2000 12:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 13 Apr 2000 12:50:02 -0700 (PDT) Message-Id: <200004131950.MAA15865@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Kris Kennaway Subject: Re: ports/17987: security/ssh fix install Reply-To: Kris Kennaway Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17987; it has been noted by GNATS. From: Kris Kennaway To: dirk.meyer@dinoex.sub.org Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/17987: security/ssh fix install Date: Thu, 13 Apr 2000 12:42:46 -0700 (PDT) On Thu, 13 Apr 2000 dirk.meyer@dinoex.sub.org wrote: > Install ssh on a new system. It might help to run a PR search before submitting, because this has been reported in the following PRs (with explanation and promise of fix as soon as the ports tree is unfrozen): 17927 will ports open critical low current-us ssh port fail s to install properly 17937 will ports open serious low current-us security/ssh2 install fails. 17947 freebsd- ports open non-criti medium current-us ssh port does n't complete install phase :-) Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 13:20: 7 2000 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 9846337BD9F for ; Thu, 13 Apr 2000 13:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA21650; Thu, 13 Apr 2000 13:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C0BA37BD67 for ; Thu, 13 Apr 2000 13:17:46 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA21496; Thu, 13 Apr 2000 13:17:46 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004132017.NAA21496@freefall.freebsd.org> Date: Thu, 13 Apr 2000 13:17:46 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17989: PORTNAME fix for x11-wm/fvwm2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17989 >Category: ports >Synopsis: PORTNAME fix for x11-wm/fvwm2 >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 Apr 13 13:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.0-RELEASE >Organization: >Environment: >Description: PORTNAME seems have to be unique and equivalent to its directory name. >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/fvwm2/Makefile x11-wm/fvwm2/Makefile --- /usr/ports/x11-wm/fvwm2/Makefile Tue Apr 11 22:36:01 2000 +++ x11-wm/fvwm2/Makefile Fri Apr 14 05:06:00 2000 @@ -5,10 +5,11 @@ # $FreeBSD: ports/x11-wm/fvwm2/Makefile,v 1.20 2000/04/10 19:49:48 cpiazza Exp $ # -PORTNAME= fvwm +PORTNAME= fvwm2 PORTVERSION= 2.2.4 CATEGORIES= x11-wm MASTER_SITES= ftp://ftp.fvwm.org/pub/fvwm/version-2/ +DISTNAME= fvwm-${PORTVERSION} MAINTAINER= jcwells@u.washington.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 Apr 13 13:20: 9 2000 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 4E73537BDC3 for ; Thu, 13 Apr 2000 13:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA21663; Thu, 13 Apr 2000 13:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E681737BACE for ; Thu, 13 Apr 2000 13:18:57 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA21573; Thu, 13 Apr 2000 13:18:57 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004132018.NAA21573@freefall.freebsd.org> Date: Thu, 13 Apr 2000 13:18:57 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17990: PORTNAME fix for x11-wm/fvwm2-i18n Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17990 >Category: ports >Synopsis: PORTNAME fix for x11-wm/fvwm2-i18n >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 Apr 13 13:20:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.0-RELEASE >Organization: >Environment: >Description: PORTNAME seems have to be unique and equivalent to its directory name. >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/fvwm2-i18n/Makefile x11-wm/fvwm2-i18n/Makefile --- /usr/ports/x11-wm/fvwm2-i18n/Makefile Tue Apr 11 22:36:01 2000 +++ x11-wm/fvwm2-i18n/Makefile Fri Apr 14 05:07:47 2000 @@ -5,10 +5,11 @@ # $FreeBSD: ports/x11-wm/fvwm2-i18n/Makefile,v 1.18 2000/04/10 19:49:50 cpiazza Exp $ # -PORTNAME= fvwm-i18n +PORTNAME= fvwm2-i18n PORTVERSION= 2.2 CATEGORIES= x11-wm MASTER_SITES= ftp://ftp.fvwm.org/pub/fvwm/version-2/ +DISTNAME= fvwm-${PORTVERSION} PATCH_SITES= ftp://ftp.ics.es.osaka-u.ac.jp/pub/CFAN/fvwm-users-jp/I18N_MB/ PATCHFILES= fvwm-${PORTVERSION}-I18N_MB-${FVWM_PATCHVER}.patch >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 14:29:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lobster.baynetworks.com (ns3.BayNetworks.COM [192.32.253.3]) by hub.freebsd.org (Postfix) with ESMTP id CEA7837BC68 for ; Thu, 13 Apr 2000 14:27:46 -0700 (PDT) (envelope-from bwithrow@engeast.BayNetworks.COM) Received: from mailhost.BayNetworks.COM (h8754.s84f5.BayNetworks.COM [132.245.135.84]) by lobster.baynetworks.com (8.9.1/8.9.1) with ESMTP id RAA00365 for ; Thu, 13 Apr 2000 17:31:27 -0400 (EDT) Received: from pobox.engeast.BayNetworks.COM (pobox.engeast.baynetworks.com [192.32.61.6]) by mailhost.BayNetworks.COM (8.9.1/8.8.8) with ESMTP id RAA12060 for ; Thu, 13 Apr 2000 17:31:58 -0400 (EDT) Received: from tuva.engeast.baynetworks.com (tuva [192.32.150.102]) by pobox.engeast.BayNetworks.COM (SMI-8.6/BNET-97/04/24-S) with ESMTP id RAA28237; Thu, 13 Apr 2000 17:27:13 -0400 for Received: from tuva.engeast.baynetworks.com (localhost [127.0.0.1]) by tuva.engeast.baynetworks.com (8.9.3/8.9.3) with ESMTP id RAA36375; Thu, 13 Apr 2000 17:27:05 -0400 (EDT) (envelope-from bwithrow@tuva.engeast.baynetworks.com) Message-Id: <200004132127.RAA36375@tuva.engeast.baynetworks.com> X-Mailer: exmh version 2.0.2 2/24/98 To: ports@freebsd.org Cc: bwithrow@engeast.BayNetworks.COM Subject: Some new ports broken on 4.0REL Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Apr 2000 17:27:05 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just upgraded my INDEX file and tried to build libtool, and I get this error. This is apparently due to 4.0 not knowing about PORTNAME and PORTVERSION. Presumably there needs to be a ports update kit for 4.0? Thanks! su-2.03# uname -sr FreeBSD 4.0-RELEASE su-2.03# make fetch >> .tar.gz doesn't seem to exist on this system. >> Attempting to fetch from ftp://ftp.gnu.org/gnu/libtool/. fetch: gnu/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.gnu.org/gnu/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.freesoftware.com/pub/gnu/libtool/. fetch: pub/gnu/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.freesoftware.com/pub/gnu/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.digital.com/pub/GNU/libtool/. fetch: pub/GNU/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.digital.com/pub/GNU/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.uu.net/archive/systems/gnu/libtool/. fetch: archive/systems/gnu/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.uu.net/archive/systems/gnu/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.de.uu.net/pub/gnu/libtool/. fetch: pub/gnu/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.de.uu.net/pub/gnu/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.ecrc.net/pub/gnu/libtool/. fetch: pub/gnu/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.ecrc.net/pub/gnu/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.funet.fi/pub/gnu/prep/libtool/. fetch: pub/gnu/prep/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.funet.fi/pub/gnu/prep/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.leo.org/pub/comp/os/unix/gnu/libtool/. fetch: pub/comp/os/unix/gnu/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.leo.org/pub/comp/os/unix/gnu/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.digex.net/pub/gnu/libtool/. fetch: pub/gnu/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.digex.net/pub/gnu/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.wustl.edu/systems/gnu/libtool/. fetch: systems/gnu/libtool/.tar.gz: cannot get remote modification time fetch: ftp://ftp.wustl.edu/systems/gnu/libtool/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.kddlabs.co.jp/pub/gnu/libtool/. fetch: ftp.kddlabs.co.jp: Not logged in >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: pub/FreeBSD/ports/distfiles/.tar.gz: cannot get remote modification time fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/devel/libtool. *** Error code 1 Stop in /usr/ports/devel/libtool. *** Error code 1 Stop in /usr/ports/devel/libtool. su-2.03# -- Robert Withrow -- (+1 978 288 8256) BWithrow@BayNetworks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 14:55:36 2000 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 5D7A237B55D for ; Thu, 13 Apr 2000 14:55:28 -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 RAA00442; Thu, 13 Apr 2000 17:54:56 -0400 (EDT) (envelope-from bfoz@glue.umd.edu) Message-ID: <38F64230.F7F73FE4@glue.umd.edu> Date: Thu, 13 Apr 2000 17:54:56 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Robert Withrow Cc: ports@FreeBSD.ORG, bwithrow@engeast.BayNetworks.COM Subject: Re: Some new ports broken on 4.0REL References: <200004132127.RAA36375@tuva.engeast.baynetworks.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Robert Withrow wrote: > > I just upgraded my INDEX file and tried to build libtool, and I get > this error. This is apparently due to 4.0 not knowing about > PORTNAME and PORTVERSION. Presumably there needs to be a ports update > kit for 4.0? Thanks! > > su-2.03# uname -sr > FreeBSD 4.0-RELEASE > su-2.03# make fetch > >> .tar.gz doesn't seem to exist on this system. > >> Attempting to fetch from ftp://ftp.gnu.org/gnu/libtool/. Did you update the /usr/ports/Mk directory as well? -Brandon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 15:10: 5 2000 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 9676F37BDE9 for ; Thu, 13 Apr 2000 15:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA34043; Thu, 13 Apr 2000 15:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E87437BDE5 for ; Thu, 13 Apr 2000 15:02:30 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA32579; Thu, 13 Apr 2000 15:02:30 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004132202.PAA32579@freefall.freebsd.org> Date: Thu, 13 Apr 2000 15:02:30 -0700 (PDT) From: bwithrow@nortelnetworks.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17994: Mesa-3.1 port is broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17994 >Category: ports >Synopsis: Mesa-3.1 port is broken >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 13 15:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Robert Withrow >Release: 4.0-RELEASE >Organization: Nortel Networks >Environment: FreeBSD kyzyl.engeast.baynetworks.com 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Wed Apr 12 19:57:40 EDT 2000 toor@kyzyl.engeast.baynetworks.com:/usr/src/sys/compile/DELL410 i386 >Description: Mesa-3.1 port is broken: The distfiles use the wrong variables. >How-To-Repeat: Attempt "make fetch" on the port. >Fix: Apply this patch, also appended uuencoded. *** Makefile.orig Thu Apr 13 06:13:35 2000 --- Makefile Thu Apr 13 17:54:50 2000 *************** *** 11,18 **** MASTER_SITES= http://download.sourceforge.net/mesa3d/ \ ftp://iris.ssec.wisc.edu/pub/Mesa/ \ ftp://ftp.fu-berlin.de/pub/unix/X11/graphics/Mesa/ ! DISTFILES= MesaLib-${PORTVERSION}${DISTNAME}${EXTRACT_SUFX} \ ! MesaDemos-${VERSION}.tar.gz MAINTAINER= jseger@FreeBSD.org --- 11,18 ---- MASTER_SITES= http://download.sourceforge.net/mesa3d/ \ ftp://iris.ssec.wisc.edu/pub/Mesa/ \ ftp://ftp.fu-berlin.de/pub/unix/X11/graphics/Mesa/ ! DISTFILES= MesaLib-${PORTVERSION}${EXTRACT_SUFX} \ ! MesaDemos-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= jseger@FreeBSD.org begin 644 Makefile.patch M*BHJ($UA:V5F:6QE+F]R:6<)5&AU($%P"]8,3$O9W)A<&AI8W,O365S82\*(2!$ M25-41DE,15,]"4UET1)4U1.04U%?21[ M15A44D%#5%]35498?2!<"B$@"0E-97-A1&5M;W,M)'M615)324].?2YT87(N M9WH*("`*("!-04E.5$%)3D52/0EJT585%)!0U1?4U5&6'T*("`*("!- A04E.5$%)3D52/0EJRelease-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 Apr 13 15:11:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shrimp.baynetworks.com (ns4.BayNetworks.COM [192.32.253.7]) by hub.freebsd.org (Postfix) with ESMTP id 702B637B596 for ; Thu, 13 Apr 2000 15:10:35 -0700 (PDT) (envelope-from bwithrow@engeast.BayNetworks.COM) Received: from mailhost.BayNetworks.COM (h8754.s84f5.BayNetworks.COM [132.245.135.84]) by shrimp.baynetworks.com (8.9.1/8.9.1) with ESMTP id SAA07514; Thu, 13 Apr 2000 18:05:09 -0400 (EDT) Received: from pobox.engeast.BayNetworks.COM (pobox.engeast.baynetworks.com [192.32.61.6]) by mailhost.BayNetworks.COM (8.9.1/8.8.8) with ESMTP id SAA13544; Thu, 13 Apr 2000 18:14:47 -0400 (EDT) Received: from tuva.engeast.baynetworks.com (tuva [192.32.150.102]) by pobox.engeast.BayNetworks.COM (SMI-8.6/BNET-97/04/24-S) with ESMTP id SAA05046; Thu, 13 Apr 2000 18:10:01 -0400 for Received: from tuva.engeast.baynetworks.com (localhost [127.0.0.1]) by tuva.engeast.baynetworks.com (8.9.3/8.9.3) with ESMTP id SAA36536; Thu, 13 Apr 2000 18:09:49 -0400 (EDT) (envelope-from bwithrow@tuva.engeast.baynetworks.com) Message-Id: <200004132209.SAA36536@tuva.engeast.baynetworks.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Brandon Fosdick Cc: "Withrow, Robert (W.) [BAY:BL60:430]" , ports@FreeBSD.ORG, bwithrow@engeast.BayNetworks.COM Subject: Re: Some new ports broken on 4.0REL In-Reply-To: Message from Brandon Fosdick of "Thu, 13 Apr 2000 17:54:56 EDT." <38F64230.F7F73FE4@glue.umd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Apr 2000 18:09:49 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org bfoz@glue.umd.edu said: :- Did you update the /usr/ports/Mk directory as well? Is there a posted update to the /usr/ports/Mk directory at http://www.freebsd.org/ports/ ? Answer: No. That is why I said: :- Presumably there needs to be a ports update kit for 4.0? I quote: "The current ports tree officially supports only FreeBSD-current and FreeBSD-stable. Consequently, you may need to update a few files on your FreeBSD system to make use of ports developed after your version of FreeBSD was released. Please install one of the following depending on the release you are running. Also, if you are running FreeBSD-stable or FreeBSD-current that is more than a few days old, you are recommended to install an appropriate upgrade kit as well; the ports system is changing very fast at times. 2.2.1 to 2.2-stable upgrade kit For users of 2.2.1-release or 2.2-stable between 2.2.1-release and 2.2.2-release 2.2.2 to 2.2-stable upgrade kit For users of 2.2.2-release or 2.2-stable between 2.2.2-release and 2.2.5-release 2.2.5 to 2.2-stable upgrade kit For users of 2.2.5-release or 2.2-stable between 2.2.5-release and 2.2.6-release 2.2.7 to 2.2-stable upgrade kit For users of 2.2.6-release, 2.2.7-release, 2.2.8-release or 2.2-stable after 2.2.6-release 3.0 to 3-stable upgrade kit For users of 3.0-release or 3.0-stable after 3.0-release 3.1 to 3-stable upgrade kit For users of 3.1-release or 3.1-stable after 3.1-release 3.2 to 3-stable upgrade kit For users of 3.2-release or 3.2-stable after 3.2-release 3.3 or 3.4 to 3-stable upgrade kit For users of 3.3/3.4-release or 3.4-stable after 3.4-release These are FreeBSD packages; please use pkg_add to install them. That should enable you to use all the ports listed here. Note that it will only change just enough files to enable ports/packages to be used; for a full upgrade to 3-stable, please refer to the synchronizing your source tree section of the handbook. A full upgrade is recommended, especially if you are still using anything earlier than 2.2.7-release. Also, the 2.2.X line is now officially unsupported by ports-current; you are `on your own' if you wish to use the ports listed here, as opposed to the ones that were included in the release, on your 2.2.X system." -- Robert Withrow -- (+1 978 288 8256) BWithrow@BayNetworks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 15:14:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shrimp.baynetworks.com (ns4.BayNetworks.COM [192.32.253.7]) by hub.freebsd.org (Postfix) with ESMTP id C482C37BAE1 for ; Thu, 13 Apr 2000 15:13:28 -0700 (PDT) (envelope-from bwithrow@engeast.BayNetworks.COM) Received: from mailhost.BayNetworks.COM (h8754.s84f5.BayNetworks.COM [132.245.135.84]) by shrimp.baynetworks.com (8.9.1/8.9.1) with ESMTP id SAA07572 for ; Thu, 13 Apr 2000 18:08:03 -0400 (EDT) Received: from pobox.engeast.BayNetworks.COM (pobox.engeast.baynetworks.com [192.32.61.6]) by mailhost.BayNetworks.COM (8.9.1/8.8.8) with ESMTP id SAA13604 for ; Thu, 13 Apr 2000 18:17:41 -0400 (EDT) Received: from tuva.engeast.baynetworks.com (tuva [192.32.150.102]) by pobox.engeast.BayNetworks.COM (SMI-8.6/BNET-97/04/24-S) with ESMTP id SAA05321; Thu, 13 Apr 2000 18:12:56 -0400 for Received: from tuva.engeast.baynetworks.com (localhost [127.0.0.1]) by tuva.engeast.baynetworks.com (8.9.3/8.9.3) with ESMTP id SAA36572 for ; Thu, 13 Apr 2000 18:12:57 -0400 (EDT) (envelope-from bwithrow@tuva.engeast.baynetworks.com) Message-Id: <200004132212.SAA36572@tuva.engeast.baynetworks.com> X-Mailer: exmh version 2.0.2 2/24/98 To: ports@freebsd.org Subject: Mesa 3.1 port is broken Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Apr 2000 18:12:57 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I submitted pr ports/17994 on this, but until it gets fixed, this patche fixes the problem. *** Makefile.orig Thu Apr 13 06:13:35 2000 --- Makefile Thu Apr 13 17:54:50 2000 *************** *** 11,18 **** MASTER_SITES= http://download.sourceforge.net/mesa3d/ \ ftp://iris.ssec.wisc.edu/pub/Mesa/ \ ftp://ftp.fu-berlin.de/pub/unix/X11/graphics/Mesa/ ! DISTFILES= MesaLib-${PORTVERSION}${DISTNAME}${EXTRACT_SUFX} \ ! MesaDemos-${VERSION}.tar.gz MAINTAINER= jseger@FreeBSD.org --- 11,18 ---- MASTER_SITES= http://download.sourceforge.net/mesa3d/ \ ftp://iris.ssec.wisc.edu/pub/Mesa/ \ ftp://ftp.fu-berlin.de/pub/unix/X11/graphics/Mesa/ ! DISTFILES= MesaLib-${PORTVERSION}${EXTRACT_SUFX} \ ! MesaDemos-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= jseger@FreeBSD.org -- Robert Withrow -- (+1 978 288 8256) BWithrow@BayNetworks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 15:26:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id C0B4E37BC69 for ; Thu, 13 Apr 2000 15:26:05 -0700 (PDT) (envelope-from nbm@sunesi.net) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 12fs39-000Ozp-00; Fri, 14 Apr 2000 00:25:23 +0200 Date: Fri, 14 Apr 2000 00:25:23 +0200 From: Neil Blakey-Milner To: Robert Withrow Cc: Brandon Fosdick , "Withrow, Robert (W.) [BAY:BL60:430]" , ports@FreeBSD.ORG, bwithrow@engeast.BayNetworks.COM Subject: Re: Some new ports broken on 4.0REL Message-ID: <20000414002522.A95220@mithrandr.moria.org> References: <200004132209.SAA36536@tuva.engeast.baynetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004132209.SAA36536@tuva.engeast.baynetworks.com>; from bwithrow@nortelnetworks.com on Thu, Apr 13, 2000 at 06:09:49PM -0400 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu 2000-04-13 (18:09), Robert Withrow wrote: > > bfoz@glue.umd.edu said: > :- Did you update the /usr/ports/Mk directory as well? > > Is there a posted update to the /usr/ports/Mk directory at > http://www.freebsd.org/ports/ ? Answer: No. He means: "Did you cvsup ports-base?" Neil -- Neil Blakey-Milner Alpha Geek, Sunesi Clinical Systems nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 16:22:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from scallop.baynetworks.com (ns5.baynetworks.com [194.133.90.101]) by hub.freebsd.org (Postfix) with ESMTP id 65F5037BCF6 for ; Thu, 13 Apr 2000 16:22:23 -0700 (PDT) (envelope-from bwithrow@engeast.BayNetworks.COM) Received: from mailhost.BayNetworks.COM (h8754.s84f5.BayNetworks.COM [132.245.135.84]) by scallop.baynetworks.com (8.9.1/8.9.1) with ESMTP id BAA18429; Fri, 14 Apr 2000 01:26:24 +0200 (MET DST) Received: from pobox.engeast.BayNetworks.COM (pobox.engeast.baynetworks.com [192.32.61.6]) by mailhost.BayNetworks.COM (8.9.1/8.8.8) with ESMTP id TAA15282; Thu, 13 Apr 2000 19:26:55 -0400 (EDT) Received: from tuva.engeast.baynetworks.com (tuva [192.32.150.102]) by pobox.engeast.BayNetworks.COM (SMI-8.6/BNET-97/04/24-S) with ESMTP id TAA13286; Thu, 13 Apr 2000 19:22:10 -0400 for Received: from tuva.engeast.baynetworks.com (localhost [127.0.0.1]) by tuva.engeast.baynetworks.com (8.9.3/8.9.3) with ESMTP id TAA36744; Thu, 13 Apr 2000 19:22:03 -0400 (EDT) (envelope-from bwithrow@tuva.engeast.baynetworks.com) Message-Id: <200004132322.TAA36744@tuva.engeast.baynetworks.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Neil Blakey-Milner Cc: Robert Withrow , Brandon Fosdick , ports@FreeBSD.ORG Subject: Re: Some new ports broken on 4.0REL In-Reply-To: Message from Neil Blakey-Milner of "Fri, 14 Apr 2000 00:25:23 +0200." <20000414002522.A95220@mithrandr.moria.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Apr 2000 19:22:03 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org nbm@mithrandr.moria.org said: :- He means: "Did you cvsup ports-base?" Answer: no. Question: Where does it say that cvsup is the only "authorized" way to use the ports collection. Answer: No where. Please, all of you, go and read *your* web page. I specifically direct your attention to this passage: "These are FreeBSD packages; please use pkg_add to install them. That should enable you to use all the ports listed here." That words "should enable you to use all the ports listed here" seems like pretty plain English, doesn't it? If these instructions are incorrect or out-of-date, please *CHANGE THEM*. You'll excuse me, but it gets a little annoying to be chided by you folks for following the directions *YOU* posted on *YOUR* web page! P.S.: I certainly *hope* it isn't the case that you *require* the use of cvsup, since that is the *last* think I want to do. In fact, since the typical user probably uses at most a dozen of the ports, or so, I think any time spent updating the thousands of unused and unwanted ports is an enormous waste of time and resources. By far, the largest portion of time spent installing a new FreeBSD system, now, is the time spent unpacking the ports distribution. More than half of the files used on the /usr filesystem are consumed by the ports distribution. That's nearly 40 *THOUSAND* files consumed by the ports collection on my system! Instead, I think the ports system should start off with just the infrastructure: the INDEX, the Mk directory (and maybe the Templates directory) and individual ports should be pulled from the distribution sites (or the cdrom) using something like pib or portcheckout. These tools should also provide a means for updating the INDEX file and for updating individual ports. Neither of these tools (and no tools that I am aware of) do all of this. -- Robert Withrow -- (+1 978 288 8256) BWithrow@BayNetworks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 16:26:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from stono.cs.cofc.edu (stono.cs.cofc.edu [153.9.17.3]) by hub.freebsd.org (Postfix) with ESMTP id 15A1D37BDE9 for ; Thu, 13 Apr 2000 16:26:43 -0700 (PDT) (envelope-from jimmy@cs.cofc.edu) Received: from [153.9.17.27] (burton.cs.cofc.edu [153.9.17.27]) by stono.cs.cofc.edu (8.9.3/8.9.3) with ESMTP id TAA11263 for ; Thu, 13 Apr 2000 19:24:22 -0400 X-Sender: jimmy@stono.cs.cofc.edu Message-Id: In-Reply-To: <01fb01bfa15f$3b2e0520$0200000a@weeble.dyndns.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Thu, 13 Apr 2000 19:27:36 -0400 To: freebsd-ports@freebsd.org From: "James B. Wilkinson" Subject: Re: Making a package from a port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >----- Original Message ----- >> I built the python-1.5.2 port with one change from the configuration >> that it comes with: >> I changed WITH_TK? = yes to WITH_TK? = no. The port built ok, >> and none of the tests failed (although some were skipped, as expected). >> >> The next step is to copy this working python to about a dozen other >> machines in the same lab. It seemed to me that the right way to do that >> would be to make a package of the newly built port. >> So, thinking that I was >> following the instructions on FreeBSD.org's webpage, I typed, "make >> package" in /usr/ports/lang/python. It worked for a few seconds, and then >> quit because of an error. I'm sorry, I didn't write down the message >> exactly, but the jist of it was that tar couldn't find a file named >> "_tk.so >> >> That makes it seem to me as if it's trying to make a package of the >> standard port *with* tk rather than my modified one. >> >> I suspect that I might get it to work if I edited the PLIST file by hand, >> but I'm hoping that there's a more automated (and therefore probably more >> accurate) way to get what I want. Any chance? >> >> Thanks. >You hit the nail on the head. "make package" is using the PLIST to >determine what goes in that package. You're going to need to edit the >PLIST, then make your package. You'll only have to do this once, of course, >not on each machine. A question for the ports list: Would it be a good idea if the port facility were able to accommodate lines in the PLIST that were equivalent to #if (WITH_TK? == yes) include PLIST.tk and then put the names of all the tk-specific files in PLIST.tk? That would make it a lot easier on people who are building packages from ports with a different configuration. It seems clear that the ports are designed to be built that way if one wants to. Might make maintenance of a port easier, too? If that would be like asking for the moon from your point of view, just consider it mad ravings from the uninformed. BTW, I got it to work, but I had to edit work/PLIST and work/.PLIST.mktmp in addition to pkg/PLIST. Thanks ------------------------------------------------------------- Jimmy Wilkinson | Perfesser of Computer Science jimmy@cs.CofC.edu | The College of Charleston (843) 953-8160 | Charleston SC 29424 If there is one word to describe me, that word would have to be "profectionist". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 16:28:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 931D737BC2E for ; Thu, 13 Apr 2000 16:28:23 -0700 (PDT) (envelope-from nbm@sunesi.net) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 12ft1t-000PA2-00; Fri, 14 Apr 2000 01:28:09 +0200 Date: Fri, 14 Apr 2000 01:28:09 +0200 From: Neil Blakey-Milner To: Robert Withrow Cc: Brandon Fosdick , ports@FreeBSD.ORG Subject: Re: Some new ports broken on 4.0REL Message-ID: <20000414012809.A96692@mithrandr.moria.org> References: <200004132322.TAA36744@tuva.engeast.baynetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004132322.TAA36744@tuva.engeast.baynetworks.com>; from bwithrow@nortelnetworks.com on Thu, Apr 13, 2000 at 07:22:03PM -0400 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ lots of arb crap removed ] > Instead, I think the ports system should start off with just the > infrastructure: the INDEX, the Mk directory (and maybe the Templates > directory) and individual ports should be pulled from the distribution > sites (or the cdrom) using something like pib or portcheckout. These > tools should also provide a means for updating the INDEX file and for > updating individual ports. Neither of these tools (and no tools that > I am aware of) do all of this. I was just trying to help, I really don't need your long essay on the lack of documentation and functionality that you'd really like. However, your infrastructure sounds nice. When can I expect the code? Where are your patches to fix the documentation, while you're at it? Neil -- Neil Blakey-Milner Hacker In Chief, Sunesi Clinical Systems nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 16:30: 7 2000 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 E0B3137B59C for ; Thu, 13 Apr 2000 16:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA50084; Thu, 13 Apr 2000 16:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8949937BD1B for ; Thu, 13 Apr 2000 16:28:34 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA49892; Thu, 13 Apr 2000 16:28:33 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004132328.QAA49892@freefall.freebsd.org> Date: Thu, 13 Apr 2000 16:28:33 -0700 (PDT) From: bwithrow@nortelnetworks.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17995: xscreensaver-3.21 port references the wrong library Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17995 >Category: ports >Synopsis: xscreensaver-3.21 port references the wrong library >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 Apr 13 16:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Robert Withrow >Release: 4.0 RELEASE >Organization: Nortel Networks >Environment: FreeBSD kyzyl.engeast.baynetworks.com 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Wed Apr 12 19:57:40 EDT 2000 toor@kyzyl.engeast.baynetworks.com:/usr/src/sys/compile/DELL410 i386 >Description: The xscreensaver-3.21 port references the MesaGL.14 library instead of the GL.14 library. This causes it to attempt to rebuild Mesa, which fails because Mesa is already installed. >How-To-Repeat: Try building xscreensaver when Mesa is already installed. >Fix: This patch fixes the bug. Also appended uuencoded. *** Makefile.orig Thu Nov 25 01:19:05 1999 --- Makefile Thu Apr 13 19:00:06 2000 *************** *** 13,19 **** MAINTAINER= jseger@FreeBSD.org LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ ! MesaGL.14:${PORTSDIR}/graphics/Mesa3 GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-pam --with-gl --with-gle --with-xpm --- 13,19 ---- MAINTAINER= jseger@FreeBSD.org LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ ! GL.14:${PORTSDIR}/graphics/Mesa3 GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-pam --with-gl --with-gle --with-xpm begin 644 Makefile.patch M*BHJ($UA:V5F:6QE+F]R:6<)5&AU($YO=B`R-2`P,3HQ.3HP-2`Q.3DY"BTM M+2!-86ME9FEL90E4:'4@07!R(#$S(#$Y.C`P.C`V(#(P,#`**BHJ*BHJ*BHJ M*BHJ*BHJ"BHJ*B`Q,RPQ.2`J*BHJ"B`@34%)3E1!24Y%4CT):G-E9V5R0$9R M965"4T0N;W)G"B`@"B`@3$E"7T1%4$5.1%,]"5AP;2XT.B1[4$]25%-$25)] M+V=R87!H:6-S+WAP;2!<"B$@"0E-97-A1TPN,30Z)'M03U)44T1)4GTO9W)A M<&AI8W,O365S83,*("`*("!'3E5?0T].1DE'55)%/0EY97,*("!#3TY&24=5 M4D5?05)'4ST)+2UW:71H;W5T+7!A;2`M+7=I=&@M9VP@+2UW:71H+6=L92`M M+7=I=&@M>'!M"BTM+2`Q,RPQ.2`M+2TM"B`@34%)3E1!24Y%4CT):G-E9V5R M0$9R965"4T0N;W)G"B`@"B`@3$E"7T1%4$5.1%,]"5AP;2XT.B1[4$]25%-$ M25)]+V=R87!H:6-S+WAP;2!<"B$@"0E'3"XQ-#HD>U!/4E131$E2?2]GRelease-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 Apr 13 16:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from baynet.baynetworks.com (ns1.BayNetworks.COM [134.177.3.20]) by hub.freebsd.org (Postfix) with ESMTP id DD53337BA1C for ; Thu, 13 Apr 2000 16:38:38 -0700 (PDT) (envelope-from bwithrow@engeast.BayNetworks.COM) Received: from mailhost.BayNetworks.COM (h8754.s84f5.BayNetworks.COM [132.245.135.84]) by baynet.baynetworks.com (8.9.1/8.9.1) with ESMTP id QAA05274; Thu, 13 Apr 2000 16:37:09 -0700 (PDT) Received: from pobox.engeast.BayNetworks.COM (pobox.engeast.baynetworks.com [192.32.61.6]) by mailhost.BayNetworks.COM (8.9.1/8.8.8) with ESMTP id TAA15599; Thu, 13 Apr 2000 19:43:19 -0400 (EDT) Received: from tuva.engeast.baynetworks.com (tuva [192.32.150.102]) by pobox.engeast.BayNetworks.COM (SMI-8.6/BNET-97/04/24-S) with ESMTP id TAA14890; Thu, 13 Apr 2000 19:38:35 -0400 for Received: from tuva.engeast.baynetworks.com (localhost [127.0.0.1]) by tuva.engeast.baynetworks.com (8.9.3/8.9.3) with ESMTP id TAA36809; Thu, 13 Apr 2000 19:38:35 -0400 (EDT) (envelope-from bwithrow@tuva.engeast.baynetworks.com) Message-Id: <200004132338.TAA36809@tuva.engeast.baynetworks.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Neil Blakey-Milner Cc: "Withrow, Robert (W.) [BAY:BL60:430]" , Brandon Fosdick , ports@FreeBSD.ORG Subject: Re: Some new ports broken on 4.0REL In-Reply-To: Message from Neil Blakey-Milner of "Fri, 14 Apr 2000 01:28:09 +0200." <20000414012809.A96692@mithrandr.moria.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Apr 2000 19:38:35 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org nbm@mithrandr.moria.org said: :- I was just trying to help, I really don't need your long essay on the :- lack of documentation and functionality that you'd really like. So was I. And I really don't need your bogus advice about cvsuping the ports tree. :- However, your infrastructure sounds nice. When can I expect the code? :- Where are your patches to fix the documentation, while you're at it? They'll have to wait until I'm finished sending in all the fixes for the ports I'm working on right now. Now that you know that I'm busy fixing ports, I'm sure you will cheerfully pitch in and help asami put together the 4.0-to-4-stable upgrade kit that would solve this problem, won't you? And add it to the web page, while you are at it. -- Robert Withrow -- (+1 978 288 8256) BWithrow@BayNetworks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 16:45: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from baynet.baynetworks.com (ns1.BayNetworks.COM [134.177.3.20]) by hub.freebsd.org (Postfix) with ESMTP id BF6B337B88D; Thu, 13 Apr 2000 16:42:16 -0700 (PDT) (envelope-from bwithrow@engeast.BayNetworks.COM) Received: from mailhost.BayNetworks.COM (h8754.s84f5.BayNetworks.COM [132.245.135.84]) by baynet.baynetworks.com (8.9.1/8.9.1) with ESMTP id QAA05331; Thu, 13 Apr 2000 16:40:48 -0700 (PDT) Received: from pobox.engeast.BayNetworks.COM (pobox.engeast.baynetworks.com [192.32.61.6]) by mailhost.BayNetworks.COM (8.9.1/8.8.8) with ESMTP id TAA15644; Thu, 13 Apr 2000 19:46:58 -0400 (EDT) Received: from tuva.engeast.baynetworks.com (tuva [192.32.150.102]) by pobox.engeast.BayNetworks.COM (SMI-8.6/BNET-97/04/24-S) with ESMTP id TAA15182; Thu, 13 Apr 2000 19:42:14 -0400 for Received: from tuva.engeast.baynetworks.com (localhost [127.0.0.1]) by tuva.engeast.baynetworks.com (8.9.3/8.9.3) with ESMTP id TAA36844; Thu, 13 Apr 2000 19:42:14 -0400 (EDT) (envelope-from bwithrow@tuva.engeast.baynetworks.com) Message-Id: <200004132342.TAA36844@tuva.engeast.baynetworks.com> X-Mailer: exmh version 2.0.2 2/24/98 To: ports@freebsd.org Cc: jseger@freebsd.org Subject: xscreensaver-3.21 port references the wrong library Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Apr 2000 19:42:14 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've submitted pr ports/17995 about this, but until the port gets updated, the following patch fixes the problem. *** Makefile.orig Thu Nov 25 01:19:05 1999 --- Makefile Thu Apr 13 19:00:06 2000 *************** *** 13,19 **** MAINTAINER= jseger@FreeBSD.org LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ ! MesaGL.14:${PORTSDIR}/graphics/Mesa3 GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-pam --with-gl --with-gle --with-xpm --- 13,19 ---- MAINTAINER= jseger@FreeBSD.org LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ ! GL.14:${PORTSDIR}/graphics/Mesa3 GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-pam --with-gl --with-gle --with-xpm -- Robert Withrow -- (+1 978 288 8256) BWithrow@BayNetworks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 17:11:52 2000 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 25FD737B6E0 for ; Thu, 13 Apr 2000 17:11:46 -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 UAA01526; Thu, 13 Apr 2000 20:11:07 -0400 (EDT) (envelope-from bfoz@glue.umd.edu) Message-ID: <38F6621B.FE4A6222@glue.umd.edu> Date: Thu, 13 Apr 2000 20:11:07 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Robert Withrow Cc: Neil Blakey-Milner , ports@FreeBSD.ORG Subject: Re: Some new ports broken on 4.0REL References: <200004132322.TAA36744@tuva.engeast.baynetworks.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Robert Withrow wrote: > > nbm@mithrandr.moria.org said: > :- He means: "Did you cvsup ports-base?" > > Answer: no. > > Question: Where does it say that cvsup is the only "authorized" way to > use the ports collection. > Answer: No where. > > Please, all of you, go and read *your* web page. I specifically direct your > attention to this passage: > > > "These are FreeBSD packages; please use pkg_add to install them. > That should enable you to use all the ports listed here." First of all, it's not _my_ webpage. Second, not only does the webpage avoid suggesting that cvsup is the only authorized solution, but none of the replies to your query suggested that either. The team puts a lot of effort into making the necessary bits readily available through a variety of channels. Third, both the webpage and the cvsup suggestion are correct. You could also check any of the numerous ftp mirrors for the necessary files, which is exactly why I didn't specify that you had to cvsup. Fourth, I'm aware of the fact that there isn't an upgrade package for 4.0 yet, that's why I asked if you had already updated those files (in case you already knew and had just forgotten). I needed more information, that's why I asked. If you had simply answered my question without lambasting the entire FreeBSD team, we'd have gotten to a workable solution much faster. and with a lot less flame. Fifth, in the open source world suggesting an improvement is the same as volunteering to implement it. Be careful what you wish for. Finally, everybody here is a volunteer. As such we have little reason to put up with people that throw a tantrum. You'll get the help you need around here much faster if you play nicely. -Brandon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 17:22:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hsw.generalresources.com (z12.generalresources.com [210.242.169.12]) by hub.freebsd.org (Postfix) with ESMTP id A6FBD37B800 for ; Thu, 13 Apr 2000 17:22:24 -0700 (PDT) (envelope-from hsw@hsw.generalresources.com) Received: from hsw.generalresources.com (hsw@localhost [127.0.0.1]) by hsw.generalresources.com (8.9.3/8.9.3) with ESMTP id IAA44903; Fri, 14 Apr 2000 08:21:38 +0800 (CST) (envelope-from hsw@hsw.generalresources.com) Message-Id: <200004140021.IAA44903@hsw.generalresources.com> To: "Akinori -Aki- MUSHA" Cc: veldy@veldy.net, freebsd-ports@FreeBSD.ORG Subject: Re: Broken Apache-PHP ports!! From: Christopher Hall Reply-To: Christopher Hall In-Reply-To: Message from "Akinori -Aki- MUSHA" of "Fri, 14 Apr 2000 02:08:45 +0900." <86puruszc2.wl@archon.local.idaemons.org> Date: Fri, 14 Apr 2000 08:21:38 +0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <86puruszc2.wl@archon.local.idaemons.org>, "Akinori -Aki- MUSHA" writes: >At Thu, 13 Apr 2000 11:31:54 -0500, >Thomas T. Veldhouse wrote: >> apache+php-1.3.12+3.0.16: You need to define PORTNAME and PORTVERSION >> instead of >> PKGNAME. > >Seems to me that your ports tree is somewhat old. > >Anyway, conversion is still under way and the tree tends to be >inconsistent until everything's done. I cannot tell when, but we've >been working hard. > >Sorry for the inconvenience. > >-- > / > /__ __ > / ) ) ) ) / >Akinori -Aki- MUSHA aka / (_ / ( (__( > >"If you choose not to decide you still have made a choice." > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-ports" in the body of the message > There is a problem with the scripts/configure.php, but it only applies to selecting MOD_SSL. Just edit the generated Makefile.inc to split up the PKGNAME to PORTNAME/PORTVERSION. I sent a PR on this yesterday but my send-pr did not work. I will send again today, but here are the diffs in case I cannot get send-pr to work. apache13-php3 diff ================== --- scripts/configure.php.orig Thu Apr 6 03:59:26 2000 +++ scripts/configure.php Thu Apr 13 10:42:01 2000 @@ -155,7 +155,8 @@ ;; \"modssl\") cat << EOF -PKGNAME= apache+php+mod_ssl-\${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} +PORTNAME= apache+php+mod_ssl +PORTVERSION= \${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} DISTFILES+= mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE}\${EXTRACT_SUFX} USE_OPENSSL= RSA apache13-php4 diff ================== --- scripts/configure.php.orig Thu Apr 6 03:59:30 2000 +++ scripts/configure.php Thu Apr 13 10:51:24 2000 @@ -139,7 +139,8 @@ ;; \"modssl\") cat << EOF -PKGNAME= apache+php+mod_ssl-\${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} +PORTNAME= apache+php+mod_ssl +PORTVERSION= \${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} DISTFILES+= mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE}\${EXTRACT_SUFX} USE_OPENSSL= RSA --- Christopher Hall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 17:29:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id D73A037BDF8 for ; Thu, 13 Apr 2000 17:29:34 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from admin (admin.westbend.net [209.224.254.141]) by mail.westbend.net (8.9.3/8.9.3) with SMTP id TAA00126; Thu, 13 Apr 2000 19:29:27 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <007501bfa5a8$7e58c9a0$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: "James B. Wilkinson" Cc: References: Subject: Re: Making a package from a port Date: Thu, 13 Apr 2000 19:29:27 -0500 Organization: West Bend Internet MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.3825.400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.3825.400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: "James B. Wilkinson" > >You hit the nail on the head. "make package" is using the PLIST to > >determine what goes in that package. You're going to need to edit the > >PLIST, then make your package. You'll only have to do this once, of course, > >not on each machine. > > A question for the ports list: > > Would it be a good idea if the port facility were able to accommodate > lines in the PLIST that were equivalent to > > #if (WITH_TK? == yes) include PLIST.tk > > and then put the names of all the tk-specific files in PLIST.tk? > That would make it a lot easier on people who are building > packages from ports with a different configuration. It seems clear > that the ports are designed to be built that way if one wants to. > > Might make maintenance of a port easier, too? > There are three ways to include/exclude a file from a PLIST. 1. Using a grep command to remove the entry from the PLIST (see www/apache13-fp) 2. Using an echo command to add a file to a PLIST (see mail/cyrus) 3. Use a different PLIST depending on if a variable is defined or a specific condition (i.e. PLIST, PLIST.notk) (see x11-clocks/emiclock). Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 18: 0: 6 2000 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 B0BE037B94A for ; Thu, 13 Apr 2000 18:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA64677; Thu, 13 Apr 2000 18:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FC1D37BE14 for ; Thu, 13 Apr 2000 17:54:10 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA64246; Thu, 13 Apr 2000 17:54:09 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004140054.RAA64246@freefall.freebsd.org> Date: Thu, 13 Apr 2000 17:54:09 -0700 (PDT) From: bwithrow@nortelnetworks.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/17996: Exmh-2.1.1 port doesn't work with nmh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17996 >Category: ports >Synopsis: Exmh-2.1.1 port doesn't work with nmh >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 13 18:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Robert Withrow >Release: 4.0 RELEASE >Organization: Nortel Networks >Environment: FreeBSD kyzyl.engeast.baynetworks.com 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Wed Apr 12 19:57:40 EDT 2000 toor@kyzyl.engeast.baynetworks.com:/usr/src/sys/compile/DELL410 i386 >Description: The exmh-2.1.1 port has a typo that prevents it working correctly with nmh. >How-To-Repeat: Try to use exmh-2.1.1 with nmh. >Fix: This patch fixes the problem. It is also appended uuencoded. *** Makefile.orig Sun Mar 5 04:56:17 2000 --- Makefile Thu Apr 13 19:57:32 2000 *************** *** 33,39 **** RUN_DEPENDS+= repl:${PORTSDIR}/mail/mh .else RUN_DEPENDS+= repl:${PORTSDIR}/mail/nmh ! SCRIPT_ENV+= USE_NMH=YES .endif .endif --- 33,39 ---- RUN_DEPENDS+= repl:${PORTSDIR}/mail/mh .else RUN_DEPENDS+= repl:${PORTSDIR}/mail/nmh ! SCRIPTS_ENV+= USE_NMH=YES .endif .endif begin 644 Makefile.patch M*BHJ($UA:V5F:6QE+F]R:6<)4W5N($UAU!/4E131$E2?2]M86EL+VYM:`HA(%-#4DE05%]%3E8K/0E54T5?3DU( M/5E%4PH@("YE;F1I9@H@("YE;F1I9@H@(`HM+2T@,S,L,SD@+2TM+0H@(%)5 M3E]$15!%3D13*ST)U!/4E131$E2?2]M86EL+VUH"B`@+F5LRelease-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 Apr 13 18: 3:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from southpass.baynetworks.com (ns2.BayNetworks.COM [134.177.3.16]) by hub.freebsd.org (Postfix) with ESMTP id F3B0D37BC8B; Thu, 13 Apr 2000 18:01:02 -0700 (PDT) (envelope-from bwithrow@engeast.BayNetworks.COM) Received: from mailhost.BayNetworks.COM (h8754.s84f5.BayNetworks.COM [132.245.135.84]) by southpass.baynetworks.com (8.9.1/8.9.1) with ESMTP id RAA18231; Thu, 13 Apr 2000 17:53:54 -0700 (PDT) Received: from pobox.engeast.BayNetworks.COM (pobox.engeast.baynetworks.com [192.32.61.6]) by mailhost.BayNetworks.COM (8.9.1/8.8.8) with ESMTP id VAA19281; Thu, 13 Apr 2000 21:05:44 -0400 (EDT) Received: from kyzyl.engeast.baynetworks.com (kyzyl [192.32.150.103]) by pobox.engeast.BayNetworks.COM (SMI-8.6/BNET-97/04/24-S) with ESMTP id VAA21076; Thu, 13 Apr 2000 21:01:00 -0400 for Message-Id: <200004140101.VAA21076@pobox.engeast.BayNetworks.COM> X-Mailer: exmh version 2.1.1 10/15/1999 To: ports@FreeBSD.org Cc: markm@FreeBSD.org Subject: exmh-2.1.1 port doesn't work with nmh Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Apr 2000 20:58:37 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This has been reported in pr "ports/17996". Until it is fixed the following patch fixes the problem. *** Makefile.orig Sun Mar 5 04:56:17 2000 --- Makefile Thu Apr 13 19:57:32 2000 *************** *** 33,39 **** RUN_DEPENDS+= repl:${PORTSDIR}/mail/mh .else RUN_DEPENDS+= repl:${PORTSDIR}/mail/nmh ! SCRIPT_ENV+= USE_NMH=YES .endif .endif --- 33,39 ---- RUN_DEPENDS+= repl:${PORTSDIR}/mail/mh .else RUN_DEPENDS+= repl:${PORTSDIR}/mail/nmh ! SCRIPTS_ENV+= USE_NMH=YES .endif .endif -- Robert Withrow -- (+1 978 288 8256) BWithrow@BayNetworks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 18:20: 5 2000 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 600E637BDF5 for ; Thu, 13 Apr 2000 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 SAA66585; Thu, 13 Apr 2000 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hsw.generalresources.com (z12.generalresources.com [210.242.169.12]) by hub.freebsd.org (Postfix) with ESMTP id 5A10E37B58B for ; Thu, 13 Apr 2000 18:16:16 -0700 (PDT) (envelope-from hsw@hsw.generalresources.com) Received: (from hsw@localhost) by hsw.generalresources.com (8.9.3/8.9.3) id JAA45291; Fri, 14 Apr 2000 09:16:15 +0800 (CST) (envelope-from hsw) Message-Id: <200004140116.JAA45291@hsw.generalresources.com> Date: Fri, 14 Apr 2000 09:16:15 +0800 (CST) From: hsw@acm.org Reply-To: hsw@acm.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17998: apache13-php scripts/configure.php has PKGNAME Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17998 >Category: ports >Synopsis: apache13-php scripts/configure.php has PKGNAME >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: Thu Apr 13 18:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christopher Hall >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: ports were CVSUPed again to check that I had not missed the changes to the scripts/configure.php >Description: ports/apache13-php(3 or 4) fails if MOD_SSL is selected The generated Makefile.inc is incorrect >How-To-Repeat: cd /usr/ports/apache13-php(3 or 4) make ...Ensure MOD_SSL is checked in the selection box error messages look at Makefile.inc and see the PKGNAME=... if edit Makefile.inc to split into PORTNAME/PORTVERSION then can continue the build. >Fix: Here are the diffs to fix the configure script apache13-php3 diff ================== --- scripts/configure.php.orig Thu Apr 6 03:59:26 2000 +++ scripts/configure.php Thu Apr 13 10:42:01 2000 @@ -155,7 +155,8 @@ ;; \"modssl\") cat << EOF -PKGNAME= apache+php+mod_ssl-\${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} +PORTNAME= apache+php+mod_ssl +PORTVERSION= \${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} DISTFILES+= mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE}\${EXTRACT_SUFX} USE_OPENSSL= RSA apache13-php4 diff ================== --- scripts/configure.php.orig Thu Apr 6 03:59:30 2000 +++ scripts/configure.php Thu Apr 13 10:51:24 2000 @@ -139,7 +139,8 @@ ;; \"modssl\") cat << EOF -PKGNAME= apache+php+mod_ssl-\${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} +PORTNAME= apache+php+mod_ssl +PORTVERSION= \${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} DISTFILES+= mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE}\${EXTRACT_SUFX} USE_OPENSSL= RSA >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 Apr 13 19: 8:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 239F937B5BB for ; Thu, 13 Apr 2000 19:08:24 -0700 (PDT) (envelope-from robert@cyrus.watson.org) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.9.3/8.9.3) with SMTP id WAA55650 for ; Thu, 13 Apr 2000 22:08:22 -0400 (EDT) (envelope-from robert@cyrus.watson.org) Date: Thu, 13 Apr 2000 22:08:22 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org Reply-To: Robert Watson To: ports@freebsd.org Subject: Apache+modssl in 4.0-RELEASE 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 Probably long since fixed, but I noticed that on the 4.0-RELEASE ISO, the Apache-ModSSL package is missing a dependency on libmm (devel/mm?) -- as a result, ``apachectl startssl'' gives a shared object error concerning a missing libmm.so. It's really cool that we can finally offer stuff like SSL-enabled web servers in the base distribution, but it's good to get the dependencies right :-) Thanks! Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 19:10:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peloton.runet.edu (peloton.runet.edu [137.45.96.205]) by hub.freebsd.org (Postfix) with ESMTP id 58A4A37BE11 for ; Thu, 13 Apr 2000 19:10:35 -0700 (PDT) (envelope-from brett@peloton.runet.edu) Received: from localhost (brett@localhost) by peloton.runet.edu (8.9.3/8.9.3) with ESMTP id WAA27580; Thu, 13 Apr 2000 22:10:12 -0400 (EDT) (envelope-from brett@peloton.runet.edu) Date: Thu, 13 Apr 2000 22:10:12 -0400 (EDT) From: Brett Taylor To: Robert Withrow Cc: Neil Blakey-Milner , Brandon Fosdick , ports@FreeBSD.ORG Subject: Re: Some new ports broken on 4.0REL In-Reply-To: <200004132322.TAA36744@tuva.engeast.baynetworks.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 Thu, 13 Apr 2000, Robert Withrow wrote: > nbm@mithrandr.moria.org said: > :- He means: "Did you cvsup ports-base?" > > Answer: no. > > Question: Where does it say that cvsup is the only "authorized" way to > use the ports collection. > Answer: No where. CVSup is the way to update your ports collection, not use it. If you use it to update the ports tree then you need to update ports/Mk as well - you do that w/ ports-base. There are only 2 other ways to update your ports tree: - grab the entire new ports tarball and unpack it - update only the ports you want If you do the former, ports/Mk is taken care of. If you do the latter than you need to also grab ports/Mk. > Please, all of you, go and read *your* web page. I specifically > direct your attention to this passage: > "These are FreeBSD packages; please use pkg_add to install them. > That should enable you to use all the ports listed here." > That words "should enable you to use all the ports listed here" seems > like pretty plain English, doesn't it? I assume you mean the upgrade packages. If there isn't one there yet, try being patient. You clearly weren't patient in waiting to grab the latest version of libtool. > P.S.: I certainly *hope* it isn't the case that you *require* the use > of cvsup, since that is the *last* think I want to do. In fact, since > the typical user probably uses at most a dozen of the ports, or so, I > think any time spent updating the thousands of unused and unwanted > ports is an enormous waste of time and resources. If you don't want all of the "hassle" of the ports tree and keeping it updated, then use packages. If you don't want that then learn how to make a cvsup refuse file. If neither of those satisfy you then compile each piece of software you want by hand. > Instead, I think the ports system should start off with just the > infrastructure: the INDEX, the Mk directory (and maybe the Templates > directory) and individual ports should be pulled from the distribution > sites (or the cdrom) using something like pib or portcheckout. These > tools should also provide a means for updating the INDEX file and for > updating individual ports. Neither of these tools (and no tools that > I am aware of) do all of this. submit patches then - this is a volunteer effort. Brett ***************************************************** Dr. Brett Taylor brett@peloton.runet.edu * Dept of Chem and Physics * Curie 39A (540) 831-6147 * Dept. of Mathematics and Statistics * Walker 234 (540) 831-5410 * ***************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 21:13:47 2000 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 2EF8D37BDA4; Thu, 13 Apr 2000 21:13:45 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA82498; Thu, 13 Apr 2000 21:13:45 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Thu, 13 Apr 2000 21:13:45 -0700 (PDT) From: Message-Id: <200004140413.VAA82498@freefall.freebsd.org> To: bwithrow@nortelnetworks.com, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17994: Mesa-3.1 port is broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Mesa-3.1 port is broken State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Fri Apr 14 13:13:21 JST 2000 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 Thu Apr 13 21:20:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id 3361A37B597 for ; Thu, 13 Apr 2000 21:20:51 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca7-18.ix.netcom.com [209.109.235.18]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id AAA08792; Fri, 14 Apr 2000 00:20:23 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id VAA40697; Thu, 13 Apr 2000 21:19:36 -0700 (PDT) To: Robert Withrow Cc: Neil Blakey-Milner , Brandon Fosdick , ports@FreeBSD.ORG Subject: Re: Some new ports broken on 4.0REL References: <200004132322.TAA36744@tuva.engeast.baynetworks.com> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 13 Apr 2000 21:19:31 -0700 In-Reply-To: Robert Withrow's message of "Thu, 13 Apr 2000 19:22:03 -0400" Message-ID: Lines: 20 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Robert Withrow * Please, all of you, go and read *your* web page. I specifically direct your If you paid a little more attention, you may have seen this paragraph in the very page you are quoting huge chunks of: "The ports listed on these web pages are continually being updated. It is recommended that you refresh the entire collection together, as many ports depend on other parts of the tree. If that is not possible, at least make sure you get the latest make macro files in ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ports/Mk. (If you are using cvsup, this means you need ports-base in ^^^^^^^^ your cvsupfile.) If you still see errors even with the latest bsd.port.mk and friends, please fetch the entire collection." I rest my case. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 21:28: 9 2000 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 5C82137B596; Thu, 13 Apr 2000 21:28:08 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA83752; Thu, 13 Apr 2000 21:28:08 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Thu, 13 Apr 2000 21:28:08 -0700 (PDT) From: Message-Id: <200004140428.VAA83752@freefall.freebsd.org> To: hsw@acm.org, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17998: apache13-php scripts/configure.php has PKGNAME Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: apache13-php scripts/configure.php has PKGNAME State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Fri Apr 14 13:26:36 JST 2000 State-Changed-Why: Caught `it', thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 22: 6:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dt051n0b.san.rr.com (dt051n0b.san.rr.com [204.210.32.11]) by hub.freebsd.org (Postfix) with ESMTP id D58D137B64C for ; Thu, 13 Apr 2000 22:06:42 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt051n0b.san.rr.com (8.9.3/8.9.3) with ESMTP id WAA15995; Thu, 13 Apr 2000 22:06:08 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <38F6A743.27B579AE@gorean.org> Date: Thu, 13 Apr 2000 22:06:11 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.72 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Robert Withrow Cc: Neil Blakey-Milner , Brandon Fosdick , ports@FreeBSD.ORG Subject: Re: Some new ports broken on 4.0REL References: <200004132322.TAA36744@tuva.engeast.baynetworks.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Robert Withrow wrote: > > nbm@mithrandr.moria.org said: > :- He means: "Did you cvsup ports-base?" > > Answer: no. > > Question: Where does it say that cvsup is the only "authorized" way to > use the ports collection. > Answer: No where. > > Please, all of you, go and read *your* web page. I specifically direct your > attention to this passage: This is a joke, right? You're not honestly berating a group of volunteers by quoting huge passages of the web page at us, are you? > "These are FreeBSD packages; please use pkg_add to install them. > That should enable you to use all the ports listed here." > > That words "should enable you to use all the ports listed here" seems like > pretty plain English, doesn't it? Yes it is, and the word "should" clearly indicates that there are times when you won't be able to. Do you even know what's happening in the ports tree right now? Do you really think that you can just fool around updating bits and pieces and accept no responsibility whatsoever for keeping up to date with what's happening in the system? I realize that you'd like the whole freebsd project to cater to your wants and desires, but that's just not going to happen. We work to improve our online documentation on a continuous basis. If there are specific areas that are unclear to you, we'd like to improve that. But berating the people who will be making the changes won't get you very far. If you don't have time to generate diffs, fine. Make specific, constructive suggestions. Otherwise, quit your whining, we don't have time for it. Doug -- Excess on occasion is exhilarating. It prevents moderation from acquiring the deadening effect of a habit. -- W. Somerset Maugham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 22:30: 6 2000 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 DEDD537BE18 for ; Thu, 13 Apr 2000 22:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA91980; Thu, 13 Apr 2000 22:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 13 Apr 2000 22:30:02 -0700 (PDT) Message-Id: <200004140530.WAA91980@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Palle Girgensohn Subject: Re: ports/17835: www/apache-jserv: put jar-files in share/java/classes Reply-To: Palle Girgensohn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17835; it has been noted by GNATS. From: Palle Girgensohn To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/17835: www/apache-jserv: put jar-files in share/java/classes Date: Fri, 14 Apr 2000 07:23:22 +0200 And here is the mentioned patch-ah... [sorry!] --- src/java/Makefile.in.orig Fri Apr 7 01:36:25 2000 +++ src/java/Makefile.in Fri Apr 7 01:37:51 2000 @@ -109,7 +109,7 @@ SUBDIRS = org ARCHIVE = $(PACKAGE).jar -jardir = ${libexecdir} +jardir = $(prefix)/share/java/classes jar_DATA = ${ARCHIVE} # VT: NOTE: This is not going to be as bad as in ECS because the findstring secure format: begin 644 patch-ah M+2TM('-R8R]J879A+TUA:V5F:6QE+FEN+F]R:6<)1G)I($%P; Thu, 13 Apr 2000 22:42:07 -0700 (PDT) (envelope-from jjreynold@home.com) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.9.3/8.9.3) with ESMTP id WAA98233 for ; Thu, 13 Apr 2000 22:42:06 -0700 (MST) (envelope-from jjreynold@home.com) Received: (from jjreynold@localhost) by whale.home-net (8.9.3/8.9.3) id WAA23236; Thu, 13 Apr 2000 22:42:06 -0700 (MST) (envelope-from jjreynold@home.com) From: John Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14582.44973.654107.980182@whale.home-net> Date: Thu, 13 Apr 2000 22:42:05 -0700 (MST) To: ports@freebsd.org Subject: make index broken? X-Mailer: VM 6.73 under Emacs 20.6.1 Cc: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I've got a newly CVSup'ed ports tree and was trying to do "make index" from /usr/ports and I got this: root@whale [/usr/ports]<8># make index Generating INDEX - please wait..make: don't know how to make describe. Stop At the top of the INDEX file it shows this: *** Error code 1||||||| *** Error code 2||||||| Stop.||||||| Stop.||||||| ||||||| ||||||| ||||||| How can one debug this? Is this happening to anyone else? -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jjreynold@home.com FreeBSD 3.4-STABLE. FreeBSD: The Power to Serve. http://members.home.com/jjreynold/ 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 Thu Apr 13 23:20:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.dinoex.sub.org (mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (Postfix) with ESMTP id F386F37BDE5 for ; Thu, 13 Apr 2000 23:20:39 -0700 (PDT) (envelope-from dirk.meyer@dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.9.3/8.9.3) with UUCP id IAA29310 for freebsd-ports@FreeBSD.ORG; Fri, 14 Apr 2000 08:20:23 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with BSMTP id GAA11636 for ; Fri, 14 Apr 2000 06:30:04 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-ports@FreeBSD.ORG Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: ports/17987: security/ssh fix install Date: Fri, 14 Apr 2000 06:24:36 +0200 X-Mailer: Dinoex 1.75 References: <200004131950.MAA15865@freefall.freebsd.org> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.90] X-Accept-Language: de,en X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Copyright: (C) Copyright 1999 by Dirk Meyer -- All rights reserved. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20000414000000S+2@dinoex.sub.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Kris Kennaway wrote:, > It might help to run a PR search before submitting, because this has been > reported in the following PRs (with explanation and promise of fix as soon > as the ports tree is unfrozen): > > 17927 will ports open critical low current-us > ssh port fail > s to install properly > 17937 will ports open serious low current-us > security/ssh2 > install fails. > 17947 freebsd- ports open non-criti medium current-us > ssh port does > n't complete install phase Yes you are right, I found the fix 17947 when I got my mailbox later. What should I do if I have no online access to FreeBSD.org ? Wait a few days till I am able to check GANTS before submitting? I did noch check Online but even if I had done it, I would have send in this case. When I try now, seraching for "security/ssh" i get: S Submitted Tracker Resp. Description __________________________________________________________________________ o [1998/11/24] bin/8829 bug in innetgr (was: Fix port: security/ss S Submitted Tracker Resp. Description __________________________________________________________________________ c [1998/12/08] ports/9019 torstenb ports/security/ssh broken c [1999/09/01] ports/13515 ports Update port : security/ssh2 (fix security c [1999/09/02] ports/13536 ports Security fix : security/ssh port. c [1999/11/06] ports/14749 ports /usr/ports/security/ssh/ has remote buffer c [1999/11/22] ports/15059 ports Fix fetching problem on security/ssh2 port o [2000/04/11] ports/17937 will security/ssh2 install fails. S Submitted Tracker Resp. Description __________________________________________________________________________ c [1998/10/08] ports/8204 kuriyama New port: security/ssh2 (ssh-2.0.9) c [1998/12/01] ports/8916 ports Update ports: security/ssh2 o [1999/02/21] ports/10178 torstenb USE_SOCKS=YES option broken for security/s c [1999/03/13] ports/10577 ports Fix port bug: security/ssh2 c [1999/06/05] ports/12037 torstenb Update port: security/ssh c [1999/06/17] ports/12269 ports Fix building problem of security/ssh port c [1999/08/09] ports/13048 ports ports/security/ssh2 3.2 & current fail to o [1999/08/15] ports/13167 torstenb [PATCH] security/ssh package keygen fails c [2000/04/13] ports/17987 ports security/ssh fix install _________________________________________________________________ Question: Can somebody give any advise, how I can inporove the search for any given problem? kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 13 23:31: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from emerald.oz.net (emerald2.oz.net [216.39.128.2]) by hub.freebsd.org (Postfix) with ESMTP id 7E40337B64C; Thu, 13 Apr 2000 23:31:03 -0700 (PDT) (envelope-from kzentner@u.washington.edu) Received: from sense-sea-MegaSub-1-723.oz.net (sense-sea-MegaSub-1-723.oz.net [216.39.146.215]) by emerald.oz.net (8.9.3/8.7.3) with ESMTP id XAA06056; Thu, 13 Apr 2000 23:15:15 -0700 (PDT) Date: Thu, 13 Apr 2000 23:31:00 -0700 (PDT) From: Kristopher Zentner X-Sender: darxpryte@gabrielle.washington.edu To: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17917: port update: audio/soundtracker In-Reply-To: <200004110220.TAA35699@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org One last thing I wanted to get in here before the update. There's a minor spelling error in the Makefile: --- Makefile Thu Apr 13 23:26:42 2000 +++ Makefile.old Thu Apr 13 23:30:05 2000 @@ -15,7 +15,7 @@ LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 .if defined(USE_GNOME) -LIB_DEPENDS+= gnome.3:${PORTSDIR}/x11/gnomelibs +LIB_DEPENDS+= gnome.3:${PORTSIDR}/x11/gnomelibs .endif GTK_CONFIG?= ${X11BASE}/bin/gtk12-config To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 0:50: 6 2000 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 3025637BE53 for ; Fri, 14 Apr 2000 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 AAA10664; Fri, 14 Apr 2000 00:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 91D1C37B5D5 for ; Fri, 14 Apr 2000 00:41:41 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA09841; Fri, 14 Apr 2000 00:41:41 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004140741.AAA09841@freefall.freebsd.org> Date: Fri, 14 Apr 2000 00:41:41 -0700 (PDT) From: rorsten@ualberta.ca To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18000: All Netscape 4 try to reinstall X, XFree86-aoutlibs thankfully also broken. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18000 >Category: ports >Synopsis: All Netscape 4 try to reinstall X, XFree86-aoutlibs thankfully also broken. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 00:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Reid Orsten >Release: 4.0-RELEASE >Organization: >Environment: FreeBSD dhcp-204-107.henday.ualberta.ca 4.0-RELEASE FreeBSD 4.0-RELEASE #5: Thu Apr 13 18:56:43 MDT 2000 root@dhcp-204-107.henday.ualberta.ca:/usr/src/sys/compile/XMONKEYX i386 >Description: This will apply for any machine, I think. When you try to make install ports/www/netscape4*, it will try to install the aout version of X. On my machine, it fails dismally. >How-To-Repeat: as root: [some netscape] = any netscape port cd /usr/ports/www/[some netscape] make install >Fix: Get and use the BSDi version of netscape instead of the FreeBSD version. Manually install by decompressing it and running the ns-install script. (let it go in /usr/local/netscape as it wishes and then make a symlink to the executable like 'ln -s /usr/local/netscape/netscape /usr/bin/netscape') >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 Apr 14 1:12:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ipt2.iptelecom.net.ua (ipt2.iptelecom.net.ua [212.9.224.2]) by hub.freebsd.org (Postfix) with ESMTP id 96EFD37B754 for ; Fri, 14 Apr 2000 01:12:37 -0700 (PDT) (envelope-from sobomax@altavista.net) Received: from vega.vega.com (dialup2-8.iptelecom.net.ua [212.9.226.72]) by ipt2.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id LAA08701 for ; Fri, 14 Apr 2000 11:18:40 +0300 (EEST) Received: from altavista.net (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.9.3/8.9.3) with ESMTP id LAA40617 for ; Fri, 14 Apr 2000 11:12:01 +0300 (EEST) (envelope-from sobomax@altavista.net) Message-ID: <38F6D2BC.A14352E4@altavista.net> Date: Fri, 14 Apr 2000 11:11:41 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.72 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: ports@freebsd.org Subject: Announcement: Qt version 2.1 released Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Announcement: Qt version 2.1 released (2000/04/12) - Troll Tech (http://www.trolltech.com) is proud to present version 2.1 of Qt, the cross-platform C++ Graphical User Interface application framework. Version 2.1 introduces new features as well as many improvements over the 2.0.x series.Major new features in this release include: * Object property system; enables construction of GUI builders, scripting, etc. * Support for building MDI (multiple document interface) applications. * The HTML viewer has extended functionality and improved performance (it is now faster than Internet Explorer on Windows). * QIconView widget, allowing the presentation and user manipulation of huge amounts of icons. Qt 2.1 contains 12 major new classes, and a long range of new functionality added to existing classes. For current users, upgrading to Qt 2.1 is easy: it is both binary and source compatible with earlier 2.x releases. A detailed presentation of all the changes can be found here. Qt is released in two different versions: * The Qt Free Edition, which may be used free of charge for developing Free (non-proprietary) Software on Unix/X11. This version is available for download here. * The Qt Professional Edition, which may be used to develop commercial/proprietary software on Unix/X11 and Microsoft Windows. For pricing and availability, please see http://www.trolltech.com/pricing.html. For further information, please see our web site: http://www.trolltech.com or contact us by e-mail at info@trolltech.com. Qt is a trademark of Troll Tech AS. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 3:43:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id F0FCB37BE34; Fri, 14 Apr 2000 03:43:36 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id DAA92390; Fri, 14 Apr 2000 03:43:32 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 48C491983; Fri, 14 Apr 2000 06:43:26 -0400 (EDT) Date: Fri, 14 Apr 2000 06:43:26 -0400 From: Will Andrews To: Robert Withrow Cc: ports@FreeBSD.ORG, markm@FreeBSD.ORG Subject: Re: exmh-2.1.1 port doesn't work with nmh Message-ID: <20000414064326.A19141@argon.blackdawn.com> References: <200004140101.VAA21076@pobox.engeast.BayNetworks.COM> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200004140101.VAA21076@pobox.engeast.BayNetworks.COM>; from bwithrow@baynetworks.com on Thu, Apr 13, 2000 at 08:58:37PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Apr 13, 2000 at 08:58:37PM -0400, Robert Withrow wrote: > This has been reported in pr "ports/17996". Until it is fixed the > following patch fixes the problem. Why are you sending redundant patches to the ports list? -- 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 Fri Apr 14 3:50:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 62C8337B752 for ; Fri, 14 Apr 2000 03:50:45 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id DAA92471; Fri, 14 Apr 2000 03:50:40 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 3DC941983; Fri, 14 Apr 2000 06:50:27 -0400 (EDT) Date: Fri, 14 Apr 2000 06:50:27 -0400 From: Will Andrews To: John Reynolds Cc: ports@FreeBSD.ORG Subject: Re: make index broken? Message-ID: <20000414065027.B19141@argon.blackdawn.com> References: <14582.44973.654107.980182@whale.home-net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <14582.44973.654107.980182@whale.home-net>; from jjreynold@home.com on Thu, Apr 13, 2000 at 10:42:05PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Apr 13, 2000 at 10:42:05PM -0700, John Reynolds wrote: > I've got a newly CVSup'ed ports tree and was trying to do "make index" from > /usr/ports and I got this: > > root@whale [/usr/ports]<8># make index > Generating INDEX - please wait..make: don't know how to make describe. Stop Why are you using ``make index'' anyway? The only thing it does is generate INDEX, which isn't awesomely useful for the average person since Satoshi regens it himself every now and then. Overwriting ports/INDEX brings a risk - cvs (or whatever tool you use) may think the previous revision (which is supposed to be on your system) is broken/gone/fubar'd/whatever. The INDEX file is pretty darn big.. ;) I do suppose perhaps you simply ignore cvs/cvsup on ports/INDEX and regen it yourself every few days or something. That could save download time, but certainly not CPU or I/O time. :) > At the top of the INDEX file it shows this: > > *** Error code 1||||||| > *** Error code 2||||||| > Stop.||||||| > Stop.||||||| > ||||||| > ||||||| > ||||||| > > How can one debug this? Is this happening to anyone else? It is my suspicion that this is caused by PORTNAME/PORTVERSION. -- 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 Fri Apr 14 3:53: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 937D337B6CF for ; Fri, 14 Apr 2000 03:53:07 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id DAA92500; Fri, 14 Apr 2000 03:53:04 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id C2EB91983; Fri, 14 Apr 2000 06:52:59 -0400 (EDT) Date: Fri, 14 Apr 2000 06:52:59 -0400 From: Will Andrews To: Maxim Sobolev Cc: ports@FreeBSD.ORG Subject: Re: Announcement: Qt version 2.1 released Message-ID: <20000414065259.C19141@argon.blackdawn.com> References: <38F6D2BC.A14352E4@altavista.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <38F6D2BC.A14352E4@altavista.net>; from sobomax@altavista.net on Fri, Apr 14, 2000 at 11:11:41AM +0300 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Apr 14, 2000 at 11:11:41AM +0300, Maxim Sobolev wrote: > Announcement: Qt version 2.1 released Qt 2.1 beta 3 is already in the tree and I believe that (or the previous beta) made it into 4.0-RELEASE. Nevertheless, this release is probably being looked at by Imura-san, the maintainer, and he might be done already; the ports freeze prevents any commits. :) -- 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 Fri Apr 14 4:24:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from iclub.nsu.ru (iclub.nsu.ru [193.124.222.66]) by hub.freebsd.org (Postfix) with ESMTP id E8E2C37B737 for ; Fri, 14 Apr 2000 04:23:57 -0700 (PDT) (envelope-from fjoe@iclub.nsu.ru) Received: from localhost (fjoe@localhost) by iclub.nsu.ru (8.9.3/8.9.3) with ESMTP id RAA05786; Fri, 14 Apr 2000 17:42:19 +0700 (NSS) (envelope-from fjoe@iclub.nsu.ru) Date: Fri, 14 Apr 2000 17:42:19 +0700 (NSS) From: Max Khon To: "Russell L. Carter" Cc: ports@FreeBSD.ORG Subject: Re: ACE wrappers In-Reply-To: <20000413172737.07E856D@pinyon.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, there! On Thu, 13 Apr 2000, Russell L. Carter wrote: > %Is there anyone who built ACE wrappers + TAO successfully and got it > %working properly under RELENG_4? > > But of course... www.pinyon.org/ace thanks for quick reply! > %I have strange problems when using native C++ exceptions. > %The same stuff under 3.4-STABLE (with g++295) works flawlessly. > > Native exceptions were working beautifully up till sometime > around September '99 but broke thereafter and were broken > still when I checked a month or so ago. The problem appears > to me to be thread related, so it's almost certainly a > libgcc problem, but I and several other people expended > a considerable amount of time trying to find the source and > failed. FWIW, native exceptions are disabled in the Linux > threaded versions now too. What are drawbacks of using ACE built without threads? Is it possible to make native exceptions work under RELENG_4 or RELENG_3 or should we use ACE exceptions instead (we also plan to build our product under Win32, Solaris and Linux)? Do ACE exceptions work under FreeBSD properly? thanks in advance /fjoe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 4:42:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pascal.uol.com.br (pascal.uol.com.br [200.230.198.87]) by hub.freebsd.org (Postfix) with ESMTP id D144B37BE66 for ; Fri, 14 Apr 2000 04:42:06 -0700 (PDT) (envelope-from lioux-alias-ppp-freebsd-ports=freebsd.org@uol.com.br) Received: from bsa-1-as02-7-a48.gd.uol.com.br (bsa-1-as02-7-a48.gd.uol.com.br [200.197.118.112] (may be forged)) by pascal.uol.com.br (8.9.1/8.9.1) with ESMTP id IAA23318 for ; Fri, 14 Apr 2000 08:41:40 -0300 (BRT) Received: (qmail 69922 invoked by uid 1001); 14 Apr 2000 11:41:52 -0000 From: lioux@uol.com.br Date: Fri, 14 Apr 2000 08:41:52 -0300 To: freebsd-ports@freebsd.org Subject: Coda 5.3.6 port testing Message-ID: <20000414084152.C69276@Fedaykin.here> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I finished fixing the Coda 5.3.6 port files yesterday. They work beautifully. However, I began tweaking with them and they sort of disliked it. :) I am trying to move all maintance from the coda5-client to the coda5-server port, i.e., following the netscape port structure idea. The only thing I'll leave behind is the pkg dir (MESSAGE and stuff should always be different). Everything pretty much works. Nevertheless, the coda5-client port refuses to understand that files/md5 resides on the coda5-server dir. This is odd, for it understands patches is there. You see, it complains about one but not the other. Anyone willing to provide me with some spare time to help me debug this out? So that, we can all enjoy 5.3.6? I am already using it at the Univ Lab I admin, it is much better than 5.3.2; or seems so. ;) I am providing shar files for both port files. However, you will need PRs ports/17941, ports/17942 and ports/17943 to get these working. Will? Willing to lend me some of your not-so-spare time? :) -- Regards, mferreira -- # Coda Server # # 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: # # coda5_server # coda5_server/Makefile # coda5_server/files # coda5_server/files/md5 # coda5_server/pkg # coda5_server/pkg/COMMENT # coda5_server/pkg/DESCR # coda5_server/pkg/PLIST # coda5_server/patches # coda5_server/patches/patch-aa # coda5_server/patches/patch-ab # coda5_server/patches/patch-ac # echo c - coda5_server mkdir -p coda5_server > /dev/null 2>&1 echo x - coda5_server/Makefile sed 's/^X//' >coda5_server/Makefile << 'END-of-coda5_server/Makefile' X# New ports collection makefile for: coda-server X# Date created: Mon Oct 18 12:01:28 EDT 1999 X# Whom: ??? X# $FreeBSD$ X# X XPORTNAME= coda XPORTVERSION= 5.3.6 XPKGNAMESUFFIX= -${CODASUITE} XDISTNAME= coda-${PORTVERSION} XCATEGORIES= net XMASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/coda/src/ XEXTRACT_SUFX= .tgz X XMAINTAINER= rvb@cs.cmu.edu X XLIB_DEPENDS+= gdbm.2:${PORTSDIR}/databases/gdbm \ X lwp.1:${PORTSDIR}/devel/lwp \ X rpc2.1:${PORTSDIR}/devel/rpc2 \ X rvm.1:${PORTSDIR}/devel/rvm X XALL_TARGET= coda XINSTALL_TARGET= ${CODASUITE}-install X XGNU_CONFIGURE= yes XUSE_GMAKE= yes X XCODASUITE?= server X X.if !defined(_PREMKINCLUDED) X.include X.endif X X# hack to allow slave ports to include bsd.port.pre.mk and then this file X.if defined(_PREMKINCLUDED) X.include X.else X.include X.endif END-of-coda5_server/Makefile echo c - coda5_server/files mkdir -p coda5_server/files > /dev/null 2>&1 echo x - coda5_server/files/md5 sed 's/^X//' >coda5_server/files/md5 << 'END-of-coda5_server/files/md5' XMD5 (coda-5.3.6.tgz) = 8752433b56edd333c1a08f1d315f8c11 END-of-coda5_server/files/md5 echo c - coda5_server/pkg mkdir -p coda5_server/pkg > /dev/null 2>&1 echo x - coda5_server/pkg/COMMENT sed 's/^X//' >coda5_server/pkg/COMMENT << 'END-of-coda5_server/pkg/COMMENT' XServer programs for a replicated high-performance network file system END-of-coda5_server/pkg/COMMENT echo x - coda5_server/pkg/DESCR sed 's/^X//' >coda5_server/pkg/DESCR << 'END-of-coda5_server/pkg/DESCR' XCoda is a distributed file system. Among its features are disconnected Xoperation, good security model, server replication and persistent Xclient side caching. X XThis package builds the entire source tree but only installs(/packages) Xthe server side programs. X XFor more info, contact information available below. X XEMAIL: coda@cs.cmu.edu XWWW: http://www.coda.cs.cmu.edu/ END-of-coda5_server/pkg/DESCR echo x - coda5_server/pkg/PLIST sed 's/^X//' >coda5_server/pkg/PLIST << 'END-of-coda5_server/pkg/PLIST' Xbin/norton Xbin/norton-reinit Xbin/reinit Xsbin/au Xsbin/auth2 Xsbin/backup Xsbin/backup.sh Xsbin/bldvldb.sh Xsbin/codasrv Xsbin/codastart Xsbin/createvol_rep Xsbin/initpw Xsbin/inoder Xsbin/makeftree Xsbin/merge Xsbin/parserecdump Xsbin/partial-reinit.sh Xsbin/pdbtool Xsbin/printvrdb Xsbin/purgevol Xsbin/purgevol_rep Xsbin/pwdtopdbtool.py Xsbin/readdump Xsbin/rpc2portmap Xsbin/startserver Xsbin/tape.pl Xsbin/updateclnt Xsbin/updatefetch Xsbin/updatesrv Xsbin/vice-killvolumes Xsbin/vice-setup Xsbin/vice-setup-ports Xsbin/vice-setup-rvm Xsbin/vice-setup-scm Xsbin/vice-setup-srvdir Xsbin/vice-setup-user Xsbin/volutil Xetc/rc.d/rc.vice END-of-coda5_server/pkg/PLIST echo c - coda5_server/patches mkdir -p coda5_server/patches > /dev/null 2>&1 echo x - coda5_server/patches/patch-aa sed 's/^X//' >coda5_server/patches/patch-aa << 'END-of-coda5_server/patches/patch-aa' XSome bug inside gcc version 2.95.2 19991024 (release) because Xresolver.cc will not compile without -pedantic. Go figure. XAdding -pedantic to CXXFLAGS just breaks the other src files. X X--- Makefile.in.ORIG Thu Apr 13 14:36:15 2000 X+++ coda-src/asr/Makefile.in Thu Apr 13 14:37:56 2000 X@@ -44,6 +44,9 @@ X X YFLAGS= -d X X+resolver.o: resolver.cc X+ $(CXX) $(CXXFLAGS) -pedantic -c $< X+ X resolver_parser.c: resolver_parser.h X resolver_parser.h: resolver_parser.y X $(YACC) $(YFLAGS) $< && mv y.tab.c $*.c && mv y.tab.h $*.h END-of-coda5_server/patches/patch-aa echo x - coda5_server/patches/patch-ab sed 's/^X//' >coda5_server/patches/patch-ab << 'END-of-coda5_server/patches/patch-ab' XAnother odd behavior. I tried a -I parameter as both a relative Xreference and an absolute reference: none worked; hence, the hard Xcoded reference. Hand tweaking it seems to have done the trick. XGo figure. X X--- ftreeifs.h.ORIG Thu Apr 13 01:37:12 2000 X+++ coda-src/partition/ftreeifs.h Thu Apr 13 01:40:38 2000 X@@ -17,7 +17,7 @@ X #*/ X X #include X-#include X+#include "../../include/bitvect.h" X X #define RESOURCEDB "FTREEDB" X struct part_ftree_opts { END-of-coda5_server/patches/patch-ab echo x - coda5_server/patches/patch-ac sed 's/^X//' >coda5_server/patches/patch-ac << 'END-of-coda5_server/patches/patch-ac' XSome bug inside gcc version 2.95.2 19991024 (release) because Xcodacon.cc will not compile without -pedantic. Go figure. XI could do CXXFLAGS := -pendatic but that would add it to Xsrc files that don't actually need it. X X--- Makefile.in.ORIG Thu Apr 13 14:39:22 2000 X+++ coda-src/vtools/Makefile.in Thu Apr 13 14:39:59 2000 X@@ -45,6 +45,9 @@ X cmon: cmon.o $(CMON_LIBS) X $(CXX) $(LDFLAGS) cmon.o $(CMON_LIBS) $(LIBRPC2) $(LIBSE) $(LIBLWP) $(LIBCOMPAT) $(STD_LIBS) -o cmon X X+codacon.o: codacon.cc X+ $(CXX) $(CXXFLAGS) -pedantic -c $< X+ X codacon: codacon.o X $(CXX) $(LDFLAGS) codacon.o $(LIBBASE) $(LIBS) -o codacon X END-of-coda5_server/patches/patch-ac exit -- # Coda client # # 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: # # coda5_client # coda5_client/pkg # coda5_client/pkg/COMMENT # coda5_client/pkg/DESCR # coda5_client/pkg/PLIST # coda5_client/Makefile # echo c - coda5_client mkdir -p coda5_client > /dev/null 2>&1 echo c - coda5_client/pkg mkdir -p coda5_client/pkg > /dev/null 2>&1 echo x - coda5_client/pkg/COMMENT sed 's/^X//' >coda5_client/pkg/COMMENT << 'END-of-coda5_client/pkg/COMMENT' XClient programs for a replicated high-performance network file system END-of-coda5_client/pkg/COMMENT echo x - coda5_client/pkg/DESCR sed 's/^X//' >coda5_client/pkg/DESCR << 'END-of-coda5_client/pkg/DESCR' XCoda is a distributed file system. Among its features are disconnected Xoperation, good security model, server replication and persistent Xclient side caching. X XThis package builds the entire source tree but only installs(/packages) Xthe client side programs. X XFor more info, contact information available below. X XEMAIL: coda@cs.cmu.edu XWWW: http://www.coda.cs.cmu.edu/ END-of-coda5_client/pkg/DESCR echo x - coda5_client/pkg/PLIST sed 's/^X//' >coda5_client/pkg/PLIST << 'END-of-coda5_client/pkg/PLIST' Xbin/advice_srv Xbin/cfs Xbin/clog Xbin/cmon Xbin/codacon Xbin/cpasswd Xbin/ctokens Xbin/cunlog Xbin/filerepair Xbin/hoard Xbin/logbandwidth Xbin/logcmls Xbin/logprogress Xbin/logreintegration Xbin/parser Xbin/removeinc Xbin/repair Xbin/replay Xbin/spy Xbin/xaskuser Xbin/xfrepair Xlib/coda/Advice.tcl Xlib/coda/CodaConsole Xlib/coda/Consider.tcl Xlib/coda/ConsiderAdding.tcl Xlib/coda/ConsiderRemoving.tcl Xlib/coda/ControlPanel.tcl Xlib/coda/Date.tcl Xlib/coda/DiscoMiss.tcl Xlib/coda/Events.tcl Xlib/coda/Globals.tcl Xlib/coda/Helper.tcl Xlib/coda/HoardWalk.tcl Xlib/coda/HoardWalkAdvice.tcl Xlib/coda/Indicators.tcl Xlib/coda/Initialization.tcl Xlib/coda/Lock.tcl Xlib/coda/Log.tcl Xlib/coda/Network.tcl Xlib/coda/OutsideWorld.tcl Xlib/coda/ReadMiss.tcl Xlib/coda/Reconnection.tcl Xlib/coda/Reintegration.tcl Xlib/coda/Repair.tcl Xlib/coda/Space.tcl Xlib/coda/Task.tcl Xlib/coda/Timing.tcl Xlib/coda/Tokens.tcl Xlib/coda/WeakMiss.tcl Xlib/coda/tixCodaMeter.tcl Xsbin/au Xsbin/venus Xsbin/venus-setup Xsbin/volmunge Xsbin/vutil Xetc/coda/venus.conf.ex X@dirrm etc/coda X@dirrm lib/coda END-of-coda5_client/pkg/PLIST echo x - coda5_client/Makefile sed 's/^X//' >coda5_client/Makefile << 'END-of-coda5_client/Makefile' X# New ports collection makefile for: coda-client X# Date created: Mon Oct 18 12:01:27 EDT 1999 X# Whom: ??? X# $FreeBSD$ X# X X.if !defined(PRE_MK_INCLUDED) X.include X.endif X X# I don't know why but omitting the next line makes the PKGNAME look like X# ${PORTNAME}-${PORTVERSION}. Ideas? If not, leave it. It works, though X# will require maintainence which is not desirable. :) XPKGNAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} X X#MASTER_DIR= ${PORTSDIR}/net/coda5_server XMASTERDIR= ../coda5_server XPKGDIR= ${.CURDIR}/pkg X XCODASUITE= client X XPRE_MK_INCLUDED= yes X.include "${MASTERDIR}/Makefile" END-of-coda5_client/Makefile exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 6:16:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from r1476.resnet.cornell.edu (R1476.RESNET.CORNELL.EDU [128.253.120.72]) by hub.freebsd.org (Postfix) with ESMTP id 99D1737B58D for ; Fri, 14 Apr 2000 06:16:11 -0700 (PDT) (envelope-from pete@r1476.resnet.cornell.edu) Received: from localhost (pete@localhost) by r1476.resnet.cornell.edu (8.9.3/8.9.3) with ESMTP id JAA91784 for ; Fri, 14 Apr 2000 09:21:01 -0400 (EDT) (envelope-from pete@r1476.resnet.cornell.edu) Date: Fri, 14 Apr 2000 09:21:01 -0400 (EDT) From: Pete To: ports@FreeBSD.org Subject: netpbm 8.4 port - can't compile against libpnm anymore 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'm running FreeBSD 3.4-RELEASE (stable?) comment regarding the netpbm 8.4 port (sorry if i'm out of date): to link libpbm into your programs, you used to need {$PREFIX}/include/pbm.h, etc. {$PREFIX}/lib/libpbm.a, etc. but apparently the new netpbm also relies on sshopt. shhopt is a getopt-like thing which is bundled with netpbm under /usr/ports/graphics/netpbm/work/netpbm-8.4/shhopt, and is used to build all the netpbm stuff, but sshopt is not installed along with netpbm !!!!!!!!!!!!!!!!!!!!!!!!!!!!! so by default, after installing the netpbm port, compiling against the libpnm's fails! !!!!!!!!!!!!!!!!!!!!!!!!!!!!! for me, fixing it was easy- the sshopt directory contains a cookbook INSTALL file (gmake dep; gmake; gmake install;) - but the netpbm port should take care of this. (sucks for me because I'm about to distribute something at work that instructs the user to install netpbm, and then says its almost certain to work... hmm, what now?) thanks a lot... by the way, what's happening to netpbm these days? is it beginning to evolve once again? (I had the impression that it reached a real stable/mature form) -Peter Weisz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 6:50:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lobster.baynetworks.com (ns3.BayNetworks.COM [192.32.253.3]) by hub.freebsd.org (Postfix) with ESMTP id CBB2337B5D5; Fri, 14 Apr 2000 06:47:48 -0700 (PDT) (envelope-from bwithrow@engeast.BayNetworks.COM) Received: from mailhost.BayNetworks.COM (h8754.s84f5.BayNetworks.COM [132.245.135.84]) by lobster.baynetworks.com (8.9.1/8.9.1) with ESMTP id JAA22848; Fri, 14 Apr 2000 09:51:27 -0400 (EDT) Received: from pobox.engeast.BayNetworks.COM (pobox.engeast.baynetworks.com [192.32.61.6]) by mailhost.BayNetworks.COM (8.9.1/8.8.8) with ESMTP id JAA03860; Fri, 14 Apr 2000 09:51:59 -0400 (EDT) Received: from kyzyl.engeast.baynetworks.com (kyzyl [192.32.150.103]) by pobox.engeast.BayNetworks.COM (SMI-8.6/BNET-97/04/24-S) with ESMTP id JAA27238; Fri, 14 Apr 2000 09:47:12 -0400 for Message-Id: <200004141347.JAA27238@pobox.engeast.BayNetworks.COM> X-Mailer: exmh version 2.1.1 10/15/1999 To: Will Andrews Cc: Robert Withrow , ports@FreeBSD.ORG, markm@FreeBSD.ORG Subject: Re: exmh-2.1.1 port doesn't work with nmh In-Reply-To: Message from Will Andrews of "Fri, 14 Apr 2000 06:43:26 EDT." <20000414064326.A19141@argon.blackdawn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 14 Apr 2000 09:44:49 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org andrews@technologist.com said: :- Why are you sending redundant patches to the ports list? If you mean redundant because they are also PRs, it is because, in the past, there has occationally been a significant delay between the submission of the pr and the fixing of the port. I was hoping to spare a port user the effort of re-fixing the same problem (by having a solution appear *both* in the mailing list archives and the pr database) in the interim. Since I mention pr number in the mail message there should be no confusion. [I just went and checked the open ports pr's and while the list is quite small (way to go guys!), still about 1/2 of them are more than 30 days old. Also, in the case of this specific patch, I sent it to the port maintainer about 6 weeks ago, and the fix never got integrated, leading me to belive that something got lost. So I opted for this belt-and-suspenders approach.] But, if a lot of people on the list don't like this, I won't do it. Thanks! -- Robert Withrow -- (+1 978 288 8256) BWithrow@BayNetworks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 6:59:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cx587235-a.chnd1.az.home.com (cx587235-a.chnd1.az.home.com [24.11.88.170]) by hub.freebsd.org (Postfix) with ESMTP id 29E2737B754 for ; Fri, 14 Apr 2000 06:59:30 -0700 (PDT) (envelope-from jjreynold@home.com) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.9.3/8.9.3) with ESMTP id GAA99245; Fri, 14 Apr 2000 06:59:28 -0700 (MST) (envelope-from jjreynold@home.com) Received: (from jjreynold@localhost) by whale.home-net (8.9.3/8.9.3) id GAA24943; Fri, 14 Apr 2000 06:59:28 -0700 (MST) (envelope-from jjreynold@home.com) From: John Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14583.9279.731684.583301@whale.home-net> Date: Fri, 14 Apr 2000 06:59:27 -0700 (MST) To: Will Andrews Cc: ports@FreeBSD.ORG Subject: Re: make index broken? In-Reply-To: <20000414065027.B19141@argon.blackdawn.com> References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> X-Mailer: VM 6.73 under Emacs 20.6.1 Cc: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ On Friday, April 14, Will Andrews wrote: ] > > Why are you using ``make index'' anyway? The only thing it does is generate > INDEX, which isn't awesomely useful for the average person since Satoshi > regens it himself every now and then. Overwriting ports/INDEX brings a risk > - cvs (or whatever tool you use) may think the previous revision (which is > supposed to be on your system) is broken/gone/fubar'd/whatever. The INDEX > file is pretty darn big.. ;) Well, the CVS thing is not a terrible concern to me. The reason I'm using it is because the INDEX file is not updated but only "every now and then." When I CVSup the ports, I like using pkg_version to tell me what has been updated. This works using the INDEX file. If a port was updated but the INDEX file didn't show that it was updated to a new version, pkg_version would not be able to tell me .... > > > I do suppose perhaps you simply ignore cvs/cvsup on ports/INDEX and regen > it yourself every few days or something. That could save download time, but > certainly not CPU or I/O time. :) aaaa .... got plenty of CPU and I/O to go around ;-) > It is my suspicion that this is caused by PORTNAME/PORTVERSION. this was happening before that switch over last weekend--I just didn't have the time to write to -ports about it. -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jjreynold@home.com FreeBSD 3.4-STABLE. FreeBSD: The Power to Serve. http://members.home.com/jjreynold/ 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 Fri Apr 14 7:30: 7 2000 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 6506437BEE9 for ; Fri, 14 Apr 2000 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA29085; Fri, 14 Apr 2000 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C31637BEA8 for ; Fri, 14 Apr 2000 07:20:33 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA27657; Fri, 14 Apr 2000 07:20:33 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004141420.HAA27657@freefall.freebsd.org> Date: Fri, 14 Apr 2000 07:20:33 -0700 (PDT) From: huntting@glarp.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18003: amanda2.4's SCSI changer script (chg-chio) has broken -info mode Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18003 >Category: ports >Synopsis: amanda2.4's SCSI changer script (chg-chio) has broken -info mode >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 07:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brad Huntting >Release: 4.0-RELEASE >Organization: >Environment: FreeBSD misc.glarp.com 4.0-RELEASE FreeBSD 4.0-RELEASE #1: Fri Mar 31 10:06:16 MST 2000 root@hunkular.glarp.com:/usr/src/sys/compile/MISC i386 >Description: To support SCSI tape changers, amanda2.4 programs call a script which is typically called "chg-chio" to manipulate the tape change via chio(1). This script has one erronious line which sends data to STDERR when there has been no error therby confusing amtape(8) and other programs into thinking there's something wrong with the tape changer when there isnt. >How-To-Repeat: Get a SCSI tape changer, configure /usr/local/etc/amanda/foo/amanda.conf with: changerdev "/dev/ch0" tapedev "/dev/nrsa0" tpchanger "chg-chio" Then run "amtape foo current" where "foo" is the name of your config. The command should fail with a nonsensical numeric error message "n m" where n is the number of slots in your tape library. >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: # # misc/amanda24/patches/patch-ag # echo x - misc/amanda24/patches/patch-ag sed 's/^X//' >misc/amanda24/patches/patch-ag << 'END-of-misc/amanda24/patches/patch-ag' X--- changer-src/chg-chio.pl.in Sat Nov 7 02:18:46 1998 X+++ changer-src/chg-chio.pl.in Fri Apr 14 07:58:19 2000 X@@ -347,7 +347,6 @@ X $currentTape = 1; X } X X- print STDERR "$currentTape $max_slot 1\n"; X print "$currentTape $max_slot 1\n"; X exit 0; X } END-of-misc/amanda24/patches/patch-ag 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 Apr 14 7:37: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (Postfix) with ESMTP id 8409E37B7A2 for ; Fri, 14 Apr 2000 07:36:55 -0700 (PDT) (envelope-from babolo@links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.3/8.9.3) id SAA24154; Fri, 14 Apr 2000 18:35:34 +0400 (MSD) Message-Id: <200004141435.SAA24154@aaz.links.ru> Subject: Re: make index broken? In-Reply-To: <20000414065027.B19141@argon.blackdawn.com> from "Will Andrews" at "Apr 14, 0 06:50:27 am" To: andrews@technologist.com (Will Andrews) Date: Fri, 14 Apr 2000 18:35:34 +0400 (MSD) Cc: jjreynold@home.com, ports@FreeBSD.ORG From: "Aleksandr A.Babaylov" 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 Will Andrews writes: > On Thu, Apr 13, 2000 at 10:42:05PM -0700, John Reynolds wrote: > > I've got a newly CVSup'ed ports tree and was trying to do "make index" from > > /usr/ports and I got this: > > > > root@whale [/usr/ports]<8># make index > > Generating INDEX - please wait..make: don't know how to make describe. Stop > > Why are you using ``make index'' anyway? The only thing it does is generate > INDEX, which isn't awesomely useful for the average person since Satoshi > regens it himself every now and then. Overwriting ports/INDEX brings a risk > - cvs (or whatever tool you use) may think the previous revision (which is > supposed to be on your system) is broken/gone/fubar'd/whatever. The INDEX > file is pretty darn big.. ;) Hm... What is another method if use some own ports in pors tree? -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 7:40: 9 2000 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 2BC0A37BEE4 for ; Fri, 14 Apr 2000 07:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA30342; Fri, 14 Apr 2000 07:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sun.rhrk.uni-kl.de (sun.rhrk.uni-kl.de [131.246.137.50]) by hub.freebsd.org (Postfix) with SMTP id 95B0637B7A2 for ; Fri, 14 Apr 2000 07:36:52 -0700 (PDT) (envelope-from Holger@alcatraz73.wohnheim.uni-kl.de) Received: from aixs1.rhrk.uni-kl.de ( exim@aixs1.rhrk.uni-kl.de [131.246.137.3] ) by sun.rhrk.uni-kl.de id aa02166 for ; 14 Apr 2000 16:36 MESZ Received: from alcatraz73.wohnheim.uni-kl.de ([131.246.107.82]) by aixs1.rhrk.uni-kl.de with esmtp (Exim 3.03 #2) id 12g7DE-000EIW-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 14 Apr 2000 16:36:48 +0200 Received: (from Holger@localhost) by alcatraz73.wohnheim.uni-kl.de (8.9.3/8.9.3) id QAA03272; Fri, 14 Apr 2000 16:36:48 +0200 (CEST) (envelope-from Holger) Message-Id: <200004141436.QAA03272@alcatraz73.wohnheim.uni-kl.de> Date: Fri, 14 Apr 2000 16:36:48 +0200 (CEST) From: holger@flatline.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18004: new pgp4pine port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18004 >Category: ports >Synopsis: new pgp4pine 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: Fri Apr 14 07:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Holger Lamm >Release: FreeBSD 4.0-RELEASE i386 >Organization: >Environment: >Description: Updated port for pgp4pine >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: # # pgp4pine # pgp4pine/files # pgp4pine/files/md5 # pgp4pine/patches # pgp4pine/patches/patch-aa # pgp4pine/patches/patch-ab # pgp4pine/Makefile # pgp4pine/pkg # pgp4pine/pkg/COMMENT # pgp4pine/pkg/DESCR # pgp4pine/pkg/MESSAGE # pgp4pine/pkg/PLIST # pgp4pine/README.html # echo c - pgp4pine mkdir -p pgp4pine > /dev/null 2>&1 echo c - pgp4pine/files mkdir -p pgp4pine/files > /dev/null 2>&1 echo x - pgp4pine/files/md5 sed 's/^X//' >pgp4pine/files/md5 << 'END-of-pgp4pine/files/md5' XMD5 (pgp4pine-1.75.tar.gz) = f6737b61e35662003d522c3898c2c760 END-of-pgp4pine/files/md5 echo c - pgp4pine/patches mkdir -p pgp4pine/patches > /dev/null 2>&1 echo x - pgp4pine/patches/patch-aa sed 's/^X//' >pgp4pine/patches/patch-aa << 'END-of-pgp4pine/patches/patch-aa' X--- ./pgp4pine/docs/en/Makefile.in.orig Thu Apr 13 23:25:17 2000 X+++ ./pgp4pine/docs/en/Makefile.in Thu Apr 13 23:19:40 2000 X@@ -168,20 +168,20 @@ X X X install-data-local: X- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ X- $(INSTALL_DATA) FAQ $(prefix)/doc/pgp4pine/FAQ X- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ X- $(INSTALL_DATA) PGP_MIME $(prefix)/doc/pgp4pine/PGP_MIME X+ $(mkinstalldirs) $(prefix)/share/doc/pgp4pine/ X+ $(INSTALL_DATA) FAQ $(prefix)/share/doc/pgp4pine/FAQ X+ $(mkinstalldirs) $(prefix)/share/doc/pgp4pine/ X+ $(INSTALL_DATA) PGP_MIME $(prefix)/share/doc/pgp4pine/PGP_MIME X $(mkinstalldirs) $(mandir)/man1/ X $(INSTALL_DATA) pgp4pine.1 $(mandir)/man1/pgp4pine.1 X- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ X- $(INSTALL_DATA) pgp4pinerc $(prefix)/doc/pgp4pine/example.pgp4pinerc X+ $(mkinstalldirs) $(prefix)/share/doc/pgp4pine/ X+ $(INSTALL_DATA) pgp4pinerc $(prefix)/share/doc/pgp4pine/example.pgp4pinerc X X uninstall-local: X- -rm -f $(prefix)/doc/pgp4pine/FAQ X- -rm -f $(prefix)/doc/pgp4pine/PGP_MIME X+ -rm -f $(prefix)/share/doc/pgp4pine/FAQ X+ -rm -f $(prefix)/share/doc/pgp4pine/PGP_MIME X -rm -f $(mandir)/man1/pgp4pine.1 X- -rm -f $(prefix)/doc/pgp4pine/example.pgp4pinerc X+ -rm -f $(prefix)/share/doc/pgp4pine/example.pgp4pinerc X X ####### kdevelop will overwrite this part!!! (end)############ X X--- ./pgp4pine/docs/en/pgp4pine.1.in.orig Thu Apr 13 23:25:17 2000 X+++ ./pgp4pine/docs/en/pgp4pine.1.in Thu Apr 13 23:26:01 2000 X@@ -25,7 +25,7 @@ X X .TP 3 X 0. X-Open your ~/.pgp4pinerc (if you don't have one, run "cp @prefix@/doc/pgp4pinerc ~/.pgp4pinerc") and edit it. X+Open your ~/.pgp4pinerc (if you don't have one, run "cp @prefix@/share/doc/pgp4pinerc ~/.pgp4pinerc") and edit it. X .TP X 1. X In pine, go into Setup, then Configuration. END-of-pgp4pine/patches/patch-aa echo x - pgp4pine/patches/patch-ab sed 's/^X//' >pgp4pine/patches/patch-ab << 'END-of-pgp4pine/patches/patch-ab' X--- ../pgp4pine-1.75.orig/Makefile.in Thu Apr 13 23:25:17 2000 X+++ Makefile.in Thu Apr 13 23:33:30 2000 X@@ -352,14 +352,14 @@ X X X install-data-local: X- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ X- $(INSTALL_DATA) INSTALL $(prefix)/doc/pgp4pine/INSTALL X- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ X- $(INSTALL_DATA) README $(prefix)/doc/pgp4pine/README X+ $(mkinstalldirs) $(prefix)/share/doc/pgp4pine/ X+ $(INSTALL_DATA) INSTALL $(prefix)/share/doc/pgp4pine/INSTALL X+ $(mkinstalldirs) $(prefix)/share/doc/pgp4pine/ X+ $(INSTALL_DATA) README $(prefix)/share/doc/pgp4pine/README X X uninstall-local: X- -rm -f $(prefix)/doc/pgp4pine/INSTALL X- -rm -f $(prefix)/doc/pgp4pine/README X+ -rm -f $(prefix)/share/doc/pgp4pine/INSTALL X+ -rm -f $(prefix)/share/doc/pgp4pine/README X X # Tell versions [3.59,3.63) of GNU make to not export all variables. X # Otherwise a system limit (for SysV at least) may be exceeded. END-of-pgp4pine/patches/patch-ab echo x - pgp4pine/Makefile sed 's/^X//' >pgp4pine/Makefile << 'END-of-pgp4pine/Makefile' X# New ports collection makefile for: pgp4pine X# Version required: 1.75 X# Date created: 13 April 2000 X# Whom: Holger Lamm X# X# $FreeBSD: ports/mail/pgp4pine/Makefile,v 1.2 2000/02/29 08:07:12 kris Exp $ X# X XDISTNAME= pgp4pine-1.75 XCATEGORIES= mail XMASTER_SITES= http://pgp4pine.flatline.de/ X XMAINTAINER= holger@flatline.de X XMAN1= pgp4pine.1 XGNU_CONFIGURE= yes X X.include END-of-pgp4pine/Makefile echo c - pgp4pine/pkg mkdir -p pgp4pine/pkg > /dev/null 2>&1 echo x - pgp4pine/pkg/COMMENT sed 's/^X//' >pgp4pine/pkg/COMMENT << 'END-of-pgp4pine/pkg/COMMENT' XTool to use PGP 2/5/6 or GPG with Pine END-of-pgp4pine/pkg/COMMENT echo x - pgp4pine/pkg/DESCR sed 's/^X//' >pgp4pine/pkg/DESCR << 'END-of-pgp4pine/pkg/DESCR' Xpgp4pine is a filter for the mail reader Pine to allow you to sign and/or Xencrypt your mail with PGP version 2, 5 or 6, or GnuPG. It is also usable Xas a general PGP/GnuPG wrapper for working on files. X XWWW: http://pgp4pine.flatline.de/ END-of-pgp4pine/pkg/DESCR echo x - pgp4pine/pkg/MESSAGE sed 's/^X//' >pgp4pine/pkg/MESSAGE << 'END-of-pgp4pine/pkg/MESSAGE' XYou got to manually set up Pine to use pgp4pine! XRead /usr/local/share/doc/pgp4pine/INSTALL to know how ! X END-of-pgp4pine/pkg/MESSAGE echo x - pgp4pine/pkg/PLIST sed 's/^X//' >pgp4pine/pkg/PLIST << 'END-of-pgp4pine/pkg/PLIST' Xbin/pgp4pine Xshare/doc/pgp4pine/FAQ Xshare/doc/pgp4pine/INSTALL Xshare/doc/pgp4pine/PGP_MIME Xshare/doc/pgp4pine/README Xshare/doc/pgp4pine/example.pgp4pinerc X@dirrm share/doc/pgp4pine END-of-pgp4pine/pkg/PLIST echo x - pgp4pine/README.html sed 's/^X//' >pgp4pine/README.html << 'END-of-pgp4pine/README.html' X X The FreeBSD Ports Collection (mail/pgp4pine) X

The FreeBSD Ports Collection ("mail/pgp4pine")


X X X

You are now in the directory for the port "mail/pgp4pine" (package name "pgp4pine-1.75"). X X

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


XTool to use PGP 2/5/6 or GPG with Pine X


X X

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

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

X X

X X X


X Go up one level X| X Go to top of ports tree X X END-of-pgp4pine/README.html 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 Apr 14 7:48:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id C734C37BECA; Fri, 14 Apr 2000 07:48:31 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id HAA95757; Fri, 14 Apr 2000 07:48:08 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 257151983; Fri, 14 Apr 2000 10:48:03 -0400 (EDT) Date: Fri, 14 Apr 2000 10:48:03 -0400 From: Will Andrews To: Robert Withrow Cc: Will Andrews , ports@FreeBSD.ORG, markm@FreeBSD.ORG Subject: Re: exmh-2.1.1 port doesn't work with nmh Message-ID: <20000414104803.D19141@argon.blackdawn.com> References: <200004141347.JAA27238@pobox.engeast.BayNetworks.COM> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200004141347.JAA27238@pobox.engeast.BayNetworks.COM>; from bwithrow@BayNetworks.COM on Fri, Apr 14, 2000 at 09:44:49AM -0400 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Apr 14, 2000 at 09:44:49AM -0400, Robert Withrow wrote: > If you mean redundant because they are also PRs, it is because, > in the past, there has occationally been a significant delay > between the submission of the pr and the fixing of the port. > I was hoping to spare a port user the effort of re-fixing the same > problem (by having a solution appear *both* in the mailing list > archives and the pr database) in the interim. Since I mention Well, this must mean you're not on the ports list, because all PRs that are ports problems get sent to -ports. So if your PR states the name of a port and someone is interested in the port (and is on the list), they will probably look at your PR and fix it in their own copy, if they care enough. I suspected this was why you were sending them to both lists. :) No harm, I know you meant good. :) > pr number in the mail message there should be no confusion. [I > just went and checked the open ports pr's and while the list is quite > small (way to go guys!), still about 1/2 of them are more than Yes.. I and a few other people have been cleaning up the PR database for some time now, and I think we've eliminated a number of very old (say two or three years) PRs. This will continue to shrink in the near future. By the end of May, the ports' list should be down to less than 100. I have a few bookmarked `feedback' that I'm going to close very soon. :> > 30 days old. Also, in the case of this specific patch, I > sent it to the port maintainer about 6 weeks ago, and the > fix never got integrated, leading me to belive that something > got lost. So I opted for this belt-and-suspenders approach.] > > But, if a lot of people on the list don't like this, I won't > do it. No, I'm sure some people like it, it's just that if you submit a PR, it already gets fwd'd to the ports list. Anyway, since you mention that the maintainers never replied to your patches in reasonable time, I will commit them to the tree now. Thanks for your help. -- 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 Fri Apr 14 7:54: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 81CEE37BECC; Fri, 14 Apr 2000 07:54:02 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id HAA95853; Fri, 14 Apr 2000 07:53:52 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 494D31983; Fri, 14 Apr 2000 10:53:47 -0400 (EDT) Date: Fri, 14 Apr 2000 10:53:47 -0400 From: Will Andrews To: John Reynolds Cc: FreeBSD Ports , Satoshi Asami Subject: Re: make index broken? Message-ID: <20000414105346.E19141@argon.blackdawn.com> References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> <14583.9279.731684.583301@whale.home-net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <14583.9279.731684.583301@whale.home-net>; from jjreynold@home.com on Fri, Apr 14, 2000 at 06:59:27AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ CC'd to asami-san ] On Fri, Apr 14, 2000 at 06:59:27AM -0700, John Reynolds wrote: > Well, the CVS thing is not a terrible concern to me. The reason I'm using it is > because the INDEX file is not updated but only "every now and then." When I > CVSup the ports, I like using pkg_version to tell me what has been > updated. This works using the INDEX file. If a port was updated but the INDEX > file didn't show that it was updated to a new version, pkg_version would not be > able to tell me .... Oh, pkg_version! I forgot all about that. Perhaps another approach needs to be made towards INDEX if this is the case. Satoshi? > this was happening before that switch over last weekend--I just didn't have the > time to write to -ports about it. Hmm... according to CVS, the last commit to INDEX was April 3, so perhaps there is something else broken. Satoshi? :> -- 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 Fri Apr 14 8:17:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from phnxpop4.phnx.uswest.net (phnxpop4.phnx.uswest.net [206.80.192.4]) by hub.freebsd.org (Postfix) with SMTP id 490B937BCB7 for ; Fri, 14 Apr 2000 08:17:23 -0700 (PDT) (envelope-from rcarter@pinyon.org) Received: (qmail 13232 invoked by alias); 14 Apr 2000 15:17:07 -0000 Delivered-To: fixup-ports@FreeBSD.ORG@fixme Received: (qmail 12630 invoked by uid 0); 14 Apr 2000 15:16:54 -0000 Received: from ndslppp34.phnx.uswest.net (HELO pinyon.org) (63.224.136.34) by phnxpop4.phnx.uswest.net with SMTP; 14 Apr 2000 15:16:54 -0000 Received: from chomsky.Pinyon.ORG (localhost [127.0.0.1]) by pinyon.org (Postfix) with ESMTP id 9D79568; Fri, 14 Apr 2000 08:16:44 -0700 (MST) X-Mailer: exmh version 2.1.0 09/18/1999 To: Max Khon Cc: ports@FreeBSD.ORG Subject: Re: ACE wrappers In-Reply-To: Message from Max Khon of "Fri, 14 Apr 2000 17:42:19 +0700." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 14 Apr 2000 08:16:44 -0700 From: "Russell L. Carter" Message-Id: <20000414151644.9D79568@pinyon.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org % %What are drawbacks of using ACE built without threads? That depends on your application. If the I/O/Event multiplexing is handled solely by a singleton reactor (even on the CORBA side) then single thread stuff works fine. The single thread configs on my site were supplied by a fellow who's supporting a single theaded TAO application on 4.0. OTOH my own application has multiple ORBs and threads, and wouldn't be possible otherwise. %Is it possible to make native exceptions work under RELENG_4 %or RELENG_3 or should we use ACE exceptions instead I'd love to see native exceptions work. Till then I've been using ACE exceptions. They're simple and I've had no problems with them (ace/CORBA_macros.h). %(we also plan to build our product under Win32, Solaris and Linux)? %Do ACE exceptions work under FreeBSD properly? Yup. You just got to stomach that ugliness factor. Once I got over it using them is just fine. HTH, Russell %thanks in advance % %/fjoe % To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 9: 7:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dt051n0b.san.rr.com (dt051n0b.san.rr.com [204.210.32.11]) by hub.freebsd.org (Postfix) with ESMTP id 9D6DF37BECA; Fri, 14 Apr 2000 09:07:32 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (doug@master [10.0.0.2]) by dt051n0b.san.rr.com (8.9.3/8.9.3) with ESMTP id JAA19526; Fri, 14 Apr 2000 09:07:30 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <38F74241.33228988@gorean.org> Date: Fri, 14 Apr 2000 09:07:29 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 5.0-CURRENT-0409 i386) X-Accept-Language: en MIME-Version: 1.0 To: Kristopher Zentner Cc: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17917: port update: audio/soundtracker References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Kristopher Zentner wrote: > > One last thing I wanted to get in here before the update. There's a minor > spelling error in the Makefile: > > --- Makefile Thu Apr 13 23:26:42 2000 > +++ Makefile.old Thu Apr 13 23:30:05 2000 > @@ -15,7 +15,7 @@ > LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 > > .if defined(USE_GNOME) > -LIB_DEPENDS+= gnome.3:${PORTSDIR}/x11/gnomelibs > +LIB_DEPENDS+= gnome.3:${PORTSIDR}/x11/gnomelibs > .endif > > GTK_CONFIG?= ${X11BASE}/bin/gtk12-config Good catch, but your patch is backwards. :) -- Excess on occasion is exhilarating. It prevents moderation from acquiring the deadening effect of a habit. -- W. Somerset Maugham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 9:18: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.af.airnet.ne.jp (mail.af.airnet.ne.jp [210.159.66.49]) by hub.freebsd.org (Postfix) with ESMTP id B315A37BF16 for ; Fri, 14 Apr 2000 09:18:04 -0700 (PDT) (envelope-from imura@cs.titech.ac.jp) Received: from imura.af.airnet.ne.jp (tok245.airnet.ne.jp [210.159.88.245]) by mail.af.airnet.ne.jp (8.8.8/3.6W/06/13/98-AF.AIRNET.NE.JP) with ESMTP id BAA10186 for ; Sat, 15 Apr 2000 01:18:01 +0900 Posted-Date: Sat, 15 Apr 2000 01:17:56 +0900 (JST) To: ports@freebsd.org Subject: Re: Announcement: Qt version 2.1 released From: "R. Imura" In-Reply-To: <38F6D2BC.A14352E4@altavista.net> References: <38F6D2BC.A14352E4@altavista.net> X-Mailer: Mew version 1.94b20 on Emacs 19.34 / Mule 2.3 =?iso-2022-jp?B?KBskQkt2RSYyVhsoQik=?= X-Prom-Mew: Prom-Mew 1.93.4 (procmail reader for Mew) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000415011754Z.imura@cs.titech.ac.jp> Date: Sat, 15 Apr 2000 01:17:54 +0900 X-Dispatcher: imput version 990401(IM113) Lines: 24 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Now I updated to Qt-2.1.0. > For current users, upgrading to Qt 2.1 is easy: it is both binary and > source compatible with earlier 2.x releases. A detailed presentation of all > the changes can be found here. Yes, an application built with qt-2.0.2 works with qt-2.1.0, but I've bumped version of library. If you don't want rebuild your applications, "ln -s libqt2.so.3 /usr/X11R6/lib/libqt2.so.2" will help you. Why version bumped? Because, an application built with qt-2.1.0 doesn't work with qt-2.0.2. It should be solved with lib's miner version, but our system doesn't have. Sorry for your inconvenience. (this was talked with Asami-san) Last, my request to qt porters. Please do not forget to link libxpg4 with your application. Qt-2 has already supported multi-byte chars and in order to show these chars correctly, libxpg4 is necessary. Thanks, - R. Imura To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 9:20:10 2000 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 995A237BF13 for ; Fri, 14 Apr 2000 09:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA44395; Fri, 14 Apr 2000 09:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from breton.uol.com.br (breton.uol.com.br [200.230.198.74]) by hub.freebsd.org (Postfix) with ESMTP id 8B82137BF33 for ; Fri, 14 Apr 2000 09:16:49 -0700 (PDT) (envelope-from lioux-alias-ppp-FreeBSD-gnats-submit=freebsd.org@uol.com.br) Received: from bsa-1-as01-7-a25.gd.uol.com.br (bsa-1-as01-7-a25.gd.uol.com.br [200.197.118.25]) by breton.uol.com.br (8.9.1/8.9.1) with ESMTP id NAA08008 for ; Fri, 14 Apr 2000 13:16:46 -0300 (BRT) Received: (qmail 36316 invoked by uid 1001); 14 Apr 2000 16:14:48 -0000 Message-Id: <20000414161448.36315.qmail@Fedaykin.here> Date: 14 Apr 2000 16:14:48 -0000 From: lioux@uol.com.br Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18005: games/mindfocus broken under latest stable & XFree86-4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18005 >Category: ports >Synopsis: games/mindfocus broken under latest stable & XFree86-4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 09:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD Here.here 4.0-STABLE FreeBSD 4.0-STABLE #11: Sat Apr 8 14:20:39 EST 2000 root@Here.here:/usr/src/sys/compile/LIOUX i386 >Description: see synopsys >How-To-Repeat: just build under latest stable/ports with XFree86-4 installed >Fix: ===> Configuring for mindfocus-0.86.1 mv -f Makefile Makefile.bak imake -DUseInstalled -I/usr/X11R6/lib/X11/config make Makefiles "Makefile", line 814: Missing dependency operator make: fatal errors encountered -- cannot continue *** Error code 1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 9:38:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 60AFD37BEDD for ; Fri, 14 Apr 2000 09:38:10 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id JAA97987; Fri, 14 Apr 2000 09:38:04 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 6D2D81983; Fri, 14 Apr 2000 12:37:53 -0400 (EDT) Date: Fri, 14 Apr 2000 12:37:53 -0400 From: Will Andrews To: "R. Imura" Cc: ports@FreeBSD.ORG Subject: Re: Announcement: Qt version 2.1 released Message-ID: <20000414123753.G19141@argon.blackdawn.com> References: <38F6D2BC.A14352E4@altavista.net> <20000415011754Z.imura@cs.titech.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000415011754Z.imura@cs.titech.ac.jp>; from imura@af.airnet.ne.jp on Sat, Apr 15, 2000 at 01:17:54AM +0900 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Apr 15, 2000 at 01:17:54AM +0900, R. Imura wrote: > Please do not forget to link libxpg4 with your application. > Qt-2 has already supported multi-byte chars and in order to show > these chars correctly, libxpg4 is necessary. Thanks for reminding me; I need to fix kvirc. :-) -- 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 Fri Apr 14 9:40: 4 2000 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 0B51D37BF11 for ; Fri, 14 Apr 2000 09:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA46939; Fri, 14 Apr 2000 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7777D37B512 for ; Fri, 14 Apr 2000 09:31:15 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA45664; Fri, 14 Apr 2000 09:31:15 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004141631.JAA45664@freefall.freebsd.org> Date: Fri, 14 Apr 2000 09:31:15 -0700 (PDT) From: dennisjun@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18006: ssh2 and tcsh ports won't make install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18006 >Category: ports >Synopsis: ssh2 and tcsh ports won't make install >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 09:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dennis Jun >Release: STABLE >Organization: >Environment: FreeBSD bruce 4.0-20000408-STABLE FreeBSD 4.0-20000408-STABLE #0: Sat Apr 8 11:58:19 GMT 2000 root@usw3.freebsd.org:/usr/src/sys/compile/GENERIC i386 >Description: Basically the ssh2 and tcsh ports won't make install. I did a cvsup of the ports about 2 days ago and those 2 ports seem to be broken. >How-To-Repeat: do a make install in /usr/ports/security/ssh2 and /usr/ports/shells/tcsh/ >Fix: I THINK it's a simple typo in the Makefile, but since I'm a UN*X and FreeBSD newbie, don't take my word for it :) >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 Apr 14 9:56:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from field.videotron.net (field.videotron.net [205.151.222.108]) by hub.freebsd.org (Postfix) with ESMTP id 105B337B700 for ; Fri, 14 Apr 2000 09:56:50 -0700 (PDT) (envelope-from win95@inter-resa.com) Received: from inter-resa.com ([24.201.26.183]) by field.videotron.net (Sun Internet Mail Server sims.3.5.1999.12.14.10.29.p8) with ESMTP id <0FT0001Y5M40ON@field.videotron.net> for freebsd-ports@freebsd.org; Fri, 14 Apr 2000 12:36:00 -0400 (EDT) Date: Fri, 14 Apr 2000 12:35:57 -0400 From: Marc =?iso-8859-1?Q?Andr=E9?= Paquin Subject: KDM problems: xdm and startx ok... help? To: freebsd-ports@freebsd.org Cc: jss@subatomix.com, clefevre@citeweb.net Message-id: <38F748ED.39B6EC8F@inter-resa.com> MIME-version: 1.0 X-Mailer: Mozilla 4.5 [en] (Win95; U) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Accept-Language: en Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, On comp.unix.bsd.freebsd.misc several people are having problems with kdm that launch but dies few seconds after... xdm and startx both works fine and kicks off kde. I installed the 4.0 version from the ISO image and I had no problem during setup... I tried installation of Xfree86 and KDE from the CD and separately from the port tree in a second attempt... with the same results! There is no ERRATA about version 4.0 and after few days of waiting, it seems that our problem with kdm is not catching a lot of attention. What can we do? Since installation is very straight forward, where could have we screwed up? At the last setup, I have no errors (.xsession-errors, xdm-errors or core dump) in /root/ and in /usr/X11R6/lib/X11/xdm/ Thanks for any help! -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Marc Andre Paquin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 10: 0: 7 2000 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 6619737BF18 for ; Fri, 14 Apr 2000 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 KAA49734; Fri, 14 Apr 2000 10:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (silvercube.silverpix.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id 4DF1437B55B; Fri, 14 Apr 2000 09:52:25 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id MAA01997; Fri, 14 Apr 2000 12:51:15 -0400 (EDT) Received: (from root@localhost) by misha.privatelabs.com (8.9.3/8.9.3) id MAA72789; Fri, 14 Apr 2000 12:52:10 -0400 (EDT) (envelope-from mi) Message-Id: <200004141652.MAA72789@misha.privatelabs.com> Date: Fri, 14 Apr 2000 12:52:10 -0400 (EDT) From: root@misha.privatelabs.com Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: vanilla@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18007: Typo fix and new MASTER_SITE for security/xinetd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18007 >Category: ports >Synopsis: Typo fix and new MASTER_SITE for security/xinetd >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 10:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.0-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: There is a typo in the PORTNAME and the MASTER_SITE needs correction. >How-To-Repeat: cd /usr/ports/security/xinetd make distclean fetch >Fix: --- Makefile Mon Apr 10 16:20:21 2000 +++ Makefile Fri Apr 14 12:48:32 2000 @@ -7,6 +7,6 @@ -PORTNAME= xnited +PORTNAME= xinetd PORTVERSION= 2.1.8.8p2 CATEGORIES= security -MASTER_SITES= http://synack.net/xinetd/ +MASTER_SITES= http://www.xinetd.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 Fri Apr 14 10:16:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from corinth.bossig.com (corinth.bossig.com [208.26.239.66]) by hub.freebsd.org (Postfix) with ESMTP id 75CE037B700 for ; Fri, 14 Apr 2000 10:16:23 -0700 (PDT) (envelope-from kstewart@3-cities.com) Received: from 3-cities.com (unverified [208.26.242.1]) by corinth.bossig.com (Rockliffe SMTPRA 4.2.1) with ESMTP id ; Fri, 14 Apr 2000 10:26:55 -0700 Message-ID: <38F7523F.1D1D6443@3-cities.com> Date: Fri, 14 Apr 2000 10:15:43 -0700 From: Kent Stewart Organization: Columbia Basin Virtual Community Project X-Mailer: Mozilla 4.72 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: John Reynolds Cc: Will Andrews , ports@FreeBSD.ORG Subject: Re: make index broken? References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> <14583.9279.731684.583301@whale.home-net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org John Reynolds wrote: > > [ On Friday, April 14, Will Andrews wrote: ] > > > > Why are you using ``make index'' anyway? The only thing it does is generate > > INDEX, which isn't awesomely useful for the average person since Satoshi > > regens it himself every now and then. Overwriting ports/INDEX brings a risk > > - cvs (or whatever tool you use) may think the previous revision (which is > > supposed to be on your system) is broken/gone/fubar'd/whatever. The INDEX > > file is pretty darn big.. ;) > > Well, the CVS thing is not a terrible concern to me. The reason I'm using it is > because the INDEX file is not updated but only "every now and then." When I > CVSup the ports, I like using pkg_version to tell me what has been > updated. This works using the INDEX file. If a port was updated but the INDEX > file didn't show that it was updated to a new version, pkg_version would not be > able to tell me .... I wonder if something is out of date such as your bsd.port makefiles. I have been cvsup'ing right along with the changes and can still make the INDEX. Kent > > > > > > > I do suppose perhaps you simply ignore cvs/cvsup on ports/INDEX and regen > > it yourself every few days or something. That could save download time, but > > certainly not CPU or I/O time. :) > > aaaa .... got plenty of CPU and I/O to go around ;-) > > > It is my suspicion that this is caused by PORTNAME/PORTVERSION. > > this was happening before that switch over last weekend--I just didn't have the > time to write to -ports about it. > > -Jr > > -- > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation > jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running > jjreynold@home.com FreeBSD 3.4-STABLE. FreeBSD: The Power to Serve. > http://members.home.com/jjreynold/ 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 -- Kent Stewart Richland, WA mailto:kstewart@3-cities.com http://www.3-cities.com/~kstewart/index.html FreeBSD News http://daily.daemonnews.org/ SETI(Search for Extraterrestrial Intelligence) @ HOME http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 10:16:57 2000 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 A107F37BF45; Fri, 14 Apr 2000 10:16:55 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA52307; Fri, 14 Apr 2000 10:16:55 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Fri, 14 Apr 2000 10:16:55 -0700 (PDT) From: Message-Id: <200004141716.KAA52307@freefall.freebsd.org> To: bwithrow@nortelnetworks.com, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17996: Exmh-2.1.1 port doesn't work with nmh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Exmh-2.1.1 port doesn't work with nmh State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Sat Apr 15 02:16:39 JST 2000 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 Apr 14 10:30:21 2000 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 C19AD37BF3A for ; Fri, 14 Apr 2000 10:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA53931; Fri, 14 Apr 2000 10:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 87DC337BF2E for ; Fri, 14 Apr 2000 10:27:18 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA53646; Fri, 14 Apr 2000 10:27:18 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004141727.KAA53646@freefall.freebsd.org> Date: Fri, 14 Apr 2000 10:27:18 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18008: Update port: patchkit for fixing broken comments Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18008 >Category: ports >Synopsis: Update port: patchkit for fixing broken comments >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 10:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.0-RELEASE i386 >Organization: >Environment: >Description: I've found there are not a few COMMENT files disregarding formatting rule written in the Handbook. Following patches are for fixing these broken comments. >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: # # audio_gramofile.patch # audio_mxv.patch # chenese_xemacs.patch # comms_plp.patch # databases_grass.patch # databases_metakit.patch # databases_py-MySQL.patch # databases_rdb.patch # deskutils_xwrite.patch # devel_EloctricFence.patch # devel_cervisia.patch # devel_cook.patch # devel_kdevelop-i18n.patch # devel_kdevelop.patch # devel_kpp.patch # devel_libg++.patch # devel_p5-Locale-PGetText.patch # devel_popt.patch # devel_portcheckout.patch # editors_dedit.patch # editors_vigor.patch # editors_xemacs-sumo-packages.patch # games_atomix.patch # games_gno3dtet.patch # games_gtkabale.patch # games_quakeforge.patch # games_speak.patch # graphics_diacanvas.patch # graphics_mtv.patch # graphics_sodipodi.patch # graphics_xmovie.patch # graphics_xmrm.patch # japanese_makejvf.patch # japanese_sdic.patch # java_jce-aba.patch # korean_gau.patch # korean_netscape47-communicator.patch # lang_librep.patch # lang_sml-mode.el.patch # mail_courier-imap.patch # mail_elm.patch # mail_pgp4pine.patch # misc_cassowary.patch # misc_snowflake.patch # net_gnet.patch # net_ngrep.patch # net_openh323.patch # net_p5-Net-Daemon.patch # net_ppptraf.patch # print_latex2rtf.patch # print_poster.patch # security_dsniff.patch # security_fragrouter.patch # security_gag.patch # security_ident2.patch # security_mhash.patch # security_seahorse.patch # security_slurpie.patch # security_trinokiller.patch # security_zombiezapper.patch # shells_flash.patch # sysutils_setcdboot.patch # www_apache13-fp.patch # www_decss.patch # www_indexme.patch # www_p5-CGI-FastTemplate.patch # www_p5-HTML-Embperl.patch # www_p5-libapreq.patch # www_publicface.patch # www_publicfile.patch # x11-toolkits_gob.patch # x11-toolkits_guile-gtk.patch # x11-toolkits_py-tkinter.patch # x11-toolkits_vdkbuilder.patch # x11-wm_amaterus.patch # echo x - audio_gramofile.patch sed 's/^X//' >audio_gramofile.patch << 'END-of-audio_gramofile.patch' Xdiff -urN /usr/ports/audio/gramofile/pkg/COMMENT audio/gramofile/pkg/COMMENT X--- /usr/ports/audio/gramofile/pkg/COMMENT Fri Apr 7 19:36:17 2000 X+++ audio/gramofile/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-audio recording and tick/scratch reduction for e.g. vinyl records X+Audio recording and tick/scratch reduction for e.g. vinyl records END-of-audio_gramofile.patch echo x - audio_mxv.patch sed 's/^X//' >audio_mxv.patch << 'END-of-audio_mxv.patch' Xdiff -urN /usr/ports/audio/mxv/pkg/COMMENT audio/mxv/pkg/COMMENT X--- /usr/ports/audio/mxv/pkg/COMMENT Tue Feb 15 06:03:05 2000 X+++ audio/mxv/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Sound file editor/player/recorder/converter for X Window System. X+Sound file editor/player/recorder/converter for X Window System END-of-audio_mxv.patch echo x - chenese_xemacs.patch sed 's/^X//' >chenese_xemacs.patch << 'END-of-chenese_xemacs.patch' Xdiff -urN /usr/ports/chinese/xemacs/pkg/COMMENT chinese/xemacs/pkg/COMMENT X--- /usr/ports/chinese/xemacs/pkg/COMMENT Tue Jan 4 12:12:24 2000 X+++ chinese/xemacs/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-XEmacs text editor version 20, with XIM support and Big5 settings. X+XEmacs text editor version 20, with XIM support and Big5 settings END-of-chenese_xemacs.patch echo x - comms_plp.patch sed 's/^X//' >comms_plp.patch << 'END-of-comms_plp.patch' Xdiff -urN /usr/ports/comms/plp/pkg/COMMENT comms/plp/pkg/COMMENT X--- /usr/ports/comms/plp/pkg/COMMENT Sat Jan 29 16:53:11 2000 X+++ comms/plp/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Transfer data between a Psion Series 5(mx) and Unix. X+Transfer data between a Psion Series 5(mx) and Unix END-of-comms_plp.patch echo x - databases_grass.patch sed 's/^X//' >databases_grass.patch << 'END-of-databases_grass.patch' Xdiff -urN /usr/ports/databases/grass/pkg/COMMENT databases/grass/pkg/COMMENT X--- /usr/ports/databases/grass/pkg/COMMENT Sat Jan 29 16:18:54 2000 X+++ databases/grass/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-A public domain geographic information system (GIS). X+A public domain geographic information system (GIS) END-of-databases_grass.patch echo x - databases_metakit.patch sed 's/^X//' >databases_metakit.patch << 'END-of-databases_metakit.patch' Xdiff -urN /usr/ports/databases/metakit/pkg/COMMENT databases/metakit/pkg/COMMENT X--- /usr/ports/databases/metakit/pkg/COMMENT Wed Jan 5 12:41:18 2000 X+++ databases/metakit/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-C++ embedded database engine, supports Python and Tcl. X+C++ embedded database engine, supports Python and Tcl END-of-databases_metakit.patch echo x - databases_py-MySQL.patch sed 's/^X//' >databases_py-MySQL.patch << 'END-of-databases_py-MySQL.patch' Xdiff -urN /usr/ports/databases/py-MySQL/pkg/COMMENT databases/py-MySQL/pkg/COMMENT X--- /usr/ports/databases/py-MySQL/pkg/COMMENT Sat Jan 15 00:00:08 2000 X+++ databases/py-MySQL/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-access a MySQL database through Python X+Access a MySQL database through Python END-of-databases_py-MySQL.patch echo x - databases_rdb.patch sed 's/^X//' >databases_rdb.patch << 'END-of-databases_rdb.patch' Xdiff -urN /usr/ports/databases/rdb/pkg/COMMENT databases/rdb/pkg/COMMENT X--- /usr/ports/databases/rdb/pkg/COMMENT Tue Feb 22 08:11:33 2000 X+++ databases/rdb/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-A fast, portable, relational database management system. X+A fast, portable, relational database management system END-of-databases_rdb.patch echo x - deskutils_xwrite.patch sed 's/^X//' >deskutils_xwrite.patch << 'END-of-deskutils_xwrite.patch' Xdiff -urN /usr/ports/deskutils/xwrits/pkg/COMMENT deskutils/xwrits/pkg/COMMENT X--- /usr/ports/deskutils/xwrits/pkg/COMMENT Wed Jan 5 03:01:20 2000 X+++ deskutils/xwrits/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Xwrits reminds you to take wrist breaks. X+Reminds you to take wrist breaks END-of-deskutils_xwrite.patch echo x - devel_EloctricFence.patch sed 's/^X//' >devel_EloctricFence.patch << 'END-of-devel_EloctricFence.patch' Xdiff -urN /usr/ports/devel/ElectricFence/pkg/COMMENT devel/ElectricFence/pkg/COMMENT X--- /usr/ports/devel/ElectricFence/pkg/COMMENT Mon Jan 3 10:25:25 2000 X+++ devel/ElectricFence/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-debugging malloc() that uses the VM hardware to detect buffer overruns X+Debugging malloc() that uses the VM hardware to detect buffer overruns END-of-devel_EloctricFence.patch echo x - devel_cervisia.patch sed 's/^X//' >devel_cervisia.patch << 'END-of-devel_cervisia.patch' Xdiff -urN /usr/ports/devel/cervisia/pkg/COMMENT devel/cervisia/pkg/COMMENT X--- /usr/ports/devel/cervisia/pkg/COMMENT Sun Feb 13 06:52:59 2000 X+++ devel/cervisia/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-GUI utility to assist with CVS-based development. X+GUI utility to assist with CVS-based development END-of-devel_cervisia.patch echo x - devel_cook.patch sed 's/^X//' >devel_cook.patch << 'END-of-devel_cook.patch' Xdiff -urN /usr/ports/devel/cook/pkg/COMMENT devel/cook/pkg/COMMENT X--- /usr/ports/devel/cook/pkg/COMMENT Tue Feb 1 16:41:58 2000 X+++ devel/cook/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Like make(1), but more powerful and clean. X+Like make(1), but more powerful and clean END-of-devel_cook.patch echo x - devel_kdevelop-i18n.patch sed 's/^X//' >devel_kdevelop-i18n.patch << 'END-of-devel_kdevelop-i18n.patch' Xdiff -urN /usr/ports/devel/kdevelop-i18n/pkg/COMMENT devel/kdevelop-i18n/pkg/COMMENT X--- /usr/ports/devel/kdevelop-i18n/pkg/COMMENT Wed Mar 8 01:55:22 2000 X+++ devel/kdevelop-i18n/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Powerful IDE for developing KDE/Qt-based apps. X+Powerful IDE for developing KDE/Qt-based apps END-of-devel_kdevelop-i18n.patch echo x - devel_kdevelop.patch sed 's/^X//' >devel_kdevelop.patch << 'END-of-devel_kdevelop.patch' Xdiff -urN /usr/ports/devel/kdevelop/pkg/COMMENT devel/kdevelop/pkg/COMMENT X--- /usr/ports/devel/kdevelop/pkg/COMMENT Sun Feb 13 06:50:42 2000 X+++ devel/kdevelop/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Powerful IDE for developing KDE/Qt-based apps. X+Powerful IDE for developing KDE/Qt-based apps END-of-devel_kdevelop.patch echo x - devel_kpp.patch sed 's/^X//' >devel_kpp.patch << 'END-of-devel_kpp.patch' Xdiff -urN /usr/ports/devel/kpp/pkg/COMMENT devel/kpp/pkg/COMMENT X--- /usr/ports/devel/kpp/pkg/COMMENT Sun Feb 27 03:45:41 2000 X+++ devel/kpp/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-KDevelop Project to SPEC file converter. X+KDevelop Project to SPEC file converter END-of-devel_kpp.patch echo x - devel_libg++.patch sed 's/^X//' >devel_libg++.patch << 'END-of-devel_libg++.patch' Xdiff -urN /usr/ports/devel/libg++/pkg/COMMENT devel/libg++/pkg/COMMENT X--- /usr/ports/devel/libg++/pkg/COMMENT Mon Feb 28 04:23:25 2000 X+++ devel/libg++/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-libg++ container classes for EGCS and later versions of GCC X+A libg++ container classes for EGCS and later versions of GCC END-of-devel_libg++.patch echo x - devel_p5-Locale-PGetText.patch sed 's/^X//' >devel_p5-Locale-PGetText.patch << 'END-of-devel_p5-Locale-PGetText.patch' Xdiff -urN /usr/ports/devel/p5-Locale-PGetText/pkg/COMMENT devel/p5-Locale-PGetText/pkg/COMMENT X--- /usr/ports/devel/p5-Locale-PGetText/pkg/COMMENT Sat Jan 29 21:43:53 2000 X+++ devel/p5-Locale-PGetText/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-pure perl implementation of GNU gettext X+Pure perl implementation of GNU gettext END-of-devel_p5-Locale-PGetText.patch echo x - devel_popt.patch sed 's/^X//' >devel_popt.patch << 'END-of-devel_popt.patch' Xdiff -urN /usr/ports/devel/popt/pkg/COMMENT devel/popt/pkg/COMMENT X--- /usr/ports/devel/popt/pkg/COMMENT Thu Dec 30 21:31:23 1999 X+++ devel/popt/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-A getopt(3) like library with a number of enhancements, from Redhat. X+A getopt(3) like library with a number of enhancements, from Redhat END-of-devel_popt.patch echo x - devel_portcheckout.patch sed 's/^X//' >devel_portcheckout.patch << 'END-of-devel_portcheckout.patch' Xdiff -urN /usr/ports/devel/portcheckout/pkg/COMMENT devel/portcheckout/pkg/COMMENT X--- /usr/ports/devel/portcheckout/pkg/COMMENT Sun Jan 9 03:50:17 2000 X+++ devel/portcheckout/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-portcheckout - checkout and build ports and all depending ports. X+Checkout and build ports and all depending ports END-of-devel_portcheckout.patch echo x - editors_dedit.patch sed 's/^X//' >editors_dedit.patch << 'END-of-editors_dedit.patch' Xdiff -urN /usr/ports/editors/dedit/pkg/COMMENT editors/dedit/pkg/COMMENT X--- /usr/ports/editors/dedit/pkg/COMMENT Mon Jan 31 17:43:45 2000 X+++ editors/dedit/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a simple GNOME i18n editor X+A simple GNOME i18n editor END-of-editors_dedit.patch echo x - editors_vigor.patch sed 's/^X//' >editors_vigor.patch << 'END-of-editors_vigor.patch' Xdiff -urN /usr/ports/editors/vigor/pkg/COMMENT editors/vigor/pkg/COMMENT X--- /usr/ports/editors/vigor/pkg/COMMENT Tue Jan 18 11:29:22 2000 X+++ editors/vigor/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a vi clone inspired by the userfriendly comic strip X+A vi clone inspired by the userfriendly comic strip END-of-editors_vigor.patch echo x - editors_xemacs-sumo-packages.patch sed 's/^X//' >editors_xemacs-sumo-packages.patch << 'END-of-editors_xemacs-sumo-packages.patch' Xdiff -urN /usr/ports/editors/xemacs-sumo-packages/pkg/COMMENT editors/xemacs-sumo-packages/pkg/COMMENT X--- /usr/ports/editors/xemacs-sumo-packages/pkg/COMMENT Tue Feb 8 02:28:47 2000 X+++ editors/xemacs-sumo-packages/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-The Sumo Tarball using in XEmacs. X+The Sumo Tarball using in XEmacs END-of-editors_xemacs-sumo-packages.patch echo x - games_atomix.patch sed 's/^X//' >games_atomix.patch << 'END-of-games_atomix.patch' Xdiff -urN /usr/ports/games/atomix/pkg/COMMENT games/atomix/pkg/COMMENT X--- /usr/ports/games/atomix/pkg/COMMENT Fri Feb 4 22:02:44 2000 X+++ games/atomix/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a yet another little mind game X+A yet another little mind game END-of-games_atomix.patch echo x - games_gno3dtet.patch sed 's/^X//' >games_gno3dtet.patch << 'END-of-games_gno3dtet.patch' Xdiff -urN /usr/ports/games/gno3dtet/pkg/COMMENT games/gno3dtet/pkg/COMMENT X--- /usr/ports/games/gno3dtet/pkg/COMMENT Sun Jan 2 23:23:42 2000 X+++ games/gno3dtet/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-GNOME version of the classic 3D-ified T*tris. X+GNOME version of the classic 3D-ified T*tris END-of-games_gno3dtet.patch echo x - games_gtkabale.patch sed 's/^X//' >games_gtkabale.patch << 'END-of-games_gtkabale.patch' Xdiff -urN /usr/ports/games/gtkabale/pkg/COMMENT games/gtkabale/pkg/COMMENT X--- /usr/ports/games/gtkabale/pkg/COMMENT Mon Jan 31 13:09:09 2000 X+++ games/gtkabale/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a lazy version of solitaire game X+A lazy version of solitaire game END-of-games_gtkabale.patch echo x - games_quakeforge.patch sed 's/^X//' >games_quakeforge.patch << 'END-of-games_quakeforge.patch' Xdiff -urN /usr/ports/games/quakeforge/pkg/COMMENT games/quakeforge/pkg/COMMENT X--- /usr/ports/games/quakeforge/pkg/COMMENT Wed Jan 12 14:47:13 2000 X+++ games/quakeforge/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Cleaned up copy of the GPL'd Quake 1 source code. X+Cleaned up copy of the GPL'd Quake 1 source code END-of-games_quakeforge.patch echo x - games_speak.patch sed 's/^X//' >games_speak.patch << 'END-of-games_speak.patch' Xdiff -urN /usr/ports/games/speak/pkg/COMMENT games/speak/pkg/COMMENT X--- /usr/ports/games/speak/pkg/COMMENT Mon Jan 24 12:32:48 2000 X+++ games/speak/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Generates random middle-management synergy speak. X+Generates random middle-management synergy speak END-of-games_speak.patch echo x - graphics_diacanvas.patch sed 's/^X//' >graphics_diacanvas.patch << 'END-of-graphics_diacanvas.patch' Xdiff -urN /usr/ports/graphics/diacanvas/pkg/COMMENT graphics/diacanvas/pkg/COMMENT X--- /usr/ports/graphics/diacanvas/pkg/COMMENT Fri Feb 4 21:44:37 2000 X+++ graphics/diacanvas/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a general drawing canvas from dia dialog editor X+A general drawing canvas from dia dialog editor END-of-graphics_diacanvas.patch echo x - graphics_mtv.patch sed 's/^X//' >graphics_mtv.patch << 'END-of-graphics_mtv.patch' Xdiff -urN /usr/ports/graphics/mtv/pkg/COMMENT graphics/mtv/pkg/COMMENT X--- /usr/ports/graphics/mtv/pkg/COMMENT Sun Jan 30 18:54:44 2000 X+++ graphics/mtv/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-High-performance MPEG video player (shareware). X+High-performance MPEG video player (shareware) END-of-graphics_mtv.patch echo x - graphics_sodipodi.patch sed 's/^X//' >graphics_sodipodi.patch << 'END-of-graphics_sodipodi.patch' Xdiff -urN /usr/ports/graphics/sodipodi/pkg/COMMENT graphics/sodipodi/pkg/COMMENT X--- /usr/ports/graphics/sodipodi/pkg/COMMENT Fri Jan 28 21:46:36 2000 X+++ graphics/sodipodi/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a small Vector based drawing program with GNOME libraries X+A small vector based drawing program with GNOME libraries END-of-graphics_sodipodi.patch echo x - graphics_xmovie.patch sed 's/^X//' >graphics_xmovie.patch << 'END-of-graphics_xmovie.patch' Xdiff -urN /usr/ports/graphics/xmovie/pkg/COMMENT graphics/xmovie/pkg/COMMENT X--- /usr/ports/graphics/xmovie/pkg/COMMENT Sun Feb 13 11:06:52 2000 X+++ graphics/xmovie/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a movie player for MPEG-2, DVD, and Quicktime movies X+A movie player for MPEG-2, DVD, and Quicktime movies END-of-graphics_xmovie.patch echo x - graphics_xmrm.patch sed 's/^X//' >graphics_xmrm.patch << 'END-of-graphics_xmrm.patch' Xdiff -urN /usr/ports/graphics/xmrm/pkg/COMMENT graphics/xmrm/pkg/COMMENT X--- /usr/ports/graphics/xmrm/pkg/COMMENT Wed Mar 29 07:44:13 2000 X+++ graphics/xmrm/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a image morphing/warping program X+An image morphing/warping program END-of-graphics_xmrm.patch echo x - japanese_makejvf.patch sed 's/^X//' >japanese_makejvf.patch << 'END-of-japanese_makejvf.patch' Xdiff -urN /usr/ports/japanese/makejvf/pkg/COMMENT japanese/makejvf/pkg/COMMENT X--- /usr/ports/japanese/makejvf/pkg/COMMENT Thu Nov 18 08:38:45 1999 X+++ japanese/makejvf/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-makejvf-1.0-fkr + TFM and VF X+Japanese Virtual Font file maker + TFM and VF END-of-japanese_makejvf.patch echo x - japanese_sdic.patch sed 's/^X//' >japanese_sdic.patch << 'END-of-japanese_sdic.patch' Xdiff -urN /usr/ports/japanese/sdic/pkg/COMMENT japanese/sdic/pkg/COMMENT X--- /usr/ports/japanese/sdic/pkg/COMMENT Tue Jan 25 22:07:47 2000 X+++ japanese/sdic/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a look up mode on Emacsen for a English - Japanese Dictionary X+A look up mode on Emacsen for a English - Japanese Dictionary END-of-japanese_sdic.patch echo x - java_jce-aba.patch sed 's/^X//' >java_jce-aba.patch << 'END-of-java_jce-aba.patch' Xdiff -urN /usr/ports/java/jce-aba/pkg/COMMENT java/jce-aba/pkg/COMMENT X--- /usr/ports/java/jce-aba/pkg/COMMENT Wed Mar 8 21:08:34 2000 X+++ java/jce-aba/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-This is JCE(Java Cryptograph Extension). X+A clean room implementation of the Java Cryptograph Extension (JCE) API END-of-java_jce-aba.patch echo x - korean_gau.patch sed 's/^X//' >korean_gau.patch << 'END-of-korean_gau.patch' Xdiff -urN /usr/ports/korean/gau/pkg/COMMENT korean/gau/pkg/COMMENT X--- /usr/ports/korean/gau/pkg/COMMENT Mon Feb 21 00:16:45 2000 X+++ korean/gau/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-gtk-based Hangul terminal emulator(for modem/tcp) X+Gtk-based Hangul terminal emulator (for modem/tcp) END-of-korean_gau.patch echo x - korean_netscape47-communicator.patch sed 's/^X//' >korean_netscape47-communicator.patch << 'END-of-korean_netscape47-communicator.patch' Xdiff -urN /usr/ports/korean/netscape47-communicator/pkg/COMMENT korean/netscape47-communicator/pkg/COMMENT X--- /usr/ports/korean/netscape47-communicator/pkg/COMMENT Wed Aug 25 08:04:05 1999 X+++ korean/netscape47-communicator/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-netscape web-surfboard with Korean resources X+Netscape web-surfboard with Korean resources END-of-korean_netscape47-communicator.patch echo x - lang_librep.patch sed 's/^X//' >lang_librep.patch << 'END-of-lang_librep.patch' Xdiff -urN /usr/ports/lang/librep/pkg/COMMENT lang/librep/pkg/COMMENT X--- /usr/ports/lang/librep/pkg/COMMENT Sun Jan 9 17:05:15 2000 X+++ lang/librep/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-an Emacs Lisp like runtime library X+An Emacs Lisp like runtime library END-of-lang_librep.patch echo x - lang_sml-mode.el.patch sed 's/^X//' >lang_sml-mode.el.patch << 'END-of-lang_sml-mode.el.patch' Xdiff -urN /usr/ports/lang/sml-mode.el/pkg/COMMENT lang/sml-mode.el/pkg/COMMENT X--- /usr/ports/lang/sml-mode.el/pkg/COMMENT Mon Dec 27 18:32:49 1999 X+++ lang/sml-mode.el/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-an EMACS mode for editing Standard ML programs X+An EMACS mode for editing Standard ML programs END-of-lang_sml-mode.el.patch echo x - mail_courier-imap.patch sed 's/^X//' >mail_courier-imap.patch << 'END-of-mail_courier-imap.patch' Xdiff -urN /usr/ports/mail/courier-imap/pkg/COMMENT mail/courier-imap/pkg/COMMENT X--- /usr/ports/mail/courier-imap/pkg/COMMENT Sun Mar 12 05:16:32 2000 X+++ mail/courier-imap/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-IMAP server that provides access to Maildir mailboxes. X+IMAP server that provides access to Maildir mailboxes END-of-mail_courier-imap.patch echo x - mail_elm.patch sed 's/^X//' >mail_elm.patch << 'END-of-mail_elm.patch' Xdiff -urN /usr/ports/mail/elm/pkg/COMMENT mail/elm/pkg/COMMENT X--- /usr/ports/mail/elm/pkg/COMMENT Sat Jan 22 22:34:03 2000 X+++ mail/elm/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-A once-popular mail user agent, unofficial clone. X+A once-popular mail user agent, unofficial clone END-of-mail_elm.patch echo x - mail_pgp4pine.patch sed 's/^X//' >mail_pgp4pine.patch << 'END-of-mail_pgp4pine.patch' Xdiff -urN /usr/ports/mail/pgp4pine/pkg/COMMENT mail/pgp4pine/pkg/COMMENT X--- /usr/ports/mail/pgp4pine/pkg/COMMENT Tue Feb 29 16:59:38 2000 X+++ mail/pgp4pine/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-tool to use PGP 2/5/6 or GPG with Pine X+Tool to use PGP 2/5/6 or GPG with Pine END-of-mail_pgp4pine.patch echo x - misc_cassowary.patch sed 's/^X//' >misc_cassowary.patch << 'END-of-misc_cassowary.patch' Xdiff -urN /usr/ports/misc/cassowary/pkg/COMMENT misc/cassowary/pkg/COMMENT X--- /usr/ports/misc/cassowary/pkg/COMMENT Wed Jan 12 14:59:54 2000 X+++ misc/cassowary/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-constraint solving toolkit X+Constraint solving toolkit END-of-misc_cassowary.patch echo x - misc_snowflake.patch sed 's/^X//' >misc_snowflake.patch << 'END-of-misc_snowflake.patch' Xdiff -urN /usr/ports/misc/snowflake/pkg/COMMENT misc/snowflake/pkg/COMMENT X--- /usr/ports/misc/snowflake/pkg/COMMENT Sat Jan 29 21:53:03 2000 X+++ misc/snowflake/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a snowflake image generator X+A snowflake image generator END-of-misc_snowflake.patch echo x - net_gnet.patch sed 's/^X//' >net_gnet.patch << 'END-of-net_gnet.patch' Xdiff -urN /usr/ports/net/gnet/pkg/COMMENT net/gnet/pkg/COMMENT X--- /usr/ports/net/gnet/pkg/COMMENT Wed Feb 16 21:01:25 2000 X+++ net/gnet/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a simple network library built upon glib X+A simple network library built upon Glib END-of-net_gnet.patch echo x - net_ngrep.patch sed 's/^X//' >net_ngrep.patch << 'END-of-net_ngrep.patch' Xdiff -urN /usr/ports/net/ngrep/pkg/COMMENT net/ngrep/pkg/COMMENT X--- /usr/ports/net/ngrep/pkg/COMMENT Sun Jan 2 19:22:41 2000 X+++ net/ngrep/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-network grep X+Network grep END-of-net_ngrep.patch echo x - net_openh323.patch sed 's/^X//' >net_openh323.patch << 'END-of-net_openh323.patch' Xdiff -urN /usr/ports/net/openh323/pkg/COMMENT net/openh323/pkg/COMMENT X--- /usr/ports/net/openh323/pkg/COMMENT Mon Feb 21 22:27:29 2000 X+++ net/openh323/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-A H323 Video Conferencing package. Can connect to MS NetMeeting. X+A H323 Video Conferencing package END-of-net_openh323.patch echo x - net_p5-Net-Daemon.patch sed 's/^X//' >net_p5-Net-Daemon.patch << 'END-of-net_p5-Net-Daemon.patch' Xdiff -urN /usr/ports/net/p5-Net-Daemon/pkg/COMMENT net/p5-Net-Daemon/pkg/COMMENT X--- /usr/ports/net/p5-Net-Daemon/pkg/COMMENT Sun Feb 27 14:52:44 2000 X+++ net/p5-Net-Daemon/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Perl5 extension for portable daemons. X+Perl5 extension for portable daemons END-of-net_p5-Net-Daemon.patch echo x - net_ppptraf.patch sed 's/^X//' >net_ppptraf.patch << 'END-of-net_ppptraf.patch' Xdiff -urN /usr/ports/net/ppptraf/pkg/COMMENT net/ppptraf/pkg/COMMENT X--- /usr/ports/net/ppptraf/pkg/COMMENT Tue Feb 29 13:00:55 2000 X+++ net/ppptraf/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-A ncurses based PPP Traffic (bytes in/out) monitoring program. X+A ncurses based PPP Traffic (bytes in/out) monitoring program END-of-net_ppptraf.patch echo x - print_latex2rtf.patch sed 's/^X//' >print_latex2rtf.patch << 'END-of-print_latex2rtf.patch' Xdiff -urN /usr/ports/print/latex2rtf/pkg/COMMENT print/latex2rtf/pkg/COMMENT X--- /usr/ports/print/latex2rtf/pkg/COMMENT Mon Jan 31 08:36:39 2000 X+++ print/latex2rtf/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-translator from LaTeX to RTF X+Translator from LaTeX to RTF END-of-print_latex2rtf.patch echo x - print_poster.patch sed 's/^X//' >print_poster.patch << 'END-of-print_poster.patch' Xdiff -urN /usr/ports/print/poster/pkg/COMMENT print/poster/pkg/COMMENT X--- /usr/ports/print/poster/pkg/COMMENT Mon Feb 7 23:57:58 2000 X+++ print/poster/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-resize a postscript image to print on larger media and/or multiple sheets X+Resize a postscript image to print on larger media and/or multiple sheets END-of-print_poster.patch echo x - security_dsniff.patch sed 's/^X//' >security_dsniff.patch << 'END-of-security_dsniff.patch' Xdiff -urN /usr/ports/security/dsniff/pkg/COMMENT security/dsniff/pkg/COMMENT X--- /usr/ports/security/dsniff/pkg/COMMENT Sun Jan 9 12:13:59 2000 X+++ security/dsniff/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-various sniffing utilities for penetration testing X+Various sniffing utilities for penetration testing END-of-security_dsniff.patch echo x - security_fragrouter.patch sed 's/^X//' >security_fragrouter.patch << 'END-of-security_fragrouter.patch' Xdiff -urN /usr/ports/security/fragrouter/pkg/COMMENT security/fragrouter/pkg/COMMENT X--- /usr/ports/security/fragrouter/pkg/COMMENT Sat Jan 8 18:24:24 2000 X+++ security/fragrouter/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-tool for testing network IDS implementations X+Tool for testing network IDS implementations END-of-security_fragrouter.patch echo x - security_gag.patch sed 's/^X//' >security_gag.patch << 'END-of-security_gag.patch' Xdiff -urN /usr/ports/security/gag/pkg/COMMENT security/gag/pkg/COMMENT X--- /usr/ports/security/gag/pkg/COMMENT Mon Feb 14 10:52:02 2000 X+++ security/gag/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-gag - a stacheldraht (DOS attack) agent detector X+A stacheldraht (DOS attack) agent detector END-of-security_gag.patch echo x - security_ident2.patch sed 's/^X//' >security_ident2.patch << 'END-of-security_ident2.patch' Xdiff -urN /usr/ports/security/ident2/pkg/COMMENT security/ident2/pkg/COMMENT X--- /usr/ports/security/ident2/pkg/COMMENT Mon Mar 27 18:58:44 2000 X+++ security/ident2/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-An RFC1413 identification server which also supports random replies. X+An RFC1413 identification server which also supports random replies END-of-security_ident2.patch echo x - security_mhash.patch sed 's/^X//' >security_mhash.patch << 'END-of-security_mhash.patch' Xdiff -urN /usr/ports/security/mhash/pkg/COMMENT security/mhash/pkg/COMMENT X--- /usr/ports/security/mhash/pkg/COMMENT Sun Jan 9 11:40:21 2000 X+++ security/mhash/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1,2 +1 @@ X-The mhash library provides an easy way to access strong hashes such as MD5 X-and SHA1. X+Library provides an easy way to access strong hashes such as MD5 and SHA1 END-of-security_mhash.patch echo x - security_seahorse.patch sed 's/^X//' >security_seahorse.patch << 'END-of-security_seahorse.patch' Xdiff -urN /usr/ports/security/seahorse/pkg/COMMENT security/seahorse/pkg/COMMENT X--- /usr/ports/security/seahorse/pkg/COMMENT Fri Mar 10 10:22:54 2000 X+++ security/seahorse/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-A front end for GnuPG. X+A front end for GnuPG END-of-security_seahorse.patch echo x - security_slurpie.patch sed 's/^X//' >security_slurpie.patch << 'END-of-security_slurpie.patch' Xdiff -urN /usr/ports/security/slurpie/pkg/COMMENT security/slurpie/pkg/COMMENT X--- /usr/ports/security/slurpie/pkg/COMMENT Mon Feb 14 12:24:01 2000 X+++ security/slurpie/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-passwd file cracker (supports distributed nodes) X+A passwd file cracker (supports distributed nodes) END-of-security_slurpie.patch echo x - security_trinokiller.patch sed 's/^X//' >security_trinokiller.patch << 'END-of-security_trinokiller.patch' Xdiff -urN /usr/ports/security/trinokiller/pkg/COMMENT security/trinokiller/pkg/COMMENT X--- /usr/ports/security/trinokiller/pkg/COMMENT Mon Feb 14 12:46:31 2000 X+++ security/trinokiller/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-remotely kill trino nodes X+Remotely kill trino nodes END-of-security_trinokiller.patch echo x - security_zombiezapper.patch sed 's/^X//' >security_zombiezapper.patch << 'END-of-security_zombiezapper.patch' Xdiff -urN /usr/ports/security/zombiezapper/pkg/COMMENT security/zombiezapper/pkg/COMMENT X--- /usr/ports/security/zombiezapper/pkg/COMMENT Sun Feb 20 19:29:11 2000 X+++ security/zombiezapper/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Send a terminate command to Trinoo/TFN/Stacheldracht DDoS agents. X+Send a terminate command to Trinoo/TFN/Stacheldracht DDoS agents END-of-security_zombiezapper.patch echo x - shells_flash.patch sed 's/^X//' >shells_flash.patch << 'END-of-shells_flash.patch' Xdiff -urN /usr/ports/shells/flash/pkg/COMMENT shells/flash/pkg/COMMENT X--- /usr/ports/shells/flash/pkg/COMMENT Sun Jan 9 03:23:33 2000 X+++ shells/flash/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-ncurses-based restriction shell. X+A ncurses-based restriction shell END-of-shells_flash.patch echo x - sysutils_setcdboot.patch sed 's/^X//' >sysutils_setcdboot.patch << 'END-of-sysutils_setcdboot.patch' Xdiff -urN /usr/ports/sysutils/setcdboot/pkg/COMMENT sysutils/setcdboot/pkg/COMMENT X--- /usr/ports/sysutils/setcdboot/pkg/COMMENT Mon Feb 14 03:12:31 2000 X+++ sysutils/setcdboot/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Mark a file bootable within a DEC Alpha ISO-9660 image. X+Mark a file bootable within a DEC Alpha ISO-9660 image END-of-sysutils_setcdboot.patch echo x - www_apache13-fp.patch sed 's/^X//' >www_apache13-fp.patch << 'END-of-www_apache13-fp.patch' Xdiff -urN /usr/ports/www/apache13-fp/pkg/COMMENT www/apache13-fp/pkg/COMMENT X--- /usr/ports/www/apache13-fp/pkg/COMMENT Mon Jan 3 12:36:37 2000 X+++ www/apache13-fp/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-The Apache webserver with w/MS Frontpage 2000 Extentions. X+The Apache webserver with w/MS Frontpage 2000 Extentions END-of-www_apache13-fp.patch echo x - www_decss.patch sed 's/^X//' >www_decss.patch << 'END-of-www_decss.patch' Xdiff -urN /usr/ports/www/decss/pkg/COMMENT www/decss/pkg/COMMENT X--- /usr/ports/www/decss/pkg/COMMENT Mon Feb 21 17:25:14 2000 X+++ www/decss/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Strip cascading style sheets from webpages. X+Strip cascading style sheets from webpages END-of-www_decss.patch echo x - www_indexme.patch sed 's/^X//' >www_indexme.patch << 'END-of-www_indexme.patch' Xdiff -urN /usr/ports/www/indexme/pkg/COMMENT www/indexme/pkg/COMMENT X--- /usr/ports/www/indexme/pkg/COMMENT Tue Feb 1 08:53:59 2000 X+++ www/indexme/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-links files into a HTML index for viewing and easy overview X+Tool for linking files into a HTML index for viewing and easy overview END-of-www_indexme.patch echo x - www_p5-CGI-FastTemplate.patch sed 's/^X//' >www_p5-CGI-FastTemplate.patch << 'END-of-www_p5-CGI-FastTemplate.patch' Xdiff -urN /usr/ports/www/p5-CGI-FastTemplate/pkg/COMMENT www/p5-CGI-FastTemplate/pkg/COMMENT X--- /usr/ports/www/p5-CGI-FastTemplate/pkg/COMMENT Sun Feb 27 17:02:32 2000 X+++ www/p5-CGI-FastTemplate/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Perl module for manage templates and parses templates. X+Perl module for manage templates and parses templates END-of-www_p5-CGI-FastTemplate.patch echo x - www_p5-HTML-Embperl.patch sed 's/^X//' >www_p5-HTML-Embperl.patch << 'END-of-www_p5-HTML-Embperl.patch' Xdiff -urN /usr/ports/www/p5-HTML-Embperl/pkg/COMMENT www/p5-HTML-Embperl/pkg/COMMENT X--- /usr/ports/www/p5-HTML-Embperl/pkg/COMMENT Sun Mar 19 14:47:29 2000 X+++ www/p5-HTML-Embperl/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-A module to allow embedded perl in HTML documents. X+A module to allow embedded perl in HTML documents END-of-www_p5-HTML-Embperl.patch echo x - www_p5-libapreq.patch sed 's/^X//' >www_p5-libapreq.patch << 'END-of-www_p5-libapreq.patch' Xdiff -urN /usr/ports/www/p5-libapreq/pkg/COMMENT www/p5-libapreq/pkg/COMMENT X--- /usr/ports/www/p5-libapreq/pkg/COMMENT Sun Mar 19 14:42:08 2000 X+++ www/p5-libapreq/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Install libraries/include files into Perl architecture dependent locations. X+Install libraries/include files into Perl architecture dependent locations END-of-www_p5-libapreq.patch echo x - www_publicface.patch sed 's/^X//' >www_publicface.patch << 'END-of-www_publicface.patch' END-of-www_publicface.patch echo x - www_publicfile.patch sed 's/^X//' >www_publicfile.patch << 'END-of-www_publicfile.patch' Xdiff -urN /usr/ports/www/publicfile/pkg/COMMENT www/publicfile/pkg/COMMENT X--- /usr/ports/www/publicfile/pkg/COMMENT Sat Jan 29 01:41:09 2000 X+++ www/publicfile/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-publicfile supplies files to the public through HTTP and FTP X+A secure, read-only, anonymous HTTP/FTP server END-of-www_publicfile.patch echo x - x11-toolkits_gob.patch sed 's/^X//' >x11-toolkits_gob.patch << 'END-of-x11-toolkits_gob.patch' Xdiff -urN /usr/ports/x11-toolkits/gob/pkg/COMMENT x11-toolkits/gob/pkg/COMMENT X--- /usr/ports/x11-toolkits/gob/pkg/COMMENT Tue Jan 25 20:13:57 2000 X+++ x11-toolkits/gob/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a preprocessor for making GTK+ objects with inline C X+A preprocessor for making GTK+ objects with inline C END-of-x11-toolkits_gob.patch echo x - x11-toolkits_guile-gtk.patch sed 's/^X//' >x11-toolkits_guile-gtk.patch << 'END-of-x11-toolkits_guile-gtk.patch' Xdiff -urN /usr/ports/x11-toolkits/guile-gtk/pkg/COMMENT x11-toolkits/guile-gtk/pkg/COMMENT X--- /usr/ports/x11-toolkits/guile-gtk/pkg/COMMENT Wed Jan 12 13:49:49 2000 X+++ x11-toolkits/guile-gtk/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-guile binding library for GTK+ X+Guile binding library for GTK+ END-of-x11-toolkits_guile-gtk.patch echo x - x11-toolkits_py-tkinter.patch sed 's/^X//' >x11-toolkits_py-tkinter.patch << 'END-of-x11-toolkits_py-tkinter.patch' Xdiff -urN /usr/ports/x11-toolkits/py-tkinter/pkg/COMMENT x11-toolkits/py-tkinter/pkg/COMMENT X--- /usr/ports/x11-toolkits/py-tkinter/pkg/COMMENT Tue Apr 4 18:53:08 2000 X+++ x11-toolkits/py-tkinter/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-Python bindings to the Tk widget set. X+Python bindings to the Tk widget set END-of-x11-toolkits_py-tkinter.patch echo x - x11-toolkits_vdkbuilder.patch sed 's/^X//' >x11-toolkits_vdkbuilder.patch << 'END-of-x11-toolkits_vdkbuilder.patch' Xdiff -urN /usr/ports/x11-toolkits/vdkbuilder/pkg/COMMENT x11-toolkits/vdkbuilder/pkg/COMMENT X--- /usr/ports/x11-toolkits/vdkbuilder/pkg/COMMENT Mon Jan 31 13:00:50 2000 X+++ x11-toolkits/vdkbuilder/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a general ide tool for GTK+/VDK X+A general ide tool for GTK+/VDK END-of-x11-toolkits_vdkbuilder.patch echo x - x11-wm_amaterus.patch sed 's/^X//' >x11-wm_amaterus.patch << 'END-of-x11-wm_amaterus.patch' Xdiff -urN /usr/ports/x11-wm/amaterus/pkg/COMMENT x11-wm/amaterus/pkg/COMMENT X--- /usr/ports/x11-wm/amaterus/pkg/COMMENT Mon Feb 7 17:11:04 2000 X+++ x11-wm/amaterus/pkg/COMMENT Fri Apr 14 20:00:00 2000 X@@ -1 +1 @@ X-a GTK+ window manager X+A GTK+ window manager END-of-x11-wm_amaterus.patch 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 Apr 14 10:40:13 2000 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 EFA6237BF36 for ; Fri, 14 Apr 2000 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 KAA54662; Fri, 14 Apr 2000 10:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C20B37BED6 for ; Fri, 14 Apr 2000 10:37:19 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA54468; Fri, 14 Apr 2000 10:37:19 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004141737.KAA54468@freefall.freebsd.org> Date: Fri, 14 Apr 2000 10:37:19 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18009: Update port: patchkit for using NO_WRKSUBDIR Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18009 >Category: ports >Synopsis: Update port: patchkit for using NO_WRKSUBDIR >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 10:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.0-RELEASE i386 >Organization: >Environment: >Description: I've found there are not a few ports Makefile defining WRKSRC=WRKDIR instead of using NO_WRKSUBDIR. Interestingly, some of these have both lines. Following patches are for avoiding these waste. >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: # # audio_mpg123.el.patch # comms_mlan.patch # devel_mprof.patch # devel_py-kjbuckets.patch # devel_yacl.patch # editors_uzap.patch # games_antipolix.patch # games_merlin.patch # games_xbloody.patch # graphics_jgraph.patch # graphics_vcdgear.patch # graphics_xmrm.patch # japanese_Wnn6.patch # japanese_tgif.patch # japanese_vfxdvi300.patch # japanese_xklock.patch # japanese_yc.el.patch # java_cos.patch # java_infobus.patch # java_jdk-tutorial.patch # mail_majorcool.patch # misc_man.el.patch # net_archie.el.patch # news_pgpmoose.patch # palm_pilrc.patch # www_hotjava.patch # echo x - audio_mpg123.el.patch sed 's/^X//' >audio_mpg123.el.patch << 'END-of-audio_mpg123.el.patch' Xdiff -urN /usr/ports/audio/mpg123.el/Makefile audio/mpg123.el/Makefile X--- /usr/ports/audio/mpg123.el/Makefile Sun Apr 9 15:42:39 2000 X+++ audio/mpg123.el/Makefile Fri Apr 14 19:50:11 2000 X@@ -19,7 +19,6 @@ X EXTRACT_ONLY= # empty X NO_WRKSUBDIR= yes X NO_BUILD= yes X-WRKSRC= ${WRKDIR} X X ELISPDIR= ${PREFIX}/share/emacs/site-lisp X XELISPDIR= ${PREFIX}/lib/xemacs/site-lisp END-of-audio_mpg123.el.patch echo x - comms_mlan.patch sed 's/^X//' >comms_mlan.patch << 'END-of-comms_mlan.patch' Xdiff -urN /usr/ports/comms/mlan/Makefile comms/mlan/Makefile X--- /usr/ports/comms/mlan/Makefile Sun Apr 9 15:43:26 2000 X+++ comms/mlan/Makefile Fri Apr 14 19:53:25 2000 X@@ -13,7 +13,7 @@ X X MAINTAINER= phk@FreeBSD.org X X+NO_WRKSUBDIR= yes X USE_ZIP= yes X-WRKSRC= ${WRKDIR} X X .include END-of-comms_mlan.patch echo x - devel_mprof.patch sed 's/^X//' >devel_mprof.patch << 'END-of-devel_mprof.patch' Xdiff -urN /usr/ports/devel/mprof/Makefile devel/mprof/Makefile X--- /usr/ports/devel/mprof/Makefile Wed Apr 12 21:20:13 2000 X+++ devel/mprof/Makefile Fri Apr 14 19:51:33 2000 X@@ -14,7 +14,7 @@ X X MAINTAINER= obrien@FreeBSD.org X X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X MAKEFILE= Makefile.i386 X MAN1= mprof.1 X END-of-devel_mprof.patch echo x - devel_py-kjbuckets.patch sed 's/^X//' >devel_py-kjbuckets.patch << 'END-of-devel_py-kjbuckets.patch' Xdiff -urN /usr/ports/devel/py-kjbuckets/Makefile devel/py-kjbuckets/Makefile X--- /usr/ports/devel/py-kjbuckets/Makefile Wed Apr 12 21:20:29 2000 X+++ devel/py-kjbuckets/Makefile Fri Apr 14 19:52:40 2000 X@@ -18,8 +18,8 @@ X BUILD_DEPENDS= python:${PORTSDIR}/lang/python X RUN_DEPENDS= python:${PORTSDIR}/lang/python X X+NO_WRKSUBDIR= yes X MAKEFILE= makefile X-WRKSRC= ${WRKDIR} X X do-install: X ${MKDIR} ${PREFIX}/lib/python1.5/site-packages END-of-devel_py-kjbuckets.patch echo x - devel_yacl.patch sed 's/^X//' >devel_yacl.patch << 'END-of-devel_yacl.patch' Xdiff -urN /usr/ports/devel/yacl/Makefile devel/yacl/Makefile X--- /usr/ports/devel/yacl/Makefile Fri Apr 14 18:47:46 2000 X+++ devel/yacl/Makefile Fri Apr 14 19:53:01 2000 X@@ -13,8 +13,8 @@ X X MAINTAINER= albast@xs4all.nl X X+NO_WRKSUBDIR= yes X USE_ZIP= yes X-WRKSRC= ${WRKDIR} X MAKE_ENV= YACLPATH=${WRKDIR} X X MAKEFILE= gnuc.mak END-of-devel_yacl.patch echo x - editors_uzap.patch sed 's/^X//' >editors_uzap.patch << 'END-of-editors_uzap.patch' Xdiff -urN /usr/ports/editors/uzap/Makefile editors/uzap/Makefile X--- /usr/ports/editors/uzap/Makefile Fri Apr 14 18:48:20 2000 X+++ editors/uzap/Makefile Fri Apr 14 19:54:18 2000 X@@ -15,7 +15,7 @@ X X # restrictive Copyright; the author is no longer reachable, however :-( X RESTRICTED= "Restrictive copyright" X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X MAN1= uzap.1 X X .include END-of-editors_uzap.patch echo x - games_antipolix.patch sed 's/^X//' >games_antipolix.patch << 'END-of-games_antipolix.patch' Xdiff -urN /usr/ports/games/antipolix/Makefile games/antipolix/Makefile X--- /usr/ports/games/antipolix/Makefile Fri Apr 14 18:48:46 2000 X+++ games/antipolix/Makefile Fri Apr 14 20:12:12 2000 X@@ -14,7 +14,7 @@ X X MAINTAINER= ports@FreeBSD.org X X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X USE_IMAKE= yes X X do-install: END-of-games_antipolix.patch echo x - games_merlin.patch sed 's/^X//' >games_merlin.patch << 'END-of-games_merlin.patch' Xdiff -urN /usr/ports/games/merlin/Makefile games/merlin/Makefile X--- /usr/ports/games/merlin/Makefile Wed Mar 29 20:01:01 2000 X+++ games/merlin/Makefile Fri Apr 14 20:12:27 2000 X@@ -15,9 +15,9 @@ X X RUN_DEPENDS= wish8.2:${PORTSDIR}/x11-toolkits/tk82 X X+NO_WRKSUBDIR= yes X NO_BUILD= yes X USE_X_PREFIX= yes X-WRKSRC= ${WRKDIR} X X post-extract: X @ ${MV} ${WRKSRC}/merlin.tcl ${WRKSRC}/merlin END-of-games_merlin.patch echo x - games_xbloody.patch sed 's/^X//' >games_xbloody.patch << 'END-of-games_xbloody.patch' Xdiff -urN /usr/ports/games/xbloody/Makefile games/xbloody/Makefile X--- /usr/ports/games/xbloody/Makefile Wed Aug 25 15:04:49 1999 X+++ games/xbloody/Makefile Fri Apr 14 20:12:55 2000 X@@ -13,7 +13,7 @@ X X MAINTAINER= kazu@jp.freebsd.org X X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X USE_IMAKE= yes X NO_INSTALL_MANPAGES= yes X END-of-games_xbloody.patch echo x - graphics_jgraph.patch sed 's/^X//' >graphics_jgraph.patch << 'END-of-graphics_jgraph.patch' Xdiff -urN /usr/ports/graphics/jgraph/Makefile graphics/jgraph/Makefile X--- /usr/ports/graphics/jgraph/Makefile Tue Sep 7 08:32:59 1999 X+++ graphics/jgraph/Makefile Fri Apr 14 19:54:41 2000 X@@ -19,7 +19,7 @@ X EXTRACT_BEFORE_ARGS= -c X EXTRACT_AFTER_ARGS= | sh X X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X MAN1= jgraph.1 X MAKEFILE= makefile X END-of-graphics_jgraph.patch echo x - graphics_vcdgear.patch sed 's/^X//' >graphics_vcdgear.patch << 'END-of-graphics_vcdgear.patch' Xdiff -urN /usr/ports/graphics/vcdgear/Makefile graphics/vcdgear/Makefile X--- /usr/ports/graphics/vcdgear/Makefile Sun Feb 27 04:41:11 2000 X+++ graphics/vcdgear/Makefile Fri Apr 14 19:55:18 2000 X@@ -21,7 +21,7 @@ X X ONLY_FOR_ARCHS= i386 X NO_BUILD= true X-WRKSRC= ${WRKDIR} X+NO_WRKSUNDIR= yes X EXTRACT_AFTER_ARGS= > ${WRKSRC}/vcdgear X X do-install: END-of-graphics_vcdgear.patch echo x - graphics_xmrm.patch sed 's/^X//' >graphics_xmrm.patch << 'END-of-graphics_xmrm.patch' Xdiff -urN /usr/ports/graphics/xmrm/Makefile graphics/xmrm/Makefile X--- /usr/ports/graphics/xmrm/Makefile Wed Mar 29 07:44:09 2000 X+++ graphics/xmrm/Makefile Fri Apr 14 19:55:45 2000 X@@ -20,7 +20,7 @@ X Xpm.4:${PORTSDIR}/graphics/xpm \ X tiff.4:${PORTSDIR}/graphics/tiff X X-WRKSRC= ${WRKDIR} X+NO_WRKSUNDIR= yes X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xmrm ${PREFIX}/bin END-of-graphics_xmrm.patch echo x - japanese_Wnn6.patch sed 's/^X//' >japanese_Wnn6.patch << 'END-of-japanese_Wnn6.patch' Xdiff -urN /usr/ports/japanese/Wnn6/Makefile japanese/Wnn6/Makefile X--- /usr/ports/japanese/Wnn6/Makefile Wed Apr 12 05:36:30 2000 X+++ japanese/Wnn6/Makefile Fri Apr 14 19:56:23 2000 X@@ -14,7 +14,7 @@ X MAINTAINER= taoka@FreeBSD.org X X IGNOREFILES= ${DISTFILES} X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X LIBDIR= ${PREFIX}/OMRONWnn6 X DISTDIR= ${MOUNT_PT}/fbsd X MOUNT_PT?= /cdrom END-of-japanese_Wnn6.patch echo x - japanese_tgif.patch sed 's/^X//' >japanese_tgif.patch << 'END-of-japanese_tgif.patch' Xdiff -urN /usr/ports/japanese/tgif/Makefile japanese/tgif/Makefile X--- /usr/ports/japanese/tgif/Makefile Thu Apr 13 19:18:28 2000 X+++ japanese/tgif/Makefile Fri Apr 14 19:56:46 2000 X@@ -16,7 +16,7 @@ X RUN_DEPENDS= tgif:${PORTSDIR}/graphics/tgif X X NO_BUILD= yes X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X USE_X_PREFIX= yes X X do-install: END-of-japanese_tgif.patch echo x - japanese_vfxdvi300.patch sed 's/^X//' >japanese_vfxdvi300.patch << 'END-of-japanese_vfxdvi300.patch' Xdiff -urN /usr/ports/japanese/vfxdvi300/Makefile japanese/vfxdvi300/Makefile X--- /usr/ports/japanese/vfxdvi300/Makefile Thu Apr 13 19:18:39 2000 X+++ japanese/vfxdvi300/Makefile Fri Apr 14 19:57:33 2000 X@@ -20,14 +20,14 @@ X 950923.02.Z \ X 951007.02.Z \ X 951109.04.Z X+DIST_SUBDIR= xdvi X X MAINTAINER= mita@jp.FreeBSD.org X X LIB_DEPENDS= VFlib2.24:${PORTSDIR}/japanese/vflib X RUN_DEPENDS= ${LOCALBASE}/lib/fonts/pk${RESOLUTION}:${PORTSDIR}/print/pkfonts${RESOLUTION} X X-WRKSRC= ${WRKDIR} X-DIST_SUBDIR= xdvi X+NO_WRKSUBDIR= yes X USE_IMAKE= yes X XMKMF= xmkmf X EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} END-of-japanese_vfxdvi300.patch echo x - japanese_xklock.patch sed 's/^X//' >japanese_xklock.patch << 'END-of-japanese_xklock.patch' Xdiff -urN /usr/ports/japanese/xklock/Makefile japanese/xklock/Makefile X--- /usr/ports/japanese/xklock/Makefile Thu Apr 13 19:18:57 2000 X+++ japanese/xklock/Makefile Fri Apr 14 19:57:57 2000 X@@ -20,7 +20,7 @@ X X LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm X X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X USE_X_PREFIX= yes X X pre-configure: END-of-japanese_xklock.patch echo x - japanese_yc.el.patch sed 's/^X//' >japanese_yc.el.patch << 'END-of-japanese_yc.el.patch' Xdiff -urN /usr/ports/japanese/yc.el/Makefile japanese/yc.el/Makefile X--- /usr/ports/japanese/yc.el/Makefile Thu Apr 13 19:19:00 2000 X+++ japanese/yc.el/Makefile Fri Apr 14 19:58:25 2000 X@@ -16,7 +16,6 @@ X X NO_BUILD= yes X NO_WRKSUBDIR= yes X-WRKSRC= ${WRKDIR} X X ELISPDIR= ${PREFIX}/share/emacs/site-lisp X XELISPDIR= ${PREFIX}/lib/xemacs/site-lisp END-of-japanese_yc.el.patch echo x - java_cos.patch sed 's/^X//' >java_cos.patch << 'END-of-java_cos.patch' Xdiff -urN /usr/ports/java/cos/Makefile java/cos/Makefile X--- /usr/ports/java/cos/Makefile Wed Apr 12 21:23:57 2000 X+++ java/cos/Makefile Fri Apr 14 19:58:49 2000 X@@ -17,7 +17,7 @@ X ${PREFIX}/bin/servletrunner:${PORTSDIR}/java/jsdk X X USE_ZIP= yes X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X JDK_VERSION= 1.1.8 X NO_BUILD= yes X RESTRICTED= "Special conditions apply for commercial use, see licence" END-of-java_cos.patch echo x - java_infobus.patch sed 's/^X//' >java_infobus.patch << 'END-of-java_infobus.patch' Xdiff -urN /usr/ports/java/infobus/Makefile java/infobus/Makefile X--- /usr/ports/java/infobus/Makefile Wed Apr 12 21:23:57 2000 X+++ java/infobus/Makefile Fri Apr 14 19:59:09 2000 X@@ -18,7 +18,7 @@ X X USE_ZIP= YES X X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X JDK_VERSION= 1.1.8 X NO_BUILD= yes X NO_CDROM= "See the license" END-of-java_infobus.patch echo x - java_jdk-tutorial.patch sed 's/^X//' >java_jdk-tutorial.patch << 'END-of-java_jdk-tutorial.patch' Xdiff -urN /usr/ports/java/jdk-tutorial/Makefile java/jdk-tutorial/Makefile X--- /usr/ports/java/jdk-tutorial/Makefile Wed Apr 12 21:24:01 2000 X+++ java/jdk-tutorial/Makefile Fri Apr 14 20:00:08 2000 X@@ -13,11 +13,10 @@ X X MAINTAINER= martti.kuparinen@ericsson.com X X-WRKSRC= ${WRKDIR} X+NO_WRKSUNDIR= yes X RESTRICTED= "This software is under license and export control." X NO_BUILD= yes X PLIST_SUB+= VERSION=${PORTVERSION} X-PKGMESSAGE= ${WRKDIR}/MESSAGE X X .include X END-of-java_jdk-tutorial.patch echo x - mail_majorcool.patch sed 's/^X//' >mail_majorcool.patch << 'END-of-mail_majorcool.patch' Xdiff -urN /usr/ports/mail/majorcool/Makefile mail/majorcool/Makefile X--- /usr/ports/mail/majorcool/Makefile Fri Apr 14 18:52:26 2000 X+++ mail/majorcool/Makefile Fri Apr 14 20:00:44 2000 X@@ -12,11 +12,11 @@ X X MAINTAINER= ports@FreeBSD.org X X+NO_WRKSUBDIR= yes X NO_BUILD= yes X NO_PACKAGE= "Too many questions" X IS_INTERACTIVE= yes X USE_PERL5= yes X-WRKSRC= ${WRKDIR} X X do-install: X ( cd ${WRKSRC}; ${SH} Configure ) END-of-mail_majorcool.patch echo x - misc_man.el.patch sed 's/^X//' >misc_man.el.patch << 'END-of-misc_man.el.patch' Xdiff -urN /usr/ports/misc/man.el/Makefile misc/man.el/Makefile X--- /usr/ports/misc/man.el/Makefile Tue Sep 7 04:40:53 1999 X+++ misc/man.el/Makefile Fri Apr 14 20:01:02 2000 X@@ -15,8 +15,8 @@ X X # If you use Japanese manuals, install japanese/man as well. X X+NO_WRKSUBDIR= yes X NO_BUILD= yes X-WRKSRC= ${WRKDIR} X X ELISPDIR= ${PREFIX}/share/emacs/site-lisp X SITEPKGDIR= ${PREFIX}/lib/xemacs/site-packages END-of-misc_man.el.patch echo x - net_archie.el.patch sed 's/^X//' >net_archie.el.patch << 'END-of-net_archie.el.patch' Xdiff -urN /usr/ports/net/archie.el/Makefile net/arche.el/Makefile X--- /usr/ports/net/archie.el/Makefile Mon Apr 10 20:56:00 2000 X+++ net/arche.el/Makefile Fri Apr 14 20:01:33 2000 X@@ -20,7 +20,6 @@ X X NO_WRKSUBDIR= yes X NO_BUILD= yes X-WRKSRC= ${WRKDIR} X X ELISPDIR= ${PREFIX}/share/emacs/site-lisp X XELISPDIR= ${PREFIX}/lib/xemacs/site-lisp END-of-net_archie.el.patch echo x - news_pgpmoose.patch sed 's/^X//' >news_pgpmoose.patch << 'END-of-news_pgpmoose.patch' Xdiff -urN /usr/ports/news/pgpmoose/Makefile news/pgpmoose/Makefile X--- /usr/ports/news/pgpmoose/Makefile Mon Apr 10 20:59:31 2000 X+++ news/pgpmoose/Makefile Fri Apr 14 20:01:58 2000 X@@ -20,7 +20,7 @@ X BIN1= pmapp pmcanon pmcheck pmnewsgroups \ X pmdaemon pmcancel X X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X X do-install: X .for i in ${BIN1} END-of-news_pgpmoose.patch echo x - palm_pilrc.patch sed 's/^X//' >palm_pilrc.patch << 'END-of-palm_pilrc.patch' Xdiff -urN /usr/ports/palm/pilrc/Makefile palm/pilrc/Makefile X--- /usr/ports/palm/pilrc/Makefile Fri Apr 14 18:55:03 2000 X+++ palm/pilrc/Makefile Fri Apr 14 20:02:31 2000 X@@ -17,7 +17,7 @@ X glib12.3:${PORTSDIR}/devel/glib12 X X USE_ZIP= YES X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= YES X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/pilrc ${WRKSRC}/pilrcui ${PREFIX}/bin END-of-palm_pilrc.patch echo x - www_hotjava.patch sed 's/^X//' >www_hotjava.patch << 'END-of-www_hotjava.patch' Xdiff -urN /usr/ports/www/hotjava/Makefile www/hotjava/Makefile X--- /usr/ports/www/hotjava/Makefile Mon Apr 10 21:05:05 2000 X+++ www/hotjava/Makefile Fri Apr 14 20:02:51 2000 X@@ -18,7 +18,7 @@ X X EXTRACT_ONLY= X X-WRKSRC= ${WRKDIR} X+NO_WRKSUBDIR= yes X JDK_VERSION= 1.1.8 X NO_BUILD= yes X NO_CDROM= "See the licence" END-of-www_hotjava.patch 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 Apr 14 11:10: 5 2000 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 EF2AF37BF2E for ; Fri, 14 Apr 2000 11:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA58706; Fri, 14 Apr 2000 11:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8424937BF3A for ; Fri, 14 Apr 2000 11:02:42 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA57770; Fri, 14 Apr 2000 11:02:42 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004141802.LAA57770@freefall.freebsd.org> Date: Fri, 14 Apr 2000 11:02:42 -0700 (PDT) From: david@usermode.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18010: ksame (kdegames-1.1.2) comes up with blank window. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18010 >Category: ports >Synopsis: ksame (kdegames-1.1.2) comes up with blank window. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 11:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: David Johnson >Release: 4.0-RELEASE >Organization: >Environment: FreeBSD weathertop 4.0-RELEASE FreeBSD 4.0-RELEASE #1: Fri Apr 15 10:58:12 PDT 2000 >Description: The game ksame, in the kdegames-1.1.2 package, comes up with a blank window. Everything seems to be working except the display. Poking around, it appears that ksame uses some gif files to display sprites with, and that qt-1.45 which it depends upon does not have gif support compiled in. Hard to say if this is a ksame problem or a qt problem. >How-To-Repeat: Run the program and observe :-) >Fix: Recompiling qt with gif support should solve the problem, or convert the images ksame uses to another format. >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 Apr 14 11:20: 7 2000 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 A3ADF37B883 for ; Fri, 14 Apr 2000 11:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA61489; Fri, 14 Apr 2000 11:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 11:20:03 -0700 (PDT) Message-Id: <200004141820.LAA61489@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/18010: ksame (kdegames-1.1.2) comes up with blank window. Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/18010; it has been noted by GNATS. From: Will Andrews To: david@usermode.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/18010: ksame (kdegames-1.1.2) comes up with blank window. Date: Fri, 14 Apr 2000 14:18:01 -0400 On Fri, Apr 14, 2000 at 11:02:42AM -0700, david@usermode.org wrote: > >Description: > The game ksame, in the kdegames-1.1.2 package, comes up with a blank window. > Everything seems to be working except the display. Poking around, it appears > that ksame uses some gif files to display sprites with, and that qt-1.45 > which it depends upon does not have gif support compiled in. > > Hard to say if this is a ksame problem or a qt problem. It's a ksame problem. GIF has a restrictive license, so Qt now only uses PNG (and other) image formats. > Recompiling qt with gif support should solve the problem, or convert the > images ksame uses to another format. Since I doubt the KDE group will release any further kde 1.1.x tarballs, I think you (and everyone else) is stuck with this problem. KDE2 is coming out soon, so you don't have to live with this for too long. May I close this PR pending the import of kdegames2? -- 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 Fri Apr 14 11:20: 8 2000 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 244EB37BF2E for ; Fri, 14 Apr 2000 11:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA61480; Fri, 14 Apr 2000 11:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (silvercube.silverpix.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id EE83037BED6; Fri, 14 Apr 2000 11:17:38 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id OAA02942; Fri, 14 Apr 2000 14:16:23 -0400 (EDT) Received: (from mi@localhost) by misha.privatelabs.com (8.9.3/8.9.3) id OAA79078; Fri, 14 Apr 2000 14:17:18 -0400 (EDT) (envelope-from mi) Message-Id: <200004141817.OAA79078@misha.privatelabs.com> Date: Fri, 14 Apr 2000 14:17:18 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@privatelabs.com To: FreeBSD-gnats-submit@freebsd.org Cc: bbraun@synack.net, vanilla@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18011: ipv6 support for the security/xinetd port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18011 >Category: ports >Synopsis: ipv6 support for the security/xinetd port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 11:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.0-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: The xinetd claims to support the ipv6, but there is a problem in xinetd/child.c, which prevents it from compiling on FreeBSD (others?). >How-To-Repeat: Add --with-inet6 to the CONFIGURE_ARGS and see the build bomb. >Fix: The following patch makes it compile (save it as /usr/ports/security/xinetd/patches/patch-v6): --- xinetd/child.c Wed Feb 23 02:46:34 2000 +++ xinetd/child.c Fri Apr 14 14:00:19 2000 @@ -322,3 +322,3 @@ #ifdef INET6 - if ( SC_ACCEPTS_CONNECTIONS( scp ) && !IN6_IS_ADDR_UNSPECIFIED(sinp) ) + if ( SC_ACCEPTS_CONNECTIONS( scp ) && !IN6_IS_ADDR_UNSPECIFIED(&(sinp->sin6_addr)) ) strx_print( INT_NULL, &name[ len ], namelen - len, But you also need the following to make the port build it (should be ifdef-ed, probably, because ipv6-ized xinetd will fail if there is no ipv6 in the kernel): +++ Makefile Fri Apr 14 12:55:58 2000 @@ -17,3 +17,3 @@ ALL_TARGET= build -CONFIGURE_ARGS= --with-loadavg --with-libwrap +CONFIGURE_ARGS= --with-loadavg --with-libwrap --with-inet6 >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 Apr 14 11:21:14 2000 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 C4C1937BF70; Fri, 14 Apr 2000 11:21:13 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA61629; Fri, 14 Apr 2000 11:21:13 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Fri, 14 Apr 2000 11:21:13 -0700 (PDT) From: Message-Id: <200004141821.LAA61629@freefall.freebsd.org> To: tkato@prontomail.ne.jp, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18008: Update port: patchkit for fixing broken comments Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: patchkit for fixing broken comments State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Sat Apr 15 03:19:32 JST 2000 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 Apr 14 11:41:27 2000 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 AE0D437B686; Fri, 14 Apr 2000 11:41:25 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA64718; Fri, 14 Apr 2000 11:41:25 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Fri, 14 Apr 2000 11:41:25 -0700 (PDT) From: Message-Id: <200004141841.LAA64718@freefall.freebsd.org> To: tkato@prontomail.ne.jp, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18009: Update port: patchkit for using NO_WRKSUBDIR Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: patchkit for using NO_WRKSUBDIR State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Sat Apr 15 03:40:35 JST 2000 State-Changed-Why: Committed, thanks! (Some had been already done by asami, FYI) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 11:56:26 2000 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 49D1937B5B0; Fri, 14 Apr 2000 11:56:25 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA66763; Fri, 14 Apr 2000 11:56:25 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Date: Fri, 14 Apr 2000 11:56:25 -0700 (PDT) From: Message-Id: <200004141856.LAA66763@freefall.freebsd.org> To: takamune@avrl.mei.co.jp, jmz@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17946: XFree86-4.0 with /usr/X11R6 containing a symbolic link Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: XFree86-4.0 with /usr/X11R6 containing a symbolic link State-Changed-From-To: open->closed State-Changed-By: jmz State-Changed-When: Fri Apr 14 11:55:54 PDT 2000 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 Apr 14 12: 0:10 2000 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 E78A937B6EC for ; Fri, 14 Apr 2000 12:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA67218; Fri, 14 Apr 2000 12:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (silvercube.silverpix.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id CB65B37B5FD; Fri, 14 Apr 2000 11:57:03 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id OAA03299; Fri, 14 Apr 2000 14:55:50 -0400 (EDT) Received: (from mi@localhost) by misha.privatelabs.com (8.9.3/8.9.3) id OAA79605; Fri, 14 Apr 2000 14:56:45 -0400 (EDT) (envelope-from mi) Message-Id: <200004141856.OAA79605@misha.privatelabs.com> Date: Fri, 14 Apr 2000 14:56:45 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: stb@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18013: running set@home with idprio Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18013 >Category: ports >Synopsis: running set@home with idprio >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 12:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.0-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: Currently, seti@home binary(ies) run nice-ly but they can still interfere with machine's main purpose(s). Using idprio may help reduce the interference. >How-To-Repeat: >Fix: --- files/setiathome.sh Tue May 18 18:40:34 1999 +++ files/setiathome.sh Fri Apr 14 14:56:06 2000 @@ -44,3 +44,3 @@ for i in ${seti_wrksuff}; do - su -m ${seti_user} -c \ + idprio 10 su -m ${seti_user} -c \ "(cd ${seti_wrkdir}/${i} && exec ${PREFIX}/bin/setiathome -email -nice ${seti_nice} >/dev/null &)" @@ -69,3 +69,3 @@ if [ "X${seti_dontlogin}" != "Xyes" ]; then - su -m ${seti_user} -c "cd ${seti_wrkdir} && ${PREFIX}/bin/setiathome -login" + idprio 10 su -m ${seti_user} -c "cd ${seti_wrkdir} && ${PREFIX}/bin/setiathome -login" 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 Fri Apr 14 14:50: 6 2000 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 3610937B69A for ; Fri, 14 Apr 2000 14:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA85716; Fri, 14 Apr 2000 14:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 0615237BE50 for ; Fri, 14 Apr 2000 14:45:09 -0700 (PDT) (envelope-from housley@thehousleys.net) Received: from baby.int.thehousleys.net (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.9.3/8.9.3) with ESMTP id RAA04698 for ; Fri, 14 Apr 2000 17:45:04 -0400 (EDT) Received: (from housley@localhost) by baby.int.thehousleys.net (8.9.3/8.9.3) id RAA01741; Fri, 14 Apr 2000 17:45:03 -0400 (EDT) Message-Id: <200004142145.RAA01741@baby.int.thehousleys.net> Date: Fri, 14 Apr 2000 17:45:03 -0400 (EDT) From: jim@thehousleys.net Reply-To: jim@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18015: New version of healthd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18015 >Category: ports >Synopsis: New version of healthd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 14:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James Housley >Release: FreeBSD 3.4-STABLE i386 >Organization: The Housleys dot Net >Environment: >Description: New version of healthd 0.4.1 >How-To-Repeat: >Fix: This version also fixed the pathes for buffer overflows. diff -ur healthd/Makefile healthd-0.4.1/Makefile --- healthd/Makefile Fri Apr 14 14:49:18 2000 +++ healthd-0.4.1/Makefile Fri Apr 14 17:39:59 2000 @@ -1,12 +1,12 @@ # New ports collection makefile for: healthd -# Date created: 15 November 1999 +# Date created: 14 April 2000 # Whom: jim@thehousleys.net # # $FreeBSD: ports/sysutils/healthd/Makefile,v 1.4 2000/04/09 19:07:48 cpiazza Exp $ # PORTNAME= healthd -PORTVERSION= 0.3 +PORTVERSION= 0.4.1 CATEGORIES= sysutils MASTER_SITES= http://healthd.thehousleys.net/ diff -ur healthd/files/md5 healthd-0.4.1/files/md5 --- healthd/files/md5 Mon Jan 24 12:57:27 2000 +++ healthd-0.4.1/files/md5 Fri Apr 14 17:40:22 2000 @@ -1 +1 @@ -MD5 (healthd-0.3.tar.gz) = 56b61b06f6b99ae0b7efc55f952828ac +MD5 (healthd-0.4.1.tar.gz) = e8536def55ef3bb6f7bc954fb9c1786b Only in healthd/patches: patch-aa Only in healthd/patches: patch-ab >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 Apr 14 15: 0:14 2000 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 BACE737B67A for ; Fri, 14 Apr 2000 15:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA86734; Fri, 14 Apr 2000 15:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 15:00:03 -0700 (PDT) Message-Id: <200004142200.PAA86734@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: James Housley Subject: Re: ports/17882: New version of healthd Reply-To: James Housley Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17882; it has been noted by GNATS. From: James Housley To: freebsd-gnats-submit@FreeBSD.org, jim@thehousleys.net Cc: Subject: Re: ports/17882: New version of healthd Date: Fri, 14 Apr 2000 17:50:47 -0400 Please close this pr it is superceeded by ports/18015 -- Unix is like a wigwam -- no Gates, no Windows, and an Apache inside. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 15: 0:14 2000 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 7248337B560 for ; Fri, 14 Apr 2000 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA86724; Fri, 14 Apr 2000 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 15:00:02 -0700 (PDT) Message-Id: <200004142200.PAA86724@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: James Housley Subject: Re: ports/17898: Patch to new version of healthd Reply-To: James Housley Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17898; it has been noted by GNATS. From: James Housley To: freebsd-gnats-submit@FreeBSD.org, housley@thehousleys.net Cc: Subject: Re: ports/17898: Patch to new version of healthd Date: Fri, 14 Apr 2000 17:50:41 -0400 Please close this pr it is superceeded by ports/18015 -- Unix is like a wigwam -- no Gates, no Windows, and an Apache inside. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 15:10: 5 2000 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 DE3FE37B7D8 for ; Fri, 14 Apr 2000 15:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA87516; Fri, 14 Apr 2000 15:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 15:10:02 -0700 (PDT) Message-Id: <200004142210.PAA87516@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Akinori -Aki- MUSHA" Subject: Re: ports/18000: All Netscape 4 try to reinstall X, XFree86-aoutlibs thankfully also broken. Reply-To: "Akinori -Aki- MUSHA" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/18000; it has been noted by GNATS. From: "Akinori -Aki- MUSHA" To: rorsten@ualberta.ca Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/18000: All Netscape 4 try to reinstall X, XFree86-aoutlibs thankfully also broken. Date: Sat, 15 Apr 2000 07:09:07 +0900 At Fri, 14 Apr 2000 00:41:41 -0700 (PDT), rorsten@ualberta.ca wrote: > Get and use the BSDi version of netscape instead of the FreeBSD version. Or the Linux version. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 15:13:18 2000 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 521C437B7DE; Fri, 14 Apr 2000 15:13:17 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA87740; Fri, 14 Apr 2000 15:13:17 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Fri, 14 Apr 2000 15:13:17 -0700 (PDT) From: Message-Id: <200004142213.PAA87740@freefall.freebsd.org> To: housley@thehousleys.net, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17898: Patch to new version of healthd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to new version of healthd State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Sat Apr 15 07:10:27 JST 2000 State-Changed-Why: At the originator's request. Superceded by ports/18015. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 15:13:55 2000 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 C7E5037B73E; Fri, 14 Apr 2000 15:13:53 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA87832; Fri, 14 Apr 2000 15:13:53 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Fri, 14 Apr 2000 15:13:53 -0700 (PDT) From: Message-Id: <200004142213.PAA87832@freefall.freebsd.org> To: jim@thehousleys.net, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17882: New version of healthd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New version of healthd State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Sat Apr 15 07:13:24 JST 2000 State-Changed-Why: At the originator's request. Superceded by ports/18015. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 16: 9:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 4A2FC37B7FA for ; Fri, 14 Apr 2000 16:09:35 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca7-28.ix.netcom.com [209.109.235.28]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id TAA30516 for ; Fri, 14 Apr 2000 19:08:59 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id QAA10249; Fri, 14 Apr 2000 16:08:49 -0700 (PDT) Date: Fri, 14 Apr 2000 16:08:49 -0700 (PDT) Message-Id: <200004142308.QAA10249@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ports@freebsd.org Subject: FYI: ports tree unfrozen From: asami@wcarchive.cdrom.com (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The ports tree is now back in business. I'll be fixing up kinks but if you find something suspicious, please let me know. Special thanks to mharo, cpiazza, knu and obrien who helped in converting the ports' Makefiles! (I should have sent this last night but I was too sleepy to even wait for this mail to come back to me....) -PW --- From: Satoshi Asami Subject: cvs commit: CVSROOT avail To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Date: Fri, 14 Apr 2000 06:43:21 -0700 (PDT) Message-Id: <200004141343.GAA01126@freefall.freebsd.org> asami 2000/04/14 06:43:21 PDT Modified files: . avail Log: I believe we have finished converting all ports. I'll fix whatever leaks that may remain over the next couple of days, so the ports tree is unfrozen now. Revision Changes Path 1.117 +2 -2 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 16:28:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id 77D3937C019 for ; Fri, 14 Apr 2000 16:28:42 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca7-28.ix.netcom.com [209.109.235.28]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id TAA20180; Fri, 14 Apr 2000 19:27:02 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id QAA10367; Fri, 14 Apr 2000 16:26:59 -0700 (PDT) To: Will Andrews Cc: John Reynolds , FreeBSD Ports Subject: Re: make index broken? References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> <14583.9279.731684.583301@whale.home-net> <20000414105346.E19141@argon.blackdawn.com> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 14 Apr 2000 16:26:58 -0700 In-Reply-To: Will Andrews's message of "Fri, 14 Apr 2000 10:53:47 -0400" Message-ID: Lines: 22 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Will Andrews * [ CC'd to asami-san ] Well, I'm on the ports list (and one of the two copies will be deleted by the filter anyway ;).... * Oh, pkg_version! I forgot all about that. Perhaps another approach needs to * be made towards INDEX if this is the case. Satoshi? You mean commit INDEX more often? I can do that, but I thought the current pace of once or twice per week would be enough for most people. * Hmm... according to CVS, the last commit to INDEX was April 3, so perhaps * there is something else broken. Satoshi? :> No, I just forgot to generate a new INDEX before the conversion started. I couldn't build another (good) one since then, and am still fixing the tree up so I'll commit a new one as soon as I'm finished. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 17:30:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail-ob.kamp.net (mail-ob.kamp.net [195.62.97.26]) by hub.freebsd.org (Postfix) with ESMTP id E7DC537B8B2 for ; Fri, 14 Apr 2000 17:30:35 -0700 (PDT) (envelope-from Joachim.Jaeckel@d.kamp.net) Received: from d.kamp.net (port-55.d.kamp.de [195.62.120.247]) by mail-ob.kamp.net (8.9.3/8.9.3) with ESMTP id CAA04474 for ; Sat, 15 Apr 2000 02:30:31 +0200 Message-ID: <38F7B841.91BAFF9E@d.kamp.net> Date: Sat, 15 Apr 2000 02:30:58 +0200 From: Joachim =?iso-8859-1?Q?J=E4ckel?= X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: gnustep-0.6.5 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I think that you should add a dependancy to the gcc-2.8.1 port to the gnustep-0.6.5 port. I had no look to use it with the FreeBSD gcc under my 4.0-STABLE. Also a fresh and clean 4.0-STABLE installation on another box was not able to run the /usr/ports/devel/gnustep/work/base/Testing/invocation* stuff. Beside that, it is no problem to run these tests, if you use the 2.8.1 Compiler-port (configure gnustep with "CC=gcc28 ./configure --prefix=/usr/local/GNUstep". Just for information... Bye, -- Joachim.Jaeckel@d.kamp.net -- http://home.kamp.net/home/joachim.jaeckel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 18:10: 6 2000 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 D2F9A37B8CF for ; Fri, 14 Apr 2000 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA04494; Fri, 14 Apr 2000 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 18:10:02 -0700 (PDT) Message-Id: <200004150110.SAA04494@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: SADA Kenji Subject: Re: ports/18000: All Netscape 4 try to reinstall X, XFree86-aoutlibs thankfully also broken. Reply-To: SADA Kenji Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/18000; it has been noted by GNATS. From: SADA Kenji To: rorsten@ualberta.ca Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/18000: All Netscape 4 try to reinstall X, XFree86-aoutlibs thankfully also broken. Date: Sat, 15 Apr 2000 10:00:18 +0900 In article <200004140741.AAA09841@freefall.freebsd.org> rorsten@ualberta.ca writes: >> >Synopsis: All Netscape 4 try to reinstall X, XFree86-aoutlibs thankfully also broken. The ports should try to install only X aoutlibs, not whole X. >> >Description: >> This will apply for any machine, I think. >> >> When you try to make install ports/www/netscape4*, it will try to >> install the aout version of X. On my machine, it fails dismally. Show us exact all messages you have gotten. >> >Fix: >> Get and use the BSDi version of netscape instead of the FreeBSD version. Now BSDi Netscapes are Elf'ened ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 19:10: 9 2000 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 45FFD37B734 for ; Fri, 14 Apr 2000 19:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA10439; Fri, 14 Apr 2000 19:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EE91A37B789 for ; Fri, 14 Apr 2000 19:06:38 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA10151; Fri, 14 Apr 2000 19:06:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004150206.TAA10151@freefall.freebsd.org> Date: Fri, 14 Apr 2000 19:06:39 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18017: Update port: graphics/xli Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18017 >Category: ports >Synopsis: Update port: graphics/xli >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 19:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.0-RELEASE i386 >Organization: >Environment: >Description: Update port: graphics/xli - Support LOCALBASE properly - Add WWW: line into pkg/DESCR >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/xli/Makefile graphics/xli/Makefile --- /usr/ports/graphics/xli/Makefile Sat Apr 15 00:25:48 2000 +++ graphics/xli/Makefile Sat Apr 15 00:34:43 2000 @@ -20,4 +20,7 @@ USE_IMAKE= yes MAN1= xli.1 xlito.1 +post-patch: + @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/Imakefile + .include diff -urN /usr/ports/graphics/xli/patches/patch-aa graphics/xli/patches/patch-aa --- /usr/ports/graphics/xli/patches/patch-aa Thu Feb 10 18:32:32 2000 +++ graphics/xli/patches/patch-aa Thu Apr 13 05:00:06 2000 @@ -1,13 +1,13 @@ --- Imakefile-- Wed Feb 9 09:23:32 2000 -+++ Imakefile Thu Feb 10 18:38:21 2000 ++++ Imakefile Thu Apr 13 00:59:16 2000 @@ -12,8 +12,8 @@ CCOPTIONS = -Aa -D_HPUX_SOURCE #endif -JPEG_INCLUDES = -JPEG_LDFLAGS = -+JPEG_INCLUDES = -I/usr/local/include -+JPEG_LDFLAGS = -L/usr/local/lib ++JPEG_INCLUDES = -I%%LOCALBASE%%/include ++JPEG_LDFLAGS = -L%%LOCALBASE%%/lib PNG_INCLUDES = PNG_LDFLAGS = diff -urN /usr/ports/graphics/xli/pkg/DESCR graphics/xli/pkg/DESCR --- /usr/ports/graphics/xli/pkg/DESCR Fri Nov 25 06:56:47 1994 +++ graphics/xli/pkg/DESCR Thu Apr 13 05:03:56 2000 @@ -1,4 +1,4 @@ -xli, xsetbg and xsetbg (the last two are symlinks to the first one) +xli, xlito and xsetbg (the last two are symlinks to the first one) display images on X11. xlito works with xloadimage to "mark" images. Take a look at the @@ -6,6 +6,8 @@ xloadimage if it's not there but I didn't include it in the packing list so it won't clobber an existing one if xloadimage is already installed. + +WWW: http://pantransit.reptiles.org/prog/index.html#xli - Satoshi asami@cs.berkeley.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 Fri Apr 14 19:10:17 2000 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 6E0E737B643 for ; Fri, 14 Apr 2000 19:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA10430; Fri, 14 Apr 2000 19:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 774FB37B885 for ; Fri, 14 Apr 2000 19:05:17 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA09985; Fri, 14 Apr 2000 19:05:17 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004150205.TAA09985@freefall.freebsd.org> Date: Fri, 14 Apr 2000 19:05:17 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18016: Update port: graphics/netpbm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18016 >Category: ports >Synopsis: Update port: graphics/netpbm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 19:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.0-RELEASE i386 >Organization: >Environment: >Description: - Remove functions provided by shhopt library from base system New file: patches/patch-bk patches/patch-bl patches/patch-bm patches/patch-bn patches/patch-bo patches/patch-bp patches/patch-bq >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/netpbm/patches/patch-aj graphics/netpbm/patches/patch-aj --- /usr/ports/graphics/netpbm/patches/patch-aj Fri Apr 7 19:00:24 2000 +++ graphics/netpbm/patches/patch-aj Sat Apr 15 08:00:00 2000 @@ -1,5 +1,5 @@ ---- pbmplus.h.orig Fri Mar 24 09:08:33 2000 -+++ pbmplus.h Sat Apr 1 10:32:36 2000 +--- pbmplus.h.orig Tue Apr 4 02:34:36 2000 ++++ pbmplus.h Sat Apr 15 08:00:00 2000 @@ -24,6 +24,9 @@ #include #endif @@ -28,7 +28,7 @@ /*#define RGB_DB "/usr/openwin/lib/rgb.txt"*/ #ifdef VMS #define RGB_DB "PBMplus_Dir:RGB.TXT" -@@ -117,11 +120,13 @@ +@@ -117,6 +120,7 @@ #ifndef VMS #include #endif @@ -36,9 +36,52 @@ extern int atoi(); extern void exit(); #ifndef __osf__ - extern long time(); +@@ -124,6 +128,7 @@ extern int write(); -+#endif #endif #endif ++#endif + + /* CONFIGURE: On most BSD systems, malloc() gets declared in stdlib.h, on + ** system V, it gets declared in malloc.h. On some systems, malloc.h +@@ -264,40 +269,6 @@ + int pm_readlittlelong ARGS(( FILE* in, long* lP )); + int pm_writelittlelong ARGS(( FILE* out, long l )); + +- +-/* Command line option parsing */ +-#include "pbmplus.h" +-/* Shhopt is Sverre Huseby's command line parsing package, which makes +- writing command parsing code quick and error free. Some of the Netpbm +- programs use it. +-*/ +-#include "shhopt.h" +- +-void pm_optParseOptions(int *argc, char *argv[], +- optStruct opt[], int allowNegNum); +-/* Use pm_optParseOptions instead of optParseOptions in order to use the +- shared Netpbm libraries +-*/ +- +-/* You can use OPTENTRY to assign a value to a dynamically or automatically +- allocated optStruct structure with minimal typing and easy readability. +- +- Here is an example: +- +- unsigned int option_def_index = 0; +- optStruct *option_def = malloc(100*sizeof(optStruct)); +- OPTENTRY('h', "help", OPT_FLAG, &help_flag, 0); +- OPTENTRY(0, "alphaout", OPT_STRING, &alpha_filename, 0); +-*/ +- +-#define OPTENTRY(shortvalue,longvalue,typevalue,outputvalue,flagvalue) {\ +- option_def[option_def_index].shortName = (shortvalue); \ +- option_def[option_def_index].longName = (longvalue); \ +- option_def[option_def_index].type = (typevalue); \ +- option_def[option_def_index].arg = (outputvalue); \ +- option_def[option_def_index].flags = (flagvalue); \ +- option_def[++option_def_index].type = OPT_END; \ +- } + + /* Compatibility stuff */ diff -urN /usr/ports/graphics/netpbm/patches/patch-bf graphics/netpbm/patches/patch-bf --- /usr/ports/graphics/netpbm/patches/patch-bf Sun Apr 9 15:47:32 2000 +++ graphics/netpbm/patches/patch-bf Sat Apr 15 08:00:00 2000 @@ -1,5 +1,5 @@ --- pnm/Makefile.orig Tue Apr 4 04:38:37 2000 -+++ pnm/Makefile Sat Apr 8 12:00:00 2000 ++++ pnm/Makefile Sat Apr 15 08:00:00 2000 @@ -32,6 +32,8 @@ NETPBMLIBS = $(LIBPNM) \ @@ -17,16 +17,20 @@ MANUALS1 = $(BINARIES) $(SCRIPTS) MANUALS3 = libpnm -@@ -104,44 +107,47 @@ +@@ -103,45 +106,49 @@ + PHONY: merge merge: $(MERGENAME) $(NOMERGEBINARIES) - tifftopnm pnmtotiff: %: %.o $(NETPBMLIBS) $(TIFFLIB_DIR)/libtiff.so +-tifftopnm pnmtotiff: %: %.o $(NETPBMLIBS) $(TIFFLIB_DIR)/libtiff.so - $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLIBS) -L$(TIFFLIB_DIR) -ltiff \ -+ $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLD) -lm -L$(TIFFLIB_DIR) -ltiff \ - $(JPEGLD) $(CDEBUG) +- $(JPEGLD) $(CDEBUG) ++tifftopnm: %: %.o $(NETPBMLIBS) $(TIFFLIB_DIR)/libtiff.so ++ $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLD) ../shhopt/libshhopt.a \ ++ -lm -L$(TIFFLIB_DIR) -ltiff $(JPEGLD) $(CDEBUG) - pnmtotiffcmyk: %: %.o $(NETPBMLIBS) $(TIFFLIB_DIR)/libtiff.so +-pnmtotiffcmyk: %: %.o $(NETPBMLIBS) $(TIFFLIB_DIR)/libtiff.so - $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLIBS) -lm -L$(TIFFLIB_DIR) -ltiff \ ++pnmtotiff pnmtotiffcmyk: %: %.o $(NETPBMLIBS) $(TIFFLIB_DIR)/libtiff.so + $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLD) -lm -L$(TIFFLIB_DIR) -ltiff \ $(JPEGLD) $(CDEBUG) @@ -47,7 +51,8 @@ jpegtopnm: %: %.o $(NETPBMLIBS) - $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLIBS) $(JPEGLD) -lm $(CDEBUG) -+ $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLD) $(JPEGLD) -lm $(CDEBUG) ++ $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLD) ../shhopt/libshhopt.a \ ++ $(JPEGLD) -lm $(CDEBUG) # Rule for objects. $(OBJECTS) $(LIBOBJECTS): %.o: %.c diff -urN /usr/ports/graphics/netpbm/patches/patch-bg graphics/netpbm/patches/patch-bg --- /usr/ports/graphics/netpbm/patches/patch-bg Sun Apr 9 15:47:33 2000 +++ graphics/netpbm/patches/patch-bg Sat Apr 15 08:00:00 2000 @@ -1,5 +1,5 @@ --- ppm/Makefile.orig Tue Apr 4 04:53:40 2000 -+++ ppm/Makefile Sat Apr 8 12:00:00 2000 ++++ ppm/Makefile Sat Apr 15 08:00:00 2000 @@ -19,8 +19,15 @@ endif @@ -16,11 +16,18 @@ PORTBINARIES = bmptoppm eyuvtoppm gouldtoppm hpcdtoppm ilbmtoppm imgtoppm \ mtvtoppm pcxtoppm pgmtoppm pi1toppm picttoppm \ pjtoppm \ -@@ -40,6 +47,7 @@ +@@ -34,12 +41,13 @@ + ppmtotga ppmtouil ppmtoxpm ppmtoyuv \ + ppmtoyuvsplit \ + qrttoppm rawtoppm rgb3toppm sldtoppm spctoppm \ +- sputoppm tgatoppm ximtoppm xpmtoppm xvminitoppm \ ++ sputoppm xpmtoppm xvminitoppm \ + yuvtoppm yuvsplittoppm + # We don't build vidtoppm by default, because it requires special libraries # and there is no known requirement for vidtoppm. -+NOMERGEBINARIES = ++NOMERGEBINARIES = tgatoppm ximtoppm ifneq ($(JPEGLIB_DIR), NONE) ifneq ($(JPEGHDR_DIR), NONE) NOMERGEBINARIES += ppmtojpeg @@ -41,7 +48,7 @@ .PHONY: all all: $(BINARIES) -@@ -72,29 +81,31 @@ +@@ -72,29 +81,35 @@ # Rules for plain programs. $(PORTBINARIES): %: %.o $(NETPBMLIBS) @@ -57,6 +64,10 @@ -ppmtojpeg: %: %.o $(NETPBMLIBS) - $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLIBS) \ - -L $(JPEGLIB_DIR) -ljpeg $(CDEBUG) ++tgatoppm ximtoppm: %: %.o $(NETPBMLIBS) ../shhopt/libshhopt.a ++ $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLD) ../shhopt/libshhopt.a \ ++ $(CDEBUG) ++ +ppmtojpeg: %: %.o $(NETPBMLIBS) ../shhopt/libshhopt.a + $(LD) $(LDFLAGS) -o $@ $@.o $(NETPBMLD) ../shhopt/libshhopt.a \ + $(JPEGLD) $(CDEBUG) diff -urN /usr/ports/graphics/netpbm/patches/patch-bk graphics/netpbm/patches/patch-bk --- /usr/ports/graphics/netpbm/patches/patch-bk Thu Jan 1 09:00:00 1970 +++ graphics/netpbm/patches/patch-bk Sat Apr 15 08:00:00 2000 @@ -0,0 +1,20 @@ +--- pbm/libpbm1.c.orig Tue Apr 4 02:32:49 2000 ++++ pbm/libpbm1.c Sat Apr 15 08:00:00 2000 +@@ -141,17 +141,6 @@ + } + + +-/* Wrapper for Shhopt, to get it into the shared library */ +- +-void +-pm_optParseOptions(int *argc, char *argv[], +- optStruct opt[], int allowNegNum) { +- +- optParseOptions(argc, argv, opt, allowNegNum); +- +-} +- +- + /* Log base two hacks. */ + + int diff -urN /usr/ports/graphics/netpbm/patches/patch-bl graphics/netpbm/patches/patch-bl --- /usr/ports/graphics/netpbm/patches/patch-bl Thu Jan 1 09:00:00 1970 +++ graphics/netpbm/patches/patch-bl Sat Apr 15 08:00:00 2000 @@ -0,0 +1,33 @@ +--- pnm/jpegtopnm.c.orig Tue Apr 4 03:09:33 2000 ++++ pnm/jpegtopnm.c Sat Apr 15 08:00:00 2000 +@@ -31,6 +31,7 @@ + #include + #include + #include ++#include "shhopt.h" + #include "pnm.h" + + #define EXIT_WARNING 2 /* Goes with EXIT_FAILURE, EXIT_SUCCESS in stdlib.h */ +@@ -100,12 +101,22 @@ + char ** const argv_parse = malloc(argc*sizeof(char *)); + /* argv, except we modify it as we parse */ + ++ /* Create the OptStruct structure describing our options */ ++ #define OPTENTRY(shortvalue,longvalue,typevalue,outputvalue,flagvalue) {\ ++ option_def[option_def_index].shortName = (shortvalue); \ ++ option_def[option_def_index].longName = (longvalue); \ ++ option_def[option_def_index].type = (typevalue); \ ++ option_def[option_def_index].arg = (outputvalue); \ ++ option_def[option_def_index].flags = (flagvalue); \ ++ option_def_index++; \ ++ } + option_def_index = 0; /* incremented by OPTENTRY */ + OPTENTRY(0, "verbose", OPT_FLAG, &cmdline_p->verbose, 0); + OPTENTRY(0, "dct", OPT_STRING, &dctval, 0); + OPTENTRY(0, "maxmemory", OPT_STRING, &maxmemory, 0); + OPTENTRY(0, "nosmooth", OPT_FLAG, &cmdline_p->nosmooth, 0); + OPTENTRY(0, "tracelevel", OPT_UINT, &cmdline_p->trace_level, 0); ++ option_def[option_def_index].type = OPT_END; + + /* Set the defaults */ + cmdline_p->verbose = FALSE; diff -urN /usr/ports/graphics/netpbm/patches/patch-bm graphics/netpbm/patches/patch-bm --- /usr/ports/graphics/netpbm/patches/patch-bm Thu Jan 1 09:00:00 1970 +++ graphics/netpbm/patches/patch-bm Sat Apr 15 08:00:00 2000 @@ -0,0 +1,30 @@ +--- pnm/tifftopnm.c.orig Tue Apr 4 03:10:27 2000 ++++ pnm/tifftopnm.c Sat Apr 15 08:00:00 2000 +@@ -35,6 +35,7 @@ + */ + + #include ++#include "shhopt.h" + #include "pnm.h" + #ifdef VMS + #ifdef SYSV +@@ -512,9 +513,19 @@ + */ + unsigned int option_def_index; + ++ /* Create the OptStruct structure describing our options */ ++ #define OPTENTRY(shortvalue,longvalue,typevalue,outputvalue,flagvalue) {\ ++ option_def[option_def_index].shortName = (shortvalue); \ ++ option_def[option_def_index].longName = (longvalue); \ ++ option_def[option_def_index].type = (typevalue); \ ++ option_def[option_def_index].arg = (outputvalue); \ ++ option_def[option_def_index].flags = (flagvalue); \ ++ option_def_index++; \ ++ } + option_def_index = 0; /* incremented by OPTENTRY */ + OPTENTRY('h', "headerdump", OPT_FLAG, &cmdline_p->headerdump, 0); + OPTENTRY(0, "alphaout", OPT_STRING, &cmdline_p->alpha_filename, 0); ++ option_def[option_def_index].type = OPT_END; + + /* Set the defaults */ + cmdline_p->headerdump = 0; diff -urN /usr/ports/graphics/netpbm/patches/patch-bn graphics/netpbm/patches/patch-bn --- /usr/ports/graphics/netpbm/patches/patch-bn Thu Jan 1 09:00:00 1970 +++ graphics/netpbm/patches/patch-bn Sat Apr 15 08:00:00 2000 @@ -0,0 +1,11 @@ +--- ppm/ppmmerge.c.orig Thu Mar 30 06:00:40 2000 ++++ ppm/ppmmerge.c Sat Apr 15 08:00:00 2000 +@@ -97,8 +97,6 @@ + TRY("sldtoppm", sldtoppm_main); + TRY("spctoppm", spctoppm_main); + TRY("sputoppm", sputoppm_main); +- TRY("tgatoppm", tgatoppm_main); +- TRY("ximtoppm", ximtoppm_main); + TRY("xpmtoppm", xpmtoppm_main); + TRY("xvminitoppm", xvminitoppm_main); + TRY("yuvtoppm", yuvtoppm_main); diff -urN /usr/ports/graphics/netpbm/patches/patch-bo graphics/netpbm/patches/patch-bo --- /usr/ports/graphics/netpbm/patches/patch-bo Thu Jan 1 09:00:00 1970 +++ graphics/netpbm/patches/patch-bo Sat Apr 15 08:00:00 2000 @@ -0,0 +1,43 @@ +--- ppm/ppmtojpeg.c.orig Tue Apr 4 02:33:00 2000 ++++ ppm/ppmtojpeg.c Sat Apr 15 08:00:00 2000 +@@ -29,6 +29,7 @@ + #include + #include + #include ++#include "shhopt.h" + #include "ppm.h" + + #define EXIT_WARNING 2 /* Goes with EXIT_SUCCESS, EXIT_FAILURE in stdlib.h */ +@@ -324,6 +325,15 @@ + char ** const argv_parse = malloc(argc*sizeof(char *)); + /* argv, except we modify it as we parse */ + ++ /* Create the OptStruct structure describing our options */ ++ #define OPTENTRY(shortvalue,longvalue,typevalue,outputvalue,flagvalue) {\ ++ option_def[option_def_index].shortName = (shortvalue); \ ++ option_def[option_def_index].longName = (longvalue); \ ++ option_def[option_def_index].type = (typevalue); \ ++ option_def[option_def_index].arg = (outputvalue); \ ++ option_def[option_def_index].flags = (flagvalue); \ ++ option_def_index++; \ ++ } + option_def_index = 0; /* incremented by OPTENTRY */ + OPTENTRY(0, "verbose", OPT_FLAG, &cmdline_p->verbose, 0); + OPTENTRY(0, "quality", OPT_UINT, &cmdline_p->quality, 0); +@@ -343,6 +353,7 @@ + OPTENTRY(0, "optimize", OPT_FLAG, &cmdline_p->optimize, 0); + OPTENTRY(0, "optimise", OPT_FLAG, &cmdline_p->optimize, 0); + OPTENTRY(0, "restart", OPT_STRING, &restart, 0); ++ option_def[option_def_index].type = OPT_END; + + /* Set the defaults */ + cmdline_p->verbose = FALSE; +@@ -366,7 +377,7 @@ + argc_parse = argc; + for (i=0; i < argc; i++) argv_parse[i] = argv[i]; + +- pm_optParseOptions(&argc_parse, argv_parse, option_def, 0); ++ optParseOptions(&argc_parse, argv_parse, option_def, 0); + /* Uses and sets argc_parse, argv_parse and all of *cmdline_p. */ + + if (argc_parse - 1 == 0) diff -urN /usr/ports/graphics/netpbm/patches/patch-bp graphics/netpbm/patches/patch-bp --- /usr/ports/graphics/netpbm/patches/patch-bp Thu Jan 1 09:00:00 1970 +++ graphics/netpbm/patches/patch-bp Sat Apr 15 08:00:00 2000 @@ -0,0 +1,38 @@ +--- ppm/tgatoppm.c.orig Tue Apr 4 03:08:32 2000 ++++ ppm/tgatoppm.c Sat Apr 15 08:00:00 2000 +@@ -13,6 +13,7 @@ + */ + + #include ++#include "shhopt.h" + #include "ppm.h" + #include "pgm.h" + #include "tga.h" +@@ -431,16 +432,26 @@ + */ + unsigned int option_def_index; + ++ /* Create the OptStruct structure describing our options */ ++ #define OPTENTRY(shortvalue,longvalue,typevalue,outputvalue,flagvalue) {\ ++ option_def[option_def_index].shortName = (shortvalue); \ ++ option_def[option_def_index].longName = (longvalue); \ ++ option_def[option_def_index].type = (typevalue); \ ++ option_def[option_def_index].arg = (outputvalue); \ ++ option_def[option_def_index].flags = (flagvalue); \ ++ option_def_index++; \ ++ } + option_def_index = 0; /* incremented by OPTENTRY */ + OPTENTRY(0, "headerdump", OPT_FLAG, &cmdline_p->headerdump, 0); + OPTENTRY('d', "debug", OPT_FLAG, &cmdline_p->headerdump, 0); + OPTENTRY(0, "alphaout", OPT_STRING, &cmdline_p->alpha_filename, 0); ++ option_def[option_def_index].type = OPT_END; + + /* Set the defaults */ + cmdline_p->headerdump = 0; + cmdline_p->alpha_filename = NULL; + +- pm_optParseOptions(&argc, argv, option_def, 0); ++ optParseOptions(&argc, argv, option_def, 0); + /* Uses and sets argc, argv, and all of *cmdline_p. */ + + if (argc - 1 == 0) diff -urN /usr/ports/graphics/netpbm/patches/patch-bq graphics/netpbm/patches/patch-bq --- /usr/ports/graphics/netpbm/patches/patch-bq Thu Jan 1 09:00:00 1970 +++ graphics/netpbm/patches/patch-bq Sat Apr 15 08:00:00 2000 @@ -0,0 +1,35 @@ +--- ppm/ximtoppm.c.orig Tue Apr 4 03:09:06 2000 ++++ ppm/ximtoppm.c Sat Apr 15 08:00:00 2000 +@@ -11,6 +11,7 @@ + */ + + #include ++#include "shhopt.h" + #include "ppm.h" + #include "xim.h" + +@@ -418,13 +419,23 @@ + */ + unsigned int option_def_index; + ++ /* Create the OptStruct structure describing our options */ ++ #define OPTENTRY(shortvalue,longvalue,typevalue,outputvalue,flagvalue) {\ ++ option_def[option_def_index].shortName = (shortvalue); \ ++ option_def[option_def_index].longName = (longvalue); \ ++ option_def[option_def_index].type = (typevalue); \ ++ option_def[option_def_index].arg = (outputvalue); \ ++ option_def[option_def_index].flags = (flagvalue); \ ++ option_def_index++; \ ++ } + option_def_index = 0; /* incremented by OPTENTRY */ + OPTENTRY(0, "alphaout", OPT_STRING, &cmdline_p->alpha_filename, 0); ++ option_def[option_def_index].type = OPT_END; + + /* Set the defaults */ + cmdline_p->alpha_filename = NULL; + +- pm_optParseOptions(&argc, argv, option_def, 0); ++ optParseOptions(&argc, argv, option_def, 0); + /* Uses and sets argc, argv, and all of *cmdline_p. */ + + if (argc - 1 == 0) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 20:41:54 2000 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 874A637B56B; Fri, 14 Apr 2000 20:41:53 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA18525; Fri, 14 Apr 2000 20:41:52 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Fri, 14 Apr 2000 20:41:52 -0700 (PDT) From: Message-Id: <200004150341.UAA18525@freefall.freebsd.org> To: david@usermode.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18010: ksame (kdegames-1.1.2) comes up with blank window. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ksame (kdegames-1.1.2) comes up with blank window. State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Fri Apr 14 20:41:12 PDT 2000 State-Changed-Why: Originator agreed that it would be best to wait until KDE2 before inquiring into this problem (which probably has already been fixed in KDE2's games and libraries). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 22:20: 4 2000 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 B31B037B862 for ; Fri, 14 Apr 2000 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 WAA27029; Fri, 14 Apr 2000 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E5C537B55F for ; Fri, 14 Apr 2000 22:19:09 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA26943; Fri, 14 Apr 2000 22:19:09 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004150519.WAA26943@freefall.freebsd.org> Date: Fri, 14 Apr 2000 22:19:09 -0700 (PDT) From: dennisjun@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18018: /usr/ports/graphics/mtv doesn't exist on the servers Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18018 >Category: ports >Synopsis: /usr/ports/graphics/mtv doesn't exist on the servers >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 14 22:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dennis Jun >Release: 4.0 STABLE >Organization: >Environment: FreeBSD fred 4.0-STABLE FreeBSD 4.0-STABLE #13: Thu Apr 13 16:04:23 EDT 2000 cappy@fred:/usr/src/sys/compile/FRED i386 >Description: I cvsuped the lastest ports collection, but when I tried to make mtv, it said: >How-To-Repeat: cvsup port-supfile cd /usr/port/graphics/mtv make >Fix: >Release-Note: >Audit-Trail: >Unformatted: >> mtv-1.1.0.20.tar.gz doesn't seem to exist on this system. >> Attempting to fetch from ftp://ftp.mpegtv.com/pub/mpeg/mpegtv/player/x86-unknown-linux-glibc/packages/TGZ/. fetch: pub/mpeg/mpegtv/player/x86-unknown-linux-glibc/packages/TGZ/mtv-1.1.0.20.tar.gz: cannot get remote modification time fetch: ftp://ftp.mpegtv.com/pub/mpeg/mpegtv/player/x86-unknown-linux-glibc/packages/TGZ/mtv-1.1.0.20.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: pub/FreeBSD/ports/distfiles/mtv-1.1.0.20.tar.gz: cannot get remote modification time fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/mtv-1.1.0.20.tar.gz: FTP error: fetch: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 22:22: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cx587235-a.chnd1.az.home.com (cx587235-a.chnd1.az.home.com [24.11.88.170]) by hub.freebsd.org (Postfix) with ESMTP id 3DE4437B652 for ; Fri, 14 Apr 2000 22:21:53 -0700 (PDT) (envelope-from jjreynold@home.com) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.9.3/8.9.3) with ESMTP id WAA01266; Fri, 14 Apr 2000 22:20:40 -0700 (MST) (envelope-from jjreynold@home.com) Received: (from jjreynold@localhost) by whale.home-net (8.9.3/8.9.3) id WAA34719; Fri, 14 Apr 2000 22:20:40 -0700 (MST) (envelope-from jjreynold@home.com) From: John Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14583.64551.739002.847702@whale.home-net> Date: Fri, 14 Apr 2000 22:20:39 -0700 (MST) To: Kent Stewart Cc: John Reynolds , Will Andrews , ports@FreeBSD.ORG Subject: Re: make index broken? In-Reply-To: <38F7523F.1D1D6443@3-cities.com> References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> <14583.9279.731684.583301@whale.home-net> <38F7523F.1D1D6443@3-cities.com> X-Mailer: VM 6.73 under Emacs 20.6.1 Cc: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ On Friday, April 14, Kent Stewart wrote: ] > > I wonder if something is out of date such as your bsd.port makefiles. > I have been cvsup'ing right along with the changes and can still make > the INDEX. > Hmmm ... beats me ... root@whale [/usr/ports/Mk]<18># grep \$FreeBSD *.mk bsd.port.mk:# $FreeBSD: ports/Mk/bsd.port.mk,v 1.335 2000/04/11 21:38:02 asami Exp $ bsd.port.post.mk:# $FreeBSD: ports/Mk/bsd.port.post.mk,v 1.3 1999/08/25 04:40:21 obrien Exp $ bsd.port.pre.mk:# $FreeBSD: ports/Mk/bsd.port.pre.mk,v 1.3 1999/08/25 04:40:21 obrien Exp $ bsd.port.subdir.mk:# $FreeBSD: ports/Mk/bsd.port.subdir.mk,v 1.36 2000/03/22 22:41:05 joe Exp $ Those are the versions of the .mk files in my Mk directory. Do they differ from yours? This weekend I will try and debug it further. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jjreynold@home.com FreeBSD 3.4-STABLE. FreeBSD: The Power to Serve. http://members.home.com/jjreynold/ 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 Fri Apr 14 22:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 8AC6737B788 for ; Fri, 14 Apr 2000 22:40:00 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id WAA11887; Fri, 14 Apr 2000 22:39:54 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id AB95818B9; Sat, 15 Apr 2000 01:39:40 -0400 (EDT) Date: Sat, 15 Apr 2000 01:39:38 -0400 From: Will Andrews To: John Reynolds Cc: Kent Stewart , Will Andrews , ports@FreeBSD.ORG Subject: Re: make index broken? Message-ID: <20000415013938.C33593@argon.blackdawn.com> References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> <14583.9279.731684.583301@whale.home-net> <38F7523F.1D1D6443@3-cities.com> <14583.64551.739002.847702@whale.home-net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <14583.64551.739002.847702@whale.home-net>; from jjreynold@home.com on Fri, Apr 14, 2000 at 10:20:39PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Apr 14, 2000 at 10:20:39PM -0700, John Reynolds wrote: > root@whale [/usr/ports/Mk]<18># grep \$FreeBSD *.mk > bsd.port.mk:# $FreeBSD: ports/Mk/bsd.port.mk,v 1.335 2000/04/11 21:38:02 asami Exp $ > bsd.port.post.mk:# $FreeBSD: ports/Mk/bsd.port.post.mk,v 1.3 1999/08/25 04:40:21 obrien Exp $ > bsd.port.pre.mk:# $FreeBSD: ports/Mk/bsd.port.pre.mk,v 1.3 1999/08/25 04:40:21 obrien Exp $ > bsd.port.subdir.mk:# $FreeBSD: ports/Mk/bsd.port.subdir.mk,v 1.36 2000/03/22 22:41:05 joe Exp $ > > Those are the versions of the .mk files in my Mk directory. Do they differ from > yours? Nope. > This weekend I will try and debug it further. I just tried it now, and it failed. Looking into it, it appeared the last port which was successfully added to it was zh-pine, of chinese/pine4 fame. I looked in chinese/rxvt, the next port, and bingo.. an unresolved conflict, caused by cvs not knowing how to merge in changes. I got further problems, but I suspect after I finish resolving all the conflicts in my ports tree, it ought to work. :) -- 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 Fri Apr 14 22:45:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cx587235-a.chnd1.az.home.com (cx587235-a.chnd1.az.home.com [24.11.88.170]) by hub.freebsd.org (Postfix) with ESMTP id 3DE8237B87A for ; Fri, 14 Apr 2000 22:45:14 -0700 (PDT) (envelope-from jjreynold@home.com) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.9.3/8.9.3) with ESMTP id WAA01367; Fri, 14 Apr 2000 22:45:09 -0700 (MST) (envelope-from jjreynold@home.com) Received: (from jjreynold@localhost) by whale.home-net (8.9.3/8.9.3) id WAA78462; Fri, 14 Apr 2000 22:45:08 -0700 (MST) (envelope-from jjreynold@home.com) From: John Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14584.484.247560.648114@whale.home-net> Date: Fri, 14 Apr 2000 22:45:08 -0700 (MST) To: Will Andrews Cc: John Reynolds , Kent Stewart , ports@FreeBSD.ORG Subject: Re: make index broken? In-Reply-To: <20000415013938.C33593@argon.blackdawn.com> References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> <14583.9279.731684.583301@whale.home-net> <38F7523F.1D1D6443@3-cities.com> <14583.64551.739002.847702@whale.home-net> <20000415013938.C33593@argon.blackdawn.com> X-Mailer: VM 6.73 under Emacs 20.6.1 Cc: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ On Saturday, April 15, Will Andrews wrote: ] > > Nope. > > I just tried it now, and it failed. Looking into it, it appeared the last > port which was successfully added to it was zh-pine, of chinese/pine4 fame. > I looked in chinese/rxvt, the next port, and bingo.. an unresolved > conflict, caused by cvs not knowing how to merge in changes. > > I got further problems, but I suspect after I finish resolving all the > conflicts in my ports tree, it ought to work. :) I did some debugging too. I'm CVSuping the ports tree as we speak, but my manual run of "make describe" in each port directory yielded the following: japanese: ===> pine make: don't know how to make describe. Stop *** Error code 2 Stop. ===> cryptix-jce cryptix-jce-: You need to define PORTNAME and PORTVERSION instead of PKGNAME. *** Error code 1 Stop. *** Error code 1 ===> perl5 perl-: You need to define PORTNAME and PORTVERSION instead of PKGNAME. *** Error code 1 Stop. *** Error code 1 Stop. ===> gtkicq make: don't know how to make describe. Stop *** Error code 2 Stop. Some of these might go away with this latest CVSup (the Makefiles are being revised like crazy again ....). But in the directories where it said "don't know how to make describe" there was no Makefile for those ports. Period. I don't know if this is on purpose (as in a "retired port") or what ... Will report again after I finish the CVSup and try the sucker again. -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jjreynold@home.com FreeBSD 3.4-STABLE. FreeBSD: The Power to Serve. http://members.home.com/jjreynold/ 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 Fri Apr 14 23: 9:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cx587235-a.chnd1.az.home.com (cx587235-a.chnd1.az.home.com [24.11.88.170]) by hub.freebsd.org (Postfix) with ESMTP id 8D3D637B5C3 for ; Fri, 14 Apr 2000 23:09:19 -0700 (PDT) (envelope-from jjreynold@home.com) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.9.3/8.9.3) with ESMTP id XAA01431; Fri, 14 Apr 2000 23:09:15 -0700 (MST) (envelope-from jjreynold@home.com) Received: (from jjreynold@localhost) by whale.home-net (8.9.3/8.9.3) id XAA24091; Fri, 14 Apr 2000 23:09:15 -0700 (MST) (envelope-from jjreynold@home.com) From: John Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14584.1930.965661.415770@whale.home-net> Date: Fri, 14 Apr 2000 23:09:14 -0700 (MST) To: Will Andrews Cc: Kent Stewart , ports@FreeBSD.ORG Subject: Re: make index broken? In-Reply-To: <20000415013938.C33593@argon.blackdawn.com> References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> <14583.9279.731684.583301@whale.home-net> <38F7523F.1D1D6443@3-cities.com> <14583.64551.739002.847702@whale.home-net> <20000415013938.C33593@argon.blackdawn.com> X-Mailer: VM 6.73 under Emacs 20.6.1 Cc: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org OK. Now after a fresh CVSup (minutes ago) a manual "make describe" in each directory yields only one error: ===> gtkicq make: don't know how to make describe. Stop *** Error code 2 Stop. in net/gtkicq There is no Makefile. The CVS web interface says that this port's Makefile is in the Attic. But the comment in the Makefile tends to show that this was done on purpose. What is the correct solution here? -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jjreynold@home.com FreeBSD 3.4-STABLE. FreeBSD: The Power to Serve. http://members.home.com/jjreynold/ 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 Fri Apr 14 23:30: 6 2000 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 B45D137B652 for ; Fri, 14 Apr 2000 23:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA35882; Fri, 14 Apr 2000 23:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 14 Apr 2000 23:30:02 -0700 (PDT) Message-Id: <200004150630.XAA35882@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Kent Stewart Subject: Re: ports/18018: /usr/ports/graphics/mtv doesn't exist on the servers Reply-To: Kent Stewart Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/18018; it has been noted by GNATS. From: Kent Stewart To: dennisjun@yahoo.com Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/18018: /usr/ports/graphics/mtv doesn't exist on the servers Date: Fri, 14 Apr 2000 23:21:01 -0700 dennisjun@yahoo.com wrote: > > >Number: 18018 > >Category: ports > >Synopsis: /usr/ports/graphics/mtv doesn't exist on the servers > >Confidential: no > >Severity: critical > >Priority: high > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Fri Apr 14 22:20:01 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: Dennis Jun > >Release: 4.0 STABLE > >Organization: > >Environment: > FreeBSD fred 4.0-STABLE FreeBSD 4.0-STABLE #13: Thu Apr 13 16:04:23 EDT 2000 cappy@fred:/usr/src/sys/compile/FRED i386 > >Description: > I cvsuped the lastest ports collection, but when I tried to make mtv, it said: > >How-To-Repeat: > cvsup port-supfile > > cd /usr/port/graphics/mtv > make > > >Fix: > > >Release-Note: > >Audit-Trail: > >Unformatted: > >> mtv-1.1.0.20.tar.gz doesn't seem to exist on this system. > >> Attempting to fetch from ftp://ftp.mpegtv.com/pub/mpeg/mpegtv/player/x86-unknown-linux-glibc/packages/TGZ/. > fetch: pub/mpeg/mpegtv/player/x86-unknown-linux-glibc/packages/TGZ/mtv-1.1.0.20.tar.gz: cannot get remote modification time > fetch: ftp://ftp.mpegtv.com/pub/mpeg/mpegtv/player/x86-unknown-linux-glibc/packages/TGZ/mtv-1.1.0.20.tar.gz: FTP error: > fetch: File unavailable (e.g., file not found, no access) > >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > fetch: pub/FreeBSD/ports/distfiles/mtv-1.1.0.20.tar.gz: cannot get remote modification time > fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/mtv-1.1.0.20.tar.gz: FTP error: > fetch: File unavailable (e.g., file not found, no access) > >> Couldn't fetch it - please try to retrieve this > >> port manually into /usr/ports/distfiles/ and try again. > *** Error code 1 > It is on the first server. I see libSDLx11.so.tar.gz 70 Kb Wed Apr 07 00:00:00 1999 Unix Tape Archive mtv-1.1.1.0.tar.gz 394 Kb Wed Apr 05 10:59:00 2000 Unix Tape Archive However, it isn't in the distfiles on FreeBSD. Kent > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- Kent Stewart Richland, WA mailto:kstewart@3-cities.com http://www.3-cities.com/~kstewart/index.html FreeBSD News http://daily.daemonnews.org/ SETI(Search for Extraterrestrial Intelligence) @ HOME http://setiathome.ssl.berkeley.edu/ Hunting Archibald Stewart, b 1802 in Ballymena, Antrim Co., NIR http://www.3-cities.com/~kstewart/genealogy/archibald_stewart.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 23:42:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 6519F37B510 for ; Fri, 14 Apr 2000 23:42:52 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (pc343042.tokyo.jcom.ne.jp [203.140.143.42]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 03/13/00) with ESMTP id PAA22338 for ; Sat, 15 Apr 2000 15:42:49 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id PAA22214; Sat, 15 Apr 2000 15:42:18 +0900 (JST) Date: Sat, 15 Apr 2000 15:42:16 +0900 Message-ID: <86vh1jeugn.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: freebsd-ports@freebsd.org Subject: Order of CATEGORIES User-Agent: Wanderlust/1.1.1 (Purple Rain) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've found many elisp ports list their categories like "editors elisp" in that order. But the Handbook says you should put more-specific ones forward. Thus I assume they should be "elisp editors" in this order, shouldn't they? -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Apr 14 23:46:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 46F6237B672 for ; Fri, 14 Apr 2000 23:46:14 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca7-28.ix.netcom.com [209.109.235.28]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id CAA20878; Sat, 15 Apr 2000 02:46:09 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id XAA11990; Fri, 14 Apr 2000 23:46:06 -0700 (PDT) Date: Fri, 14 Apr 2000 23:46:06 -0700 (PDT) Message-Id: <200004150646.XAA11990@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: jjreynold@home.com Cc: andrews@TECHNOLOGIST.COM, kstewart@3-cities.com, ports@FreeBSD.ORG In-reply-to: <14584.1930.965661.415770@whale.home-net> (message from John Reynolds on Fri, 14 Apr 2000 23:09:14 -0700 (MST)) Subject: Re: make index broken? From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> <14583.9279.731684.583301@whale.home-net> <38F7523F.1D1D6443@3-cities.com> <14583.64551.739002.847702@whale.home-net> <20000415013938.C33593@argon.blackdawn.com> <14584.1930.965661.415770@whale.home-net> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * in net/gtkicq * * There is no Makefile. The CVS web interface says that this port's Makefile is * in the Attic. We forgot to remove it from net/Makefile when the port was removed. Thanks for catching it! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 0:59: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cx587235-a.chnd1.az.home.com (cx587235-a.chnd1.az.home.com [24.11.88.170]) by hub.freebsd.org (Postfix) with ESMTP id 0FC2637B64E for ; Sat, 15 Apr 2000 00:59:08 -0700 (PDT) (envelope-from jjreynold@home.com) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.9.3/8.9.3) with ESMTP id AAA01688 for ; Sat, 15 Apr 2000 00:59:06 -0700 (MST) (envelope-from jjreynold@home.com) Received: (from jjreynold@localhost) by whale.home-net (8.9.3/8.9.3) id AAA98843; Sat, 15 Apr 2000 00:59:06 -0700 (MST) (envelope-from jjreynold@home.com) From: John Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14584.8522.108921.405664@whale.home-net> Date: Sat, 15 Apr 2000 00:59:06 -0700 (MST) To: ports@freebsd.org Subject: FIXED Re: make index broken? In-Reply-To: References: <14582.44973.654107.980182@whale.home-net> <20000414065027.B19141@argon.blackdawn.com> <14583.9279.731684.583301@whale.home-net> <20000414105346.E19141@argon.blackdawn.com> X-Mailer: VM 6.73 under Emacs 20.6.1 Cc: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org make index Now works properly. Thanks for the quick commit :) -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jjreynold@home.com FreeBSD 3.4-STABLE. FreeBSD: The Power to Serve. http://members.home.com/jjreynold/ 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 Sat Apr 15 2:49: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailgw1.be.to (mailgw1.be.to [210.235.212.5]) by hub.freebsd.org (Postfix) with ESMTP id 2235B37BF97 for ; Sat, 15 Apr 2000 02:48:56 -0700 (PDT) (envelope-from okazaki@be.to) Received: from mail1.be.to (www.be.to [210.235.212.3]) by mailgw1.be.to (8.9.3+3.2W/BETO.2.1-2000032215000035) with ESMTP id SAA29475 for ; Sat, 15 Apr 2000 18:48:51 +0900 Received: from acidrain (ppp10-Mobara1.mtci.ne.jp [210.172.1.212]) by mail1.be.to (8.8.8+3.0Wbeta13/BETO.2.0-1999110714000000) with SMTP id SAA27941 for ; Sat, 15 Apr 2000 18:48:45 +0900 Received: (qmail 339 invoked from network); 15 Apr 2000 09:47:21 -0000 Received: from localhost (HELO acidrain.localnet) (127.0.0.1) by localhost with SMTP; 15 Apr 2000 09:47:21 -0000 Date: Sat, 15 Apr 2000 18:47:19 +0900 Message-ID: <86r9c78zmg.wl@dolphin.be.to> From: OKAZAKI Tetsurou To: knu@idaemons.org Cc: freebsd-ports@freebsd.org Subject: Re: Order of CATEGORIES In-Reply-To: In your message of "Sat, 15 Apr 2000 15:42:16 +0900" <86vh1jeugn.wl@archon.local.idaemons.org> References: <86vh1jeugn.wl@archon.local.idaemons.org> User-Agent: Wanderlust/1.1.1 (Purple Rain) REMI/1.14.1 (=?ISO-8859-4?Q?Mus?= =?ISO-8859-4?Q?higawa=F2sugi?=) Chao/1.14.1 (=?ISO-8859-4?Q?Rokujiz=F2?=) APEL/10.2 Emacs/20.6 (i386--freebsd) MULE/4.0 (HANANOEN) Organization: Unknown MIME-Version: 1.0 (generated by REMI 1.14.1 - =?ISO-8859-4?Q?=22Mushigawa=F2?= =?ISO-8859-4?Q?sugi=22?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In the message <86vh1jeugn.wl@archon.local.idaemons.org> "Akinori -Aki- MUSHA" wrote: > I've found many elisp ports list their categories like "editors elisp" > in that order. But the Handbook says you should put more-specific > ones forward. > Thus I assume they should be "elisp editors" in this order, shouldn't > they? But "elisp" is a virtual category. The Handbook says: 4.4.4.5. CATEGORIES ... This list also determines where in the ports tree the port is imported. If you put more than one category here, it is assumed that the port files will be put in the subdirectory with the name in the first category. See the categories section for more discussion about how to pick the right categories. -- Tetsurou To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 3:16:37 2000 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 C395E37B613 for ; Sat, 15 Apr 2000 03:16:06 -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 MAA10274; Sat, 15 Apr 2000 12:16:05 +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 MAA01479; Sat, 15 Apr 2000 12:14:01 +0200 (CEST) (envelope-from wosch) Date: Sat, 15 Apr 2000 12:14:01 +0200 (CEST) Message-Id: <200004151014.MAA01479@paula.panke.de.freebsd.org> From: Wolfram Schneider To: ports@freebsd.org Subject: New ports added/updated last two weeks Reply-To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Introduction ------------ The FreeBSD Ports Collection offers a simple way for users and administrators to install applications. Each "port" listed here contains any patches necessary to make the original application source code compile and run on FreeBSD. Installing an application is as simple as downloading the port, unpacking it and typing make in the port directory. The Makefile automatically fetches the application source code, either from a local disk or via ftp, unpacks it on your system, applies the patches, and compiles. If all goes well, simply type make install to install the application. For more information about using ports, see the ports collection http://www.freebsd.org/handbook/ports.html and http://www.freebsd.org/ports/ There are currently 3200 ports in the FreeBSD Ports Collection. New ports added last two weeks ------------------------------ Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== gramofile-1.6 Audio recording and tick/scratch reduction for e.g. vinyl records Maintained by: nox@jelal.kn-bremen.de Requires: gmake-3.78.1 Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== mule-ucs-emacs20-0.74 Universal enCoding System for FSF Emacs 20 Maintained by: okazaki@be.to Also listed in: elisp Requires: XFree86-3.3.6, emacs-20.6 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== mysqltcl-1.53 TCL module for accessing MySQL databases based on msqltcl Maintained by: mi@aldan.algebra.com Also listed in: tcl80 Requires: mysql-client-3.22.32, tcl-8.0.5 Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== rtc-2000.03.28 Kernel module which provides /dev/rtc device support Maintained by: freebsd-emulation@FreeBSD.org Also listed in: linux Category ftp (http://www.freebsd.org/ports/ftp.html) ================================================================== xrmftp-1.2.4 Graphical FTP client based on the xforms library Maintained by: matt@LUCIDA.QC.CA Requires: XFree86-3.3.6, xforms-0.88.1 Category games (http://www.freebsd.org/ports/games.html) ================================================================== sdlquake-1.0.9 SDL port of id Software's famous Quake game Maintained by: will@FreeBSD.org Requires: XFree86-3.3.6, esound-0.2.18, libaudiofile-0.1.9, linuxthreads-2.1.2, sdl-1.0.8 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== piddle-1.0b1 Graphical Drawing library for Python Maintained by: dom@myrddin.demon.co.uk Also listed in: python Requires: python-1.5.2 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== elm-2.5.3 A once-popular mail user agent, version 2.5.x Maintained by: dhagan@cs.vt.edu Requires: gettext-0.10.35, ispell-3.1.20c yuzu-1.0 A nicer mail user agent powered by JavaMail and JFC/Swing Maintained by: daichi@ongs.net Requires: jdk-1.1.8, jfc-1.1.1 Category math (http://www.freebsd.org/ports/math.html) ================================================================== gsl-0.5 The GNU Scientific Library - mathematical libs Maintained by: andrew@chg.ru linalg-4.3 C++ Linear Algebra and Optimization classlib Maintained by: oleg@pobox.com Requires: gmake-3.78.1 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== boxes-1.0 Boxes is a text filter which draws ASCII art boxes around text Maintained by: patseal@hyperhost.net Requires: gmake-3.78.1 Category net (http://www.freebsd.org/ports/net.html) ================================================================== adns-0.7 Easy to use, asynchronous-capable DNS client library and utilities Maintained by: lukin@okbmei.msk.su Requires: gmake-3.78.1 opengate-0.44 H323 GateKeeper (MPL Licence) for OpenH323 OhPhone and NetMeeting Maintained by: roger@freebsd.org Requires: XFree86-3.3.6, gmake-3.78.1, openh323-1.1.a1 Category palm (http://www.freebsd.org/ports/palm.html) ================================================================== palmos-sdk-3.5 Palm OS SDK Maintained by: kuriyama@FreeBSD.org pilrc-2.5b1 Resource compiler for Pilot applications Maintained by: kuriyama@FreeBSD.org Requires: XFree86-3.3.6, gettext-0.10.35, glib-1.2.7, gtk-1.2.7, unzip-5.40 prc-tools-binutils-2.0 PRC-tools for Palm OS (binutils part) Maintained by: kuriyama@FreeBSD.org Requires: bison-1.28, gmake-3.78.1 prc-tools-gcc-2.0 PRC-tools for Palm OS (gcc part) Maintained by: kuriyama@FreeBSD.org Requires: bison-1.28, gmake-3.78.1, prc-tools-binutils-2.0 prc-tools-2.0 PRC-tools for Palm OS (main part) Maintained by: kuriyama@FreeBSD.org Requires: bison-1.28, gmake-3.78.1, palmos-sdk-3.5, prc-tools-gcc-2.0 Category security (http://www.freebsd.org/ports/security.html) ================================================================== oidentd-1.6.4 Ident server that supports user-defined ident strings Maintained by: trevor@jpj.net Also listed in: net Requires: gmake-3.78.1 Category shells (http://www.freebsd.org/ports/shells.html) ================================================================== 44bsd-csh-20000409 the traditional 4.4BSD /bin/csh C-shell Maintained by: obrien@FreeBSD.org Requires: bzip2-0.9.5d Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== docbook-4.0 V4.0 of the DocBook DTD, designed for technical documentation Maintained by: asmodai@FreeBSD.org Requires: iso8879-1986, unzip-5.40 xlhtml-0.2.6 Utilities converting Excel and PowerPoint files to HTML and text Maintained by: sobomax@altavista.net Requires: cole-2.0.1, libtool-1.3.4 Category www (http://www.freebsd.org/ports/www.html) ================================================================== kwebsearch-1.2 KDE application to do web/ftp/etc. searches from a menu Maintained by: will@FreeBSD.org Also listed in: kde Requires: Mesa-3.1, XFree86-3.3.6, gettext-0.10.35, gmake-3.78.1, qt-1.45 linux-flashplugin-4.0.r12 The official Macromedia Flash 4 Player for Linux Netscape Maintained by: matt@LUCIDA.QC.CA Also listed in: graphics linux Requires: linux_base-6.1 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== py-tkinter-1.5.2 Python bindings to the Tk widget set Maintained by: tg@FreeBSD.org Also listed in: python Requires: XFree86-3.3.6, python-1.5.2, tcl-8.2.3, tk-8.2.3 Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== E-buttons-0.2 A simple epplet that contains several buttons used to launch programs Maintained by: jhb@FreeBSD.org Requires: ORBit-0.5.1, XFree86-3.3.6, epplets-0.5, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gnomelibs-1.0.58, gtk-1.2.7, guile-1.3.4, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libgtop-1.0.7, libungif-4.1.0, png-1.0.5, tiff-3.5.5, xpm-3.4k E-FancyLauncher-0.7 A flexible and easily configurable button bar for Enlightenment Maintained by: jhb@FreeBSD.org Requires: ORBit-0.5.1, XFree86-3.3.6, epplets-0.5, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gnomelibs-1.0.58, gtk-1.2.7, guile-1.3.4, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libgtop-1.0.7, libungif-4.1.0, png-1.0.5, tiff-3.5.5, xpm-3.4k E-Weather-0.2 Weather epplet for Enlightenment similar to wmWeather Maintained by: jhb@FreeBSD.org Requires: ORBit-0.5.1, XFree86-3.3.6, epplets-0.5, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gnomelibs-1.0.58, gtk-1.2.7, guile-1.3.4, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libgtop-1.0.7, libungif-4.1.0, png-1.0.5, tiff-3.5.5, wmWeather-1.31, xpm-3.4k Updated ports last two weeks ----------------------------------- Category archivers (http://www.freebsd.org/ports/archivers.html) ================================================================== arc-5.21e.8 Create & extract files from DOS .ARC files Maintained by: ache@FreeBSD.org Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== xphoon-1991.9.18 Set the root window to the moon in its current phase Maintained by: will@FreeBSD.org Also listed in: x11 Requires: XFree86-3.3.6 Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== cmp3-2.0.p4 An ncurses based frontend to mpg123 Maintained by: cpiazza@FreeBSD.org Requires: gmake-3.78.1, mpg123-0.59r esound-0.2.18 A sound library for enlightenment package Maintained by: vanilla@FreeBSD.org Requires: libaudiofile-0.1.9, libtool-1.3.4 gnapster-1.3.8 GNOME client for the online mp3 community called napster Maintained by: cpiazza@FreeBSD.org Requires: ORBit-0.5.1, XFree86-3.3.6, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gnomelibs-1.0.58, gtk-1.2.7, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4, libungif-4.1.0, png-1.0.5, tiff-3.5.5, xpm-3.4k krio-1999.07.21 KDE utility for up-/downloading MP3 files to/from the Diamond Rio Maintained by: ak@freenet.co.uk Also listed in: kde Requires: Mesa-3.1, XFree86-3.3.6, jpeg-6b, kdelibs-1.1.2.1, png-1.0.5, qt-1.45, tiff-3.5.5 mp3blaster-2.0.b17 MP3 console ncurses-based player Maintained by: ports@FreeBSD.org rosegarden-2.1.2 The Rosegarden Editor and Sequencer suite Maintained by: shanee@augusta.de Requires: XFree86-3.3.6, autoconf-2.13, m4-1.4, tcl-8.2.3, tclmidi-3.1 timidity++-emacs-2.9.0 Emacs interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6, bzip2-0.9.5d, gmake-3.78.1, png-1.0.5, timidity++-2.9.0 timidity++-gtk-2.9.0 Gtk interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6, bzip2-0.9.5d, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gtk-1.2.7, png-1.0.5, timidity++-2.9.0 timidity++-motif-2.9.0 Motif interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: Motif-2.1.10, XFree86-3.3.6, bzip2-0.9.5d, gmake-3.78.1, png-1.0.5, timidity++-2.9.0, xpm-3.4k timidity++-slang-2.9.0 Slang interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6, bzip2-0.9.5d, gmake-3.78.1, libslang-1.4.0, png-1.0.5, timidity++-2.9.0 timidity++-tcltk-2.9.0 Tcl/Tk interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6, bzip2-0.9.5d, gmake-3.78.1, png-1.0.5, tcl-8.0.5, timidity++-2.9.0, tk-8.0.5 timidity++-xaw-2.9.0 Xaw interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6, Xaw3d-1.5, bzip2-0.9.5d, gmake-3.78.1, png-1.0.5, timidity++-2.9.0 timidity++-xskin-2.9.0 X11AMP skin interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6, bzip2-0.9.5d, gmake-3.78.1, png-1.0.5, timidity++-2.9.0 timidity++-2.9.0 Software MIDI player Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6, bzip2-0.9.5d, png-1.0.5 waveplay-1999.01.23 A simple wav file player Maintained by: ysonoda@dontaku.csce.kyushu-u.ac.jp wsoundprefs-1.0.2 A utility for configuring sounds to play for Window Maker events Maintained by: ports@FreeBSD.org Also listed in: windowmaker Requires: XFree86-3.3.6, jpeg-6b, libproplist-0.10.1, libungif-4.1.0, png-1.0.5, tiff-3.5.5, windowmaker-0.62.1, wmsound-0.9.5, xpm-3.4k Category biology (http://www.freebsd.org/ports/biology.html) ================================================================== platon-1999.04.07 Tool for viewing molecular/crystallographic structures Maintained by: rmiya@cc.hirosaki-u.ac.jp Category cad (http://www.freebsd.org/ports/cad.html) ================================================================== cider-1.b1 A mixed-level circuit and device simulator (includes SPICE3) Maintained by: amakawa@jp.FreeBSD.org Requires: XFree86-3.3.6 geda-1999.05.16 GNU Electronic Design Automation Maintained by: vanilla@FreeBSD.org Requires: XFree86-3.3.6, gettext-0.10.35, glib-1.2.7, gtk-1.2.7, guile-1.3.4, libtool-1.3.4 Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-autoconvert-0.3.5 Intelligent Chinese encoding converter Maintained by: yinjieh@csie.nctu.edu.tw zh-rxvt-2.7.3 A low memory usage xterm replacement that supports color & chinese Maintained by: frankch@waru.life.nthu.edu.tw Also listed in: x11 Requires: XFree86-3.3.6, bzip2-0.9.5d, xpm-3.4k zh-ted-4.4d 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.6, zh-kcfonts-1.05, zh-xcin-2.3.04.3 zh-xcin-2.3.04.3 A chinese input utility in X Maintained by: yssu@CCCA.NCTU.edu.tw Requires: XFree86-3.3.6, gmake-3.78.1, zh-kcfonts-1.05 zh-xcin-2.5.2.p2 Chinese input method server under X Maintained by: keith@freebsd.sinica.edu.tw Also listed in: x11 Requires: XFree86-3.3.6, db-2.7.7, gettext-0.10.35, zh-kcfonts-1.05, zh-libtabe-0.1.2 Category comms (http://www.freebsd.org/ports/comms.html) ================================================================== conserver-5.21b Manage remote serial consoles via TCP/IP Maintained by: peter@FreeBSD.org mgetty-1.1.21.07.24 Handle external logins, send and receive faxes Maintained by: jmz@FreeBSD.org snooper-1999.12.02 Serial line protocol analyzer (need two serial interfaces) Maintained by: itojun@itojun.org tkhylafax-3.0b2 A tcl/tk interface to Sam Leffler's fax package Maintained by: ports@FreeBSD.org Also listed in: tk82 Requires: XFree86-3.3.6, Xaw3d-1.5, bash-2.03, ghostscript-5.10, gsfonts-5.10, gv-3.5.8, hylafax-4.0.2, jpeg-6b, png-1.0.5, tcl-8.2.3, tiff-3.5.5, tk-8.2.3 Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== tcs-1995.03.25 Translate chalacer sets Maintained by: kuriyama@FreeBSD.org Also listed in: plan9 Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== genius-0.4.6 Arbitrary precision calculator for Gnome Desktop Environment Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.1, XFree86-3.3.6, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gnomeaudio-1.0.0, gnomecore-1.0.55, gnomelibs-1.0.58, gnomeprint-0.16, gtk-1.2.7, guile-1.3.4, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.5, libgtop-1.0.7, libtool-1.3.4, libungif-4.1.0, libxml-1.8.7, png-1.0.5, tiff-3.5.5, xpm-3.4k Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== bcc-1995.03.12 Bruce's C compiler (with as and ld); can do 16-bit code Maintained by: joerg@FreeBSD.org Also listed in: lang boehm-gc-5.0a4 Garbage collection and memory leak detection for C and C++ Maintained by: mmcg@cs.monash.edu.au libproplist-0.10.1 Property library for gnome and Window Maker Maintained by: gljohns@bellsouth.net Also listed in: gnome Requires: libtool-1.3.4 makedepend-1995.07.05 A dependency generator for makefiles Maintained by: i.vaudrey@bigfoot.com p5-File-MMagic-1.06 Perl5 module to guess file type like file(1) Maintained by: knu@idaemons.org Also listed in: perl5 p5-ReadLine-Gnu-1.09 Perl 5 module that allows Term::ReadLine to use GNU readline Maintained by: mph@freebsd.org Also listed in: perl5 p5-Time-98.112901 A collection of functions to convert and use time variables in perl5 Maintained by: jfitz@FreeBSD.org Also listed in: perl5 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== thoteditor-2.1e An structured document editor, offering a graphical WYSIWYG interface Maintained by: chuckr@FreeBSD.org Also listed in: www Requires: Motif-2.1.10, XFree86-3.3.6, gmake-3.78.1, xpm-3.4k Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== frodo-4.1a Emulates a Commodore 64 Maintained by: dirk.meyer@dinoex.sub.org Also listed in: tk82 Requires: XFree86-3.3.6, tcl-8.2.3, tk-8.2.3 Category ftp (http://www.freebsd.org/ports/ftp.html) ================================================================== lftp-2.2.0a Shell-like command line ftp client Maintained by: calle.madestrand@norrgarden.se Also listed in: ipv6 Requires: bzip2-0.9.5d, libtool-1.3.4 ncftp3-3.0.1 FTP replacement with advanced user interface Maintained by: obrien@FreeBSD.org Category games (http://www.freebsd.org/ports/games.html) ================================================================== bnetd-0.4.21 A game server for StarCraft Maintained by: ijliao@csie.nctu.edu.tw Also listed in: net corewars-0.9.11 A simulation came where the goal is to crash each other's programs Maintained by: jim@FreeBSD.org Requires: XFree86-3.3.6, gettext-0.10.35, glib-1.2.7, gtk-1.2.7 freesweep-0.87 Minesweeper-style game for text-mode terminals Maintained by: ports@FreeBSD.org Requires: gmake-3.78.1 gemdropx-0.7 An interesting one-player puzzle game for X Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6, esound-0.2.18, gmake-3.78.1, libaudiofile-0.1.9, linuxthreads-2.1.2, sdl-1.0.8 netrek-BRMH-2.2.2 A 16-player network space battle/conquest game with a Star Trek theme Maintained by: dburr@FreeBSD.org Requires: XFree86-3.3.6 netrek-COW-3.00.0 A 16-player network space battle/conquest game with a Star Trek theme Maintained by: dburr@FreeBSD.org Requires: XFree86-3.3.6 oonsoo-1.2 A solitaire card game for X Maintained by: jsutton@bbcon.com.au Requires: XFree86-3.3.6 phalanx-22 Xboard-compatible chess playing program Maintained by: ports@FreeBSD.org Requires: gmake-3.78.1, libgnugetopt-1.1 QuakeForge-0.10.0p Cleaned up copy of the GPL'd Quake 1 source code Maintained by: darius@dons.net.au Requires: XFree86-3.3.6, autoconf-2.13, gmake-3.78.1, m4-1.4 tetrinet-x-1.13.16 An addictive 6 player tetr*s game Maintained by: gmarco@giovannelli.it xdigger-1.0.10 Boulderdash-like KC85 Digger for X Window System Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6 xmahjongg-3.3 The Chinese game of Mahjongg for X11 Maintained by: joerg@freebsd.org Requires: XFree86-3.3.6 xmball-5.5.2 Masterball puzzle for X Window System Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6 xmlink-5.5.2 Missing Link puzzle for X Window System Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6 xnibbles-1.0.b3 A simple X11 snake game, like one seen in MS-DOS's qbasic Maintained by: will@FreeBSD.org Requires: XFree86-3.3.6, gmake-3.78.1, xpm-3.4k xoct-5.5.2 Oct puzzle for X Window System Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6 xpanex-5.5.2 Panex puzzle for X Window System Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6 xpyraminx-5.5.2 Pyraminx puzzle for X Window System Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6 xskewb-5.5.2 Skewb puzzle (similar to Rubik's Cube) for X Window Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6 Category german (http://www.freebsd.org/ports/german.html) ================================================================== de-BBBike-2.48 A route-finder for cyclists in Berlin and Brandenburg (only german) Maintained by: eserte@cs.tu-berlin.de Requires: XFree86-3.3.6, p5-Tk-800.008 de-cheap-call-0.7e Shows cheapest German call-by-call telephone provider (German only) Maintained by: pcc@gmx.net Requires: XFree86-3.3.6, bzip2-0.9.5d, tcl-8.0.5, tclX-8.0.4, tk-8.0.5 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== dia-0.84 Diagram creation program, similar to Visio Maintained by: saper@system.pl Requires: XFree86-3.3.6, gettext-0.10.35, glib-1.2.7, gtk-1.2.7, imlib-1.9.8, jpeg-6b, libtool-1.3.4, libungif-4.1.0, libxml-1.8.7, png-1.0.5, tiff-3.5.5 enfle-20000403 Simple Plugin-based Graphic Loader Enfle Maintained by: yuuki@goldmoon.org Requires: XFree86-3.3.6, bzip2-0.9.5d, gmake-3.78.1, jpeg-6b, png-1.0.5 gimp-1.1.19 Developer's beta release of the GNU Image Manipulation Program Maintained by: vanilla@FreeBSD.org Requires: XFree86-3.3.6, aalib-1.2, bzip2-0.9.5d, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gtk-1.2.7, jpeg-6b, libtool-1.3.4, mpeg_lib-1.3.1, png-1.0.5, tiff-3.5.5, xpm-3.4k lfview-1.1.b3 Graphic viewer for Leaf products Maintained by: s974123@cc.matsuyama-u.ac.jp Requires: XFree86-3.3.6 netpbm-8.4 A toolkit for conversion of images between different formats Maintained by: ports@FreeBSD.org Requires: gmake-3.78.1, jpeg-6b, png-1.0.5, tiff-3.5.5 pgperl-2.16 A perl5 extension which makes available the pgplot library Maintained by: jmz@FreeBSD.org Also listed in: perl5 Requires: XFree86-3.3.6, p5-ExtUtils-F77-1.12, pgplot-5.2 pngcrush-1.4.1 An optimizer for PNG files Maintained by: jedgar@FreeBSD.org povray-3.1g Persistence of Vision Ray Tracer Maintained by: olli@fromme.com Requires: XFree86-3.3.6, png-1.0.5 tiff-3.5.5 Tools and library routines for working with TIFF images Maintained by: ports@FreeBSD.org Requires: jpeg-6b Category irc (http://www.freebsd.org/ports/irc.html) ================================================================== xchat-1.4.2 An X11 IRC client using the GTK+ toolkit, and optionally, GNOME Maintained by: jim@FreeBSD.org Requires: XFree86-3.3.6, bzip2-0.9.5d, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gtk-1.2.7, imlib-1.9.8, jpeg-6b, libungif-4.1.0, png-1.0.5, tiff-3.5.5 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-esecanna-0.99.1 Pseudo cannaserver which wraps some other input engines Maintained by: knu@idaemons.org Requires: autoconf-2.13, gmake-3.78.1, m4-1.4 ja-gp-2.5.p2 A GUI Printer manager written with Tcl/Tk Maintained by: kiri@kiri.toba-cmt.ac.jp Also listed in: print tk42 Requires: ImageMagick-5.1.1, XFree86-3.3.6, Xaw3d-1.5, freetype-1.3, gv-3.5.8, hdf-4.1r3, ja-tcl-7.6, ja-tk-4.2, jbigkit-1.1, jpeg-6b, png-1.0.5, psutils-a4-1.17, tiff-3.5.5 ja-jpilot-0.98.1 Desktop Organizer Software for the Palm Pilot (Japanized) Maintained by: sumikawa@FreeBSD.org Also listed in: palm comms Requires: XFree86-3.3.6, gettext-0.10.35, glib-1.2.7, gtk-1.2.7, pilot-link-0.9.3, tcl-8.2.3, tk-8.2.3 ja-jlatex209-ascii-1.7 ASCII Japanese pTeX based on LaTeX-209 Maintained by: mita@jp.FreeBSD.org Also listed in: print Requires: bison-1.28, gmake-3.78.1 ja-jlatex209-ascii+ntt-1.7+1.52 Japanese TeX based on LaTeX-209 with both NTT and ASCII Maintained by: mita@jp.FreeBSD.org Also listed in: print Requires: bison-1.28, gmake-3.78.1 ja-jlatex209-ntt-1.52 NTT Japanese TeX based on LaTeX-209 Maintained by: mita@jp.FreeBSD.org Also listed in: print Requires: bison-1.28, gmake-3.78.1 ja-kbanner-2.1 Displays large japanese letters on the standard output Maintained by: sumikawa@kame.net ja-lynx-2.8.3.dev16 A terminal-based World-Wide Web Client with multi-byte modification Maintained by: shige@FreeBSD.org Also listed in: www Requires: bzip2-0.9.5d ja-mendexk-euc-2.4d Index formatter for Japanese (EUC) Maintained by: watanabe@zlab.phys.nagoya-u.ac.jp Also listed in: print Requires: gmake-3.78.1 ja-mendexk-sjis-2.4d Index formatter for Japanese (SJIS) Maintained by: watanabe@zlab.phys.nagoya-u.ac.jp Also listed in: print Requires: gmake-3.78.1, ja-nkf-1.71 ja-mh-6.8.4.j3.03 Rand MH mail handling system + Japanese patches Maintained by: motoyuki@freebsd.org Also listed in: mail Requires: ja-less-332 ja-mutt-1.0.1.j0 Text-based mail client (Japanised Version) Maintained by: shuna@pop16.odn.ne.jp Also listed in: mail Requires: autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.78.1, ja-libslang-1.4.0.j0, m4-1.4, urlview-0.7 ja-namazu2-2.0.3 Full-text search system intended for easy use Maintained by: knu@idaemons.org Also listed in: textproc Requires: cole-2.0.1, gettext-0.10.35, ja-kakasi-2.3.1, ja-p5-Text-Kakasi-1.01, ja-p5-nkf-0.01, p5-File-MMagic-1.06, xlhtml-0.2.6 ja-ndtpd-2.3.7 Server for accessing CD-ROM books with NDTP Maintained by: takamune@avrl.mei.co.jp Requires: ja-eb-2.3.7, libtool-1.3.4 ja-ng-canna-1.3L A very lightweight Emacs-clone with Japanese and Canna support Maintained by: honda@kashio.info.mie-u.ac.jp Also listed in: editors Requires: ja-Canna-3.2.2 ja-ng-1.3L A very light Emacs-clone with japanese support Maintained by: ginga@athena.club.ne.jp Also listed in: editors ja-pgp-2.6.3 Japanese language module for PGP Maintained by: hikura@kaisei.org Also listed in: security Requires: pgp-2.6.2, rsaref-2.0, unzip-5.40 ja-timidity++-slang-2.9.0 Slang interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6, bzip2-0.9.5d, gmake-3.78.1, ja-libslang-1.4.0.j0, png-1.0.5, timidity++-2.9.0 ja-timidity++-tcltk-2.9.0 Tcl/Tk interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6, bzip2-0.9.5d, gmake-3.78.1, ja-tcl-8.0.5, ja-tk-8.0.5, png-1.0.5, timidity++-2.9.0 ja-xemacs-mule-sumo-canna+wnn4-21.1 The "meta-port" for XEmacs Mule with SUMO packages Maintained by: kiri@pis.toba-cmt.ac.jp Requires: XFree86-3.3.6, faces-1.6.1, jpeg-6b, png-1.0.5, tiff-3.5.5, xemacs-mule-21.1.9, xemacs-mule-common-21.1.9, xemacs-mule-packages-1.1, xemacs-mule-sumo-pkg-20000124, xemacs-packages-1.1, xemacs-sumo-pkg-20000124, xpm-3.4k ja-xemacs-mule-sumo-canna+wnn6-21.1 The "meta-port" for XEmacs Mule with SUMO packages Maintained by: kiri@pis.toba-cmt.ac.jp Requires: XFree86-3.3.6, faces-1.6.1, jpeg-6b, png-1.0.5, tiff-3.5.5, xemacs-mule-21.1.9, xemacs-mule-common-21.1.9, xemacs-mule-packages-1.1, xemacs-mule-sumo-pkg-20000124, xemacs-packages-1.1, xemacs-sumo-pkg-20000124, xpm-3.4k ja-xemacs-mule-sumo-canna-21.1 The "meta-port" for XEmacs Mule with SUMO packages Maintained by: kiri@pis.toba-cmt.ac.jp Requires: XFree86-3.3.6, faces-1.6.1, jpeg-6b, png-1.0.5, tiff-3.5.5, xemacs-mule-21.1.9, xemacs-mule-common-21.1.9, xemacs-mule-packages-1.1, xemacs-mule-sumo-pkg-20000124, xemacs-packages-1.1, xemacs-sumo-pkg-20000124, xpm-3.4k ja-xemacs-mule-sumo-wnn4-21.1 The "meta-port" for XEmacs Mule with SUMO packages Maintained by: kiri@pis.toba-cmt.ac.jp Requires: XFree86-3.3.6, faces-1.6.1, jpeg-6b, png-1.0.5, tiff-3.5.5, xemacs-mule-21.1.9, xemacs-mule-common-21.1.9, xemacs-mule-packages-1.1, xemacs-mule-sumo-pkg-20000124, xemacs-packages-1.1, xemacs-sumo-pkg-20000124, xpm-3.4k ja-xemacs-mule-sumo-wnn6-21.1 The "meta-port" for XEmacs Mule with SUMO packages Maintained by: kiri@pis.toba-cmt.ac.jp Requires: XFree86-3.3.6, faces-1.6.1, jpeg-6b, png-1.0.5, tiff-3.5.5, xemacs-mule-21.1.9, xemacs-mule-common-21.1.9, xemacs-mule-packages-1.1, xemacs-mule-sumo-pkg-20000124, xemacs-packages-1.1, xemacs-sumo-pkg-20000124, xpm-3.4k ja-xyagamo-0.1b Japanese version of a four player mahjong game Maintained by: shinmaru@dokidoki.ne.jp Also listed in: games Requires: XFree86-3.3.6, xpm-3.4k Category java (http://www.freebsd.org/ports/java.html) ================================================================== tya-1.7 A ``100% unofficial'' JIT-compiler for java Maintained by: jburkhol@home.com Requires: jdk-1.1.8 Category korean (http://www.freebsd.org/ports/korean.html) ================================================================== ko-afterstep-1.0.p3h1 Window manager, with Korean support, originally based on Bowman-NeXTSTEP Maintained by: junker@jazz.snu.ac.kr Also listed in: x11-wm afterstep Requires: XFree86-3.3.6, xpm-3.4k ko-bitchx-75.1 Alternative BitchX client patched for korean Maintained by: hollywar@mail.holywar.net Also listed in: net ko-hanemacs-19.34b.1 Korean version of GNU editing macros Maintained by: junker@jazz.snu.ac.kr Also listed in: editors Requires: gmake-3.78.1 ko-hanterm-xf-18 An X11R6-based xterm hacked for managing Korean languages Maintained by: cjh@kr.freebsd.org Also listed in: x11 Requires: XFree86-3.3.6, ko-johabfonts-3.04 ko-hmconv-1.0.3 Hangul code conversion utility for E-mail Maintained by: junker@jazz.snu.ac.kr Also listed in: mail Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== gcc-devel-20000410 EGCS enhanced version of the GNU compiler suite (inprogress version) Maintained by: obrien@FreeBSD.org Also listed in: java Requires: gmake-3.78.1 mit-scheme-7.5.5 MIT Scheme: includes runtime, compiler, and edwin binaries Maintained by: jmacd@FreeBSD.org Requires: XFree86-3.3.6 python-doc-html-1.5.2p2 Documentation for the Python programming language Maintained by: tg@FreeBSD.org Also listed in: python python-doc-pdf-a4-1.5.2p2 Documentation for the Python programming language Maintained by: tg@FreeBSD.org Also listed in: python python-doc-pdf-letter-1.5.2p2 Documentation for the Python programming language Maintained by: tg@FreeBSD.org Also listed in: python python-doc-postscript-a4-1.5.2p2 Documentation for the Python programming language Maintained by: tg@FreeBSD.org Also listed in: python python-doc-postscript-letter-1.5.2p2 Documentation for the Python programming language Maintained by: tg@FreeBSD.org Also listed in: python smalltalk-1.7.3 GNU Smalltalk Maintained by: alex@big.endian.de Requires: gmake-3.78.1 squeak-2.7 Full Smalltalk 80 with portability to UNIX, Mac, and Windows Maintained by: jesse@cs.uni-magdeburg.de Requires: XFree86-3.3.6, gmake-3.78.1 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== grepmail-4.23 Search mailboxes for a given regexp and display matching emails Maintained by: jedgar@FreeBSD.org mbx2mbox-0.32 MS Outlook Express .mbx to mbox file converter Maintained by: ports@FreeBSD.org mmr-1.5.4 Curses based MIME Mail Reader Maintained by: ports@FreeBSD.org postfix-19991231.06 Good alternative to sendmail Maintained by: torstenb@FreeBSD.org postilion-0.9.3c Mail client with the NeXt look Maintained by: gljohns@bellsouth.net Also listed in: tk82 Requires: XFree86-3.3.6, jpeg-6b, libimg-1.2.2, png-1.0.5, tcl-8.2.3, tiff-3.5.5, tk-8.2.3 Category math (http://www.freebsd.org/ports/math.html) ================================================================== R-a4-0.99.0a Statistical analysis language similar to AT&T's S language Maintained by: maurice@serc.rmit.edu.au Requires: XFree86-3.3.6 R-letter-0.99.0a Statistical analysis language similar to AT&T's S language Maintained by: maurice@serc.rmit.edu.au Requires: XFree86-3.3.6 py-rng-2.0 Random Number Generator module for python Maintained by: tg@FreeBSD.org Also listed in: python Requires: py-numeric-15.2, python-1.5.2 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== cmatrix-1.0b Show a scrolling 'Matrix' like screen Maintained by: ports@FreeBSD.org deco-3.8.3 Demos Commander, a free Norton Commander clone Maintained by: dima@Chg.RU mc-4.5.44 Midnight Commander, a free Norton Commander Clone Maintained by: reg@FreeBSD.org Requires: gettext-0.10.35, glib-1.2.7, gmake-3.78.1 Category net (http://www.freebsd.org/ports/net.html) ================================================================== argus-1.7.b1e A generic IP network transaction auditing tool Maintained by: jhanna@home.com Also listed in: security arpwatch-2.1.a4 Monitor arp & rarp requests Maintained by: brian@Awfulhak.org binkd-0.9.3 Fidonet TCP/IP mailer Maintained by: dsh@vlink.ru Requires: unzip-5.40 centericq-2.0.0 ICQ client with a useful ncurses menu and window-based interface Maintained by: cpiazza@FreeBSD.org Requires: gmake-3.78.1 ciscoconf-1.0.b1 Fetches configuration from Cisco routers and stores them under RCS Maintained by: jabley@clear.co.nz Requires: XFree86-3.3.6 cnet-1.5.p2 A networking simulator Maintained by: ports@FreeBSD.org Also listed in: tk82 Requires: XFree86-3.3.6, gmake-3.78.1, tcl-8.2.3, tk-8.2.3, xpm-3.4k u coda-doc-4.6.5.3 An experimental, replicated, high-performance network file system Maintained by: rvb@cs.cmu.edu dgd-net-1.1.6 Dworkin's Generic Driver (network server) + extra networking support + regexps Maintained by: adam@veda.is Also listed in: lang dgd-1.1.6 Dworkin's Generic Driver (network server) Maintained by: adam@veda.is Also listed in: lang elsa-1.0.b018 Streaming Quicktime server for FreeBSD Maintained by: jedgar@FreeBSD.org etherboot-4.5.5 Netboot FreeBSD a.out/ELF kernels Maintained by: ambrisko@whistle.com Requires: gmake-3.78.1, nasm-0.98 ethereal-0.8.6 An X11/GTK network analyzer/capture tool Maintained by: billf@FreeBSD.org Also listed in: ipv6 Requires: XFree86-3.3.6, gettext-0.10.35, glib-1.2.7, gtk-1.2.7 gnomeicu-0.90.b GNOME ICQ client Maintained by: nectar@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.1, XFree86-3.3.6, bzip2-0.9.5d, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gnomeaudio-1.0.0, gnomecore-1.0.55, gnomelibs-1.0.58, gnomeprint-0.16, gtk-1.2.7, guile-1.3.4, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.5, libgtop-1.0.7, libungif-4.1.0, libxml-1.8.7, png-1.0.5, tiff-3.5.5, xpm-3.4k gtic-1.3.b The GNU file forwarder (FSC-0087) for fidonet-like networks Maintained by: dsh@vlink.ru gtksamba-0.3.2.1 Samba configuration tool for X Window System Maintained by: ports@FreeBSD.org Requires: ORBit-0.5.1, XFree86-3.3.6, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gnomelibs-1.0.58, gtk-1.2.7, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0, png-1.0.5, tiff-3.5.5, xpm-3.4k ipw-3.3.a A "whois" replacement that automatically queries several databases Maintained by: mph@freebsd.org lambdamoo-1.8.0.r8 The most commonly used program to run MOOs Maintained by: flathill@FreeBSD.ORG licq-0.81 X11 and QT-based ICQ-compatible program Maintained by: green@FreeBSD.org Requires: Mesa-3.1, XFree86-3.3.6, autoconf-2.13, automake-1.4, gmake-3.78.1, jpeg-6b, m4-1.4, png-1.0.5, qt-2.1.0 mars_nwe-0.99.b17 Netware server emulator for Un*x systems Maintained by: bp@FreeBSD.org mpd-3.0.b5 Multi-link PPP daemon based on netgraph(4) Maintained by: archie@freebsd.org mpd-2.0.b2 Multi-link PPP daemon Maintained by: archie@freebsd.org nam-1.0.a7 The UCB/LBNL Network Animator Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.6, otcl-1.0a5, tcl-8.2.3, tclcl-1.0b9, tk-8.2.3 ns-2.1.b5 The UCB/LBNL Network Simulator Version 2 Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.6, otcl-1.0a5, tcl-8.2.3, tclcl-1.0b9, tk-8.2.3 ntp-4.0.99g The Network Time Protocol Distribution Maintained by: ports@FreeBSD.org radiusd-cistron-1.6.2 A RADIUS-compliant remote authentication and accouting server Maintained by: john@nlc.net.au rwhois-1.0.b9.2 The Internic referral whois server Maintained by: jfitz@FreeBSD.org tdetect-0.2 Utility for detecting traceroutes and reporting them via syslog Maintained by: shipley@dis.org wide-dhcp-1.4.0.6 Dynamic Host Configuration Protocol, WIDE-Implimentation Maintained by: obrien@FreeBSD.org xicq-19980712 Xtropy's ICQ Client Maintained by: scrappy@FreeBSD.org Requires: gmake-3.78.1 ztelnet-1.0.p3 Telnet program with zmodem transfer Maintained by: junker@jazz.snu.ac.kr Category news (http://www.freebsd.org/ports/news.html) ================================================================== trn-4.0.b72 Version 4.0 of the threaded readnews newsreader Maintained by: mph@freebsd.org Category palm (http://www.freebsd.org/ports/palm.html) ================================================================== gnomepilot-conduits-0.2 Additional conduits for gnome-pilot Maintained by: ade@FreeBSD.org Also listed in: comms gnome Requires: ORBit-0.5.1, XFree86-3.3.6, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.0.53, gnomecore-1.0.55, gnomelibs-1.0.58, gnomepilot-0.1.50, gnomeprint-0.16, gtk-1.2.7, guile-1.3.4, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.5, libgtop-1.0.7, libtool-1.3.4, libungif-4.1.0, libxml-1.8.7, pilot-link-0.9.3, png-1.0.5, tcl-8.2.3, tiff-3.5.5, tk-8.2.3, xpm-3.4k gnomepilot-0.1.50 3Com PalmPilot conduit system for GNOME Maintained by: ade@FreeBSD.org Also listed in: comms gnome Requires: ORBit-0.5.1, XFree86-3.3.6, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.0.53, gnomecore-1.0.55, gnomelibs-1.0.58, gnomeprint-0.16, gob-0.93.0, gtk-1.2.7, guile-1.3.4, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.5, libgtop-1.0.7, libtool-1.3.4, libungif-4.1.0, libxml-1.8.7, pilot-link-0.9.3, png-1.0.5, tcl-8.2.3, tiff-3.5.5, tk-8.2.3, xpm-3.4k jpilot-0.98.1 Desktop Organizer Software for the Palm Pilot Maintained by: varju@webct.com Also listed in: comms Requires: XFree86-3.3.6, gettext-0.10.35, glib-1.2.7, gtk-1.2.7, pilot-link-0.9.3, tcl-8.2.3, tk-8.2.3 Category print (http://www.freebsd.org/ports/print.html) ================================================================== apsfilter-5.3.3 Lpd magic print filter with auto file type recognition Maintained by: andreas@FreeBSD.org Requires: XFree86-3.3.6, a2ps-letter-4.12, bzip2-0.9.5d, ghostscript-5.50, html2ps-letter-1.0, jpeg-6b, netpbm-8.4, png-1.0.5, psutils-letter-1.17, recode-3.5, samba-2.0.6, tiff-3.5.5, transfig-3.2.3, xpm-3.4k dvi2xx-0.51.a9 Convert dvi files to HP LaserJet or IBM 3812 format Maintained by: jmz@FreeBSD.org dvipdfm-0.12.7b Convert DVI files to PDF files Maintained by: stephen@math.missouri.edu Requires: XFree86-3.3.6, libwww-5.2.6, png-1.0.5, teTeX-1.0.7 gp-2.5.p2 A GUI Printer manager written with Tcl/Tk Maintained by: kiri@kiri.toba-cmt.ac.jp Also listed in: tk42 Requires: ImageMagick-5.1.1, XFree86-3.3.6, Xaw3d-1.5, freetype-1.3, gv-3.5.8, hdf-4.1r3, jbigkit-1.1, jpeg-6b, png-1.0.5, psutils-letter-1.17, tcl-7.6, tiff-3.5.5, tk-4.2 html2latex-0.9c Convert HTML document into LaTeX Maintained by: joerg@FreeBSD.org latex2rtf-1.8a Translator from LaTeX to RTF Maintained by: joerg@FreeBSD.org Category russian (http://www.freebsd.org/ports/russian.html) ================================================================== ru-apache-1.3.11 The extremely popular Apache http server. Very fast, very clean Maintained by: vns@delta.odessa.ua Also listed in: www ru-cyrproxy-1.4.2 Cyrillic proxy for network protocols Maintained by: ports@FreeBSD.org Also listed in: net www ru-koi8rPS-1.0 Add Russian (KOI8) fonts to your PostScript fonts collection Maintained by: mi@aldan.algebra.com Also listed in: print ru-xcode-1.0 Auto detect encoding and convert to koi8, CP-1251 or cp866 Maintained by: ports@FreeBSD.org Requires: bzip2-0.9.5d ru-xruskb-1.9.3 A keyboard layout switcher and indicator Maintained by: ports@FreeBSD.org Also listed in: x11 Requires: XFree86-3.3.6 Category security (http://www.freebsd.org/ports/security.html) ================================================================== keynote-2.b4 A Trust-Management System Maintained by: se@FreeBSD.org Requires: rsaref-2.0 nmap-2.3.b18 Port scanning utility for large networks Maintained by: obrien@FreeBSD.org Also listed in: net Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== asfsm-1.0.p15 File-system monitor for the AfterStep window manager Maintained by: jack@germanium.xtalwind.net Also listed in: afterstep Requires: XFree86-3.3.6, xpm-3.4k bkpupsd-1.0a A simple UPS daemon for APC BK Pro(TM) Maintained by: mwatts@edu1.tokyo-med.ac.jp gkrellm-0.9.8 A GTK based system monitor Maintained by: ume@FreeBSD.org Also listed in: ipv6 Requires: XFree86-3.3.6, gettext-0.10.35, glib-1.2.7, gtk-1.2.7, imlib-1.9.8, jpeg-6b, libungif-4.1.0, png-1.0.5, tiff-3.5.5 gnomecontrolcenter-1.0.53 Control center for GNOME project Maintained by: vanilla@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.1, XFree86-3.3.6, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gnomeaudio-1.0.0, gnomecore-1.0.55, gnomelibs-1.0.58, gnomeprint-0.16, gtk-1.2.7, guile-1.3.4, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.5, libgtop-1.0.7, libtool-1.3.4, libungif-4.1.0, libxml-1.8.7, png-1.0.5, tiff-3.5.5, xpm-3.4k libretto-config-1.0.b5 Libretto BIOS Setting Program Maintained by: shige@FreeBSD.org lsof-4.49 Lists information about open files. (simular to fstat(1)) Maintained by: obrien@FreeBSD.org upsd-2.0.1.6 APC Smart UPS Monitoring Daemon Maintained by: ports@FreeBSD.org Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== p5-Text-CSV_XS-0.20 Composition and decomposition of comma-separated values Maintained by: ache@FreeBSD.org Also listed in: perl5 txt2html-1.27 Convert raw text to something with a little HTML formatting Maintained by: croyle@gelemna.ft-wayne.in.us xml4j-3.0.0.e3 XML for Java parser Maintained by: kuriyama@FreeBSD.org Requires: jdk-1.1.8, jfc-1.1.1 Category www (http://www.freebsd.org/ports/www.html) ================================================================== aolserver-3.0.b6.1 A multithreaded web server with embedded TCL interpreter Maintained by: mab@red-bean.com Requires: gmake-3.78.1 apache+php-1.3.12+3.0.16 Apache http server with compiled in PHP module Maintained by: dirk@FreeBSD.org apache+php-1.3.12+4.0RC1 Apache http server with compiled in PHP module Maintained by: dirk@FreeBSD.org p5-Apache-ASP-0.18 Active Server Pages for Apache with mod_perl Maintained by: igor@zynaps.ru Also listed in: perl5 Requires: p5-Apache-1.21, p5-Devel-Symdump-2.00, p5-Digest-MD5-2.09, p5-MLDBM-2.00, p5-libwww-5.47 qDecoder-5.0.8 A CGI library for C/C++ language programming Maintained by: cjh@kr.FreeBSD.org webfs-1.0 A simple http server for static content Maintained by: jedgar@FreeBSD.org wmnetselect-0.8 WindowMaker Netscape launcher to display urls from X selection Maintained by: nugget@slacker.com Also listed in: windowmaker Requires: XFree86-3.3.6, xpm-3.4k Category x11-clocks (http://www.freebsd.org/ports/x11-clocks.html) ================================================================== asclock-gtk-2.1.10 New flavor of asclock (GTK version) Maintained by: kuriyama@FreeBSD.org Also listed in: afterstep windowmaker Requires: XFree86-3.3.6, gettext-0.10.35, glib-1.2.7, gtk-1.2.7 Category x11-fm (http://www.freebsd.org/ports/x11-fm.html) ================================================================== gnomemc-4.5.44 A windows explorer work-a-like for the GNOME Desktop Environment Maintained by: reg@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.1, XFree86-3.3.6, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gnomeaudio-1.0.0, gnomecore-1.0.55, gnomelibs-1.0.58, gnomeprint-0.16, gtk-1.2.7, guile-1.3.4, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.5, libgtop-1.0.7, libungif-4.1.0, libxml-1.8.7, png-1.0.5, tiff-3.5.5, xpm-3.4k workplace-1.0.a3 File manager and launcher Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6, gtk-1.0.6 Category x11-servers (http://www.freebsd.org/ports/x11-servers.html) ================================================================== xfstt-1.1 A TrueType font server for X11 Maintained by: rip@pinetec.co.za Requires: XFree86-3.3.6 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== qt-2.1.0 A C++ X GUI toolkit Maintained by: imura@FreeBSD.org Requires: Mesa-3.1, XFree86-3.3.6, gmake-3.78.1, jpeg-6b, png-1.0.5 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== amiwm-0.20.p48 A window manager that makes your desktop look like an Amiga(TM) Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6 windowmaker-i18n-0.62.0 A GNUStep-compliant NeXTStep clone window manager with i18n extention Maintained by: mac@jp.freebsd.org Also listed in: windowmaker Requires: XFree86-3.3.6, bzip2-0.9.5d, gettext-0.10.35, ja-nkf-1.71, jpeg-6b, libproplist-0.10.1, libtool-1.3.4, libungif-4.1.0, png-1.0.5, tiff-3.5.5, wmicons-1.0, xpm-3.4k windowmaker-0.62.1 GNUStep-compliant NeXTStep window manager clone Maintained by: sobomax@altavista.net Also listed in: windowmaker Requires: XFree86-3.3.6, bzip2-0.9.5d, jpeg-6b, libproplist-0.10.1, libtool-1.3.4, libungif-4.1.0, png-1.0.5, tiff-3.5.5, xpm-3.4k wmakerconf-2.6.1 A configuration tool for Window Maker Maintained by: dr@domix.de Requires: XFree86-3.3.6, bzip2-0.9.5d, gdbm-1.8.0, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gtk-1.2.7, imlib-1.9.8, jpeg-6b, libproplist-0.10.1, libungif-4.1.0, png-1.0.5, rpm-2.5.6, tiff-3.5.5, wget-1.5.3, windowmaker-0.62.1, xpm-3.4k Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== emu-1.31 A terminal emulator for the X Window System Maintained by: me@FreeBSD.org Requires: XFree86-3.3.6 gnomelibs-1.0.58 Libaries for GNOME, a GNU desktop environment Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.1, XFree86-3.3.6, esound-0.2.18, gettext-0.10.35, glib-1.2.7, gmake-3.78.1, gtk-1.2.7, imlib-1.9.8, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4, libungif-4.1.0, png-1.0.5, tiff-3.5.5, xpm-3.4k xlockmore-4.16 Like XLock session locker/screen saver, but just more Maintained by: tg@FreeBSD.org Requires: Mesa-3.1, XFree86-3.3.6, xpm-3.4k _________________________________________________________________ © 1996-2000 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: 2000-04-15 05:49:13 UTC; based on revision 1.271 _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -- 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 Sat Apr 15 3:20:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 8F5E337B751 for ; Sat, 15 Apr 2000 03:20:21 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (pc343042.tokyo.jcom.ne.jp [203.140.143.42]) by ms.tokyo.jcom.ne.jp (8.9.1/3.7W 03/13/00) with ESMTP id TAA25334; Sat, 15 Apr 2000 19:20:09 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id TAA26522; Sat, 15 Apr 2000 19:19:37 +0900 (JST) Date: Sat, 15 Apr 2000 19:19:36 +0900 Message-ID: <86u2h3ekef.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: okazaki@be.to Cc: freebsd-ports@freebsd.org Subject: Re: Order of CATEGORIES In-Reply-To: In your message of "Sat, 15 Apr 2000 18:47:19 +0900" <86r9c78zmg.wl@dolphin.be.to> References: <86vh1jeugn.wl@archon.local.idaemons.org> <86r9c78zmg.wl@dolphin.be.to> User-Agent: Wanderlust/1.1.1 (Purple Rain) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Sat, 15 Apr 2000 18:47:19 +0900, OKAZAKI Tetsurou wrote: > But "elisp" is a virtual category. The Handbook says: > > 4.4.4.5. CATEGORIES > > ... > > This list also determines where in the ports tree the port is imported. If > you put more than one category here, it is assumed that the port files will > be put in the subdirectory with the name in the first category. See the > categories section for more discussion about how to pick the right > categories. Thanks. I think I needed more sleep. Anyway I've been hopefully waiting for Michael to update portlint. :) (merging my modifications) Then we add more strict categories checks. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( "If you choose not to decide you still have made a choice." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 3:28:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id C6DA937B786 for ; Sat, 15 Apr 2000 03:28:33 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca7-28.ix.netcom.com [209.109.235.28]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id GAA09780; Sat, 15 Apr 2000 06:28:28 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id DAA13247; Sat, 15 Apr 2000 03:28:25 -0700 (PDT) Date: Sat, 15 Apr 2000 03:28:25 -0700 (PDT) Message-Id: <200004151028.DAA13247@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: alex@big.endian.de Cc: ports@freebsd.org Subject: german ispell ports From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I think the de*-ispell ports should be moved to the "german" category. As the handbook says, language-specific category directories are always preferred over other categories. Also, the deneu-ispell and dealt-ispell ports need new package names. "deneu" and "dealt" are not appropriate language/region codes. How about "de-ispell-neu-" and "de-ispell-alt-"? The "neu" and "alt" can be treated as extra specs. Or if the "neu" and "alt" spellings have any specific regions they relate to, you can change them to "de_AT-ispell-" or some such. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 3:37:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 313F037B74A for ; Sat, 15 Apr 2000 03:37:53 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F545B.dip0.t-ipconnect.de [193.159.84.91]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id LAA12887; Sat, 15 Apr 2000 11:37:11 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id AE94BAC2C; Sat, 15 Apr 2000 12:40:46 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id MAA04688; Sat, 15 Apr 2000 12:37:32 +0200 (CEST) (envelope-from alex) Date: Sat, 15 Apr 2000 12:37:32 +0200 From: Alexander Langer To: Satoshi Asami Cc: ports@freebsd.org Subject: Re: german ispell ports Message-ID: <20000415123732.A4680@cichlids.cichlids.com> Mail-Followup-To: Satoshi Asami , ports@freebsd.org References: <200004151028.DAA13247@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004151028.DAA13247@silvia.hip.berkeley.edu>; from asami@cs.berkeley.edu on Sat, Apr 15, 2000 at 03:28:25AM -0700 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 I agree with all your suggestions. dealt/deneu are old/new spelling, therefore they should be de-ispell-alt and de-ispell-neu Please do the repo-copy :) Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 4:27:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id A8B0F37B60B; Sat, 15 Apr 2000 04:27:26 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca7-28.ix.netcom.com [209.109.235.28]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id HAA07423; Sat, 15 Apr 2000 07:26:59 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id EAA13662; Sat, 15 Apr 2000 04:26:19 -0700 (PDT) Date: Sat, 15 Apr 2000 04:26:19 -0700 (PDT) Message-Id: <200004151126.EAA13662@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: brian@FreeBSD.org, alex@big.endian.de, jonny@jonny.eng.br Cc: ports@FreeBSD.org Subject: uk-*, british-*, br-* From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I noticed that some ports don't use proper ISO-639 language codes for package name prefixes. If you guys don't mind, I would like to change the following package names: br-ispell -> pt_BR-ispell british-ispell -> en_GB-ispell uk-phone -> en_GB-phone uk-postcodes -> en_GB-postcodes us-zipcodes -> en_US-zipcodes Actually I'm not sure about the last three. When I wrote the "language specifier" section of the handbook, I wasn't really thinking of regional software which are more about a region or a country itself rather than the language. It looks rather awkward since, for instance, "en_US-zipcodes" means "this is a list of zipcodes for US English" when it should just say "... for US". If you have any good ideas, please let me know. Satoshi P.S. We can't just use "US-zipcodes" and such, we are planning to convert all package names to lowercase when we go to multi-level categories. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 4:48: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shell.clark.net (clark.net [168.143.0.8]) by hub.freebsd.org (Postfix) with ESMTP id 8BE8B37B88F for ; Sat, 15 Apr 2000 04:48:00 -0700 (PDT) (envelope-from dickey@shell.clark.net) Received: (from dickey@localhost) by shell.clark.net (8.9.3/8.9.3) id HAA07106 for ports@freebsd.org; Sat, 15 Apr 2000 07:47:59 -0400 (EDT) From: "T.E.Dickey" Message-Id: <200004151147.HAA07106@shell.clark.net> Subject: Re: New ports added/updated last two weeks To: ports@freebsd.org Date: Sat, 15 Apr 100 07:47:59 -0400 (EDT) In-Reply-To: <200004151014.MAA01479@paula.panke.de.freebsd.org> from "Wolfram Schneider " at Apr 15, 0 12:14:01 pm X-Mailer: ELM [version 2.4 PL25] Content-Type: text Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > ja-lynx-2.8.3.dev16 > A terminal-based World-Wide Web Client with multi-byte > modification > Maintained by: shige@FreeBSD.org > Also listed in: www > Requires: bzip2-0.9.5d dev.16 is dated 1999/11/30 (not current in any sense of the word). does anyone maintain the lynx port? > Wolfram Schneider http://wolfram.schneider.org -- Thomas E. Dickey dickey@clark.net http://www.clark.net/pub/dickey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 4:48:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C19737B64E; Sat, 15 Apr 2000 04:48:41 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.com (pC19F545B.dip0.t-ipconnect.de [193.159.84.91]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id MAA25160; Sat, 15 Apr 2000 12:48:04 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id DA0A6AC2C; Sat, 15 Apr 2000 13:51:51 +0200 (CEST) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id NAA05927; Sat, 15 Apr 2000 13:48:36 +0200 (CEST) (envelope-from alex) Date: Sat, 15 Apr 2000 13:48:36 +0200 From: Alexander Langer To: Satoshi Asami Cc: brian@FreeBSD.org, jonny@jonny.eng.br, ports@FreeBSD.org Subject: Re: uk-*, british-*, br-* Message-ID: <20000415134836.A5879@cichlids.cichlids.com> Mail-Followup-To: Satoshi Asami , brian@FreeBSD.org, jonny@jonny.eng.br, ports@FreeBSD.org References: <200004151126.EAA13662@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004151126.EAA13662@silvia.hip.berkeley.edu>; from asami@cs.berkeley.edu on Sat, Apr 15, 2000 at 04:26:19AM -0700 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 Thus spake Satoshi Asami (asami@cs.berkeley.edu): > british-ispell -> en_GB-ispell no problem. > It looks rather awkward since, for instance, "en_US-zipcodes" means > "this is a list of zipcodes for US English" when it should just say > "... for US". If you have any good ideas, please let me know. > P.S. We can't just use "US-zipcodes" and such, we are planning to > convert all package names to lowercase when we go to multi-level > categories. hmmm. doesn't the xx_XX express language specific stuff, as used e.g. for the character sets? Maybe we should look about the toplevel-domains, which are the official ISO country codes, and there forethese should become uk-zipcodes and us-zipcodes). Why couldn't we use these? The _language_-specific ports should then be moved to de_DE-ispell or jp_JP-emacs (what is the Japanese language code?) or something like that. In my opinion, this makes more sense. Alex -- I need a new ~/.sig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 7: 0: 7 2000 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 545D237B81D for ; Sat, 15 Apr 2000 07:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA74450; Sat, 15 Apr 2000 07:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from zmail6.easynet.fr (email.easynet.fr [195.114.64.207]) by hub.freebsd.org (Postfix) with SMTP id CB18937B91E for ; Sat, 15 Apr 2000 06:50:56 -0700 (PDT) (envelope-from renaud.breard@easynet.fr) Received: (qmail 4135 invoked from network); 15 Apr 2000 13:50:55 -0000 Received: from mailgate3.easynet.fr (192.168.1.4) by mailserver.easynet.fr with QMQP; 15 Apr 2000 13:50:55 -0000 Received: from tnt-103.pops.easynet.fr (HELO grimsey.islande.net) (212.180.30.103) by mrelay3.easynet.fr with SMTP; 15 Apr 2000 14:49:55 -0000 Received: (qmail 44640 invoked by uid 100); 15 Apr 2000 13:47:53 -0000 Message-Id: <20000415134753.44639.qmail@grimsey.islande.net> Date: 15 Apr 2000 13:47:53 -0000 From: renaud@islande.net Reply-To: renaud@islande.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18020: port jpeg do not build shared library Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18020 >Category: ports >Synopsis: port jpeg do not build shared library >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: Sat Apr 15 07:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Renaud Breard >Release: FreeBSD 5.0-CURRENT i386 >Organization: private >Environment: FreeBSD grimsey.islande.net 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Fri Apr 14 20:17:38 CEST 2000 root@grimsey.islande.net:/usr/src/sys/compile/GRIMSEY i386 >Description: the configure script fail to configure libtool correctly for build shared librairy. the target patch-libtool of bsd.port.mk fail because it try to find the strings "$ac_aux_dir/ltconfig" and "$ac_aux_dir/ltmain.sh" in the configure script, but the configure script containt the strings $srcdir/ltconfig and $srcdir/ltmain.sh >How-To-Repeat: cd ${PORTDIR}/graphics/jpeg make >Fix: use the following patch instead patch-ab --- configure.orig Sat Mar 21 20:08:57 1998 +++ configure Thu Apr 6 03:55:27 2000 @@ -1529,7 +1529,7 @@ if test "x$LTSHARED" != xno -o "x$LTSTATIC" != xno; then USELIBTOOL="yes" - LIBTOOL="./libtool" + LIBTOOL="/usr/local/bin/libtool" O="lo" A="la" LN='$(LIBTOOL) --mode=link $(CC)' @@ -1559,7 +1559,7 @@ if test "x$LTSTATIC" = xno; then disable_static="--disable-static" fi - $srcdir/ltconfig $disable_shared $disable_static $srcdir/ltmain.sh + /usr/local/share/libtool/ltconfig $disable_shared $disable_static /usr/local/share/libtool/ltmain.sh fi # Select memory manager depending on user input. @@ -1647,7 +1647,7 @@ # Extract the library version ID from jpeglib.h. echo $ac_n "checking libjpeg version number""... $ac_c" 1>&6 echo "configure:1650: checking libjpeg version number" >&5 -JPEG_LIB_VERSION=`sed -e '/^#define JPEG_LIB_VERSION/!d' -e 's/^[^0-9]*\([0-9][0-9]*\).*$/\1/' $srcdir/jpeglib.h` +JPEG_LIB_VERSION=9 echo "$ac_t""$JPEG_LIB_VERSION" 1>&6 >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 Apr 15 7:30: 9 2000 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 6D36F37B968 for ; Sat, 15 Apr 2000 07:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA77328; Sat, 15 Apr 2000 07:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 15 Apr 2000 07:30:03 -0700 (PDT) Message-Id: <200004151430.HAA77328@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jose Marques Subject: Re: ports/17913: Update port: javamail -> 1.1.3 Reply-To: Jose Marques Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/17913; it has been noted by GNATS. From: Jose Marques To: Palle Girgensohn Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/17913: Update port: javamail -> 1.1.3 Date: Sat, 15 Apr 2000 15:24:39 +0100 (BST) On Tue, 11 Apr 2000, Palle Girgensohn wrote: [Snip] The previous patch appears to have been broken by the recent Makefile updates. Here is another patch made after the Makefile changes. begin 644 patch.gz M'XL(")-Z^#@``W!A=&-H`+6=;6_C-A+'7\>?0L#U@"M2V['S'&"!]29.Z][& M">*D[1T.6#`6DV@C2X8D)YMM^]V/E)_T9$N<^>O%9FV9\S-%#F>&%,VQG<=' MJQG,AE9[%@;MJ1]$8?NK>!7QGXEPW/:5>)&/CBNMW)5&L]DLE]NY>YY9O6E@ M=?:M;N?LH'-V>&IU]_;V&KN[NWGHSDA$\^*'5N?@[+![MG!Z^&>^JTNHW=W+7] MAG7>N^O_?'T[Z(_FTHWFQ6"4H76^=+XH\>(/%*/_Q]UM[_SNR^C^\H\/.ZWO MSE37ZJHW&-ZI?_W;#SN>_R;>/WK^L__6LN7$]UICOS5[4<6:M_?#+Q?]F_[P M0M7@AS]O;ON7@S_^;G^U7W[X\]>+?W]95/CO]H/CQ6U[I@JI&QE=#&[_7K2X M_6+]K]'<28B'SR*0\T_'K@A#&;;%.')>1>2H+_\J@@**>&SL9FKS^?J\]_E3 M;]2G5&AW)TT@UDDUY?VH_^6_@YL/.__IC]1[NUQGM2*%[8E]:.4O;=?:5;&= M*]^SAOZK976LO8.S;O?L\,CJG)Z>IM5V73ZMMP='9]V]M=YVK-V.UMCFU<6A M]:^49FF%^='Z8#V*X^/]AP?9>;0/NL?')R=CV17R5'3$WLEXWU;?FY/=7\KN MG>R?V.+H=/]T+/:Z#_*H>W0B]@X.'\:=8_OQ^*CQR?%$\&[%M=U\\\L7S7AT MM**G[Y;P;&O;Y[HS9%"E3Z8O3^V;SVH06?E+V_MD5:QBGZS+9VS)R=G!0:)/ M?MH_WE?]HOX[BJU)@89JGM;-1C/Q8:H9NNW;?N_BJM^*OD7;2@VO[_JCLD*? M!^?]X:B4=?Y+;_AS.4V;FG8H@U=71NU?U6=7ZK/1_'VK6JVW(N8&TU"X]1Q- MW%*IL>M(+VJ'SF3JRI;^="RF5:7._6P95O2Y<@ M=Q=(.52R!-'?'/DF`R/!*QF&XDE2)&=NY$Q%$!%D1W&7]&;1LWKGC$7D4^3/ MXS=F@NJ;)*F%[^0W^ITN:FHP7![C#G6=L.+]J7C`J=R*$_^UZFU,PJ>)[NA0 M>G8HXH%454Z+&!4VY>M(J%+AJ3^=N2*JB`[DDVKVX+VJ:1+!^+EJ6<_6WK-Z M:6WGJI6.`N&%VO%5*SYS;*,F-%#=L3]UJJB7/Y[[Z/B%X]GR6W,>",U?=[OE M5KX,P2;LLPD';,(AFW#$)ARS"2=LPBF;T-GC(SI\!%\M.WR][/`5L\/7S`Y? M-3M\W>SPE;/#U\XN7SN[`.TT).@7W^(IC@)$,O!4F!Y/?)JS4+8'BTL]VPY4 MI`EE7SD3>:/BSPL1B9$_"\82BO]%"AV-^R_2<[XK?U8G.WY52^-`H>>^NN9% M=^]3;%/KRJZF$[7HW[S!L?JGFC>4_6]C.8T7GY#HQ7"I!QZW]GS:5QOW5HZ= MJ5.7KMQ'CNM$[U#N4+Z%=5FI3[[]#A^,"B@F4EW^K">)?/)4C%]4UVDVD!;. M)A,1(+IJ28S4[!V(>XR7=_@\H,'%FEF\'ZO+>^&#!;SY!P]GK"VNTP*C?70M MT1O6.6!=`MI>UQ`CH"*:^9I8PE>ME5$&$R!WZ*.)EZYX`B-'4>!X:.ABF`\N MP%QMV\#(ZP`,U(]F1."$O@<&*ULDT9VOE+X&;,^ST16=/7R58_1PT@[X20:U M]=AB&`QGDP>)5C-EM*3S*NTZNF]NNVNQ#"M;6PM]47.TU0W\22W5'<47ZG!I MBR`87%T53]?0M+4T*@0*F71F6.PI9X;'FW!F8,SIYH*&MQ_(<8UR3K!8!.Q^ M8`X!%FR"[2?,9@"-9#V1!#:,1DU'\%$-*`:'AT1U!"O8R2;0V4'G`K!0`=CR MR#D$+'*3KWH?5F[*<.[/O*AGBVG$61/-PN?[\/0*C_20W'C?&AY[[GN>ZC#5 MOO"6N%ON1\+7^DI=[.MK]2@%&+UJB!JK7*=FU-!_BYH_"^])VG7SP;6*99S'GE'(8?]%A_6(_AJ,.0 M0OTUW)7"W3[8>D%M+-!8P0*/&CQ4#6$M/"C"^2*TLT`%:8DG'ZXKGX3[>^!$ MB$>JR6>>H]GX^2;P7QVMUT@T^V%W(@;C;Q7(KK4C2&H*;E^J2VK0(1MN,5)Z M;XH!Z8C4+Z,`P*6Z0%F\G26IG6P0-;F2T;-O#_UH-)OJL0SNY-AZG;M^".9> MRB@>S_$O@]"\0209:S$%LTTODM\@O75_^WG(BEG3FQ9P2L3=? M=:AB#,:1U%B\5-%#+<;V5NJ?,6+1-^K%FQ_8"?N+JO32'R+VNR7]6?#J8%#I M>Z[!28Y4OX%0]X,+G*JN84G+B3*`C"A7/$%"LSE(_T705I$S;F@[WA-` M\4`K(YC0#CK\>:X.,';8\P10?,OW^YC8"QAQ,4!?'7\64BOPOV4+ON[>.>(BZE# MOG$QG;K+7THR`,SO5W[4H6G=@Z!5^\&=R5C7F^&$JO$K!DEZ/O^-C]^@R?M> M&`6SL3)J&$I(`[P+C]N0*P9)VO$>?9*@[4Q:/+NC"7S3H2E,$Z`1[*&L(:HY ME,M5(0:3\R2C421T6,$$Z6M,A*>BV%?)A^"WC^>=,0N3[+A<1^+,' ME]LF,XN"'0W"!EN:PCY5M8(QKVH$);M4M80 MHD^)9/`HQI*A7$S+I=^3^T&_I_>`_NM%@ML'20P1X-WH%^1FF,237$8?S@&T MR(CM=N8`\LW/Q>E:L/9X]"H@G.8:PK@7EM-5TO0F\*_TJ@.]ZLN9/5V)`VES MA_(201)FQBM:G-S\6CBD-SX_3EH0Z#KC.=V77'GWC'RXN;;(^J;VZU+-TITWURK2J MT;M2XVD]DKT@$.^)?62Z7*G@^>WGR^M9-)WIDQ:D MF%23&LHWU_&DN:#!+6W)MU-1-)=OQT@NG0W&2#29#Z:B8$&^G:J21?EV*LIN MS+=C))_/8D,1-_K>?+J>BI+9=#T5Q3*YHDJE$JE.RLIF,_J4E4]E]"DO_%JU M'ILR^E206V?TJ5C8E+]*1U-6.)W1IZQT.J-/6>ED1I_RLLF,/E5*Z_BY:NFB MI&>F4@6IVJB(2K7.Y"$J*Y[-0[2M?&'X;R80FI4O:ZW\],6@='E=EI'/AIE\ M9?'".5QEZ?1DM;)8;MW"5#*]CP]H`&8W[]><#257VXC,I8KV$9$9I"DL]N(C.4+MQ$Q*"$-4+"- MB,P@2>=W`U$(?`M0L!N(@F"/R$V[@2B0Q%<[3,T%\]N(3!E,DZ??DSM0OZ=WW89M1!P,$9#91F0,R&XCH@%H MD1';7V6V$='$Z5H`<94%>Y'H",:]L+QU7 MK]]=_HWPU9NOW7SEYNLV7[7YFDU2;$,9_:+HK!\2H/P$"29V>800!9,^0HA" MV'#X#QM%IV3.`*(SZ.*)(X3H\H4'--!Q&\[SH`"31QQ1Y+><5T+!;3GPB(/C M`A)GIC$HJ7.7&)SBPU?HP/SA*S16R>$K)&CZI"D6(GM@'06V]3`8"I!GL;>= MHD7BY<_`8F'(A(UGY-!@B2.Y:(#$D5PDP/I(+K(XS(=D#OBB(,H.^.(QZ8CD M&6$4P(8#Y)FH>L+&K6>L\X#\4++T#&\@%,$#!)J%Y]LR03#JP-%$V%@UIA/(4S@@VU-YN22R,@^+; M`&:-*V2NQL-K:`^\K2Y-T(Y&XUL%9\DS3'Q5T=:]@`QN"+C%+T@:Q8>E#K7B MX]:'./%9JY0%%-3J=*#%LC]@"KA"Q@MEW)7!%6V^*'KGOTC/^:Y7(/2K&KA\ MXF#Q@OTD)4>F4*>A\YKA,Q MC->*-I1O(4ZMU4Q%^4!#F7V.A#>9F[\!R<:; MT3P;9U`3L2C6M*;!=1G9XF^!>`N2(O%E`#L>:"(!:#=98F#:"-,WBO-+%L!I%@?[5J0P8CY[2 M1`S+LR$<[;D@('T8I`B.C::"'&IZ>X0*>=W*")-EX@1[X&PEUZ"@UW M[@5T,!?M\+-D>'6!04`"BPH'DH^9:]`"9(@`6G?(T-C+#QD>;Q4B`S-?C"A* MCF0N3&N4@L1#E653F95,I4P7,`N30%673N=EVBU)0&(P7/@L#J$@_0^`QF%D M$^YP41P`HA8T46.I9#HH8]EYLAY#L8KEJQ1+)M>J6'R17*M:Z?)B#>OCS)/? DY-@*)JJH]<^+=J+LXF1^ZZ^_K"B8R:V%5X7^#WM;;"; Sat, 15 Apr 2000 07:53:26 -0700 (PDT) (envelope-from roberthuff@rcn.com) Received: from r84aap011262.sbo-smr.ma.cable.rcn.com ([209.6.194.25] helo=rcn.com) by smtp02.mrf.mail.rcn.net with esmtp (Exim 2.12 #3) id 12gTwu-00057D-00 for ports@FreeBSD.org; Sat, 15 Apr 2000 10:53:28 -0400 Message-ID: <38F88263.46D9076D@rcn.com> Date: Sat, 15 Apr 2000 10:53:23 -0400 From: Robert Huff X-Mailer: Mozilla 4.5 [en] (X11; U; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.org Subject: problem installing TKhylafax Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello: I just tried to install tkhylafax-3.0b2 and got: huff@r84aap011262> make ===> Extracting for tkhylafax-3.0b2 >> Checksum OK for tkhylafax-3.0b2.tar.gz. ===> Patching for tkhylafax-3.0b2 ===> Applying FreeBSD patches for tkhylafax-3.0b2 ===> Configuring for tkhylafax-3.0b2 ===> Building for tkhylafax-3.0b2 huff@r84aap011262> make install ===> Installing for tkhylafax-3.0b2 ===> tkhylafax-3.0b2 depends on executable: wish8.2 - found ===> tkhylafax-3.0b2 depends on executable: sendfax - not found ===> Verifying install for sendfax in /usr/ports/comms/hylafax ===> hylafax-4.0.2 is forbidden: Security hole (buffer overflow yielding setuid uucp). ===> Returning to build of tkhylafax-3.0b2 So, if one can't install one of the required componenets, shouldn't tkhylafax be marked as broken? Robert Huff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 8: 0: 5 2000 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 E161437B91E for ; Sat, 15 Apr 2000 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 IAA80001; Sat, 15 Apr 2000 08:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CEEC37B70F for ; Sat, 15 Apr 2000 07:52:05 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA79228; Sat, 15 Apr 2000 07:52:05 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004151452.HAA79228@freefall.freebsd.org> Date: Sat, 15 Apr 2000 07:52:05 -0700 (PDT) From: igor@zynaps.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18021: xruskb port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18021 >Category: ports >Synopsis: xruskb port 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: Sat Apr 15 08:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Igor Vinokurov >Release: 4.0-20000407-STABLE >Organization: >Environment: >Description: Upgrade from 1.9.3 to 1.13.0. Major change: per-window keyboard state. >How-To-Repeat: >Fix: begin 644 xruskb-port.patch.gz M'XL(",,4\S@``W!A=&-H`*5476^;2!1]AE]QI>2A*SS`\&$#JE=V:Q*YJMW* M=KJ)M)*%87!8,-`!$KNK_>\[8)O&#L25^F"CN>?,_3CWWO$"WP=$BREL:9&% M*S&AP5J:."'Q@X@X0'+88\V@RG"_LV7(^7I20GZ>6)+%_<>?03/19UF), M!*O/`[,5D@X&$R'$\7[&?/^EREZ.`@,!O!=2G0W=Q>WB^_SNR;\7V?VY&, M%TY-#_:\Y-U.[Y8?OTQOQK=W,Z;:0TD\MY7,^KP3I&8.U1<__@#^D!6?E?VL6+V--E;^;*K$*.K]]2>[^N.BS76 MRI/;Y:R]N(X-0]8\HF!B=HFA$=_4>PY6-;SJF8JN]EJD2<.U]/4SF^1C2;7A ME30U\DO2M+$UTU*UG]*H'686U$ZW>FRB8%4-GI.FR".^4T1L?^^90QZJAA]W M>)2XQ8;$^6=QFVY:L(<*0R?8/VX1DABY*59T+&XWK;C1[;X![V@[&&2)WHZ& M26!4Z&G.X8K$:S%G'6H$7A=9V8T*J`:LVS'9C+&G6ZMT/..RK]'@I%R9U]8B M>"*+6+9OC\MI>X1TKU_K,S 08GL1!=DC_S]\2?H*60D``)ZQ ` 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 Apr 15 11: 0: 9 2000 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 256EF37B9FF for ; Sat, 15 Apr 2000 11:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA96585; Sat, 15 Apr 2000 11:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dominik.saargate.de (dominik.saargate.de [212.88.133.252]) by hub.freebsd.org (Postfix) with ESMTP id 6112337B852 for ; Sat, 15 Apr 2000 10:55:49 -0700 (PDT) (envelope-from domi@dominik.saargate.de) Received: (from domi@localhost) by dominik.saargate.de (8.9.3/8.9.3) id TAA49942; Sat, 15 Apr 2000 19:55:06 +0200 (CEST) (envelope-from domi) Message-Id: <200004151755.TAA49942@dominik.saargate.de> Date: Sat, 15 Apr 2000 19:55:06 +0200 (CEST) From: domi@saargate.de Reply-To: domi@saargate.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18023: geg update 1.0.1 -> 1.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18023 >Category: ports >Synopsis: geg update 1.0.1 -> 1.0.2 >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 Apr 15 11:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dominik Brettnacher >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff -urN geg.old/Makefile geg/Makefile --- geg.old/Makefile Sat Apr 15 19:53:47 2000 +++ geg/Makefile Sat Apr 15 19:42:04 2000 @@ -6,7 +6,7 @@ # PORTNAME= geg -PORTVERSION= 1.0.1 +PORTVERSION= 1.0.2 CATEGORIES= math MASTER_SITES= http://www.infolaunch.com/~daveb/ \ ftp://metalab.unc.edu/pub/Linux/science/visualization/plotting/ diff -urN geg.old/files/md5 geg/files/md5 --- geg.old/files/md5 Sat Apr 15 19:53:47 2000 +++ geg/files/md5 Sat Apr 15 19:44:04 2000 @@ -1 +1 @@ -MD5 (geg-1.0.1.tar.gz) = 8b12df4e6257641183883883df45d718 +MD5 (geg-1.0.2.tar.gz) = 0c3c15874eb10a0463dc12e680b38081 diff -urN geg.old/patches/patch-aa geg/patches/patch-aa --- geg.old/patches/patch-aa Sat Apr 15 19:53:47 2000 +++ geg/patches/patch-aa Sat Apr 15 19:48:16 2000 @@ -1,6 +1,6 @@ ---- configure.orig Sat Oct 23 16:34:58 1999 -+++ configure Sat Oct 23 16:36:53 1999 -@@ -1161,8 +1161,8 @@ +--- configure.orig Wed Nov 24 00:12:21 1999 ++++ configure Sat Apr 15 19:47:59 2000 +@@ -1160,8 +1160,8 @@ fi fi @@ -9,9 +9,9 @@ +# Extract the first word of "gtk12-config", so it can be a program name with args. +set dummy gtk12-config; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 - echo "configure:1168: checking for $ac_word" >&5 + echo "configure:1167: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_GTK_CFLAGS'+set}'`\" = set"; then -@@ -1176,7 +1176,7 @@ +@@ -1175,7 +1175,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then @@ -20,7 +20,7 @@ break fi done -@@ -1190,8 +1190,8 @@ +@@ -1189,8 +1189,8 @@ echo "$ac_t""no" 1>&6 fi @@ -29,9 +29,9 @@ +# Extract the first word of "gtk12-config", so it can be a program name with args. +set dummy gtk12-config; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 - echo "configure:1197: checking for $ac_word" >&5 + echo "configure:1196: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_GTK_LIBS'+set}'`\" = set"; then -@@ -1205,7 +1205,7 @@ +@@ -1204,7 +1204,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then @@ -40,64 +40,14 @@ break fi done -@@ -1306,14 +1306,14 @@ - echo "$ac_t""no" 1>&6 - fi - --echo $ac_n "checking for main in -lgdk""... $ac_c" 1>&6 --echo "configure:1311: checking for main in -lgdk" >&5 -+echo $ac_n "checking for main in -lgdk12""... $ac_c" 1>&6 -+echo "configure:1311: checking for main in -lgdk12" >&5 - ac_lib_var=`echo gdk'_'main | sed 'y%./+-%__p_%'` - if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" --LIBS="-lgdk $LIBS" -+LIBS="-lgdk12 $LIBS" - cat > conftest.$ac_ext <&6 - fi - --echo $ac_n "checking for main in -lglib""... $ac_c" 1>&6 --echo "configure:1354: checking for main in -lglib" >&5 -+echo $ac_n "checking for main in -lglib12""... $ac_c" 1>&6 -+echo "configure:1354: checking for main in -lglib12" >&5 - ac_lib_var=`echo glib'_'main | sed 'y%./+-%__p_%'` - if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" --LIBS="-lglib $LIBS" -+LIBS="-lglib12 $LIBS" - cat > conftest.$ac_ext <&6 fi -echo $ac_n "checking for main in -lgtk""... $ac_c" 1>&6 --echo "configure:1397: checking for main in -lgtk" >&5 +-echo "configure:1396: checking for main in -lgtk" >&5 +echo $ac_n "checking for main in -lgtk12""... $ac_c" 1>&6 -+echo "configure:1397: checking for main in -lgtk12" >&5 ++echo "configure:1396: checking for main in -lgtk12" >&5 ac_lib_var=`echo gtk'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -106,9 +56,9 @@ -LIBS="-lgtk $LIBS" +LIBS="-lgtk12 $LIBS" cat > conftest.$ac_ext < >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 Apr 15 13:20: 4 2000 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 81FCB37B705 for ; Sat, 15 Apr 2000 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA10107; Sat, 15 Apr 2000 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AA1E37B758 for ; Sat, 15 Apr 2000 13:11:01 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA09430; Sat, 15 Apr 2000 13:11:01 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Message-Id: <200004152011.NAA09430@freefall.freebsd.org> Date: Sat, 15 Apr 2000 13:11:01 -0700 (PDT) From: mjy@pobox.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/18025: jade port complains about libtool port not being up-to-date although libtool isn't installed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18025 >Category: ports >Synopsis: jade port complains about libtool port not being up-to-date although libtool isn't installed >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 Apr 15 13:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Marinos J. Yannikos >Release: 3.4-RELEASE >Organization: >Environment: FreeBSD c0w 3.4-STABLE FreeBSD 3.4-STABLE #6: Tue Feb 15 03:09:18 CET 2000 root@c0w:/usr/src/sys/compile/DEVIL i386 >Description: When the /usr/ports/devel/libtool port isn't installed and /usr/ports/textproc/jade is configured, it complains about libtool not being up-to-date and recommends that it be removed and installed again. Instead of this message, the jade port should depend on libtool port. >How-To-Repeat: - do not install libtool port - try to install jade port >Fix: Add libtool to BUILD_DEPENDS >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 Apr 15 13:50: 5 2000 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 6C27537B76A for ; Sat, 15 Apr 2000 13:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA12569; Sat, 15 Apr 2000 13:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 15 Apr 2000 13:50:03 -0700 (PDT) Message-Id: <200004152050.NAA12569@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Marinos J. Yannikos" Subject: Re: ports/18025: jade port complains about libtool port not being up-to-date although libtool isn't installed Reply-To: "Marinos J. Yannikos" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/18025; it has been noted by GNATS. From: "Marinos J. Yannikos" To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/18025: jade port complains about libtool port not being up-to-date although libtool isn't installed Date: Sat, 15 Apr 2000 22:56:33 +0200 oops, please ignore/close... Libtool was indeed installed here, I was confused because "make deinstall" didn't work in /usr/ports/devel/libtool (it said libtool wasn't installed) and because I didn't see libtool in BUILD_DEPENDS (I didn't look for USE_LIBTOOL ...). -mjy -- ***==> Marinos J. Yannikos ***==> http://pobox.com/~mjy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 13:50:33 2000 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 1A42737B700 for ; Sat, 15 Apr 2000 13:50:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA12585; Sat, 15 Apr 2000 13:50:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by hub.freebsd.org (Postfix) with ESMTP id 2572537B62B for ; Sat, 15 Apr 2000 13:43:54 -0700 (PDT) (envelope-from cj@214.norrgarden.se) Received: (from root@localhost) by 214.norrgarden.se (8.9.3/8.9.3) id WAA14399; Sat, 15 Apr 2000 22:43:49 +0200 (CEST) (envelope-from cj) Message-Id: <200004152043.WAA14399@214.norrgarden.se> Date: Sat, 15 Apr 2000 22:43:49 +0200 (CEST) From: calle.madestrand@norrgarden.se Reply-To: calle.madestrand@norrgarden.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18026: Update port: security/saint Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18026 >Category: ports >Synopsis: Update port: security/saint >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Apr 15 13:50:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Carl Johan Madestrand >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: >Description: Update saint to latest version. >How-To-Repeat: >Fix: diff -urN /usr/ports/security/saint/Makefile saint/Makefile --- /usr/ports/security/saint/Makefile Mon Apr 10 02:08:48 2000 +++ saint/Makefile Sat Apr 15 22:17:21 2000 @@ -6,7 +6,7 @@ # PORTNAME= saint -PORTVERSION= 2.0 +PORTVERSION= 2.0.1 CATEGORIES= security MASTER_SITES= http://www.wwdsi.com/saint/downloads/ \ ftp://ukug.uk.freebsd.org/pub/lord_cj/ \ @@ -16,7 +16,7 @@ MAINTAINER= calle.madestrand@norrgarden.se USE_PERL5= yes -WRKSRC= ${WRKDIR}/saint-2.0 +WRKSRC= ${WRKDIR}/saint-2.0.1 MAKE_ENV= XFLAGS="DAUTH_GID_T=int -DSYS_ERRLIST_DECLARED -DFDSETSIZE=2048" ALL_TARGET= freebsd INSTALL_TARGET= all @@ -25,8 +25,8 @@ @ cd ${WRKSRC}; ${SETENV} ${PERL5} ${WRKSRC}/reconfig pre-install: - ${MKDIR} ${PREFIX}/saint-2.0 + ${MKDIR} ${PREFIX}/saint ${TAR} --directory ${WRKSRC} -cf - . --exclude src --exclude Makefile | \ - ${TAR} --directory ${PREFIX}/saint-2.0 -xf - + ${TAR} --directory ${PREFIX}/saint -xf - .include diff -urN /usr/ports/security/saint/files/md5 saint/files/md5 --- /usr/ports/security/saint/files/md5 Sun Mar 26 07:31:08 2000 +++ saint/files/md5 Sat Apr 15 21:23:10 2000 @@ -1 +1 @@ -MD5 (saint-2.0.beta2.tar.gz) = 900fd265583eaf17ede071b915c32caa +MD5 (saint-2.0.1.beta2.tar.gz) = 9724de6e09204b2a33119ef6cc9b5f27 diff -urN /usr/ports/security/saint/pkg/PLIST saint/pkg/PLIST --- /usr/ports/security/saint/pkg/PLIST Sun Mar 26 07:31:08 2000 +++ saint/pkg/PLIST Sat Apr 15 22:33:44 2000 @@ -1,348 +1,351 @@ -saint-2.0/CHANGES -saint-2.0/README -saint-2.0/READMEs/README.1.3.1 -saint-2.0/READMEs/README.1.3.2 -saint-2.0/READMEs/README.1.3.3 -saint-2.0/READMEs/README.1.3.5 -saint-2.0/READMEs/README.1.3.6 -saint-2.0/READMEs/README.1.3.7 -saint-2.0/READMEs/CHANGES-1.3.6-1.5 -saint-2.0/READMEs/README.SNMP -saint-2.0/READMEs/CHANGES -saint-2.0/bin/snmp.saint -saint-2.0/bin/boot.saint -saint-2.0/bin/dns-chk.saint -saint-2.0/bin/dns.saint -saint-2.0/bin/faux_fping -saint-2.0/bin/finger.saint -saint-2.0/bin/ftp.saint -saint-2.0/bin/fwping -saint-2.0/bin/get_targets -saint-2.0/bin/http.saint -saint-2.0/bin/imap.sara -saint-2.0/bin/nfs-chk.saint -saint-2.0/bin/rex.saint -saint-2.0/bin/rexec.saint -saint-2.0/bin/rlogin.saint -saint-2.0/bin/rpc.saint -saint-2.0/bin/rsh.saint -saint-2.0/bin/rstatd.saint -saint-2.0/bin/rusers.saint -saint-2.0/bin/sendmail.saint -saint-2.0/bin/showmount.saint -saint-2.0/bin/smb.saint -saint-2.0/bin/ssh.sara -saint-2.0/bin/statd.saint -saint-2.0/bin/tcpscan.saint -saint-2.0/bin/tftp.saint -saint-2.0/bin/udpscan.saint -saint-2.0/bin/xhost.saint -saint-2.0/bin/yp-chk.saint -saint-2.0/bin/ypbind.saint -saint-2.0/bin/inn.saint -saint-2.0/bin/login.saint -saint-2.0/bin/pop3.sara -saint-2.0/bin/ftp_bounce.saint -saint-2.0/bin/.http.saint.swp -saint-2.0/bin/ostype.saint -saint-2.0/bin/printer.saint -saint-2.0/bin/mountd.sara -saint-2.0/bin/backdoors.saint -saint-2.0/bin/relay.saint -saint-2.0/bin/md5 -saint-2.0/bin/sys_socket -saint-2.0/bin/timeout -saint-2.0/bin/rcmd -saint-2.0/bin/safe_finger -saint-2.0/bin/rex -saint-2.0/bin/boot -saint-2.0/bin/tcp_scan -saint-2.0/bin/udp_scan -saint-2.0/bin/ftp-scan -saint-2.0/bin/nfs-chk -saint-2.0/bin/yp-chk -saint-2.0/bin/fping -saint-2.0/config/paths.pl -saint-2.0/config/paths.sh -saint-2.0/config/saint.cf -saint-2.0/config/services -saint-2.0/config/version.pl -saint-2.0/config/paths.pl.old -saint-2.0/config/paths.sh.old -saint-2.0/config/SNMP_communities.pl -saint-2.0/html/admin/saint_cf_action.pl -saint-2.0/html/admin/saint_cf_form.pl -saint-2.0/html/data/saint_data_form.pl -saint-2.0/html/data/saint_merge_action.pl -saint-2.0/html/data/saint_open_action.pl -saint-2.0/html/docs/FAQ.html -saint-2.0/html/docs/authors.html -saint-2.0/html/docs/copyright-satan.html -saint-2.0/html/docs/copyright.html -saint-2.0/html/docs/credits.html -saint-2.0/html/docs/dangers.html -saint-2.0/html/docs/design.html -saint-2.0/html/docs/getting_started.html -saint-2.0/html/docs/intro.html -saint-2.0/html/docs/saint.cf.html -saint-2.0/html/docs/saint.db.html -saint-2.0/html/docs/saint.probes.html -saint-2.0/html/docs/saint.rules.html -saint-2.0/html/docs/saint_overview.html -saint-2.0/html/docs/saint_reference.html -saint-2.0/html/docs/system_requirements.html -saint-2.0/html/docs/template.html -saint-2.0/html/docs/the_main_parts.html -saint-2.0/html/docs/user_interface.html -saint-2.0/html/docs/who_should_use.html -saint-2.0/html/dots/blackdot.gif -saint-2.0/html/dots/bluedot.gif -saint-2.0/html/dots/browndot.gif -saint-2.0/html/dots/dot.gif -saint-2.0/html/dots/eyeball.gif -saint-2.0/html/dots/greendot.gif -saint-2.0/html/dots/orangedot.gif -saint-2.0/html/dots/orig.devil.gif -saint-2.0/html/dots/pinkdot.gif -saint-2.0/html/dots/purpledot.gif -saint-2.0/html/dots/reddot.gif -saint-2.0/html/dots/whitedot.gif -saint-2.0/html/dots/yellowdot.gif -saint-2.0/html/images/bckgrnd.jpg -saint-2.0/html/images/saint.gif -saint-2.0/html/images/saint.old.jpg -saint-2.0/html/images/saint_logo.jpg -saint-2.0/html/images/santa.gif -saint-2.0/html/images/stoplights/brown.gif -saint-2.0/html/images/stoplights/red.gif -saint-2.0/html/images/stoplights/yellow.gif -saint-2.0/html/images/Data_Mgmt_banner.gif -saint-2.0/html/images/SAINT-home-banner.gif -saint-2.0/html/images/bottom_border.gif -saint-2.0/html/images/bullet.gif -saint-2.0/html/images/config_mgmt_banner.gif -saint-2.0/html/images/config_mgmt_button.gif -saint-2.0/html/images/data_analysis_banner.gif -saint-2.0/html/images/data_analysis_button.gif -saint-2.0/html/images/data_mgmt_button.gif -saint-2.0/html/images/doc_banner.gif -saint-2.0/html/images/documentation_button.gif -saint-2.0/html/images/home_button.gif -saint-2.0/html/images/target_sel_banner.gif -saint-2.0/html/images/target_selection_button.gif -saint-2.0/html/images/troubleshooting_button.gif -saint-2.0/html/images/wwdsi_logo.gif -saint-2.0/html/name.html -saint-2.0/html/reporting/analysis.pl -saint-2.0/html/reporting/saint_info_OS.pl -saint-2.0/html/reporting/saint_info_OSclass.pl -saint-2.0/html/reporting/saint_info_OStype.pl -saint-2.0/html/reporting/saint_info_class.pl -saint-2.0/html/reporting/saint_info_clients.pl -saint-2.0/html/reporting/saint_info_domain.pl -saint-2.0/html/reporting/saint_info_host.pl -saint-2.0/html/reporting/saint_info_host_action.pl -saint-2.0/html/reporting/saint_info_name.pl -saint-2.0/html/reporting/saint_info_servers.pl -saint-2.0/html/reporting/saint_info_subnet.pl -saint-2.0/html/reporting/saint_info_trusted.pl -saint-2.0/html/reporting/saint_info_trusting.pl -saint-2.0/html/reporting/saint_results_danger.pl -saint-2.0/html/reporting/saint_results_domain.pl -saint-2.0/html/reporting/saint_results_subnet.pl -saint-2.0/html/reporting/saint_results_trusted.pl -saint-2.0/html/reporting/saint_results_trusting.pl -saint-2.0/html/reporting/saint_severity_counts.pl -saint-2.0/html/reporting/saint_severity_hosts.pl -saint-2.0/html/reporting/saint_severity_types.pl -saint-2.0/html/reporting/sort_hosts.pl -saint-2.0/html/running/.saint_run_action.pl.swp -saint-2.0/html/running/.saint_run_form.pl.swp -saint-2.0/html/running/saint_run_action.pl -saint-2.0/html/running/saint_run_form.pl -saint-2.0/html/saint.pl -saint-2.0/html/saint_documentation.pl -saint-2.0/html/tutorials/first_time/analyzing.html -saint-2.0/html/tutorials/first_time/learning_to_use.html -saint-2.0/html/tutorials/first_time/make.html -saint-2.0/html/tutorials/first_time/scanning.html -saint-2.0/html/tutorials/first_time/template.html -saint-2.0/html/tutorials/vulnerability/Archives -saint-2.0/html/tutorials/vulnerability/DNS_vulnerabilities.html -saint-2.0/html/tutorials/vulnerability/FTP_vulnerabilities.html -saint-2.0/html/tutorials/vulnerability/NFS_export_to_unprivileged_programs.html -saint-2.0/html/tutorials/vulnerability/NFS_export_via_portmapper.html -saint-2.0/html/tutorials/vulnerability/NIS_password_file_access.html -saint-2.0/html/tutorials/vulnerability/POP_server.html -saint-2.0/html/tutorials/vulnerability/Possible_DoS_(fraggle)_problem.html -saint-2.0/html/tutorials/vulnerability/REXD_access.html -saint-2.0/html/tutorials/vulnerability/SAINT_password_disclosure.html -saint-2.0/html/tutorials/vulnerability/Sendmail_vulnerabilities.html -saint-2.0/html/tutorials/vulnerability/TFTP_file_access.html -saint-2.0/html/tutorials/vulnerability/Windows_detected.html -saint-2.0/html/tutorials/vulnerability/boink.html -saint-2.0/html/tutorials/vulnerability/backdoor_found.html -saint-2.0/html/tutorials/vulnerability/bonk.html -saint-2.0/html/tutorials/vulnerability/excessive_finger_info.html -saint-2.0/html/tutorials/vulnerability/hacker_program_found.html -saint-2.0/html/tutorials/vulnerability/http_cgi_access.html -saint-2.0/html/tutorials/vulnerability/imap_version.html -saint-2.0/html/tutorials/vulnerability/jolt.html -saint-2.0/html/tutorials/vulnerability/land.html -saint-2.0/html/tutorials/vulnerability/lpd_over_the_internet.html -saint-2.0/html/tutorials/vulnerability/nestea.html -saint-2.0/html/tutorials/vulnerability/netbios_over_the_internet.html -saint-2.0/html/tutorials/vulnerability/newtear.html -saint-2.0/html/tutorials/vulnerability/open_SMB_shares.html -saint-2.0/html/tutorials/vulnerability/pop_version.html -saint-2.0/html/tutorials/vulnerability/remote_login_on_the_internet.html -saint-2.0/html/tutorials/vulnerability/remote_shell_access.html -saint-2.0/html/tutorials/vulnerability/rpc_statd_access.html -saint-2.0/html/tutorials/vulnerability/remote_shell_on_the_internet.html -saint-2.0/html/tutorials/vulnerability/rexec_on_the_Internet.html -saint-2.0/html/tutorials/vulnerability/rstatd_vulnerability.html -saint-2.0/html/tutorials/vulnerability/rusersd_vulnerability.html -saint-2.0/html/tutorials/vulnerability/synk4.html -saint-2.0/html/tutorials/vulnerability/teardrop.html -saint-2.0/html/tutorials/vulnerability/tooltalk_version.html -saint-2.0/html/tutorials/vulnerability/unrestricted_NFS_export.html -saint-2.0/html/tutorials/vulnerability/unrestricted_X_server_access.html -saint-2.0/html/tutorials/vulnerability/unrestricted_modem.html -saint-2.0/html/tutorials/vulnerability/winnuke.html -saint-2.0/html/tutorials/vulnerability/writable_FTP_home_directory.html -saint-2.0/html/tutorials/vulnerability/SSH_vulnerabilities.html -saint-2.0/html/tutorials/vulnerability/http_cgi_info.html -saint-2.0/html/tutorials/vulnerability/sendmail_info.html -saint-2.0/html/tutorials/vulnerability/rootkits.html -saint-2.0/html/tutorials/vulnerability/http_cgi_shells.html -saint-2.0/html/tutorials/vulnerability/SMTP_mail_relay.html -saint-2.0/html/tutorials/vulnerability/sendmail_decode.html -saint-2.0/html/tutorials/vulnerability/FTP_bounce.html -saint-2.0/html/tutorials/vulnerability/calendar_manager.html -saint-2.0/html/tutorials/vulnerability/ODBC_RDS.html -saint-2.0/html/tutorials/vulnerability/http_IIS_access.html -saint-2.0/html/tutorials/vulnerability/sadmind.html -saint-2.0/html/tutorials/vulnerability/http_Cold_Fusion.html -saint-2.0/html/tutorials/vulnerability/http_FrontPage.html -saint-2.0/html/tutorials/vulnerability/http_IIS_samples.html -saint-2.0/html/tutorials/vulnerability/Linux_lpd.html -saint-2.0/html/tutorials/vulnerability/distributed_denial_of_service.html -saint-2.0/html/tutorials/vulnerability/amd_buffer_overflow.html -saint-2.0/html/tutorials/vulnerability/mountd_vulnerabilities.html -saint-2.0/html/tutorials/vulnerability/innd_vulnerabilities.html -saint-2.0/html/tutorials/vulnerability/Guessable_Read_Community.html -saint-2.0/html/tutorials/vulnerability/Guessable_Write_Community.html -saint-2.0/html/tutorials/vulnerability/MMDF_vulnerability.html -saint-2.0/html/tutorials/vulnerability/Netscape_vulnerabilities.html -saint-2.0/html/tutorials/vulnerability/guessed_account_password.html -saint-2.0/html/tutorials/vulnerability/SGI_fam_vulnerability.html -saint-2.0/html/tutorials/vulnerability_tutorials.pl -saint-2.0/include/netinet/if_ether.h -saint-2.0/include/netinet/igmp.h -saint-2.0/include/netinet/in.h -saint-2.0/include/netinet/in_systm.h -saint-2.0/include/netinet/ip.h -saint-2.0/include/netinet/ip_fw.h -saint-2.0/include/netinet/ip_icmp.h -saint-2.0/include/netinet/ip_tcp.h -saint-2.0/include/netinet/ip_udp.h -saint-2.0/include/netinet/ip_var.h -saint-2.0/include/netinet/protocols.h -saint-2.0/include/netinet/tcp.h -saint-2.0/include/netinet/tcp_var.h -saint-2.0/include/netinet/tcpip.h -saint-2.0/include/netinet/udp.h -saint-2.0/include/netinet/udp_var.h -saint-2.0/include/glibc21/rpc/auth.h -saint-2.0/include/glibc21/rpc/auth_des.h -saint-2.0/include/glibc21/rpc/auth_unix.h -saint-2.0/include/glibc21/rpc/clnt.h -saint-2.0/include/glibc21/rpc/netdb.h -saint-2.0/include/glibc21/rpc/pmap_clnt.h -saint-2.0/include/glibc21/rpc/pmap_prot.h -saint-2.0/include/glibc21/rpc/pmap_rmt.h -saint-2.0/include/glibc21/rpc/rpc.h -saint-2.0/include/glibc21/rpc/rpc_msg.h -saint-2.0/include/glibc21/rpc/svc.h -saint-2.0/include/glibc21/rpc/svc_auth.h -saint-2.0/include/glibc21/rpc/types.h -saint-2.0/include/glibc21/rpc/xdr.h -saint-2.0/perl/config.pl -saint-2.0/perl/cops2saint.pl -saint-2.0/perl/domains.pl -saint-2.0/perl/drop_fact.pl -saint-2.0/perl/facts.pl -saint-2.0/perl/fix_hostname.pl -saint-2.0/perl/get_host.pl -saint-2.0/perl/getfqdn.pl -saint-2.0/perl/hostname.pl -saint-2.0/perl/hosttype.pl -saint-2.0/perl/html.old.pl -saint-2.0/perl/html.pl -saint-2.0/perl/infer_facts.pl -saint-2.0/perl/infer_todo.pl -saint-2.0/perl/misc.pl -saint-2.0/perl/patch.txt -saint-2.0/perl/policy-engine.pl -saint-2.0/perl/reconfig.pl -saint-2.0/perl/run-saint.pl -saint-2.0/perl/saint-data.pl -saint-2.0/perl/services.pl -saint-2.0/perl/severities.pl -saint-2.0/perl/todo.pl -saint-2.0/perl/shell.pl -saint-2.0/perl/socket.pl -saint-2.0/perl/status.pl -saint-2.0/perl/subnets.pl -saint-2.0/perl/suser.pl -saint-2.0/perl/targets.pl -saint-2.0/perl/trust.pl -saint-2.0/perl/cve.pl -saint-2.0/perl/html.pl.patch -saint-2.0/perl/text-output.pl -saint-2.0/perllib/README -saint-2.0/perllib/ctime.pl -saint-2.0/perllib/getopts.pl -saint-2.0/perllib/SNMP_Session.pm -saint-2.0/perllib/SNMP_util.pm -saint-2.0/perllib/SNMP_Session-0.65.README -saint-2.0/perllib/BER.pm -saint-2.0/perllib/Net/Telnet.html -saint-2.0/perllib/Net/Telnet.pm -saint-2.0/rules/drop -saint-2.0/rules/facts -saint-2.0/rules/hosttype -saint-2.0/rules/services -saint-2.0/rules/todo -saint-2.0/rules/trust -saint-2.0/rules/password -saint-2.0/rules/cve -saint-2.0/scripts/timescan -saint-2.0/saint -saint-2.0/reconfig -@dirrm saint-2.0/READMEs -@dirrm saint-2.0/bin -@dirrm saint-2.0/config -@dirrm saint-2.0/html/admin -@dirrm saint-2.0/html/data -@dirrm saint-2.0/html/docs -@dirrm saint-2.0/html/dots -@dirrm saint-2.0/html/images/stoplights -@dirrm saint-2.0/html/images -@dirrm saint-2.0/html/reporting -@dirrm saint-2.0/html/running -@dirrm saint-2.0/html/tutorials/vulnerability -@dirrm saint-2.0/html/tutorials/first_time -@dirrm saint-2.0/html/tutorials -@dirrm saint-2.0/html -@dirrm saint-2.0/include/netinet -@dirrm saint-2.0/include/glibc21/rpc -@dirrm saint-2.0/include/glibc21 -@dirrm saint-2.0/include -@dirrm saint-2.0/perl -@dirrm saint-2.0/perllib/Net -@dirrm saint-2.0/perllib -@dirrm saint-2.0/scripts -@dirrm saint-2.0/rules -@dirrm saint-2.0/superior -@dirrm saint-2.0 +saint/CHANGES +saint/README +saint/READMEs/README.1.3.1 +saint/READMEs/README.1.3.2 +saint/READMEs/README.1.3.3 +saint/READMEs/README.1.3.5 +saint/READMEs/README.1.3.6 +saint/READMEs/README.1.3.7 +saint/READMEs/CHANGES-1.3.6-1.5 +saint/READMEs/README.SNMP +saint/READMEs/CHANGES +saint/bin/snmp.saint +saint/bin/boot.saint +saint/bin/dns-chk.saint +saint/bin/dns.saint +saint/bin/faux_fping +saint/bin/finger.saint +saint/bin/ftp.saint +saint/bin/fwping +saint/bin/get_targets +saint/bin/http.saint +saint/bin/imap.sara +saint/bin/nfs-chk.saint +saint/bin/rex.saint +saint/bin/rexec.saint +saint/bin/rlogin.saint +saint/bin/rpc.saint +saint/bin/rsh.saint +saint/bin/rstatd.saint +saint/bin/rusers.saint +saint/bin/sendmail.saint +saint/bin/showmount.saint +saint/bin/smb.saint +saint/bin/ssh.sara +saint/bin/statd.saint +saint/bin/tcpscan.saint +saint/bin/tftp.saint +saint/bin/udpscan.saint +saint/bin/xhost.saint +saint/bin/yp-chk.saint +saint/bin/ypbind.saint +saint/bin/inn.saint +saint/bin/login.saint +saint/bin/pop3.sara +saint/bin/ftp_bounce.saint +saint/bin/.http.saint.swp +saint/bin/ostype.saint +saint/bin/printer.saint +saint/bin/mountd.sara +saint/bin/backdoors.saint +saint/bin/relay.saint +saint/bin/md5 +saint/bin/sys_socket +saint/bin/timeout +saint/bin/rcmd +saint/bin/safe_finger +saint/bin/rex +saint/bin/boot +saint/bin/tcp_scan +saint/bin/udp_scan +saint/bin/ftp-scan +saint/bin/nfs-chk +saint/bin/yp-chk +saint/bin/fping +saint/config/paths.pl +saint/config/paths.sh +saint/config/saint.cf +saint/config/services +saint/config/version.pl +saint/config/paths.pl.old +saint/config/paths.sh.old +saint/config/SNMP_communities.pl +saint/html/admin/saint_cf_action.pl +saint/html/admin/saint_cf_form.pl +saint/html/data/saint_data_form.pl +saint/html/data/saint_merge_action.pl +saint/html/data/saint_open_action.pl +saint/html/docs/cve.html +saint/html/docs/FAQ.html +saint/html/docs/authors.html +saint/html/docs/copyright-satan.html +saint/html/docs/copyright.html +saint/html/docs/credits.html +saint/html/docs/dangers.html +saint/html/docs/design.html +saint/html/docs/getting_started.html +saint/html/docs/intro.html +saint/html/docs/saint.cf.html +saint/html/docs/saint.db.html +saint/html/docs/saint.probes.html +saint/html/docs/saint.rules.html +saint/html/docs/saint_overview.html +saint/html/docs/saint_reference.html +saint/html/docs/system_requirements.html +saint/html/docs/template.html +saint/html/docs/the_main_parts.html +saint/html/docs/user_interface.html +saint/html/docs/who_should_use.html +saint/html/dots/blackdot.gif +saint/html/dots/bluedot.gif +saint/html/dots/browndot.gif +saint/html/dots/dot.gif +saint/html/dots/eyeball.gif +saint/html/dots/greendot.gif +saint/html/dots/orangedot.gif +saint/html/dots/orig.devil.gif +saint/html/dots/pinkdot.gif +saint/html/dots/purpledot.gif +saint/html/dots/reddot.gif +saint/html/dots/whitedot.gif +saint/html/dots/yellowdot.gif +saint/html/images/long_bottom_border.gif +saint/html/images/bckgrnd.jpg +saint/html/images/saint.gif +saint/html/images/saint.old.jpg +saint/html/images/saint_logo.jpg +saint/html/images/santa.gif +saint/html/images/stoplights/brown.gif +saint/html/images/stoplights/red.gif +saint/html/images/stoplights/yellow.gif +saint/html/images/Data_Mgmt_banner.gif +saint/html/images/SAINT-home-banner.gif +saint/html/images/bottom_border.gif +saint/html/images/bullet.gif +saint/html/images/config_mgmt_banner.gif +saint/html/images/config_mgmt_button.gif +saint/html/images/data_analysis_banner.gif +saint/html/images/data_analysis_button.gif +saint/html/images/data_mgmt_button.gif +saint/html/images/doc_banner.gif +saint/html/images/documentation_button.gif +saint/html/images/home_button.gif +saint/html/images/target_sel_banner.gif +saint/html/images/target_selection_button.gif +saint/html/images/troubleshooting_button.gif +saint/html/images/wwdsi_logo.gif +saint/html/name.html +saint/html/reporting/analysis.pl +saint/html/reporting/saint_info_OS.pl +saint/html/reporting/saint_info_OSclass.pl +saint/html/reporting/saint_info_OStype.pl +saint/html/reporting/saint_info_class.pl +saint/html/reporting/saint_info_clients.pl +saint/html/reporting/saint_info_domain.pl +saint/html/reporting/saint_info_host.pl +saint/html/reporting/saint_info_host_action.pl +saint/html/reporting/saint_info_name.pl +saint/html/reporting/saint_info_servers.pl +saint/html/reporting/saint_info_subnet.pl +saint/html/reporting/saint_info_trusted.pl +saint/html/reporting/saint_info_trusting.pl +saint/html/reporting/saint_results_danger.pl +saint/html/reporting/saint_results_domain.pl +saint/html/reporting/saint_results_subnet.pl +saint/html/reporting/saint_results_trusted.pl +saint/html/reporting/saint_results_trusting.pl +saint/html/reporting/saint_severity_counts.pl +saint/html/reporting/saint_severity_hosts.pl +saint/html/reporting/saint_severity_types.pl +saint/html/reporting/sort_hosts.pl +saint/html/running/.saint_run_action.pl.swp +saint/html/running/.saint_run_form.pl.swp +saint/html/running/saint_run_action.pl +saint/html/running/saint_run_form.pl +saint/html/saint.pl +saint/html/saint_documentation.pl +saint/html/tutorials/first_time/analyzing.html +saint/html/tutorials/first_time/learning_to_use.html +saint/html/tutorials/first_time/make.html +saint/html/tutorials/first_time/scanning.html +saint/html/tutorials/first_time/template.html +saint/html/tutorials/vulnerability/Possible_fraggle_problem.html +saint/html/tutorials/vulnerability/objectserver_vulnerability.html +saint/html/tutorials/vulnerability/Archives +saint/html/tutorials/vulnerability/DNS_vulnerabilities.html +saint/html/tutorials/vulnerability/FTP_vulnerabilities.html +saint/html/tutorials/vulnerability/NFS_export_to_unprivileged_programs.html +saint/html/tutorials/vulnerability/NFS_export_via_portmapper.html +saint/html/tutorials/vulnerability/NIS_password_file_access.html +saint/html/tutorials/vulnerability/POP_server.html +saint/html/tutorials/vulnerability/REXD_access.html +saint/html/tutorials/vulnerability/SAINT_password_disclosure.html +saint/html/tutorials/vulnerability/Sendmail_vulnerabilities.html +saint/html/tutorials/vulnerability/TFTP_file_access.html +saint/html/tutorials/vulnerability/Windows_detected.html +saint/html/tutorials/vulnerability/boink.html +saint/html/tutorials/vulnerability/backdoor_found.html +saint/html/tutorials/vulnerability/bonk.html +saint/html/tutorials/vulnerability/excessive_finger_info.html +saint/html/tutorials/vulnerability/hacker_program_found.html +saint/html/tutorials/vulnerability/http_cgi_access.html +saint/html/tutorials/vulnerability/imap_version.html +saint/html/tutorials/vulnerability/jolt.html +saint/html/tutorials/vulnerability/land.html +saint/html/tutorials/vulnerability/lpd_over_the_internet.html +saint/html/tutorials/vulnerability/nestea.html +saint/html/tutorials/vulnerability/netbios_over_the_internet.html +saint/html/tutorials/vulnerability/newtear.html +saint/html/tutorials/vulnerability/open_SMB_shares.html +saint/html/tutorials/vulnerability/pop_version.html +saint/html/tutorials/vulnerability/remote_shell_access.html +saint/html/tutorials/vulnerability/rpc_statd_access.html +saint/html/tutorials/vulnerability/rexec_on_the_Internet.html +saint/html/tutorials/vulnerability/rstatd_vulnerability.html +saint/html/tutorials/vulnerability/rusersd_vulnerability.html +saint/html/tutorials/vulnerability/synk4.html +saint/html/tutorials/vulnerability/teardrop.html +saint/html/tutorials/vulnerability/tooltalk_version.html +saint/html/tutorials/vulnerability/unrestricted_NFS_export.html +saint/html/tutorials/vulnerability/unrestricted_X_server_access.html +saint/html/tutorials/vulnerability/unrestricted_modem.html +saint/html/tutorials/vulnerability/winnuke.html +saint/html/tutorials/vulnerability/writable_FTP_home_directory.html +saint/html/tutorials/vulnerability/SSH_vulnerabilities.html +saint/html/tutorials/vulnerability/http_cgi_info.html +saint/html/tutorials/vulnerability/sendmail_info.html +saint/html/tutorials/vulnerability/rootkits.html +saint/html/tutorials/vulnerability/http_cgi_shells.html +saint/html/tutorials/vulnerability/SMTP_mail_relay.html +saint/html/tutorials/vulnerability/sendmail_decode.html +saint/html/tutorials/vulnerability/FTP_bounce.html +saint/html/tutorials/vulnerability/calendar_manager.html +saint/html/tutorials/vulnerability/ODBC_RDS.html +saint/html/tutorials/vulnerability/http_IIS_access.html +saint/html/tutorials/vulnerability/sadmind.html +saint/html/tutorials/vulnerability/http_Cold_Fusion.html +saint/html/tutorials/vulnerability/http_FrontPage.html +saint/html/tutorials/vulnerability/http_IIS_samples.html +saint/html/tutorials/vulnerability/Linux_lpd.html +saint/html/tutorials/vulnerability/distributed_denial_of_service.html +saint/html/tutorials/vulnerability/amd_buffer_overflow.html +saint/html/tutorials/vulnerability/mountd_vulnerabilities.html +saint/html/tutorials/vulnerability/innd_vulnerabilities.html +saint/html/tutorials/vulnerability/Guessable_Read_Community.html +saint/html/tutorials/vulnerability/Guessable_Write_Community.html +saint/html/tutorials/vulnerability/MMDF_vulnerability.html +saint/html/tutorials/vulnerability/Netscape_vulnerabilities.html +saint/html/tutorials/vulnerability/guessed_account_password.html +saint/html/tutorials/vulnerability/SGI_fam_vulnerability.html +saint/html/tutorials/vulnerability_tutorials.pl +saint/html/tutorials/vulnerability/remote_shell_on_the_Internet.html +saint/html/tutorials/vulnerability/remote_login_on_the_Internet.html +saint/include/netinet/if_ether.h +saint/include/netinet/igmp.h +saint/include/netinet/in.h +saint/include/netinet/in_systm.h +saint/include/netinet/ip.h +saint/include/netinet/ip_fw.h +saint/include/netinet/ip_icmp.h +saint/include/netinet/ip_tcp.h +saint/include/netinet/ip_udp.h +saint/include/netinet/ip_var.h +saint/include/netinet/protocols.h +saint/include/netinet/tcp.h +saint/include/netinet/tcp_var.h +saint/include/netinet/tcpip.h +saint/include/netinet/udp.h +saint/include/netinet/udp_var.h +saint/include/glibc21/rpc/auth.h +saint/include/glibc21/rpc/auth_des.h +saint/include/glibc21/rpc/auth_unix.h +saint/include/glibc21/rpc/clnt.h +saint/include/glibc21/rpc/netdb.h +saint/include/glibc21/rpc/pmap_clnt.h +saint/include/glibc21/rpc/pmap_prot.h +saint/include/glibc21/rpc/pmap_rmt.h +saint/include/glibc21/rpc/rpc.h +saint/include/glibc21/rpc/rpc_msg.h +saint/include/glibc21/rpc/svc.h +saint/include/glibc21/rpc/svc_auth.h +saint/include/glibc21/rpc/types.h +saint/include/glibc21/rpc/xdr.h +saint/perl/config.pl +saint/perl/cops2saint.pl +saint/perl/domains.pl +saint/perl/drop_fact.pl +saint/perl/facts.pl +saint/perl/fix_hostname.pl +saint/perl/get_host.pl +saint/perl/getfqdn.pl +saint/perl/hostname.pl +saint/perl/hosttype.pl +saint/perl/html.old.pl +saint/perl/html.pl +saint/perl/infer_facts.pl +saint/perl/infer_todo.pl +saint/perl/misc.pl +saint/perl/patch.txt +saint/perl/policy-engine.pl +saint/perl/reconfig.pl +saint/perl/run-saint.pl +saint/perl/saint-data.pl +saint/perl/services.pl +saint/perl/severities.pl +saint/perl/todo.pl +saint/perl/shell.pl +saint/perl/socket.pl +saint/perl/status.pl +saint/perl/subnets.pl +saint/perl/suser.pl +saint/perl/targets.pl +saint/perl/trust.pl +saint/perl/cve.pl +saint/perl/html.pl.patch +saint/perl/text-output.pl +saint/perllib/README +saint/perllib/ctime.pl +saint/perllib/getopts.pl +saint/perllib/SNMP_Session.pm +saint/perllib/SNMP_util.pm +saint/perllib/SNMP_Session-0.65.README +saint/perllib/BER.pm +saint/perllib/Net/Telnet.html +saint/perllib/Net/Telnet.pm +saint/rules/drop +saint/rules/facts +saint/rules/hosttype +saint/rules/services +saint/rules/todo +saint/rules/trust +saint/rules/password +saint/rules/cve +saint/scripts/timescan +saint/saint +saint/reconfig +@dirrm saint/READMEs +@dirrm saint/bin +@dirrm saint/config +@dirrm saint/html/admin +@dirrm saint/html/data +@dirrm saint/html/docs +@dirrm saint/html/dots +@dirrm saint/html/images/stoplights +@dirrm saint/html/images +@dirrm saint/html/reporting +@dirrm saint/html/running +@dirrm saint/html/tutorials/vulnerability +@dirrm saint/html/tutorials/first_time +@dirrm saint/html/tutorials +@dirrm saint/html +@dirrm saint/include/netinet +@dirrm saint/include/glibc21/rpc +@dirrm saint/include/glibc21 +@dirrm saint/include +@dirrm saint/perl +@dirrm saint/perllib/Net +@dirrm saint/perllib +@dirrm saint/scripts +@dirrm saint/rules +@dirrm saint/superior +@dirrm saint >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 Apr 15 14:46:23 2000 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 E5C3537B55F; Sat, 15 Apr 2000 14:46:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA17448; Sat, 15 Apr 2000 14:46:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Sat, 15 Apr 2000 14:46:21 -0700 (PDT) From: Message-Id: <200004152146.OAA17448@freefall.freebsd.org> To: dennisjun@yahoo.com, kris@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18018: /usr/ports/graphics/mtv doesn't exist on the servers Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/ports/graphics/mtv doesn't exist on the servers State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Sat Apr 15 14:46:04 PDT 2000 State-Changed-Why: Port updated to 1.1.1.0, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 14:54: 9 2000 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 7FF7737B5C9; Sat, 15 Apr 2000 14:54:08 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA40732; Sat, 15 Apr 2000 14:54:08 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Sat, 15 Apr 2000 14:54:08 -0700 (PDT) From: Message-Id: <200004152154.OAA40732@freefall.freebsd.org> To: mjy@pobox.com, kris@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18025: jade port complains about libtool port not being up-to-date although libtool isn't installed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: jade port complains about libtool port not being up-to-date although libtool isn't installed State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Sat Apr 15 14:53:51 PDT 2000 State-Changed-Why: Closed at submitter's request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 16:43:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 8A10537B55B for ; Sat, 15 Apr 2000 16:43:46 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id QAA29914 for ; Sat, 15 Apr 2000 16:43:45 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 9348518B9; Sat, 15 Apr 2000 19:43:37 -0400 (EDT) Date: Sat, 15 Apr 2000 19:43:37 -0400 From: Will Andrews To: FreeBSD Ports Subject: HEADS UP: KDE2 import into tree Message-ID: <20000415194337.E33593@argon.blackdawn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I am going to begin my initial committing of KDE 2 into the ports tree. At this time, I have successfully built kdelibs2+kde-qt-addon, of the April 14, 2000 snapshots. They require Qt 2.1. I will also be importing a few other KDE2 things, such as kdeadmin, kdebase, kdegraphics, kdegames, kdemultimedia, kdenetwork, kdetoys, koffice, korganizer, kdesupport, and maybe one or two other things. One thing that should happen while this is going on is the change of USE_QT2 to use the newer 2.1 release. I'm hoping for input from Imura about this.. I think most Qt2-based ports should be able to convert to Qt 2.1 fairly easily, if not instantly. Comments, thoughts, helpful hints? -- 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 Sat Apr 15 16:46: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 239E137B7B3 for ; Sat, 15 Apr 2000 16:45:58 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca7-28.ix.netcom.com [209.109.235.28]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id TAA26169; Sat, 15 Apr 2000 19:45:54 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id QAA19859; Sat, 15 Apr 2000 16:45:52 -0700 (PDT) To: Will Andrews Cc: FreeBSD Ports Subject: Re: HEADS UP: KDE2 import into tree References: <20000415194337.E33593@argon.blackdawn.com> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 15 Apr 2000 16:45:51 -0700 In-Reply-To: Will Andrews's message of "Sat, 15 Apr 2000 19:43:37 -0400" Message-ID: Lines: 5 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Comments, thoughts, helpful hints? Please ask for a repository copy before you do the import. :) -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 16:50:12 2000 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 868B537B828 for ; Sat, 15 Apr 2000 16:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA94955; Sat, 15 Apr 2000 16:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hyperhost.net (hyperhost.net [207.159.132.249]) by hub.freebsd.org (Postfix) with ESMTP id 8306237B585 for ; Sat, 15 Apr 2000 16:43:20 -0700 (PDT) (envelope-from root@hyperhost.net) Received: from foobar.foobar.eyep.net (postfix@p5.a8.du.radix.net [207.192.132.133]) by hyperhost.net (8.9.3/8.9.3) with ESMTP id TAA10861 for ; Sat, 15 Apr 2000 19:43:11 -0400 (EDT) Received: by foobar.foobar.eyep.net (Postfix, from userid 0) id 41054137F0D; Sat, 15 Apr 2000 19:41:10 -0400 (EDT) Message-Id: <20000415234110.41054137F0D@foobar.foobar.eyep.net> Date: Sat, 15 Apr 2000 19:41:10 -0400 (EDT) From: patseal@hyperhost.net Reply-To: patseal@hyperhost.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18027: New Port: mscompress Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18027 >Category: ports >Synopsis: New Port: mscompress >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 Apr 15 16:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Seal >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Tested on 4.0-STABLE >Description: Microsoft "compress.exe/expand.exe" compatible (de)compressor >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: # # mscompress # mscompress/files # mscompress/files/md5 # mscompress/pkg # mscompress/pkg/COMMENT # mscompress/pkg/DESCR # mscompress/pkg/PLIST # mscompress/Makefile # echo c - mscompress mkdir -p mscompress > /dev/null 2>&1 echo c - mscompress/files mkdir -p mscompress/files > /dev/null 2>&1 echo x - mscompress/files/md5 sed 's/^X//' >mscompress/files/md5 << 'END-of-mscompress/files/md5' XMD5 (mscompress-0.3.tar.bz2) = e85fe2fb0df95a7a921ecd867933ff89 END-of-mscompress/files/md5 echo c - mscompress/pkg mkdir -p mscompress/pkg > /dev/null 2>&1 echo x - mscompress/pkg/COMMENT sed 's/^X//' >mscompress/pkg/COMMENT << 'END-of-mscompress/pkg/COMMENT' XMicrosoft "compress.exe/expand.exe" compatible (de)compressor END-of-mscompress/pkg/COMMENT echo x - mscompress/pkg/DESCR sed 's/^X//' >mscompress/pkg/DESCR << 'END-of-mscompress/pkg/DESCR' XMicrosoft "compress.exe/expand.exe" compatible (de)compressor X XThis package contains two programs: X Xmsexpand, which decompress files compressed by Microsoft compress.exe utility X(e.g. Win 3.x installation files) X Xmscompress, which compress files using LZ77 compression algorithm. Output Xfiles can be decompressed using Microsoft expand.exe or msexpand(1). X XWWW: none END-of-mscompress/pkg/DESCR echo x - mscompress/pkg/PLIST sed 's/^X//' >mscompress/pkg/PLIST << 'END-of-mscompress/pkg/PLIST' Xbin/mscompress Xbin/msexpand END-of-mscompress/pkg/PLIST echo x - mscompress/Makefile sed 's/^X//' >mscompress/Makefile << 'END-of-mscompress/Makefile' X# Ports collection makefile for: mscompress X# Date created: 15 Apr 2000 X# Whom: Patrick Seal X# X# $FreeBSD$ X# X XPORTNAME= mscompress XPORTVERSION= 0.3 XCATEGORIES= archivers XMASTER_SITES= ftp://ftp.penguin.cz/pub/users/mhi/mscompress/ XEXTRACT_SUFX= .tar.bz2 X XMAINTAINER= patseal@hyperhost.net X XUSE_BZIP2= yes XHAS_CONFIGURE= yes X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/mscompress ${PREFIX}/bin X ${INSTALL_PROGRAM} ${WRKSRC}/msexpand ${PREFIX}/bin X X.include END-of-mscompress/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 Apr 15 16:53:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 067D437B592; Sat, 15 Apr 2000 16:53:10 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id QAA30046; Sat, 15 Apr 2000 16:53:04 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id A10F018B9; Sat, 15 Apr 2000 19:52:57 -0400 (EDT) Date: Sat, 15 Apr 2000 19:52:57 -0400 From: Will Andrews To: Satoshi - Ports Wraith - Asami Cc: Will Andrews , FreeBSD Ports Subject: Re: HEADS UP: KDE2 import into tree Message-ID: <20000415195257.F33593@argon.blackdawn.com> References: <20000415194337.E33593@argon.blackdawn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from asami@FreeBSD.ORG on Sat, Apr 15, 2000 at 04:45:51PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Apr 15, 2000 at 04:45:51PM -0700, Satoshi - Ports Wraith - Asami wrote: > Please ask for a repository copy before you do the import. :) I told you, I already planned on doing as such, with the ports that have existing cousins. But only once I'm done with them, for certainty. ;> [ remember, i said i would ask, in a message on freefall... ] There is one thing that is doubtful, though. The KDE people have a little addon to Qt called "kde-qt-addon", which is required for kdelibs2. I'm not sure if a repo-copy should be performed from any specific port, since it is not only related to kde, but also qt. I would have to recommand a pure import, in this case. Do you know of any libraries that are intended as extensions to other libraries, but are intended to be used with a library based on said library? I'm looking for precedent here. -- 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 Sat Apr 15 16:59: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 830B137B592; Sat, 15 Apr 2000 16:58:51 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (01-037.dial.008.popsite.net [209.69.194.37]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id QAA30145; Sat, 15 Apr 2000 16:58:44 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 67C8318B9; Sat, 15 Apr 2000 19:58:36 -0400 (EDT) Date: Sat, 15 Apr 2000 19:58:36 -0400 From: Will Andrews To: Will Andrews Cc: Satoshi - Ports Wraith - Asami , FreeBSD Ports Subject: Re: HEADS UP: KDE2 import into tree Message-ID: <20000415195836.G33593@argon.blackdawn.com> References: <20000415194337.E33593@argon.blackdawn.com> <20000415195257.F33593@argon.blackdawn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000415195257.F33593@argon.blackdawn.com>; from andrews@TECHNOLOGIST.COM on Sat, Apr 15, 2000 at 07:52:57PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Apr 15, 2000 at 07:52:57PM -0400, Will Andrews wrote: > import, in this case. Do you know of any libraries that are intended as > extensions to other libraries, but are intended to be used with a library > based on said library? I'm looking for precedent here. Sorry.. this was confusing. Here's what the library dependency looks like: /--------kde-qt-addon---------\ Qt 2.1---------------------------kdelibs2 Do you know of any other libraries in kde-qt-addon's situation? If not, then I think a raw import, rather than a repo-copy and then an import, should be done. I will email you when I've finished getting the kinks out of kdelibs2, so you can do the repo-copy for that. -- 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 Sat Apr 15 17: 0: 6 2000 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 48AE637B828 for ; Sat, 15 Apr 2000 17:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA96024; Sat, 15 Apr 2000 17:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hyperhost.net (hyperhost.net [207.159.132.249]) by hub.freebsd.org (Postfix) with ESMTP id DEDF837B50E for ; Sat, 15 Apr 2000 16:53:09 -0700 (PDT) (envelope-from root@hyperhost.net) Received: from foobar.foobar.eyep.net (postfix@p5.a8.du.radix.net [207.192.132.133]) by hyperhost.net (8.9.3/8.9.3) with ESMTP id TAA12523 for ; Sat, 15 Apr 2000 19:53:07 -0400 (EDT) Received: by foobar.foobar.eyep.net (Postfix, from userid 0) id 91DE3137F0D; Sat, 15 Apr 2000 19:51:10 -0400 (EDT) Message-Id: <20000415235110.91DE3137F0D@foobar.foobar.eyep.net> Date: Sat, 15 Apr 2000 19:51:10 -0400 (EDT) From: patseal@hyperhost.net Reply-To: patseal@hyperhost.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18028: boxes Makefile bug Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18028 >Category: ports >Synopsis: boxes Makefile bug >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 Apr 15 17:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Seal >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: >Description: I submitted this a long time ago, durring the port freeze for 4.0. so please close: ports/17327 >How-To-Repeat: >Fix: *** Makefile.orig Fri Apr 14 04:45:24 2000 --- Makefile Sat Apr 15 19:50:33 2000 *************** *** 17,25 **** MAN1= boxes.1 USE_GMAKE= yes ! ! do-build: ! cd $(WRKSRC); $(GMAKE) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/boxes ${PREFIX}/bin --- 17,23 ---- MAN1= boxes.1 USE_GMAKE= yes ! ALL_TARGET= do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/boxes ${PREFIX}/bin >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 Apr 15 17:40:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from firehouse.net (spook.networkoperations.com [209.42.203.59]) by hub.freebsd.org (Postfix) with SMTP id 6DE2037B867 for ; Sat, 15 Apr 2000 17:40:22 -0700 (PDT) (envelope-from abc@firehouse.net) Received: (qmail 12751 invoked by uid 1000); 16 Apr 2000 00:40:20 -0000 Date: Sat, 15 Apr 2000 20:40:19 -0400 From: Alan Clegg To: jmz@FreeBSD.org Cc: ports@freebsd.org Subject: XFree86 port broken Message-ID: <20000415204019.D8401@ecto.greenpeas.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It would seem that the port of XFree86-3.3.6 is broken. This is from a system cvs'upd April 14th at 17:12 US (Eastern). I just checked and confirmed that there is not a newer port. Seemingly, patches should be applied into /usr/ports/x11/XFree86/work/xc and not into what it is trying... When attempting to build, I get the following: Assuming that you have fetched a USA-Legal Wraphelp.c. ===> Extracting for XFree86-3.3.6 >> Checksum OK for xc/X336src-1.tgz. >> Checksum OK for xc/X336src-2.tgz. >> Checksum OK for xc/fix-01-r128. ===> Patching for XFree86-3.3.6 ===> Applying distribution patches for XFree86-3.3.6 ===> Applying FreeBSD patches for XFree86-3.3.6 patch: **** can't cd to /usr/ports/x11/XFree86/work/XFree86-3.3.6: No such file or directory *** Error code 1 Stop in /usr/ports/x11/XFree86. *** Error code 1 Stop in /usr/ports/x11/XFree86. *** Error code 1 Stop in /usr/ports/x11/XFree86. *** Error code 1 Stop in /usr/ports/x11/XFree86. *** Error code 1 Stop in /usr/ports/x11/XFree86. If I attempt to make again, I get: i 140} make ===> Patching for XFree86-3.3.6 ===> Applying distribution patches for XFree86-3.3.6 Reversed (or previously applied) patch detected! Assume -R? [y] ^C AlanC -- \ Alan B. Clegg Just because I can \ abc@firehouse.net does not mean I will. \ \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 18:15:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 5269D37B55B for ; Sat, 15 Apr 2000 18:15:19 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from admin (admin.westbend.net [209.224.254.141]) by mail.westbend.net (8.9.3/8.9.3) with SMTP id UAA27789 for ; Sat, 15 Apr 2000 20:15:15 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <016b01bfa741$38ee08e0$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: "FreeBSD-Ports" Subject: Apache13: crypt, descrypt libraries Date: Sat, 15 Apr 2000 20:15:15 -0500 Organization: West Bend Internet MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.3825.400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.3825.400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm working on the new apache13 ports, but I am having a problem with the crypt/descrypt library dependency. What I need for the port to do is to make it so that it can be built with either library depending on the admins requirements. I fixed the Apache13 configure script to allow a user to choose to build the apache server with the descrypt library, and patched src/Configure so that -l@CRYPT@ could be replaced with either crypt or descrypt. Before I compiled the port I switched the crypt links to scrypt. But after the port compiles, ldd still shows apache, htpasswd, suexec as being linked with libcrypt.so.2 instead of being linked with libdescrypt.so.2. And when htpasswd is run, it creates md5 passwords instead of DES passwords. Changing the crypt links back to descrypt, and now htpasswd creates DES passwords. I changed src/Makefile & src/support/Makefile, to use /usr/lib/libdescrypt.a instead of -ldescrypt, and recompiled. htpasswd now creates both DES and MD5 passwords ( use -m for MD5) (NOTE: I switched the crypt links to scrypt before the compile). Is the only way to compile apache with the descrypt library is to compile it in statically? Or is there another way to compile the descrypt library into the apache sources? The current Apache13 module ports with the crypt/descrypt change is at: http://www.westbend.net/~hetzels/mod_apache13.tgz NOTE: These ports still use -ldescrypt, and haven't been updated to the new PKGNAME/PKGVERSION requirements. The reason for this change to the behavior of the Apache13 port is due to the requirement for mod_frontpage needing the Apache server to use DES passwords (MS/RTR compiled fpsrvadm.exe with the descrypt library). I have also received past request to make the Apache13-FP port compile with the descrypt library as they didn't want to have to change their crypt links to descrypt. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 18:16:57 2000 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 E2F2B37B577; Sat, 15 Apr 2000 18:16:55 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA02698; Sat, 15 Apr 2000 18:16:55 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Date: Sat, 15 Apr 2000 18:16:55 -0700 (PDT) Message-Id: <200004160116.SAA02698@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: jmz set sender to jmz@FreeBSD.org using -f From: Jean-Marc Zucconi To: abc@firehouse.net Cc: ports@freebsd.org In-reply-to: <20000415204019.D8401@ecto.greenpeas.org> (message from Alan Clegg on Sat, 15 Apr 2000 20:40:19 -0400) Subject: Re: XFree86 port broken X-Mailer: Emacs References: <20000415204019.D8401@ecto.greenpeas.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> Alan Clegg writes: > It would seem that the port of XFree86-3.3.6 is broken. This is from a > system cvs'upd April 14th at 17:12 US (Eastern). I just checked and > confirmed that there is not a newer port. Try the following patch (untested :-)) Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11/XFree86/Makefile,v retrieving revision 1.75 diff -u -r1.75 Makefile --- Makefile 2000/04/13 19:09:04 1.75 +++ Makefile 2000/04/16 01:17:23 @@ -32,6 +32,7 @@ INSTALL_TARGET= install install.man DIST_SUBDIR= xc PATCH_DIST_ARGS=-p0 -E -d ${WRKDIR} --quiet +PATCH_ARGS= -p0 -E -d ${WRKDIR}/${DIST_SUBDIR} --quiet SCRIPTS_ENV= OSVERSION=${OSVERSION} # can't use USE_X_PREFIX here -- it will cause a circular dependency PREFIX= ${X11BASE} -- Jean-Marc Zucconi PGP Key: finger jmz@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 18:20: 6 2000 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 1D09F37B610 for ; Sat, 15 Apr 2000 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA02886; Sat, 15 Apr 2000 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from linux.intcon.net (linux.intcon.net [206.230.48.2]) by hub.freebsd.org (Postfix) with ESMTP id 4550737B55B for ; Sat, 15 Apr 2000 18:15:28 -0700 (PDT) (envelope-from steve@portal.megahack.com) Received: from portal.megahack.com (portal.megahack.com [206.230.54.106]) by linux.intcon.net (8.9.3/8.9.3) with ESMTP id UAA21451 for ; Sat, 15 Apr 2000 20:15:24 -0500 Received: (from steve@localhost) by portal.megahack.com (8.9.3/8.9.3) id UAA88689; Sat, 15 Apr 2000 20:15:24 -0500 (CDT) (envelope-from steve) Message-Id: <200004160115.UAA88689@portal.megahack.com> Date: Sat, 15 Apr 2000 20:15:24 -0500 (CDT) From: steve@megahack.com Reply-To: steve@megahack.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18029: XFree86-4 port build fails under 4.0-STABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18029 >Category: ports >Synopsis: XFree86-4 port build fails under 4.0-STABLE >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: Sat Apr 15 18:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Steven Farmer >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD catbert.megahack.com 4.0-STABLE FreeBSD 4.0-STABLE #4: Fri Apr 14 06:58:46 CDT 2000 root@catbert.megahack.com:/usr/src/sys/compile/CATBERT i386 /usr/ports/x11/XFree86-4 was deleted and re-cvsuped April 15 to make sure that it's current. >Description: Script started on Sat Apr 15 12:29:43 2000 catbert# pwd /usr/ports/x11/XFree86-4 catbert# make Assuming that you have fetched a USA-Legal Wraphelp.c. ===> Extracting for XFree86-4.0 >How-To-Repeat: cd /usr/ports/x11/XFree86-4 make fetch make >Fix: Workaround: cd /usr/ports/x11/XFree86-4/work ln -s XFree86-4.0 xc cd .. make >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for xc/X400src-1.tgz. >> Checksum OK for xc/X400src-2.tgz. ===> Patching for XFree86-4.0 ===> Applying FreeBSD patches for XFree86-4.0 patch: **** can't cd to /usr/ports/x11/XFree86-4/work/XFree86-4.0: No such file or directory *** Error code 1 Stop in /usr/ports/x11/XFree86-4. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. catbert# exit catbert# exit Script done on Sat Apr 15 12:33:08 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 18:31: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 2C82537B885; Sat, 15 Apr 2000 18:30:49 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id FAA28029; Sun, 16 Apr 2000 05:30:46 +0400 (MSD) (envelope-from ache) Date: Sun, 16 Apr 2000 05:30:46 +0400 From: "Andrey A. Chernov" To: ports@freebsd.org Cc: asami@freebsd.org Subject: LIB_DEPENDS runs too early Message-ID: <20000416053046.A27753@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Organization: Biomechanoid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I notice that 'make extract' now runs and install LIB_DEPENDS targets. :-( IMHO it is too early and must be done on 'make configure' stage instead. I.e. saying 'make extract' I just want to see sources (and maybe decide that I don't need them) amd not want to install tons of LIB_DEPENDS targets in case I don't need this program. Please fix. -- Andrey A. Chernov http://nagual.pp.ru/~ache/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 18:39:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from firehouse.net (spook.networkoperations.com [209.42.203.59]) by hub.freebsd.org (Postfix) with SMTP id 4DFDD37B806 for ; Sat, 15 Apr 2000 18:39:48 -0700 (PDT) (envelope-from abc@firehouse.net) Received: (qmail 13281 invoked by uid 1000); 16 Apr 2000 01:39:45 -0000 Date: Sat, 15 Apr 2000 21:39:45 -0400 From: Alan Clegg To: Jean-Marc Zucconi Cc: ports@freebsd.org Subject: Re: XFree86 port broken Message-ID: <20000415213944.J8401@ecto.greenpeas.org> References: <20000415204019.D8401@ecto.greenpeas.org> <200004160116.SAA02698@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004160116.SAA02698@freefall.freebsd.org>; from jmz@FreeBSD.org on Sat, Apr 15, 2000 at 06:16:55PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Out of the ether, Jean-Marc Zucconi spewed forth the following bitstream: > > It would seem that the port of XFree86-3.3.6 is broken. This is from a > > system cvs'upd April 14th at 17:12 US (Eastern). I just checked and > > confirmed that there is not a newer port. > > Try the following patch (untested :-)) > > PATCH_DIST_ARGS=-p0 -E -d ${WRKDIR} --quiet > +PATCH_ARGS= -p0 -E -d ${WRKDIR}/${DIST_SUBDIR} --quiet > SCRIPTS_ENV= OSVERSION=${OSVERSION} Gets past patches, but fails in build: ---SNIP-- Do you want to compile with PAM support? [YES] NO End of configuration questions. No more user input required ===> Building for XFree86-3.3.6 cd: can't cd to /usr/ports/x11/XFree86/work/XFree86-3.3.6 *** Error code 2 Stop in /usr/ports/x11/XFree86. *** Error code 1 Stop in /usr/ports/x11/XFree86. *** Error code 1 Stop in /usr/ports/x11/XFree86. ---SNIP-- I'd guess there is a generic knob, but I don't know what it is. AlanC -- \ Alan B. Clegg Just because I can \ abc@firehouse.net does not mean I will. \ \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 18:51: 7 2000 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 1864D37B88C; Sat, 15 Apr 2000 18:51:05 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA04892; Sat, 15 Apr 2000 18:51:04 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sat, 15 Apr 2000 18:51:04 -0700 (PDT) From: Message-Id: <200004160151.SAA04892@freefall.freebsd.org> To: patseal@hyperhost.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18028: boxes Makefile bug Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: boxes Makefile bug State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Sat Apr 15 18:50:48 PDT 2000 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 Apr 15 18:55:56 2000 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 2011637B56C; Sat, 15 Apr 2000 18:55:54 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA05160; Sat, 15 Apr 2000 18:55:53 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Date: Sat, 15 Apr 2000 18:55:53 -0700 (PDT) Message-Id: <200004160155.SAA05160@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: jmz set sender to jmz@FreeBSD.org using -f From: Jean-Marc Zucconi To: abc@firehouse.net Cc: ports@freebsd.org In-reply-to: <20000415213944.J8401@ecto.greenpeas.org> (message from Alan Clegg on Sat, 15 Apr 2000 21:39:45 -0400) Subject: Re: XFree86 port broken X-Mailer: Emacs References: <20000415204019.D8401@ecto.greenpeas.org> <200004160116.SAA02698@freefall.freebsd.org> <20000415213944.J8401@ecto.greenpeas.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> Alan Clegg writes: > Out of the ether, Jean-Marc Zucconi spewed forth the following bitstream: >> > It would seem that the port of XFree86-3.3.6 is broken. This is from a >> > system cvs'upd April 14th at 17:12 US (Eastern). I just checked and >> > confirmed that there is not a newer port. >> >> Try the following patch (untested :-)) >> >> PATCH_DIST_ARGS=-p0 -E -d ${WRKDIR} --quiet >> +PATCH_ARGS= -p0 -E -d ${WRKDIR}/${DIST_SUBDIR} --quiet >> SCRIPTS_ENV= OSVERSION=${OSVERSION} > Gets past patches, but fails in build: Ok. Back out the previous patch and try with this one: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11/XFree86/Makefile,v retrieving revision 1.75 diff -u -r1.75 Makefile --- Makefile 2000/04/13 19:09:04 1.75 +++ Makefile 2000/04/16 01:56:20 @@ -24,6 +24,7 @@ MAINTAINER= jmz@FreeBSD.org +WRKSRC= ${WRKDIR}/${DIST_SUBDIR} IS_INTERACTIVE= yes # configure script asks questions .if (${MACHINE} != "alpha") #NO_PACKAGE= package available from XFree86 -- Jean-Marc Zucconi PGP Key: finger jmz@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 19:38:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by hub.freebsd.org (Postfix) with ESMTP id 747A537B8B2 for ; Sat, 15 Apr 2000 19:38:45 -0700 (PDT) (envelope-from rzeira@erols.com) Received: from 207-172-113-119.s119.tnt5.ann.va.dialup.rcn.com ([207.172.113.119] helo=erols.com) by smtp01.mrf.mail.rcn.net with esmtp (Exim 2.12 #3) id 12gewf-0006DI-00; Sat, 15 Apr 2000 22:37:58 -0400 Message-ID: <38F9274F.11C3FFC7@erols.com> Date: Sat, 15 Apr 2000 22:37:03 -0400 From: Rami Zeira X-Mailer: Mozilla 4.61 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: aa8vb@ipass.net Cc: ports@FreeBSD.org Subject: FreeBSD Port: fxtv-1.02 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi there, I downloaded both the bktr drivers and fxtv. I followed the instructions to install the bktr drivers, recompiled the kernel and created the three devices /dev/bktr0 /dev/tuner0 and /dev/vbi0. When I type ls -l /dev/bktr0 /dev/tuner0 /dev/vbi0 I get: cr--r--r-- 1 root wheel 92, 0 Feb 15 14:54 /dev/bktr0 cr--r--r-- 1 root wheel 92, 16 Feb 15 14:54 /dev/tuner0 cr--r--r-- 1 root wheel 92, 32 Feb 15 14:54 /dev/vbi0 so far so good. I built the fxtv. It built fine. No errors or warnnings. I left it in /usr/ports/graphics/fxtv/work/fxtv-102/. When I click on it from the file manager (in KDE) it will not respond. I switch to tty0, where I started X from, and I see the following error: Open ("/dev/bktr0") is not configured. Do you know how to fix this? Thanks ahead Rami Zeira To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 20:21:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from firehouse.net (spook.networkoperations.com [209.42.203.59]) by hub.freebsd.org (Postfix) with SMTP id 375C437B92E for ; Sat, 15 Apr 2000 20:21:49 -0700 (PDT) (envelope-from abc@firehouse.net) Received: (qmail 14475 invoked by uid 1000); 16 Apr 2000 03:21:47 -0000 Date: Sat, 15 Apr 2000 23:21:47 -0400 From: Alan Clegg To: Jean-Marc Zucconi Cc: abc@firehouse.net, ports@freebsd.org Subject: Re: XFree86 port broken Message-ID: <20000415232147.M8401@ecto.greenpeas.org> References: <20000415204019.D8401@ecto.greenpeas.org> <200004160116.SAA02698@freefall.freebsd.org> <20000415213944.J8401@ecto.greenpeas.org> <200004160155.SAA05160@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004160155.SAA05160@freefall.freebsd.org>; from jmz@FreeBSD.org on Sat, Apr 15, 2000 at 06:55:53PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Out of the ether, Jean-Marc Zucconi spewed forth the following bitstream: > +WRKSRC= ${WRKDIR}/${DIST_SUBDIR} Bingo. AlanC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 20:32:19 2000 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 AA05737B8C9; Sat, 15 Apr 2000 20:32:18 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA15530; Sat, 15 Apr 2000 20:32:18 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Date: Sat, 15 Apr 2000 20:32:18 -0700 (PDT) From: Message-Id: <200004160332.UAA15530@freefall.freebsd.org> To: steve@megahack.com, jmz@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18029: XFree86-4 port build fails under 4.0-STABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: XFree86-4 port build fails under 4.0-STABLE State-Changed-From-To: open->closed State-Changed-By: jmz State-Changed-When: Sat Apr 15 20:31:00 PDT 2000 State-Changed-Why: I think the problem is fixed in rev. 1.79 of Makefile. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 21:41:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lemon.rosevale.com.au (lemon.rosevale.com.au [203.38.193.67]) by hub.freebsd.org (Postfix) with ESMTP id B1CD937B537 for ; Sat, 15 Apr 2000 21:41:40 -0700 (PDT) (envelope-from greg@rosevale.com) Received: (from root@localhost) by lemon.rosevale.com.au (8.9.3/8.9.3) id OAA01622; Sun, 16 Apr 2000 14:11:40 +0930 (CST) (envelope-from greg) From: Greg Robinson Message-Id: <200004160441.OAA01622@lemon.rosevale.com.au> Subject: No sound problem with xanim 2.80.0 on 4.0-STABLE To: freebsd-ports@freebsd.org Date: Sun, 16 Apr 2000 14:11:40 +0930 (CST) X-Mailer: ELM [version 2.4ME+ PL61 (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 Hi, I cvsup'ed src-all & ports-all on Friday. Recompile kernel, and world on Saturday (takes 10 hours on my P100. Not in it for the speed :-) Go to use xanim on Sunday (today), and it works, but after I exit and restart, I get can't open /dev/dsp. After I discover that the device was busy, I find that xanim is still running! kill it and all is well. xanim is a 3.4 binary. I'm pretty sure I used the sb0 drivers. I needed them to do a port. I'm using the pcm driver now under 4.0-STABLE. Now I get no sound at all. mpg123 Version 0.59r works well. Both 3.4 & 4.0 binaries, so I have assumed it's an xanim problem. Could someone verify this for me? I haven't seen any reports on the mailing list. Thankx, Greg. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Apr 15 22:20:10 2000 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 224CF37B71E for ; Sat, 15 Apr 2000 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 WAA27725; Sat, 15 Apr 2000 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from icc.cgu.chel.su (gw.cgu.chel.su [195.54.14.5]) by hub.freebsd.org (Postfix) with ESMTP id E449637B71E for ; Sat, 15 Apr 2000 22:19:44 -0700 (PDT) (envelope-from ilia@jane.cgu.chel.su) Received: from mail.cgu.chel.su (mail.cgu.chel.su [195.54.14.68]) by icc.cgu.chel.su (8.9.3/8.9.2/$Revision: 1.4 $) with ESMTP id LAA59369 for ; Sun, 16 Apr 2000 11:19:31 +0600 (ESS) (envelope-from ilia@jane.cgu.chel.su) Received: (from uucp@localhost) by mail.cgu.chel.su (8.9.3/8.8.6) with UUCP id LAA69313 for FreeBSD-gnats-submit@freebsd.org; Sun, 16 Apr 2000 11:19:30 +0600 (ESS) Received: (from ilia@localhost) by jane.cgu.chel.su (8.9.3/8.9.2) id AAA01700; Sun, 16 Apr 2000 00:20:11 +0600 (ESS) (envelope-from ilia) Message-Id: <200004151820.AAA01700@jane.cgu.chel.su> Date: Sun, 16 Apr 2000 00:20:11 +0600 (ESS) From: ilia@cgu.chel.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/18032: perl5 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 18032 >Category: ports >Synopsis: not a problem >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 Apr 15 22:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ilia Chipitsine >Release: FreeBSD 3.4-RELEASE i386 >Organization: Chelyabinsk State University >Environment: FreeBSD + Perl5 >Description: perl5 port, for doing fuzzy string matching. begin 644 p5-String-Approx.tar M<#4M4W1R:6YG+4%P<')O>"\````````````````````````````````````` M```````````````````````````````````````````````````````````` M`````````````"`T,#`H* M9&\M8V]N9FEG=7)E.@H)"4`@8V0@)'M74DM34D-].R`D>U-%5$5.5GT@)'M- M04M%7T5.5GT@)'M015),-7T@36%K969I;&4N4$P*"BYI;F-L=61E(#QB'1E;G-I;VX@9F]R(&%P<')O>&EM M871E(&UA=&-H:6YG("AF=7IZ>2!M871C:&EN9RD@"@`````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M``````````````````````````````````````````````!P-2U3=')I;F"!L971S('EO=2!M871C:"!A M;F0@"]P:V"YS;PIL:6(O<&5R;#4O"\N<&%C:VQI